class Azure::HealthcareApis::Mgmt::V2020_03_30::Models::OperationResultsDescription
The properties indicating the operation result of an operation on a service.
Attributes
id[RW]
@return [String] The ID of the operation returned.
name[RW]
@return [String] The name of the operation result.
properties[RW]
@return Additional properties of the operation result.
start_time[RW]
@return [String] The time that the operation was started.
status[RW]
@return [OperationResultStatus] The status of the operation being performed. Possible values include: 'Canceled', 'Succeeded', 'Failed', 'Requested', 'Running'
Private Class Methods
mapper()
click to toggle source
Mapper for OperationResultsDescription
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2020-03-30/generated/azure_mgmt_healthcare_apis/models/operation_results_description.rb, line 38 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'OperationResultsDescription', type: { name: 'Composite', class_name: 'OperationResultsDescription', model_properties: { id: { client_side_validation: true, required: false, read_only: true, serialized_name: 'id', type: { name: 'String' } }, name: { client_side_validation: true, required: false, read_only: true, serialized_name: 'name', type: { name: 'String' } }, status: { client_side_validation: true, required: false, read_only: true, serialized_name: 'status', type: { name: 'String' } }, start_time: { client_side_validation: true, required: false, read_only: true, serialized_name: 'startTime', type: { name: 'String' } }, properties: { client_side_validation: true, required: false, serialized_name: 'properties', type: { name: 'Object' } } } } } end