Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 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 @@ -70,7 +70,6 @@
"enabledForDeployment":true,
"enabledForDiskEncryption":true,
"enabledForTemplateDeployment":true,
"enableSoftDelete":true,
"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":true,
"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 is enabled for this key vault. Setting this property to true activates the soft delete feature, whereby vaults or vault entities can be recovered after deletion. Enabling this functionality is irreversible - that is, the property does not accept false as its value."
},
"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. Setting this property to true activates protection against purge for this vault and its content - only the Key Vault service may initiate a hard, irrecoverable deletion. The setting is effective only if soft delete is also enabled. Enabling this functionality is irreversible - that is, the property does not accept false as its value."
},
"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