private_link_resources
Creates, updates, deletes, gets or lists a private_link_resources
resource.
Overview
Name | private_link_resources |
Type | Resource |
Id | azure.service_bus.private_link_resources |
Fields
The following fields are returned by SELECT
queries:
- get
Private Link resource List
Name | Datatype | Description |
---|---|---|
id | string | Fully qualified identifier of the resource. |
name | string | Name of the resource |
properties | object | Properties of the private link resource. |
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 | resourceGroupName , namespaceName , subscriptionId | Gets lists of resources that supports Privatelinks. |
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 |
---|---|---|
namespaceName | string | The namespace name |
resourceGroupName | string | The name of the resource group. The name is case insensitive. |
subscriptionId | string (uuid) | The ID of the target subscription. The value must be an UUID. |
SELECT
examples
- get
Gets lists of resources that supports Privatelinks.
SELECT
id,
name,
properties,
type
FROM azure.service_bus.private_link_resources
WHERE resourceGroupName = '{{ resourceGroupName }}' -- required
AND namespaceName = '{{ namespaceName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
;