Skip to main content

tde_certificates

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

Overview

Nametde_certificates
TypeResource
Idazure.sql.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
createinsertresource_group_name, server_name, subscription_idCreates 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
resource_group_namestringThe name of the resource group. The name is case insensitive. Required.
server_namestringThe name of the server. Required.
subscription_idstring

INSERT examples

Creates a TDE certificate for a given server.

INSERT INTO azure.sql.tde_certificates (
properties,
resource_group_name,
server_name,
subscription_id
)
SELECT
'{{ properties }}',
'{{ resource_group_name }}',
'{{ server_name }}',
'{{ subscription_id }}'
;