Releasing resource groups assigned to a user group

REST API Reference Guide for Virtual Storage Platform 5000, Virtual Storage Platform E Series, and Virtual Storage Platform G/F Series

Version
93-07-0x
90-09-0x
88-08-10
Audience
anonymous
Part Number
MK-98RD9014-17
The following request releases resource groups assigned to a user group.
Note:

If you locked any resources of the target storage system by using the REST API, you will not be able to use this API function. In such cases, unlock the resources before running the API function.

Execution permission

Security Administrator (View & Modify)

Request line

POST base-URL/v1/objects/user-groups/object-ID/actions/remove-resource-group/invoke

Request message

Object ID

Set the userGroupObjectId value obtained by getting information about the user group.

Attribute

Type

Description

userGroupObjectId

string

(Required) The object ID for a user group ID

The object ID is case sensitive.

Query parameters

None.

Body
{
  "parameters": {
    "resourceGroupIds": [
      1,
      2
    ]
  }
}

Attribute

Type

Description

resourceGroupIds

int[]

(Required) The resource group IDs

Specify one or more decimal (base 10) numbers within the range of 0 to 1023. If you specify multiple IDs, delimit the IDs by commas.

Response message

Body

A job object is returned. For details on attributes other than affectedResources, see the section explaining job objects.

Attribute

Description

affectedResources

URL of the user group where assignment of resource groups is released

Action template

GET base-URL/v1/objects/user-groups/object-ID/actions/remove-resource-group

Status codes

For details on the status codes of the request for this operation, see the description on HTTP status codes.

Coding example

To get an action template:

curl -v -H "Accept:application/json" -H "Content-Type:application/json" -H "Authorization:Session d7b673af189048468c5af9bcf3bbbb6f" -X GET https://192.0.2.100/ConfigurationManager/v1/objects/user-groups/devGroup/actions/remove-resource-group

To run the request after getting an action template:

curl -v -H "Accept:application/json" -H "Content-Type:application/json" -H "Authorization:Session d7b673af189048468c5af9bcf3bbbb6f" --data-binary @./InputParameters.json -X POST https://192.0.2.100/ConfigurationManager/v1/objects/user-groups/devGroup/actions/remove-resource-group/invoke