UNPKG

cloudflare

Version:

The official TypeScript library for the Cloudflare API

37 lines 1.88 kB
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. import { APIResource } from 'cloudflare/resource'; import * as PrefixesAPI from 'cloudflare/resources/addressing/prefixes/bgp/prefixes'; import { SinglePage } from 'cloudflare/pagination'; export class Prefixes extends APIResource { /** * List all BGP Prefixes within the specified IP Prefix. BGP Prefixes are used to * control which specific subnets are advertised to the Internet. It is possible to * advertise subnets more specific than an IP Prefix by creating more specific BGP * Prefixes. */ list(prefixId, params, options) { const { account_id } = params; return this._client.getAPIList(`/accounts/${account_id}/addressing/prefixes/${prefixId}/bgp/prefixes`, AddressingIpamBGPPrefixesSinglePage, options); } /** * Update the properties of a BGP Prefix, such as the on demand advertisement * status (advertised or withdrawn). */ edit(prefixId, bgpPrefixId, params, options) { const { account_id, ...body } = params; return this._client.patch(`/accounts/${account_id}/addressing/prefixes/${prefixId}/bgp/prefixes/${bgpPrefixId}`, { body, ...options })._thenUnwrap((obj) => obj.result); } /** * Retrieve a single BGP Prefix according to its identifier */ get(prefixId, bgpPrefixId, params, options) { const { account_id } = params; return this._client.get(`/accounts/${account_id}/addressing/prefixes/${prefixId}/bgp/prefixes/${bgpPrefixId}`, options)._thenUnwrap((obj) => obj.result); } } export class AddressingIpamBGPPrefixesSinglePage extends SinglePage { } (function (Prefixes) { Prefixes.AddressingIpamBGPPrefixesSinglePage = PrefixesAPI.AddressingIpamBGPPrefixesSinglePage; })(Prefixes || (Prefixes = {})); //# sourceMappingURL=prefixes.mjs.map