Share via


DockerBuildStepUpdateParameters Constructors

Definition

Overloads

DockerBuildStepUpdateParameters()

Initializes a new instance of the DockerBuildStepUpdateParameters class.

DockerBuildStepUpdateParameters(String, String, IList<String>, Nullable<Boolean>, Nullable<Boolean>, String, IList<Argument>, String)

Initializes a new instance of the DockerBuildStepUpdateParameters class.

DockerBuildStepUpdateParameters()

Initializes a new instance of the DockerBuildStepUpdateParameters class.

public DockerBuildStepUpdateParameters ();
Public Sub New ()

Applies to

DockerBuildStepUpdateParameters(String, String, IList<String>, Nullable<Boolean>, Nullable<Boolean>, String, IList<Argument>, String)

Initializes a new instance of the DockerBuildStepUpdateParameters class.

public DockerBuildStepUpdateParameters (string contextPath = default, string contextAccessToken = default, System.Collections.Generic.IList<string> imageNames = default, bool? isPushEnabled = default, bool? noCache = default, string dockerFilePath = default, System.Collections.Generic.IList<Microsoft.Azure.Management.ContainerRegistry.Models.Argument> arguments = default, string target = default);
new Microsoft.Azure.Management.ContainerRegistry.Models.DockerBuildStepUpdateParameters : string * string * System.Collections.Generic.IList<string> * Nullable<bool> * Nullable<bool> * string * System.Collections.Generic.IList<Microsoft.Azure.Management.ContainerRegistry.Models.Argument> * string -> Microsoft.Azure.Management.ContainerRegistry.Models.DockerBuildStepUpdateParameters
Public Sub New (Optional contextPath As String = Nothing, Optional contextAccessToken As String = Nothing, Optional imageNames As IList(Of String) = Nothing, Optional isPushEnabled As Nullable(Of Boolean) = Nothing, Optional noCache As Nullable(Of Boolean) = Nothing, Optional dockerFilePath As String = Nothing, Optional arguments As IList(Of Argument) = Nothing, Optional target As String = Nothing)

Parameters

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.

imageNames
IList<String>

The fully qualified image names including the repository and tag.

isPushEnabled
Nullable<Boolean>

The value of this property indicates whether the image built should be pushed to the registry or not.

noCache
Nullable<Boolean>

The value of this property indicates whether the image cache is enabled or not.

dockerFilePath
String

The Docker file path relative to the source context.

arguments
IList<Argument>

The collection of override arguments to be used when executing this build step.

target
String

The name of the target build stage for the docker build.

Applies to