DockerBuildStepUpdateParameters Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.
The value of this property indicates whether the image built should be pushed to the registry or not.
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.
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
Azure SDK for .NET