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

    Type Alias BaseExecutableContent

    BaseExecutableContent: BaseContent & {
        allow_amend: boolean;
        authorized_keys?: string[];
        environment: FunctionEnvironment;
        metadata?: Record<string, unknown>;
        payment?: Payment;
        replaces?: string;
        requirements?: HostRequirements;
        resources: MachineResources;
        variables?: Record<string, string>;
        volumes: MachineVolume[];
    }

    Abstract content for execution messages (Instances, Programs).

    allow_amend: Allow amends to update this function metadata: Metadata of the VM authorized_keys: SSH public keys authorized to connect to the VM variables: Environment variables available in the VM environment: Properties of the execution environment resources: System resources required requirements: System properties required volumes: Volumes to mount on the filesystem replaces: Previous version to replace. Must be signed by the same address"