Skip to main content

integration_runtime_object_metadata

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

Overview

Nameintegration_runtime_object_metadata
TypeResource
Idazure.synapse.integration_runtime_object_metadata

Fields

The following fields are returned by SELECT queries:

OK.

NameDatatypeDescription
idinteger (int64)Metadata id.
namestringMetadata name.
descriptionstringMetadata description.
typestringType of metadata.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectsubscriptionId, resourceGroupName, workspaceName, integrationRuntimeNameGet object metadata from an integration runtime
refreshexecsubscriptionId, resourceGroupName, workspaceName, integrationRuntimeNameRefresh the object metadata in an 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
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 object metadata from an integration runtime

SELECT
id,
name,
description,
type
FROM azure.synapse.integration_runtime_object_metadata
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND workspaceName = '{{ workspaceName }}' -- required
AND integrationRuntimeName = '{{ integrationRuntimeName }}' -- required
;

Lifecycle Methods

Refresh the object metadata in an integration runtime

EXEC azure.synapse.integration_runtime_object_metadata.refresh 
@subscriptionId='{{ subscriptionId }}' --required,
@resourceGroupName='{{ resourceGroupName }}' --required,
@workspaceName='{{ workspaceName }}' --required,
@integrationRuntimeName='{{ integrationRuntimeName }}' --required
;