Skip to main content

sync_groups_logs

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

Overview

Namesync_groups_logs
TypeResource
Idazure.sql.sync_groups_logs

Fields

NameDatatypeDescription
detailsstringDetails of the sync group log.
operationStatusstringOperationStatus of the sync group log.
sourcestringSource of the sync group log.
timestampstringTimestamp of the sync group log.
tracingIdstringTracingId of the sync group log.
typestringType of the sync group log.

Methods

NameAccessible byRequired ParamsDescription
listSELECTdatabaseName, endTime, resourceGroupName, serverName, startTime, subscriptionId, syncGroupName, typeGets a collection of sync group logs.

SELECT examples

Gets a collection of sync group logs.

SELECT
details,
operationStatus,
source,
timestamp,
tracingId,
type
FROM azure.sql.sync_groups_logs
WHERE databaseName = '{{ databaseName }}'
AND endTime = '{{ endTime }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND serverName = '{{ serverName }}'
AND startTime = '{{ startTime }}'
AND subscriptionId = '{{ subscriptionId }}'
AND syncGroupName = '{{ syncGroupName }}'
AND type = '{{ type }}';