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 |
properties | object | source dataSet properties |
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 | subscriptionId, resourceGroupName, accountName, shareSubscriptionName | api-version, $skipToken | 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 |
|---|---|---|
accountName | string | The name of the share account. |
resourceGroupName | string | The resource group name. |
shareSubscriptionName | string | The name of the shareSubscription. |
subscriptionId | string | The subscription identifier |
$skipToken | string | Continuation token |
api-version | string | The api version to use. |
SELECT examples
- list_by_share_subscription
Get source dataSets of a shareSubscription
SELECT
id,
name,
properties,
systemData,
type
FROM azure.data_share.consumer_source_data_sets
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND accountName = '{{ accountName }}' -- required
AND shareSubscriptionName = '{{ shareSubscriptionName }}' -- required
AND api-version = '{{ api-version }}'
AND $skipToken = '{{ $skipToken }}'
;