class Google::Apis::GkehubV1beta::FeatureState
FeatureState
describes the high-level state of a Feature
. It may be used to describe a Feature's state at the environ-level, or per-membershop, depending on the context.
Attributes
code[RW]
The high-level, machine-readable status of this Feature
. Corresponds to the JSON property `code` @return [String]
description[RW]
A human-readable description of the current status. Corresponds to the JSON property `description` @return [String]
update_time[RW]
The time this status and any related Feature-specific details were updated. Corresponds to the JSON property `updateTime` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/gkehub_v1beta/classes.rb, line 1254 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/gkehub_v1beta/classes.rb, line 1259 def update!(**args) @code = args[:code] if args.key?(:code) @description = args[:description] if args.key?(:description) @update_time = args[:update_time] if args.key?(:update_time) end