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



992
993
994
# File 'generated/google/apis/cloudbilling_v1/classes.rb', line 992

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)


985
986
987
# File 'generated/google/apis/cloudbilling_v1/classes.rb', line 985

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



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

def unit_price
  @unit_price
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



997
998
999
1000
# File 'generated/google/apis/cloudbilling_v1/classes.rb', line 997

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