1. Packages
  2. Databricks Provider
  3. API Docs
  4. getPostgresProjects
Viewing docs for Databricks v1.90.0
published on Thursday, Mar 19, 2026 by Pulumi
databricks logo
Viewing docs for Databricks v1.90.0
published on Thursday, Mar 19, 2026 by Pulumi

    Public Beta

    This data source lists all Postgres projects in the workspace.

    Example Usage

    List All Projects

    import * as pulumi from "@pulumi/pulumi";
    import * as databricks from "@pulumi/databricks";
    
    const all = databricks.getPostgresProjects({});
    export const projectNames = all.then(all => .map(project => (project.name)));
    
    import pulumi
    import pulumi_databricks as databricks
    
    all = databricks.get_postgres_projects()
    pulumi.export("projectNames", [project.name for project in all.projects])
    
    Example coming soon!
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Databricks = Pulumi.Databricks;
    
    return await Deployment.RunAsync(() => 
    {
        var all = Databricks.GetPostgresProjects.Invoke();
    
        return new Dictionary<string, object?>
        {
            ["projectNames"] = .Select(project => 
            {
                return project.Name;
            }).ToList(),
        };
    });
    
    Example coming soon!
    
    Example coming soon!
    

    Using getPostgresProjects

    Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

    function getPostgresProjects(args: GetPostgresProjectsArgs, opts?: InvokeOptions): Promise<GetPostgresProjectsResult>
    function getPostgresProjectsOutput(args: GetPostgresProjectsOutputArgs, opts?: InvokeOptions): Output<GetPostgresProjectsResult>
    def get_postgres_projects(page_size: Optional[int] = None,
                              provider_config: Optional[GetPostgresProjectsProviderConfig] = None,
                              opts: Optional[InvokeOptions] = None) -> GetPostgresProjectsResult
    def get_postgres_projects_output(page_size: Optional[pulumi.Input[int]] = None,
                              provider_config: Optional[pulumi.Input[GetPostgresProjectsProviderConfigArgs]] = None,
                              opts: Optional[InvokeOptions] = None) -> Output[GetPostgresProjectsResult]
    func GetPostgresProjects(ctx *Context, args *GetPostgresProjectsArgs, opts ...InvokeOption) (*GetPostgresProjectsResult, error)
    func GetPostgresProjectsOutput(ctx *Context, args *GetPostgresProjectsOutputArgs, opts ...InvokeOption) GetPostgresProjectsResultOutput

    > Note: This function is named GetPostgresProjects in the Go SDK.

    public static class GetPostgresProjects 
    {
        public static Task<GetPostgresProjectsResult> InvokeAsync(GetPostgresProjectsArgs args, InvokeOptions? opts = null)
        public static Output<GetPostgresProjectsResult> Invoke(GetPostgresProjectsInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetPostgresProjectsResult> getPostgresProjects(GetPostgresProjectsArgs args, InvokeOptions options)
    public static Output<GetPostgresProjectsResult> getPostgresProjects(GetPostgresProjectsArgs args, InvokeOptions options)
    
    fn::invoke:
      function: databricks:index/getPostgresProjects:getPostgresProjects
      arguments:
        # arguments dictionary

    The following arguments are supported:

    PageSize int
    Upper bound for items returned. Cannot be negative. The maximum value is 100
    ProviderConfig GetPostgresProjectsProviderConfig
    Configure the provider for management through account provider.
    PageSize int
    Upper bound for items returned. Cannot be negative. The maximum value is 100
    ProviderConfig GetPostgresProjectsProviderConfig
    Configure the provider for management through account provider.
    pageSize Integer
    Upper bound for items returned. Cannot be negative. The maximum value is 100
    providerConfig GetPostgresProjectsProviderConfig
    Configure the provider for management through account provider.
    pageSize number
    Upper bound for items returned. Cannot be negative. The maximum value is 100
    providerConfig GetPostgresProjectsProviderConfig
    Configure the provider for management through account provider.
    page_size int
    Upper bound for items returned. Cannot be negative. The maximum value is 100
    provider_config GetPostgresProjectsProviderConfig
    Configure the provider for management through account provider.
    pageSize Number
    Upper bound for items returned. Cannot be negative. The maximum value is 100
    providerConfig Property Map
    Configure the provider for management through account provider.

    getPostgresProjects Result

    The following output properties are available:

    Id string
    The provider-assigned unique ID for this managed resource.
    Projects List<GetPostgresProjectsProject>
    PageSize int
    ProviderConfig GetPostgresProjectsProviderConfig
    Id string
    The provider-assigned unique ID for this managed resource.
    Projects []GetPostgresProjectsProject
    PageSize int
    ProviderConfig GetPostgresProjectsProviderConfig
    id String
    The provider-assigned unique ID for this managed resource.
    projects List<GetPostgresProjectsProject>
    pageSize Integer
    providerConfig GetPostgresProjectsProviderConfig
    id string
    The provider-assigned unique ID for this managed resource.
    projects GetPostgresProjectsProject[]
    pageSize number
    providerConfig GetPostgresProjectsProviderConfig
    id String
    The provider-assigned unique ID for this managed resource.
    projects List<Property Map>
    pageSize Number
    providerConfig Property Map

    Supporting Types

    GetPostgresProjectsProject

    CreateTime string
    (string) - A timestamp indicating when the project was created
    InitialEndpointSpec GetPostgresProjectsProjectInitialEndpointSpec
    (InitialEndpointSpec) - Configuration settings for the initial Read/Write endpoint created inside the default 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
    (string) - Output only. The full resource path of the project. Format: projects/{project_id}
    Spec GetPostgresProjectsProjectSpec
    (ProjectSpec) - The spec contains the project configuration, including display_name, pg_version (Postgres version), history_retention_duration, and default_endpoint_settings
    Status GetPostgresProjectsProjectStatus
    (ProjectStatus) - The current status of a Project
    Uid string
    (string) - System-generated unique ID for the project
    UpdateTime string
    (string) - A timestamp indicating when the project was last updated
    ProviderConfig GetPostgresProjectsProjectProviderConfig
    Configure the provider for management through account provider.
    CreateTime string
    (string) - A timestamp indicating when the project was created
    InitialEndpointSpec GetPostgresProjectsProjectInitialEndpointSpec
    (InitialEndpointSpec) - Configuration settings for the initial Read/Write endpoint created inside the default 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
    (string) - Output only. The full resource path of the project. Format: projects/{project_id}
    Spec GetPostgresProjectsProjectSpec
    (ProjectSpec) - The spec contains the project configuration, including display_name, pg_version (Postgres version), history_retention_duration, and default_endpoint_settings
    Status GetPostgresProjectsProjectStatus
    (ProjectStatus) - The current status of a Project
    Uid string
    (string) - System-generated unique ID for the project
    UpdateTime string
    (string) - A timestamp indicating when the project was last updated
    ProviderConfig GetPostgresProjectsProjectProviderConfig
    Configure the provider for management through account provider.
    createTime String
    (string) - A timestamp indicating when the project was created
    initialEndpointSpec GetPostgresProjectsProjectInitialEndpointSpec
    (InitialEndpointSpec) - Configuration settings for the initial Read/Write endpoint created inside the default 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
    (string) - Output only. The full resource path of the project. Format: projects/{project_id}
    spec GetPostgresProjectsProjectSpec
    (ProjectSpec) - The spec contains the project configuration, including display_name, pg_version (Postgres version), history_retention_duration, and default_endpoint_settings
    status GetPostgresProjectsProjectStatus
    (ProjectStatus) - The current status of a Project
    uid String
    (string) - System-generated unique ID for the project
    updateTime String
    (string) - A timestamp indicating when the project was last updated
    providerConfig GetPostgresProjectsProjectProviderConfig
    Configure the provider for management through account provider.
    createTime string
    (string) - A timestamp indicating when the project was created
    initialEndpointSpec GetPostgresProjectsProjectInitialEndpointSpec
    (InitialEndpointSpec) - Configuration settings for the initial Read/Write endpoint created inside the default 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
    (string) - Output only. The full resource path of the project. Format: projects/{project_id}
    spec GetPostgresProjectsProjectSpec
    (ProjectSpec) - The spec contains the project configuration, including display_name, pg_version (Postgres version), history_retention_duration, and default_endpoint_settings
    status GetPostgresProjectsProjectStatus
    (ProjectStatus) - The current status of a Project
    uid string
    (string) - System-generated unique ID for the project
    updateTime string
    (string) - A timestamp indicating when the project was last updated
    providerConfig GetPostgresProjectsProjectProviderConfig
    Configure the provider for management through account provider.
    create_time str
    (string) - A timestamp indicating when the project was created
    initial_endpoint_spec GetPostgresProjectsProjectInitialEndpointSpec
    (InitialEndpointSpec) - Configuration settings for the initial Read/Write endpoint created inside the default 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 str
    (string) - Output only. The full resource path of the project. Format: projects/{project_id}
    spec GetPostgresProjectsProjectSpec
    (ProjectSpec) - The spec contains the project configuration, including display_name, pg_version (Postgres version), history_retention_duration, and default_endpoint_settings
    status GetPostgresProjectsProjectStatus
    (ProjectStatus) - The current status of a Project
    uid str
    (string) - System-generated unique ID for the project
    update_time str
    (string) - A timestamp indicating when the project was last updated
    provider_config GetPostgresProjectsProjectProviderConfig
    Configure the provider for management through account provider.
    createTime String
    (string) - A timestamp indicating when the project was created
    initialEndpointSpec Property Map
    (InitialEndpointSpec) - Configuration settings for the initial Read/Write endpoint created inside the default 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
    (string) - Output only. The full resource path of the project. Format: projects/{project_id}
    spec Property Map
    (ProjectSpec) - The spec contains the project configuration, including display_name, pg_version (Postgres version), history_retention_duration, and default_endpoint_settings
    status Property Map
    (ProjectStatus) - The current status of a Project
    uid String
    (string) - System-generated unique ID for the project
    updateTime String
    (string) - A timestamp indicating when the project was last updated
    providerConfig Property Map
    Configure the provider for management through account provider.

    GetPostgresProjectsProjectInitialEndpointSpec

    Group GetPostgresProjectsProjectInitialEndpointSpecGroup
    (EndpointGroupSpec) - Settings for HA configuration of the endpoint
    Group GetPostgresProjectsProjectInitialEndpointSpecGroup
    (EndpointGroupSpec) - Settings for HA configuration of the endpoint
    group GetPostgresProjectsProjectInitialEndpointSpecGroup
    (EndpointGroupSpec) - Settings for HA configuration of the endpoint
    group GetPostgresProjectsProjectInitialEndpointSpecGroup
    (EndpointGroupSpec) - Settings for HA configuration of the endpoint
    group GetPostgresProjectsProjectInitialEndpointSpecGroup
    (EndpointGroupSpec) - Settings for HA configuration of the endpoint
    group Property Map
    (EndpointGroupSpec) - Settings for HA configuration of the endpoint

    GetPostgresProjectsProjectInitialEndpointSpecGroup

    Max int
    (integer) - The maximum number of computes in the endpoint group. Currently, this must be equal to min. Set to 1 for single compute endpoints, to disable HA. To manually suspend all computes in an endpoint group, set disabled to true on the EndpointSpec
    Min int
    (integer) - The minimum number of computes in the endpoint group. Currently, this must be equal to max. This must be greater than or equal to 1
    EnableReadableSecondaries bool
    (boolean) - Whether to allow read-only connections to read-write endpoints. Only relevant for read-write endpoints where size.max > 1
    Max int
    (integer) - The maximum number of computes in the endpoint group. Currently, this must be equal to min. Set to 1 for single compute endpoints, to disable HA. To manually suspend all computes in an endpoint group, set disabled to true on the EndpointSpec
    Min int
    (integer) - The minimum number of computes in the endpoint group. Currently, this must be equal to max. This must be greater than or equal to 1
    EnableReadableSecondaries bool
    (boolean) - Whether to allow read-only connections to read-write endpoints. Only relevant for read-write endpoints where size.max > 1
    max Integer
    (integer) - The maximum number of computes in the endpoint group. Currently, this must be equal to min. Set to 1 for single compute endpoints, to disable HA. To manually suspend all computes in an endpoint group, set disabled to true on the EndpointSpec
    min Integer
    (integer) - The minimum number of computes in the endpoint group. Currently, this must be equal to max. This must be greater than or equal to 1
    enableReadableSecondaries Boolean
    (boolean) - Whether to allow read-only connections to read-write endpoints. Only relevant for read-write endpoints where size.max > 1
    max number
    (integer) - The maximum number of computes in the endpoint group. Currently, this must be equal to min. Set to 1 for single compute endpoints, to disable HA. To manually suspend all computes in an endpoint group, set disabled to true on the EndpointSpec
    min number
    (integer) - The minimum number of computes in the endpoint group. Currently, this must be equal to max. This must be greater than or equal to 1
    enableReadableSecondaries boolean
    (boolean) - Whether to allow read-only connections to read-write endpoints. Only relevant for read-write endpoints where size.max > 1
    max int
    (integer) - The maximum number of computes in the endpoint group. Currently, this must be equal to min. Set to 1 for single compute endpoints, to disable HA. To manually suspend all computes in an endpoint group, set disabled to true on the EndpointSpec
    min int
    (integer) - The minimum number of computes in the endpoint group. Currently, this must be equal to max. This must be greater than or equal to 1
    enable_readable_secondaries bool
    (boolean) - Whether to allow read-only connections to read-write endpoints. Only relevant for read-write endpoints where size.max > 1
    max Number
    (integer) - The maximum number of computes in the endpoint group. Currently, this must be equal to min. Set to 1 for single compute endpoints, to disable HA. To manually suspend all computes in an endpoint group, set disabled to true on the EndpointSpec
    min Number
    (integer) - The minimum number of computes in the endpoint group. Currently, this must be equal to max. This must be greater than or equal to 1
    enableReadableSecondaries Boolean
    (boolean) - Whether to allow read-only connections to read-write endpoints. Only relevant for read-write endpoints where size.max > 1

    GetPostgresProjectsProjectProviderConfig

    WorkspaceId string
    Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
    WorkspaceId string
    Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
    workspaceId String
    Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
    workspaceId string
    Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
    workspace_id str
    Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
    workspaceId String
    Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.

    GetPostgresProjectsProjectSpec

    BudgetPolicyId string
    (string) - The budget policy that is applied to the project
    CustomTags List<GetPostgresProjectsProjectSpecCustomTag>
    (list of ProjectCustomTag) - The effective custom tags associated with the project
    DefaultEndpointSettings GetPostgresProjectsProjectSpecDefaultEndpointSettings
    (ProjectDefaultEndpointSettings) - The effective default endpoint settings
    DisplayName string
    (string) - The effective human-readable project name
    EnablePgNativeLogin bool
    (boolean) - Whether to enable PG native password login on all endpoints in this project
    HistoryRetentionDuration string
    (string) - The effective number of seconds to retain the shared history for point in time recovery
    PgVersion int
    (integer) - The effective major Postgres version number
    BudgetPolicyId string
    (string) - The budget policy that is applied to the project
    CustomTags []GetPostgresProjectsProjectSpecCustomTag
    (list of ProjectCustomTag) - The effective custom tags associated with the project
    DefaultEndpointSettings GetPostgresProjectsProjectSpecDefaultEndpointSettings
    (ProjectDefaultEndpointSettings) - The effective default endpoint settings
    DisplayName string
    (string) - The effective human-readable project name
    EnablePgNativeLogin bool
    (boolean) - Whether to enable PG native password login on all endpoints in this project
    HistoryRetentionDuration string
    (string) - The effective number of seconds to retain the shared history for point in time recovery
    PgVersion int
    (integer) - The effective major Postgres version number
    budgetPolicyId String
    (string) - The budget policy that is applied to the project
    customTags List<GetPostgresProjectsProjectSpecCustomTag>
    (list of ProjectCustomTag) - The effective custom tags associated with the project
    defaultEndpointSettings GetPostgresProjectsProjectSpecDefaultEndpointSettings
    (ProjectDefaultEndpointSettings) - The effective default endpoint settings
    displayName String
    (string) - The effective human-readable project name
    enablePgNativeLogin Boolean
    (boolean) - Whether to enable PG native password login on all endpoints in this project
    historyRetentionDuration String
    (string) - The effective number of seconds to retain the shared history for point in time recovery
    pgVersion Integer
    (integer) - The effective major Postgres version number
    budgetPolicyId string
    (string) - The budget policy that is applied to the project
    customTags GetPostgresProjectsProjectSpecCustomTag[]
    (list of ProjectCustomTag) - The effective custom tags associated with the project
    defaultEndpointSettings GetPostgresProjectsProjectSpecDefaultEndpointSettings
    (ProjectDefaultEndpointSettings) - The effective default endpoint settings
    displayName string
    (string) - The effective human-readable project name
    enablePgNativeLogin boolean
    (boolean) - Whether to enable PG native password login on all endpoints in this project
    historyRetentionDuration string
    (string) - The effective number of seconds to retain the shared history for point in time recovery
    pgVersion number
    (integer) - The effective major Postgres version number
    budget_policy_id str
    (string) - The budget policy that is applied to the project
    custom_tags Sequence[GetPostgresProjectsProjectSpecCustomTag]
    (list of ProjectCustomTag) - The effective custom tags associated with the project
    default_endpoint_settings GetPostgresProjectsProjectSpecDefaultEndpointSettings
    (ProjectDefaultEndpointSettings) - The effective default endpoint settings
    display_name str
    (string) - The effective human-readable project name
    enable_pg_native_login bool
    (boolean) - Whether to enable PG native password login on all endpoints in this project
    history_retention_duration str
    (string) - The effective number of seconds to retain the shared history for point in time recovery
    pg_version int
    (integer) - The effective major Postgres version number
    budgetPolicyId String
    (string) - The budget policy that is applied to the project
    customTags List<Property Map>
    (list of ProjectCustomTag) - The effective custom tags associated with the project
    defaultEndpointSettings Property Map
    (ProjectDefaultEndpointSettings) - The effective default endpoint settings
    displayName String
    (string) - The effective human-readable project name
    enablePgNativeLogin Boolean
    (boolean) - Whether to enable PG native password login on all endpoints in this project
    historyRetentionDuration String
    (string) - The effective number of seconds to retain the shared history for point in time recovery
    pgVersion Number
    (integer) - The effective major Postgres version number

    GetPostgresProjectsProjectSpecCustomTag

    Key string
    (string) - The key of the custom tag
    Value string
    (string) - The value of the custom tag
    Key string
    (string) - The key of the custom tag
    Value string
    (string) - The value of the custom tag
    key String
    (string) - The key of the custom tag
    value String
    (string) - The value of the custom tag
    key string
    (string) - The key of the custom tag
    value string
    (string) - The value of the custom tag
    key str
    (string) - The key of the custom tag
    value str
    (string) - The value of the custom tag
    key String
    (string) - The key of the custom tag
    value String
    (string) - The value of the custom tag

    GetPostgresProjectsProjectSpecDefaultEndpointSettings

    AutoscalingLimitMaxCu double
    (number) - The maximum number of Compute Units. Minimum value is 0.5
    AutoscalingLimitMinCu double
    (number) - The minimum number of Compute Units. Minimum value is 0.5
    NoSuspension bool
    (boolean) - When set to true, explicitly disables automatic suspension (never suspend). Should be set to true when provided
    PgSettings Dictionary<string, string>
    (object) - A raw representation of Postgres settings
    SuspendTimeoutDuration string
    (string) - Duration of inactivity after which the compute endpoint is automatically suspended. If specified should be between 60s and 604800s (1 minute to 1 week)
    AutoscalingLimitMaxCu float64
    (number) - The maximum number of Compute Units. Minimum value is 0.5
    AutoscalingLimitMinCu float64
    (number) - The minimum number of Compute Units. Minimum value is 0.5
    NoSuspension bool
    (boolean) - When set to true, explicitly disables automatic suspension (never suspend). Should be set to true when provided
    PgSettings map[string]string
    (object) - A raw representation of Postgres settings
    SuspendTimeoutDuration string
    (string) - Duration of inactivity after which the compute endpoint is automatically suspended. If specified should be between 60s and 604800s (1 minute to 1 week)
    autoscalingLimitMaxCu Double
    (number) - The maximum number of Compute Units. Minimum value is 0.5
    autoscalingLimitMinCu Double
    (number) - The minimum number of Compute Units. Minimum value is 0.5
    noSuspension Boolean
    (boolean) - When set to true, explicitly disables automatic suspension (never suspend). Should be set to true when provided
    pgSettings Map<String,String>
    (object) - A raw representation of Postgres settings
    suspendTimeoutDuration String
    (string) - Duration of inactivity after which the compute endpoint is automatically suspended. If specified should be between 60s and 604800s (1 minute to 1 week)
    autoscalingLimitMaxCu number
    (number) - The maximum number of Compute Units. Minimum value is 0.5
    autoscalingLimitMinCu number
    (number) - The minimum number of Compute Units. Minimum value is 0.5
    noSuspension boolean
    (boolean) - When set to true, explicitly disables automatic suspension (never suspend). Should be set to true when provided
    pgSettings {[key: string]: string}
    (object) - A raw representation of Postgres settings
    suspendTimeoutDuration string
    (string) - Duration of inactivity after which the compute endpoint is automatically suspended. If specified should be between 60s and 604800s (1 minute to 1 week)
    autoscaling_limit_max_cu float
    (number) - The maximum number of Compute Units. Minimum value is 0.5
    autoscaling_limit_min_cu float
    (number) - The minimum number of Compute Units. Minimum value is 0.5
    no_suspension bool
    (boolean) - When set to true, explicitly disables automatic suspension (never suspend). Should be set to true when provided
    pg_settings Mapping[str, str]
    (object) - A raw representation of Postgres settings
    suspend_timeout_duration str
    (string) - Duration of inactivity after which the compute endpoint is automatically suspended. If specified should be between 60s and 604800s (1 minute to 1 week)
    autoscalingLimitMaxCu Number
    (number) - The maximum number of Compute Units. Minimum value is 0.5
    autoscalingLimitMinCu Number
    (number) - The minimum number of Compute Units. Minimum value is 0.5
    noSuspension Boolean
    (boolean) - When set to true, explicitly disables automatic suspension (never suspend). Should be set to true when provided
    pgSettings Map<String>
    (object) - A raw representation of Postgres settings
    suspendTimeoutDuration String
    (string) - Duration of inactivity after which the compute endpoint is automatically suspended. If specified should be between 60s and 604800s (1 minute to 1 week)

    GetPostgresProjectsProjectStatus

    BranchLogicalSizeLimitBytes int
    (integer) - The logical size limit for a branch
    BudgetPolicyId string
    (string) - The budget policy that is applied to the project
    CustomTags List<GetPostgresProjectsProjectStatusCustomTag>
    (list of ProjectCustomTag) - The effective custom tags associated with the project
    DefaultEndpointSettings GetPostgresProjectsProjectStatusDefaultEndpointSettings
    (ProjectDefaultEndpointSettings) - The effective default endpoint settings
    DisplayName string
    (string) - The effective human-readable project name
    EnablePgNativeLogin bool
    (boolean) - Whether to enable PG native password login on all endpoints in this project
    HistoryRetentionDuration string
    (string) - The effective number of seconds to retain the shared history for point in time recovery
    Owner string
    (string) - The email of the project owner
    PgVersion int
    (integer) - The effective major Postgres version number
    SyntheticStorageSizeBytes int
    (integer) - The current space occupied by the project in storage
    BranchLogicalSizeLimitBytes int
    (integer) - The logical size limit for a branch
    BudgetPolicyId string
    (string) - The budget policy that is applied to the project
    CustomTags []GetPostgresProjectsProjectStatusCustomTag
    (list of ProjectCustomTag) - The effective custom tags associated with the project
    DefaultEndpointSettings GetPostgresProjectsProjectStatusDefaultEndpointSettings
    (ProjectDefaultEndpointSettings) - The effective default endpoint settings
    DisplayName string
    (string) - The effective human-readable project name
    EnablePgNativeLogin bool
    (boolean) - Whether to enable PG native password login on all endpoints in this project
    HistoryRetentionDuration string
    (string) - The effective number of seconds to retain the shared history for point in time recovery
    Owner string
    (string) - The email of the project owner
    PgVersion int
    (integer) - The effective major Postgres version number
    SyntheticStorageSizeBytes int
    (integer) - The current space occupied by the project in storage
    branchLogicalSizeLimitBytes Integer
    (integer) - The logical size limit for a branch
    budgetPolicyId String
    (string) - The budget policy that is applied to the project
    customTags List<GetPostgresProjectsProjectStatusCustomTag>
    (list of ProjectCustomTag) - The effective custom tags associated with the project
    defaultEndpointSettings GetPostgresProjectsProjectStatusDefaultEndpointSettings
    (ProjectDefaultEndpointSettings) - The effective default endpoint settings
    displayName String
    (string) - The effective human-readable project name
    enablePgNativeLogin Boolean
    (boolean) - Whether to enable PG native password login on all endpoints in this project
    historyRetentionDuration String
    (string) - The effective number of seconds to retain the shared history for point in time recovery
    owner String
    (string) - The email of the project owner
    pgVersion Integer
    (integer) - The effective major Postgres version number
    syntheticStorageSizeBytes Integer
    (integer) - The current space occupied by the project in storage
    branchLogicalSizeLimitBytes number
    (integer) - The logical size limit for a branch
    budgetPolicyId string
    (string) - The budget policy that is applied to the project
    customTags GetPostgresProjectsProjectStatusCustomTag[]
    (list of ProjectCustomTag) - The effective custom tags associated with the project
    defaultEndpointSettings GetPostgresProjectsProjectStatusDefaultEndpointSettings
    (ProjectDefaultEndpointSettings) - The effective default endpoint settings
    displayName string
    (string) - The effective human-readable project name
    enablePgNativeLogin boolean
    (boolean) - Whether to enable PG native password login on all endpoints in this project
    historyRetentionDuration string
    (string) - The effective number of seconds to retain the shared history for point in time recovery
    owner string
    (string) - The email of the project owner
    pgVersion number
    (integer) - The effective major Postgres version number
    syntheticStorageSizeBytes number
    (integer) - The current space occupied by the project in storage
    branch_logical_size_limit_bytes int
    (integer) - The logical size limit for a branch
    budget_policy_id str
    (string) - The budget policy that is applied to the project
    custom_tags Sequence[GetPostgresProjectsProjectStatusCustomTag]
    (list of ProjectCustomTag) - The effective custom tags associated with the project
    default_endpoint_settings GetPostgresProjectsProjectStatusDefaultEndpointSettings
    (ProjectDefaultEndpointSettings) - The effective default endpoint settings
    display_name str
    (string) - The effective human-readable project name
    enable_pg_native_login bool
    (boolean) - Whether to enable PG native password login on all endpoints in this project
    history_retention_duration str
    (string) - The effective number of seconds to retain the shared history for point in time recovery
    owner str
    (string) - The email of the project owner
    pg_version int
    (integer) - The effective major Postgres version number
    synthetic_storage_size_bytes int
    (integer) - The current space occupied by the project in storage
    branchLogicalSizeLimitBytes Number
    (integer) - The logical size limit for a branch
    budgetPolicyId String
    (string) - The budget policy that is applied to the project
    customTags List<Property Map>
    (list of ProjectCustomTag) - The effective custom tags associated with the project
    defaultEndpointSettings Property Map
    (ProjectDefaultEndpointSettings) - The effective default endpoint settings
    displayName String
    (string) - The effective human-readable project name
    enablePgNativeLogin Boolean
    (boolean) - Whether to enable PG native password login on all endpoints in this project
    historyRetentionDuration String
    (string) - The effective number of seconds to retain the shared history for point in time recovery
    owner String
    (string) - The email of the project owner
    pgVersion Number
    (integer) - The effective major Postgres version number
    syntheticStorageSizeBytes Number
    (integer) - The current space occupied by the project in storage

    GetPostgresProjectsProjectStatusCustomTag

    Key string
    (string) - The key of the custom tag
    Value string
    (string) - The value of the custom tag
    Key string
    (string) - The key of the custom tag
    Value string
    (string) - The value of the custom tag
    key String
    (string) - The key of the custom tag
    value String
    (string) - The value of the custom tag
    key string
    (string) - The key of the custom tag
    value string
    (string) - The value of the custom tag
    key str
    (string) - The key of the custom tag
    value str
    (string) - The value of the custom tag
    key String
    (string) - The key of the custom tag
    value String
    (string) - The value of the custom tag

    GetPostgresProjectsProjectStatusDefaultEndpointSettings

    AutoscalingLimitMaxCu double
    (number) - The maximum number of Compute Units. Minimum value is 0.5
    AutoscalingLimitMinCu double
    (number) - The minimum number of Compute Units. Minimum value is 0.5
    NoSuspension bool
    (boolean) - When set to true, explicitly disables automatic suspension (never suspend). Should be set to true when provided
    PgSettings Dictionary<string, string>
    (object) - A raw representation of Postgres settings
    SuspendTimeoutDuration string
    (string) - Duration of inactivity after which the compute endpoint is automatically suspended. If specified should be between 60s and 604800s (1 minute to 1 week)
    AutoscalingLimitMaxCu float64
    (number) - The maximum number of Compute Units. Minimum value is 0.5
    AutoscalingLimitMinCu float64
    (number) - The minimum number of Compute Units. Minimum value is 0.5
    NoSuspension bool
    (boolean) - When set to true, explicitly disables automatic suspension (never suspend). Should be set to true when provided
    PgSettings map[string]string
    (object) - A raw representation of Postgres settings
    SuspendTimeoutDuration string
    (string) - Duration of inactivity after which the compute endpoint is automatically suspended. If specified should be between 60s and 604800s (1 minute to 1 week)
    autoscalingLimitMaxCu Double
    (number) - The maximum number of Compute Units. Minimum value is 0.5
    autoscalingLimitMinCu Double
    (number) - The minimum number of Compute Units. Minimum value is 0.5
    noSuspension Boolean
    (boolean) - When set to true, explicitly disables automatic suspension (never suspend). Should be set to true when provided
    pgSettings Map<String,String>
    (object) - A raw representation of Postgres settings
    suspendTimeoutDuration String
    (string) - Duration of inactivity after which the compute endpoint is automatically suspended. If specified should be between 60s and 604800s (1 minute to 1 week)
    autoscalingLimitMaxCu number
    (number) - The maximum number of Compute Units. Minimum value is 0.5
    autoscalingLimitMinCu number
    (number) - The minimum number of Compute Units. Minimum value is 0.5
    noSuspension boolean
    (boolean) - When set to true, explicitly disables automatic suspension (never suspend). Should be set to true when provided
    pgSettings {[key: string]: string}
    (object) - A raw representation of Postgres settings
    suspendTimeoutDuration string
    (string) - Duration of inactivity after which the compute endpoint is automatically suspended. If specified should be between 60s and 604800s (1 minute to 1 week)
    autoscaling_limit_max_cu float
    (number) - The maximum number of Compute Units. Minimum value is 0.5
    autoscaling_limit_min_cu float
    (number) - The minimum number of Compute Units. Minimum value is 0.5
    no_suspension bool
    (boolean) - When set to true, explicitly disables automatic suspension (never suspend). Should be set to true when provided
    pg_settings Mapping[str, str]
    (object) - A raw representation of Postgres settings
    suspend_timeout_duration str
    (string) - Duration of inactivity after which the compute endpoint is automatically suspended. If specified should be between 60s and 604800s (1 minute to 1 week)
    autoscalingLimitMaxCu Number
    (number) - The maximum number of Compute Units. Minimum value is 0.5
    autoscalingLimitMinCu Number
    (number) - The minimum number of Compute Units. Minimum value is 0.5
    noSuspension Boolean
    (boolean) - When set to true, explicitly disables automatic suspension (never suspend). Should be set to true when provided
    pgSettings Map<String>
    (object) - A raw representation of Postgres settings
    suspendTimeoutDuration String
    (string) - Duration of inactivity after which the compute endpoint is automatically suspended. If specified should be between 60s and 604800s (1 minute to 1 week)

    GetPostgresProjectsProviderConfig

    WorkspaceId string
    Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
    WorkspaceId string
    Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
    workspaceId String
    Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
    workspaceId string
    Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
    workspace_id str
    Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
    workspaceId String
    Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.

    Package Details

    Repository
    databricks pulumi/pulumi-databricks
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the databricks Terraform Provider.
    databricks logo
    Viewing docs for Databricks v1.90.0
    published on Thursday, Mar 19, 2026 by Pulumi
      Try Pulumi Cloud free. Your team will thank you.