Gives a list of eligible source copies for given region id
Select
Gives a list of eligible source copies for given region id
Path Parameters
- planId int64 required
Id of plan
Query Parameters
- regionId int64
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.
- 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?
isImmutableSnapCopy booleanOnly for snap copy. Tells if the snap copy has immutable option enabled.
isSourceBackupCopy booleanIs this the source snap copy for backup copy operations?
isSourceCatalog booleanIs this the source snap copy for deferred catalog operations?
{
"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,
"isImmutableSnapCopy": true,
"isSourceBackupCopy": true,
"isSourceCatalog": true
}
]
}