Share via


RunFilter Constructors

Definition

Overloads

RunFilter()

Initializes a new instance of the RunFilter class.

RunFilter(String, String, String, Nullable<DateTime>, Nullable<DateTime>, String, Nullable<Boolean>, String, String)

Initializes a new instance of the RunFilter class.

RunFilter()

Initializes a new instance of the RunFilter class.

public RunFilter ();
Public Sub New ()

Applies to

RunFilter(String, String, String, Nullable<DateTime>, Nullable<DateTime>, String, Nullable<Boolean>, String, String)

Initializes a new instance of the RunFilter class.

public RunFilter (string runId = default, string runType = default, string status = default, DateTime? createTime = default, DateTime? finishTime = default, string outputImageManifests = default, bool? isArchiveEnabled = default, string taskName = default, string agentPoolName = default);
new Microsoft.Azure.Management.ContainerRegistry.Models.RunFilter : string * string * string * Nullable<DateTime> * Nullable<DateTime> * string * Nullable<bool> * string * string -> Microsoft.Azure.Management.ContainerRegistry.Models.RunFilter
Public Sub New (Optional runId As String = Nothing, Optional runType As String = Nothing, Optional status As String = Nothing, Optional createTime As Nullable(Of DateTime) = Nothing, Optional finishTime As Nullable(Of DateTime) = Nothing, Optional outputImageManifests As String = Nothing, Optional isArchiveEnabled As Nullable(Of Boolean) = Nothing, Optional taskName As String = Nothing, Optional agentPoolName As String = Nothing)

Parameters

runId
String

The unique identifier for the run.

runType
String

The type of run. Possible values include: 'QuickBuild', 'QuickRun', 'AutoBuild', 'AutoRun'

status
String

The current status of the run. Possible values include: 'Queued', 'Started', 'Running', 'Succeeded', 'Failed', 'Canceled', 'Error', 'Timeout'

createTime
Nullable<DateTime>

The create time for a run.

finishTime
Nullable<DateTime>

The time the run finished.

outputImageManifests
String

The list of comma-separated image manifests that were generated from the run. This is applicable if the run is of build type.

isArchiveEnabled
Nullable<Boolean>

The value that indicates whether archiving is enabled or not.

taskName
String

The name of the task that the run corresponds to.

agentPoolName
String

The name of the agent pool that the run corresponds to.

Applies to