Class: Google::Apis::ContainerV1beta1::ReleaseChannel
- Inherits:
-
Object
- Object
- Google::Apis::ContainerV1beta1::ReleaseChannel
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- generated/google/apis/container_v1beta1/classes.rb,
generated/google/apis/container_v1beta1/representations.rb,
generated/google/apis/container_v1beta1/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
-
#channel ⇒ String
channel specifies which release channel the cluster is subscribed to.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ReleaseChannel
constructor
A new instance of ReleaseChannel.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ReleaseChannel
Returns a new instance of ReleaseChannel.
3454 3455 3456 |
# File 'generated/google/apis/container_v1beta1/classes.rb', line 3454 def initialize(**args) update!(**args) end |
Instance Attribute Details
#channel ⇒ String
channel specifies which release channel the cluster is subscribed to.
Corresponds to the JSON property channel
3452 3453 3454 |
# File 'generated/google/apis/container_v1beta1/classes.rb', line 3452 def channel @channel end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3459 3460 3461 |
# File 'generated/google/apis/container_v1beta1/classes.rb', line 3459 def update!(**args) @channel = args[:channel] if args.key?(:channel) end |