Class SyncGroupSchema
Properties of sync group schema.
Namespace: System.Dynamic.ExpandoObject
Assembly: Microsoft.Azure.Management.Sql.dll
Syntax
public class SyncGroupSchema
Constructors
SyncGroupSchema()
Initializes a new instance of the SyncGroupSchema class.
Declaration
public SyncGroupSchema ();
SyncGroupSchema(IList<SyncGroupSchemaTable>, String)
Initializes a new instance of the SyncGroupSchema class.
Declaration
public SyncGroupSchema (System.Collections.Generic.IList<Microsoft.Azure.Management.Sql.Models.SyncGroupSchemaTable> tables = null, string masterSyncMemberName = null);
Parameters
IList<SyncGroupSchemaTable>
tables
List of tables in sync group schema. |
String
masterSyncMemberName
Name of master sync member where the schema is from. |
Properties
MasterSyncMemberName
Gets or sets name of master sync member where the schema is from.
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="masterSyncMemberName")]
public string MasterSyncMemberName { get; set; }
Property Value
String
|
Tables
Gets or sets list of tables in sync group schema.
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="tables")]
public System.Collections.Generic.IList<Microsoft.Azure.Management.Sql.Models.SyncGroupSchemaTable> Tables { get; set; }
Property Value
IList<SyncGroupSchemaTable>
|