Class: Google::Apis::GkehubV1alpha::ClusterUpgradeMembershipState

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

Overview

Per-membership state for this feature.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ClusterUpgradeMembershipState

Returns a new instance of ClusterUpgradeMembershipState.



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

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

Instance Attribute Details

#ignoredGoogle::Apis::GkehubV1alpha::ClusterUpgradeIgnoredMembership

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. Corresponds to the JSON property ignored



722
723
724
# File 'lib/google/apis/gkehub_v1alpha/classes.rb', line 722

def ignored
  @ignored
end

#scopesArray<String>

Fully qualified scope names that this clusters is bound to which also have rollout sequencing enabled. Corresponds to the JSON property scopes

Returns:

  • (Array<String>)


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

def scopes
  @scopes
end

#upgradesArray<Google::Apis::GkehubV1alpha::ClusterUpgradeMembershipGkeUpgradeState>

Actual upgrade state against desired. Corresponds to the JSON property upgrades



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

def upgrades
  @upgrades
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



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

def update!(**args)
  @ignored = args[:ignored] if args.key?(:ignored)
  @scopes = args[:scopes] if args.key?(:scopes)
  @upgrades = args[:upgrades] if args.key?(:upgrades)
end