Class: Google::Apis::CloudbillingV1::TierRate

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
generated/google/apis/cloudbilling_v1/classes.rb,
generated/google/apis/cloudbilling_v1/representations.rb,
generated/google/apis/cloudbilling_v1/representations.rb

Overview

The price rate indicating starting usage and its corresponding price.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Google::Apis::Core::JsonObjectSupport

#to_json

Methods included from Google::Apis::Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ TierRate

Returns a new instance of TierRate.



1107
1108
1109
# File 'generated/google/apis/cloudbilling_v1/classes.rb', line 1107

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

Instance Attribute Details

#start_usage_amountFloat

Usage is priced at this rate only after this amount. Example: start_usage_amount of 10 indicates that the usage will be priced at the unit_price after the first 10 usage_units. Corresponds to the JSON property startUsageAmount

Returns:

  • (Float)


1100
1101
1102
# File 'generated/google/apis/cloudbilling_v1/classes.rb', line 1100

def start_usage_amount
  @start_usage_amount
end

#unit_priceGoogle::Apis::CloudbillingV1::Money

Represents an amount of money with its currency type. Corresponds to the JSON property unitPrice



1105
1106
1107
# File 'generated/google/apis/cloudbilling_v1/classes.rb', line 1105

def unit_price
  @unit_price
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1112
1113
1114
1115
# File 'generated/google/apis/cloudbilling_v1/classes.rb', line 1112

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