Skip to main content

private_link_resources

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

Overview

Nameprivate_link_resources
TypeResource
Idazure.synapse.private_link_resources

Fields

The following fields are returned by SELECT queries:

Private link resource details

NameDatatypeDescription
propertiesobjectThe private link resource properties.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, resourceGroupName, workspaceName, privateLinkResourceNameGet private link resource in workspace
listselectsubscriptionId, resourceGroupName, workspaceNameGet all private link resources for a workspaces

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
privateLinkResourceNamestringThe name of the private link resource
resourceGroupNamestringThe name of the resource group. The name is case insensitive.
subscriptionIdstringThe ID of the target subscription.
workspaceNamestringThe name of the workspace.

SELECT examples

Get private link resource in workspace

SELECT
properties
FROM azure.synapse.private_link_resources
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND workspaceName = '{{ workspaceName }}' -- required
AND privateLinkResourceName = '{{ privateLinkResourceName }}' -- required
;