Gives a list of eligible source copies for given region id
Select
SaaS
Customer Managed
Gives a list of eligible source copies for given region id
Path Parameters
- planId integer required
Id of plan
Query Parameters
- regionId integer
Region Id against which we want to check eligible source copies. Skip if no region present.
- forSnapCopy boolean
Get list of source copy eligible for snap copy in given region.
Responses
- 200
OK
- application/json
- Schema
- Example (from schema)
Schema
copy object[]
List of backup destinations which can act as source copy for a new copy
isDefault booleanIs this a default backup destination?
isActive booleanIs this an active backup destination?
isSnapCopy booleanIs this a snap copy?
isMirrorCopy booleanIs this a mirror copy?
copyTypePossible values: [
SYNCHRONOUS
,SELECTIVE
,PRIMARY
]snapCopyTypePossible values: [
DEFAULT_MIRROR
,DEFAULT_VAULT_REPLICA
,MIRROR
,VAULT_REPLICA
,SNAPSHOT_PRIMARY
]copyPrecedence int32Order of backup destinaion copy created in storage policy
backupDestination object
id int32name stringarrayReplicaCopy booleanIs this an array replica copy?
defaultReplicaCopy booleanIs this a default replica copy?
{
"copy": [
{
"isDefault": true,
"isActive": true,
"isSnapCopy": true,
"isMirrorCopy": true,
"copyType": "SYNCHRONOUS",
"snapCopyType": "DEFAULT_MIRROR",
"copyPrecedence": 0,
"backupDestination": {
"id": 0,
"name": "string"
},
"arrayReplicaCopy": true,
"defaultReplicaCopy": true
}
]
}
Loading...