Skip to main content

Verify Cloud Resource Connectivity

Select

SaaS
Customer Managed

Verifies cloud resource connectivity from a list of backup gateways to given hostname and port

Request Body
  • hostname string required

    Hostname / IP address of cloud resource

  • port int32 required

    Connection port

  • backupGatewayIds int32[] required

    Default value: ``

    Backup gateways list for connectivity verification

Responses

An 'errorCode' of 1 denotes a successful connection, while 0 indicates failure with details provided in 'errorMessage'


Schema
  • errorMessage string
  • errorCode int32
POST /cloudapps/testcloudconnection    

Authorization

type: apiKeyname: Authtokenin: header

Request

Click Edit to configure Base URL
https://CommandCenterHostName/commandcenter/api
Security Scheme
token
Body
{
"hostname": "string",
"port": 0,
"backupGatewayIds": [
0
]
}
curl -L -X POST 'https://CommandCenterHostName/commandcenter/api/CloudApps/TestCloudConnection' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authtoken: <API_KEY_VALUE>' \
--data-raw '{
"hostname": "string",
"port": 0,
"backupGatewayIds": [
0
]
}'