Interface RegistryTaskRun.DefinitionStages.RegistryTaskRunRequest
- All Superinterfaces:
Executable<RegistryTaskRun>
,Indexable
,RegistryTaskRun.DefinitionStages.Archive
,RegistryTaskRun.DefinitionStages.RunRequestExecutable
- All Known Subinterfaces:
RegistryTaskRun.Definition
- Enclosing interface:
- RegistryTaskRun.DefinitionStages
public static interface RegistryTaskRun.DefinitionStages.RegistryTaskRunRequest
extends RegistryTaskRun.DefinitionStages.RunRequestExecutable
The stage of the container registry task definition for TaskRunRequests that allows the user to specify overriding values
and whether archiving is enabled or not.
-
Method Summary
Modifier and TypeMethodDescriptionwithArchiveEnabled
(boolean enabled) The function that specifies archiving will or will not be enabled.withOverridingValue
(String name, OverridingValue overridingValue) The function that specifies whether a single value will be overridden and what it will be overridden by.withOverridingValues
(Map<String, OverridingValue> overridingValues) The function that specifies whether there are any values that will be overridden and what they will be overridden by.Methods inherited from interface com.microsoft.azure.management.resources.fluentcore.model.Executable
execute, executeAsync, executeAsync
-
Method Details
-
withOverridingValues
RegistryTaskRun.DefinitionStages.RegistryTaskRunRequest withOverridingValues(Map<String, OverridingValue> overridingValues) The function that specifies whether there are any values that will be overridden and what they will be overridden by.- Parameters:
overridingValues
- a map that has the name of the value to be overridden as the key and the value is an OverridingValue.- Returns:
- the next stage of the container registry task run definition.
-
withOverridingValue
RegistryTaskRun.DefinitionStages.RegistryTaskRunRequest withOverridingValue(String name, OverridingValue overridingValue) The function that specifies whether a single value will be overridden and what it will be overridden by.- Parameters:
name
- the name of the value to be overridden.overridingValue
- the OverridingValue specifying what the value will be overridden with.- Returns:
- the next stage of the container registry task run definition.
-
withArchiveEnabled
The function that specifies archiving will or will not be enabled.- Specified by:
withArchiveEnabled
in interfaceRegistryTaskRun.DefinitionStages.Archive
- Parameters:
enabled
- whether archive will be enabled.- Returns:
- the next stage of the container registry task run definition.
-