Class: Google::Cloud::Container::V1beta1::AutoMonitoringConfig

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

Overview

AutoMonitoringConfig defines the configuration for GKE Workload Auto-Monitoring.

Defined Under Namespace

Modules: Scope

Instance Attribute Summary collapse

Instance Attribute Details

#scope::Google::Cloud::Container::V1beta1::AutoMonitoringConfig::Scope

Returns Scope for GKE Workload Auto-Monitoring.

Returns:



5450
5451
5452
5453
5454
5455
5456
5457
5458
5459
5460
5461
5462
5463
5464
5465
# File 'proto_docs/google/container/v1beta1/cluster_service.rb', line 5450

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