integration_runtimes_outbound_network_dependencies_endpoints
Creates, updates, deletes, gets or lists a integration_runtimes_outbound_network_dependencies_endpoints
resource.
Overview
Name | integration_runtimes_outbound_network_dependencies_endpoints |
Type | Resource |
Id | azure.data_factory.integration_runtimes_outbound_network_dependencies_endpoints |
Fields
Name | Datatype | Description |
---|---|---|
category | string | The category of outbound network dependency. |
endpoints | array | The endpoints for outbound network dependency. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT | factoryName, integrationRuntimeName, resourceGroupName, subscriptionId | Gets 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 }}';