Share via


SourceControlSyncJob Constructors

Definition

Overloads

SourceControlSyncJob()

Initializes a new instance of the SourceControlSyncJob class.

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

Initializes a new instance of the SourceControlSyncJob class.

SourceControlSyncJob()

Initializes a new instance of the SourceControlSyncJob class.

public SourceControlSyncJob ();
Public Sub New ()

Applies to

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

Initializes a new instance of the SourceControlSyncJob class.

public SourceControlSyncJob (string name = default, string type = default, string id = default, string sourceControlSyncJobId = default, DateTimeOffset creationTime = default, string provisioningState = default, DateTimeOffset? startTime = default, DateTimeOffset? endTime = default, string syncType = default);
new Microsoft.Azure.Management.Automation.Models.SourceControlSyncJob : string * string * string * string * DateTimeOffset * string * Nullable<DateTimeOffset> * Nullable<DateTimeOffset> * string -> Microsoft.Azure.Management.Automation.Models.SourceControlSyncJob
Public Sub New (Optional name As String = Nothing, Optional type As String = Nothing, 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)

Parameters

name
String

Resource name.

type
String

Resource type.

id
String

Resource id.

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'

Applies to