com.cloudbees.api.CBSshKey Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cloudbees-api-client Show documentation
Show all versions of cloudbees-api-client Show documentation
The CloudBees API Client library for Java
package com.cloudbees.api;
/**
* SSH public key.
*
* @author Kohsuke Kawaguchi
* @see CBUser#ssh_keys
*/
public class CBSshKey {
/**
* A single line format of the public key.
* The same format as in ~/.ssh/authorized_keys (except the third token), such as
* "ssh-rsa AAAAB3123456....ffbb"
*/
public String content;
/**
* Human-readable name that identifies this key among other keys.
*
* The third token in ~/.ssh/authorized_keys
*/
public String name;
/**
* Public key fingerprint like "11:22:33:...:dd:ee:ff"
*/
public String fingerprint;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy