Skip to main content

merge_certificates

Creates, updates, deletes, gets or lists a merge_certificates resource.

Overview

Namemerge_certificates
TypeResource
Idazure.key_vault_certificates.merge_certificates

Fields

The following fields are returned by SELECT queries:

SELECT not supported for this resource, use SHOW METHODS to view available operations for the resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
merge_certificateexeccertificate_name, vault_name, x5cMerges a certificate or a certificate chain with a key pair existing on the server. The MergeCertificate operation performs the merging of a certificate or certificate chain with a key pair currently available in the service. This operation requires the certificates/create permission.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
certificate_namestringThe name of the certificate. Required.
vault_namestringKey vault name. (default: )

Lifecycle Methods

Merges a certificate or a certificate chain with a key pair existing on the server. The MergeCertificate operation performs the merging of a certificate or certificate chain with a key pair currently available in the service. This operation requires the certificates/create permission.

EXEC azure.key_vault_certificates.merge_certificates.merge_certificate 
@certificate_name='{{ certificate_name }}' --required,
@vault_name='{{ vault_name }}' --required
@@json=
'{
"x5c": "{{ x5c }}",
"attributes": "{{ attributes }}",
"tags": "{{ tags }}"
}'
;