Update Vdc Group
Updates a specific vDC Group. Example is to add/remove a participating vDC.
Request
URI
PUT
https://{api_host}/cloudapi/1.0.0/vdcGroups/{vdcGroupId}
COPY
Path Parameters
string
vdcGroupId
Required
vdcGroupId
Request Body
VdcGroup
of type(s)
application/json
Optional
Show optional properties
{
"orgId": "string",
"name": "string",
"participatingOrgVdcs": [
{
"vdcRef": {}
}
]
}
{
"id": "string",
"orgId": "string",
"name": "string",
"description": "string",
"localEgress": false,
"participatingOrgVdcs": [
{
"id": "string",
"vdcRef": {
"name": "string",
"id": "string"
},
"orgRef": {
"name": "string",
"id": "string"
},
"siteRef": {
"name": "string",
"id": "string"
},
"networkProviderScope": "string",
"faultDomainTag": "string",
"remoteOrg": false,
"status": {}
}
],
"participatingOrgVdcCount": 0,
"universalNetworkingEnabled": false,
"networkPoolUniversalId": "string",
"networkPoolId": "string",
"status": {},
"type": "string",
"networkProviderType": "string",
"dfwEnabled": false,
"errorMessage": "string",
"networkingTenancyEnabled": false
}
Responses
202
The request have been accepted and the task to monitor the request is in the Location header.
Operation doesn't return any data structure
400
Invalid configuration.
Returns
Error
of type(s)
*/*;version=39.1
"Error Object"
string
minorErrorCode
Required
minorErrorCode
string
message
Required
message
string
stackTrace
Optional
stackTrace
404
The specified resource was not found
Returns
Error
of type(s)
*/*;version=39.1
"Error Object"
string
minorErrorCode
Required
minorErrorCode
string
message
Required
message
string
stackTrace
Optional
stackTrace
Code Samples
COPY
curl -X PUT -H 'Authorization: <value>' -H 'Content-Type: application/json' -d '{"name:"string","orgId:"string","participatingOrgVdcs":["object"]}' https://{api_host}/cloudapi/1.0.0/vdcGroups/{vdcGroupId}