Skip to content
Closed
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
138 changes: 138 additions & 0 deletions schemas/2021-04-01/Microsoft.RecoveryServices.Backup.json
Original file line number Diff line number Diff line change
Expand Up @@ -399,6 +399,75 @@
],
"description": "Microsoft.RecoveryServices/vaults/backupPolicies"
},
"vaults_backupstorageconfig": {
"type": "object",
"properties": {
"apiVersion": {
"type": "string",
"enum": [
"2021-04-01"
]
},
"eTag": {
"type": "string",
"description": "Optional ETag."
},
"location": {
"type": "string",
"description": "Resource location."
},
"name": {
"oneOf": [
{
"type": "string",
"pattern": "^.*/vaultstorageconfig$"
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
]
},
"properties": {
"oneOf": [
{
"$ref": "#/definitions/BackupResourceConfig"
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "The resource storage details."
},
"tags": {
"oneOf": [
{
"type": "object",
"additionalProperties": {
"type": "string"
},
"properties": {}
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "Resource tags."
},
"type": {
"type": "string",
"enum": [
"Microsoft.RecoveryServices/vaults/backupstorageconfig"
]
}
},
"required": [
"apiVersion",
"name",
"properties",
"type"
],
"description": "Microsoft.RecoveryServices/vaults/backupstorageconfig"
},
"vaults_privateEndpointConnections": {
"type": "object",
"properties": {
Expand Down Expand Up @@ -1641,6 +1710,75 @@
],
"description": "Azure Workload SQL Auto Protection intent item."
},
"BackupResourceConfig": {
"type": "object",
"properties": {
"crossRegionRestoreFlag": {
"oneOf": [
{
"type": "boolean"
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "Opt in details of Cross Region Restore feature."
},
"storageModelType": {
"oneOf": [
{
"type": "string",
"enum": [
"Invalid",
"GeoRedundant",
"LocallyRedundant",
"ZoneRedundant",
"ReadAccessGeoZoneRedundant"
]
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "Storage type."
},
"storageType": {
"oneOf": [
{
"type": "string",
"enum": [
"Invalid",
"GeoRedundant",
"LocallyRedundant",
"ZoneRedundant",
"ReadAccessGeoZoneRedundant"
]
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "Storage type."
},
"storageTypeState": {
"oneOf": [
{
"type": "string",
"enum": [
"Invalid",
"Locked",
"Unlocked"
]
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "Locked or Unlocked. Once a machine is registered against a resource, the storageTypeState is always Locked."
}
},
"description": "The resource storage details."
},
"BackupResourceEncryptionConfig": {
"type": "object",
"properties": {
Expand Down
Loading