Databricks SDK for JavaScript
    Preparing search index...
    interface Database_DatabaseSpec {
        postgresDatabase?: string;
        role?: string;
    }
    Index

    Properties

    postgresDatabase?: string

    The name of the Postgres database.

    This expects a valid Postgres identifier as specified in the link below. https://www.postgresql.org/docs/current/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS Required when creating the Database.

    To rename, pass a valid postgres identifier when updating the Database.

    role?: string

    The name of the role that owns the database. Format: projects/{project_id}/branches/{branch_id}/roles/{role_id}

    To change the owner, pass valid existing Role name when updating the Database

    A database always has an owner.