Skip to main content

managed_instance_private_link_resources_by_managed_instances

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

Overview

Namemanaged_instance_private_link_resources_by_managed_instances
TypeResource
Idazure.sql.managed_instance_private_link_resources_by_managed_instances

Fields

The following fields are returned by SELECT queries:

Successfully retrieved private link resources.

NameDatatypeDescription
propertiesobjectThe private link resource group id.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectresourceGroupName, managedInstanceName, subscriptionIdGets the private link resources for SQL 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
managedInstanceNamestringThe name of the managed instance.
resourceGroupNamestringThe name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
subscriptionIdstringThe subscription ID that identifies an Azure subscription.

SELECT examples

Gets the private link resources for SQL server.

SELECT
properties
FROM azure.sql.managed_instance_private_link_resources_by_managed_instances
WHERE resourceGroupName = '{{ resourceGroupName }}' -- required
AND managedInstanceName = '{{ managedInstanceName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
;