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.data_factory.integration_runtimes_outbound_network_dependencies_endpoints

Fields

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

Methods

NameAccessible byRequired ParamsDescription
listSELECTfactoryName, integrationRuntimeName, resourceGroupName, subscriptionIdGets 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.data_factory.integration_runtimes_outbound_network_dependencies_endpoints
WHERE factoryName = '{{ factoryName }}'
AND integrationRuntimeName = '{{ integrationRuntimeName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';