//! Logic to create a new, ephemeral SSH keypair in DigitalOcean.
//! Adding a new SSH key on instance creation prevents emails on
//! instance creation, providing a root pw.
use Result;
use Deserialize;
use crateDoClient;
/// Representation of an SSH public key, as defined by the DigitalOcean API.
/// For more information, see
/// <https://docs.digitalocean.com/reference/api/api-reference/#tag/SSH-Keys>.