Class: Google::Apis::CloudbillingV1::TierRate
- Inherits:
-
Object
- Object
- Google::Apis::CloudbillingV1::TierRate
- 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
-
#start_usage_amount ⇒ Float
Usage is priced at this rate only after this amount.
-
#unit_price ⇒ Google::Apis::CloudbillingV1::Money
Represents an amount of money with its currency type.
Instance Method Summary collapse
-
#initialize(**args) ⇒ TierRate
constructor
A new instance of TierRate.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ TierRate
Returns a new instance of TierRate
918 919 920 |
# File 'generated/google/apis/cloudbilling_v1/classes.rb', line 918 def initialize(**args) update!(**args) end |
Instance Attribute Details
#start_usage_amount ⇒ Float
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
911 912 913 |
# File 'generated/google/apis/cloudbilling_v1/classes.rb', line 911 def start_usage_amount @start_usage_amount end |
#unit_price ⇒ Google::Apis::CloudbillingV1::Money
Represents an amount of money with its currency type.
Corresponds to the JSON property unitPrice
916 917 918 |
# File 'generated/google/apis/cloudbilling_v1/classes.rb', line 916 def unit_price @unit_price end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
923 924 925 926 |
# File 'generated/google/apis/cloudbilling_v1/classes.rb', line 923 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 |