Aracılığıyla paylaş


USqlTableType Constructors

Definition

Overloads

USqlTableType()

Initializes a new instance of the USqlTableType class.

USqlTableType(String, Nullable<Guid>, String, String, String, String, String, String, Nullable<Int32>, Nullable<Int32>, Nullable<Int32>, Nullable<Int32>, Nullable<Boolean>, Nullable<Boolean>, Nullable<Boolean>, Nullable<Boolean>, Nullable<Boolean>, IList<TypeFieldInfo>)

Initializes a new instance of the USqlTableType class.

USqlTableType()

Initializes a new instance of the USqlTableType class.

public USqlTableType ();
Public Sub New ()

Applies to

USqlTableType(String, Nullable<Guid>, String, String, String, String, String, String, Nullable<Int32>, Nullable<Int32>, Nullable<Int32>, Nullable<Int32>, Nullable<Boolean>, Nullable<Boolean>, Nullable<Boolean>, Nullable<Boolean>, Nullable<Boolean>, IList<TypeFieldInfo>)

Initializes a new instance of the USqlTableType class.

public USqlTableType (string computeAccountName = default, Guid? version = default, string databaseName = default, string schemaName = default, string name = default, string typeFamily = default, string cSharpName = default, string fullCSharpName = default, int? systemTypeId = default, int? userTypeId = default, int? schemaId = default, int? principalId = default, bool? isNullable = default, bool? isUserDefined = default, bool? isAssemblyType = default, bool? isTableType = default, bool? isComplexType = default, System.Collections.Generic.IList<Microsoft.Azure.Management.DataLake.Analytics.Models.TypeFieldInfo> columns = default);
new Microsoft.Azure.Management.DataLake.Analytics.Models.USqlTableType : string * Nullable<Guid> * string * string * string * string * string * string * Nullable<int> * Nullable<int> * Nullable<int> * Nullable<int> * Nullable<bool> * Nullable<bool> * Nullable<bool> * Nullable<bool> * Nullable<bool> * System.Collections.Generic.IList<Microsoft.Azure.Management.DataLake.Analytics.Models.TypeFieldInfo> -> Microsoft.Azure.Management.DataLake.Analytics.Models.USqlTableType
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 typeFamily As String = Nothing, Optional cSharpName As String = Nothing, Optional fullCSharpName As String = Nothing, Optional systemTypeId As Nullable(Of Integer) = Nothing, Optional userTypeId As Nullable(Of Integer) = Nothing, Optional schemaId As Nullable(Of Integer) = Nothing, Optional principalId As Nullable(Of Integer) = Nothing, Optional isNullable As Nullable(Of Boolean) = Nothing, Optional isUserDefined As Nullable(Of Boolean) = Nothing, Optional isAssemblyType As Nullable(Of Boolean) = Nothing, Optional isTableType As Nullable(Of Boolean) = Nothing, Optional isComplexType As Nullable(Of Boolean) = Nothing, Optional columns As IList(Of TypeFieldInfo) = 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 type for this type.

typeFamily
String

the type family for this type.

cSharpName
String

the C# name for this type.

fullCSharpName
String

the fully qualified C# name for this type.

systemTypeId
Nullable<Int32>

the system type ID for this type.

userTypeId
Nullable<Int32>

the user type ID for this type.

schemaId
Nullable<Int32>

the schema ID for this type.

principalId
Nullable<Int32>

the principal ID for this type.

isNullable
Nullable<Boolean>

the the switch indicating if this type is nullable.

isUserDefined
Nullable<Boolean>

the the switch indicating if this type is user defined.

isAssemblyType
Nullable<Boolean>

the the switch indicating if this type is an assembly type.

isTableType
Nullable<Boolean>

the the switch indicating if this type is a table type.

isComplexType
Nullable<Boolean>

the the switch indicating if this type is a complex type.

columns
IList<TypeFieldInfo>

the type field information associated with this table type.

Applies to