import { APIResource } from "../../../resource.js"; import * as Core from "../../../core.js"; import { SinglePage } from "../../../pagination.js"; export declare class Categories extends APIResource { /** * List application categories. * * @example * ```ts * // Automatically fetches more pages as needed. * for await (const categoryListResponse of client.zeroTrust.resourceLibrary.categories.list( * { account_id: '023e105f4ecef8ad9ca31a8372d0c353' }, * )) { * // ... * } * ``` */ list(params: CategoryListParams, options?: Core.RequestOptions): Core.PagePromise; /** * Get application category by ID. * * @example * ```ts * const category = * await client.zeroTrust.resourceLibrary.categories.get( * '0b63249c-95bf-4cc0-a7cc-d7faaaf1dac0', * { account_id: '023e105f4ecef8ad9ca31a8372d0c353' }, * ); * ``` */ get(id: string, params: CategoryGetParams, options?: Core.RequestOptions): Core.APIPromise; } export declare class CategoryListResponsesSinglePage extends SinglePage { } export interface CategoryListResponse { /** * Returns the category ID. */ id: string; /** * Returns the category creation time. */ created_at: string; /** * Returns the category description. */ description: string; /** * Returns the category name. */ name: string; } export interface CategoryGetResponse { /** * Returns the category ID. */ id: string; /** * Returns the category creation time. */ created_at: string; /** * Returns the category description. */ description: string; /** * Returns the category name. */ name: string; } export interface CategoryListParams { /** * Path param: Account ID. */ account_id: string; /** * Query param: Limit of number of results to return. */ limit?: number; /** * Query param: Offset of results to return. */ offset?: number; } export interface CategoryGetParams { /** * Account ID. */ account_id: string; } export declare namespace Categories { export { type CategoryListResponse as CategoryListResponse, type CategoryGetResponse as CategoryGetResponse, CategoryListResponsesSinglePage as CategoryListResponsesSinglePage, type CategoryListParams as CategoryListParams, type CategoryGetParams as CategoryGetParams, }; } //# sourceMappingURL=categories.d.ts.map