import { APIResource } from "../../../core/resource.mjs"; import { APIPromise } from "../../../core/api-promise.mjs"; import { PagePromise, SinglePage } from "../../../core/pagination.mjs"; import { RequestOptions } from "../../../internal/request-options.mjs"; export declare class BaseCategories extends APIResource { static readonly _key: readonly ['zeroTrust', 'resourceLibrary', 'categories']; /** * 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?: RequestOptions): 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?: RequestOptions): APIPromise; } export declare class Categories extends BaseCategories { } export type CategoryListResponsesSinglePage = 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, type CategoryListResponsesSinglePage as CategoryListResponsesSinglePage, type CategoryListParams as CategoryListParams, type CategoryGetParams as CategoryGetParams, }; } //# sourceMappingURL=categories.d.mts.map