share_subscriptions_synchronizations
Creates, updates, deletes, gets or lists a share_subscriptions_synchronizations
resource.
Overview
Name | share_subscriptions_synchronizations |
Type | Resource |
Id | azure.data_share.share_subscriptions_synchronizations |
Fields
Name | Datatype | Description |
---|---|---|
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, shareSubscriptionName, subscriptionId | List synchronizations of a share subscription |
SELECT
examples
List synchronizations of a share subscription
SELECT
durationMs,
endTime,
message,
startTime,
status,
synchronizationId,
synchronizationMode
FROM azure.data_share.share_subscriptions_synchronizations
WHERE accountName = '{{ accountName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND shareSubscriptionName = '{{ shareSubscriptionName }}'
AND subscriptionId = '{{ subscriptionId }}';