Skip to content

Commit

Permalink
Added API changes for Blob Backup
Browse files Browse the repository at this point in the history
  • Loading branch information
anjorsh committed Nov 16, 2022
1 parent 47531fc commit e6f6e6c
Showing 1 changed file with 57 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -4556,6 +4556,29 @@
},
"x-ms-discriminator-value": "KubernetesClusterBackupDatasourceParameters"
},
"BlobBackupDatasourceParameters": {
"description": "Parameters for Backup",
"required": [
"containersList",
"objectType"
],
"type": "object",
"allOf": [
{
"$ref": "#/definitions/BackupDatasourceParameters"
}
],
"properties": {
"containersList": {
"description": "List of containers to be protected",
"type": "array",
"items": {
"type": "string"
}
}
},
"x-ms-discriminator-value": "BlobBackupDatasourceParameters"
},
"AzureRetentionRule": {
"allOf": [
{
Expand Down Expand Up @@ -4841,7 +4864,8 @@
},
"isVaultProtectedByResourceGuard": {
"description": "Is vault protected by resource guard",
"type": "boolean"
"type": "boolean",
"readOnly": true
}
},
"required": [
Expand Down Expand Up @@ -5979,6 +6003,38 @@
},
"x-ms-discriminator-value": "ItemLevelRestoreTargetInfo"
},
"ItemPathBasedRestoreCriteria": {
"description": "Class to contain criteria for item path based restore",
"required": [
"itemPath",
"isPathRelativeToBackupItem",
"objectType"
],
"type": "object",
"allOf": [
{
"$ref": "#/definitions/ItemLevelRestoreCriteria"
}
],
"properties": {
"itemPath": {
"description": "Path of the item to be restored",
"type": "string"
},
"isPathRelativeToBackupItem": {
"description": "Flag to specify if the path is relative to Backup Item or full path",
"type": "boolean"
},
"subItemPathPrefix": {
"description": "list of prefixes to be used relative to the ItemPath for Restore criteria",
"type": "array",
"items": {
"type": "string"
}
}
},
"x-ms-discriminator-value": "ItemPathBasedRestoreCriteria"
},
"JobExtendedInfo": {
"description": "Extended Information about the job",
"properties": {
Expand Down

0 comments on commit e6f6e6c

Please sign in to comment.