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 |
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",
"readOnly": true,
"example": "abc123"
},
"issuer": {
"type": "object",
"properties": {
"name": {
"type": "string"
}
},
"example": "example_value"
},
"csr": {
"type": "string",
"description": "The certificate signing request (CSR) in base64.",
"example": "example_value"
},
"cancellation_requested": {
"type": "boolean",
"example": true
},
"status": {
"type": "string",
"example": "example_value"
},
"status_details": {
"type": "string",
"example": "example_value"
},
"error": {
"type": "object",
"properties": {
"code": {
"type": "string"
},
"message": {
"type": "string"
}
},
"example": "example_value"
},
"target": {
"type": "string",
"example": "example_value"
},
"request_id": {
"type": "string",
"example": "500123"
}
}
}