@runloop/api-client - v1.22.0
    Preparing search index...

    Interface RunProfile

    Configuration profile for scenario/benchmark runs.

    interface RunProfile {
        envVars?: { [key: string]: string } | null;
        launchParameters?: LaunchParameters | null;
        mounts?: Mount[] | null;
        purpose?: string | null;
        secrets?: { [key: string]: string } | null;
    }
    Index

    Properties

    envVars?: { [key: string]: string } | null

    Mapping of Environment Variable to Value. May be shown in devbox logging. Example: {"DB_PASS": "DATABASE_PASSWORD"} would set the environment variable 'DB_PASS' to the value 'DATABASE_PASSWORD_VALUE'.

    launchParameters?: LaunchParameters | null

    LaunchParameters enable you to customize the resources available to your Devbox as well as the environment set up that should be completed before the Devbox is marked as 'running'.

    mounts?: Mount[] | null

    A list of mounts to be included in the scenario run.

    purpose?: string | null

    Purpose of the run.

    secrets?: { [key: string]: string } | null

    Mapping of Environment Variable to User Secret Name. Never shown in devbox logging. Example: {"DB_PASS": "DATABASE_PASSWORD"} would set the environment variable 'DB_PASS' to the value of the secret 'DATABASE_PASSWORD'.