Skip to main content

integration_runtime_stops

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

Overview

Nameintegration_runtime_stops
TypeResource
Idazure.synapse.integration_runtime_stops

Fields

The following fields are returned by SELECT queries:

OK.

NameDatatypeDescription
namestringThe operation name.
errorstringThe operation error message.
propertiesobjectThe operation properties.
statusstringstatus of Start Integrationruntimes.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, resourceGroupName, workspaceName, integrationRuntimeName, integrationRuntimeOperationIdGet an integration runtime stop operation 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
integrationRuntimeOperationIdstringIntegration runtime Operation Id
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 an integration runtime stop operation status

SELECT
name,
error,
properties,
status
FROM azure.synapse.integration_runtime_stops
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND workspaceName = '{{ workspaceName }}' -- required
AND integrationRuntimeName = '{{ integrationRuntimeName }}' -- required
AND integrationRuntimeOperationId = '{{ integrationRuntimeOperationId }}' -- required
;