hetzner-ts
    Preparing search index...

    Interface CreateServerParams

    interface CreateServerParams {
        automount?: boolean;
        datacenter?: string;
        firewall?: [{ id: number }];
        image: string;
        labels?: Record<string, string>;
        location?: string;
        name: string;
        networks?: number[];
        placement_group?: string;
        public_net?: {
            enable_ipv4?: boolean;
            enable_ipv6?: boolean;
            ipv4?: string;
            ipv6?: string;
        };
        server_type: string;
        ssh_keys?: string[];
        start_after_create?: boolean;
        user_data?: string;
        volumes?: number[];
    }
    Index

    Properties

    automount?: boolean
    datacenter?: string
    firewall?: [{ id: number }]
    image: string
    labels?: Record<string, string>
    location?: string
    name: string
    networks?: number[]
    placement_group?: string
    public_net?: {
        enable_ipv4?: boolean;
        enable_ipv6?: boolean;
        ipv4?: string;
        ipv6?: string;
    }
    server_type: string
    ssh_keys?: string[]
    start_after_create?: boolean
    user_data?: string
    volumes?: number[]