Viewing docs for Databricks v1.90.0
published on Thursday, Mar 19, 2026 by Pulumi
published on Thursday, Mar 19, 2026 by Pulumi
Viewing docs for Databricks v1.90.0
published on Thursday, Mar 19, 2026 by Pulumi
published on Thursday, Mar 19, 2026 by Pulumi
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 dictionaryThe following arguments are supported:
- Page
Size int - Upper bound for items returned. Cannot be negative. The maximum value is 100
- Provider
Config GetPostgres Projects Provider Config - 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 GetPostgres Projects Provider Config - Configure the provider for management through account provider.
- page
Size Integer - Upper bound for items returned. Cannot be negative. The maximum value is 100
- provider
Config GetPostgres Projects Provider Config - Configure the provider for management through account provider.
- page
Size number - Upper bound for items returned. Cannot be negative. The maximum value is 100
- provider
Config GetPostgres Projects Provider Config - 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 GetPostgres Projects Provider Config - Configure the provider for management through account provider.
- page
Size Number - Upper bound for items returned. Cannot be negative. The maximum value is 100
- provider
Config 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<Get
Postgres Projects Project> - Page
Size int - Provider
Config GetPostgres Projects Provider Config
- Id string
- The provider-assigned unique ID for this managed resource.
- Projects
[]Get
Postgres Projects Project - Page
Size int - Provider
Config GetPostgres Projects Provider Config
- id String
- The provider-assigned unique ID for this managed resource.
- projects
List<Get
Postgres Projects Project> - page
Size Integer - provider
Config GetPostgres Projects Provider Config
- id string
- The provider-assigned unique ID for this managed resource.
- projects
Get
Postgres Projects Project[] - page
Size number - provider
Config GetPostgres Projects Provider Config
- id str
- The provider-assigned unique ID for this managed resource.
- projects
Sequence[Get
Postgres Projects Project] - page_
size int - provider_
config GetPostgres Projects Provider Config
- id String
- The provider-assigned unique ID for this managed resource.
- projects List<Property Map>
- page
Size Number - provider
Config Property Map
Supporting Types
GetPostgresProjectsProject
- Create
Time string - (string) - A timestamp indicating when the project was created
- Initial
Endpoint GetSpec Postgres Projects Project Initial Endpoint Spec - (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
Get
Postgres Projects Project Spec - (ProjectSpec) - The spec contains the project configuration, including display_name, pg_version (Postgres version), history_retention_duration, and default_endpoint_settings
- Status
Get
Postgres Projects Project Status - (ProjectStatus) - The current status of a Project
- Uid string
- (string) - System-generated unique ID for the project
- Update
Time string - (string) - A timestamp indicating when the project was last updated
- Provider
Config GetPostgres Projects Project Provider Config - Configure the provider for management through account provider.
- Create
Time string - (string) - A timestamp indicating when the project was created
- Initial
Endpoint GetSpec Postgres Projects Project Initial Endpoint Spec - (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
Get
Postgres Projects Project Spec - (ProjectSpec) - The spec contains the project configuration, including display_name, pg_version (Postgres version), history_retention_duration, and default_endpoint_settings
- Status
Get
Postgres Projects Project Status - (ProjectStatus) - The current status of a Project
- Uid string
- (string) - System-generated unique ID for the project
- Update
Time string - (string) - A timestamp indicating when the project was last updated
- Provider
Config GetPostgres Projects Project Provider Config - Configure the provider for management through account provider.
- create
Time String - (string) - A timestamp indicating when the project was created
- initial
Endpoint GetSpec Postgres Projects Project Initial Endpoint Spec - (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
Get
Postgres Projects Project Spec - (ProjectSpec) - The spec contains the project configuration, including display_name, pg_version (Postgres version), history_retention_duration, and default_endpoint_settings
- status
Get
Postgres Projects Project Status - (ProjectStatus) - The current status of a Project
- uid String
- (string) - System-generated unique ID for the project
- update
Time String - (string) - A timestamp indicating when the project was last updated
- provider
Config GetPostgres Projects Project Provider Config - Configure the provider for management through account provider.
- create
Time string - (string) - A timestamp indicating when the project was created
- initial
Endpoint GetSpec Postgres Projects Project Initial Endpoint Spec - (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
Get
Postgres Projects Project Spec - (ProjectSpec) - The spec contains the project configuration, including display_name, pg_version (Postgres version), history_retention_duration, and default_endpoint_settings
- status
Get
Postgres Projects Project Status - (ProjectStatus) - The current status of a Project
- uid string
- (string) - System-generated unique ID for the project
- update
Time string - (string) - A timestamp indicating when the project was last updated
- provider
Config GetPostgres Projects Project Provider Config - Configure the provider for management through account provider.
- create_
time str - (string) - A timestamp indicating when the project was created
- initial_
endpoint_ Getspec Postgres Projects Project Initial Endpoint Spec - (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
Get
Postgres Projects Project Spec - (ProjectSpec) - The spec contains the project configuration, including display_name, pg_version (Postgres version), history_retention_duration, and default_endpoint_settings
- status
Get
Postgres Projects Project Status - (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 GetPostgres Projects Project Provider Config - Configure the provider for management through account provider.
- create
Time String - (string) - A timestamp indicating when the project was created
- initial
Endpoint Property MapSpec - (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
- update
Time String - (string) - A timestamp indicating when the project was last updated
- provider
Config Property Map - Configure the provider for management through account provider.
GetPostgresProjectsProjectInitialEndpointSpec
- Group
Get
Postgres Projects Project Initial Endpoint Spec Group - (EndpointGroupSpec) - Settings for HA configuration of the endpoint
- Group
Get
Postgres Projects Project Initial Endpoint Spec Group - (EndpointGroupSpec) - Settings for HA configuration of the endpoint
- group
Get
Postgres Projects Project Initial Endpoint Spec Group - (EndpointGroupSpec) - Settings for HA configuration of the endpoint
- group
Get
Postgres Projects Project Initial Endpoint Spec Group - (EndpointGroupSpec) - Settings for HA configuration of the endpoint
- group
Get
Postgres Projects Project Initial Endpoint Spec Group - (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
- Enable
Readable boolSecondaries - (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 boolSecondaries - (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
- enable
Readable BooleanSecondaries - (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
- enable
Readable booleanSecondaries - (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_ boolsecondaries - (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
- enable
Readable BooleanSecondaries - (boolean) - Whether to allow read-only connections to read-write endpoints. Only relevant for read-write endpoints where size.max > 1
GetPostgresProjectsProjectProviderConfig
- Workspace
Id string - Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
- Workspace
Id string - Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
- workspace
Id String - Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
- workspace
Id 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.
- workspace
Id String - Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
GetPostgresProjectsProjectSpec
- Budget
Policy stringId - (string) - The budget policy that is applied to the project
-
List<Get
Postgres Projects Project Spec Custom Tag> - (list of ProjectCustomTag) - The effective custom tags associated with the project
- Default
Endpoint GetSettings Postgres Projects Project Spec Default Endpoint Settings - (ProjectDefaultEndpointSettings) - The effective default endpoint settings
- Display
Name string - (string) - The effective human-readable project name
- Enable
Pg boolNative Login - (boolean) - Whether to enable PG native password login on all endpoints in this project
- History
Retention stringDuration - (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
- Budget
Policy stringId - (string) - The budget policy that is applied to the project
-
[]Get
Postgres Projects Project Spec Custom Tag - (list of ProjectCustomTag) - The effective custom tags associated with the project
- Default
Endpoint GetSettings Postgres Projects Project Spec Default Endpoint Settings - (ProjectDefaultEndpointSettings) - The effective default endpoint settings
- Display
Name string - (string) - The effective human-readable project name
- Enable
Pg boolNative Login - (boolean) - Whether to enable PG native password login on all endpoints in this project
- History
Retention stringDuration - (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
- budget
Policy StringId - (string) - The budget policy that is applied to the project
-
List<Get
Postgres Projects Project Spec Custom Tag> - (list of ProjectCustomTag) - The effective custom tags associated with the project
- default
Endpoint GetSettings Postgres Projects Project Spec Default Endpoint Settings - (ProjectDefaultEndpointSettings) - The effective default endpoint settings
- display
Name String - (string) - The effective human-readable project name
- enable
Pg BooleanNative Login - (boolean) - Whether to enable PG native password login on all endpoints in this project
- history
Retention StringDuration - (string) - The effective number of seconds to retain the shared history for point in time recovery
- pg
Version Integer - (integer) - The effective major Postgres version number
- budget
Policy stringId - (string) - The budget policy that is applied to the project
-
Get
Postgres Projects Project Spec Custom Tag[] - (list of ProjectCustomTag) - The effective custom tags associated with the project
- default
Endpoint GetSettings Postgres Projects Project Spec Default Endpoint Settings - (ProjectDefaultEndpointSettings) - The effective default endpoint settings
- display
Name string - (string) - The effective human-readable project name
- enable
Pg booleanNative Login - (boolean) - Whether to enable PG native password login on all endpoints in this project
- history
Retention stringDuration - (string) - The effective number of seconds to retain the shared history for point in time recovery
- pg
Version number - (integer) - The effective major Postgres version number
- budget_
policy_ strid - (string) - The budget policy that is applied to the project
-
Sequence[Get
Postgres Projects Project Spec Custom Tag] - (list of ProjectCustomTag) - The effective custom tags associated with the project
- default_
endpoint_ Getsettings Postgres Projects Project Spec Default Endpoint Settings - (ProjectDefaultEndpointSettings) - The effective default endpoint settings
- display_
name str - (string) - The effective human-readable project name
- enable_
pg_ boolnative_ login - (boolean) - Whether to enable PG native password login on all endpoints in this project
- history_
retention_ strduration - (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
- budget
Policy StringId - (string) - The budget policy that is applied to the project
- List<Property Map>
- (list of ProjectCustomTag) - The effective custom tags associated with the project
- default
Endpoint Property MapSettings - (ProjectDefaultEndpointSettings) - The effective default endpoint settings
- display
Name String - (string) - The effective human-readable project name
- enable
Pg BooleanNative Login - (boolean) - Whether to enable PG native password login on all endpoints in this project
- history
Retention StringDuration - (string) - The effective number of seconds to retain the shared history for point in time recovery
- pg
Version Number - (integer) - The effective major Postgres version number
GetPostgresProjectsProjectSpecCustomTag
GetPostgresProjectsProjectSpecDefaultEndpointSettings
- Autoscaling
Limit doubleMax Cu - (number) - The maximum number of Compute Units. Minimum value is 0.5
- Autoscaling
Limit doubleMin Cu - (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 Dictionary<string, string> - (object) - A raw representation of Postgres settings
- Suspend
Timeout stringDuration - (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 float64Max Cu - (number) - The maximum number of Compute Units. Minimum value is 0.5
- Autoscaling
Limit float64Min Cu - (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 map[string]string - (object) - A raw representation of Postgres settings
- Suspend
Timeout stringDuration - (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 DoubleMax Cu - (number) - The maximum number of Compute Units. Minimum value is 0.5
- autoscaling
Limit DoubleMin Cu - (number) - The minimum number of Compute Units. Minimum value is 0.5
- no
Suspension Boolean - (boolean) - When set to true, explicitly disables automatic suspension (never suspend). Should be set to true when provided
- pg
Settings Map<String,String> - (object) - A raw representation of Postgres settings
- suspend
Timeout StringDuration - (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 numberMax Cu - (number) - The maximum number of Compute Units. Minimum value is 0.5
- autoscaling
Limit numberMin Cu - (number) - The minimum number of Compute Units. Minimum value is 0.5
- no
Suspension boolean - (boolean) - When set to true, explicitly disables automatic suspension (never suspend). Should be set to true when provided
- pg
Settings {[key: string]: string} - (object) - A raw representation of Postgres settings
- suspend
Timeout stringDuration - (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_ floatmax_ cu - (number) - The maximum number of Compute Units. Minimum value is 0.5
- autoscaling_
limit_ floatmin_ cu - (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_ strduration - (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 NumberMax Cu - (number) - The maximum number of Compute Units. Minimum value is 0.5
- autoscaling
Limit NumberMin Cu - (number) - The minimum number of Compute Units. Minimum value is 0.5
- no
Suspension Boolean - (boolean) - When set to true, explicitly disables automatic suspension (never suspend). Should be set to true when provided
- pg
Settings Map<String> - (object) - A raw representation of Postgres settings
- suspend
Timeout StringDuration - (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
- Branch
Logical intSize Limit Bytes - (integer) - The logical size limit for a branch
- Budget
Policy stringId - (string) - The budget policy that is applied to the project
-
List<Get
Postgres Projects Project Status Custom Tag> - (list of ProjectCustomTag) - The effective custom tags associated with the project
- Default
Endpoint GetSettings Postgres Projects Project Status Default Endpoint Settings - (ProjectDefaultEndpointSettings) - The effective default endpoint settings
- Display
Name string - (string) - The effective human-readable project name
- Enable
Pg boolNative Login - (boolean) - Whether to enable PG native password login on all endpoints in this project
- History
Retention stringDuration - (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
- Pg
Version int - (integer) - The effective major Postgres version number
- Synthetic
Storage intSize Bytes - (integer) - The current space occupied by the project in storage
- Branch
Logical intSize Limit Bytes - (integer) - The logical size limit for a branch
- Budget
Policy stringId - (string) - The budget policy that is applied to the project
-
[]Get
Postgres Projects Project Status Custom Tag - (list of ProjectCustomTag) - The effective custom tags associated with the project
- Default
Endpoint GetSettings Postgres Projects Project Status Default Endpoint Settings - (ProjectDefaultEndpointSettings) - The effective default endpoint settings
- Display
Name string - (string) - The effective human-readable project name
- Enable
Pg boolNative Login - (boolean) - Whether to enable PG native password login on all endpoints in this project
- History
Retention stringDuration - (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
- Pg
Version int - (integer) - The effective major Postgres version number
- Synthetic
Storage intSize Bytes - (integer) - The current space occupied by the project in storage
- branch
Logical IntegerSize Limit Bytes - (integer) - The logical size limit for a branch
- budget
Policy StringId - (string) - The budget policy that is applied to the project
-
List<Get
Postgres Projects Project Status Custom Tag> - (list of ProjectCustomTag) - The effective custom tags associated with the project
- default
Endpoint GetSettings Postgres Projects Project Status Default Endpoint Settings - (ProjectDefaultEndpointSettings) - The effective default endpoint settings
- display
Name String - (string) - The effective human-readable project name
- enable
Pg BooleanNative Login - (boolean) - Whether to enable PG native password login on all endpoints in this project
- history
Retention StringDuration - (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
- pg
Version Integer - (integer) - The effective major Postgres version number
- synthetic
Storage IntegerSize Bytes - (integer) - The current space occupied by the project in storage
- branch
Logical numberSize Limit Bytes - (integer) - The logical size limit for a branch
- budget
Policy stringId - (string) - The budget policy that is applied to the project
-
Get
Postgres Projects Project Status Custom Tag[] - (list of ProjectCustomTag) - The effective custom tags associated with the project
- default
Endpoint GetSettings Postgres Projects Project Status Default Endpoint Settings - (ProjectDefaultEndpointSettings) - The effective default endpoint settings
- display
Name string - (string) - The effective human-readable project name
- enable
Pg booleanNative Login - (boolean) - Whether to enable PG native password login on all endpoints in this project
- history
Retention stringDuration - (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
- pg
Version number - (integer) - The effective major Postgres version number
- synthetic
Storage numberSize Bytes - (integer) - The current space occupied by the project in storage
- branch_
logical_ intsize_ limit_ bytes - (integer) - The logical size limit for a branch
- budget_
policy_ strid - (string) - The budget policy that is applied to the project
-
Sequence[Get
Postgres Projects Project Status Custom Tag] - (list of ProjectCustomTag) - The effective custom tags associated with the project
- default_
endpoint_ Getsettings Postgres Projects Project Status Default Endpoint Settings - (ProjectDefaultEndpointSettings) - The effective default endpoint settings
- display_
name str - (string) - The effective human-readable project name
- enable_
pg_ boolnative_ login - (boolean) - Whether to enable PG native password login on all endpoints in this project
- history_
retention_ strduration - (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_ intsize_ bytes - (integer) - The current space occupied by the project in storage
- branch
Logical NumberSize Limit Bytes - (integer) - The logical size limit for a branch
- budget
Policy StringId - (string) - The budget policy that is applied to the project
- List<Property Map>
- (list of ProjectCustomTag) - The effective custom tags associated with the project
- default
Endpoint Property MapSettings - (ProjectDefaultEndpointSettings) - The effective default endpoint settings
- display
Name String - (string) - The effective human-readable project name
- enable
Pg BooleanNative Login - (boolean) - Whether to enable PG native password login on all endpoints in this project
- history
Retention StringDuration - (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
- pg
Version Number - (integer) - The effective major Postgres version number
- synthetic
Storage NumberSize Bytes - (integer) - The current space occupied by the project in storage
GetPostgresProjectsProjectStatusCustomTag
GetPostgresProjectsProjectStatusDefaultEndpointSettings
- Autoscaling
Limit doubleMax Cu - (number) - The maximum number of Compute Units. Minimum value is 0.5
- Autoscaling
Limit doubleMin Cu - (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 Dictionary<string, string> - (object) - A raw representation of Postgres settings
- Suspend
Timeout stringDuration - (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 float64Max Cu - (number) - The maximum number of Compute Units. Minimum value is 0.5
- Autoscaling
Limit float64Min Cu - (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 map[string]string - (object) - A raw representation of Postgres settings
- Suspend
Timeout stringDuration - (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 DoubleMax Cu - (number) - The maximum number of Compute Units. Minimum value is 0.5
- autoscaling
Limit DoubleMin Cu - (number) - The minimum number of Compute Units. Minimum value is 0.5
- no
Suspension Boolean - (boolean) - When set to true, explicitly disables automatic suspension (never suspend). Should be set to true when provided
- pg
Settings Map<String,String> - (object) - A raw representation of Postgres settings
- suspend
Timeout StringDuration - (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 numberMax Cu - (number) - The maximum number of Compute Units. Minimum value is 0.5
- autoscaling
Limit numberMin Cu - (number) - The minimum number of Compute Units. Minimum value is 0.5
- no
Suspension boolean - (boolean) - When set to true, explicitly disables automatic suspension (never suspend). Should be set to true when provided
- pg
Settings {[key: string]: string} - (object) - A raw representation of Postgres settings
- suspend
Timeout stringDuration - (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_ floatmax_ cu - (number) - The maximum number of Compute Units. Minimum value is 0.5
- autoscaling_
limit_ floatmin_ cu - (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_ strduration - (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 NumberMax Cu - (number) - The maximum number of Compute Units. Minimum value is 0.5
- autoscaling
Limit NumberMin Cu - (number) - The minimum number of Compute Units. Minimum value is 0.5
- no
Suspension Boolean - (boolean) - When set to true, explicitly disables automatic suspension (never suspend). Should be set to true when provided
- pg
Settings Map<String> - (object) - A raw representation of Postgres settings
- suspend
Timeout StringDuration - (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
- Workspace
Id string - Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
- Workspace
Id string - Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
- workspace
Id String - Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
- workspace
Id 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.
- workspace
Id 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
databricksTerraform Provider.
Viewing docs for Databricks v1.90.0
published on Thursday, Mar 19, 2026 by Pulumi
published on Thursday, Mar 19, 2026 by Pulumi
