Share via


AssignmentOperation Constructors

Definition

Overloads

AssignmentOperation()

Initializes a new instance of the AssignmentOperation class.

AssignmentOperation(String, String, String, String, String, String, String, String, IList<AssignmentDeploymentJob>)

Initializes a new instance of the AssignmentOperation class.

AssignmentOperation()

Initializes a new instance of the AssignmentOperation class.

public AssignmentOperation ();
Public Sub New ()

Applies to

AssignmentOperation(String, String, String, String, String, String, String, String, IList<AssignmentDeploymentJob>)

Initializes a new instance of the AssignmentOperation class.

public AssignmentOperation (string id = default, string type = default, string name = default, string blueprintVersion = default, string assignmentState = default, string timeCreated = default, string timeStarted = default, string timeFinished = default, System.Collections.Generic.IList<Microsoft.Azure.Management.Blueprint.Models.AssignmentDeploymentJob> deployments = default);
new Microsoft.Azure.Management.Blueprint.Models.AssignmentOperation : string * string * string * string * string * string * string * string * System.Collections.Generic.IList<Microsoft.Azure.Management.Blueprint.Models.AssignmentDeploymentJob> -> Microsoft.Azure.Management.Blueprint.Models.AssignmentOperation
Public Sub New (Optional id As String = Nothing, Optional type As String = Nothing, Optional name As String = Nothing, Optional blueprintVersion As String = Nothing, Optional assignmentState As String = Nothing, Optional timeCreated As String = Nothing, Optional timeStarted As String = Nothing, Optional timeFinished As String = Nothing, Optional deployments As IList(Of AssignmentDeploymentJob) = Nothing)

Parameters

id
String

String Id used to locate any resource on Azure.

type
String

Type of this resource.

name
String

Name of this resource.

blueprintVersion
String

The published version of the blueprint definition used for the blueprint assignment operation.

assignmentState
String

State of this blueprint assignment operation.

timeCreated
String

Create time of this blueprint assignment operation.

timeStarted
String

Start time of the underlying deployment.

timeFinished
String

Finish time of the overall underlying deployments.

deployments
IList<AssignmentDeploymentJob>

List of jobs in this blueprint assignment operation.

Applies to