Skip to main content

share_subscriptions_synchronization_details

Creates, updates, deletes, gets or lists a share_subscriptions_synchronization_details resource.

Overview

Nameshare_subscriptions_synchronization_details
TypeResource
Idazure.data_share.share_subscriptions_synchronization_details

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
namestringName of the data set
dataSetIdstringId of data set
dataSetTypestringType of the data set
durationMsinteger (int32)Duration of data set level copy
endTimestring (date-time)End time of data set level copy
filesReadinteger (int64)The number of files read from the source data set
filesWritteninteger (int64)The number of files written into the sink data set
messagestringError message if any
rowsCopiedinteger (int64)The number of files copied into the sink data set
rowsReadinteger (int64)The number of rows read from the source data set.
sizeReadinteger (int64)The size of the data read from the source data set in bytes
sizeWritteninteger (int64)The size of the data written into the sink data set in bytes
startTimestring (date-time)Start time of data set level copy
statusstringRaw Status
vCoreinteger (int64)The vCore units consumed for the data set synchronization

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectsubscriptionId, resourceGroupName, accountName, shareSubscriptionNameapi-version, $skipToken, $filter, $orderbyList synchronization details

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 share subscription.
subscriptionIdstringThe subscription identifier
$filterstringFilters the results using OData syntax.
$orderbystringSorts the results using OData syntax.
$skipTokenstringContinuation token
api-versionstringThe api version to use.

SELECT examples

List synchronization details

SELECT
name,
dataSetId,
dataSetType,
durationMs,
endTime,
filesRead,
filesWritten,
message,
rowsCopied,
rowsRead,
sizeRead,
sizeWritten,
startTime,
status,
vCore
FROM azure.data_share.share_subscriptions_synchronization_details
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND accountName = '{{ accountName }}' -- required
AND shareSubscriptionName = '{{ shareSubscriptionName }}' -- required
AND api-version = '{{ api-version }}'
AND $skipToken = '{{ $skipToken }}'
AND $filter = '{{ $filter }}'
AND $orderby = '{{ $orderby }}'
;