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:



8135
8136
8137
8138
8139
8140
8141
8142
8143
8144
8145
8146
8147
8148
8149
8150
8151
# File 'proto_docs/google/container/v1beta1/cluster_service.rb', line 8135

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