Databricks SDK for JavaScript
    Preparing search index...

    List Streams under a given parent.

    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 ListStreamsRequest {
        pageSize?: number;
        pageToken?: string;
        parent?: string;
    }
    Index

    Properties

    pageSize?: number

    The maximum number of results to return.

    pageToken?: string

    Pagination token to go to the next page based on a previous query.

    parent?: string

    Two-part name (catalog.schema) of the parent under which to list Streams.