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

NameDatatypeDescription
idstringThe resource id of the azure resource
namestringName of the azure resource
propertiesobjectProperties of consumer source dataSet
systemDataobjectMetadata pertaining to creation and last modification of the resource.
typestringType of the azure resource

Methods

NameAccessible byRequired ParamsDescription
list_by_share_subscriptionSELECTaccountName, resourceGroupName, shareSubscriptionName, subscriptionIdGet 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 }}';