Interface RegistryDockerTaskRunRequest.DefinitionStages.DockerTaskRunRequestStepAttachable
- All Superinterfaces:
Attachable<RegistryTaskRun.DefinitionStages.RunRequestExecutableWithSourceLocation>
- All Known Subinterfaces:
RegistryDockerTaskRunRequest.Definition
- Enclosing interface:
- RegistryDockerTaskRunRequest.DefinitionStages
public static interface RegistryDockerTaskRunRequest.DefinitionStages.DockerTaskRunRequestStepAttachable
extends Attachable<RegistryTaskRun.DefinitionStages.RunRequestExecutableWithSourceLocation>
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 a cache will be used or not.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 specifies push is enabled or not.Methods inherited from interface com.microsoft.azure.management.resources.fluentcore.model.Attachable
attach
-
Method Details
-
withImageNames
RegistryDockerTaskRunRequest.DefinitionStages.DockerTaskRunRequestStepAttachable withImageNames(List<String> imageNames) The function that specifies the list of image names.- Parameters:
imageNames
- the list of image names.- Returns:
- the next stage of the container Docker task run request definition.
-
withPushEnabled
RegistryDockerTaskRunRequest.DefinitionStages.DockerTaskRunRequestStepAttachable withPushEnabled(boolean enabled) The function that specifies push is enabled or not.- Parameters:
enabled
- whether push is enabled.- Returns:
- the next stage of the container Docker task run request definition.
-
withCacheEnabled
RegistryDockerTaskRunRequest.DefinitionStages.DockerTaskRunRequestStepAttachable withCacheEnabled(boolean enabled) The function that specifies a cache will be used or not.- Parameters:
enabled
- whether caching is enabled or not.- Returns:
- the next stage of the container Docker task run request definition.
-
withOverridingArguments
RegistryDockerTaskRunRequest.DefinitionStages.DockerTaskRunRequestStepAttachable 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 argument to be overridden and value OverridingArgument specifying the content of the overriding argument.- Returns:
- the next stage of the container Docker task run request definition.
-
withOverridingArgument
RegistryDockerTaskRunRequest.DefinitionStages.DockerTaskRunRequestStepAttachable 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 run request definition.
-