interface hpcConfig {
    allowlist: string[];
    community_login: communityLogin;
    denylist: string[];
    description?: string;
    globus?: {
        endpoint: string;
        identity: string;
        root_path: string;
    };
    init_sbatch_options: string[];
    init_sbatch_script: string[];
    ip: string;
    is_community_account: boolean;
    job_pool_capacity: number;
    mount: Record<string, string>;
    port: number;
    root_path: string;
    slurm_global_cap: slurm;
    slurm_input_rules?: slurmInputRules;
    xsede_job_log_credential: XSEDEJobLogCredential;
}

Properties

allowlist: string[]
community_login: communityLogin
denylist: string[]
description?: string
globus?: {
    endpoint: string;
    identity: string;
    root_path: string;
}

Type declaration

  • endpoint: string
  • identity: string
  • root_path: string
init_sbatch_options: string[]
init_sbatch_script: string[]
ip: string
is_community_account: boolean
job_pool_capacity: number
mount: Record<string, string>
port: number
root_path: string
slurm_global_cap: slurm
slurm_input_rules?: slurmInputRules
xsede_job_log_credential: XSEDEJobLogCredential

Generated using TypeDoc