Skip to main content

integration_runtimes_outbound_network_dependencies_endpoints

Creates, updates, deletes, gets or lists an 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

The following fields are returned by SELECT queries:

OK.

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

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectsubscriptionId, resourceGroupName, factoryName, integrationRuntimeNameapi-versionGets the list of outbound network dependencies for a given Azure-SSIS integration runtime.

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.

NameDatatypeDescription
factoryNamestringThe factory name.
integrationRuntimeNamestringThe integration runtime name.
resourceGroupNamestringThe resource group name.
subscriptionIdstringThe subscription identifier.
api-versionstringThe API version.

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 subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND factoryName = '{{ factoryName }}' -- required
AND integrationRuntimeName = '{{ integrationRuntimeName }}' -- required
AND api-version = '{{ api-version }}'
;