Interface RegistryDockerTaskStep.DefinitionStages.DockerTaskStepAttachable
- All Superinterfaces:
Attachable<RegistryTask.DefinitionStages.SourceTriggerDefinition>
- All Known Subinterfaces:
RegistryDockerTaskStep.Definition
- Enclosing interface:
- RegistryDockerTaskStep.DefinitionStages
public static interface RegistryDockerTaskStep.DefinitionStages.DockerTaskStepAttachable
extends Attachable<RegistryTask.DefinitionStages.SourceTriggerDefinition>
The stage of the definition which contains all the minimum required inputs for the resource to be attached,
but also allows for any other optional settings to be specified.
-
Nested Class Summary
Nested classes/interfaces inherited from interface com.microsoft.azure.management.resources.fluentcore.model.Attachable
Attachable.InDefinition<ParentT>, Attachable.InDefinitionAlt<ParentT>, Attachable.InUpdate<ParentT>, Attachable.InUpdateAlt<ParentT>
-
Method Summary
Modifier and TypeMethodDescriptionwithCacheEnabled
(boolean enabled) The function that specifies the use of a cache based on user input parameter.withImageNames
(List<String> imageNames) The function that specifies the list of image names.withOverridingArgument
(String name, OverridingArgument overridingArgument) The function that specifies the overriding argument and what it will override.withOverridingArguments
(Map<String, OverridingArgument> overridingArguments) The function that specifies the overriding arguments and what they will override.withPushEnabled
(boolean enabled) The function that enables push depending on user input parameter.Methods inherited from interface com.microsoft.azure.management.resources.fluentcore.model.Attachable
attach
-
Method Details
-
withImageNames
RegistryDockerTaskStep.DefinitionStages.DockerTaskStepAttachable withImageNames(List<String> imageNames) The function that specifies the list of image names.- Parameters:
imageNames
- the image names.- Returns:
- the next step of the container registry DockerTaskStep definition.
-
withPushEnabled
The function that enables push depending on user input parameter.- Parameters:
enabled
- whether push will be enabled- Returns:
- the next step of the container registry DockerTaskStep definition.
-
withCacheEnabled
The function that specifies the use of a cache based on user input parameter.- Parameters:
enabled
- whether caching will be enabled.- Returns:
- the next step of the container registry DockerTaskStep definition.
-
withOverridingArguments
RegistryDockerTaskStep.DefinitionStages.DockerTaskStepAttachable withOverridingArguments(Map<String, OverridingArgument> overridingArguments) The function that specifies the overriding arguments and what they will override.- Parameters:
overridingArguments
- map with key of the name of the value to be overridden and value OverridingArgument specifying the content of the overriding argument.- Returns:
- the next stage of the container Docker task step definition.
-
withOverridingArgument
RegistryDockerTaskStep.DefinitionStages.DockerTaskStepAttachable withOverridingArgument(String name, OverridingArgument overridingArgument) The function that specifies the overriding argument and what it will override.- Parameters:
name
- the name of the value to be overridden.overridingArgument
- the content of the overriding argument.- Returns:
- the next stage of the container Docker task step definition.
-