Skip to main content

private_link_resources_adt_apis

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

Overview

Nameprivate_link_resources_adt_apis
TypeResource
Idazure.security_and_compliance.private_link_resources_adt_apis

Fields

The following fields are returned by SELECT queries:

OK. The request was successful; the request was well-formed and received properly.

NameDatatypeDescription
idstringFully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
namestringThe name of the resource
propertiesobjectResource properties.
systemDataobjectRequired property for system data
typestringThe type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, resourceGroupName, resourceName, groupNameGets a private link resource that need to be created for a service.
list_by_serviceselectsubscriptionId, resourceGroupName, resourceNameGets the private link resources that need to be created for a service.

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
groupNamestringThe name of the private link resource group.
resourceGroupNamestringThe name of the resource group that contains the service instance.
resourceNamestringThe name of the service instance.
subscriptionIdstringThe subscription identifier.

SELECT examples

Gets a private link resource that need to be created for a service.

SELECT
id,
name,
properties,
systemData,
type
FROM azure.security_and_compliance.private_link_resources_adt_apis
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND resourceName = '{{ resourceName }}' -- required
AND groupName = '{{ groupName }}' -- required
;