Skip to content
Draft
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
60 changes: 60 additions & 0 deletions schemas/2023-04-01/Microsoft.RecoveryServices.json
Original file line number Diff line number Diff line change
Expand Up @@ -452,6 +452,33 @@
}
],
"description": "Immutability Settings of vault"
},
"multiUserAuthorization": {
"oneOf": [
{
"type": "string",
"enum": [
"Invalid",
"Enabled",
"Disabled"
]
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "MUA Settings of a vault."
},
"softDeleteSettings": {
"oneOf": [
{
"$ref": "#/definitions/SoftDeleteSettings"
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "Soft delete Settings of vault"
}
},
"description": "Security Settings of the vault"
Expand Down Expand Up @@ -496,6 +523,39 @@
],
"description": "Identifies the unique system identifier for each Azure resource."
},
"SoftDeleteSettings": {
"type": "object",
"properties": {
"softDeleteRetentionPeriodInDays": {
"oneOf": [
{
"type": "integer"
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "Soft delete retention period in days"
},
"softDeleteState": {
"oneOf": [
{
"type": "string",
"enum": [
"Invalid",
"Enabled",
"Disabled",
"AlwaysON"
]
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
]
}
},
"description": "Soft delete Settings of vault"
},
"SystemData": {
"type": "object",
"properties": {
Expand Down