abacus-account-stub
Version:
Stub for an account management service.
53 lines (48 loc) • 983 B
JavaScript
;
// A sample container service metered by memory consumption over time
/* istanbul ignore file */
module.exports = {
resource_id: 'linux-container',
effective: 1420070400000,
plans: [
{
plan_id: 'basic',
metrics: [
{
name: 'memory',
prices: [
{
country: 'USA',
price: 0.00014
},
{
country: 'EUR',
price: 0.00010
},
{
country: 'CAN',
price: 0.00015
}]
}]
},
{
plan_id: 'standard',
metrics: [
{
name: 'memory',
prices: [
{
country: 'USA',
price: 0.00028
},
{
country: 'EUR',
price: 0.00021
},
{
country: 'CAN',
price: 0.00029
}]
}]
}]
};