Skip to main content

integration_runtime_node_ip_addresses

Creates, updates, deletes, gets or lists an integration_runtime_node_ip_addresses resource.

Overview

Nameintegration_runtime_node_ip_addresses
TypeResource
Idazure.synapse.integration_runtime_node_ip_addresses

Fields

The following fields are returned by SELECT queries:

OK.

NameDatatypeDescription
ipAddressstringThe IP address of self-hosted integration runtime node.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, resourceGroupName, workspaceName, integrationRuntimeName, nodeNameGet the IP address of an integration runtime node

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
nodeNamestringIntegration runtime node 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

Get the IP address of an integration runtime node

SELECT
ipAddress
FROM azure.synapse.integration_runtime_node_ip_addresses
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND workspaceName = '{{ workspaceName }}' -- required
AND integrationRuntimeName = '{{ integrationRuntimeName }}' -- required
AND nodeName = '{{ nodeName }}' -- required
;