Skip to main content

private_link_resources

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

Overview

Nameprivate_link_resources
TypeResource
Idazure.service_bus.private_link_resources

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringFully qualified identifier of the resource.
namestringName of the resource.
groupIdstring:vartype group_id: str
requiredMembersarrayRequired Members.
requiredZoneNamesarrayRequired Zone Names.
typestringType of the resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectresource_group_name, namespace_name, subscription_idGets lists of resources that supports Privatelinks. .. seealso:: - https://msdn.microsoft.com/en-us/library/azure/mt639379.aspx

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
namespace_namestringThe namespace name. Required.
resource_group_namestringName of the Resource group within the Azure subscription. Required.
subscription_idstring

SELECT examples

Gets lists of resources that supports Privatelinks. .. seealso:: - https://msdn.microsoft.com/en-us/library/azure/mt639379.aspx

SELECT
id,
name,
groupId,
requiredMembers,
requiredZoneNames,
type
FROM azure.service_bus.private_link_resources
WHERE resource_group_name = '{{ resource_group_name }}' -- required
AND namespace_name = '{{ namespace_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;