π SSH Keys
Get All
LinodeClient linodeClient = new LinodeClient("apikey");
// Get All
List<SshKey> list = await linodeClient.SshKey.Get();Get One
LinodeClient linodeClient = new LinodeClient("apikey");
long sshKeyId = 314986;
// Get One
SshKey sshKey = await linodeClient.SshKey.Get(sshKeyId);Create
Update
Delete
JSON
Last updated