| Modifier and Type | Method and Description |
|---|---|
SshKeyPair |
createSSHKeyPair(String name)
Creates a
SshKeyPair with specified name. |
void |
deleteSSHKeyPair(String name)
Deletes the
SSHKeyPairApi with given name. |
SshKeyPair |
getSSHKeyPair(String name)
Retrieves the
SSHKeyPairApi with given name. |
Set<SshKeyPair> |
listSSHKeyPairs(ListSSHKeyPairsOptions... options)
Returns a list of
SshKeyPairs registered by current user. |
SshKeyPair |
registerSSHKeyPair(String name,
String publicKey)
Registers a
SshKeyPair with the given name and public kay material. |
@Named(value="listSSHKeyPairs") @GET @Consumes(value="application/json") Set<SshKeyPair> listSSHKeyPairs(ListSSHKeyPairsOptions... options)
SshKeyPairs registered by current user.options - if present, how to constrain the listSshKeyPairs matching the current constrains or
empty set if no SshKeyPairs found.@Named(value="registerSSHKeyPair") @GET @Consumes(value="application/json") SshKeyPair registerSSHKeyPair(@QueryParam(value="name") String name, @QueryParam(value="publickey") String publicKey)
SshKeyPair with the given name and public kay material.name - of the keypairpublicKey - Public key material of the keypair@Named(value="createSSHKeyPair") @GET @Consumes(value="application/json") SshKeyPair createSSHKeyPair(@QueryParam(value="name") String name)
SshKeyPair with specified name.name - of the SshKeyPair.@Named(value="listSSHKeyPairs") @GET @Consumes(value="application/json") SshKeyPair getSSHKeyPair(@QueryParam(value="name") String name)
SSHKeyPairApi with given name.name - name of the key pair@Named(value="deleteSSHKeyPair")
@GET
void deleteSSHKeyPair(@QueryParam(value="name")
String name)
SSHKeyPairApi with given name.name - name of the key pairCopyright © 2009-2018 The Apache Software Foundation. All Rights Reserved.