import osfrom gcore import Gcoreclient = Gcore( api_key=os.environ.get("GCORE_API_KEY"), # This is the default and can be omitted)client.storage.ssh_keys.delete( 0,)
This response has no body data.
SSHKeys
Delete SSH key
Removes an SSH public key. This will revoke SFTP access for any storages using this key.
DELETE
/
storage
/
v4
/
ssh_keys
/
{ssh_key_id}
Python
import osfrom gcore import Gcoreclient = Gcore( api_key=os.environ.get("GCORE_API_KEY"), # This is the default and can be omitted)client.storage.ssh_keys.delete( 0,)