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

    Interface EndpointSpec_FileInjection

    FileInjection materializes a small file inside the container at launch.

    interface EndpointSpec_FileInjection {
        "[customJson]"?: () => unknown;
        "[unknownFieldsSymbol]"?: Uint8Array<ArrayBufferLike>;
        $type: "nebius.ai.v1.EndpointSpec.FileInjection";
        containerPath: string;
        content: Uint8Array;
        [key: symbol]: Uint8Array<ArrayBufferLike> | (() => unknown) | undefined;
    }

    Indexable

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

      FileInjection materializes a small file inside the container at launch.

      • Uint8Array<ArrayBufferLike>
      • () => unknown
          • (): unknown
          • FileInjection materializes a small file inside the container at launch.

            Returns unknown

      • undefined
    Index
    "[customJson]"?: () => unknown

    Returns a safe value for JSON logs.

    Type Declaration

      • (): unknown
      • Returns a safe value for JSON logs.

        Returns unknown

    "[unknownFieldsSymbol]"?: Uint8Array<ArrayBufferLike>

    Preserves protobuf fields that this SDK version does not recognize.

    $type: "nebius.ai.v1.EndpointSpec.FileInjection"

    Contains the fully qualified protobuf type name.

    containerPath: string

    Absolute path inside the container where the content is written.

    Must be a clean absolute path: root, trailing slashes, empty path segments, "." and ".." are not allowed.

    content: Uint8Array

    File content. On create, must contain between 1 byte and 64 KiB (one mystery box secret payload). Returned only by Get with view SECRET.