Class: Google::Apis::ContainerV1::ReleaseChannel

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

Overview

ReleaseChannel indicates which release channel a cluster is subscribed to. Release channels are arranged in order of risk. When a cluster is subscribed to a release channel, Google maintains both the master version and the node version. Node auto-upgrade defaults to true and cannot be disabled.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ReleaseChannel

Returns a new instance of ReleaseChannel.



5600
5601
5602
# File 'lib/google/apis/container_v1/classes.rb', line 5600

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

Instance Attribute Details

#channelString

channel specifies which release channel the cluster is subscribed to. Corresponds to the JSON property channel

Returns:

  • (String)


5598
5599
5600
# File 'lib/google/apis/container_v1/classes.rb', line 5598

def channel
  @channel
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5605
5606
5607
# File 'lib/google/apis/container_v1/classes.rb', line 5605

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