Skip to main content

Modify Organization

Select

SaaS
Customer Managed

Update fields in an existing organization.

Path Parameters
  • organizationId int32 required

    Id of an existing organization

Request Body
  • displayName string
  • credentialInfo object

    Details of credential used to access AWS resources

  • useIAMRoleAuthentication boolean

    Tells whether the locally attached IAM role is to be used for authentication

  • credentialId int32

    Id of the saved credential for authentication methods other than IAM Role

  • accessNodes object[]

    List of servers and server groups to use to access the organization

  • tagContents object

    Details of tags that define the contents of the organization. If the field is left empty, all visible accounts will be treated as organization's content.

  • tagType AWSOrganizationTagContentType

    Possible values: [ORGANIZATIONAL_UNIT_TAG, ACCOUNT_TAG]

    Type of the content tags

  • tags object[]
  • key string

    Tag key content to match

  • value string

    Tag value content to match

  • accountDiscoveryDetails object

    Particulars required to create hypervisors corresponding to accounts in the organization

  • roleNameWithPath string

    Name of IAM role to assume to access accounts in the organization

  • backupServiceAccountId string

    Id of the account that hosts the Commvault backup infrastructure

  • accountAccessNodes object[]

    List of servers and server groups to use to access the onboarded accounts

Responses

OK

PUT /v4/cloud/aws/organization/:organizationid    

Authorization

type: apiKeyname: Authtokenin: header

Request

Click Edit to configure Base URL
https://CommandCenterHostName/commandcenter/api
Security Scheme
token
organizationId — path required
Body
{
"displayName": "string",
"credentialInfo": {
"useIAMRoleAuthentication": true,
"credentialId": 0
},
"accessNodes": [
{
"id": 0,
"name": "string",
"displayName": "string",
"accessNodeType": "SERVER"
}
],
"tagContents": {
"tagType": "ORGANIZATIONAL_UNIT_TAG",
"tags": [
{
"key": "string",
"value": "string"
}
]
},
"accountDiscoveryDetails": {
"roleNameWithPath": "string",
"backupServiceAccountId": "string",
"accountAccessNodes": [
{
"id": 0,
"name": "string",
"displayName": "string",
"accessNodeType": "SERVER"
}
]
}
}
curl -L -X PUT 'https://CommandCenterHostName/commandcenter/api/V4/Cloud/AWS/Organization/:organizationId' \
-H 'Content-Type: application/json' \
-H 'Authtoken: <API_KEY_VALUE>' \
--data-raw '{
"displayName": "string",
"credentialInfo": {
"useIAMRoleAuthentication": true,
"credentialId": 0
},
"accessNodes": [
{
"id": 0,
"name": "string",
"displayName": "string",
"accessNodeType": "SERVER"
}
],
"tagContents": {
"tagType": "ORGANIZATIONAL_UNIT_TAG",
"tags": [
{
"key": "string",
"value": "string"
}
]
},
"accountDiscoveryDetails": {
"roleNameWithPath": "string",
"backupServiceAccountId": "string",
"accountAccessNodes": [
{
"id": 0,
"name": "string",
"displayName": "string",
"accessNodeType": "SERVER"
}
]
}
}'