integration_runtimes_outbound_network_dependencies_endpoints
Creates, updates, deletes, gets or lists an 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
The following fields are returned by SELECT queries:
- list
OK.
| Name | Datatype | Description |
|---|---|---|
category | string | The category of outbound network dependency. |
endpoints | array | The endpoints for outbound network dependency. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | subscriptionId, resourceGroupName, factoryName, integrationRuntimeName | api-version | Gets 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.
| Name | Datatype | Description |
|---|---|---|
factoryName | string | The factory name. |
integrationRuntimeName | string | The integration runtime name. |
resourceGroupName | string | The resource group name. |
subscriptionId | string | The subscription identifier. |
api-version | string | The API version. |
SELECT examples
- list
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 }}'
;