class Azure::ContainerRegistry::Mgmt::V2019_06_01_preview::Models::OverrideTaskStepProperties

Model object.

Attributes

arguments[RW]

@return [Array<Argument>] Gets or sets the collection of override arguments to be used when executing a build step.

context_path[RW]

@return [String] The source context against which run has to be queued.

file[RW]

@return [String] The file against which run has to be queued.

target[RW]

@return [String] The name of the target build stage for the docker build.

update_trigger_token[RW]

@return [String] Base64 encoded update trigger token that will be attached with the base image trigger webhook.

values[RW]

@return [Array<SetValue>] The collection of overridable values that can be passed when running a Task.

Private Class Methods

mapper() click to toggle source

Mapper for OverrideTaskStepProperties class as Ruby Hash. This will be used for serialization/deserialization.

# File lib/2019-06-01-preview/generated/azure_mgmt_container_registry/models/override_task_step_properties.rb, line 44
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'OverrideTaskStepProperties',
    type: {
      name: 'Composite',
      class_name: 'OverrideTaskStepProperties',
      model_properties: {
        context_path: {
          client_side_validation: true,
          required: false,
          serialized_name: 'contextPath',
          type: {
            name: 'String'
          }
        },
        file: {
          client_side_validation: true,
          required: false,
          serialized_name: 'file',
          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'
          }
        },
        values: {
          client_side_validation: true,
          required: false,
          serialized_name: 'values',
          type: {
            name: 'Sequence',
            element: {
                client_side_validation: true,
                required: false,
                serialized_name: 'SetValueElementType',
                type: {
                  name: 'Composite',
                  class_name: 'SetValue'
                }
            }
          }
        },
        update_trigger_token: {
          client_side_validation: true,
          required: false,
          serialized_name: 'updateTriggerToken',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end