Class: Google::Cloud::Container::V1::AutoMonitoringConfig
- Inherits:
-
Object
- Object
- Google::Cloud::Container::V1::AutoMonitoringConfig
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/container/v1/cluster_service.rb
Overview
AutoMonitoringConfig defines the configuration for GKE Workload Auto-Monitoring.
Defined Under Namespace
Modules: Scope
Instance Attribute Summary collapse
-
#scope ⇒ ::Google::Cloud::Container::V1::AutoMonitoringConfig::Scope
Scope for GKE Workload Auto-Monitoring.
Instance Attribute Details
#scope ⇒ ::Google::Cloud::Container::V1::AutoMonitoringConfig::Scope
Returns Scope for GKE Workload Auto-Monitoring.
7244 7245 7246 7247 7248 7249 7250 7251 7252 7253 7254 7255 7256 7257 7258 7259 |
# File 'proto_docs/google/container/v1/cluster_service.rb', line 7244 class AutoMonitoringConfig include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Scope for applications monitored by Auto-Monitoring module Scope # Not set. SCOPE_UNSPECIFIED = 0 # Auto-Monitoring is enabled for all supported applications. ALL = 1 # Disable Auto-Monitoring. NONE = 2 end end |