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

    Interface TransferSpec_SourceBucket

    interface TransferSpec_SourceBucket {
        "[customJson]"?: () => unknown;
        "[unknownFieldsSymbol]"?: Uint8Array<ArrayBufferLike>;
        $type: "nebius.storage.v1alpha1.TransferSpec.SourceBucket";
        bucketName: string;
        credentials?: TransferSpec_BucketCredentials;
        endpoint: string;
        limiters?: TransferSpec_Limiters;
        region: string;
        [key: symbol]: Uint8Array<ArrayBufferLike> | (() => unknown) | undefined;
    }

    Indexable

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

    Properties

    "[customJson]"?: () => unknown
    "[unknownFieldsSymbol]"?: Uint8Array<ArrayBufferLike>
    $type: "nebius.storage.v1alpha1.TransferSpec.SourceBucket"
    bucketName: string

    Credentials for accessing the source bucket. These credentials must have list and get permissions. This parameter must be specified only during create operations.

    endpoint: string

    The endpoint must be in the form of a URL, starting with the protocol (https), followed by the endpoint address without a trailing slash. Example: https://storage.us-central1.nebius.cloud

    Limiters applied to source bucket operations. These limits include all operations required for transfer (HeadObject, GetObject, ListObjects). For details about which operations are used, see public documentation: http://docs.nebius.com/object-storage/transfer/quickstart#background.

    Note: Since the service performs comparable request volumes and data transfers to both source and destination, these limits will indirectly constrain destination operations as well.

    region: string