UNPKG

cloudflare

Version:

The official TypeScript library for the Cloudflare API

145 lines 4.98 kB
import * as Core from 'cloudflare/core'; import { APIResource } from 'cloudflare/resource'; import * as ListsAPI from 'cloudflare/resources/rules/lists/lists'; import * as BulkOperationsAPI from 'cloudflare/resources/rules/lists/bulk-operations'; import * as ItemsAPI from 'cloudflare/resources/rules/lists/items'; import { SinglePage } from 'cloudflare/pagination'; export declare class Lists extends APIResource { bulkOperations: BulkOperationsAPI.BulkOperations; items: ItemsAPI.Items; /** * Creates a new list of the specified type. */ create(params: ListCreateParams, options?: Core.RequestOptions): Core.APIPromise<ListsList | null>; /** * Updates the description of a list. */ update(listId: string, params: ListUpdateParams, options?: Core.RequestOptions): Core.APIPromise<ListsList | null>; /** * Fetches all lists in the account. */ list(params: ListListParams, options?: Core.RequestOptions): Core.PagePromise<ListsListsSinglePage, ListsList>; /** * Deletes a specific list and all its items. */ delete(listId: string, params: ListDeleteParams, options?: Core.RequestOptions): Core.APIPromise<ListDeleteResponse | null>; /** * Fetches the details of a list. */ get(listId: string, params: ListGetParams, options?: Core.RequestOptions): Core.APIPromise<ListsList | null>; } export declare class ListsListsSinglePage extends SinglePage<ListsList> { } export interface ListsList { /** * The unique ID of the list. */ id?: string; /** * The RFC 3339 timestamp of when the list was created. */ created_on?: string; /** * An informative summary of the list. */ description?: string; /** * The type of the list. Each type supports specific list items (IP addresses, * ASNs, hostnames or redirects). */ kind?: 'ip' | 'redirect' | 'hostname' | 'asn'; /** * The RFC 3339 timestamp of when the list was last modified. */ modified_on?: string; /** * An informative name for the list. Use this name in filter and rule expressions. */ name?: string; /** * The number of items in the list. */ num_items?: number; /** * The number of [filters](/operations/filters-list-filters) referencing the list. */ num_referencing_filters?: number; } export interface ListDeleteResponse { /** * The unique ID of the item in the List. */ id?: string; } export interface ListCreateParams { /** * Path param: Identifier */ account_id: string; /** * Body param: The type of the list. Each type supports specific list items (IP * addresses, ASNs, hostnames or redirects). */ kind: 'ip' | 'redirect' | 'hostname' | 'asn'; /** * Body param: An informative name for the list. Use this name in filter and rule * expressions. */ name: string; /** * Body param: An informative summary of the list. */ description?: string; } export interface ListUpdateParams { /** * Path param: Identifier */ account_id: string; /** * Body param: An informative summary of the list. */ description?: string; } export interface ListListParams { /** * Identifier */ account_id: string; } export interface ListDeleteParams { /** * Identifier */ account_id: string; } export interface ListGetParams { /** * Identifier */ account_id: string; } export declare namespace Lists { export import ListsList = ListsAPI.ListsList; export import ListDeleteResponse = ListsAPI.ListDeleteResponse; export import ListsListsSinglePage = ListsAPI.ListsListsSinglePage; export import ListCreateParams = ListsAPI.ListCreateParams; export import ListUpdateParams = ListsAPI.ListUpdateParams; export import ListListParams = ListsAPI.ListListParams; export import ListDeleteParams = ListsAPI.ListDeleteParams; export import ListGetParams = ListsAPI.ListGetParams; export import BulkOperations = BulkOperationsAPI.BulkOperations; export import BulkOperationGetResponse = BulkOperationsAPI.BulkOperationGetResponse; export import Items = ItemsAPI.Items; export import ItemCreateResponse = ItemsAPI.ItemCreateResponse; export import ItemUpdateResponse = ItemsAPI.ItemUpdateResponse; export import ItemListResponse = ItemsAPI.ItemListResponse; export import ItemDeleteResponse = ItemsAPI.ItemDeleteResponse; export import ItemGetResponse = ItemsAPI.ItemGetResponse; export import ItemListResponsesCursorPagination = ItemsAPI.ItemListResponsesCursorPagination; export import ItemCreateParams = ItemsAPI.ItemCreateParams; export import ItemUpdateParams = ItemsAPI.ItemUpdateParams; export import ItemListParams = ItemsAPI.ItemListParams; export import ItemDeleteParams = ItemsAPI.ItemDeleteParams; } //# sourceMappingURL=lists.d.ts.map