//native
type Digitalocean = {
token: string;
};
/**
* Upgrade Major Version for a Database
* To upgrade the major version of a database, send a PUT request to `/v2/databases/$DATABASE_ID/upgrade`, specifying the target version.
A successful request will receive a 204 No Content status code with no body in response.
*/
export async function main(
auth: Digitalocean,
database_cluster_uuid: string,
body: { version?: string },
) {
const url = new URL(
`https://api.digitalocean.com/v2/databases/${database_cluster_uuid}/upgrade`,
);
const response = await fetch(url, {
method: "PUT",
headers: {
"Content-Type": "application/json",
Authorization: "Bearer " + auth.token,
},
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 536 days ago