Skip to main content

endpoint_certificates

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

Overview

Nameendpoint_certificates
TypeResource
Idazure.sql.endpoint_certificates

Fields

NameDatatypeDescription
endpointTypetextfield from the properties object
managedInstanceNametextfield from the properties object
public_blobtextfield from the properties object
resourceGroupNametextfield from the properties object
subscriptionIdtextfield from the properties object

Methods

NameAccessible byRequired ParamsDescription
getSELECTendpointType, managedInstanceName, resourceGroupName, subscriptionIdGets a certificate used on the endpoint with the given id.

SELECT examples

Gets a certificate used on the endpoint with the given id.

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 }}';