//native
type Neondb = {
apiKey: string
}
/**
* Get current active regions
* Retrieves the list of supported Neon regions
*/
export async function main(auth: Neondb) {
const url = new URL(`https://console.neon.tech/api/v2/regions`)
const response = await fetch(url, {
method: 'GET',
headers: {
Authorization: 'Bearer ' + auth.apiKey
},
body: undefined
})
if (!response.ok) {
const text = await response.text()
throw new Error(`${response.status} ${text}`)
}
return await response.json()
}
Submitted by hugo697 428 days ago