interface GetBillingResponse {
    currentPlan?: EdgeServices.v1alpha1.PlanDetails;
    currentPlanCacheUsage: number;
    currentPlanWafUsage: number;
    extraCacheCost?: Money;
    extraCacheUsage: number;
    extraPipelinesCost?: Money;
    extraWafCost?: Money;
    extraWafUsage: number;
    pipelineNumber: number;
    planCost?: Money;
    plansUsageDetails: Record<string, EdgeServices.v1alpha1.PlanUsageDetails>;
    totalCost?: Money;
    wafAddOn?: Money;
}

Properties

Information on the currently-selected, active Edge Services subscription plan.

currentPlanCacheUsage: number

Total amount of data egressed from the cache in gigabytes from the beginning of the month, for the active subscription plan.

currentPlanWafUsage: number

Total number of requests processed by the WAF since the beginning of the current month, for the active subscription plan.

extraCacheCost?: Money

Cost to date (this month) of the data egressed from the cache that is not included in the subscription plans.

extraCacheUsage: number

Total amount of extra data egressed from cache in gigabytes from the beginning of the month, not included in the subscription plans.

extraPipelinesCost?: Money

Cost to date (this month) of pipelines not included in the subscription plans.

extraWafCost?: Money

Cost to date (this month) of the extra requests processed by the WAF that were not included in the subscription plans.

extraWafUsage: number

Total number of extra requests processed by the WAF from the beginning of the month, not included in the subscription plans.

pipelineNumber: number

Total number of pipelines currently configured.

planCost?: Money

Cost to date (this month) for Edge Service subscription plans. This comprises the pro-rata cost of the current subscription plan, and any previous subscription plans that were active earlier in the month.

plansUsageDetails: Record<string, EdgeServices.v1alpha1.PlanUsageDetails>

Detailed costs and usage for all Edge Services subscription plans that were activated during the month.

totalCost?: Money

Total cost to date (this month) of all Edge Services resources including active subscription plan, previously active plans, extra pipelines and extra egress cache data.

wafAddOn?: Money

Cost of activating WAF add-on (where subscription plan does not include WAF).