shares_synchronizations
Creates, updates, deletes, gets or lists a shares_synchronizations
resource.
Overview
Name | shares_synchronizations |
Type | Resource |
Id | azure.data_share.shares_synchronizations |
Fields
Name | Datatype | Description |
---|---|---|
consumerEmail | string | Email of the user who created the synchronization |
consumerName | string | Name of the user who created the synchronization |
consumerTenantName | string | Tenant name of the consumer who created the synchronization |
durationMs | integer | synchronization duration |
endTime | string | End time of synchronization |
message | string | message of synchronization |
startTime | string | start time of synchronization |
status | string | Raw Status |
synchronizationId | string | Synchronization id |
synchronizationMode | string | Synchronization mode |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT | accountName, resourceGroupName, shareName, subscriptionId | List synchronizations of a share |
SELECT
examples
List synchronizations of a share
SELECT
consumerEmail,
consumerName,
consumerTenantName,
durationMs,
endTime,
message,
startTime,
status,
synchronizationId,
synchronizationMode
FROM azure.data_share.shares_synchronizations
WHERE accountName = '{{ accountName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND shareName = '{{ shareName }}'
AND subscriptionId = '{{ subscriptionId }}';