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

Constructor Details

#initialize(**args) ⇒ TierRate

Returns a new instance of TierRate.



990
991
992
# File 'generated/google/apis/cloudbilling_v1/classes.rb', line 990

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)


983
984
985
# File 'generated/google/apis/cloudbilling_v1/classes.rb', line 983

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



988
989
990
# File 'generated/google/apis/cloudbilling_v1/classes.rb', line 988

def unit_price
  @unit_price
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



995
996
997
998
# File 'generated/google/apis/cloudbilling_v1/classes.rb', line 995

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