USqlAssembly Constructors

Definition

Overloads

USqlAssembly()

Initializes a new instance of the USqlAssembly class.

USqlAssembly(String, Nullable<Guid>, String, String, String, Nullable<Boolean>, Nullable<Boolean>, IList<USqlAssemblyFileInfo>, IList<USqlAssemblyDependencyInfo>)

Initializes a new instance of the USqlAssembly class.

USqlAssembly()

Initializes a new instance of the USqlAssembly class.

public USqlAssembly ();
Public Sub New ()

Applies to

USqlAssembly(String, Nullable<Guid>, String, String, String, Nullable<Boolean>, Nullable<Boolean>, IList<USqlAssemblyFileInfo>, IList<USqlAssemblyDependencyInfo>)

Initializes a new instance of the USqlAssembly class.

public USqlAssembly (string computeAccountName = default, Guid? version = default, string databaseName = default, string name = default, string clrName = default, bool? isVisible = default, bool? isUserDefined = default, System.Collections.Generic.IList<Microsoft.Azure.Management.DataLake.Analytics.Models.USqlAssemblyFileInfo> files = default, System.Collections.Generic.IList<Microsoft.Azure.Management.DataLake.Analytics.Models.USqlAssemblyDependencyInfo> dependencies = default);
new Microsoft.Azure.Management.DataLake.Analytics.Models.USqlAssembly : string * Nullable<Guid> * string * string * string * Nullable<bool> * Nullable<bool> * System.Collections.Generic.IList<Microsoft.Azure.Management.DataLake.Analytics.Models.USqlAssemblyFileInfo> * System.Collections.Generic.IList<Microsoft.Azure.Management.DataLake.Analytics.Models.USqlAssemblyDependencyInfo> -> Microsoft.Azure.Management.DataLake.Analytics.Models.USqlAssembly
Public Sub New (Optional computeAccountName As String = Nothing, Optional version As Nullable(Of Guid) = Nothing, Optional databaseName As String = Nothing, Optional name As String = Nothing, Optional clrName As String = Nothing, Optional isVisible As Nullable(Of Boolean) = Nothing, Optional isUserDefined As Nullable(Of Boolean) = Nothing, Optional files As IList(Of USqlAssemblyFileInfo) = Nothing, Optional dependencies As IList(Of USqlAssemblyDependencyInfo) = 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.

name
String

the name of the assembly.

clrName
String

the name of the CLR.

isVisible
Nullable<Boolean>

the switch indicating if this assembly is visible or not.

isUserDefined
Nullable<Boolean>

the switch indicating if this assembly is user defined or not.

files
IList<USqlAssemblyFileInfo>

the list of files associated with the assembly

dependencies
IList<USqlAssemblyDependencyInfo>

the list of dependencies associated with the assembly

Applies to