共用方式為


RunInner Constructors

Definition

Overloads

RunInner()

Initializes a new instance of the RunInner class.

RunInner(String, String, String, String, String, Nullable<DateTime>, String, Nullable<DateTime>, Nullable<DateTime>, Nullable<DateTime>, IList<ImageDescriptor>, String, ImageUpdateTrigger, SourceTriggerDescriptor, Nullable<Boolean>, PlatformProperties, AgentProperties, String)

Initializes a new instance of the RunInner class.

RunInner()

Initializes a new instance of the RunInner class.

public RunInner ();
Public Sub New ()

Applies to

RunInner(String, String, String, String, String, Nullable<DateTime>, String, Nullable<DateTime>, Nullable<DateTime>, Nullable<DateTime>, IList<ImageDescriptor>, String, ImageUpdateTrigger, SourceTriggerDescriptor, Nullable<Boolean>, PlatformProperties, AgentProperties, String)

Initializes a new instance of the RunInner class.

public RunInner (string id = default, string name = default, string type = default, string runId = default, string status = default, DateTime? lastUpdatedTime = default, string runType = default, DateTime? createTime = default, DateTime? startTime = default, DateTime? finishTime = default, System.Collections.Generic.IList<Microsoft.Azure.Management.ContainerRegistry.Fluent.Models.ImageDescriptor> outputImages = default, string task = default, Microsoft.Azure.Management.ContainerRegistry.Fluent.Models.ImageUpdateTrigger imageUpdateTrigger = default, Microsoft.Azure.Management.ContainerRegistry.Fluent.Models.SourceTriggerDescriptor sourceTrigger = default, bool? isArchiveEnabled = default, Microsoft.Azure.Management.ContainerRegistry.Fluent.Models.PlatformProperties platform = default, Microsoft.Azure.Management.ContainerRegistry.Fluent.Models.AgentProperties agentConfiguration = default, string provisioningState = default);
new Microsoft.Azure.Management.ContainerRegistry.Fluent.Models.RunInner : string * string * string * string * string * Nullable<DateTime> * string * Nullable<DateTime> * Nullable<DateTime> * Nullable<DateTime> * System.Collections.Generic.IList<Microsoft.Azure.Management.ContainerRegistry.Fluent.Models.ImageDescriptor> * string * Microsoft.Azure.Management.ContainerRegistry.Fluent.Models.ImageUpdateTrigger * Microsoft.Azure.Management.ContainerRegistry.Fluent.Models.SourceTriggerDescriptor * Nullable<bool> * Microsoft.Azure.Management.ContainerRegistry.Fluent.Models.PlatformProperties * Microsoft.Azure.Management.ContainerRegistry.Fluent.Models.AgentProperties * string -> Microsoft.Azure.Management.ContainerRegistry.Fluent.Models.RunInner
Public Sub New (Optional id As String = Nothing, Optional name As String = Nothing, Optional type As String = Nothing, Optional runId As String = Nothing, Optional status As String = Nothing, Optional lastUpdatedTime As Nullable(Of DateTime) = Nothing, Optional runType As String = Nothing, Optional createTime As Nullable(Of DateTime) = Nothing, Optional startTime As Nullable(Of DateTime) = Nothing, Optional finishTime As Nullable(Of DateTime) = Nothing, Optional outputImages As IList(Of ImageDescriptor) = Nothing, Optional task As String = Nothing, Optional imageUpdateTrigger As ImageUpdateTrigger = Nothing, Optional sourceTrigger As SourceTriggerDescriptor = Nothing, Optional isArchiveEnabled As Nullable(Of Boolean) = Nothing, Optional platform As PlatformProperties = Nothing, Optional agentConfiguration As AgentProperties = Nothing, Optional provisioningState As String = Nothing)

Parameters

id
String

The resource ID.

name
String

The name of the resource.

type
String

The type of the resource.

runId
String

The unique identifier for the run.

status
String

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

lastUpdatedTime
Nullable<DateTime>

The last updated time for the run.

runType
String

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

createTime
Nullable<DateTime>

The time the run was scheduled.

startTime
Nullable<DateTime>

The time the run started.

finishTime
Nullable<DateTime>

The time the run finished.

outputImages
IList<ImageDescriptor>

The list of all images that were generated from the run. This is applicable if the run generates base image dependencies.

task
String

The task against which run was scheduled.

imageUpdateTrigger
ImageUpdateTrigger

The image update trigger that caused the run. This is applicable if the task has base image trigger configured.

sourceTrigger
SourceTriggerDescriptor

The source trigger that caused the run.

isArchiveEnabled
Nullable<Boolean>

The value that indicates whether archiving is enabled or not.

platform
PlatformProperties

The platform properties against which the run will happen.

agentConfiguration
AgentProperties

The machine configuration of the run agent.

provisioningState
String

The provisioning state of a run. Possible values include: 'Creating', 'Updating', 'Deleting', 'Succeeded', 'Failed', 'Canceled'

Applies to