Skip to main content

private_link_resources

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

Overview

Nameprivate_link_resources
TypeResource
Idazure.event_hub.private_link_resources

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringFully qualified identifier of the resource.
namestringName of the resource.
groupIdstringThe private link resource group id.
requiredMembersarrayThe private link resource required member names.
requiredZoneNamesarrayThe private link resource Private link DNS zone name.
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.event_hub.private_link_resources
WHERE resource_group_name = '{{ resource_group_name }}' -- required
AND namespace_name = '{{ namespace_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;