private_link_resources
Creates, updates, deletes, gets or lists a private_link_resources
resource.
Overview
Name | private_link_resources |
Type | Resource |
Id | azure.azure_active_directory.private_link_resources |
Fields
The following fields are returned by SELECT
queries:
- get
- list_by_private_link_policy
Successfully retrieved a specified private link resource.
Name | Datatype | Description |
---|---|---|
id | string | The unique resource identifier of the Azure AD PrivateLink Policy. |
name | string | The name of the Azure AD PrivateLink Policy. |
properties | object | Resource properties. |
type | string | The type of Azure resource. |
Successfully retrieved private link resources.
Name | Datatype | Description |
---|---|---|
id | string | The unique resource identifier of the Azure AD PrivateLink Policy. |
name | string | The name of the Azure AD PrivateLink Policy. |
properties | object | Resource properties. |
type | string | The type of Azure resource. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | subscriptionId , resourceGroupName , policyName , groupName | Gets the private link resources that need to be created for a policy of AzureAD. | |
list_by_private_link_policy | select | subscriptionId , resourceGroupName , policyName | Gets the private link resources that need to be created for a policy of AzureAD. |
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 |
---|---|---|
groupName | string | The name of the private link resource. |
policyName | string | The name of the private link policy in Azure AD. |
resourceGroupName | string | Name of an Azure resource group. |
subscriptionId | string | Azure subscription ID. |
SELECT
examples
- get
- list_by_private_link_policy
Gets the private link resources that need to be created for a policy of AzureAD.
SELECT
id,
name,
properties,
type
FROM azure.azure_active_directory.private_link_resources
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND policyName = '{{ policyName }}' -- required
AND groupName = '{{ groupName }}' -- required
;
Gets the private link resources that need to be created for a policy of AzureAD.
SELECT
id,
name,
properties,
type
FROM azure.azure_active_directory.private_link_resources
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND policyName = '{{ policyName }}' -- required
;