"use strict"; // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. Object.defineProperty(exports, "__esModule", { value: true }); exports.Regions = void 0; const resource_1 = require("../../resource.js"); class Regions extends resource_1.APIResource { /** * List all region mappings. * * @example * ```ts * const regions = await client.loadBalancers.regions.list({ * account_id: '023e105f4ecef8ad9ca31a8372d0c353', * }); * ``` */ list(params, options) { const { account_id, ...query } = params; return this._client.get(`/accounts/${account_id}/load_balancers/regions`, { query, ...options, })._thenUnwrap((obj) => obj.result); } /** * Get a single region mapping. * * @example * ```ts * const region = await client.loadBalancers.regions.get( * 'WNAM', * { account_id: '023e105f4ecef8ad9ca31a8372d0c353' }, * ); * ``` */ get(regionId, params, options) { const { account_id } = params; return this._client.get(`/accounts/${account_id}/load_balancers/regions/${regionId}`, options)._thenUnwrap((obj) => obj.result); } } exports.Regions = Regions; //# sourceMappingURL=regions.js.map