Skip to main content

kusto_pool_private_link_resources

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

Overview

Namekusto_pool_private_link_resources
TypeResource
Idazure.synapse.kusto_pool_private_link_resources

Fields

The following fields are returned by SELECT queries:

OK.

NameDatatypeDescription
propertiesobjectThe Private Link Resources.
systemDataobjectAzure Resource Manager metadata containing createdBy and modifiedBy information.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectsubscriptionId, resourceGroupName, workspaceName, kustoPoolNameLists all Kusto pool PrivateLinkResources.

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

SELECT examples

Lists all Kusto pool PrivateLinkResources.

SELECT
properties,
systemData
FROM azure.synapse.kusto_pool_private_link_resources
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND workspaceName = '{{ workspaceName }}' -- required
AND kustoPoolName = '{{ kustoPoolName }}' -- required
;