Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -4253,6 +4253,18 @@
"format": "date-time",
"type": "string",
"readOnly": true
},
"recoveryPointState": {
"description": "Specifies recovery point completeness. Partial (i.e., only some of the intended items were backed up), or Completed (i.e., ALL intended items were backed up).",
"enum": [
"Completed",
"Partial"
],
"type": "string",
"x-ms-enum": {
"name": "RecoveryPointCompletionState",
"modelAsString": true
}
}
},
"required": [
Expand Down Expand Up @@ -5248,7 +5260,7 @@
}
},
"replicatedRegions": {
"description" : "List of replicated regions for Backup Vault",
"description": "List of replicated regions for Backup Vault",
"items": {
"type": "string"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@
"creationTime": "2019-03-01T13:00:00Z",
"metaData": "123456"
}
]
],
"recoveryPointState": "Completed"
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@
"creationTime": "2019-03-01T13:00:00Z",
"metaData": "123456"
}
]
],
"recoveryPointState": "Completed"
}
},
{
Expand All @@ -58,7 +59,8 @@
"creationTime": "2019-03-01T13:00:00Z",
"metaData": "123456"
}
]
],
"recoveryPointState": "Completed"
}
}
]
Expand Down