UNPKG

cloudflare

Version:

The official TypeScript library for the Cloudflare API

48 lines 1.93 kB
"use strict"; // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. Object.defineProperty(exports, "__esModule", { value: true }); exports.SplitTunnelExcludesSinglePage = exports.Excludes = void 0; const resource_1 = require("../../../../../resource.js"); const policies_1 = require("../policies.js"); Object.defineProperty(exports, "SplitTunnelExcludesSinglePage", { enumerable: true, get: function () { return policies_1.SplitTunnelExcludesSinglePage; } }); class Excludes extends resource_1.APIResource { /** * Sets the list of routes excluded from the WARP client's tunnel. * * @example * ```ts * // Automatically fetches more pages as needed. * for await (const splitTunnelExclude of client.zeroTrust.devices.policies.default.excludes.update( * { * account_id: '699d98642c564d2e855e9661899b7252', * body: [{ address: '192.0.2.0/24' }], * }, * )) { * // ... * } * ``` */ update(params, options) { const { account_id, body } = params; return this._client.getAPIList(`/accounts/${account_id}/devices/policy/exclude`, policies_1.SplitTunnelExcludesSinglePage, { body: body, method: 'put', ...options }); } /** * Fetches the list of routes excluded from the WARP client's tunnel. * * @example * ```ts * // Automatically fetches more pages as needed. * for await (const splitTunnelExclude of client.zeroTrust.devices.policies.default.excludes.get( * { account_id: '699d98642c564d2e855e9661899b7252' }, * )) { * // ... * } * ``` */ get(params, options) { const { account_id } = params; return this._client.getAPIList(`/accounts/${account_id}/devices/policy/exclude`, policies_1.SplitTunnelExcludesSinglePage, options); } } exports.Excludes = Excludes; //# sourceMappingURL=excludes.js.map