import osfrom gcore import Gcoreclient = Gcore( api_key=os.environ.get("GCORE_API_KEY"), # This is the default and can be omitted)client.storage.unlink_ssh_key( key_id=0, storage_id=0,)
Copy
Ask AI
This response has no body data.
Storage
Unlink SSH key from SFTP storage
Removes SSH key association from an SFTP storage, disabling passwordless authentication for that key. The key itself remains available for other storages.
POST
/
storage
/
provisioning
/
v1
/
storage
/
{storage_id}
/
key
/
{key_id}
/
unlink
Python
Copy
Ask AI
import osfrom gcore import Gcoreclient = Gcore( api_key=os.environ.get("GCORE_API_KEY"), # This is the default and can be omitted)client.storage.unlink_ssh_key( key_id=0, storage_id=0,)