Class: Google::Cloud::Container::V1beta1::GkeAutoUpgradeConfig

Inherits:
Object
  • Object
show all
Extended by:
Protobuf::MessageExts::ClassMethods
Includes:
Protobuf::MessageExts
Defined in:
proto_docs/google/container/v1beta1/cluster_service.rb

Overview

GkeAutoUpgradeConfig is the configuration for GKE auto upgrades.

Defined Under Namespace

Modules: PatchMode

Instance Attribute Summary collapse

Instance Attribute Details

#patch_mode::Google::Cloud::Container::V1beta1::GkeAutoUpgradeConfig::PatchMode

Returns PatchMode specifies how auto upgrade patch builds should be selected.

Returns:



7860
7861
7862
7863
7864
7865
7866
7867
7868
7869
7870
7871
7872
7873
7874
7875
7876
# File 'proto_docs/google/container/v1beta1/cluster_service.rb', line 7860

class GkeAutoUpgradeConfig
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # PatchMode specifies how auto upgrade patch builds should be
  # selected.
  module PatchMode
    # PATCH_MODE_UNSPECIFIED defaults to using the upgrade target from the
    # channel's patch upgrade targets as the upgrade target for the
    # version.
    PATCH_MODE_UNSPECIFIED = 0

    # ACCELERATED denotes that the latest patch build in the channel should be
    # used as the upgrade target for the version.
    ACCELERATED = 1
  end
end