Skip to main content

private_link_resources_supported

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

Overview

Nameprivate_link_resources_supported
TypeResource
Idazure.search.private_link_resources_supported

Fields

NameDatatypeDescription
idstringFully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
namestringThe name of the resource
propertiesobjectDescribes the properties of a supported private link resource for the Azure AI Search service. For a given API version, this represents the 'supported' groupIds when creating a shared private link resource.
typestringThe type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

Methods

NameAccessible byRequired ParamsDescription
listSELECTresourceGroupName, searchServiceName, subscriptionIdGets a list of all supported private link resource types for the given service.

SELECT examples

Gets a list of all supported private link resource types for the given service.

SELECT
id,
name,
properties,
type
FROM azure.search.private_link_resources_supported
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND searchServiceName = '{{ searchServiceName }}'
AND subscriptionId = '{{ subscriptionId }}';