integration_runtime_nodes
Creates, updates, deletes, gets or lists a integration_runtime_nodes
resource.
Overview
Name | integration_runtime_nodes |
Type | Resource |
Id | azure.data_factory.integration_runtime_nodes |
Fields
Name | Datatype | Description |
---|---|---|
capabilities | object | The integration runtime capabilities dictionary |
concurrentJobsLimit | integer | Maximum concurrent jobs on the integration runtime node. |
expiryTime | string | The time at which the integration runtime will expire in ISO8601 format. |
hostServiceUri | string | URI for the host machine of the integration runtime. |
isActiveDispatcher | boolean | Indicates whether this node is the active dispatcher for integration runtime requests. |
lastConnectTime | string | The most recent time at which the integration runtime was connected in ISO8601 format. |
lastEndUpdateTime | string | The last time for the integration runtime node update end. |
lastStartTime | string | The time the node last started up. |
lastStartUpdateTime | string | The last time for the integration runtime node update start. |
lastStopTime | string | The integration runtime node last stop time. |
lastUpdateResult | string | The result of the last integration runtime node update. |
machineName | string | Machine name of the integration runtime node. |
maxConcurrentJobs | integer | The maximum concurrent jobs in this integration runtime. |
nodeName | string | Name of the integration runtime node. |
registerTime | string | The time at which the integration runtime node was registered in ISO8601 format. |
status | string | Status of the integration runtime node. |
version | string | Version of the integration runtime node. |
versionStatus | string | Status of the integration runtime node version. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | factoryName, integrationRuntimeName, nodeName, resourceGroupName, subscriptionId | Gets a self-hosted integration runtime node. |
delete | DELETE | factoryName, integrationRuntimeName, nodeName, resourceGroupName, subscriptionId | Deletes a self-hosted integration runtime node. |
update | UPDATE | factoryName, integrationRuntimeName, nodeName, resourceGroupName, subscriptionId | Updates a self-hosted integration runtime node. |
SELECT
examples
Gets a self-hosted integration runtime node.
SELECT
capabilities,
concurrentJobsLimit,
expiryTime,
hostServiceUri,
isActiveDispatcher,
lastConnectTime,
lastEndUpdateTime,
lastStartTime,
lastStartUpdateTime,
lastStopTime,
lastUpdateResult,
machineName,
maxConcurrentJobs,
nodeName,
registerTime,
status,
version,
versionStatus
FROM azure.data_factory.integration_runtime_nodes
WHERE factoryName = '{{ factoryName }}'
AND integrationRuntimeName = '{{ integrationRuntimeName }}'
AND nodeName = '{{ nodeName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';
UPDATE
example
Updates a integration_runtime_nodes
resource.
/*+ update */
UPDATE azure.data_factory.integration_runtime_nodes
SET
concurrentJobsLimit = '{{ concurrentJobsLimit }}'
WHERE
factoryName = '{{ factoryName }}'
AND integrationRuntimeName = '{{ integrationRuntimeName }}'
AND nodeName = '{{ nodeName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';
DELETE
example
Deletes the specified integration_runtime_nodes
resource.
/*+ delete */
DELETE FROM azure.data_factory.integration_runtime_nodes
WHERE factoryName = '{{ factoryName }}'
AND integrationRuntimeName = '{{ integrationRuntimeName }}'
AND nodeName = '{{ nodeName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';