Skip to main content

shares_synchronizations

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

Overview

Nameshares_synchronizations
TypeResource
Idazure.data_share.shares_synchronizations

Fields

NameDatatypeDescription
consumerEmailstringEmail of the user who created the synchronization
consumerNamestringName of the user who created the synchronization
consumerTenantNamestringTenant name of the consumer who created the synchronization
durationMsintegersynchronization duration
endTimestringEnd time of synchronization
messagestringmessage of synchronization
startTimestringstart time of synchronization
statusstringRaw Status
synchronizationIdstringSynchronization id
synchronizationModestringSynchronization mode

Methods

NameAccessible byRequired ParamsDescription
listSELECTaccountName, resourceGroupName, shareName, subscriptionIdList 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 }}';