Share via


USqlTable Constructors

Definition

Overloads

USqlTable()

Initializes a new instance of the USqlTable class.

USqlTable(String, Nullable<Guid>, String, String, String, IList<USqlTableColumn>, IList<USqlIndex>, IList<String>, ExternalTable, USqlDistributionInfo)

Initializes a new instance of the USqlTable class.

USqlTable()

Initializes a new instance of the USqlTable class.

public USqlTable ();
Public Sub New ()

Applies to

USqlTable(String, Nullable<Guid>, String, String, String, IList<USqlTableColumn>, IList<USqlIndex>, IList<String>, ExternalTable, USqlDistributionInfo)

Initializes a new instance of the USqlTable class.

public USqlTable (string computeAccountName = default, Guid? version = default, string databaseName = default, string schemaName = default, string name = default, System.Collections.Generic.IList<Microsoft.Azure.Management.DataLake.Analytics.Models.USqlTableColumn> columnList = default, System.Collections.Generic.IList<Microsoft.Azure.Management.DataLake.Analytics.Models.USqlIndex> indexList = default, System.Collections.Generic.IList<string> partitionKeyList = default, Microsoft.Azure.Management.DataLake.Analytics.Models.ExternalTable externalTable = default, Microsoft.Azure.Management.DataLake.Analytics.Models.USqlDistributionInfo distributionInfo = default);
new Microsoft.Azure.Management.DataLake.Analytics.Models.USqlTable : string * Nullable<Guid> * string * string * string * System.Collections.Generic.IList<Microsoft.Azure.Management.DataLake.Analytics.Models.USqlTableColumn> * System.Collections.Generic.IList<Microsoft.Azure.Management.DataLake.Analytics.Models.USqlIndex> * System.Collections.Generic.IList<string> * Microsoft.Azure.Management.DataLake.Analytics.Models.ExternalTable * Microsoft.Azure.Management.DataLake.Analytics.Models.USqlDistributionInfo -> Microsoft.Azure.Management.DataLake.Analytics.Models.USqlTable
Public Sub New (Optional computeAccountName As String = Nothing, Optional version As Nullable(Of Guid) = Nothing, Optional databaseName As String = Nothing, Optional schemaName As String = Nothing, Optional name As String = Nothing, Optional columnList As IList(Of USqlTableColumn) = Nothing, Optional indexList As IList(Of USqlIndex) = Nothing, Optional partitionKeyList As IList(Of String) = Nothing, Optional externalTable As ExternalTable = Nothing, Optional distributionInfo As USqlDistributionInfo = Nothing)

Parameters

computeAccountName
String

the name of the Data Lake Analytics account.

version
Nullable<Guid>

the version of the catalog item.

databaseName
String

the name of the database.

schemaName
String

the name of the schema associated with this table and database.

name
String

the name of the table.

columnList
IList<USqlTableColumn>

the list of columns in this table

indexList
IList<USqlIndex>

the list of indices in this table

partitionKeyList
IList<String>

the list of partition keys in the table

externalTable
ExternalTable

the external table associated with the table.

distributionInfo
USqlDistributionInfo

the distributions info of the table

Applies to