Class: Google::Apis::ServiceusageV1::Billing

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ Billing

Returns a new instance of Billing.



567
568
569
# File 'generated/google/apis/serviceusage_v1/classes.rb', line 567

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#consumer_destinationsArray<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



565
566
567
# File 'generated/google/apis/serviceusage_v1/classes.rb', line 565

def consumer_destinations
  @consumer_destinations
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



572
573
574
# File 'generated/google/apis/serviceusage_v1/classes.rb', line 572

def update!(**args)
  @consumer_destinations = args[:consumer_destinations] if args.key?(:consumer_destinations)
end