from latitudesh_python_sdk import Latitudeshimport oswith Latitudesh( bearer=os.getenv("LATITUDESH_BEARER", ""),) as latitudesh: latitudesh.ssh_keys.delete_ssh_key(ssh_key_id="ssh_KXgRdRa3Ov9k5") # Use the SDK ...
Copy
{ "meta": {}}
SSH Keys
Delete SSH Key
Allows you remove SSH Keys in a project. Remove a SSH Key from the project won’t revoke the SSH Keys access for previously deploy and reinstall actions.
DELETE
/
ssh_keys
/
{ssh_key_id}
Python (SDK)
Copy
from latitudesh_python_sdk import Latitudeshimport oswith Latitudesh( bearer=os.getenv("LATITUDESH_BEARER", ""),) as latitudesh: latitudesh.ssh_keys.delete_ssh_key(ssh_key_id="ssh_KXgRdRa3Ov9k5") # Use the SDK ...