integration_runtime_nodes
Creates, updates, deletes, gets or lists an integration_runtime_nodes
resource.
Overview
Name | integration_runtime_nodes |
Type | Resource |
Id | azure.data_factory.integration_runtime_nodes |
Fields
The following fields are returned by SELECT
queries:
- get
OK.
Name | Datatype | Description |
---|---|---|
capabilities | object | The integration runtime capabilities dictionary |
concurrentJobsLimit | integer | Maximum concurrent jobs on the integration runtime node. |
expiryTime | string (date-time) | 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 (date-time) | The most recent time at which the integration runtime was connected in ISO8601 format. |
lastEndUpdateTime | string (date-time) | The last time for the integration runtime node update end. |
lastStartTime | string (date-time) | The time the node last started up. |
lastStartUpdateTime | string (date-time) | The last time for the integration runtime node update start. |
lastStopTime | string (date-time) | 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 (date-time) | 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
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 | Gets a self-hosted integration runtime node. |
update | update | subscriptionId , resourceGroupName , factoryName , integrationRuntimeName , nodeName | api-version | Updates a self-hosted integration runtime node. |
delete | delete | subscriptionId , resourceGroupName , factoryName , integrationRuntimeName , nodeName | api-version | Deletes a 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
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 subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND factoryName = '{{ factoryName }}' -- required
AND integrationRuntimeName = '{{ integrationRuntimeName }}' -- required
AND nodeName = '{{ nodeName }}' -- required
AND api-version = '{{ api-version }}'
;
UPDATE
examples
- update
Updates a self-hosted integration runtime node.
UPDATE azure.data_factory.integration_runtime_nodes
SET
data__concurrentJobsLimit = {{ concurrentJobsLimit }}
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}}'
RETURNING
capabilities,
concurrentJobsLimit,
expiryTime,
hostServiceUri,
isActiveDispatcher,
lastConnectTime,
lastEndUpdateTime,
lastStartTime,
lastStartUpdateTime,
lastStopTime,
lastUpdateResult,
machineName,
maxConcurrentJobs,
nodeName,
registerTime,
status,
version,
versionStatus;
DELETE
examples
- delete
Deletes a self-hosted integration runtime node.
DELETE FROM azure.data_factory.integration_runtime_nodes
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 }}'
;