Databricks SDK for JavaScript
    Preparing search index...

    Attributes that can be granted to a Postgres role. We are only implementing a subset for now, see xref: https://www.postgresql.org/docs/16/sql-createrole.html The values follow Postgres keyword naming e.g. CREATEDB, BYPASSRLS, etc. which is why they don't include typical underscores between words.

    interface Role_Attributes {
        bypassrls?: boolean;
        createdb?: boolean;
        createrole?: boolean;
    }
    Index

    Properties

    bypassrls?: boolean
    createdb?: boolean
    createrole?: boolean