Databricks SDK for JavaScript
    Preparing search index...

    Request message for ListSecrets.

    interface ListSecretsRequest {
        catalogName?: string;
        pageSize?: number;
        pageToken?: string;
        schemaName?: string;
    }
    Index

    Properties

    catalogName?: string

    The name of the catalog under which to list secrets. Both catalog_name and schema_name must be specified together.

    pageSize?: number

    Maximum number of secrets to return.

    • If not specified, at most 1000 secrets are returned.
    • If set to a value greater than 0, the page length is the minimum of this value and 1000.
    • If set to 0, the page length is set to 1000.
    • If set to a value less than 0, an invalid parameter error is returned.
    pageToken?: string

    Opaque pagination token to go to the next page based on previous query. The maximum page length is determined by a server configured value.

    schemaName?: string

    The name of the schema under which to list secrets. Both catalog_name and schema_name must be specified together.