Class SyncGroupLogProperties
Properties of an Azure SQL Database sync group log.
Namespace: System.Dynamic.ExpandoObject
Assembly: Microsoft.Azure.Management.Sql.dll
Syntax
public class SyncGroupLogProperties
Constructors
SyncGroupLogProperties()
Initializes a new instance of the SyncGroupLogProperties class.
Declaration
public SyncGroupLogProperties ();
SyncGroupLogProperties(Nullable<DateTime>, String, String, String, Nullable<Guid>, String)
Initializes a new instance of the SyncGroupLogProperties class.
Declaration
public SyncGroupLogProperties (Nullable<DateTime> timestamp = null, string type = null, string source = null, string details = null, Nullable<Guid> tracingId = null, string operationStatus = null);
Parameters
|
Nullable<DateTime>
timestamp
Timestamp of the sync group log. |
|
String
type
Type of the sync group log. Possible values include: 'All', 'Error', 'Warning', 'Success' |
|
String
source
Source of the sync group log. |
|
String
details
Details of the sync group log. |
|
Nullable<Guid>
tracingId
TracingId of the sync group log. |
|
String
operationStatus
OperationStatus of the sync group log. |
Properties
Details
Gets details of the sync group log.
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="details")]
public string Details { get; }
Property Value
|
String
|
OperationStatus
Gets operationStatus of the sync group log.
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="operationStatus")]
public string OperationStatus { get; }
Property Value
|
String
|
Source
Gets source of the sync group log.
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="source")]
public string Source { get; }
Property Value
|
String
|
Timestamp
Gets timestamp of the sync group log.
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="timestamp")]
public Nullable<DateTime> Timestamp { get; }
Property Value
|
Nullable<DateTime>
|
TracingId
Gets tracingId of the sync group log.
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="tracingId")]
public Nullable<Guid> TracingId { get; }
Property Value
|
Nullable<Guid>
|
Type
Gets type of the sync group log. Possible values include: 'All', 'Error', 'Warning', 'Success'
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="type")]
public string Type { get; }
Property Value
|
String
|