Azure Key Vault · Schema

CertificatePolicy

Management policy for a certificate.

CertificatesCloud SecurityCryptographyKey ManagementSecrets ManagementSecurity

Properties

Name Type Description
id string The certificate id.
key_props object
secret_props object
x509_props object
lifetime_actions array Actions that will be performed by Key Vault over the lifetime of a certificate.
issuer object
attributes object
View JSON Schema on GitHub

JSON Schema

microsoft-azure-key-vault-certificatepolicy-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CertificatePolicy",
  "title": "CertificatePolicy",
  "type": "object",
  "description": "Management policy for a certificate.",
  "properties": {
    "id": {
      "type": "string",
      "description": "The certificate id.",
      "readOnly": true,
      "example": "abc123"
    },
    "key_props": {
      "$ref": "#/components/schemas/KeyProperties"
    },
    "secret_props": {
      "$ref": "#/components/schemas/SecretProperties"
    },
    "x509_props": {
      "$ref": "#/components/schemas/X509CertificateProperties"
    },
    "lifetime_actions": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/LifetimeAction"
      },
      "description": "Actions that will be performed by Key Vault over the lifetime of a certificate.",
      "example": []
    },
    "issuer": {
      "$ref": "#/components/schemas/IssuerParameters"
    },
    "attributes": {
      "$ref": "#/components/schemas/CertificateAttributes"
    }
  }
}