Databricks SDK for JavaScript
    Preparing search index...

    Role represents a Postgres role within a Branch.

    interface Role {
        createTime?: Instant;
        name?: string;
        parent?: string;
        roleId?: string;
        spec?: Role_RoleSpec;
        status?: Role_RoleStatus;
        updateTime?: Instant;
    }
    Index

    Properties

    createTime?: Instant
    name?: string

    Output only. The full resource path of the role. Format: projects/{project_id}/branches/{branch_id}/roles/{role_id}

    parent?: string

    The Branch where this Role exists. Format: projects/{project_id}/branches/{branch_id}

    roleId?: string

    The part of the name, chosen by the user when the resource was created.

    The spec contains the role configuration, including identity type, authentication method, and role attributes.

    Current status of the role, including its identity type, authentication method, and role attributes.

    updateTime?: Instant