Skip to content
Merged
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
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,7 @@
},
"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."
},
"createMode": {
"type": "string",
Expand All @@ -882,6 +882,10 @@
"name": "CreateMode",
"modelAsString": false
}
},
"enablePurgeProtection": {
"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."
}
},
"required": [
Expand Down Expand Up @@ -922,7 +926,7 @@
},
"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."
},
"createMode": {
"type": "string",
Expand All @@ -935,6 +939,10 @@
"name": "CreateMode",
"modelAsString": false
}
},
"enablePurgeProtection": {
"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."
}
},
"description": "Properties of the vault"
Expand Down