// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. import { APIResource } from '../../../../../core/resource'; import * as PoliciesAPI from '../policies'; import { SplitTunnelIncludesSinglePage } from '../policies'; import { PagePromise, SinglePage } from '../../../../../core/pagination'; import { RequestOptions } from '../../../../../internal/request-options'; import { path } from '../../../../../internal/utils/path'; export class BaseIncludes extends APIResource { static override readonly _key: readonly ['zeroTrust', 'devices', 'policies', 'default', 'includes'] = Object.freeze(['zeroTrust', 'devices', 'policies', 'default', 'includes'] as const); /** * Sets the list of routes included in the WARP client's tunnel. * * @example * ```ts * // Automatically fetches more pages as needed. * for await (const splitTunnelInclude of client.zeroTrust.devices.policies.default.includes.update( * { * account_id: '699d98642c564d2e855e9661899b7252', * body: [{ address: '192.0.2.0/24' }], * }, * )) { * // ... * } * ``` */ update( params: IncludeUpdateParams, options?: RequestOptions, ): PagePromise { const { account_id, body } = params; return this._client.getAPIList( path`/accounts/${account_id}/devices/policy/include`, SinglePage, { body: body, method: 'put', ...options }, ); } /** * Fetches the list of routes included in the WARP client's tunnel. * * @example * ```ts * // Automatically fetches more pages as needed. * for await (const splitTunnelInclude of client.zeroTrust.devices.policies.default.includes.get( * { account_id: '699d98642c564d2e855e9661899b7252' }, * )) { * // ... * } * ``` */ get( params: IncludeGetParams, options?: RequestOptions, ): PagePromise { const { account_id } = params; return this._client.getAPIList( path`/accounts/${account_id}/devices/policy/include`, SinglePage, options, ); } } export class Includes extends BaseIncludes {} export interface IncludeUpdateParams { /** * Path param */ account_id: string; /** * Body param */ body: Array; } export interface IncludeGetParams { account_id: string; } export declare namespace Includes { export { type IncludeUpdateParams as IncludeUpdateParams, type IncludeGetParams as IncludeGetParams }; } export { type SplitTunnelIncludesSinglePage };