class Azure::ServiceFabric::V7_0_0_42::Models::RepairTaskApproveDescription
Describes a request for forced approval of a repair task.
This type supports the Service Fabric platform; it is not meant to be used directly from your code.
Attributes
task_id[RW]
@return [String] The ID of the repair task.
version[RW]
@return [String] The current version number of the repair task. If non-zero, then the request will only succeed if this value matches the actual current version of the repair task. If zero, then no version check is performed.
Private Class Methods
mapper()
click to toggle source
Mapper for RepairTaskApproveDescription
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/7.0.0.42/generated/azure_service_fabric/models/repair_task_approve_description.rb, line 32 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'RepairTaskApproveDescription', type: { name: 'Composite', class_name: 'RepairTaskApproveDescription', model_properties: { task_id: { client_side_validation: true, required: true, serialized_name: 'TaskId', type: { name: 'String' } }, version: { client_side_validation: true, required: false, serialized_name: 'Version', type: { name: 'String' } } } } } end