Class: Google::Apis::ContainerV1::ReleaseChannelConfig

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

ReleaseChannelConfig exposes configuration for a release channel.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ReleaseChannelConfig

Returns a new instance of ReleaseChannelConfig.



5629
5630
5631
# File 'lib/google/apis/container_v1/classes.rb', line 5629

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

Instance Attribute Details

#channelString

The release channel this configuration applies to. Corresponds to the JSON property channel

Returns:

  • (String)


5617
5618
5619
# File 'lib/google/apis/container_v1/classes.rb', line 5617

def channel
  @channel
end

#default_versionString

The default version for newly created clusters on the channel. Corresponds to the JSON property defaultVersion

Returns:

  • (String)


5622
5623
5624
# File 'lib/google/apis/container_v1/classes.rb', line 5622

def default_version
  @default_version
end

#valid_versionsArray<String>

List of valid versions for the channel. Corresponds to the JSON property validVersions

Returns:

  • (Array<String>)


5627
5628
5629
# File 'lib/google/apis/container_v1/classes.rb', line 5627

def valid_versions
  @valid_versions
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5634
5635
5636
5637
5638
# File 'lib/google/apis/container_v1/classes.rb', line 5634

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