//native
type Neondb = {
apiKey: string
}
/**
* Update a database
* Updates the specified database in the branch.
You can obtain a `project_id` by listing the projects for your Neon account.
You can obtain the `branch_id` and `database_name` by listing the branch's databases.
For related information, see [Manage databases](https://neon.tech/docs/manage/databases/).
*/
export async function main(
auth: Neondb,
project_id: string,
branch_id: string,
database_name: string,
body: { database: { name?: string; owner_name?: string } }
) {
const url = new URL(
`https://console.neon.tech/api/v2/projects/${project_id}/branches/${branch_id}/databases/${database_name}`
)
const response = await fetch(url, {
method: 'PATCH',
headers: {
'Content-Type': 'application/json',
Authorization: 'Bearer ' + auth.apiKey
},
body: JSON.stringify(body)
})
if (!response.ok) {
const text = await response.text()
throw new Error(`${response.status} ${text}`)
}
return await response.json()
}
Submitted by hugo697 428 days ago