cloudflare
Version:
The official TypeScript library for the Cloudflare API
106 lines (89 loc) • 2.71 kB
text/typescript
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
import * as Core from "../../../core";
import { APIResource } from "../../../resource";
import * as CategoriesAPI from "./categories";
import { SinglePage } from "../../../pagination";
export class Categories extends APIResource {
/**
* Fetches a list of all categories.
*/
list(
params: CategoryListParams,
options?: Core.RequestOptions,
): Core.PagePromise<CategoriesSinglePage, Category> {
const { account_id } = params;
return this._client.getAPIList(
`/accounts/${account_id}/gateway/categories`,
CategoriesSinglePage,
options,
);
}
}
export class CategoriesSinglePage extends SinglePage<Category> {}
export interface Category {
/**
* The identifier for this category. There is only one category per ID.
*/
id?: number;
/**
* True if the category is in beta and subject to change.
*/
beta?: boolean;
/**
* Which account types are allowed to create policies based on this category.
* `blocked` categories are blocked unconditionally for all accounts.
* `removalPending` categories can be removed from policies but not added.
* `noBlock` categories cannot be blocked.
*/
class?: 'free' | 'premium' | 'blocked' | 'removalPending' | 'noBlock';
/**
* A short summary of domains in the category.
*/
description?: string;
/**
* The name of the category.
*/
name?: string;
/**
* All subcategories for this category.
*/
subcategories?: Array<Category.Subcategory>;
}
export namespace Category {
export interface Subcategory {
/**
* The identifier for this category. There is only one category per ID.
*/
id?: number;
/**
* True if the category is in beta and subject to change.
*/
beta?: boolean;
/**
* Which account types are allowed to create policies based on this category.
* `blocked` categories are blocked unconditionally for all accounts.
* `removalPending` categories can be removed from policies but not added.
* `noBlock` categories cannot be blocked.
*/
class?: 'free' | 'premium' | 'blocked' | 'removalPending' | 'noBlock';
/**
* A short summary of domains in the category.
*/
description?: string;
/**
* The name of the category.
*/
name?: string;
}
}
export interface CategoryListParams {
/**
* Identifier
*/
account_id: string;
}
export namespace Categories {
export import Category = CategoriesAPI.Category;
export import CategoriesSinglePage = CategoriesAPI.CategoriesSinglePage;
export import CategoryListParams = CategoriesAPI.CategoryListParams;
}