Class: Google::Cloud::Container::V1::LoggingVariantConfig

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

Overview

LoggingVariantConfig specifies the behaviour of the logging component.

Defined Under Namespace

Modules: Variant

Instance Attribute Summary collapse

Instance Attribute Details

#variant::Google::Cloud::Container::V1::LoggingVariantConfig::Variant

Returns Logging variant deployed on nodes.

Returns:



5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
# File 'proto_docs/google/container/v1/cluster_service.rb', line 5102

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

  # Logging component variants.
  module Variant
    # Default value. This shouldn't be used.
    VARIANT_UNSPECIFIED = 0

    # default logging variant.
    DEFAULT = 1

    # maximum logging throughput variant.
    MAX_THROUGHPUT = 2
  end
end