Class: Google::Apis::ServicemanagementV1::Billing
- Inherits:
-
Object
- Object
- Google::Apis::ServicemanagementV1::Billing
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/servicemanagement_v1/classes.rb,
generated/google/apis/servicemanagement_v1/representations.rb,
generated/google/apis/servicemanagement_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::ServicemanagementV1::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
582 583 584 |
# File 'generated/google/apis/servicemanagement_v1/classes.rb', line 582 def initialize(**args) update!(**args) end |
Instance Attribute Details
#consumer_destinations ⇒ Array<Google::Apis::ServicemanagementV1::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
580 581 582 |
# File 'generated/google/apis/servicemanagement_v1/classes.rb', line 580 def consumer_destinations @consumer_destinations end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
587 588 589 |
# File 'generated/google/apis/servicemanagement_v1/classes.rb', line 587 def update!(**args) @consumer_destinations = args[:consumer_destinations] if args.key?(:consumer_destinations) end |