Class: Google::Apis::GkehubV2::ClusterUpgradeGkeUpgrade

Inherits:
Object
  • Object
show all
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

GKEUpgrade represents a GKE provided upgrade, e.g., control plane upgrade.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ClusterUpgradeGkeUpgrade

Returns a new instance of ClusterUpgradeGkeUpgrade.



121
122
123
# File 'lib/google/apis/gkehub_v2/classes.rb', line 121

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

Instance Attribute Details

#nameString

Name of the upgrade, e.g., "k8s_control_plane". Corresponds to the JSON property name

Returns:

  • (String)


114
115
116
# File 'lib/google/apis/gkehub_v2/classes.rb', line 114

def name
  @name
end

#versionString

Version of the upgrade, e.g., "1.22.1-gke.100". Corresponds to the JSON property version

Returns:

  • (String)


119
120
121
# File 'lib/google/apis/gkehub_v2/classes.rb', line 119

def version
  @version
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



126
127
128
129
# File 'lib/google/apis/gkehub_v2/classes.rb', line 126

def update!(**args)
  @name = args[:name] if args.key?(:name)
  @version = args[:version] if args.key?(:version)
end