endpoint_certificates
Creates, updates, deletes, gets or lists an endpoint_certificates
resource.
Overview
Name | endpoint_certificates |
Type | Resource |
Id | azure.sql.endpoint_certificates |
Fields
The following fields are returned by SELECT
queries:
- get
Successfully retrieved an endpoint certificate.
Name | Datatype | Description |
---|---|---|
properties | object | Resource properties. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | resourceGroupName , managedInstanceName , endpointType , subscriptionId | Gets a certificate used on the endpoint with the given id. |
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 |
---|---|---|
endpointType | string | Type of the endpoint whose certificate the customer is looking for. |
managedInstanceName | string | The name of the managed instance. |
resourceGroupName | string | The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal. |
subscriptionId | string | The subscription ID that identifies an Azure subscription. |
SELECT
examples
- get
Gets a certificate used on the endpoint with the given id.
SELECT
properties
FROM azure.sql.endpoint_certificates
WHERE resourceGroupName = '{{ resourceGroupName }}' -- required
AND managedInstanceName = '{{ managedInstanceName }}' -- required
AND endpointType = '{{ endpointType }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
;