Databricks SDK for JavaScript
    Preparing search index...

    Response to a ListStreamsRequest.

    NOTE: Results are post-filtered by access permission on each stream's ingestion table. This means:

    • Returned results may be fewer than page_size (including zero)
    • Page token points to next unfiltered batch, not next filtered batch, and may point to an item that will be filtered out Callers should paginate until next_page_token is empty to retrieve all accessible streams.
    interface ListStreamsResponse {
        nextPageToken?: string;
        streams?: Stream[];
    }
    Index

    Properties

    nextPageToken?: string

    Pagination token to request the next page of results for this query.

    streams?: Stream[]

    List of Streams.