class Azure::ContainerRegistry::Mgmt::V2019_06_01_preview::Models::TaskStepUpdateParameters

Base properties for updating any task step.

Attributes

context_access_token[RW]

@return [String] The token (git PAT or SAS token of storage account blob) associated with the context for a step.

context_path[RW]

@return [String] The URL(absolute or relative) of the source context for the task step.

type[RW]

Private Class Methods

mapper() click to toggle source

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

# File lib/2019-06-01-preview/generated/azure_mgmt_container_registry/models/task_step_update_parameters.rb, line 39
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'TaskStepUpdateParameters',
    type: {
      name: 'Composite',
      polymorphic_discriminator: 'type',
      uber_parent: 'TaskStepUpdateParameters',
      class_name: 'TaskStepUpdateParameters',
      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'
          }
        }
      }
    }
  }
end
new() click to toggle source
# File lib/2019-06-01-preview/generated/azure_mgmt_container_registry/models/task_step_update_parameters.rb, line 20
def initialize
  @type = "TaskStepUpdateParameters"
end