Class: Google::Apis::ContainerV1::ReleaseChannel
- Inherits:
-
Object
- Object
- Google::Apis::ContainerV1::ReleaseChannel
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- generated/google/apis/container_v1/classes.rb,
generated/google/apis/container_v1/representations.rb,
generated/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
-
#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.
2938 2939 2940 |
# File 'generated/google/apis/container_v1/classes.rb', line 2938 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
2936 2937 2938 |
# File 'generated/google/apis/container_v1/classes.rb', line 2936 def channel @channel end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2943 2944 2945 |
# File 'generated/google/apis/container_v1/classes.rb', line 2943 def update!(**args) @channel = args[:channel] if args.key?(:channel) end |