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
Name | Datatype | Description |
---|---|---|
id | string | The resource id of the azure resource |
name | string | Name of the azure resource |
properties | object | Properties of consumer source dataSet |
systemData | object | Metadata pertaining to creation and last modification of the resource. |
type | string | Type of the azure resource |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list_by_share_subscription | SELECT | accountName, resourceGroupName, shareSubscriptionName, subscriptionId | Get source dataSets of a shareSubscription |
SELECT
examples
Get source dataSets of a shareSubscription
SELECT
id,
name,
properties,
systemData,
type
FROM azure.data_share.consumer_source_data_sets
WHERE accountName = '{{ accountName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND shareSubscriptionName = '{{ shareSubscriptionName }}'
AND subscriptionId = '{{ subscriptionId }}';