Skip to main content

Lists copy with available regions of given entities

Select

SaaS
Customer Managed

List of regions that have recoverable backup copy of entities

Request Body
  • entities object[]

    List of entites and their workload type

  • entity object required
  • id int32
  • GUID string
  • name string
  • workloadType string required

    Possible values: [GENERIC, O365, SALESFORCE, EXCHANGE, SHAREPOINT, ONEDRIVE, TEAMS, DYNAMICS_365, VSA, FILESYSTEM, KUBERNETES, AZURE_AD, CLOUD_LAPTOP, FILE_STORAGE_OPTIMIZATION, DATA_GOVERNANCE, E_DISCOVERY, SQL_SERVER, ORACLEDB, DB2, ACTIVE_DIRECTORY, DATABASE, PHYSICAL_SERVER, GOOGLE_CLOUD_PLATFORM]

Responses

List of available regions of provided entity


Schema
  • entities object[]

    List of entities and their copy available region details

  • entity object
  • id int32
  • GUID string
  • name string
  • regionInfo object[]

    List of copy available regions of entity

  • entityRegionType string

    Possible values: [BACKUP, WORKLOAD]

  • region object
  • id int32
  • name string
POST /v4/recoveryentity/backupcopy/regions    

Authorization

type: apiKeyname: Authtokenin: header

Request

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

{
"entities": [
{
"entity": {
"id": 0,
"GUID": "string",
"name": "string"
},
"workloadType": "GENERIC"
}
]
}
curl -L -X POST 'https://CommandCenterHostName/commandcenter/api/V4/RecoveryEntity/BackupCopy/Regions' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authtoken: <API_KEY_VALUE>' \
--data-raw '{
"entities": [
{
"entity": {
"id": 0,
"GUID": "string",
"name": "string"
},
"workloadType": "GENERIC"
}
]
}'