//native
type Neondb = {
apiKey: string
}
/**
* Get operation details
* Retrieves details for the specified operation.
An operation is an action performed on a Neon project resource.
You can obtain a `project_id` by listing the projects for your Neon account.
You can obtain a `operation_id` by listing operations for the project.
*/
export async function main(auth: Neondb, project_id: string, operation_id: string) {
const url = new URL(
`https://console.neon.tech/api/v2/projects/${project_id}/operations/${operation_id}`
)
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