Azure Key Vault · Schema
CertificateImportParameters
The certificate import parameters.
CertificatesCloud SecurityCryptographyKey ManagementSecrets ManagementSecurity
Properties
| Name | Type | Description |
|---|---|---|
| value | string | Base64 encoded representation of the certificate object to import. This certificate needs to contain the private key. |
| pwd | string | If the private key in base64EncodedCertificate is encrypted, the password used for encryption. |
| policy | object | |
| attributes | object | |
| tags | object | Application specific metadata in the form of key-value pairs. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/CertificateImportParameters",
"title": "CertificateImportParameters",
"type": "object",
"description": "The certificate import parameters.",
"required": [
"value"
],
"properties": {
"value": {
"type": "string",
"description": "Base64 encoded representation of the certificate object to import. This certificate needs to contain the private key.",
"example": "example_value"
},
"pwd": {
"type": "string",
"description": "If the private key in base64EncodedCertificate is encrypted, the password used for encryption.",
"example": "example_value"
},
"policy": {
"$ref": "#/components/schemas/CertificatePolicy"
},
"attributes": {
"$ref": "#/components/schemas/CertificateAttributes"
},
"tags": {
"type": "object",
"additionalProperties": {
"type": "string"
},
"description": "Application specific metadata in the form of key-value pairs.",
"example": "example_value"
}
}
}