Skip to main content

Create Azure Blob Instance

Select

SaaS

This API creates an Azure Blob Instance.

Request Body

  • name string required

    ObjectStorage instance name.

  • plan object required
  • id integer
  • name string
  • credential object required
  • id integer
  • name string
  • contents object
  • path array

    Optional list of files and folders to be added as content. Defaults to /

  • exclusions array

    Optional list of files and folders to exclude

  • exceptions array

    Optional list of files and folders to be added to the exceptions list

  • storageAccount string required

    Name of the Azure storage account

  • hostURL string

    Optional. Optional. Defaults to blob.core.windows.net

  • 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".

Responses

OK


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

Authorization

type: apiKeyname: Authtokenin: header

Request

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

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