integration_runtime_nodes_ip_addresses
Creates, updates, deletes, gets or lists an integration_runtime_nodes_ip_addresses
resource.
Overview
Name | integration_runtime_nodes_ip_addresses |
Type | Resource |
Id | azure.data_factory.integration_runtime_nodes_ip_addresses |
Fields
The following fields are returned by SELECT
queries:
- get
OK.
Name | Datatype | Description |
---|---|---|
ipAddress | string | The IP address of self-hosted integration runtime node. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | subscriptionId , resourceGroupName , factoryName , integrationRuntimeName , nodeName | api-version | Get 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.
Name | Datatype | Description |
---|---|---|
factoryName | string | The factory name. |
integrationRuntimeName | string | The integration runtime name. |
nodeName | string | The integration runtime node name. |
resourceGroupName | string | The resource group name. |
subscriptionId | string | The subscription identifier. |
api-version | string | The API version. |
SELECT
examples
- get
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 }}'
;