Databricks SDK for JavaScript
    Preparing search index...
    interface Project {
        createTime?: Instant;
        deleteTime?: Instant;
        initialEndpointSpec?: InitialEndpointSpec;
        name?: string;
        projectId?: string;
        purgeTime?: Instant;
        spec?: ProjectSpec;
        status?: ProjectStatus;
        uid?: string;
        updateTime?: Instant;
    }
    Index

    Properties

    createTime?: Instant

    A timestamp indicating when the project was created.

    deleteTime?: Instant

    A timestamp indicating when the project was soft-deleted. Empty if the project is not deleted, otherwise set to a timestamp in the past.

    initialEndpointSpec?: InitialEndpointSpec

    Configuration settings for the initial Read/Write endpoint created inside the initial branch for a newly created project. If omitted, the initial endpoint created will have default settings, without high availability configured. This field does not apply to any endpoints created after project creation. Use spec.default_endpoint_settings to configure default settings for endpoints created after project creation.

    name?: string

    Output only. The full resource path of the project. Format: projects/{project_id}

    projectId?: string

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

    purgeTime?: Instant

    A timestamp indicating when the project is scheduled for permanent deletion. Empty if the project is not deleted, otherwise set to a timestamp in the future.

    The spec contains the project configuration, including display_name, pg_version (Postgres version), history_retention_duration, and default_endpoint_settings.

    status?: ProjectStatus

    The current status of a Project.

    uid?: string

    System-generated unique ID for the project.

    updateTime?: Instant

    A timestamp indicating when the project was last updated.