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

    Interface OperationWaitOptions

    Controls operation polling requests and retries.

    interface OperationWaitOptions {
        PerRetryTimeout?: number;
        pollErrorBackoff?: PollErrorBackoff | null;
        RequestTimeout?: number;
        RetryCount?: number;
    }

    Hierarchy (View Summary)

    Index
    PerRetryTimeout?: number

    Limits each gRPC attempt.

    The default is 20,000 milliseconds. The overall deadline and RetryOptions.RequestTimeout can shorten an attempt.

    pollErrorBackoff?: PollErrorBackoff | null

    Calculates the delay after each consecutive retriable polling error.

    The attempt starts at 1 and resets after a successful poll. By default, the delay starts at one second, uses exponential backoff with 20% jitter, and is capped at 30 seconds. Set this value to null to disable retries after polling errors.

    RequestTimeout?: number

    Limits one authenticated request window.

    The default is 60,000 milliseconds.

    RetryCount?: number

    Sets the number of retries after the first attempt.

    The default is 3. Set this value to 0 to make only one attempt.