Class: Google::Cloud::GkeMultiCloud::V1::LoggingComponentConfig
- Inherits:
-
Object
- Object
- Google::Cloud::GkeMultiCloud::V1::LoggingComponentConfig
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/gkemulticloud/v1/common_resources.rb
Overview
Parameters that describe the Logging component configuration in a cluster.
Defined Under Namespace
Modules: Component
Instance Attribute Summary collapse
-
#enable_components ⇒ ::Array<::Google::Cloud::GkeMultiCloud::V1::LoggingComponentConfig::Component>
The components to be enabled.
Instance Attribute Details
#enable_components ⇒ ::Array<::Google::Cloud::GkeMultiCloud::V1::LoggingComponentConfig::Component>
Returns The components to be enabled.
243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 |
# File 'proto_docs/google/cloud/gkemulticloud/v1/common_resources.rb', line 243 class LoggingComponentConfig include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The components of the logging configuration; module Component # No component is specified COMPONENT_UNSPECIFIED = 0 # This indicates that system logging components is enabled. SYSTEM_COMPONENTS = 1 # This indicates that user workload logging component is enabled. WORKLOADS = 2 end end |