Databricks SDK for JavaScript
    Preparing search index...

    HttpRequest represents an outgoing HTTP request.

    interface HttpRequest {
        body?:
            | string
            | ArrayBuffer
            | Uint8Array<ArrayBufferLike>
            | ReadableStream<Uint8Array<ArrayBufferLike>>
            | null;
        headers: Headers;
        method: string;
        signal?: AbortSignal;
        url: string;
    }
    Index

    Properties

    body?:
        | string
        | ArrayBuffer
        | Uint8Array<ArrayBufferLike>
        | ReadableStream<Uint8Array<ArrayBufferLike>>
        | null

    The request body.

    headers: Headers

    The request headers.

    method: string

    The HTTP method (GET, POST, etc.).

    signal?: AbortSignal

    An optional signal to abort the request.

    url: string

    The URL to send the request to.