UNPKG

cloudflare

Version:

The official TypeScript library for the Cloudflare API

54 lines 2.37 kB
"use strict"; // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. Object.defineProperty(exports, "__esModule", { value: true }); exports.FallbackDomainsSinglePage = exports.FallbackDomains = void 0; const resource_1 = require("../../../../../resource.js"); const policies_1 = require("../policies.js"); Object.defineProperty(exports, "FallbackDomainsSinglePage", { enumerable: true, get: function () { return policies_1.FallbackDomainsSinglePage; } }); class FallbackDomains extends resource_1.APIResource { /** * Sets the list of domains to bypass Gateway DNS resolution. These domains will * use the specified local DNS resolver instead. This will only apply to the * specified device settings profile. * * @example * ```ts * // Automatically fetches more pages as needed. * for await (const fallbackDomain of client.zeroTrust.devices.policies.custom.fallbackDomains.update( * 'f174e90a-fafe-4643-bbbc-4a0ed4fc8415', * { * account_id: '699d98642c564d2e855e9661899b7252', * domains: [{ suffix: 'example.com' }], * }, * )) { * // ... * } * ``` */ update(policyId, params, options) { const { account_id, domains } = params; return this._client.getAPIList(`/accounts/${account_id}/devices/policy/${policyId}/fallback_domains`, policies_1.FallbackDomainsSinglePage, { body: domains, method: 'put', ...options }); } /** * Fetches the list of domains to bypass Gateway DNS resolution from a specified * device settings profile. These domains will use the specified local DNS resolver * instead. * * @example * ```ts * // Automatically fetches more pages as needed. * for await (const fallbackDomain of client.zeroTrust.devices.policies.custom.fallbackDomains.get( * 'f174e90a-fafe-4643-bbbc-4a0ed4fc8415', * { account_id: '699d98642c564d2e855e9661899b7252' }, * )) { * // ... * } * ``` */ get(policyId, params, options) { const { account_id } = params; return this._client.getAPIList(`/accounts/${account_id}/devices/policy/${policyId}/fallback_domains`, policies_1.FallbackDomainsSinglePage, options); } } exports.FallbackDomains = FallbackDomains; //# sourceMappingURL=fallback-domains.js.map