integration_runtime_object_metadata
Creates, updates, deletes, gets or lists a integration_runtime_object_metadata
resource.
Overview
Name | integration_runtime_object_metadata |
Type | Resource |
Id | azure.synapse.integration_runtime_object_metadata |
Fields
Name | Datatype | Description |
---|---|---|
id | integer | Metadata id. |
name | string | Metadata name. |
description | string | Metadata description. |
type | string | The type of SSIS object metadata. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT | integrationRuntimeName, resourceGroupName, subscriptionId, workspaceName | Get object metadata from an integration runtime |
refresh | EXEC | integrationRuntimeName, resourceGroupName, subscriptionId, workspaceName | Refresh the object metadata in an integration runtime |
SELECT
examples
Get object metadata from an integration runtime
SELECT
id,
name,
description,
type
FROM azure.synapse.integration_runtime_object_metadata
WHERE integrationRuntimeName = '{{ integrationRuntimeName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND workspaceName = '{{ workspaceName }}';