Skip to main content

managed_instance_tde_certificates

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

Overview

Namemanaged_instance_tde_certificates
TypeResource
Idazure.sql.managed_instance_tde_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
createinsertresourceGroupName, managedInstanceName, subscriptionIdCreates a TDE certificate for a given server.

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
managedInstanceNamestringThe name of the managed instance.
resourceGroupNamestringThe name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
subscriptionIdstringThe subscription ID that identifies an Azure subscription.

INSERT examples

Creates a TDE certificate for a given server.

INSERT INTO azure.sql.managed_instance_tde_certificates (
data__properties,
resourceGroupName,
managedInstanceName,
subscriptionId
)
SELECT
'{{ properties }}',
'{{ resourceGroupName }}',
'{{ managedInstanceName }}',
'{{ subscriptionId }}'
;