managed_instance_private_link_resources
Creates, updates, deletes, gets or lists a managed_instance_private_link_resources
resource.
Overview
Name | managed_instance_private_link_resources |
Type | Resource |
Id | azure.sql.managed_instance_private_link_resources |
Fields
The following fields are returned by SELECT
queries:
- get
Successfully retrieved private link resources.
Name | Datatype | Description |
---|---|---|
properties | object | The private link resource group id. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | resourceGroupName , managedInstanceName , groupName , subscriptionId | Gets a private link resource for SQL server. |
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. |
managedInstanceName | string | The name of the managed instance. |
resourceGroupName | string | The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal. |
subscriptionId | string | The subscription ID that identifies an Azure subscription. |
SELECT
examples
- get
Gets a private link resource for SQL server.
SELECT
properties
FROM azure.sql.managed_instance_private_link_resources
WHERE resourceGroupName = '{{ resourceGroupName }}' -- required
AND managedInstanceName = '{{ managedInstanceName }}' -- required
AND groupName = '{{ groupName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
;