class Azure::Compute::Mgmt::V2019_07_01::Models::UpgradeOperationHistoryStatus
Information about the current running state of the overall upgrade.
Attributes
code[RW]
@return [UpgradeState] Code indicating the current status of the upgrade. Possible values include: 'RollingForward', 'Cancelled', 'Completed', 'Faulted'
end_time[RW]
@return [DateTime] End time of the upgrade.
start_time[RW]
@return [DateTime] Start time of the upgrade.
Public Class Methods
mapper()
click to toggle source
Mapper for UpgradeOperationHistoryStatus
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2019-07-01/generated/azure_mgmt_compute/models/upgrade_operation_history_status.rb, line 31 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'UpgradeOperationHistoryStatus', type: { name: 'Composite', class_name: 'UpgradeOperationHistoryStatus', model_properties: { code: { client_side_validation: true, required: false, read_only: true, serialized_name: 'code', type: { name: 'Enum', module: 'UpgradeState' } }, start_time: { client_side_validation: true, required: false, read_only: true, serialized_name: 'startTime', type: { name: 'DateTime' } }, end_time: { client_side_validation: true, required: false, read_only: true, serialized_name: 'endTime', type: { name: 'DateTime' } } } } } end