Share via


JobCollectionItem Constructors

Definition

Overloads

JobCollectionItem()

Initializes a new instance of the JobCollectionItem class.

JobCollectionItem(String, String, String, RunbookAssociationProperty, Guid, DateTimeOffset, String, Nullable<DateTimeOffset>, Nullable<DateTimeOffset>, Nullable<DateTimeOffset>, String, String)

Initializes a new instance of the JobCollectionItem class.

JobCollectionItem()

Initializes a new instance of the JobCollectionItem class.

public JobCollectionItem ();
Public Sub New ()

Applies to

JobCollectionItem(String, String, String, RunbookAssociationProperty, Guid, DateTimeOffset, String, Nullable<DateTimeOffset>, Nullable<DateTimeOffset>, Nullable<DateTimeOffset>, String, String)

Initializes a new instance of the JobCollectionItem class.

public JobCollectionItem (string id = default, string name = default, string type = default, Microsoft.Azure.Management.Automation.Models.RunbookAssociationProperty runbook = default, Guid jobId = default, DateTimeOffset creationTime = default, string status = default, DateTimeOffset? startTime = default, DateTimeOffset? endTime = default, DateTimeOffset? lastModifiedTime = default, string provisioningState = default, string runOn = default);
new Microsoft.Azure.Management.Automation.Models.JobCollectionItem : string * string * string * Microsoft.Azure.Management.Automation.Models.RunbookAssociationProperty * Guid * DateTimeOffset * string * Nullable<DateTimeOffset> * Nullable<DateTimeOffset> * Nullable<DateTimeOffset> * string * string -> Microsoft.Azure.Management.Automation.Models.JobCollectionItem
Public Sub New (Optional id As String = Nothing, Optional name As String = Nothing, Optional type As String = Nothing, Optional runbook As RunbookAssociationProperty = Nothing, Optional jobId As Guid = Nothing, Optional creationTime As DateTimeOffset = Nothing, Optional status As String = Nothing, Optional startTime As Nullable(Of DateTimeOffset) = Nothing, Optional endTime As Nullable(Of DateTimeOffset) = Nothing, Optional lastModifiedTime As Nullable(Of DateTimeOffset) = Nothing, Optional provisioningState As String = Nothing, Optional runOn As String = Nothing)

Parameters

id
String

Fully qualified resource Id for the resource

name
String

The name of the resource

type
String

The type of the resource.

runbook
RunbookAssociationProperty

The runbook association.

jobId
Guid

The id of the job.

creationTime
DateTimeOffset

The creation time of the job.

status
String

The status of the job. Possible values include: 'New', 'Activating', 'Running', 'Completed', 'Failed', 'Stopped', 'Blocked', 'Suspended', 'Disconnected', 'Suspending', 'Stopping', 'Resuming', 'Removing'

startTime
Nullable<DateTimeOffset>

The start time of the job.

endTime
Nullable<DateTimeOffset>

The end time of the job.

lastModifiedTime
Nullable<DateTimeOffset>

The last modified time of the job.

provisioningState
String

The provisioning state of a resource.

runOn
String

Specifies the runOn group name where the job was executed.

Applies to