class Azure::ContainerRegistry::Mgmt::V2019_04_01::Models::FileTaskStepUpdateParameters
The properties of updating a task step.
Attributes
task_file_path[RW]
@return [String] The task template/definition file path relative to the source context.
type[RW]
values[RW]
@return [Array<SetValue>] The collection of overridable values that can be passed when running a task.
values_file_path[RW]
@return [String] The values/parameters file path relative to the source context.
Public Class Methods
mapper()
click to toggle source
Mapper for FileTaskStepUpdateParameters
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2019-04-01/generated/azure_mgmt_container_registry/models/file_task_step_update_parameters.rb, line 39 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'FileTask', type: { name: 'Composite', class_name: 'FileTaskStepUpdateParameters', 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' } }, task_file_path: { client_side_validation: true, required: false, serialized_name: 'taskFilePath', type: { name: 'String' } }, values_file_path: { client_side_validation: true, required: false, serialized_name: 'valuesFilePath', 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' } } } } } } } end
new()
click to toggle source
# File lib/2019-04-01/generated/azure_mgmt_container_registry/models/file_task_step_update_parameters.rb, line 16 def initialize @type = "FileTask" end