Class SyncFullSchemaProperties
Properties of the database full schema.
Namespace: System.Dynamic.ExpandoObject
Assembly: Microsoft.Azure.Management.Sql.dll
Syntax
public class SyncFullSchemaProperties
Constructors
SyncFullSchemaProperties()
Initializes a new instance of the SyncFullSchemaProperties class.
Declaration
public SyncFullSchemaProperties ();
SyncFullSchemaProperties(IList<SyncFullSchemaTable>, Nullable<DateTime>)
Initializes a new instance of the SyncFullSchemaProperties class.
Declaration
public SyncFullSchemaProperties (System.Collections.Generic.IList<Microsoft.Azure.Management.Sql.Models.SyncFullSchemaTable> tables = null, Nullable<DateTime> lastUpdateTime = null);
Parameters
|
IList<SyncFullSchemaTable>
tables
List of tables in the database full schema. |
|
Nullable<DateTime>
lastUpdateTime
Last update time of the database schema. |
Properties
LastUpdateTime
Gets last update time of the database schema.
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="lastUpdateTime")]
public Nullable<DateTime> LastUpdateTime { get; }
Property Value
|
Nullable<DateTime>
|
Tables
Gets list of tables in the database full schema.
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="tables")]
public System.Collections.Generic.IList<Microsoft.Azure.Management.Sql.Models.SyncFullSchemaTable> Tables { get; }
Property Value
|
IList<SyncFullSchemaTable>
|