DatabaseTable Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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'
Applies to
Azure SDK for .NET