TaskRunRequest Constructors

Definition

Overloads

TaskRunRequest()

Initializes a new instance of the TaskRunRequest class.

TaskRunRequest(String, Nullable<Boolean>, IList<SetValue>)

Initializes a new instance of the TaskRunRequest class.

TaskRunRequest()

Initializes a new instance of the TaskRunRequest class.

public TaskRunRequest ();
Public Sub New ()

Applies to

TaskRunRequest(String, Nullable<Boolean>, IList<SetValue>)

Initializes a new instance of the TaskRunRequest class.

public TaskRunRequest (string taskName, bool? isArchiveEnabled = default, System.Collections.Generic.IList<Microsoft.Azure.Management.ContainerRegistry.Fluent.Models.SetValue> values = default);
new Microsoft.Azure.Management.ContainerRegistry.Fluent.Models.TaskRunRequest : string * Nullable<bool> * System.Collections.Generic.IList<Microsoft.Azure.Management.ContainerRegistry.Fluent.Models.SetValue> -> Microsoft.Azure.Management.ContainerRegistry.Fluent.Models.TaskRunRequest
Public Sub New (taskName As String, Optional isArchiveEnabled As Nullable(Of Boolean) = Nothing, Optional values As IList(Of SetValue) = Nothing)

Parameters

taskName
String

The name of task against which run has to be queued.

isArchiveEnabled
Nullable<Boolean>

The value that indicates whether archiving is enabled for the run or not.

values
IList<SetValue>

The collection of overridable values that can be passed when running a task.

Applies to