Skip to main content

integration_runtimes

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

Overview

Nameintegration_runtimes
TypeResource
Idazure.synapse.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}.
namestringThe name of the resource.
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
getselectresource_group_name, workspace_name, integration_runtime_name, subscription_idIf-None-MatchGet integration runtime. Get an integration runtime.
list_by_workspaceselectresource_group_name, workspace_name, subscription_idList integration runtimes. List all integration runtimes.
createinsertresource_group_name, workspace_name, integration_runtime_name, subscription_id, propertiesIf-MatchCreate integration runtime. Create an integration runtime.
updateupdateresource_group_name, workspace_name, integration_runtime_name, subscription_idUpdate integration runtime. Update an integration runtime.
deletedeleteresource_group_name, workspace_name, integration_runtime_name, subscription_idDelete integration runtime. Delete an integration runtime.
list_outbound_network_dependencies_endpointsexecresource_group_name, workspace_name, integration_runtime_name, subscription_idGets list of outbound network dependencies for a given Azure-SSIS integration runtime. Gets the list of outbound network dependencies for a given Azure-SSIS integration runtime.
upgradeexecresource_group_name, workspace_name, integration_runtime_name, subscription_idUpgrade integration runtime. Upgrade an integration runtime.
startexecresource_group_name, workspace_name, integration_runtime_name, subscription_idStart integration runtime. Start an integration runtime.
stopexecresource_group_name, workspace_name, integration_runtime_name, subscription_idStop integration runtime. Stop an integration runtime.
enable_interactive_queryexecresource_group_name, workspace_name, integration_runtime_name, subscription_idEnable interactive query in integration runtime.
disable_interactive_queryexecresource_group_name, workspace_name, integration_runtime_name, subscription_idDisable interactive query in integration runtime.

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
integration_runtime_namestringIntegration runtime name. Required.
resource_group_namestringThe name of the resource group. The name is case insensitive. Required.
subscription_idstring
workspace_namestringThe name of the workspace. Required.
If-MatchstringETag of the integration runtime entity. Should only be specified for update, for which it should match existing entity or can be * for unconditional update. Default value is None.
If-None-MatchstringETag of the integration runtime entity. Should only be specified for get. If the ETag matches the existing entity tag, or if * was provided, then no content will be returned. Default value is None.

SELECT examples

Get integration runtime. Get an integration runtime.

SELECT
id,
name,
description,
etag,
type
FROM azure.synapse.integration_runtimes
WHERE resource_group_name = '{{ resource_group_name }}' -- required
AND workspace_name = '{{ workspace_name }}' -- required
AND integration_runtime_name = '{{ integration_runtime_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
AND If-None-Match = '{{ If-None-Match }}'
;

INSERT examples

Create integration runtime. Create an integration runtime.

INSERT INTO azure.synapse.integration_runtimes (
properties,
resource_group_name,
workspace_name,
integration_runtime_name,
subscription_id,
If-Match
)
SELECT
'{{ properties }}' /* required */,
'{{ resource_group_name }}',
'{{ workspace_name }}',
'{{ integration_runtime_name }}',
'{{ subscription_id }}',
'{{ If-Match }}'
RETURNING
id,
name,
etag,
properties,
type
;

UPDATE examples

Update integration runtime. Update an integration runtime.

UPDATE azure.synapse.integration_runtimes
SET
autoUpdate = '{{ autoUpdate }}',
updateDelayOffset = '{{ updateDelayOffset }}'
WHERE
resource_group_name = '{{ resource_group_name }}' --required
AND workspace_name = '{{ workspace_name }}' --required
AND integration_runtime_name = '{{ integration_runtime_name }}' --required
AND subscription_id = '{{ subscription_id }}' --required
RETURNING
id,
name,
etag,
properties,
type;

DELETE examples

Delete integration runtime. Delete an integration runtime.

DELETE FROM azure.synapse.integration_runtimes
WHERE resource_group_name = '{{ resource_group_name }}' --required
AND workspace_name = '{{ workspace_name }}' --required
AND integration_runtime_name = '{{ integration_runtime_name }}' --required
AND subscription_id = '{{ subscription_id }}' --required
;

Lifecycle Methods

Gets list of outbound network dependencies for a given Azure-SSIS integration runtime. Gets the list of outbound network dependencies for a given Azure-SSIS integration runtime.

EXEC azure.synapse.integration_runtimes.list_outbound_network_dependencies_endpoints 
@resource_group_name='{{ resource_group_name }}' --required,
@workspace_name='{{ workspace_name }}' --required,
@integration_runtime_name='{{ integration_runtime_name }}' --required,
@subscription_id='{{ subscription_id }}' --required
;