Class: Google::Apis::GkehubV1::FeatureState
- Inherits:
-
Object
- Object
- Google::Apis::GkehubV1::FeatureState
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/gkehub_v1/classes.rb,
lib/google/apis/gkehub_v1/representations.rb,
lib/google/apis/gkehub_v1/representations.rb
Overview
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.
Instance Attribute Summary collapse
-
#code ⇒ String
The high-level, machine-readable status of this Feature.
-
#description ⇒ String
A human-readable description of the current status.
-
#update_time ⇒ String
The time this status and any related Feature-specific details were updated.
Instance Method Summary collapse
-
#initialize(**args) ⇒ FeatureState
constructor
A new instance of FeatureState.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ FeatureState
Returns a new instance of FeatureState.
2175 2176 2177 |
# File 'lib/google/apis/gkehub_v1/classes.rb', line 2175 def initialize(**args) update!(**args) end |
Instance Attribute Details
#code ⇒ String
The high-level, machine-readable status of this Feature.
Corresponds to the JSON property code
2163 2164 2165 |
# File 'lib/google/apis/gkehub_v1/classes.rb', line 2163 def code @code end |
#description ⇒ String
A human-readable description of the current status.
Corresponds to the JSON property description
2168 2169 2170 |
# File 'lib/google/apis/gkehub_v1/classes.rb', line 2168 def description @description end |
#update_time ⇒ String
The time this status and any related Feature-specific details were updated.
Corresponds to the JSON property updateTime
2173 2174 2175 |
# File 'lib/google/apis/gkehub_v1/classes.rb', line 2173 def update_time @update_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2180 2181 2182 2183 2184 |
# File 'lib/google/apis/gkehub_v1/classes.rb', line 2180 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 |