Class: Google::Apis::GkehubV1::PolicyControllerMonitoringConfig
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::GkehubV1::PolicyControllerMonitoringConfig
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - lib/google/apis/gkehub_v1/classes.rb,
lib/google/apis/gkehub_v1/representations.rb,
lib/google/apis/gkehub_v1/representations.rb 
Overview
MonitoringConfig specifies the backends Policy Controller should export metrics to. For example, to specify metrics should be exported to Cloud Monitoring and Prometheus, specify backends: ["cloudmonitoring", "prometheus"]
Instance Attribute Summary collapse
- 
  
    
      #backends  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Specifies the list of backends Policy Controller will export to.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ PolicyControllerMonitoringConfig 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of PolicyControllerMonitoringConfig.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ PolicyControllerMonitoringConfig
Returns a new instance of PolicyControllerMonitoringConfig.
      4784 4785 4786  | 
    
      # File 'lib/google/apis/gkehub_v1/classes.rb', line 4784 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#backends ⇒ Array<String>
Specifies the list of backends Policy Controller will export to. An empty list
would effectively disable metrics export.
Corresponds to the JSON property backends
      4782 4783 4784  | 
    
      # File 'lib/google/apis/gkehub_v1/classes.rb', line 4782 def backends @backends end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      4789 4790 4791  | 
    
      # File 'lib/google/apis/gkehub_v1/classes.rb', line 4789 def update!(**args) @backends = args[:backends] if args.key?(:backends) end  |