Skip to main content

integration_runtimes

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

Overview

Nameintegration_runtimes
TypeResource
Idazure.synapse_artifacts.integration_runtimes

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringFully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}. # pylint: disable=line-too-long
namestringThe name of the resource.
objectUnmatched properties from the message are deserialized to this collection.
descriptionstringIntegration runtime description.
etagstringResource Etag.
typestringThe type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts".

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectintegration_runtime_name, endpointGet Integration Runtime.
listselectendpointList Integration Runtimes.

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
endpointstringThe service endpoint host (no scheme). (default: )
integration_runtime_namestringThe Integration Runtime name. Required.

SELECT examples

Get Integration Runtime.

SELECT
id,
name,
,
description,
etag,
type
FROM azure.synapse_artifacts.integration_runtimes
WHERE integration_runtime_name = '{{ integration_runtime_name }}' -- required
AND endpoint = '{{ endpoint }}' -- required
;