Databricks SDK for JavaScript
    Preparing search index...
    interface ListPoliciesRequest {
        includeInherited?: boolean;
        maxResults?: number;
        onSecurableFullname?: string;
        onSecurableType?: string;
        pageToken?: string;
    }
    Index

    Properties

    includeInherited?: boolean

    Optional. Whether to include policies defined on parent securables. By default, the inherited policies are not included.

    maxResults?: number

    Optional. Maximum number of policies to return on a single page (page length).

    • When not set or set to 0, the page length is set to a server configured value (recommended);
    • When set to a value greater than 0, the page length is the minimum of this value and a server configured value;
    onSecurableFullname?: string

    Required. The fully qualified name of securable to list policies for.

    onSecurableType?: string

    Required. The type of the securable to list policies for.

    pageToken?: string

    Optional. Opaque pagination token to go to next page based on previous query.