Share via


Deployment Constructors

Definition

Overloads

Deployment()

Initializes a new instance of the Deployment class.

Deployment(String, String, String, String, Nullable<Int32>, String, String, String, String, Nullable<DateTime>, Nullable<DateTime>, Nullable<Boolean>, String)

Initializes a new instance of the Deployment class.

Deployment()

Initializes a new instance of the Deployment class.

public Deployment ();
Public Sub New ()

Applies to

Deployment(String, String, String, String, Nullable<Int32>, String, String, String, String, Nullable<DateTime>, Nullable<DateTime>, Nullable<Boolean>, String)

Initializes a new instance of the Deployment class.

public Deployment (string id = default, string name = default, string kind = default, string type = default, int? status = default, string message = default, string author = default, string deployer = default, string authorEmail = default, DateTime? startTime = default, DateTime? endTime = default, bool? active = default, string details = default);
new Microsoft.Azure.Management.WebSites.Models.Deployment : string * string * string * string * Nullable<int> * string * string * string * string * Nullable<DateTime> * Nullable<DateTime> * Nullable<bool> * string -> Microsoft.Azure.Management.WebSites.Models.Deployment
Public Sub New (Optional id As String = Nothing, Optional name As String = Nothing, Optional kind As String = Nothing, Optional type As String = Nothing, Optional status As Nullable(Of Integer) = Nothing, Optional message As String = Nothing, Optional author As String = Nothing, Optional deployer As String = Nothing, Optional authorEmail As String = Nothing, Optional startTime As Nullable(Of DateTime) = Nothing, Optional endTime As Nullable(Of DateTime) = Nothing, Optional active As Nullable(Of Boolean) = Nothing, Optional details As String = Nothing)

Parameters

id
String

Resource Id.

name
String

Resource Name.

kind
String

Kind of resource.

type
String

Resource type.

status
Nullable<Int32>

Deployment status.

message
String

Details about deployment status.

author
String

Who authored the deployment.

deployer
String

Who performed the deployment.

authorEmail
String

Author email.

startTime
Nullable<DateTime>

Start time.

endTime
Nullable<DateTime>

End time.

active
Nullable<Boolean>

True if deployment is currently active, false if completed and null if not started.

details
String

Details on deployment.

Applies to