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.synapse.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, workspaceName, integrationRuntimeNameGets 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
integrationRuntimeNamestringIntegration runtime name
resourceGroupNamestringThe name of the resource group. The name is case insensitive.
subscriptionIdstringThe ID of the target subscription.
workspaceNamestringThe name of the workspace.

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