Class: Google::Apis::ServiceusageV1beta1::Billing
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::ServiceusageV1beta1::Billing
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/serviceusage_v1beta1/classes.rb,
 generated/google/apis/serviceusage_v1beta1/representations.rb,
 generated/google/apis/serviceusage_v1beta1/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::ServiceusageV1beta1::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
| 538 539 540 | # File 'generated/google/apis/serviceusage_v1beta1/classes.rb', line 538 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#consumer_destinations ⇒ Array<Google::Apis::ServiceusageV1beta1::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
| 536 537 538 | # File 'generated/google/apis/serviceusage_v1beta1/classes.rb', line 536 def consumer_destinations @consumer_destinations end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 543 544 545 | # File 'generated/google/apis/serviceusage_v1beta1/classes.rb', line 543 def update!(**args) @consumer_destinations = args[:consumer_destinations] if args.key?(:consumer_destinations) end |