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
The following fields are returned by SELECT
queries:
- list
Name | Datatype | Description |
---|---|---|
durationMs | integer (int32) | Synchronization duration |
endTime | string (date-time) | End time of synchronization |
message | string | message of Synchronization |
startTime | string (date-time) | start time of synchronization |
status | string | Raw Status |
synchronizationId | string | Synchronization id |
synchronizationMode | string | Synchronization Mode |
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 synchronizations of a share subscription |
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 synchronizations of a share subscription
SELECT
durationMs,
endTime,
message,
startTime,
status,
synchronizationId,
synchronizationMode
FROM azure.data_share.share_subscriptions_synchronizations
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 }}'
;