SourceControlSyncJobById Constructors

Definition

Overloads

SourceControlSyncJobById()

Initializes a new instance of the SourceControlSyncJobById class.

SourceControlSyncJobById(String, String, DateTimeOffset, String, Nullable<DateTimeOffset>, Nullable<DateTimeOffset>, String, String)

Initializes a new instance of the SourceControlSyncJobById class.

SourceControlSyncJobById()

Initializes a new instance of the SourceControlSyncJobById class.

public SourceControlSyncJobById ();
Public Sub New ()

Applies to

SourceControlSyncJobById(String, String, DateTimeOffset, String, Nullable<DateTimeOffset>, Nullable<DateTimeOffset>, String, String)

Initializes a new instance of the SourceControlSyncJobById class.

public SourceControlSyncJobById (string id = default, string sourceControlSyncJobId = default, DateTimeOffset creationTime = default, string provisioningState = default, DateTimeOffset? startTime = default, DateTimeOffset? endTime = default, string syncType = default, string exception = default);
new Microsoft.Azure.Management.Automation.Models.SourceControlSyncJobById : string * string * DateTimeOffset * string * Nullable<DateTimeOffset> * Nullable<DateTimeOffset> * string * string -> Microsoft.Azure.Management.Automation.Models.SourceControlSyncJobById
Public Sub New (Optional id As String = Nothing, Optional sourceControlSyncJobId As String = Nothing, Optional creationTime As DateTimeOffset = Nothing, Optional provisioningState As String = Nothing, Optional startTime As Nullable(Of DateTimeOffset) = Nothing, Optional endTime As Nullable(Of DateTimeOffset) = Nothing, Optional syncType As String = Nothing, Optional exception As String = Nothing)

Parameters

id
String

The id of the job.

sourceControlSyncJobId
String

The source control sync job id.

creationTime
DateTimeOffset

The creation time of the job.

provisioningState
String

The provisioning state of the job. Possible values include: 'Completed', 'Failed', 'Running'

startTime
Nullable<DateTimeOffset>

The start time of the job.

endTime
Nullable<DateTimeOffset>

The end time of the job.

syncType
String

The sync type. Possible values include: 'PartialSync', 'FullSync'

exception
String

The exceptions that occurred while running the sync job.

Applies to