import { APIResource } from "../../../../../resource.js"; import * as Core from "../../../../../core.js"; import * as PoliciesAPI from "../policies.js"; import { FallbackDomainsSinglePage } from "../policies.js"; export declare class FallbackDomains extends APIResource { /** * Sets the list of domains to bypass Gateway DNS resolution. 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.default.fallbackDomains.update( * { * account_id: '699d98642c564d2e855e9661899b7252', * domains: [{ suffix: 'example.com' }], * }, * )) { * // ... * } * ``` */ update(params: FallbackDomainUpdateParams, options?: Core.RequestOptions): Core.PagePromise; /** * Fetches a list of domains to bypass Gateway DNS resolution. 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.default.fallbackDomains.get( * { account_id: '699d98642c564d2e855e9661899b7252' }, * )) { * // ... * } * ``` */ get(params: FallbackDomainGetParams, options?: Core.RequestOptions): Core.PagePromise; } export interface FallbackDomainUpdateParams { /** * Path param: */ account_id: string; /** * Body param: */ domains: Array; } export interface FallbackDomainGetParams { account_id: string; } export declare namespace FallbackDomains { export { type FallbackDomainUpdateParams as FallbackDomainUpdateParams, type FallbackDomainGetParams as FallbackDomainGetParams, }; } export { FallbackDomainsSinglePage }; //# sourceMappingURL=fallback-domains.d.ts.map