iceberg-js
    Preparing search index...

    Interface IcebergRestCatalogOptions

    Configuration options for the Iceberg REST Catalog client.

    interface IcebergRestCatalogOptions {
        accessDelegation?: AccessDelegation[];
        auth?: AuthConfig;
        baseUrl: string;
        catalogName?: string;
        fetch?: {
            (input: URL | RequestInfo, init?: RequestInit): Promise<Response>;
            (input: string | URL | Request, init?: RequestInit): Promise<Response>;
        };
    }
    Index

    Properties

    accessDelegation?: AccessDelegation[]

    Access delegation mechanisms to request from the server. When specified, the X-Iceberg-Access-Delegation header will be sent with supported operations (createTable, loadTable).

    ['vended-credentials']
    
    ['vended-credentials', 'remote-signing']
    
    auth?: AuthConfig

    Authentication configuration

    baseUrl: string

    Base URL of the Iceberg REST Catalog API

    catalogName?: string

    Optional catalog name prefix for multi-catalog servers

    fetch?: {
        (input: URL | RequestInfo, init?: RequestInit): Promise<Response>;
        (input: string | URL | Request, init?: RequestInit): Promise<Response>;
    }

    Custom fetch implementation (defaults to globalThis.fetch)

    Type Declaration

      • (input: URL | RequestInfo, init?: RequestInit): Promise<Response>
      • Parameters

        • input: URL | RequestInfo
        • Optionalinit: RequestInit

        Returns Promise<Response>

      • (input: string | URL | Request, init?: RequestInit): Promise<Response>
      • Parameters

        • input: string | URL | Request
        • Optionalinit: RequestInit

        Returns Promise<Response>