type Cloudflare = {
token: string;
email: string;
key: string;
};
/**
* List BGP Prefixes
* 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.
*/
export async function main(
auth: Cloudflare,
account_identifier: string,
prefix_identifier: string
) {
const url = new URL(
`https://api.cloudflare.com/client/v4/accounts/${account_identifier}/addressing/prefixes/${prefix_identifier}/bgp/prefixes`
);
const response = await fetch(url, {
method: "GET",
headers: {
"X-AUTH-EMAIL": auth.email,
"X-AUTH-KEY": auth.key,
Authorization: "Bearer " + auth.token,
},
body: undefined,
});
if (!response.ok) {
const text = await response.text();
throw new Error(`${response.status} ${text}`);
}
return await response.json();
}
Submitted by hugo697 383 days ago
type Cloudflare = {
token: string;
email: string;
key: string;
};
/**
* List BGP Prefixes
* 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.
*/
export async function main(
auth: Cloudflare,
account_identifier: string,
prefix_identifier: string
) {
const url = new URL(
`https://api.cloudflare.com/client/v4/accounts/${account_identifier}/addressing/prefixes/${prefix_identifier}/bgp/prefixes`
);
const response = await fetch(url, {
method: "GET",
headers: {
"X-AUTH-EMAIL": auth.email,
"X-AUTH-KEY": auth.key,
Authorization: "Bearer " + auth.token,
},
body: undefined,
});
if (!response.ok) {
const text = await response.text();
throw new Error(`${response.status} ${text}`);
}
return await response.json();
}
Submitted by hugo697 920 days ago