Class: Google::Apis::GkehubV2::ClusterUpgradeIgnoredMembership
- Inherits:
-
Object
- Object
- Google::Apis::GkehubV2::ClusterUpgradeIgnoredMembership
- 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
IgnoredMembership represents a membership ignored by the feature. A membership can be ignored because it was manually upgraded to a newer version than RC default.
Instance Attribute Summary collapse
-
#ignored_time ⇒ String
Time when the membership was first set to ignored.
-
#reason ⇒ String
Reason why the membership is ignored.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ClusterUpgradeIgnoredMembership
constructor
A new instance of ClusterUpgradeIgnoredMembership.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ClusterUpgradeIgnoredMembership
Returns a new instance of ClusterUpgradeIgnoredMembership.
148 149 150 |
# File 'lib/google/apis/gkehub_v2/classes.rb', line 148 def initialize(**args) update!(**args) end |
Instance Attribute Details
#ignored_time ⇒ String
Time when the membership was first set to ignored.
Corresponds to the JSON property ignoredTime
141 142 143 |
# File 'lib/google/apis/gkehub_v2/classes.rb', line 141 def ignored_time @ignored_time end |
#reason ⇒ String
Reason why the membership is ignored.
Corresponds to the JSON property reason
146 147 148 |
# File 'lib/google/apis/gkehub_v2/classes.rb', line 146 def reason @reason end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
153 154 155 156 |
# File 'lib/google/apis/gkehub_v2/classes.rb', line 153 def update!(**args) @ignored_time = args[:ignored_time] if args.key?(:ignored_time) @reason = args[:reason] if args.key?(:reason) end |