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

    Interface TransferDestination_S3CompatibleProvider

    interface TransferDestination_S3CompatibleProvider {
        "[customJson]"?: () => unknown;
        "[unknownFieldsSymbol]"?: Uint8Array<ArrayBufferLike>;
        $type: "nebius.storage.v1.TransferDestination.S3CompatibleProvider";
        bucketName: string;
        credentials?:
            | { $case: "anonymous"; anonymous: TransferCredentialsAnonymous }
            | { $case: "accessKey"; accessKey: TransferCredentialsAccessKey };
        endpoint: string;
        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.v1.TransferDestination.S3CompatibleProvider"
    bucketName: string

    Name of the destination bucket.

    credentials?:
        | { $case: "anonymous"; anonymous: TransferCredentialsAnonymous }
        | { $case: "accessKey"; accessKey: TransferCredentialsAccessKey }

    Credentials for accessing the destination bucket. These credentials must have head, write permissions.

    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.some-cloud".

    region: string

    S3-compatible provider region where destination bucket is located.