Bagikan melalui


JobQueryObject Constructors

Definition

Overloads

JobQueryObject()

Initializes a new instance of the JobQueryObject class.

JobQueryObject(String, String, String, String, Nullable<DateTime>, Nullable<DateTime>)

Initializes a new instance of the JobQueryObject class.

JobQueryObject()

Initializes a new instance of the JobQueryObject class.

public JobQueryObject ();
Public Sub New ()

Applies to

JobQueryObject(String, String, String, String, Nullable<DateTime>, Nullable<DateTime>)

Initializes a new instance of the JobQueryObject class.

public JobQueryObject (string status = default, string backupManagementType = default, string operation = default, string jobId = default, DateTime? startTime = default, DateTime? endTime = default);
new Microsoft.Azure.Management.RecoveryServices.Backup.CrossRegionRestore.Models.JobQueryObject : string * string * string * string * Nullable<DateTime> * Nullable<DateTime> -> Microsoft.Azure.Management.RecoveryServices.Backup.CrossRegionRestore.Models.JobQueryObject
Public Sub New (Optional status As String = Nothing, Optional backupManagementType As String = Nothing, Optional operation As String = Nothing, Optional jobId As String = Nothing, Optional startTime As Nullable(Of DateTime) = Nothing, Optional endTime As Nullable(Of DateTime) = Nothing)

Parameters

status
String

Status of the job. Possible values include: 'Invalid', 'InProgress', 'Completed', 'Failed', 'CompletedWithWarnings', 'Cancelled', 'Cancelling'

backupManagementType
String

Type of backup management for the job. Possible values include: 'Invalid', 'AzureIaasVM', 'MAB', 'DPM', 'AzureBackupServer', 'AzureSql', 'AzureStorage', 'AzureWorkload', 'DefaultBackup'

operation
String

Type of operation. Possible values include: 'Invalid', 'Register', 'UnRegister', 'ConfigureBackup', 'Backup', 'Restore', 'DisableBackup', 'DeleteBackupData', 'CrossRegionRestore', 'Undelete', 'UpdateCustomerManagedKey'

jobId
String

JobID represents the job uniquely.

startTime
Nullable<DateTime>

Job has started at this time. Value is in UTC.

endTime
Nullable<DateTime>

Job has ended at this time. Value is in UTC.

Applies to