Modify a volume
You can modify the configuration of an existing volume.
Choose the workflow to use based on the type of Cloud Volumes ONTAP deployment:
Modify a volume for single node
You can use this workflow to modify the configuration of an existing volume for a single node working environment.
Step 1. Select the working environment
Perform the workflow Get working environments and choose the publicId
and svmName
values for the workingEnvironmentId
and svmName
path parameters.
Step 2. Select the volume
Perform the workflow Get volumes and choose the name
for the volumeName
path parameter.
Step 3. Modify the volume
You can issue a REST API call to modify an existing volume.
This REST API call uses the following method and endpoint.
HTTP method | Path |
---|---|
PUT |
/occm/api/vsa/volumes/{workingEnvironmentId}/{svmName}/{volumeName} |
curl --request PUT \
--location "https://cloudmanager.cloud.netapp.com/occm/api/vsa/volumes/<WORKING_ENV_ID>/<SVM_NAME>/<VOLUME_NAME>" \
--header "Content-Type: application/json" \
--header "x-agent-id: <AGENT_ID>" \
--header "Authorization: Bearer <ACCESS_TOKEN>" \
--d @JSONinput
In addition to the parameters common with all REST API calls, the following parameters are also used in the curl example.
Parameter | Type | Required | Description |
---|---|---|---|
<WORKING_ENV_ID> |
Path |
Yes |
Identifies the working environment. |
<SVM_NAME> |
Path |
Yes |
Identifies the storage VM. |
<VOLUME_NAME> |
Path |
Yes |
Identifies the volume. |
The JSON input example includes the minimum list of input parameters.
The
|
{
"exportPolicyInfo": {
"policyType": "custom",
"ips": [
"10.XXX.XXX.XXX/24","10.yyy.yyy.yyy/21","10.zzz.zzz.zzz/21"
],
"nfsVersion": [
"any"
],
"rules": [
{
"index": 1,
"ruleAccessControl": "readwrite",
"ips": ["10.XXX.XXX.XXX/24","10.yyy.yyy.yyy/21","10.zzz.zzz.zzz/21"],
"nfsVersion": [
"any"
],
"superUser": "True"
}
]
}
}
None
== Modify volume for high availability pair
You can use this workflow to modify the configuration of an existing volume for an HA working environment.
=== Step 1. Select the working environment
Perform the workflow Get working environments and choose the publicId
and svmName
values for the workingEnvironmentId
and svmName
path parameters.
=== Step 2. Select the volume
Perform the workflow Get volumes and choose the name
for the volumeName
path parameter.
=== Step 3. Modify the volume
Ypu can issue a REST API call to modify an existing volume.
This REST API call uses the following method and endpoint.
HTTP method | Path |
---|---|
PUT |
/occm/api/aws/ha/volumes/{workingEnvironmentId}/{svmName}/{volumeName} |
curl --request PUT \
--location "https://cloudmanager.cloud.netapp.com/occm/api/aws/ha/volumes/<WORKING_ENV_ID>/<SVM_NAME>/<VOLUME_NAME>" \
--header "Content-Type: application/json" \
--header "x-agent-id: <AGENT_ID>" \
--header "Authorization: Bearer <ACCESS_TOKEN>" \
--d @JSONinput
In addition to the parameters common with all REST API calls, the following parameters are also used in the curl example.
Parameter | Type | Required | Description |
---|---|---|---|
<WORKING_ENV_ID> |
Path |
Yes |
Identifies the working environment. |
<SVM_NAME> |
Path |
Yes |
Identifies the storage VM. |
<VOLUME_NAME> |
Yes |
No |
Identifies the volume. |
The JSON input example includes the minimum list of input parameters.
The
|
{
"exportPolicyInfo": {
"policyType": "custom",
"ips": [
"10.XXX.XXX.XXX/24","10.yyy.yyy.yyy/21","10.zzz.zzz.zzz/21"
],
"nfsVersion": [
"any"
],
"rules": [
{
"index": 1,
"ruleAccessControl": "readwrite",
"ips": ["10.XXX.XXX.XXX/24","10.yyy.yyy.yyy/21","10.zzz.zzz.zzz/21"],
"nfsVersion": [
"any"
],
"superUser": "True"
}
]
}
}
None