managed_instance_tde_certificates
Creates, updates, deletes, gets or lists a managed_instance_tde_certificates resource.
Overview
| Name | managed_instance_tde_certificates |
| Type | Resource |
| Id | azure.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:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
create | insert | resource_group_name, managed_instance_name, subscription_id | Creates 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.
| Name | Datatype | Description |
|---|---|---|
managed_instance_name | string | The name of the managed instance. Required. |
resource_group_name | string | The name of the resource group. The name is case insensitive. Required. |
subscription_id | string |
INSERT examples
- create
- Manifest
Creates a TDE certificate for a given server.
INSERT INTO azure.sql.managed_instance_tde_certificates (
properties,
resource_group_name,
managed_instance_name,
subscription_id
)
SELECT
'{{ properties }}',
'{{ resource_group_name }}',
'{{ managed_instance_name }}',
'{{ subscription_id }}'
;
# Description fields are for documentation purposes
- name: managed_instance_tde_certificates
props:
- name: resource_group_name
value: "{{ resource_group_name }}"
description: Required parameter for the managed_instance_tde_certificates resource.
- name: managed_instance_name
value: "{{ managed_instance_name }}"
description: Required parameter for the managed_instance_tde_certificates resource.
- name: subscription_id
value: "{{ subscription_id }}"
description: Required parameter for the managed_instance_tde_certificates resource.
- name: properties
description: |
Resource properties.
value:
privateBlob: "{{ privateBlob }}"
certPassword: "{{ certPassword }}"