Class: Google::Apis::ServiceconsumermanagementV1::LoggingDestination
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::ServiceconsumermanagementV1::LoggingDestination
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/serviceconsumermanagement_v1/classes.rb,
 generated/google/apis/serviceconsumermanagement_v1/representations.rb,
 generated/google/apis/serviceconsumermanagement_v1/representations.rb
Overview
Configuration of a specific logging destination (the producer project or the consumer project).
Instance Attribute Summary collapse
- 
  
    
      #logs  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Names of the logs to be sent to this destination. 
- 
  
    
      #monitored_resource  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The monitored resource type. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ LoggingDestination 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of LoggingDestination. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ LoggingDestination
Returns a new instance of LoggingDestination
| 1798 1799 1800 | # File 'generated/google/apis/serviceconsumermanagement_v1/classes.rb', line 1798 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#logs ⇒ Array<String>
Names of the logs to be sent to this destination. Each name must
be defined in the Service.logs section. If the log name is
not a domain scoped name, it will be automatically prefixed with
the service name followed by "/".
Corresponds to the JSON property logs
| 1790 1791 1792 | # File 'generated/google/apis/serviceconsumermanagement_v1/classes.rb', line 1790 def logs @logs end | 
#monitored_resource ⇒ String
The monitored resource type. The type must be defined in the
Service.monitored_resources section.
Corresponds to the JSON property monitoredResource
| 1796 1797 1798 | # File 'generated/google/apis/serviceconsumermanagement_v1/classes.rb', line 1796 def monitored_resource @monitored_resource end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 1803 1804 1805 1806 | # File 'generated/google/apis/serviceconsumermanagement_v1/classes.rb', line 1803 def update!(**args) @logs = args[:logs] if args.key?(:logs) @monitored_resource = args[:monitored_resource] if args.key?(:monitored_resource) end |