Skip to main content

Edit Cloud Config Subclient

Select

SaaS
Customer Managed

Edit Cloud Config Subclient

Path Parameters
  • subclientId string required

    Id of an cloud config subclient

Request Body
  • newName string

    subclient name

  • content object

    Cloud Config Content

  • azureCloudConfigContent object

    Azure Cloud Config Content

  • resourceGroup string[]
  • tags object[]
  • name string
  • value string
  • region string

    Azure region

  • ociCloudConfigContent object

    OCI Cloud Config Content

  • compartments string[]
  • tags object[]
  • tagNamespace string
  • tagKey string
  • tagValue string
  • region string

    OCI region

  • plan object
  • id int32
  • name string
Responses

OK

PUT /v4/cloud/cloudconfig/subclient/:subclientid    

Authorization

type: apiKeyname: Authtokenin: header

Request

Click Edit to configure Base URL
https://CommandCenterHostName/commandcenter/api
Security Scheme
token
subclientId — path required
Body
{
"newName": "string",
"content": {
"azureCloudConfigContent": {
"resourceGroup": [
"string"
],
"tags": [
{
"name": "string",
"value": "string"
}
],
"region": "string"
},
"ociCloudConfigContent": {
"compartments": [
"string"
],
"tags": [
{
"tagNamespace": "string",
"tagKey": "string",
"tagValue": "string"
}
],
"region": "string"
}
},
"plan": {
"id": 0,
"name": "string"
}
}
curl -L -X PUT 'https://CommandCenterHostName/commandcenter/api/v4/Cloud/CloudConfig/Subclient/:subclientId' \
-H 'Content-Type: application/json' \
-H 'Authtoken: <API_KEY_VALUE>' \
--data-raw '{
"newName": "string",
"content": {
"azureCloudConfigContent": {
"resourceGroup": [
"string"
],
"tags": [
{
"name": "string",
"value": "string"
}
],
"region": "string"
},
"ociCloudConfigContent": {
"compartments": [
"string"
],
"tags": [
{
"tagNamespace": "string",
"tagKey": "string",
"tagValue": "string"
}
],
"region": "string"
}
},
"plan": {
"id": 0,
"name": "string"
}
}'