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

    Interface TransferSource

    Represents the nebius.storage.v1.TransferSource protobuf message.

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

    Indexable

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

      Represents the nebius.storage.v1.TransferSource protobuf message.

      • Uint8Array<ArrayBufferLike>
      • () => unknown
          • (): unknown
          • Represents the nebius.storage.v1.TransferSource protobuf message.

            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.storage.v1.TransferSource"

    Contains the fully qualified protobuf type name.

    prefix: string

    Prefix to filter objects in the source. Only objects whose keys start with this prefix will be transferred. During transfer, the resulting object key in the destination is computed by removing source.prefix from the original key and then prepending destination.prefix (if provided). 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: TransferSource_NebiusProvider }
        | {
            $case: "s3Compatible";
            s3Compatible: TransferSource_S3CompatibleProvider;
        }
        | {
            $case: "azureBlobStorage";
            azureBlobStorage: TransferSource_AzureBlobStorageProvider;
        }

    Source storage provider configuration.

    Type Declaration