integration_runtime_object_metadata
Creates, updates, deletes, gets or lists an integration_runtime_object_metadata
resource.
Overview
Name | integration_runtime_object_metadata |
Type | Resource |
Id | azure.data_factory.integration_runtime_object_metadata |
Fields
The following fields are returned by SELECT
queries:
- get
OK.
Name | Datatype | Description |
---|---|---|
id | integer (int64) | Metadata id. |
name | string | Metadata name. |
description | string | Metadata description. |
type | string | Type of metadata. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | subscriptionId , resourceGroupName , factoryName , integrationRuntimeName | api-version | Get a SSIS integration runtime object metadata by specified path. The return is pageable metadata list. |
refresh | exec | subscriptionId , resourceGroupName , factoryName , integrationRuntimeName | api-version | Refresh a SSIS integration runtime object metadata. |
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.
Name | Datatype | Description |
---|---|---|
factoryName | string | The factory name. |
integrationRuntimeName | string | The integration runtime name. |
resourceGroupName | string | The resource group name. |
subscriptionId | string | The subscription identifier. |
api-version | string | The API version. |
SELECT
examples
- get
Get a SSIS integration runtime object metadata by specified path. The return is pageable metadata list.
SELECT
id,
name,
description,
type
FROM azure.data_factory.integration_runtime_object_metadata
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND factoryName = '{{ factoryName }}' -- required
AND integrationRuntimeName = '{{ integrationRuntimeName }}' -- required
AND api-version = '{{ api-version }}'
;
Lifecycle Methods
- refresh
Refresh a SSIS integration runtime object metadata.
EXEC azure.data_factory.integration_runtime_object_metadata.refresh
@subscriptionId='{{ subscriptionId }}' --required,
@resourceGroupName='{{ resourceGroupName }}' --required,
@factoryName='{{ factoryName }}' --required,
@integrationRuntimeName='{{ integrationRuntimeName }}' --required,
@api-version='{{ api-version }}'
;