org.jclouds.joyent.cloudapi.v6_5.features
Interface KeyApi


public interface KeyApi

Keys are the means by which you operate on your SSH/signing keys. Currently CloudAPI supports uploads of public keys in the OpenSSH format.

Author:
Adrian Cole
See Also:
KeyAsyncApi, api doc

Method Summary
 Key create(Key key)
          Uploads a new OpenSSH key to SmartDataCenter for use in SSH and HTTP signing.
 void delete(String name)
          Deletes an SSH key by name.
 Key get(String name)
          Retrieves an individual key record.
 Set<Key> list()
          Lists all public keys we have on record for the specified account.
 

Method Detail

list

Set<Key> list()
Lists all public keys we have on record for the specified account.


get

Key get(String name)
Retrieves an individual key record.


create

Key create(Key key)
Uploads a new OpenSSH key to SmartDataCenter for use in SSH and HTTP signing.


delete

void delete(String name)
Deletes an SSH key by name.



Copyright © 2009-2012 jclouds. All Rights Reserved.