interface AddJob {
    compute_provider_id?: string;
    config: Record<string, ParameterValue | ParameterValue[]>;
    destination?: {
        id: string;
        type: ContainerType;
    };
    gear_id: string;
    inputs: Record<string, JobInput>;
    priority?: JobPriority;
    tags: string[];
}

Properties

compute_provider_id?: string
config: Record<string, ParameterValue | ParameterValue[]>
destination?: {
    id: string;
    type: ContainerType;
}

Type declaration

gear_id: string
inputs: Record<string, JobInput>
priority?: JobPriority
tags: string[]