//native
type Linode = {
token: string;
};
/**
* Update an SSH key
* Updates an SSH Key that you have permission to `read_write`.
Only SSH key labels can be updated.
>
---
- __CLI__.
```
linode-cli sshkeys update 42 \
--label "my laptop"
```
[Learn more...](https://techdocs.akamai.com/cloud-computing/docs/getting-started-with-the-linode-cli)
- __OAuth scopes__.
```
account:read_write
```
[Learn more...](https://techdocs.akamai.com/linode-api/reference/get-started#oauth)
*/
export async function main(
auth: Linode,
apiVersion: "v4" | "v4beta",
sshKeyId: string,
body: { label?: string },
) {
const url = new URL(
`https://api.linode.com/${apiVersion}/profile/sshkeys/${sshKeyId}`,
);
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 235 days ago