/**
 * devopness API
 * Devopness API - Painless essential DevOps to everyone
 *
 * The version of the OpenAPI document: latest
 *
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
import { ResourceToBeLinked } from './resource-to-be-linked';
/**
 *
 * @export
 * @interface SshKeyEnvironmentCreate
 */
export interface SshKeyEnvironmentCreate {
    /**
     * The resources to be linked with this resource
     * @type {Array<ResourceToBeLinked>}
     * @memberof SshKeyEnvironmentCreate
     */
    linked_resources?: Array<ResourceToBeLinked>;
    /**
     * The ssh key\'s name. Must not be greater than 60 characters.
     * @type {string}
     * @memberof SshKeyEnvironmentCreate
     */
    name: string;
    /**
     * The public key of the ssh key.
     * @type {string}
     * @memberof SshKeyEnvironmentCreate
     */
    public_key: string;
}
