Class: Google::Apis::GkehubV1beta::ClusterUpgradeUpgradeStatus

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/gkehub_v1beta/classes.rb,
lib/google/apis/gkehub_v1beta/representations.rb,
lib/google/apis/gkehub_v1beta/representations.rb

Overview

UpgradeStatus provides status information for each upgrade.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ClusterUpgradeUpgradeStatus

Returns a new instance of ClusterUpgradeUpgradeStatus.



735
736
737
# File 'lib/google/apis/gkehub_v1beta/classes.rb', line 735

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#codeString

Status code of the upgrade. Corresponds to the JSON property code

Returns:

  • (String)


723
724
725
# File 'lib/google/apis/gkehub_v1beta/classes.rb', line 723

def code
  @code
end

#reasonString

Reason for this status. Corresponds to the JSON property reason

Returns:

  • (String)


728
729
730
# File 'lib/google/apis/gkehub_v1beta/classes.rb', line 728

def reason
  @reason
end

#update_timeString

Last timestamp the status was updated. Corresponds to the JSON property updateTime

Returns:

  • (String)


733
734
735
# File 'lib/google/apis/gkehub_v1beta/classes.rb', line 733

def update_time
  @update_time
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



740
741
742
743
744
# File 'lib/google/apis/gkehub_v1beta/classes.rb', line 740

def update!(**args)
  @code = args[:code] if args.key?(:code)
  @reason = args[:reason] if args.key?(:reason)
  @update_time = args[:update_time] if args.key?(:update_time)
end