consumptionPricingRates property
API call volume ranges and the fees charged when the total number of API calls is within a given range.
The method used to calculate the final fee depends on the selected pricing
model. For example, if the pricing model is STAIRSTEP
and the ranges are
defined as follows: { "start": 1, "end": 100, "fee": 75 }, { "start": 101, "end": 200, "fee": 100 }, }
Then the following fees would be
charged based on the total number of API calls (assuming the currency
selected is USD
): * 1 call costs $75 * 50 calls cost $75 * 150 calls
cost $100 The number of API calls cannot exceed 200.
Implementation
core.List<GoogleCloudApigeeV1RateRange>? consumptionPricingRates;