@runloop/api-client - v1.4.0
    Preparing search index...

    Interface SecretListView

    A paginated list of Secrets.

    interface SecretListView {
        has_more: boolean;
        remaining_count: number;
        secrets: SecretView[];
        total_count: number;
    }
    Index

    Properties

    has_more: boolean

    True if there are more results available beyond this page.

    remaining_count: number

    Number of Secrets remaining after this page.

    secrets: SecretView[]

    List of Secret objects. Values are omitted for security.

    total_count: number

    Total number of Secrets across all pages.