Skip to main content

vault_certificates

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

Overview

Namevault_certificates
TypeResource
Idazure.recovery_services.vault_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
createinsertsubscriptionId, resourceGroupName, vaultName, certificateNameUploads a certificate for a resource.

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
certificateNamestringCertificate friendly name.
resourceGroupNamestringThe name of the resource group. The name is case insensitive.
subscriptionIdstringThe ID of the target subscription.
vaultNamestringThe name of the recovery services vault.

INSERT examples

Uploads a certificate for a resource.

INSERT INTO azure.recovery_services.vault_certificates (
data__properties,
subscriptionId,
resourceGroupName,
vaultName,
certificateName
)
SELECT
'{{ properties }}',
'{{ subscriptionId }}',
'{{ resourceGroupName }}',
'{{ vaultName }}',
'{{ certificateName }}'
RETURNING
id,
name,
properties,
type
;