Skip to main content

Configure Backup Client Azure MSSQL

Select

SaaS
Customer Managed

This API creates Cloud Database Instance for SQL Server.

All the databases in the SQL Server instance will be backed up after creation

Request Body

  • instanceName string required

    MSSQL server instance name

    Use Select Database instance to get this

  • connectionString string required

    MSSQL DB storage Connection string

  • credential object required
  • id integer required

    MSSQL Credential ID

  • name string required

    MSSQL Credential name

  • cloudAccount object required
  • id integer
  • name string
  • plan object required
  • id integer
  • name string
Responses

OK


Schema
  • instance object
  • id integer
  • name string
POST /v4/azuredb/mssql/instance    

Authorization

type: apiKeyname: Authtokenin: header

Request

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

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