managed_instances_outbound_network_dependencies_by_managed_instances
Creates, updates, deletes, gets or lists a managed_instances_outbound_network_dependencies_by_managed_instances
resource.
Overview
Name | managed_instances_outbound_network_dependencies_by_managed_instances |
Type | Resource |
Id | azure.sql.managed_instances_outbound_network_dependencies_by_managed_instances |
Fields
The following fields are returned by SELECT
queries:
- list
Successfully retrieved the outbound network dependencies for this managed instance.
Name | Datatype | Description |
---|---|---|
category | string | The type of service accessed by the managed instance service, e.g., Azure Storage, Azure Active Directory, etc. |
endpoints | array | The endpoints that the managed instance service communicates with in order to function correctly. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | resourceGroupName , managedInstanceName , subscriptionId | Gets the collection of outbound network dependencies for the given managed instance. |
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 |
---|---|---|
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
- list
Gets the collection of outbound network dependencies for the given managed instance.
SELECT
category,
endpoints
FROM azure.sql.managed_instances_outbound_network_dependencies_by_managed_instances
WHERE resourceGroupName = '{{ resourceGroupName }}' -- required
AND managedInstanceName = '{{ managedInstanceName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
;