shares_synchronization_details
Creates, updates, deletes, gets or lists a shares_synchronization_details
resource.
Overview
Name | shares_synchronization_details |
Type | Resource |
Id | azure.data_share.shares_synchronization_details |
Fields
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 | Duration of data set level copy |
endTime | string | End time of data set level copy |
filesRead | integer | The number of files read from the source data set |
filesWritten | integer | The number of files written into the sink data set |
message | string | Error message if any |
rowsCopied | integer | The number of files copied into the sink data set |
rowsRead | integer | The number of rows read from the source data set. |
sizeRead | integer | The size of the data read from the source data set in bytes |
sizeWritten | integer | The size of the data written into the sink data set in bytes |
startTime | string | Start time of data set level copy |
status | string | Raw Status |
vCore | integer | The vCore units consumed for the data set synchronization |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT | accountName, resourceGroupName, shareName, subscriptionId | List synchronization details |
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.shares_synchronization_details
WHERE accountName = '{{ accountName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND shareName = '{{ shareName }}'
AND subscriptionId = '{{ subscriptionId }}';