From 60861080765b6d10416733d99dbc1711c31a8d0d Mon Sep 17 00:00:00 2001 From: Maximilian Hollnbuchner <108551330+Maxi10022@users.noreply.github.com> Date: Mon, 28 Jul 2025 17:01:07 +0200 Subject: [PATCH] Update ssh-keys.md Reanmed `Delete a Volume` section to `Delete an SSH key`. Also changed description to mirror the [Hetzner docs](https://docs.hetzner.cloud/reference/cloud#ssh-keys-delete-an-ssh-key) --- Docs/functions-and-methods/ssh-keys.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Docs/functions-and-methods/ssh-keys.md b/Docs/functions-and-methods/ssh-keys.md index 665f5a0..1270b85 100644 --- a/Docs/functions-and-methods/ssh-keys.md +++ b/Docs/functions-and-methods/ssh-keys.md @@ -57,9 +57,9 @@ sshKey.Name = $"new-name-{Guid.NewGuid()}"; sshKey = await hetznerCloudClient.SshKey.Update(sshKey); ``` -## Delete a Volume +## Delete an SSH key -Deletes a volume. All Volume data is irreversibly destroyed. The Volume must not be attached to a Server and it must not have delete protection enabled. +Deletes an SSH key. It cannot be used anymore. ```csharp HetznerCloudClient hetznerCloudClient = new HetznerCloudClient("ApiKey");