Class: Google::Apis::GkehubV2::ClusterUpgradeUpgradeStatus

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/gkehub_v2/classes.rb,
lib/google/apis/gkehub_v2/representations.rb,
lib/google/apis/gkehub_v2/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.



230
231
232
# File 'lib/google/apis/gkehub_v2/classes.rb', line 230

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

Instance Attribute Details

#codeString

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

Returns:

  • (String)


218
219
220
# File 'lib/google/apis/gkehub_v2/classes.rb', line 218

def code
  @code
end

#reasonString

Reason for this status. Corresponds to the JSON property reason

Returns:

  • (String)


223
224
225
# File 'lib/google/apis/gkehub_v2/classes.rb', line 223

def reason
  @reason
end

#update_timeString

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

Returns:

  • (String)


228
229
230
# File 'lib/google/apis/gkehub_v2/classes.rb', line 228

def update_time
  @update_time
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



235
236
237
238
239
# File 'lib/google/apis/gkehub_v2/classes.rb', line 235

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