interface ApplyHostingServiceStackRequest {
    builds?: Record<string, string>;
    game_build_id?: string;
    migration?: {
        command: string[];
        service: string;
    };
    preset?: "single_server" | "stateful_game_server" | "web_and_api" | "authoritative_world" | "large_realtime_world";
    services?: HostingServiceDefinition[];
    test?: {
        command: string[];
        service: string;
    };
    version: string;
}

Hierarchy

Properties

builds?: Record<string, string>
game_build_id?: string
migration?: {
    command: string[];
    service: string;
}

Type declaration

  • command: string[]
  • service: string
preset?: "single_server" | "stateful_game_server" | "web_and_api" | "authoritative_world" | "large_realtime_world"
test?: {
    command: string[];
    service: string;
}

Type declaration

  • command: string[]
  • service: string
version: string

Generated using TypeDoc