Skip to main content

consumer_source_data_sets

Creates, updates, deletes, gets or lists a consumer_source_data_sets resource.

Overview

Nameconsumer_source_data_sets
TypeResource
Idazure.data_share.consumer_source_data_sets

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringThe resource id of the azure resource.
namestringName of the azure resource.
dataSetIdstringDataSet Id.
dataSetLocationstringLocation of the data set.
dataSetNamestringDataSet name.
dataSetPathstringDataSet path.
dataSetTypestringType of data set. Known values are: "Blob", "Container", "BlobFolder", "AdlsGen2FileSystem", "AdlsGen2Folder", "AdlsGen2File", "AdlsGen1Folder", "AdlsGen1File", "KustoCluster", "KustoDatabase", "SqlDBTable", "SqlDWTable", and "SynapseWorkspaceSqlPoolTable".
systemDataobjectSystem Data of the Azure resource.
typestringType of the azure resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_by_share_subscriptionselectresource_group_name, account_name, share_subscription_name, subscription_id$skipTokenGet source dataSets of a shareSubscription. Get source dataSets of a shareSubscription.

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
account_namestringThe name of the share account. Required.
resource_group_namestringThe resource group name. Required.
share_subscription_namestringThe name of the shareSubscription. Required.
subscription_idstring
$skipTokenstringContinuation token. Default value is None.

SELECT examples

Get source dataSets of a shareSubscription. Get source dataSets of a shareSubscription.

SELECT
id,
name,
dataSetId,
dataSetLocation,
dataSetName,
dataSetPath,
dataSetType,
systemData,
type
FROM azure.data_share.consumer_source_data_sets
WHERE resource_group_name = '{{ resource_group_name }}' -- required
AND account_name = '{{ account_name }}' -- required
AND share_subscription_name = '{{ share_subscription_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
AND $skipToken = '{{ $skipToken }}'
;