consumer_source_data_sets
Creates, updates, deletes, gets or lists a consumer_source_data_sets resource.
Overview
| Name | consumer_source_data_sets |
| Type | Resource |
| Id | azure.data_share.consumer_source_data_sets |
Fields
The following fields are returned by SELECT queries:
- list_by_share_subscription
| Name | Datatype | Description |
|---|---|---|
id | string | The resource id of the azure resource. |
name | string | Name of the azure resource. |
dataSetId | string | DataSet Id. |
dataSetLocation | string | Location of the data set. |
dataSetName | string | DataSet name. |
dataSetPath | string | DataSet path. |
dataSetType | string | Type of data set. Known values are: "Blob", "Container", "BlobFolder", "AdlsGen2FileSystem", "AdlsGen2Folder", "AdlsGen2File", "AdlsGen1Folder", "AdlsGen1File", "KustoCluster", "KustoDatabase", "SqlDBTable", "SqlDWTable", and "SynapseWorkspaceSqlPoolTable". |
systemData | object | System Data of the Azure resource. |
type | string | Type of the azure resource. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_by_share_subscription | select | resource_group_name, account_name, share_subscription_name, subscription_id | $skipToken | Get 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.
| Name | Datatype | Description |
|---|---|---|
account_name | string | The name of the share account. Required. |
resource_group_name | string | The resource group name. Required. |
share_subscription_name | string | The name of the shareSubscription. Required. |
subscription_id | string | |
$skipToken | string | Continuation token. Default value is None. |
SELECT examples
- list_by_share_subscription
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 }}'
;