cloudflare
Version:
The official TypeScript library for the Cloudflare API
339 lines • 10.2 kB
TypeScript
import * as Core from 'cloudflare/core';
import { APIResource } from 'cloudflare/resource';
import * as SubscriptionsAPI from 'cloudflare/resources/subscriptions';
import { SinglePage } from 'cloudflare/pagination';
export declare class Subscriptions extends APIResource {
/**
* Create a zone subscription, either plan or add-ons.
*/
create(identifier: string, body: SubscriptionCreateParams, options?: Core.RequestOptions): Core.APIPromise<SubscriptionCreateResponse>;
/**
* Updates an account subscription.
*/
update(accountIdentifier: string, subscriptionIdentifier: string, body: SubscriptionUpdateParams, options?: Core.RequestOptions): Core.APIPromise<SubscriptionUpdateResponse>;
/**
* Lists all of an account's subscriptions.
*/
list(accountIdentifier: string, options?: Core.RequestOptions): Core.PagePromise<SubscriptionListResponsesSinglePage, SubscriptionListResponse>;
/**
* Deletes an account's subscription.
*/
delete(accountIdentifier: string, subscriptionIdentifier: string, options?: Core.RequestOptions): Core.APIPromise<SubscriptionDeleteResponse>;
/**
* Lists zone subscription details.
*/
get(identifier: string, options?: Core.RequestOptions): Core.APIPromise<SubscriptionGetResponse>;
}
export declare class SubscriptionListResponsesSinglePage extends SinglePage<SubscriptionListResponse> {
}
export type SubscriptionCreateResponse = unknown | string | null;
export type SubscriptionUpdateResponse = unknown | string | null;
export interface SubscriptionListResponse {
/**
* Subscription identifier tag.
*/
id?: string;
app?: SubscriptionListResponse.App;
/**
* The list of add-ons subscribed to.
*/
component_values?: Array<SubscriptionListResponse.ComponentValue>;
/**
* The monetary unit in which pricing information is displayed.
*/
currency?: string;
/**
* The end of the current period and also when the next billing is due.
*/
current_period_end?: string;
/**
* When the current billing period started. May match initial_period_start if this
* is the first period.
*/
current_period_start?: string;
/**
* How often the subscription is renewed automatically.
*/
frequency?: 'weekly' | 'monthly' | 'quarterly' | 'yearly';
/**
* The price of the subscription that will be billed, in US dollars.
*/
price?: number;
/**
* The rate plan applied to the subscription.
*/
rate_plan?: SubscriptionListResponse.RatePlan;
/**
* The state that the subscription is in.
*/
state?: 'Trial' | 'Provisioned' | 'Paid' | 'AwaitingPayment' | 'Cancelled' | 'Failed' | 'Expired';
/**
* A simple zone object. May have null properties if not a zone subscription.
*/
zone?: SubscriptionListResponse.Zone;
}
export declare namespace SubscriptionListResponse {
interface App {
/**
* app install id.
*/
install_id?: string;
}
/**
* A component value for a subscription.
*/
interface ComponentValue {
/**
* The default amount assigned.
*/
default?: number;
/**
* The name of the component value.
*/
name?: string;
/**
* The unit price for the component value.
*/
price?: number;
/**
* The amount of the component value assigned.
*/
value?: number;
}
/**
* The rate plan applied to the subscription.
*/
interface RatePlan {
/**
* The ID of the rate plan.
*/
id?: string;
/**
* The currency applied to the rate plan subscription.
*/
currency?: string;
/**
* Whether this rate plan is managed externally from Cloudflare.
*/
externally_managed?: boolean;
/**
* Whether a rate plan is enterprise-based (or newly adopted term contract).
*/
is_contract?: boolean;
/**
* The full name of the rate plan.
*/
public_name?: string;
/**
* The scope that this rate plan applies to.
*/
scope?: string;
/**
* The list of sets this rate plan applies to.
*/
sets?: Array<string>;
}
/**
* A simple zone object. May have null properties if not a zone subscription.
*/
interface Zone {
/**
* Identifier
*/
id?: string;
/**
* The domain name
*/
name?: string;
}
}
export interface SubscriptionDeleteResponse {
/**
* Subscription identifier tag.
*/
subscription_id?: string;
}
export type SubscriptionGetResponse = unknown | string | null;
export interface SubscriptionCreateParams {
app?: SubscriptionCreateParams.App;
/**
* The list of add-ons subscribed to.
*/
component_values?: Array<SubscriptionCreateParams.ComponentValue>;
/**
* How often the subscription is renewed automatically.
*/
frequency?: 'weekly' | 'monthly' | 'quarterly' | 'yearly';
/**
* The rate plan applied to the subscription.
*/
rate_plan?: SubscriptionCreateParams.RatePlan;
/**
* A simple zone object. May have null properties if not a zone subscription.
*/
zone?: SubscriptionCreateParams.Zone;
}
export declare namespace SubscriptionCreateParams {
interface App {
/**
* app install id.
*/
install_id?: string;
}
/**
* A component value for a subscription.
*/
interface ComponentValue {
/**
* The default amount assigned.
*/
default?: number;
/**
* The name of the component value.
*/
name?: string;
/**
* The unit price for the component value.
*/
price?: number;
/**
* The amount of the component value assigned.
*/
value?: number;
}
/**
* The rate plan applied to the subscription.
*/
interface RatePlan {
/**
* The ID of the rate plan.
*/
id?: string;
/**
* The currency applied to the rate plan subscription.
*/
currency?: string;
/**
* Whether this rate plan is managed externally from Cloudflare.
*/
externally_managed?: boolean;
/**
* Whether a rate plan is enterprise-based (or newly adopted term contract).
*/
is_contract?: boolean;
/**
* The full name of the rate plan.
*/
public_name?: string;
/**
* The scope that this rate plan applies to.
*/
scope?: string;
/**
* The list of sets this rate plan applies to.
*/
sets?: Array<string>;
}
/**
* A simple zone object. May have null properties if not a zone subscription.
*/
interface Zone {
}
}
export interface SubscriptionUpdateParams {
app?: SubscriptionUpdateParams.App;
/**
* The list of add-ons subscribed to.
*/
component_values?: Array<SubscriptionUpdateParams.ComponentValue>;
/**
* How often the subscription is renewed automatically.
*/
frequency?: 'weekly' | 'monthly' | 'quarterly' | 'yearly';
/**
* The rate plan applied to the subscription.
*/
rate_plan?: SubscriptionUpdateParams.RatePlan;
/**
* A simple zone object. May have null properties if not a zone subscription.
*/
zone?: SubscriptionUpdateParams.Zone;
}
export declare namespace SubscriptionUpdateParams {
interface App {
/**
* app install id.
*/
install_id?: string;
}
/**
* A component value for a subscription.
*/
interface ComponentValue {
/**
* The default amount assigned.
*/
default?: number;
/**
* The name of the component value.
*/
name?: string;
/**
* The unit price for the component value.
*/
price?: number;
/**
* The amount of the component value assigned.
*/
value?: number;
}
/**
* The rate plan applied to the subscription.
*/
interface RatePlan {
/**
* The ID of the rate plan.
*/
id?: string;
/**
* The currency applied to the rate plan subscription.
*/
currency?: string;
/**
* Whether this rate plan is managed externally from Cloudflare.
*/
externally_managed?: boolean;
/**
* Whether a rate plan is enterprise-based (or newly adopted term contract).
*/
is_contract?: boolean;
/**
* The full name of the rate plan.
*/
public_name?: string;
/**
* The scope that this rate plan applies to.
*/
scope?: string;
/**
* The list of sets this rate plan applies to.
*/
sets?: Array<string>;
}
/**
* A simple zone object. May have null properties if not a zone subscription.
*/
interface Zone {
}
}
export declare namespace Subscriptions {
export import SubscriptionCreateResponse = SubscriptionsAPI.SubscriptionCreateResponse;
export import SubscriptionUpdateResponse = SubscriptionsAPI.SubscriptionUpdateResponse;
export import SubscriptionListResponse = SubscriptionsAPI.SubscriptionListResponse;
export import SubscriptionDeleteResponse = SubscriptionsAPI.SubscriptionDeleteResponse;
export import SubscriptionGetResponse = SubscriptionsAPI.SubscriptionGetResponse;
export import SubscriptionListResponsesSinglePage = SubscriptionsAPI.SubscriptionListResponsesSinglePage;
export import SubscriptionCreateParams = SubscriptionsAPI.SubscriptionCreateParams;
export import SubscriptionUpdateParams = SubscriptionsAPI.SubscriptionUpdateParams;
}
//# sourceMappingURL=subscriptions.d.ts.map