class Azure::ContainerRegistry::Mgmt::V2019_04_01::Models::DockerBuildStepUpdateParameters
The properties for updating a docker build step.
Attributes
arguments[RW]
@return [Array<Argument>] The collection of override arguments to be used when executing this build step.
docker_file_path[RW]
@return [String] The Docker file path relative to the source context.
image_names[RW]
@return [Array<String>] The fully qualified image names including the repository and tag.
is_push_enabled[RW]
@return [Boolean] The value of this property indicates whether the image built should be pushed to the registry or not.
no_cache[RW]
@return [Boolean] The value of this property indicates whether the image cache is enabled or not.
target[RW]
@return [String] The name of the target build stage for the docker build.
type[RW]
Public Class Methods
mapper()
click to toggle source
Mapper for DockerBuildStepUpdateParameters
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2019-04-01/generated/azure_mgmt_container_registry/models/docker_build_step_update_parameters.rb, line 50 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'Docker', type: { name: 'Composite', class_name: 'DockerBuildStepUpdateParameters', model_properties: { context_path: { client_side_validation: true, required: false, serialized_name: 'contextPath', type: { name: 'String' } }, context_access_token: { client_side_validation: true, required: false, serialized_name: 'contextAccessToken', type: { name: 'String' } }, type: { client_side_validation: true, required: true, serialized_name: 'type', type: { name: 'String' } }, image_names: { client_side_validation: true, required: false, serialized_name: 'imageNames', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'StringElementType', type: { name: 'String' } } } }, is_push_enabled: { client_side_validation: true, required: false, serialized_name: 'isPushEnabled', type: { name: 'Boolean' } }, no_cache: { client_side_validation: true, required: false, serialized_name: 'noCache', type: { name: 'Boolean' } }, docker_file_path: { client_side_validation: true, required: false, serialized_name: 'dockerFilePath', type: { name: 'String' } }, arguments: { client_side_validation: true, required: false, serialized_name: 'arguments', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'ArgumentElementType', type: { name: 'Composite', class_name: 'Argument' } } } }, target: { client_side_validation: true, required: false, serialized_name: 'target', type: { name: 'String' } } } } } end
new()
click to toggle source
# File lib/2019-04-01/generated/azure_mgmt_container_registry/models/docker_build_step_update_parameters.rb, line 16 def initialize @type = "Docker" end