DeploymentInner Constructors

Definition

Overloads

DeploymentInner()

Initializes a new instance of the DeploymentInner class.

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

Initializes a new instance of the DeploymentInner class.

DeploymentInner()

Initializes a new instance of the DeploymentInner class.

public DeploymentInner ();
Public Sub New ()

Applies to

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

Initializes a new instance of the DeploymentInner class.

public DeploymentInner (string id = default, string name = default, string type = default, string kind = 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.AppService.Fluent.Models.DeploymentInner : string * string * string * string * Nullable<int> * string * string * string * string * Nullable<DateTime> * Nullable<DateTime> * Nullable<bool> * string -> Microsoft.Azure.Management.AppService.Fluent.Models.DeploymentInner
Public Sub New (Optional id As String = Nothing, Optional name As String = Nothing, Optional type As String = Nothing, Optional kind 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
name
String
type
String
kind
String

Kind of resource.

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