private_link_resources
Creates, updates, deletes, gets or lists a private_link_resources resource.
Overview
| Name | private_link_resources |
| Type | Resource |
| Id | azure.event_hub.private_link_resources |
Fields
The following fields are returned by SELECT queries:
- get
| Name | Datatype | Description |
|---|---|---|
id | string | Fully qualified identifier of the resource. |
name | string | Name of the resource. |
groupId | string | The private link resource group id. |
requiredMembers | array | The private link resource required member names. |
requiredZoneNames | array | The private link resource Private link DNS zone name. |
type | string | Type of the resource. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | resource_group_name, namespace_name, subscription_id | Gets 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.
| Name | Datatype | Description |
|---|---|---|
namespace_name | string | The Namespace name. Required. |
resource_group_name | string | Name of the resource group within the azure subscription. Required. |
subscription_id | string |
SELECT examples
- get
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
;