Skip to main content

integration_runtimes_outbound_network_dependencies_endpoints

Creates, updates, deletes, gets or lists a integration_runtimes_outbound_network_dependencies_endpoints resource.

Overview

Nameintegration_runtimes_outbound_network_dependencies_endpoints
TypeResource
Idazure.synapse.integration_runtimes_outbound_network_dependencies_endpoints

Fields

NameDatatypeDescription
categorystringThe category of outbound network dependency.
endpointsarrayThe endpoints for outbound network dependency.

Methods

NameAccessible byRequired ParamsDescription
listSELECTintegrationRuntimeName, resourceGroupName, subscriptionId, workspaceNameGets the list of outbound network dependencies for a given Azure-SSIS integration runtime.

SELECT examples

Gets the list of outbound network dependencies for a given Azure-SSIS integration runtime.

SELECT
category,
endpoints
FROM azure.synapse.integration_runtimes_outbound_network_dependencies_endpoints
WHERE integrationRuntimeName = '{{ integrationRuntimeName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND workspaceName = '{{ workspaceName }}';