//native
type Neondb = {
apiKey: string
}
/**
* Create a role
* Creates a Postgres role in the specified branch.
You can obtain a `project_id` by listing the projects for your Neon account.
You can obtain the `branch_id` by listing the project's branches.
For related information, see [Manage roles](https://neon.tech/docs/manage/roles/).
Connections established to the active compute endpoint will be dropped.
If the compute endpoint is idle, the endpoint becomes active for a short period of time and is suspended afterward.
*/
export async function main(
auth: Neondb,
project_id: string,
branch_id: string,
body: { role: { name: string } }
) {
const url = new URL(
`https://console.neon.tech/api/v2/projects/${project_id}/branches/${branch_id}/roles`
)
const response = await fetch(url, {
method: 'POST',
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