@aleph-sdk/monorepo
    Preparing search index...

    Type Alias InstanceEnvironment

    Properties of the execution instance environment

    reproducible: The function is deterministic (not available yet) internet: Allow internet access aleph_api: Allow access to the Aleph API shared_cache: Allow access to the shared redis cache hypervisor: Hypervisor to use for the execution, can be Firecracker or Qemu trusted_execution: Sets the execution as confidential

    type InstanceEnvironment = {
        aleph_api: boolean;
        hypervisor?: HypervisorType;
        internet: boolean;
        reproducible: false;
        shared_cache: boolean;
        trusted_execution?: Partial<TrustedExecutionEnvironment>;
    }
    Index

    Properties

    aleph_api: boolean
    hypervisor?: HypervisorType
    internet: boolean
    reproducible: false
    shared_cache: boolean
    trusted_execution?: Partial<TrustedExecutionEnvironment>