Skip to main content

Create a Cloud Config Subclient

Select

SaaS
Customer Managed

Create a Cloud Config Subclient. This subclient is used to protect the cloud config files.

Request Body
  • name string required

    Subclient name

  • hypervisor object required
  • id int32
  • name string
  • plan object required
  • id int32
  • name string
  • content object

    Cloud Config Content

  • azureCloudConfigContent object

    Azure Cloud Config Content

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

    Azure region

Responses

OK


Schema
  • subclientId int32
  • warningCode int32
  • errorCode int32
  • errorMessage string

    Response message

  • warningMessage string

    Response message

POST /v4/cloud/cloudconfig/subclient    

Authorization

type: apiKeyname: Authtokenin: header

Request

Click Edit to configure Base URL
https://CommandCenterHostName/commandcenter/api
Security Scheme
token
Body
{
"name": "string",
"hypervisor": {
"id": 0,
"name": "string"
},
"plan": {
"id": 0,
"name": "string"
},
"content": {
"azureCloudConfigContent": {
"resourceGroup": [
"string"
],
"tags": [
{
"name": "string",
"value": "string"
}
],
"region": "string"
}
}
}
curl -L -X POST 'https://CommandCenterHostName/commandcenter/api/v4/Cloud/CloudConfig/Subclient' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authtoken: <API_KEY_VALUE>' \
--data-raw '{
"name": "string",
"hypervisor": {
"id": 0,
"name": "string"
},
"plan": {
"id": 0,
"name": "string"
},
"content": {
"azureCloudConfigContent": {
"resourceGroup": [
"string"
],
"tags": [
{
"name": "string",
"value": "string"
}
],
"region": "string"
}
}
}'