Skip to main content

Create Azure Blob Instance Group

Select

SaaS

This API creates an Azure Blob Instance Group.

Request Body

  • cloudAccountId integer required

    Id of the cloud account that will host the instance group

  • plan object required
  • id integer
  • name string
  • accessNodes array required
  • id integer

    Id of ObjectStorage access node. This could be a Client id or Client Group id.

  • name string

    Name of ObjectStorage access node. This could be a Client name or Client Group name.

  • type string

    Possible values - "client" for Access nodes and "clientGroup" for Access node group. If not passed, it is defaulted to "client".

  • contents array
  • matchCriteria string

    Default - "ALL", Supported values - ["ALL", "ANY"]

  • rules array
  • item string

    Supported values: ["ALL_STORAGE_ACCOUNTS", "STORAGE_ACCOUNT", "RESOURCE_GROUP", "TAG_NAME", "TAG_VALUE", "REGION"]

  • condition string

    Supported values: ["EQUALS", "DOES_NOT_EQUAL", "STARTS_WITH", "ENDS_WITH", "CONTAINS", "DOES_NOT_CONTAIN"]

  • value string

    Value of the entity

Responses

OK


Schema
  • id integer
  • name string
POST /v4/azureblob/instancegroup    

Authorization

type: apiKeyname: Authtokenin: header

Request

Click Edit to configure Base URL
https://CommandCenterHostName/commandcenter/api
Security Scheme
token
Body

{
"cloudAccountId": 0,
"plan": {
"id": 0,
"name": "string"
},
"region": {
"id": 0,
"name": "string"
},
"contents": [
null
]
}
curl -L -X POST 'https://CommandCenterHostName/commandcenter/api/V4/azureblob/instancegroup' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authtoken: <API_KEY_VALUE>' \
--data-raw '{
"cloudAccountId": 0,
"plan": {
"id": 0,
"name": "string"
},
"region": {
"id": 0,
"name": "string"
},
"contents": [
null
]
}'