Skip to main content

Configure Cloud Account

Select

SaaS
Customer Managed

This API creates a new cloud account.

Request Body

  • name string required

    New cloud Account name

  • subscriptionId string required

    Azure Subscription ID

  • credential object

    Azure cloud Account credential info. Use Select Azure credentials API to fetch or Create a new using Configure Azure credentials API.

    This is optional and not needed if connection is using managed identities for azure resources with the backupgateways input

  • id integer

    Credential ID

  • name string

    Credential Name

  • backupGateways object[] required

    List of backup gateways in Metallic.

    Optional if the backup is direct to cloud

  • id integer

    Backup Gateway ID

  • name string

    Backup Gateway Name

  • isMSSQL boolean

    Set this to true if the cloudAccount type is of MSSQL

Responses

OK


Schema
  • id integer
  • name string
POST /v4/azuredb/cloudaccount    

Authorization

type: apiKeyname: Authtokenin: header

Request

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

{
"name": "string",
"subscriptionId": "string",
"credential": {
"id": 0,
"name": "string"
},
"backupGateways": [
{
"id": 0,
"name": "string"
}
],
"isMSSQL": true,
"region": {
"id": 0,
"name": "string"
}
}
curl -L -X POST 'https://CommandCenterHostName/commandcenter/api/V4/azuredb/cloudAccount' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authtoken: <API_KEY_VALUE>' \
--data-raw '{
"name": "string",
"subscriptionId": "string",
"credential": {
"id": 0,
"name": "string"
},
"backupGateways": [
{
"id": 0,
"name": "string"
}
],
"isMSSQL": true,
"region": {
"id": 0,
"name": "string"
}
}'