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.synapse.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 | integrationRuntimeName, resourceGroupName, subscriptionId, workspaceName | 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.synapse.integration_runtimes_outbound_network_dependencies_endpoints
WHERE integrationRuntimeName = '{{ integrationRuntimeName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND workspaceName = '{{ workspaceName }}';