interface CreateServerRequestInstall {
    hostname: string;
    osId: string;
    partitioningSchema?: Schema;
    password?: string;
    servicePassword?: string;
    serviceUser?: string;
    sshKeyIds: string[];
    user?: string;
}

Properties

hostname: string

Hostname of the server.

osId: string

ID of the OS to installation on the server.

partitioningSchema?: Schema

Partitioning schema.

password?: string

Password for the installation.

servicePassword?: string

Password used for the service to install.

serviceUser?: string

Regular user that runs the service to be installed on the server.

sshKeyIds: string[]

SSH key IDs authorized on the server.

user?: string

User for the installation.