//native
type Linode = {
token: string;
};
/**
* Rebuild a Linode
* Rebuilds a Linode you have the `read_write` permission to modify.
*/
export async function main(
auth: Linode,
apiVersion: "v4" | "v4beta",
linodeId: string,
body: {
authorized_keys?: string[];
authorized_users?: string[];
booted?: false | true;
disk_encryption?: "enabled" | "disabled";
image?: string;
metadata?: { user_data?: string };
root_pass?: string;
stackscript_data?: {};
stackscript_id?: number;
} & { type?: string },
) {
const url = new URL(
`https://api.linode.com/${apiVersion}/linode/instances/${linodeId}/rebuild`,
);
const response = await fetch(url, {
method: "POST",
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 235 days ago