endpoint_certificates
Creates, updates, deletes, gets or lists a endpoint_certificates
resource.
Overview
Name | endpoint_certificates |
Type | Resource |
Id | azure.sql.endpoint_certificates |
Fields
- vw_endpoint_certificates
- endpoint_certificates
Name | Datatype | Description |
---|---|---|
endpointType | text | field from the properties object |
managedInstanceName | text | field from the properties object |
public_blob | text | field from the properties object |
resourceGroupName | text | field from the properties object |
subscriptionId | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
properties | object | The properties of an endpoint certificate. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | endpointType, managedInstanceName, resourceGroupName, subscriptionId | Gets a certificate used on the endpoint with the given id. |
SELECT
examples
Gets a certificate used on the endpoint with the given id.
- vw_endpoint_certificates
- endpoint_certificates
SELECT
endpointType,
managedInstanceName,
public_blob,
resourceGroupName,
subscriptionId
FROM azure.sql.vw_endpoint_certificates
WHERE endpointType = '{{ endpointType }}'
AND managedInstanceName = '{{ managedInstanceName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';
SELECT
properties
FROM azure.sql.endpoint_certificates
WHERE endpointType = '{{ endpointType }}'
AND managedInstanceName = '{{ managedInstanceName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';