JobFilter Constructors

Definition

Overloads

JobFilter()

Initializes a new instance of the JobFilter class.

JobFilter(String, String, Nullable<DateTime>)

Initializes a new instance of the JobFilter class.

JobFilter()

Initializes a new instance of the JobFilter class.

public JobFilter ();
Public Sub New ()

Applies to

JobFilter(String, String, Nullable<DateTime>)

Initializes a new instance of the JobFilter class.

public JobFilter (string status = default, string jobType = default, DateTime? startTime = default);
new Microsoft.Azure.Management.StorSimple8000Series.Models.JobFilter : string * string * Nullable<DateTime> -> Microsoft.Azure.Management.StorSimple8000Series.Models.JobFilter
Public Sub New (Optional status As String = Nothing, Optional jobType As String = Nothing, Optional startTime As Nullable(Of DateTime) = Nothing)

Parameters

status
String

Specifies the status of the jobs to be filtered. For e.g., "Running", "Succeeded", "Failed" or "Canceled". Only 'Equality' operator is supported for this property.

jobType
String

Specifies the type of the jobs to be filtered. For e.g., "ScheduledBackup", "ManualBackup", "RestoreBackup", "CloneVolume", "FailoverVolumeContainers", "CreateLocallyPinnedVolume", "ModifyVolume", "InstallUpdates", "SupportPackageLogs", or "CreateCloudAppliance". Only 'Equality' operator can be used for this property.

startTime
Nullable<DateTime>

Specifies the start time of the jobs to be filtered. Only 'Greater Than or Equal To' and 'Lesser Than or Equal To' operators are supported for this property.

Applies to