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.



585
586
587
# File 'lib/google/apis/gkehub_v1alpha/classes.rb', line 585

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



572
573
574
# File 'lib/google/apis/gkehub_v1alpha/classes.rb', line 572

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


578
579
580
# File 'lib/google/apis/gkehub_v1alpha/classes.rb', line 578

def scopes
  @scopes
end

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

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



583
584
585
# File 'lib/google/apis/gkehub_v1alpha/classes.rb', line 583

def upgrades
  @upgrades
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



590
591
592
593
594
# File 'lib/google/apis/gkehub_v1alpha/classes.rb', line 590

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