Skip to main content

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

Namemanaged_instances_outbound_network_dependencies_by_managed_instances
TypeResource
Idazure.sql.managed_instances_outbound_network_dependencies_by_managed_instances

Fields

NameDatatypeDescription
categorystringThe type of service accessed by the managed instance service, e.g., Azure Storage, Azure Active Directory, etc.
endpointsarrayThe endpoints that the managed instance service communicates with in order to function correctly.

Methods

NameAccessible byRequired ParamsDescription
listSELECTmanagedInstanceName, resourceGroupName, subscriptionIdGets 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 }}';