@nebius/js-sdk - v0.2.3
    Preparing search index...

    Interface EndpointSpec_EnvironmentVariable

    EnvironmentVariable defines an environment variable for the endpoint's container.

    interface EndpointSpec_EnvironmentVariable {
        "[customJson]"?: () => unknown;
        "[unknownFieldsSymbol]"?: Uint8Array<ArrayBufferLike>;
        $type: "nebius.ai.v1.EndpointSpec.EnvironmentVariable";
        mysteryboxSecret?: EndpointSpec_MysteryBoxSecretRef;
        name: string;
        value: string;
        [key: symbol]: Uint8Array<ArrayBufferLike> | (() => unknown) | undefined;
    }

    Indexable

    • [key: symbol]: Uint8Array<ArrayBufferLike> | (() => unknown) | undefined
    Index

    Properties

    "[customJson]"?: () => unknown
    "[unknownFieldsSymbol]"?: Uint8Array<ArrayBufferLike>
    $type: "nebius.ai.v1.EndpointSpec.EnvironmentVariable"

    Secret storing the environment variable value. Mutually exclusive with value. Must reference a secret payload containing a key matching name.

    name: string

    The name of the environment variable.

    value: string

    Environment variable value. Mutually exclusive with mysterybox_secret.