private_link_resources
Creates, updates, deletes, gets or lists a private_link_resources
resource.
Overview
Name | private_link_resources |
Type | Resource |
Id | azure_extras.healthcare.private_link_resources |
Fields
The following fields are returned by SELECT
queries:
- get
- list_by_service
The request was successful; the request was well-formed and received properly.
Name | Datatype | Description |
---|---|---|
properties | object | Resource properties. |
systemData | object | Metadata pertaining to creation and last modification of the resource. |
The request was successful; the request was well-formed and received properly.
Name | Datatype | Description |
---|---|---|
properties | object | Resource properties. |
systemData | object | Metadata pertaining to creation and last modification of the resource. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | subscriptionId , resourceGroupName , resourceName , groupName | Gets a private link resource that need to be created for a service. | |
list_by_service | select | subscriptionId , resourceGroupName , resourceName | Gets the private link resources that need to be created for a service. |
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 group. |
resourceGroupName | string | The name of the resource group that contains the service instance. |
resourceName | string | The name of the service instance. |
subscriptionId | string | The ID of the target subscription. |
SELECT
examples
- get
- list_by_service
Gets a private link resource that need to be created for a service.
SELECT
properties,
systemData
FROM azure_extras.healthcare.private_link_resources
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND resourceName = '{{ resourceName }}' -- required
AND groupName = '{{ groupName }}' -- required
;
Gets the private link resources that need to be created for a service.
SELECT
properties,
systemData
FROM azure_extras.healthcare.private_link_resources
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND resourceName = '{{ resourceName }}' -- required
;