interface HostingServiceEstimate {
    billing_provider: HostingBillingProvider;
    estimated_monthly_floor_cents: number;
    estimated_monthly_floor_dollars: number;
    note: string;
    rates: {
        memory_gib_hour_cents: number;
        persistent_storage_gib_month_cents: number;
        requests_million_cents: number;
        vcpu_hour_cents: number;
    };
    services: Record<string, unknown>[];
}

Properties

billing_provider: HostingBillingProvider
estimated_monthly_floor_cents: number
estimated_monthly_floor_dollars: number
note: string
rates: {
    memory_gib_hour_cents: number;
    persistent_storage_gib_month_cents: number;
    requests_million_cents: number;
    vcpu_hour_cents: number;
}

Type declaration

  • memory_gib_hour_cents: number
  • persistent_storage_gib_month_cents: number
  • requests_million_cents: number
  • vcpu_hour_cents: number
services: Record<string, unknown>[]

Generated using TypeDoc