Azure Key Vault · Schema
CertificateOperation
A certificate operation is returned in case of asynchronous requests.
CertificatesCloud SecurityCryptographyKey ManagementSecrets ManagementSecurity
Properties
| Name | Type | Description |
|---|---|---|
| id | string | The certificate id. |
| issuer | object | |
| csr | string | The certificate signing request (CSR) that is being used in the certificate operation. |
| cancellation_requested | boolean | Indicates if cancellation was requested on the certificate operation. |
| status | string | Status of the certificate operation. |
| status_details | string | The status details of the certificate operation. |
| error | object | |
| target | string | Location which contains the result of the certificate operation. |
| request_id | string | Identifier for the certificate operation. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/CertificateOperation",
"title": "CertificateOperation",
"type": "object",
"description": "A certificate operation is returned in case of asynchronous requests.",
"properties": {
"id": {
"type": "string",
"description": "The certificate id.",
"readOnly": true,
"example": "abc123"
},
"issuer": {
"$ref": "#/components/schemas/IssuerParameters"
},
"csr": {
"type": "string",
"format": "byte",
"description": "The certificate signing request (CSR) that is being used in the certificate operation.",
"example": "example_value"
},
"cancellation_requested": {
"type": "boolean",
"description": "Indicates if cancellation was requested on the certificate operation.",
"example": true
},
"status": {
"type": "string",
"description": "Status of the certificate operation.",
"example": "example_value"
},
"status_details": {
"type": "string",
"description": "The status details of the certificate operation.",
"example": "example_value"
},
"error": {
"$ref": "#/components/schemas/Error"
},
"target": {
"type": "string",
"description": "Location which contains the result of the certificate operation.",
"example": "example_value"
},
"request_id": {
"type": "string",
"description": "Identifier for the certificate operation.",
"example": "500123"
}
}
}