Skip to main content

integration_runtime_status

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

Overview

Nameintegration_runtime_status
TypeResource
Idazure.synapse.integration_runtime_status

Fields

The following fields are returned by SELECT queries:

OK.

NameDatatypeDescription
namestringThe integration runtime name.
propertiesobjectIntegration runtime properties.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, resourceGroupName, workspaceName, integrationRuntimeNameGet 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.

NameDatatypeDescription
integrationRuntimeNamestringIntegration runtime name
resourceGroupNamestringThe name of the resource group. The name is case insensitive.
subscriptionIdstringThe ID of the target subscription.
workspaceNamestringThe name of the workspace.

SELECT examples

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
;