Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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 @@ -71,6 +71,7 @@
"enabledForDiskEncryption":true,
"enabledForTemplateDeployment":true,
"enableSoftDelete":true,
"enablePurgeProtection":false,
"vaultUri":"https://sample-vault.vault.azure.net/"
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@
"enabledForDiskEncryption":true,
"enabledForTemplateDeployment":true,
"enableSoftDelete":true,
"enablePurgeProtection":false,
"vaultUri":"https://sample-vault.vault.azure.net/"
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -869,7 +869,11 @@
},
"enableSoftDelete": {
"type": "boolean",
"description": "Property to specify whether the 'soft delete' functionality is enabled for this key vault. It does not accept false value."
"description": "Property specifying whether recoverable deletion ('soft' delete) is enabled for this key vault. The property may not be set to false."
},
"enablePurgeProtection": {

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This needs to be moved after create mode to avoid breaking changes in the sdk

"type": "boolean",
"description": "Property specifying whether protection against purge is enabled for this vault; it is only effective if soft delete is also enabled. Once activated, the property may no longer be reset to false."
},
"createMode": {
"type": "string",
Expand Down Expand Up @@ -922,7 +926,11 @@
},
"enableSoftDelete": {
"type": "boolean",
"description": "Property to specify whether the 'soft delete' functionality is enabled for this key vault. It does not accept false value."
"description": "Property specifying whether recoverable deletion ('soft' delete) is enabled for this key vault. The property may not be set to false."
},
"enablePurgeProtection": {

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This needs to be moved after create mode to avoid breaking changes in the sdk

"type": "boolean",
"description": "Property specifying whether protection against purge is enabled for this vault; it is only effective if soft delete is also enabled. Once activated, the property may no longer be reset to false."
},
"createMode": {
"type": "string",
Expand Down