Class: Google::Apis::ServiceusageV1::Billing
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::ServiceusageV1::Billing
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - generated/google/apis/serviceusage_v1/classes.rb,
generated/google/apis/serviceusage_v1/representations.rb,
generated/google/apis/serviceusage_v1/representations.rb 
Overview
Billing related configuration of the service. The following example shows how to configure monitored resources and metrics for billing: monitored_resources:
- type: library.googleapis.com/branch labels:
 - key: /city description: The city where the library branch is located in.
 - key: /name description: The name of the branch. metrics:
 - name: library.googleapis.com/book/borrowed_count metric_kind: DELTA value_type: INT64 billing: consumer_destinations:
 - monitored_resource: library.googleapis.com/branch metrics:
 - library.googleapis.com/book/borrowed_count
 
Instance Attribute Summary collapse
- 
  
    
      #consumer_destinations  ⇒ Array<Google::Apis::ServiceusageV1::BillingDestination> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Billing configurations for sending metrics to the consumer project.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ Billing 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of Billing.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Billing
Returns a new instance of Billing
      489 490 491  | 
    
      # File 'generated/google/apis/serviceusage_v1/classes.rb', line 489 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#consumer_destinations ⇒ Array<Google::Apis::ServiceusageV1::BillingDestination>
Billing configurations for sending metrics to the consumer project.
There can be multiple consumer destinations per service, each one must have
a different monitored resource type. A metric can be used in at most
one consumer destination.
Corresponds to the JSON property consumerDestinations
      487 488 489  | 
    
      # File 'generated/google/apis/serviceusage_v1/classes.rb', line 487 def consumer_destinations @consumer_destinations end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      494 495 496  | 
    
      # File 'generated/google/apis/serviceusage_v1/classes.rb', line 494 def update!(**args) @consumer_destinations = args[:consumer_destinations] if args.key?(:consumer_destinations) end  |