DatabaseTable Constructors

Definition

Overloads

DatabaseTable()

Initializes a new instance of the DatabaseTable class.

DatabaseTable(String, String, String, String, Nullable<Boolean>)

Initializes a new instance of the DatabaseTable class.

DatabaseTable()

Initializes a new instance of the DatabaseTable class.

public DatabaseTable ();
Public Sub New ()

Applies to

DatabaseTable(String, String, String, String, Nullable<Boolean>)

Initializes a new instance of the DatabaseTable class.

public DatabaseTable (string id = default, string name = default, string type = default, string temporalType = default, bool? memoryOptimized = default);
new Microsoft.Azure.Management.Sql.Models.DatabaseTable : string * string * string * string * Nullable<bool> -> Microsoft.Azure.Management.Sql.Models.DatabaseTable
Public Sub New (Optional id As String = Nothing, Optional name As String = Nothing, Optional type As String = Nothing, Optional temporalType As String = Nothing, Optional memoryOptimized As Nullable(Of Boolean) = Nothing)

Parameters

id
String

Resource ID.

name
String

Resource name.

type
String

Resource type.

temporalType
String

The table temporal type. Possible values include: 'NonTemporalTable', 'HistoryTable', 'SystemVersionedTemporalTable'

memoryOptimized
Nullable<Boolean>

Whether or not the table is memory optimized.

Applies to