Skip to main content

private_link_resources_comps

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

Overview

Nameprivate_link_resources_comps
TypeResource
Idazure_extras.m365_security_and_compliance.private_link_resources_comps

Fields

NameDatatypeDescription
idtextFully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
nametextThe name of the resource
groupNametextfield from the properties object
group_idtextfield from the properties object
required_memberstextfield from the properties object
required_zone_namestextfield from the properties object
resourceGroupNametextfield from the properties object
resourceNametextfield from the properties object
subscriptionIdtextfield from the properties object
system_datatextfield from the properties object
typetextThe type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

Methods

NameAccessible byRequired ParamsDescription
getSELECTgroupName, resourceGroupName, resourceName, subscriptionIdGets a private link resource that need to be created for a service.
list_by_serviceSELECTresourceGroupName, resourceName, subscriptionIdGets the private link resources that need to be created for a service.

SELECT examples

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

SELECT
id,
name,
groupName,
group_id,
required_members,
required_zone_names,
resourceGroupName,
resourceName,
subscriptionId,
system_data,
type
FROM azure_extras.m365_security_and_compliance.vw_private_link_resources_comps
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND resourceName = '{{ resourceName }}'
AND subscriptionId = '{{ subscriptionId }}';