//native
type Neondb = {
apiKey: string
}
/**
* Reset the role password
* Resets the password for the specified Postgres role.
*/
export async function main(auth: Neondb, project_id: string, branch_id: string, role_name: string) {
const url = new URL(
`https://console.neon.tech/api/v2/projects/${project_id}/branches/${branch_id}/roles/${role_name}/reset_password`
)
const response = await fetch(url, {
method: 'POST',
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