class Azure::ContainerRegistry::Mgmt::V2019_04_01::Models::TaskStepProperties
Base properties for any task step.
Attributes
base_image_dependencies[RW]
@return [Array<BaseImageDependency>] List of base image dependencies for a step.
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]
Public Class Methods
mapper()
click to toggle source
Mapper for TaskStepProperties
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2019-04-01/generated/azure_mgmt_container_registry/models/task_step_properties.rb, line 43 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'TaskStepProperties', type: { name: 'Composite', polymorphic_discriminator: 'type', uber_parent: 'TaskStepProperties', class_name: 'TaskStepProperties', model_properties: { base_image_dependencies: { client_side_validation: true, required: false, read_only: true, serialized_name: 'baseImageDependencies', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'BaseImageDependencyElementType', type: { name: 'Composite', class_name: 'BaseImageDependency' } } } }, 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-04-01/generated/azure_mgmt_container_registry/models/task_step_properties.rb, line 20 def initialize @type = "TaskStepProperties" end