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
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
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT | managedInstanceName, resourceGroupName, subscriptionId | Gets the collection of outbound network dependencies for the given managed instance. |
SELECT
examples
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 managedInstanceName = '{{ managedInstanceName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';