UNPKG

cloudflare

Version:

The official TypeScript library for the Cloudflare API

53 lines (44 loc) 1.41 kB
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. import * as Core from "../../../../core"; import { APIResource } from "../../../../resource"; import * as ItemsAPI from "./items"; import { SinglePage } from "../../../../pagination"; export class Items extends APIResource { /** * Fetches all items in a single Zero Trust list. */ list( listId: string, params: ItemListParams, options?: Core.RequestOptions, ): Core.PagePromise<ItemListResponsesSinglePage, ItemListResponse> { const { account_id } = params; return this._client.getAPIList( `/accounts/${account_id}/gateway/lists/${listId}/items`, ItemListResponsesSinglePage, options, ); } } export class ItemListResponsesSinglePage extends SinglePage<ItemListResponse> {} /** * The items in the list. */ export type ItemListResponse = Array<ItemListResponse.ItemListResponseItem>; export namespace ItemListResponse { export interface ItemListResponseItem { created_at?: string; /** * The value of the item in a list. */ value?: string; } } export interface ItemListParams { account_id: string; } export namespace Items { export import ItemListResponse = ItemsAPI.ItemListResponse; export import ItemListResponsesSinglePage = ItemsAPI.ItemListResponsesSinglePage; export import ItemListParams = ItemsAPI.ItemListParams; }