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.synapse.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 , workspaceName , integrationRuntimeName | 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 |
---|---|---|
integrationRuntimeName | string | Integration runtime name |
resourceGroupName | string | The name of the resource group. The name is case insensitive. |
subscriptionId | string | The ID of the target subscription. |
workspaceName | string | The name of the workspace. |
SELECT
examples
- list
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
;