You can use the RemoveVolumesFromVolumeAccessGroup method to remove volumes from a specified volume access group.
This method has the following input parameters:
Name | Description | Type | Default value | Required |
---|---|---|---|---|
volumeAccessGroupID | VolumeAccessGroupID to remove volumes from. | integer | None | Yes |
volumes | VolumeIDs of volumes to remove from the volume access group. | integer array | None | Yes |
This method has the following return value:
Name | Description | Type |
---|---|---|
volumeAccessGroup | An object containing information about the newly modified volume access group. | volumeAccessGroup |
Requests for this method are similar to the following example:
{ "method": "RemoveVolumesFromVolumeAccessGroup", "params": { "volumeAccessGroupID": 96, "volumes": [1,2] }, "id": 1 }
This method returns a response similar to the following example:
{ "id": 1, "result": { "volumeAccessGroup": { "attributes": {}, "deletedVolumes": [ 346 ], "initiatorIDs": [ 116, 117 ], "initiators": [ "iqn.1993-08.org.debian:01:181324777", "iqn.1993-08.org.debian:01:181324888" ], "name": "northbanktest", "volumeAccessGroupID": 96, "volumes": [] } } }