import { APIResource } from "../../../core/resource.js"; import { APIPromise } from "../../../core/api-promise.js"; import { RequestOptions } from "../../../internal/request-options.js"; export declare class BaseAdvertisementStatus extends APIResource { static readonly _key: readonly ['addressing', 'prefixes', 'advertisementStatus']; /** * Advertise or withdraw the BGP route for a prefix. * * **Deprecated:** Prefer the BGP Prefixes endpoints, which additionally allow for * advertising and withdrawing subnets of an IP prefix. * * @deprecated */ edit(prefixID: string, params: AdvertisementStatusEditParams, options?: RequestOptions): APIPromise; /** * View the current advertisement state for a prefix. * * **Deprecated:** Prefer the BGP Prefixes endpoints, which additionally allow for * advertising and withdrawing subnets of an IP prefix. * * @deprecated */ get(prefixID: string, params: AdvertisementStatusGetParams, options?: RequestOptions): APIPromise; } export declare class AdvertisementStatus extends BaseAdvertisementStatus { } export interface AdvertisementStatusEditResponse { /** * Advertisement status of the prefix. If `true`, the BGP route for the prefix is * advertised to the Internet. If `false`, the BGP route is withdrawn. */ advertised?: boolean; /** * Last time the advertisement status was changed. This field is only not 'null' if * on demand is enabled. */ advertised_modified_at?: string | null; } export interface AdvertisementStatusGetResponse { /** * Advertisement status of the prefix. If `true`, the BGP route for the prefix is * advertised to the Internet. If `false`, the BGP route is withdrawn. */ advertised?: boolean; /** * Last time the advertisement status was changed. This field is only not 'null' if * on demand is enabled. */ advertised_modified_at?: string | null; } export interface AdvertisementStatusEditParams { /** * Path param: Identifier of a Cloudflare account. */ account_id: string; /** * Body param: Advertisement status of the prefix. If `true`, the BGP route for the * prefix is advertised to the Internet. If `false`, the BGP route is withdrawn. */ advertised: boolean; } export interface AdvertisementStatusGetParams { /** * Identifier of a Cloudflare account. */ account_id: string; } export declare namespace AdvertisementStatus { export { type AdvertisementStatusEditResponse as AdvertisementStatusEditResponse, type AdvertisementStatusGetResponse as AdvertisementStatusGetResponse, type AdvertisementStatusEditParams as AdvertisementStatusEditParams, type AdvertisementStatusGetParams as AdvertisementStatusGetParams, }; } //# sourceMappingURL=advertisement-status.d.ts.map