class Azure::ContainerRegistry::Mgmt::V2019_06_01_preview::Models::TaskRunUpdateParameters
The parameters for updating a task run.
Attributes
force_update_tag[RW]
@return [String] How the run should be forced to rerun even if the run request configuration has not changed
identity[RW]
@return [IdentityProperties] Identity for the resource.
location[RW]
@return [String] The location of the resource
run_request[RW]
@return [RunRequest] The request (parameters) for the new run
Private Class Methods
mapper()
click to toggle source
Mapper for TaskRunUpdateParameters
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2019-06-01-preview/generated/azure_mgmt_container_registry/models/task_run_update_parameters.rb, line 36 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'TaskRunUpdateParameters', type: { name: 'Composite', class_name: 'TaskRunUpdateParameters', model_properties: { identity: { client_side_validation: true, required: false, serialized_name: 'identity', type: { name: 'Composite', class_name: 'IdentityProperties' } }, run_request: { client_side_validation: true, required: false, serialized_name: 'properties.runRequest', type: { name: 'Composite', polymorphic_discriminator: 'type', uber_parent: 'RunRequest', class_name: 'RunRequest' } }, force_update_tag: { client_side_validation: true, required: false, serialized_name: 'properties.forceUpdateTag', type: { name: 'String' } }, location: { client_side_validation: true, required: false, serialized_name: 'location', type: { name: 'String' } }, tags: { client_side_validation: true, required: false, serialized_name: 'tags', type: { name: 'Dictionary', value: { client_side_validation: true, required: false, serialized_name: 'StringElementType', type: { name: 'String' } } } } } } } end