RegistryDockerTaskStep.UpdateStages.OverridingArgumentUpdate Interface

public static interface RegistryDockerTaskStep.UpdateStages.OverridingArgumentUpdate

The stage of the container registry DockerTaskStep update allowing to specify any overriding arguments.

Method Summary

Modifier and Type Method and Description
abstract Update withOverridingArgument(String name, OverridingArgument overridingArgument)

The function that specifies the overriding argument and what it will override.

abstract Update withOverridingArguments(Map<String,OverridingArgument> overridingArguments)

The function that specifies the overriding arguments and what they will override.

Method Details

withOverridingArgument

public abstract RegistryDockerTaskStep.Update 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 update.

withOverridingArguments

public abstract RegistryDockerTaskStep.Update withOverridingArguments(Map 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 update.

Applies to