interface SSHKey {
    createdAt?: Date;
    disabled: boolean;
    fingerprint: string;
    id: string;
    name: string;
    organizationId: string;
    projectId: string;
    publicKey: string;
    updatedAt?: Date;
}

Properties

createdAt?: Date

Creation date of SSH key.

disabled: boolean

SSH key status.

fingerprint: string

Fingerprint of the SSH key.

id: string

ID of SSH key.

name: string

Name of SSH key.

organizationId: string

ID of Organization linked to the SSH key.

projectId: string

ID of Project linked to the SSH key.

publicKey: string

Public key of SSH key.

updatedAt?: Date

Last update date of SSH key.