共用方式為


EncodedTaskStep Constructors

Definition

Overloads

EncodedTaskStep()

Initializes a new instance of the EncodedTaskStep class.

EncodedTaskStep(String, IList<BaseImageDependency>, String, String, String, IList<SetValue>)

Initializes a new instance of the EncodedTaskStep class.

EncodedTaskStep()

Initializes a new instance of the EncodedTaskStep class.

public EncodedTaskStep ();
Public Sub New ()

Applies to

EncodedTaskStep(String, IList<BaseImageDependency>, String, String, String, IList<SetValue>)

Initializes a new instance of the EncodedTaskStep class.

public EncodedTaskStep (string encodedTaskContent, System.Collections.Generic.IList<Microsoft.Azure.Management.ContainerRegistry.Fluent.Models.BaseImageDependency> baseImageDependencies = default, string contextPath = default, string contextAccessToken = default, string encodedValuesContent = default, System.Collections.Generic.IList<Microsoft.Azure.Management.ContainerRegistry.Fluent.Models.SetValue> values = default);
new Microsoft.Azure.Management.ContainerRegistry.Fluent.Models.EncodedTaskStep : string * System.Collections.Generic.IList<Microsoft.Azure.Management.ContainerRegistry.Fluent.Models.BaseImageDependency> * string * string * string * System.Collections.Generic.IList<Microsoft.Azure.Management.ContainerRegistry.Fluent.Models.SetValue> -> Microsoft.Azure.Management.ContainerRegistry.Fluent.Models.EncodedTaskStep
Public Sub New (encodedTaskContent As String, Optional baseImageDependencies As IList(Of BaseImageDependency) = Nothing, Optional contextPath As String = Nothing, Optional contextAccessToken As String = Nothing, Optional encodedValuesContent As String = Nothing, Optional values As IList(Of SetValue) = Nothing)

Parameters

encodedTaskContent
String

Base64 encoded value of the template/definition file content.

baseImageDependencies
IList<BaseImageDependency>

List of base image dependencies for a step.

contextPath
String

The URL(absolute or relative) of the source context for the task step.

contextAccessToken
String

The token (git PAT or SAS token of storage account blob) associated with the context for a step.

encodedValuesContent
String

Base64 encoded value of the parameters/values file content.

values
IList<SetValue>

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

Applies to