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
propertiesobjectsource dataSet properties
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_subscriptionselectsubscriptionId, resourceGroupName, accountName, shareSubscriptionNameapi-version, $skipTokenGet 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
accountNamestringThe name of the share account.
resourceGroupNamestringThe resource group name.
shareSubscriptionNamestringThe name of the shareSubscription.
subscriptionIdstringThe subscription identifier
$skipTokenstringContinuation token
api-versionstringThe api version to use.

SELECT examples

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 }}'
;