share_subscriptions_synchronization_details
Creates, updates, deletes, gets or lists a share_subscriptions_synchronization_details
resource.
Overview
Name | share_subscriptions_synchronization_details |
Type | Resource |
Id | azure.data_share.share_subscriptions_synchronization_details |
Fields
The following fields are returned by SELECT
queries:
- list
Name | Datatype | Description |
---|---|---|
name | string | Name of the data set |
dataSetId | string | Id of data set |
dataSetType | string | Type of the data set |
durationMs | integer (int32) | Duration of data set level copy |
endTime | string (date-time) | End time of data set level copy |
filesRead | integer (int64) | The number of files read from the source data set |
filesWritten | integer (int64) | The number of files written into the sink data set |
message | string | Error message if any |
rowsCopied | integer (int64) | The number of files copied into the sink data set |
rowsRead | integer (int64) | The number of rows read from the source data set. |
sizeRead | integer (int64) | The size of the data read from the source data set in bytes |
sizeWritten | integer (int64) | The size of the data written into the sink data set in bytes |
startTime | string (date-time) | Start time of data set level copy |
status | string | Raw Status |
vCore | integer (int64) | The vCore units consumed for the data set synchronization |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | subscriptionId , resourceGroupName , accountName , shareSubscriptionName | api-version , $skipToken , $filter , $orderby | List 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.
Name | Datatype | Description |
---|---|---|
accountName | string | The name of the share account. |
resourceGroupName | string | The resource group name. |
shareSubscriptionName | string | The name of the share subscription. |
subscriptionId | string | The subscription identifier |
$filter | string | Filters the results using OData syntax. |
$orderby | string | Sorts the results using OData syntax. |
$skipToken | string | Continuation token |
api-version | string | The api version to use. |
SELECT
examples
- list
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 }}'
;