Microsoft Azure · Schema

CertificatePolicy

Management policy for a certificate.

API ManagementCloudCloud ComputingEnterpriseInfrastructure as a ServicePlatform as a ServiceT1

Properties

Name Type Description
id string
key_props object Properties of the key pair.
secret_props object Properties of the secret backing a certificate.
x509_props object Properties of the X509 component.
issuer object Parameters for the issuer of the X509 component.
lifetime_actions array
View JSON Schema on GitHub

JSON Schema

azure-key-vault-certificate-policy-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "CertificatePolicy",
  "type": "object",
  "description": "Management policy for a certificate.",
  "properties": {
    "id": {
      "type": "string"
    },
    "key_props": {
      "type": "object",
      "description": "Properties of the key pair."
    },
    "secret_props": {
      "type": "object",
      "description": "Properties of the secret backing a certificate."
    },
    "x509_props": {
      "type": "object",
      "description": "Properties of the X509 component."
    },
    "issuer": {
      "type": "object",
      "description": "Parameters for the issuer of the X509 component."
    },
    "lifetime_actions": {
      "type": "array"
    }
  }
}