Skip to main content

Configure Azure Hypervisor

Select

SaaS
Customer Managed

This API creates a new cloud account.

Request Body

  • credentials object

    credential name or id. Not needed for connection using managed identity for azure resources

  • id integer
  • name string
  • subscriptionId string required

    azure subscription id

  • name string required

    New Azure Hypervisor/Cloud Account name

  • accessNodes object[] required

    List of access Nodes

  • id integer required
  • name string required
  • type integer

    Possible values: [3, 28]

    Type is 3 for accessNodes and 28 for accessNode Group...If not passed it is defaulted to 3

Responses

OK


Schema
  • id integer
  • name string
POST /v4/hypervisor/azure    

Authorization

type: apiKeyname: Authtokenin: header

Request

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

{
"credentials": {
"id": 0,
"name": "string"
},
"subscriptionId": "string",
"name": "string"
}
curl -L -X POST 'https://CommandCenterHostName/commandcenter/api/v4/Hypervisor/azure' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authtoken: <API_KEY_VALUE>' \
--data-raw '{
"credentials": {
"id": 0,
"name": "string"
},
"subscriptionId": "string",
"name": "string"
}'