Share via


Application Constructors

Definition

Overloads

Application()

Initializes a new instance of the Application class.

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

Initializes a new instance of the Application class.

Application()

Initializes a new instance of the Application class.

public Application ();
Public Sub New ()

Applies to

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

Initializes a new instance of the Application class.

public Application (string id = default, string name = default, string type = default, string etag = default, string displayName = default, bool? allowUpdates = default, string defaultVersion = default);
new Microsoft.Azure.Management.Batch.Models.Application : string * string * string * string * string * Nullable<bool> * string -> Microsoft.Azure.Management.Batch.Models.Application
Public Sub New (Optional id As String = Nothing, Optional name As String = Nothing, Optional type As String = Nothing, Optional etag As String = Nothing, Optional displayName As String = Nothing, Optional allowUpdates As Nullable(Of Boolean) = Nothing, Optional defaultVersion As String = Nothing)

Parameters

id
String

The ID of the resource.

name
String

The name of the resource.

type
String

The type of the resource.

etag
String

The ETag of the resource, used for concurrency statements.

displayName
String

The display name for the application.

allowUpdates
Nullable<Boolean>

A value indicating whether packages within the application may be overwritten using the same version string.

defaultVersion
String

The package to use if a client requests the application but does not specify a version. This property can only be set to the name of an existing package.

Applies to