Skip to main content

integration_runtime_node_ip_address

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

Overview

Nameintegration_runtime_node_ip_address
TypeResource
Idazure.synapse.integration_runtime_node_ip_address

Fields

The following fields are returned by SELECT queries:

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

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectresource_group_name, workspace_name, integration_runtime_name, node_name, subscription_idGet integration runtime node IP address. Get 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
integration_runtime_namestringIntegration runtime name. Required.
node_namestringIntegration runtime node name. Required.
resource_group_namestringThe name of the resource group. The name is case insensitive. Required.
subscription_idstring
workspace_namestringThe name of the workspace. Required.

SELECT examples

Get integration runtime node IP address. Get the IP address of an integration runtime node.

SELECT
ipAddress
FROM azure.synapse.integration_runtime_node_ip_address
WHERE resource_group_name = '{{ resource_group_name }}' -- required
AND workspace_name = '{{ workspace_name }}' -- required
AND integration_runtime_name = '{{ integration_runtime_name }}' -- required
AND node_name = '{{ node_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;