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

    Interface TransferDestination

    interface TransferDestination {
        "[customJson]"?: () => unknown;
        "[unknownFieldsSymbol]"?: Uint8Array<ArrayBufferLike>;
        $type: "nebius.storage.v1.TransferDestination";
        prefix: string;
        provider?:
            | { $case: "nebius"; nebius: TransferDestination_NebiusProvider }
            | {
                $case: "s3Compatible";
                s3Compatible: TransferDestination_S3CompatibleProvider;
            };
        [key: symbol]: Uint8Array<ArrayBufferLike>
        | (() => unknown)
        | undefined;
    }

    Indexable

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

    Properties

    "[customJson]"?: () => unknown
    "[unknownFieldsSymbol]"?: Uint8Array<ArrayBufferLike>
    $type: "nebius.storage.v1.TransferDestination"
    prefix: string

    Prefix to add to the beginning of each transferred object key in the destination. During transfer, the resulting object key in the destination is computed by removing source.prefix (if provided) from the original key and then prepending destination.prefix. Important: This transformation may result in an empty object key or one that exceeds allowed length limits. Use prefixes that guarantee valid resulting object keys for your objects after transformation.

    provider?:
        | { $case: "nebius"; nebius: TransferDestination_NebiusProvider }
        | {
            $case: "s3Compatible";
            s3Compatible: TransferDestination_S3CompatibleProvider;
        }

    Destination storage provider configuration.