Azure Key Vault · Schema

SecretRestoreParameters

The secret restore parameters.

CertificatesCloud SecurityCryptographyKey ManagementSecrets ManagementSecurity

Properties

Name Type Description
value string The backup blob associated with a secret bundle.
View JSON Schema on GitHub

JSON Schema

microsoft-azure-key-vault-secretrestoreparameters-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SecretRestoreParameters",
  "title": "SecretRestoreParameters",
  "type": "object",
  "description": "The secret restore parameters.",
  "required": [
    "value"
  ],
  "properties": {
    "value": {
      "type": "string",
      "format": "base64url",
      "description": "The backup blob associated with a secret bundle.",
      "example": "example_value"
    }
  }
}