Class: Google::Cloud::Container::V1::LoggingVariantConfig
- Inherits:
-
Object
- Object
- Google::Cloud::Container::V1::LoggingVariantConfig
- 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
-
#variant ⇒ ::Google::Cloud::Container::V1::LoggingVariantConfig::Variant
Logging variant deployed on nodes.
Instance Attribute Details
#variant ⇒ ::Google::Cloud::Container::V1::LoggingVariantConfig::Variant
Returns Logging variant deployed on nodes.
4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 |
# File 'proto_docs/google/container/v1/cluster_service.rb', line 4846 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 |