Skip to main content

integration_runtime_nodes_ip_addresses

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

Overview

Nameintegration_runtime_nodes_ip_addresses
TypeResource
Idazure.data_factory.integration_runtime_nodes_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, factoryName, integrationRuntimeName, nodeNameapi-versionGet the IP address of self-hosted 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
factoryNamestringThe factory name.
integrationRuntimeNamestringThe integration runtime name.
nodeNamestringThe integration runtime node name.
resourceGroupNamestringThe resource group name.
subscriptionIdstringThe subscription identifier.
api-versionstringThe API version.

SELECT examples

Get the IP address of self-hosted integration runtime node.

SELECT
ipAddress
FROM azure.data_factory.integration_runtime_nodes_ip_addresses
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND factoryName = '{{ factoryName }}' -- required
AND integrationRuntimeName = '{{ integrationRuntimeName }}' -- required
AND nodeName = '{{ nodeName }}' -- required
AND api-version = '{{ api-version }}'
;