Databricks SDK for JavaScript
    Preparing search index...

    Interface DatabaseInstanceRole_Attributes

    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. We were requested to make this a nested object/struct representation since these are knobs from an external spec.

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

    Properties

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