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.



616
617
618
# File 'lib/google/apis/gkehub_v1alpha/classes.rb', line 616

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



603
604
605
# File 'lib/google/apis/gkehub_v1alpha/classes.rb', line 603

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>)


609
610
611
# File 'lib/google/apis/gkehub_v1alpha/classes.rb', line 609

def scopes
  @scopes
end

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

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



614
615
616
# File 'lib/google/apis/gkehub_v1alpha/classes.rb', line 614

def upgrades
  @upgrades
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



621
622
623
624
625
# File 'lib/google/apis/gkehub_v1alpha/classes.rb', line 621

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