Microsoft Azure · Schema

CertificateOperation

A certificate operation is returned in case of asynchronous requests.

API ManagementCloudCloud ComputingEnterpriseInfrastructure as a ServicePlatform as a ServiceT1

Properties

Name Type Description
id string
issuer object
csr string The certificate signing request (CSR) in base64.
cancellation_requested boolean
status string
status_details string
error object
target string
request_id string
View JSON Schema on GitHub

JSON Schema

azure-key-vault-certificate-operation-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "CertificateOperation",
  "type": "object",
  "description": "A certificate operation is returned in case of asynchronous requests.",
  "properties": {
    "id": {
      "type": "string"
    },
    "issuer": {
      "type": "object"
    },
    "csr": {
      "type": "string",
      "description": "The certificate signing request (CSR) in base64."
    },
    "cancellation_requested": {
      "type": "boolean"
    },
    "status": {
      "type": "string"
    },
    "status_details": {
      "type": "string"
    },
    "error": {
      "type": "object"
    },
    "target": {
      "type": "string"
    },
    "request_id": {
      "type": "string"
    }
  }
}