Azure Key Vault · Schema

DeletedSecretBundle

A deleted secret bundle consisting of its previous id, attributes, tags, and deletion information.

CertificatesCloud SecurityCryptographyKey ManagementSecrets ManagementSecurity

Properties

Name Type Description
recoveryId string The url of the recovery object, used to identify and recover the deleted secret.
scheduledPurgeDate integer The time when the secret is scheduled to be purged, in UTC.
deletedDate integer The time when the secret was deleted, in UTC.
View JSON Schema on GitHub

JSON Schema

azure-key-vault-data-plane-deleted-secret-bundle-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "DeletedSecretBundle",
  "type": "object",
  "description": "A deleted secret bundle consisting of its previous id, attributes, tags, and deletion information.",
  "properties": {
    "recoveryId": {
      "type": "string",
      "description": "The url of the recovery object, used to identify and recover the deleted secret."
    },
    "scheduledPurgeDate": {
      "type": "integer",
      "description": "The time when the secret is scheduled to be purged, in UTC."
    },
    "deletedDate": {
      "type": "integer",
      "description": "The time when the secret was deleted, in UTC."
    }
  }
}