integration_runtime_status
Creates, updates, deletes, gets or lists an integration_runtime_status resource.
Overview
| Name | integration_runtime_status |
| Type | Resource |
| Id | azure.synapse.integration_runtime_status |
Fields
The following fields are returned by SELECT queries:
- get
OK.
| Name | Datatype | Description |
|---|---|---|
name | string | The integration runtime name. |
properties | object | Integration runtime properties. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | subscriptionId, resourceGroupName, workspaceName, integrationRuntimeName | Get the integration runtime status |
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 |
|---|---|---|
integrationRuntimeName | string | Integration runtime name |
resourceGroupName | string | The name of the resource group. The name is case insensitive. |
subscriptionId | string | The ID of the target subscription. |
workspaceName | string | The name of the workspace. |
SELECT examples
- get
Get the integration runtime status
SELECT
name,
properties
FROM azure.synapse.integration_runtime_status
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND workspaceName = '{{ workspaceName }}' -- required
AND integrationRuntimeName = '{{ integrationRuntimeName }}' -- required
;