pulumi-digitalocean 4.40.0a1739511652__py3-none-any.whl → 4.56.0a1766428645__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (154) hide show
  1. pulumi_digitalocean/__init__.py +224 -1
  2. pulumi_digitalocean/_enums.py +19 -9
  3. pulumi_digitalocean/_inputs.py +17037 -4771
  4. pulumi_digitalocean/_utilities.py +1 -1
  5. pulumi_digitalocean/app.py +238 -88
  6. pulumi_digitalocean/byoip_prefix.py +452 -0
  7. pulumi_digitalocean/cdn.py +106 -105
  8. pulumi_digitalocean/certificate.py +139 -138
  9. pulumi_digitalocean/config/__init__.py +2 -1
  10. pulumi_digitalocean/config/__init__.pyi +2 -2
  11. pulumi_digitalocean/config/vars.py +11 -11
  12. pulumi_digitalocean/container_registries.py +285 -0
  13. pulumi_digitalocean/container_registry.py +90 -89
  14. pulumi_digitalocean/container_registry_docker_credentials.py +84 -83
  15. pulumi_digitalocean/custom_image.py +180 -179
  16. pulumi_digitalocean/database_cluster.py +402 -373
  17. pulumi_digitalocean/database_connection_pool.py +159 -158
  18. pulumi_digitalocean/database_db.py +37 -36
  19. pulumi_digitalocean/database_firewall.py +23 -22
  20. pulumi_digitalocean/database_kafka_config.py +309 -308
  21. pulumi_digitalocean/database_kafka_schema_registry.py +360 -0
  22. pulumi_digitalocean/database_kafka_topic.py +83 -82
  23. pulumi_digitalocean/database_logsink_opensearch.py +680 -0
  24. pulumi_digitalocean/database_logsink_rsyslog.py +842 -0
  25. pulumi_digitalocean/database_mongodb_config.py +105 -104
  26. pulumi_digitalocean/database_mysql_config.py +479 -478
  27. pulumi_digitalocean/database_online_migration.py +460 -0
  28. pulumi_digitalocean/database_opensearch_config.py +666 -665
  29. pulumi_digitalocean/database_postgresql_config.py +859 -858
  30. pulumi_digitalocean/database_redis_config.py +211 -206
  31. pulumi_digitalocean/database_replica.py +199 -198
  32. pulumi_digitalocean/database_user.py +93 -92
  33. pulumi_digitalocean/database_valkey_config.py +776 -0
  34. pulumi_digitalocean/dns_record.py +184 -183
  35. pulumi_digitalocean/domain.py +55 -54
  36. pulumi_digitalocean/droplet.py +403 -402
  37. pulumi_digitalocean/droplet_autoscale.py +55 -54
  38. pulumi_digitalocean/droplet_snapshot.py +73 -72
  39. pulumi_digitalocean/firewall.py +80 -79
  40. pulumi_digitalocean/floating_ip.py +63 -62
  41. pulumi_digitalocean/floating_ip_assignment.py +37 -36
  42. pulumi_digitalocean/genai_agent.py +1903 -0
  43. pulumi_digitalocean/genai_agent_knowledge_base_attachment.py +198 -0
  44. pulumi_digitalocean/genai_agent_route.py +354 -0
  45. pulumi_digitalocean/genai_function.py +464 -0
  46. pulumi_digitalocean/genai_indexing_job_cancel.py +542 -0
  47. pulumi_digitalocean/genai_knowledge_base.py +627 -0
  48. pulumi_digitalocean/genai_knowledge_base_data_source.py +220 -0
  49. pulumi_digitalocean/genai_openai_api_key.py +386 -0
  50. pulumi_digitalocean/get_account.py +18 -18
  51. pulumi_digitalocean/get_app.py +28 -28
  52. pulumi_digitalocean/get_byoip_prefix.py +214 -0
  53. pulumi_digitalocean/get_byoip_prefix_resources.py +150 -0
  54. pulumi_digitalocean/get_certificate.py +22 -22
  55. pulumi_digitalocean/get_container_registries.py +151 -0
  56. pulumi_digitalocean/get_container_registry.py +22 -22
  57. pulumi_digitalocean/get_database_ca.py +12 -12
  58. pulumi_digitalocean/get_database_cluster.py +76 -62
  59. pulumi_digitalocean/get_database_connection_pool.py +36 -36
  60. pulumi_digitalocean/get_database_metrics_credentials.py +120 -0
  61. pulumi_digitalocean/get_database_replica.py +46 -46
  62. pulumi_digitalocean/get_database_user.py +27 -27
  63. pulumi_digitalocean/get_domain.py +16 -16
  64. pulumi_digitalocean/get_domains.py +7 -7
  65. pulumi_digitalocean/get_droplet.py +72 -72
  66. pulumi_digitalocean/get_droplet_autoscale.py +23 -23
  67. pulumi_digitalocean/get_droplet_snapshot.py +38 -38
  68. pulumi_digitalocean/get_droplets.py +13 -13
  69. pulumi_digitalocean/get_firewall.py +31 -31
  70. pulumi_digitalocean/get_floating_ip.py +16 -16
  71. pulumi_digitalocean/get_genai_agent.py +572 -0
  72. pulumi_digitalocean/get_genai_agent_versions.py +128 -0
  73. pulumi_digitalocean/get_genai_agents.py +128 -0
  74. pulumi_digitalocean/get_genai_agents_by_openai_api_key.py +97 -0
  75. pulumi_digitalocean/get_genai_indexing_job.py +239 -0
  76. pulumi_digitalocean/get_genai_indexing_job_data_sources.py +97 -0
  77. pulumi_digitalocean/get_genai_knowledge_base.py +259 -0
  78. pulumi_digitalocean/get_genai_knowledge_base_data_sources.py +97 -0
  79. pulumi_digitalocean/get_genai_knowledge_base_indexing_jobs.py +108 -0
  80. pulumi_digitalocean/get_genai_knowledge_bases.py +113 -0
  81. pulumi_digitalocean/get_genai_models.py +113 -0
  82. pulumi_digitalocean/get_genai_openai_api_key.py +152 -0
  83. pulumi_digitalocean/get_genai_openai_api_keys.py +113 -0
  84. pulumi_digitalocean/get_genai_regions.py +113 -0
  85. pulumi_digitalocean/get_image.py +50 -50
  86. pulumi_digitalocean/get_images.py +7 -7
  87. pulumi_digitalocean/get_kubernetes_cluster.py +144 -53
  88. pulumi_digitalocean/get_kubernetes_versions.py +14 -14
  89. pulumi_digitalocean/get_load_balancer.py +70 -59
  90. pulumi_digitalocean/get_nfs.py +205 -0
  91. pulumi_digitalocean/get_nfs_snapshot.py +188 -0
  92. pulumi_digitalocean/get_partner_attachment.py +206 -0
  93. pulumi_digitalocean/get_partner_attachment_service_key.py +118 -0
  94. pulumi_digitalocean/get_project.py +32 -32
  95. pulumi_digitalocean/get_projects.py +7 -7
  96. pulumi_digitalocean/get_record.py +32 -32
  97. pulumi_digitalocean/get_records.py +13 -13
  98. pulumi_digitalocean/get_region.py +18 -18
  99. pulumi_digitalocean/get_regions.py +7 -7
  100. pulumi_digitalocean/get_reserved_ip.py +16 -16
  101. pulumi_digitalocean/get_reserved_ipv6.py +51 -16
  102. pulumi_digitalocean/get_sizes.py +141 -7
  103. pulumi_digitalocean/get_spaces_bucket.py +22 -22
  104. pulumi_digitalocean/get_spaces_bucket_object.py +58 -58
  105. pulumi_digitalocean/get_spaces_bucket_objects.py +46 -46
  106. pulumi_digitalocean/get_spaces_buckets.py +7 -7
  107. pulumi_digitalocean/get_spaces_key.py +157 -0
  108. pulumi_digitalocean/get_ssh_key.py +14 -14
  109. pulumi_digitalocean/get_ssh_keys.py +7 -7
  110. pulumi_digitalocean/get_tag.py +22 -22
  111. pulumi_digitalocean/get_tags.py +7 -7
  112. pulumi_digitalocean/get_volume.py +34 -34
  113. pulumi_digitalocean/get_volume_snapshot.py +40 -40
  114. pulumi_digitalocean/get_vpc.py +30 -30
  115. pulumi_digitalocean/get_vpc_nat_gateway.py +263 -0
  116. pulumi_digitalocean/get_vpc_peering.py +24 -24
  117. pulumi_digitalocean/kubernetes_cluster.py +572 -303
  118. pulumi_digitalocean/kubernetes_node_pool.py +170 -169
  119. pulumi_digitalocean/load_balancer.py +406 -372
  120. pulumi_digitalocean/monitor_alert.py +153 -156
  121. pulumi_digitalocean/nfs.py +481 -0
  122. pulumi_digitalocean/nfs_attachment.py +289 -0
  123. pulumi_digitalocean/nfs_snapshot.py +379 -0
  124. pulumi_digitalocean/outputs.py +26759 -7592
  125. pulumi_digitalocean/partner_attachment.py +555 -0
  126. pulumi_digitalocean/project.py +141 -140
  127. pulumi_digitalocean/project_resources.py +37 -36
  128. pulumi_digitalocean/provider.py +105 -84
  129. pulumi_digitalocean/pulumi-plugin.json +1 -1
  130. pulumi_digitalocean/reserved_ip.py +63 -62
  131. pulumi_digitalocean/reserved_ip_assignment.py +37 -36
  132. pulumi_digitalocean/reserved_ipv6.py +122 -62
  133. pulumi_digitalocean/reserved_ipv6_assignment.py +81 -30
  134. pulumi_digitalocean/spaces_bucket.py +107 -106
  135. pulumi_digitalocean/spaces_bucket_cors_configuration.py +40 -39
  136. pulumi_digitalocean/spaces_bucket_logging.py +346 -0
  137. pulumi_digitalocean/spaces_bucket_object.py +284 -283
  138. pulumi_digitalocean/spaces_bucket_policy.py +54 -53
  139. pulumi_digitalocean/spaces_key.py +388 -0
  140. pulumi_digitalocean/ssh_key.py +46 -45
  141. pulumi_digitalocean/tag.py +74 -73
  142. pulumi_digitalocean/uptime_alert.py +112 -111
  143. pulumi_digitalocean/uptime_check.py +90 -89
  144. pulumi_digitalocean/volume.py +183 -182
  145. pulumi_digitalocean/volume_attachment.py +37 -36
  146. pulumi_digitalocean/volume_snapshot.py +90 -89
  147. pulumi_digitalocean/vpc.py +100 -99
  148. pulumi_digitalocean/vpc_nat_gateway.py +722 -0
  149. pulumi_digitalocean/vpc_peering.py +55 -58
  150. {pulumi_digitalocean-4.40.0a1739511652.dist-info → pulumi_digitalocean-4.56.0a1766428645.dist-info}/METADATA +4 -4
  151. pulumi_digitalocean-4.56.0a1766428645.dist-info/RECORD +154 -0
  152. {pulumi_digitalocean-4.40.0a1739511652.dist-info → pulumi_digitalocean-4.56.0a1766428645.dist-info}/WHEEL +1 -1
  153. pulumi_digitalocean-4.40.0a1739511652.dist-info/RECORD +0 -108
  154. {pulumi_digitalocean-4.40.0a1739511652.dist-info → pulumi_digitalocean-4.56.0a1766428645.dist-info}/top_level.txt +0 -0
@@ -1,8 +1,8 @@
1
1
  # coding=utf-8
2
- # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
2
+ # *** WARNING: this file was generated by pulumi-language-python. ***
3
3
  # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
4
 
5
- import copy
5
+ import builtins as _builtins
6
6
  import warnings
7
7
  import sys
8
8
  import pulumi
@@ -21,112 +21,112 @@ __all__ = ['DatabasePostgresqlConfigArgs', 'DatabasePostgresqlConfig']
21
21
  @pulumi.input_type
22
22
  class DatabasePostgresqlConfigArgs:
23
23
  def __init__(__self__, *,
24
- cluster_id: pulumi.Input[str],
25
- autovacuum_analyze_scale_factor: Optional[pulumi.Input[float]] = None,
26
- autovacuum_analyze_threshold: Optional[pulumi.Input[int]] = None,
27
- autovacuum_freeze_max_age: Optional[pulumi.Input[int]] = None,
28
- autovacuum_max_workers: Optional[pulumi.Input[int]] = None,
29
- autovacuum_naptime: Optional[pulumi.Input[int]] = None,
30
- autovacuum_vacuum_cost_delay: Optional[pulumi.Input[int]] = None,
31
- autovacuum_vacuum_cost_limit: Optional[pulumi.Input[int]] = None,
32
- autovacuum_vacuum_scale_factor: Optional[pulumi.Input[float]] = None,
33
- autovacuum_vacuum_threshold: Optional[pulumi.Input[int]] = None,
34
- backup_hour: Optional[pulumi.Input[int]] = None,
35
- backup_minute: Optional[pulumi.Input[int]] = None,
36
- bgwriter_delay: Optional[pulumi.Input[int]] = None,
37
- bgwriter_flush_after: Optional[pulumi.Input[int]] = None,
38
- bgwriter_lru_maxpages: Optional[pulumi.Input[int]] = None,
39
- bgwriter_lru_multiplier: Optional[pulumi.Input[float]] = None,
40
- deadlock_timeout: Optional[pulumi.Input[int]] = None,
41
- default_toast_compression: Optional[pulumi.Input[str]] = None,
42
- idle_in_transaction_session_timeout: Optional[pulumi.Input[int]] = None,
43
- jit: Optional[pulumi.Input[bool]] = None,
44
- log_autovacuum_min_duration: Optional[pulumi.Input[int]] = None,
45
- log_error_verbosity: Optional[pulumi.Input[str]] = None,
46
- log_line_prefix: Optional[pulumi.Input[str]] = None,
47
- log_min_duration_statement: Optional[pulumi.Input[int]] = None,
48
- max_files_per_process: Optional[pulumi.Input[int]] = None,
49
- max_locks_per_transaction: Optional[pulumi.Input[int]] = None,
50
- max_logical_replication_workers: Optional[pulumi.Input[int]] = None,
51
- max_parallel_workers: Optional[pulumi.Input[int]] = None,
52
- max_parallel_workers_per_gather: Optional[pulumi.Input[int]] = None,
53
- max_pred_locks_per_transaction: Optional[pulumi.Input[int]] = None,
54
- max_prepared_transactions: Optional[pulumi.Input[int]] = None,
55
- max_replication_slots: Optional[pulumi.Input[int]] = None,
56
- max_stack_depth: Optional[pulumi.Input[int]] = None,
57
- max_standby_archive_delay: Optional[pulumi.Input[int]] = None,
58
- max_standby_streaming_delay: Optional[pulumi.Input[int]] = None,
59
- max_wal_senders: Optional[pulumi.Input[int]] = None,
60
- max_worker_processes: Optional[pulumi.Input[int]] = None,
61
- pg_partman_bgw_interval: Optional[pulumi.Input[int]] = None,
62
- pg_partman_bgw_role: Optional[pulumi.Input[str]] = None,
63
- pg_stat_statements_track: Optional[pulumi.Input[str]] = None,
24
+ cluster_id: pulumi.Input[_builtins.str],
25
+ autovacuum_analyze_scale_factor: Optional[pulumi.Input[_builtins.float]] = None,
26
+ autovacuum_analyze_threshold: Optional[pulumi.Input[_builtins.int]] = None,
27
+ autovacuum_freeze_max_age: Optional[pulumi.Input[_builtins.int]] = None,
28
+ autovacuum_max_workers: Optional[pulumi.Input[_builtins.int]] = None,
29
+ autovacuum_naptime: Optional[pulumi.Input[_builtins.int]] = None,
30
+ autovacuum_vacuum_cost_delay: Optional[pulumi.Input[_builtins.int]] = None,
31
+ autovacuum_vacuum_cost_limit: Optional[pulumi.Input[_builtins.int]] = None,
32
+ autovacuum_vacuum_scale_factor: Optional[pulumi.Input[_builtins.float]] = None,
33
+ autovacuum_vacuum_threshold: Optional[pulumi.Input[_builtins.int]] = None,
34
+ backup_hour: Optional[pulumi.Input[_builtins.int]] = None,
35
+ backup_minute: Optional[pulumi.Input[_builtins.int]] = None,
36
+ bgwriter_delay: Optional[pulumi.Input[_builtins.int]] = None,
37
+ bgwriter_flush_after: Optional[pulumi.Input[_builtins.int]] = None,
38
+ bgwriter_lru_maxpages: Optional[pulumi.Input[_builtins.int]] = None,
39
+ bgwriter_lru_multiplier: Optional[pulumi.Input[_builtins.float]] = None,
40
+ deadlock_timeout: Optional[pulumi.Input[_builtins.int]] = None,
41
+ default_toast_compression: Optional[pulumi.Input[_builtins.str]] = None,
42
+ idle_in_transaction_session_timeout: Optional[pulumi.Input[_builtins.int]] = None,
43
+ jit: Optional[pulumi.Input[_builtins.bool]] = None,
44
+ log_autovacuum_min_duration: Optional[pulumi.Input[_builtins.int]] = None,
45
+ log_error_verbosity: Optional[pulumi.Input[_builtins.str]] = None,
46
+ log_line_prefix: Optional[pulumi.Input[_builtins.str]] = None,
47
+ log_min_duration_statement: Optional[pulumi.Input[_builtins.int]] = None,
48
+ max_files_per_process: Optional[pulumi.Input[_builtins.int]] = None,
49
+ max_locks_per_transaction: Optional[pulumi.Input[_builtins.int]] = None,
50
+ max_logical_replication_workers: Optional[pulumi.Input[_builtins.int]] = None,
51
+ max_parallel_workers: Optional[pulumi.Input[_builtins.int]] = None,
52
+ max_parallel_workers_per_gather: Optional[pulumi.Input[_builtins.int]] = None,
53
+ max_pred_locks_per_transaction: Optional[pulumi.Input[_builtins.int]] = None,
54
+ max_prepared_transactions: Optional[pulumi.Input[_builtins.int]] = None,
55
+ max_replication_slots: Optional[pulumi.Input[_builtins.int]] = None,
56
+ max_stack_depth: Optional[pulumi.Input[_builtins.int]] = None,
57
+ max_standby_archive_delay: Optional[pulumi.Input[_builtins.int]] = None,
58
+ max_standby_streaming_delay: Optional[pulumi.Input[_builtins.int]] = None,
59
+ max_wal_senders: Optional[pulumi.Input[_builtins.int]] = None,
60
+ max_worker_processes: Optional[pulumi.Input[_builtins.int]] = None,
61
+ pg_partman_bgw_interval: Optional[pulumi.Input[_builtins.int]] = None,
62
+ pg_partman_bgw_role: Optional[pulumi.Input[_builtins.str]] = None,
63
+ pg_stat_statements_track: Optional[pulumi.Input[_builtins.str]] = None,
64
64
  pgbouncers: Optional[pulumi.Input[Sequence[pulumi.Input['DatabasePostgresqlConfigPgbouncerArgs']]]] = None,
65
- shared_buffers_percentage: Optional[pulumi.Input[float]] = None,
66
- temp_file_limit: Optional[pulumi.Input[int]] = None,
65
+ shared_buffers_percentage: Optional[pulumi.Input[_builtins.float]] = None,
66
+ temp_file_limit: Optional[pulumi.Input[_builtins.int]] = None,
67
67
  timescaledbs: Optional[pulumi.Input[Sequence[pulumi.Input['DatabasePostgresqlConfigTimescaledbArgs']]]] = None,
68
- timezone: Optional[pulumi.Input[str]] = None,
69
- track_activity_query_size: Optional[pulumi.Input[int]] = None,
70
- track_commit_timestamp: Optional[pulumi.Input[str]] = None,
71
- track_functions: Optional[pulumi.Input[str]] = None,
72
- track_io_timing: Optional[pulumi.Input[str]] = None,
73
- wal_sender_timeout: Optional[pulumi.Input[int]] = None,
74
- wal_writer_delay: Optional[pulumi.Input[int]] = None,
75
- work_mem: Optional[pulumi.Input[int]] = None):
68
+ timezone: Optional[pulumi.Input[_builtins.str]] = None,
69
+ track_activity_query_size: Optional[pulumi.Input[_builtins.int]] = None,
70
+ track_commit_timestamp: Optional[pulumi.Input[_builtins.str]] = None,
71
+ track_functions: Optional[pulumi.Input[_builtins.str]] = None,
72
+ track_io_timing: Optional[pulumi.Input[_builtins.str]] = None,
73
+ wal_sender_timeout: Optional[pulumi.Input[_builtins.int]] = None,
74
+ wal_writer_delay: Optional[pulumi.Input[_builtins.int]] = None,
75
+ work_mem: Optional[pulumi.Input[_builtins.int]] = None):
76
76
  """
77
77
  The set of arguments for constructing a DatabasePostgresqlConfig resource.
78
- :param pulumi.Input[str] cluster_id: The ID of the target PostgreSQL cluster.
79
- :param pulumi.Input[float] autovacuum_analyze_scale_factor: Specifies a fraction, in a decimal value, of the table size to add to autovacuum_analyze_threshold when deciding whether to trigger an ANALYZE. The default is 0.2 (20% of table size).
80
- :param pulumi.Input[int] autovacuum_analyze_threshold: Specifies the minimum number of inserted, updated, or deleted tuples needed to trigger an ANALYZE in any one table. The default is 50 tuples.
81
- :param pulumi.Input[int] autovacuum_freeze_max_age: Specifies the maximum age (in transactions) that a table's pg_class.relfrozenxid field can attain before a VACUUM operation is forced to prevent transaction ID wraparound within the table. Note that the system will launch autovacuum processes to prevent wraparound even when autovacuum is otherwise disabled. This parameter will cause the server to be restarted.
82
- :param pulumi.Input[int] autovacuum_max_workers: Specifies the maximum number of autovacuum processes (other than the autovacuum launcher) that may be running at any one time. The default is three. This parameter can only be set at server start.
83
- :param pulumi.Input[int] autovacuum_naptime: Specifies the minimum delay, in seconds, between autovacuum runs on any given database. The default is one minute.
84
- :param pulumi.Input[int] autovacuum_vacuum_cost_delay: Specifies the cost delay value, in milliseconds, that will be used in automatic VACUUM operations. If -1, uses the regular vacuum_cost_delay value, which is 20 milliseconds.
85
- :param pulumi.Input[int] autovacuum_vacuum_cost_limit: Specifies the cost limit value that will be used in automatic VACUUM operations. If -1 is specified (which is the default), the regular vacuum_cost_limit value will be used.
86
- :param pulumi.Input[float] autovacuum_vacuum_scale_factor: Specifies a fraction, in a decimal value, of the table size to add to autovacuum_vacuum_threshold when deciding whether to trigger a VACUUM. The default is 0.2 (20% of table size).
87
- :param pulumi.Input[int] autovacuum_vacuum_threshold: Specifies the minimum number of updated or deleted tuples needed to trigger a VACUUM in any one table. The default is 50 tuples.
88
- :param pulumi.Input[int] backup_hour: The hour of day (in UTC) when backup for the service starts. New backup only starts if previous backup has already completed.
89
- :param pulumi.Input[int] backup_minute: The minute of the backup hour when backup for the service starts. New backup is only started if previous backup has already completed.
90
- :param pulumi.Input[int] bgwriter_delay: Specifies the delay, in milliseconds, between activity rounds for the background writer. Default is 200 ms.
91
- :param pulumi.Input[int] bgwriter_flush_after: The amount of kilobytes that need to be written by the background writer before attempting to force the OS to issue these writes to underlying storage. Specified in kilobytes, default is 512. Setting of 0 disables forced writeback.
92
- :param pulumi.Input[int] bgwriter_lru_maxpages: The maximum number of buffers that the background writer can write. Setting this to zero disables background writing. Default is 100.
93
- :param pulumi.Input[float] bgwriter_lru_multiplier: The average recent need for new buffers is multiplied by bgwriter_lru_multiplier to arrive at an estimate of the number that will be needed during the next round, (up to bgwriter_lru_maxpages). 1.0 represents a “just in time” policy of writing exactly the number of buffers predicted to be needed. Larger values provide some cushion against spikes in demand, while smaller values intentionally leave writes to be done by server processes. The default is 2.0.
94
- :param pulumi.Input[int] deadlock_timeout: The amount of time, in milliseconds, to wait on a lock before checking to see if there is a deadlock condition.
95
- :param pulumi.Input[str] default_toast_compression: Specifies the default TOAST compression method for values of compressible columns (the default is lz4). Supported values are: `lz4`, `pglz`.
96
- :param pulumi.Input[int] idle_in_transaction_session_timeout: Time out sessions with open transactions after this number of milliseconds
97
- :param pulumi.Input[bool] jit: Activates, in a boolean, the system-wide use of Just-in-Time Compilation (JIT).
98
- :param pulumi.Input[int] log_autovacuum_min_duration: Causes each action executed by autovacuum to be logged if it ran for at least the specified number of milliseconds. Setting this to zero logs all autovacuum actions. Minus-one (the default) disables logging autovacuum actions.
99
- :param pulumi.Input[str] log_error_verbosity: Controls the amount of detail written in the server log for each message that is logged. Supported values are: `TERSE`, `DEFAULT`, `VERBOSE`.
100
- :param pulumi.Input[str] log_line_prefix: Selects one of the available log-formats. These can support popular log analyzers like pgbadger, pganalyze, etc. Supported values are: `pid=%p,user=%u,db=%d,app=%a,client=%h`, `%m [%p] %q[user=%u,db=%d,app=%a]`, `%t [%p]: [%l-1] user=%u,db=%d,app=%a,client=%h`.
101
- :param pulumi.Input[int] log_min_duration_statement: Log statements that take more than this number of milliseconds to run. If -1, disables.
102
- :param pulumi.Input[int] max_files_per_process: PostgreSQL maximum number of files that can be open per process.
103
- :param pulumi.Input[int] max_locks_per_transaction: PostgreSQL maximum locks per transaction. Once increased, this parameter cannot be lowered from its set value.
104
- :param pulumi.Input[int] max_logical_replication_workers: PostgreSQL maximum logical replication workers (taken from the pool of max_parallel_workers).
105
- :param pulumi.Input[int] max_parallel_workers: Sets the maximum number of workers that the system can support for parallel queries.
106
- :param pulumi.Input[int] max_parallel_workers_per_gather: Sets the maximum number of workers that can be started by a single Gather or Gather Merge node.
107
- :param pulumi.Input[int] max_pred_locks_per_transaction: PostgreSQL maximum predicate locks per transaction.
108
- :param pulumi.Input[int] max_prepared_transactions: PostgreSQL maximum prepared transactions. Once increased, this parameter cannot be lowered from its set value.
109
- :param pulumi.Input[int] max_replication_slots: PostgreSQL maximum replication slots.
110
- :param pulumi.Input[int] max_stack_depth: Maximum depth of the stack in bytes.
111
- :param pulumi.Input[int] max_standby_archive_delay: Max standby archive delay in milliseconds.
112
- :param pulumi.Input[int] max_standby_streaming_delay: Max standby streaming delay in milliseconds.
113
- :param pulumi.Input[int] max_wal_senders: PostgreSQL maximum WAL senders. Once increased, this parameter cannot be lowered from its set value.
114
- :param pulumi.Input[int] max_worker_processes: Sets the maximum number of background processes that the system can support. Once increased, this parameter cannot be lowered from its set value.
115
- :param pulumi.Input[int] pg_partman_bgw_interval: Sets the time interval to run pg_partman's scheduled tasks.
116
- :param pulumi.Input[str] pg_partman_bgw_role: Controls which role to use for pg_partman's scheduled background tasks. Must consist of alpha-numeric characters, dots, underscores, or dashes. May not start with dash or dot. Maximum of 64 characters.
117
- :param pulumi.Input[str] pg_stat_statements_track: Controls which statements are counted. Specify 'top' to track top-level statements (those issued directly by clients), 'all' to also track nested statements (such as statements invoked within functions), or 'none' to disable statement statistics collection. The default value is top. Supported values are: `all`, `top`, `none`.
78
+ :param pulumi.Input[_builtins.str] cluster_id: The ID of the target PostgreSQL cluster.
79
+ :param pulumi.Input[_builtins.float] autovacuum_analyze_scale_factor: Specifies a fraction, in a decimal value, of the table size to add to autovacuum_analyze_threshold when deciding whether to trigger an ANALYZE. The default is 0.2 (20% of table size).
80
+ :param pulumi.Input[_builtins.int] autovacuum_analyze_threshold: Specifies the minimum number of inserted, updated, or deleted tuples needed to trigger an ANALYZE in any one table. The default is 50 tuples.
81
+ :param pulumi.Input[_builtins.int] autovacuum_freeze_max_age: Specifies the maximum age (in transactions) that a table's pg_class.relfrozenxid field can attain before a VACUUM operation is forced to prevent transaction ID wraparound within the table. Note that the system will launch autovacuum processes to prevent wraparound even when autovacuum is otherwise disabled. This parameter will cause the server to be restarted.
82
+ :param pulumi.Input[_builtins.int] autovacuum_max_workers: Specifies the maximum number of autovacuum processes (other than the autovacuum launcher) that may be running at any one time. The default is three. This parameter can only be set at server start.
83
+ :param pulumi.Input[_builtins.int] autovacuum_naptime: Specifies the minimum delay, in seconds, between autovacuum runs on any given database. The default is one minute.
84
+ :param pulumi.Input[_builtins.int] autovacuum_vacuum_cost_delay: Specifies the cost delay value, in milliseconds, that will be used in automatic VACUUM operations. If -1, uses the regular vacuum_cost_delay value, which is 20 milliseconds.
85
+ :param pulumi.Input[_builtins.int] autovacuum_vacuum_cost_limit: Specifies the cost limit value that will be used in automatic VACUUM operations. If -1 is specified (which is the default), the regular vacuum_cost_limit value will be used.
86
+ :param pulumi.Input[_builtins.float] autovacuum_vacuum_scale_factor: Specifies a fraction, in a decimal value, of the table size to add to autovacuum_vacuum_threshold when deciding whether to trigger a VACUUM. The default is 0.2 (20% of table size).
87
+ :param pulumi.Input[_builtins.int] autovacuum_vacuum_threshold: Specifies the minimum number of updated or deleted tuples needed to trigger a VACUUM in any one table. The default is 50 tuples.
88
+ :param pulumi.Input[_builtins.int] backup_hour: The hour of day (in UTC) when backup for the service starts. New backup only starts if previous backup has already completed.
89
+ :param pulumi.Input[_builtins.int] backup_minute: The minute of the backup hour when backup for the service starts. New backup is only started if previous backup has already completed.
90
+ :param pulumi.Input[_builtins.int] bgwriter_delay: Specifies the delay, in milliseconds, between activity rounds for the background writer. Default is 200 ms.
91
+ :param pulumi.Input[_builtins.int] bgwriter_flush_after: The amount of kilobytes that need to be written by the background writer before attempting to force the OS to issue these writes to underlying storage. Specified in kilobytes, default is 512. Setting of 0 disables forced writeback.
92
+ :param pulumi.Input[_builtins.int] bgwriter_lru_maxpages: The maximum number of buffers that the background writer can write. Setting this to zero disables background writing. Default is 100.
93
+ :param pulumi.Input[_builtins.float] bgwriter_lru_multiplier: The average recent need for new buffers is multiplied by bgwriter_lru_multiplier to arrive at an estimate of the number that will be needed during the next round, (up to bgwriter_lru_maxpages). 1.0 represents a “just in time” policy of writing exactly the number of buffers predicted to be needed. Larger values provide some cushion against spikes in demand, while smaller values intentionally leave writes to be done by server processes. The default is 2.0.
94
+ :param pulumi.Input[_builtins.int] deadlock_timeout: The amount of time, in milliseconds, to wait on a lock before checking to see if there is a deadlock condition.
95
+ :param pulumi.Input[_builtins.str] default_toast_compression: Specifies the default TOAST compression method for values of compressible columns (the default is lz4). Supported values are: `lz4`, `pglz`.
96
+ :param pulumi.Input[_builtins.int] idle_in_transaction_session_timeout: Time out sessions with open transactions after this number of milliseconds
97
+ :param pulumi.Input[_builtins.bool] jit: Activates, in a boolean, the system-wide use of Just-in-Time Compilation (JIT).
98
+ :param pulumi.Input[_builtins.int] log_autovacuum_min_duration: Causes each action executed by autovacuum to be logged if it ran for at least the specified number of milliseconds. Setting this to zero logs all autovacuum actions. Minus-one (the default) disables logging autovacuum actions.
99
+ :param pulumi.Input[_builtins.str] log_error_verbosity: Controls the amount of detail written in the server log for each message that is logged. Supported values are: `TERSE`, `DEFAULT`, `VERBOSE`.
100
+ :param pulumi.Input[_builtins.str] log_line_prefix: Selects one of the available log-formats. These can support popular log analyzers like pgbadger, pganalyze, etc. Supported values are: `pid=%p,user=%u,db=%d,app=%a,client=%h`, `%m [%p] %q[user=%u,db=%d,app=%a]`, `%t [%p]: [%l-1] user=%u,db=%d,app=%a,client=%h`.
101
+ :param pulumi.Input[_builtins.int] log_min_duration_statement: Log statements that take more than this number of milliseconds to run. If -1, disables.
102
+ :param pulumi.Input[_builtins.int] max_files_per_process: PostgreSQL maximum number of files that can be open per process.
103
+ :param pulumi.Input[_builtins.int] max_locks_per_transaction: PostgreSQL maximum locks per transaction. Once increased, this parameter cannot be lowered from its set value.
104
+ :param pulumi.Input[_builtins.int] max_logical_replication_workers: PostgreSQL maximum logical replication workers (taken from the pool of max_parallel_workers).
105
+ :param pulumi.Input[_builtins.int] max_parallel_workers: Sets the maximum number of workers that the system can support for parallel queries.
106
+ :param pulumi.Input[_builtins.int] max_parallel_workers_per_gather: Sets the maximum number of workers that can be started by a single Gather or Gather Merge node.
107
+ :param pulumi.Input[_builtins.int] max_pred_locks_per_transaction: PostgreSQL maximum predicate locks per transaction.
108
+ :param pulumi.Input[_builtins.int] max_prepared_transactions: PostgreSQL maximum prepared transactions. Once increased, this parameter cannot be lowered from its set value.
109
+ :param pulumi.Input[_builtins.int] max_replication_slots: PostgreSQL maximum replication slots.
110
+ :param pulumi.Input[_builtins.int] max_stack_depth: Maximum depth of the stack in bytes.
111
+ :param pulumi.Input[_builtins.int] max_standby_archive_delay: Max standby archive delay in milliseconds.
112
+ :param pulumi.Input[_builtins.int] max_standby_streaming_delay: Max standby streaming delay in milliseconds.
113
+ :param pulumi.Input[_builtins.int] max_wal_senders: PostgreSQL maximum WAL senders. Once increased, this parameter cannot be lowered from its set value.
114
+ :param pulumi.Input[_builtins.int] max_worker_processes: Sets the maximum number of background processes that the system can support. Once increased, this parameter cannot be lowered from its set value.
115
+ :param pulumi.Input[_builtins.int] pg_partman_bgw_interval: Sets the time interval to run pg_partman's scheduled tasks.
116
+ :param pulumi.Input[_builtins.str] pg_partman_bgw_role: Controls which role to use for pg_partman's scheduled background tasks. Must consist of alpha-numeric characters, dots, underscores, or dashes. May not start with dash or dot. Maximum of 64 characters.
117
+ :param pulumi.Input[_builtins.str] pg_stat_statements_track: Controls which statements are counted. Specify 'top' to track top-level statements (those issued directly by clients), 'all' to also track nested statements (such as statements invoked within functions), or 'none' to disable statement statistics collection. The default value is top. Supported values are: `all`, `top`, `none`.
118
118
  :param pulumi.Input[Sequence[pulumi.Input['DatabasePostgresqlConfigPgbouncerArgs']]] pgbouncers: PGBouncer connection pooling settings
119
- :param pulumi.Input[float] shared_buffers_percentage: Percentage of total RAM that the database server uses for shared memory buffers. Valid range is 20-60 (float), which corresponds to 20% - 60%. This setting adjusts the shared_buffers configuration value.
120
- :param pulumi.Input[int] temp_file_limit: PostgreSQL temporary file limit in KiB. If -1, sets to unlimited.
119
+ :param pulumi.Input[_builtins.float] shared_buffers_percentage: Percentage of total RAM that the database server uses for shared memory buffers. Valid range is 20-60 (float), which corresponds to 20% - 60%. This setting adjusts the shared_buffers configuration value.
120
+ :param pulumi.Input[_builtins.int] temp_file_limit: PostgreSQL temporary file limit in KiB. If -1, sets to unlimited.
121
121
  :param pulumi.Input[Sequence[pulumi.Input['DatabasePostgresqlConfigTimescaledbArgs']]] timescaledbs: TimescaleDB extension configuration values
122
- :param pulumi.Input[str] timezone: PostgreSQL service timezone
123
- :param pulumi.Input[int] track_activity_query_size: Specifies the number of bytes reserved to track the currently executing command for each active session.
124
- :param pulumi.Input[str] track_commit_timestamp: Record commit time of transactions. The default value is top. Supported values are: `off`, `on`.
125
- :param pulumi.Input[str] track_functions: Enables tracking of function call counts and time used. The default value is top. Supported values are: `all`, `pl`, `none`.
126
- :param pulumi.Input[str] track_io_timing: Enables timing of database I/O calls. This parameter is off by default, because it will repeatedly query the operating system for the current time, which may cause significant overhead on some platforms. The default value is top. Supported values are: `off`, `on`.
127
- :param pulumi.Input[int] wal_sender_timeout: Terminate replication connections that are inactive for longer than this amount of time, in milliseconds. Setting this value to zero disables the timeout. Must be either 0 or between 5000 and 10800000.
128
- :param pulumi.Input[int] wal_writer_delay: WAL flush interval in milliseconds. Note that setting this value to lower than the default 200ms may negatively impact performance
129
- :param pulumi.Input[int] work_mem: The maximum amount of memory, in MB, used by a query operation (such as a sort or hash table) before writing to temporary disk files. Default is 1MB + 0.075% of total RAM (up to 32MB).
122
+ :param pulumi.Input[_builtins.str] timezone: PostgreSQL service timezone
123
+ :param pulumi.Input[_builtins.int] track_activity_query_size: Specifies the number of bytes reserved to track the currently executing command for each active session.
124
+ :param pulumi.Input[_builtins.str] track_commit_timestamp: Record commit time of transactions. The default value is top. Supported values are: `off`, `on`.
125
+ :param pulumi.Input[_builtins.str] track_functions: Enables tracking of function call counts and time used. The default value is top. Supported values are: `all`, `pl`, `none`.
126
+ :param pulumi.Input[_builtins.str] track_io_timing: Enables timing of database I/O calls. This parameter is off by default, because it will repeatedly query the operating system for the current time, which may cause significant overhead on some platforms. The default value is top. Supported values are: `off`, `on`.
127
+ :param pulumi.Input[_builtins.int] wal_sender_timeout: Terminate replication connections that are inactive for longer than this amount of time, in milliseconds. Setting this value to zero disables the timeout. Must be either 0 or between 5000 and 10800000.
128
+ :param pulumi.Input[_builtins.int] wal_writer_delay: WAL flush interval in milliseconds. Note that setting this value to lower than the default 200ms may negatively impact performance
129
+ :param pulumi.Input[_builtins.int] work_mem: The maximum amount of memory, in MB, used by a query operation (such as a sort or hash table) before writing to temporary disk files. Default is 1MB + 0.075% of total RAM (up to 32MB).
130
130
  """
131
131
  pulumi.set(__self__, "cluster_id", cluster_id)
132
132
  if autovacuum_analyze_scale_factor is not None:
@@ -232,487 +232,487 @@ class DatabasePostgresqlConfigArgs:
232
232
  if work_mem is not None:
233
233
  pulumi.set(__self__, "work_mem", work_mem)
234
234
 
235
- @property
235
+ @_builtins.property
236
236
  @pulumi.getter(name="clusterId")
237
- def cluster_id(self) -> pulumi.Input[str]:
237
+ def cluster_id(self) -> pulumi.Input[_builtins.str]:
238
238
  """
239
239
  The ID of the target PostgreSQL cluster.
240
240
  """
241
241
  return pulumi.get(self, "cluster_id")
242
242
 
243
243
  @cluster_id.setter
244
- def cluster_id(self, value: pulumi.Input[str]):
244
+ def cluster_id(self, value: pulumi.Input[_builtins.str]):
245
245
  pulumi.set(self, "cluster_id", value)
246
246
 
247
- @property
247
+ @_builtins.property
248
248
  @pulumi.getter(name="autovacuumAnalyzeScaleFactor")
249
- def autovacuum_analyze_scale_factor(self) -> Optional[pulumi.Input[float]]:
249
+ def autovacuum_analyze_scale_factor(self) -> Optional[pulumi.Input[_builtins.float]]:
250
250
  """
251
251
  Specifies a fraction, in a decimal value, of the table size to add to autovacuum_analyze_threshold when deciding whether to trigger an ANALYZE. The default is 0.2 (20% of table size).
252
252
  """
253
253
  return pulumi.get(self, "autovacuum_analyze_scale_factor")
254
254
 
255
255
  @autovacuum_analyze_scale_factor.setter
256
- def autovacuum_analyze_scale_factor(self, value: Optional[pulumi.Input[float]]):
256
+ def autovacuum_analyze_scale_factor(self, value: Optional[pulumi.Input[_builtins.float]]):
257
257
  pulumi.set(self, "autovacuum_analyze_scale_factor", value)
258
258
 
259
- @property
259
+ @_builtins.property
260
260
  @pulumi.getter(name="autovacuumAnalyzeThreshold")
261
- def autovacuum_analyze_threshold(self) -> Optional[pulumi.Input[int]]:
261
+ def autovacuum_analyze_threshold(self) -> Optional[pulumi.Input[_builtins.int]]:
262
262
  """
263
263
  Specifies the minimum number of inserted, updated, or deleted tuples needed to trigger an ANALYZE in any one table. The default is 50 tuples.
264
264
  """
265
265
  return pulumi.get(self, "autovacuum_analyze_threshold")
266
266
 
267
267
  @autovacuum_analyze_threshold.setter
268
- def autovacuum_analyze_threshold(self, value: Optional[pulumi.Input[int]]):
268
+ def autovacuum_analyze_threshold(self, value: Optional[pulumi.Input[_builtins.int]]):
269
269
  pulumi.set(self, "autovacuum_analyze_threshold", value)
270
270
 
271
- @property
271
+ @_builtins.property
272
272
  @pulumi.getter(name="autovacuumFreezeMaxAge")
273
- def autovacuum_freeze_max_age(self) -> Optional[pulumi.Input[int]]:
273
+ def autovacuum_freeze_max_age(self) -> Optional[pulumi.Input[_builtins.int]]:
274
274
  """
275
275
  Specifies the maximum age (in transactions) that a table's pg_class.relfrozenxid field can attain before a VACUUM operation is forced to prevent transaction ID wraparound within the table. Note that the system will launch autovacuum processes to prevent wraparound even when autovacuum is otherwise disabled. This parameter will cause the server to be restarted.
276
276
  """
277
277
  return pulumi.get(self, "autovacuum_freeze_max_age")
278
278
 
279
279
  @autovacuum_freeze_max_age.setter
280
- def autovacuum_freeze_max_age(self, value: Optional[pulumi.Input[int]]):
280
+ def autovacuum_freeze_max_age(self, value: Optional[pulumi.Input[_builtins.int]]):
281
281
  pulumi.set(self, "autovacuum_freeze_max_age", value)
282
282
 
283
- @property
283
+ @_builtins.property
284
284
  @pulumi.getter(name="autovacuumMaxWorkers")
285
- def autovacuum_max_workers(self) -> Optional[pulumi.Input[int]]:
285
+ def autovacuum_max_workers(self) -> Optional[pulumi.Input[_builtins.int]]:
286
286
  """
287
287
  Specifies the maximum number of autovacuum processes (other than the autovacuum launcher) that may be running at any one time. The default is three. This parameter can only be set at server start.
288
288
  """
289
289
  return pulumi.get(self, "autovacuum_max_workers")
290
290
 
291
291
  @autovacuum_max_workers.setter
292
- def autovacuum_max_workers(self, value: Optional[pulumi.Input[int]]):
292
+ def autovacuum_max_workers(self, value: Optional[pulumi.Input[_builtins.int]]):
293
293
  pulumi.set(self, "autovacuum_max_workers", value)
294
294
 
295
- @property
295
+ @_builtins.property
296
296
  @pulumi.getter(name="autovacuumNaptime")
297
- def autovacuum_naptime(self) -> Optional[pulumi.Input[int]]:
297
+ def autovacuum_naptime(self) -> Optional[pulumi.Input[_builtins.int]]:
298
298
  """
299
299
  Specifies the minimum delay, in seconds, between autovacuum runs on any given database. The default is one minute.
300
300
  """
301
301
  return pulumi.get(self, "autovacuum_naptime")
302
302
 
303
303
  @autovacuum_naptime.setter
304
- def autovacuum_naptime(self, value: Optional[pulumi.Input[int]]):
304
+ def autovacuum_naptime(self, value: Optional[pulumi.Input[_builtins.int]]):
305
305
  pulumi.set(self, "autovacuum_naptime", value)
306
306
 
307
- @property
307
+ @_builtins.property
308
308
  @pulumi.getter(name="autovacuumVacuumCostDelay")
309
- def autovacuum_vacuum_cost_delay(self) -> Optional[pulumi.Input[int]]:
309
+ def autovacuum_vacuum_cost_delay(self) -> Optional[pulumi.Input[_builtins.int]]:
310
310
  """
311
311
  Specifies the cost delay value, in milliseconds, that will be used in automatic VACUUM operations. If -1, uses the regular vacuum_cost_delay value, which is 20 milliseconds.
312
312
  """
313
313
  return pulumi.get(self, "autovacuum_vacuum_cost_delay")
314
314
 
315
315
  @autovacuum_vacuum_cost_delay.setter
316
- def autovacuum_vacuum_cost_delay(self, value: Optional[pulumi.Input[int]]):
316
+ def autovacuum_vacuum_cost_delay(self, value: Optional[pulumi.Input[_builtins.int]]):
317
317
  pulumi.set(self, "autovacuum_vacuum_cost_delay", value)
318
318
 
319
- @property
319
+ @_builtins.property
320
320
  @pulumi.getter(name="autovacuumVacuumCostLimit")
321
- def autovacuum_vacuum_cost_limit(self) -> Optional[pulumi.Input[int]]:
321
+ def autovacuum_vacuum_cost_limit(self) -> Optional[pulumi.Input[_builtins.int]]:
322
322
  """
323
323
  Specifies the cost limit value that will be used in automatic VACUUM operations. If -1 is specified (which is the default), the regular vacuum_cost_limit value will be used.
324
324
  """
325
325
  return pulumi.get(self, "autovacuum_vacuum_cost_limit")
326
326
 
327
327
  @autovacuum_vacuum_cost_limit.setter
328
- def autovacuum_vacuum_cost_limit(self, value: Optional[pulumi.Input[int]]):
328
+ def autovacuum_vacuum_cost_limit(self, value: Optional[pulumi.Input[_builtins.int]]):
329
329
  pulumi.set(self, "autovacuum_vacuum_cost_limit", value)
330
330
 
331
- @property
331
+ @_builtins.property
332
332
  @pulumi.getter(name="autovacuumVacuumScaleFactor")
333
- def autovacuum_vacuum_scale_factor(self) -> Optional[pulumi.Input[float]]:
333
+ def autovacuum_vacuum_scale_factor(self) -> Optional[pulumi.Input[_builtins.float]]:
334
334
  """
335
335
  Specifies a fraction, in a decimal value, of the table size to add to autovacuum_vacuum_threshold when deciding whether to trigger a VACUUM. The default is 0.2 (20% of table size).
336
336
  """
337
337
  return pulumi.get(self, "autovacuum_vacuum_scale_factor")
338
338
 
339
339
  @autovacuum_vacuum_scale_factor.setter
340
- def autovacuum_vacuum_scale_factor(self, value: Optional[pulumi.Input[float]]):
340
+ def autovacuum_vacuum_scale_factor(self, value: Optional[pulumi.Input[_builtins.float]]):
341
341
  pulumi.set(self, "autovacuum_vacuum_scale_factor", value)
342
342
 
343
- @property
343
+ @_builtins.property
344
344
  @pulumi.getter(name="autovacuumVacuumThreshold")
345
- def autovacuum_vacuum_threshold(self) -> Optional[pulumi.Input[int]]:
345
+ def autovacuum_vacuum_threshold(self) -> Optional[pulumi.Input[_builtins.int]]:
346
346
  """
347
347
  Specifies the minimum number of updated or deleted tuples needed to trigger a VACUUM in any one table. The default is 50 tuples.
348
348
  """
349
349
  return pulumi.get(self, "autovacuum_vacuum_threshold")
350
350
 
351
351
  @autovacuum_vacuum_threshold.setter
352
- def autovacuum_vacuum_threshold(self, value: Optional[pulumi.Input[int]]):
352
+ def autovacuum_vacuum_threshold(self, value: Optional[pulumi.Input[_builtins.int]]):
353
353
  pulumi.set(self, "autovacuum_vacuum_threshold", value)
354
354
 
355
- @property
355
+ @_builtins.property
356
356
  @pulumi.getter(name="backupHour")
357
- def backup_hour(self) -> Optional[pulumi.Input[int]]:
357
+ def backup_hour(self) -> Optional[pulumi.Input[_builtins.int]]:
358
358
  """
359
359
  The hour of day (in UTC) when backup for the service starts. New backup only starts if previous backup has already completed.
360
360
  """
361
361
  return pulumi.get(self, "backup_hour")
362
362
 
363
363
  @backup_hour.setter
364
- def backup_hour(self, value: Optional[pulumi.Input[int]]):
364
+ def backup_hour(self, value: Optional[pulumi.Input[_builtins.int]]):
365
365
  pulumi.set(self, "backup_hour", value)
366
366
 
367
- @property
367
+ @_builtins.property
368
368
  @pulumi.getter(name="backupMinute")
369
- def backup_minute(self) -> Optional[pulumi.Input[int]]:
369
+ def backup_minute(self) -> Optional[pulumi.Input[_builtins.int]]:
370
370
  """
371
371
  The minute of the backup hour when backup for the service starts. New backup is only started if previous backup has already completed.
372
372
  """
373
373
  return pulumi.get(self, "backup_minute")
374
374
 
375
375
  @backup_minute.setter
376
- def backup_minute(self, value: Optional[pulumi.Input[int]]):
376
+ def backup_minute(self, value: Optional[pulumi.Input[_builtins.int]]):
377
377
  pulumi.set(self, "backup_minute", value)
378
378
 
379
- @property
379
+ @_builtins.property
380
380
  @pulumi.getter(name="bgwriterDelay")
381
- def bgwriter_delay(self) -> Optional[pulumi.Input[int]]:
381
+ def bgwriter_delay(self) -> Optional[pulumi.Input[_builtins.int]]:
382
382
  """
383
383
  Specifies the delay, in milliseconds, between activity rounds for the background writer. Default is 200 ms.
384
384
  """
385
385
  return pulumi.get(self, "bgwriter_delay")
386
386
 
387
387
  @bgwriter_delay.setter
388
- def bgwriter_delay(self, value: Optional[pulumi.Input[int]]):
388
+ def bgwriter_delay(self, value: Optional[pulumi.Input[_builtins.int]]):
389
389
  pulumi.set(self, "bgwriter_delay", value)
390
390
 
391
- @property
391
+ @_builtins.property
392
392
  @pulumi.getter(name="bgwriterFlushAfter")
393
- def bgwriter_flush_after(self) -> Optional[pulumi.Input[int]]:
393
+ def bgwriter_flush_after(self) -> Optional[pulumi.Input[_builtins.int]]:
394
394
  """
395
395
  The amount of kilobytes that need to be written by the background writer before attempting to force the OS to issue these writes to underlying storage. Specified in kilobytes, default is 512. Setting of 0 disables forced writeback.
396
396
  """
397
397
  return pulumi.get(self, "bgwriter_flush_after")
398
398
 
399
399
  @bgwriter_flush_after.setter
400
- def bgwriter_flush_after(self, value: Optional[pulumi.Input[int]]):
400
+ def bgwriter_flush_after(self, value: Optional[pulumi.Input[_builtins.int]]):
401
401
  pulumi.set(self, "bgwriter_flush_after", value)
402
402
 
403
- @property
403
+ @_builtins.property
404
404
  @pulumi.getter(name="bgwriterLruMaxpages")
405
- def bgwriter_lru_maxpages(self) -> Optional[pulumi.Input[int]]:
405
+ def bgwriter_lru_maxpages(self) -> Optional[pulumi.Input[_builtins.int]]:
406
406
  """
407
407
  The maximum number of buffers that the background writer can write. Setting this to zero disables background writing. Default is 100.
408
408
  """
409
409
  return pulumi.get(self, "bgwriter_lru_maxpages")
410
410
 
411
411
  @bgwriter_lru_maxpages.setter
412
- def bgwriter_lru_maxpages(self, value: Optional[pulumi.Input[int]]):
412
+ def bgwriter_lru_maxpages(self, value: Optional[pulumi.Input[_builtins.int]]):
413
413
  pulumi.set(self, "bgwriter_lru_maxpages", value)
414
414
 
415
- @property
415
+ @_builtins.property
416
416
  @pulumi.getter(name="bgwriterLruMultiplier")
417
- def bgwriter_lru_multiplier(self) -> Optional[pulumi.Input[float]]:
417
+ def bgwriter_lru_multiplier(self) -> Optional[pulumi.Input[_builtins.float]]:
418
418
  """
419
419
  The average recent need for new buffers is multiplied by bgwriter_lru_multiplier to arrive at an estimate of the number that will be needed during the next round, (up to bgwriter_lru_maxpages). 1.0 represents a “just in time” policy of writing exactly the number of buffers predicted to be needed. Larger values provide some cushion against spikes in demand, while smaller values intentionally leave writes to be done by server processes. The default is 2.0.
420
420
  """
421
421
  return pulumi.get(self, "bgwriter_lru_multiplier")
422
422
 
423
423
  @bgwriter_lru_multiplier.setter
424
- def bgwriter_lru_multiplier(self, value: Optional[pulumi.Input[float]]):
424
+ def bgwriter_lru_multiplier(self, value: Optional[pulumi.Input[_builtins.float]]):
425
425
  pulumi.set(self, "bgwriter_lru_multiplier", value)
426
426
 
427
- @property
427
+ @_builtins.property
428
428
  @pulumi.getter(name="deadlockTimeout")
429
- def deadlock_timeout(self) -> Optional[pulumi.Input[int]]:
429
+ def deadlock_timeout(self) -> Optional[pulumi.Input[_builtins.int]]:
430
430
  """
431
431
  The amount of time, in milliseconds, to wait on a lock before checking to see if there is a deadlock condition.
432
432
  """
433
433
  return pulumi.get(self, "deadlock_timeout")
434
434
 
435
435
  @deadlock_timeout.setter
436
- def deadlock_timeout(self, value: Optional[pulumi.Input[int]]):
436
+ def deadlock_timeout(self, value: Optional[pulumi.Input[_builtins.int]]):
437
437
  pulumi.set(self, "deadlock_timeout", value)
438
438
 
439
- @property
439
+ @_builtins.property
440
440
  @pulumi.getter(name="defaultToastCompression")
441
- def default_toast_compression(self) -> Optional[pulumi.Input[str]]:
441
+ def default_toast_compression(self) -> Optional[pulumi.Input[_builtins.str]]:
442
442
  """
443
443
  Specifies the default TOAST compression method for values of compressible columns (the default is lz4). Supported values are: `lz4`, `pglz`.
444
444
  """
445
445
  return pulumi.get(self, "default_toast_compression")
446
446
 
447
447
  @default_toast_compression.setter
448
- def default_toast_compression(self, value: Optional[pulumi.Input[str]]):
448
+ def default_toast_compression(self, value: Optional[pulumi.Input[_builtins.str]]):
449
449
  pulumi.set(self, "default_toast_compression", value)
450
450
 
451
- @property
451
+ @_builtins.property
452
452
  @pulumi.getter(name="idleInTransactionSessionTimeout")
453
- def idle_in_transaction_session_timeout(self) -> Optional[pulumi.Input[int]]:
453
+ def idle_in_transaction_session_timeout(self) -> Optional[pulumi.Input[_builtins.int]]:
454
454
  """
455
455
  Time out sessions with open transactions after this number of milliseconds
456
456
  """
457
457
  return pulumi.get(self, "idle_in_transaction_session_timeout")
458
458
 
459
459
  @idle_in_transaction_session_timeout.setter
460
- def idle_in_transaction_session_timeout(self, value: Optional[pulumi.Input[int]]):
460
+ def idle_in_transaction_session_timeout(self, value: Optional[pulumi.Input[_builtins.int]]):
461
461
  pulumi.set(self, "idle_in_transaction_session_timeout", value)
462
462
 
463
- @property
463
+ @_builtins.property
464
464
  @pulumi.getter
465
- def jit(self) -> Optional[pulumi.Input[bool]]:
465
+ def jit(self) -> Optional[pulumi.Input[_builtins.bool]]:
466
466
  """
467
467
  Activates, in a boolean, the system-wide use of Just-in-Time Compilation (JIT).
468
468
  """
469
469
  return pulumi.get(self, "jit")
470
470
 
471
471
  @jit.setter
472
- def jit(self, value: Optional[pulumi.Input[bool]]):
472
+ def jit(self, value: Optional[pulumi.Input[_builtins.bool]]):
473
473
  pulumi.set(self, "jit", value)
474
474
 
475
- @property
475
+ @_builtins.property
476
476
  @pulumi.getter(name="logAutovacuumMinDuration")
477
- def log_autovacuum_min_duration(self) -> Optional[pulumi.Input[int]]:
477
+ def log_autovacuum_min_duration(self) -> Optional[pulumi.Input[_builtins.int]]:
478
478
  """
479
479
  Causes each action executed by autovacuum to be logged if it ran for at least the specified number of milliseconds. Setting this to zero logs all autovacuum actions. Minus-one (the default) disables logging autovacuum actions.
480
480
  """
481
481
  return pulumi.get(self, "log_autovacuum_min_duration")
482
482
 
483
483
  @log_autovacuum_min_duration.setter
484
- def log_autovacuum_min_duration(self, value: Optional[pulumi.Input[int]]):
484
+ def log_autovacuum_min_duration(self, value: Optional[pulumi.Input[_builtins.int]]):
485
485
  pulumi.set(self, "log_autovacuum_min_duration", value)
486
486
 
487
- @property
487
+ @_builtins.property
488
488
  @pulumi.getter(name="logErrorVerbosity")
489
- def log_error_verbosity(self) -> Optional[pulumi.Input[str]]:
489
+ def log_error_verbosity(self) -> Optional[pulumi.Input[_builtins.str]]:
490
490
  """
491
491
  Controls the amount of detail written in the server log for each message that is logged. Supported values are: `TERSE`, `DEFAULT`, `VERBOSE`.
492
492
  """
493
493
  return pulumi.get(self, "log_error_verbosity")
494
494
 
495
495
  @log_error_verbosity.setter
496
- def log_error_verbosity(self, value: Optional[pulumi.Input[str]]):
496
+ def log_error_verbosity(self, value: Optional[pulumi.Input[_builtins.str]]):
497
497
  pulumi.set(self, "log_error_verbosity", value)
498
498
 
499
- @property
499
+ @_builtins.property
500
500
  @pulumi.getter(name="logLinePrefix")
501
- def log_line_prefix(self) -> Optional[pulumi.Input[str]]:
501
+ def log_line_prefix(self) -> Optional[pulumi.Input[_builtins.str]]:
502
502
  """
503
503
  Selects one of the available log-formats. These can support popular log analyzers like pgbadger, pganalyze, etc. Supported values are: `pid=%p,user=%u,db=%d,app=%a,client=%h`, `%m [%p] %q[user=%u,db=%d,app=%a]`, `%t [%p]: [%l-1] user=%u,db=%d,app=%a,client=%h`.
504
504
  """
505
505
  return pulumi.get(self, "log_line_prefix")
506
506
 
507
507
  @log_line_prefix.setter
508
- def log_line_prefix(self, value: Optional[pulumi.Input[str]]):
508
+ def log_line_prefix(self, value: Optional[pulumi.Input[_builtins.str]]):
509
509
  pulumi.set(self, "log_line_prefix", value)
510
510
 
511
- @property
511
+ @_builtins.property
512
512
  @pulumi.getter(name="logMinDurationStatement")
513
- def log_min_duration_statement(self) -> Optional[pulumi.Input[int]]:
513
+ def log_min_duration_statement(self) -> Optional[pulumi.Input[_builtins.int]]:
514
514
  """
515
515
  Log statements that take more than this number of milliseconds to run. If -1, disables.
516
516
  """
517
517
  return pulumi.get(self, "log_min_duration_statement")
518
518
 
519
519
  @log_min_duration_statement.setter
520
- def log_min_duration_statement(self, value: Optional[pulumi.Input[int]]):
520
+ def log_min_duration_statement(self, value: Optional[pulumi.Input[_builtins.int]]):
521
521
  pulumi.set(self, "log_min_duration_statement", value)
522
522
 
523
- @property
523
+ @_builtins.property
524
524
  @pulumi.getter(name="maxFilesPerProcess")
525
- def max_files_per_process(self) -> Optional[pulumi.Input[int]]:
525
+ def max_files_per_process(self) -> Optional[pulumi.Input[_builtins.int]]:
526
526
  """
527
527
  PostgreSQL maximum number of files that can be open per process.
528
528
  """
529
529
  return pulumi.get(self, "max_files_per_process")
530
530
 
531
531
  @max_files_per_process.setter
532
- def max_files_per_process(self, value: Optional[pulumi.Input[int]]):
532
+ def max_files_per_process(self, value: Optional[pulumi.Input[_builtins.int]]):
533
533
  pulumi.set(self, "max_files_per_process", value)
534
534
 
535
- @property
535
+ @_builtins.property
536
536
  @pulumi.getter(name="maxLocksPerTransaction")
537
- def max_locks_per_transaction(self) -> Optional[pulumi.Input[int]]:
537
+ def max_locks_per_transaction(self) -> Optional[pulumi.Input[_builtins.int]]:
538
538
  """
539
539
  PostgreSQL maximum locks per transaction. Once increased, this parameter cannot be lowered from its set value.
540
540
  """
541
541
  return pulumi.get(self, "max_locks_per_transaction")
542
542
 
543
543
  @max_locks_per_transaction.setter
544
- def max_locks_per_transaction(self, value: Optional[pulumi.Input[int]]):
544
+ def max_locks_per_transaction(self, value: Optional[pulumi.Input[_builtins.int]]):
545
545
  pulumi.set(self, "max_locks_per_transaction", value)
546
546
 
547
- @property
547
+ @_builtins.property
548
548
  @pulumi.getter(name="maxLogicalReplicationWorkers")
549
- def max_logical_replication_workers(self) -> Optional[pulumi.Input[int]]:
549
+ def max_logical_replication_workers(self) -> Optional[pulumi.Input[_builtins.int]]:
550
550
  """
551
551
  PostgreSQL maximum logical replication workers (taken from the pool of max_parallel_workers).
552
552
  """
553
553
  return pulumi.get(self, "max_logical_replication_workers")
554
554
 
555
555
  @max_logical_replication_workers.setter
556
- def max_logical_replication_workers(self, value: Optional[pulumi.Input[int]]):
556
+ def max_logical_replication_workers(self, value: Optional[pulumi.Input[_builtins.int]]):
557
557
  pulumi.set(self, "max_logical_replication_workers", value)
558
558
 
559
- @property
559
+ @_builtins.property
560
560
  @pulumi.getter(name="maxParallelWorkers")
561
- def max_parallel_workers(self) -> Optional[pulumi.Input[int]]:
561
+ def max_parallel_workers(self) -> Optional[pulumi.Input[_builtins.int]]:
562
562
  """
563
563
  Sets the maximum number of workers that the system can support for parallel queries.
564
564
  """
565
565
  return pulumi.get(self, "max_parallel_workers")
566
566
 
567
567
  @max_parallel_workers.setter
568
- def max_parallel_workers(self, value: Optional[pulumi.Input[int]]):
568
+ def max_parallel_workers(self, value: Optional[pulumi.Input[_builtins.int]]):
569
569
  pulumi.set(self, "max_parallel_workers", value)
570
570
 
571
- @property
571
+ @_builtins.property
572
572
  @pulumi.getter(name="maxParallelWorkersPerGather")
573
- def max_parallel_workers_per_gather(self) -> Optional[pulumi.Input[int]]:
573
+ def max_parallel_workers_per_gather(self) -> Optional[pulumi.Input[_builtins.int]]:
574
574
  """
575
575
  Sets the maximum number of workers that can be started by a single Gather or Gather Merge node.
576
576
  """
577
577
  return pulumi.get(self, "max_parallel_workers_per_gather")
578
578
 
579
579
  @max_parallel_workers_per_gather.setter
580
- def max_parallel_workers_per_gather(self, value: Optional[pulumi.Input[int]]):
580
+ def max_parallel_workers_per_gather(self, value: Optional[pulumi.Input[_builtins.int]]):
581
581
  pulumi.set(self, "max_parallel_workers_per_gather", value)
582
582
 
583
- @property
583
+ @_builtins.property
584
584
  @pulumi.getter(name="maxPredLocksPerTransaction")
585
- def max_pred_locks_per_transaction(self) -> Optional[pulumi.Input[int]]:
585
+ def max_pred_locks_per_transaction(self) -> Optional[pulumi.Input[_builtins.int]]:
586
586
  """
587
587
  PostgreSQL maximum predicate locks per transaction.
588
588
  """
589
589
  return pulumi.get(self, "max_pred_locks_per_transaction")
590
590
 
591
591
  @max_pred_locks_per_transaction.setter
592
- def max_pred_locks_per_transaction(self, value: Optional[pulumi.Input[int]]):
592
+ def max_pred_locks_per_transaction(self, value: Optional[pulumi.Input[_builtins.int]]):
593
593
  pulumi.set(self, "max_pred_locks_per_transaction", value)
594
594
 
595
- @property
595
+ @_builtins.property
596
596
  @pulumi.getter(name="maxPreparedTransactions")
597
- def max_prepared_transactions(self) -> Optional[pulumi.Input[int]]:
597
+ def max_prepared_transactions(self) -> Optional[pulumi.Input[_builtins.int]]:
598
598
  """
599
599
  PostgreSQL maximum prepared transactions. Once increased, this parameter cannot be lowered from its set value.
600
600
  """
601
601
  return pulumi.get(self, "max_prepared_transactions")
602
602
 
603
603
  @max_prepared_transactions.setter
604
- def max_prepared_transactions(self, value: Optional[pulumi.Input[int]]):
604
+ def max_prepared_transactions(self, value: Optional[pulumi.Input[_builtins.int]]):
605
605
  pulumi.set(self, "max_prepared_transactions", value)
606
606
 
607
- @property
607
+ @_builtins.property
608
608
  @pulumi.getter(name="maxReplicationSlots")
609
- def max_replication_slots(self) -> Optional[pulumi.Input[int]]:
609
+ def max_replication_slots(self) -> Optional[pulumi.Input[_builtins.int]]:
610
610
  """
611
611
  PostgreSQL maximum replication slots.
612
612
  """
613
613
  return pulumi.get(self, "max_replication_slots")
614
614
 
615
615
  @max_replication_slots.setter
616
- def max_replication_slots(self, value: Optional[pulumi.Input[int]]):
616
+ def max_replication_slots(self, value: Optional[pulumi.Input[_builtins.int]]):
617
617
  pulumi.set(self, "max_replication_slots", value)
618
618
 
619
- @property
619
+ @_builtins.property
620
620
  @pulumi.getter(name="maxStackDepth")
621
- def max_stack_depth(self) -> Optional[pulumi.Input[int]]:
621
+ def max_stack_depth(self) -> Optional[pulumi.Input[_builtins.int]]:
622
622
  """
623
623
  Maximum depth of the stack in bytes.
624
624
  """
625
625
  return pulumi.get(self, "max_stack_depth")
626
626
 
627
627
  @max_stack_depth.setter
628
- def max_stack_depth(self, value: Optional[pulumi.Input[int]]):
628
+ def max_stack_depth(self, value: Optional[pulumi.Input[_builtins.int]]):
629
629
  pulumi.set(self, "max_stack_depth", value)
630
630
 
631
- @property
631
+ @_builtins.property
632
632
  @pulumi.getter(name="maxStandbyArchiveDelay")
633
- def max_standby_archive_delay(self) -> Optional[pulumi.Input[int]]:
633
+ def max_standby_archive_delay(self) -> Optional[pulumi.Input[_builtins.int]]:
634
634
  """
635
635
  Max standby archive delay in milliseconds.
636
636
  """
637
637
  return pulumi.get(self, "max_standby_archive_delay")
638
638
 
639
639
  @max_standby_archive_delay.setter
640
- def max_standby_archive_delay(self, value: Optional[pulumi.Input[int]]):
640
+ def max_standby_archive_delay(self, value: Optional[pulumi.Input[_builtins.int]]):
641
641
  pulumi.set(self, "max_standby_archive_delay", value)
642
642
 
643
- @property
643
+ @_builtins.property
644
644
  @pulumi.getter(name="maxStandbyStreamingDelay")
645
- def max_standby_streaming_delay(self) -> Optional[pulumi.Input[int]]:
645
+ def max_standby_streaming_delay(self) -> Optional[pulumi.Input[_builtins.int]]:
646
646
  """
647
647
  Max standby streaming delay in milliseconds.
648
648
  """
649
649
  return pulumi.get(self, "max_standby_streaming_delay")
650
650
 
651
651
  @max_standby_streaming_delay.setter
652
- def max_standby_streaming_delay(self, value: Optional[pulumi.Input[int]]):
652
+ def max_standby_streaming_delay(self, value: Optional[pulumi.Input[_builtins.int]]):
653
653
  pulumi.set(self, "max_standby_streaming_delay", value)
654
654
 
655
- @property
655
+ @_builtins.property
656
656
  @pulumi.getter(name="maxWalSenders")
657
- def max_wal_senders(self) -> Optional[pulumi.Input[int]]:
657
+ def max_wal_senders(self) -> Optional[pulumi.Input[_builtins.int]]:
658
658
  """
659
659
  PostgreSQL maximum WAL senders. Once increased, this parameter cannot be lowered from its set value.
660
660
  """
661
661
  return pulumi.get(self, "max_wal_senders")
662
662
 
663
663
  @max_wal_senders.setter
664
- def max_wal_senders(self, value: Optional[pulumi.Input[int]]):
664
+ def max_wal_senders(self, value: Optional[pulumi.Input[_builtins.int]]):
665
665
  pulumi.set(self, "max_wal_senders", value)
666
666
 
667
- @property
667
+ @_builtins.property
668
668
  @pulumi.getter(name="maxWorkerProcesses")
669
- def max_worker_processes(self) -> Optional[pulumi.Input[int]]:
669
+ def max_worker_processes(self) -> Optional[pulumi.Input[_builtins.int]]:
670
670
  """
671
671
  Sets the maximum number of background processes that the system can support. Once increased, this parameter cannot be lowered from its set value.
672
672
  """
673
673
  return pulumi.get(self, "max_worker_processes")
674
674
 
675
675
  @max_worker_processes.setter
676
- def max_worker_processes(self, value: Optional[pulumi.Input[int]]):
676
+ def max_worker_processes(self, value: Optional[pulumi.Input[_builtins.int]]):
677
677
  pulumi.set(self, "max_worker_processes", value)
678
678
 
679
- @property
679
+ @_builtins.property
680
680
  @pulumi.getter(name="pgPartmanBgwInterval")
681
- def pg_partman_bgw_interval(self) -> Optional[pulumi.Input[int]]:
681
+ def pg_partman_bgw_interval(self) -> Optional[pulumi.Input[_builtins.int]]:
682
682
  """
683
683
  Sets the time interval to run pg_partman's scheduled tasks.
684
684
  """
685
685
  return pulumi.get(self, "pg_partman_bgw_interval")
686
686
 
687
687
  @pg_partman_bgw_interval.setter
688
- def pg_partman_bgw_interval(self, value: Optional[pulumi.Input[int]]):
688
+ def pg_partman_bgw_interval(self, value: Optional[pulumi.Input[_builtins.int]]):
689
689
  pulumi.set(self, "pg_partman_bgw_interval", value)
690
690
 
691
- @property
691
+ @_builtins.property
692
692
  @pulumi.getter(name="pgPartmanBgwRole")
693
- def pg_partman_bgw_role(self) -> Optional[pulumi.Input[str]]:
693
+ def pg_partman_bgw_role(self) -> Optional[pulumi.Input[_builtins.str]]:
694
694
  """
695
695
  Controls which role to use for pg_partman's scheduled background tasks. Must consist of alpha-numeric characters, dots, underscores, or dashes. May not start with dash or dot. Maximum of 64 characters.
696
696
  """
697
697
  return pulumi.get(self, "pg_partman_bgw_role")
698
698
 
699
699
  @pg_partman_bgw_role.setter
700
- def pg_partman_bgw_role(self, value: Optional[pulumi.Input[str]]):
700
+ def pg_partman_bgw_role(self, value: Optional[pulumi.Input[_builtins.str]]):
701
701
  pulumi.set(self, "pg_partman_bgw_role", value)
702
702
 
703
- @property
703
+ @_builtins.property
704
704
  @pulumi.getter(name="pgStatStatementsTrack")
705
- def pg_stat_statements_track(self) -> Optional[pulumi.Input[str]]:
705
+ def pg_stat_statements_track(self) -> Optional[pulumi.Input[_builtins.str]]:
706
706
  """
707
707
  Controls which statements are counted. Specify 'top' to track top-level statements (those issued directly by clients), 'all' to also track nested statements (such as statements invoked within functions), or 'none' to disable statement statistics collection. The default value is top. Supported values are: `all`, `top`, `none`.
708
708
  """
709
709
  return pulumi.get(self, "pg_stat_statements_track")
710
710
 
711
711
  @pg_stat_statements_track.setter
712
- def pg_stat_statements_track(self, value: Optional[pulumi.Input[str]]):
712
+ def pg_stat_statements_track(self, value: Optional[pulumi.Input[_builtins.str]]):
713
713
  pulumi.set(self, "pg_stat_statements_track", value)
714
714
 
715
- @property
715
+ @_builtins.property
716
716
  @pulumi.getter
717
717
  def pgbouncers(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['DatabasePostgresqlConfigPgbouncerArgs']]]]:
718
718
  """
@@ -724,31 +724,31 @@ class DatabasePostgresqlConfigArgs:
724
724
  def pgbouncers(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['DatabasePostgresqlConfigPgbouncerArgs']]]]):
725
725
  pulumi.set(self, "pgbouncers", value)
726
726
 
727
- @property
727
+ @_builtins.property
728
728
  @pulumi.getter(name="sharedBuffersPercentage")
729
- def shared_buffers_percentage(self) -> Optional[pulumi.Input[float]]:
729
+ def shared_buffers_percentage(self) -> Optional[pulumi.Input[_builtins.float]]:
730
730
  """
731
731
  Percentage of total RAM that the database server uses for shared memory buffers. Valid range is 20-60 (float), which corresponds to 20% - 60%. This setting adjusts the shared_buffers configuration value.
732
732
  """
733
733
  return pulumi.get(self, "shared_buffers_percentage")
734
734
 
735
735
  @shared_buffers_percentage.setter
736
- def shared_buffers_percentage(self, value: Optional[pulumi.Input[float]]):
736
+ def shared_buffers_percentage(self, value: Optional[pulumi.Input[_builtins.float]]):
737
737
  pulumi.set(self, "shared_buffers_percentage", value)
738
738
 
739
- @property
739
+ @_builtins.property
740
740
  @pulumi.getter(name="tempFileLimit")
741
- def temp_file_limit(self) -> Optional[pulumi.Input[int]]:
741
+ def temp_file_limit(self) -> Optional[pulumi.Input[_builtins.int]]:
742
742
  """
743
743
  PostgreSQL temporary file limit in KiB. If -1, sets to unlimited.
744
744
  """
745
745
  return pulumi.get(self, "temp_file_limit")
746
746
 
747
747
  @temp_file_limit.setter
748
- def temp_file_limit(self, value: Optional[pulumi.Input[int]]):
748
+ def temp_file_limit(self, value: Optional[pulumi.Input[_builtins.int]]):
749
749
  pulumi.set(self, "temp_file_limit", value)
750
750
 
751
- @property
751
+ @_builtins.property
752
752
  @pulumi.getter
753
753
  def timescaledbs(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['DatabasePostgresqlConfigTimescaledbArgs']]]]:
754
754
  """
@@ -760,212 +760,212 @@ class DatabasePostgresqlConfigArgs:
760
760
  def timescaledbs(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['DatabasePostgresqlConfigTimescaledbArgs']]]]):
761
761
  pulumi.set(self, "timescaledbs", value)
762
762
 
763
- @property
763
+ @_builtins.property
764
764
  @pulumi.getter
765
- def timezone(self) -> Optional[pulumi.Input[str]]:
765
+ def timezone(self) -> Optional[pulumi.Input[_builtins.str]]:
766
766
  """
767
767
  PostgreSQL service timezone
768
768
  """
769
769
  return pulumi.get(self, "timezone")
770
770
 
771
771
  @timezone.setter
772
- def timezone(self, value: Optional[pulumi.Input[str]]):
772
+ def timezone(self, value: Optional[pulumi.Input[_builtins.str]]):
773
773
  pulumi.set(self, "timezone", value)
774
774
 
775
- @property
775
+ @_builtins.property
776
776
  @pulumi.getter(name="trackActivityQuerySize")
777
- def track_activity_query_size(self) -> Optional[pulumi.Input[int]]:
777
+ def track_activity_query_size(self) -> Optional[pulumi.Input[_builtins.int]]:
778
778
  """
779
779
  Specifies the number of bytes reserved to track the currently executing command for each active session.
780
780
  """
781
781
  return pulumi.get(self, "track_activity_query_size")
782
782
 
783
783
  @track_activity_query_size.setter
784
- def track_activity_query_size(self, value: Optional[pulumi.Input[int]]):
784
+ def track_activity_query_size(self, value: Optional[pulumi.Input[_builtins.int]]):
785
785
  pulumi.set(self, "track_activity_query_size", value)
786
786
 
787
- @property
787
+ @_builtins.property
788
788
  @pulumi.getter(name="trackCommitTimestamp")
789
- def track_commit_timestamp(self) -> Optional[pulumi.Input[str]]:
789
+ def track_commit_timestamp(self) -> Optional[pulumi.Input[_builtins.str]]:
790
790
  """
791
791
  Record commit time of transactions. The default value is top. Supported values are: `off`, `on`.
792
792
  """
793
793
  return pulumi.get(self, "track_commit_timestamp")
794
794
 
795
795
  @track_commit_timestamp.setter
796
- def track_commit_timestamp(self, value: Optional[pulumi.Input[str]]):
796
+ def track_commit_timestamp(self, value: Optional[pulumi.Input[_builtins.str]]):
797
797
  pulumi.set(self, "track_commit_timestamp", value)
798
798
 
799
- @property
799
+ @_builtins.property
800
800
  @pulumi.getter(name="trackFunctions")
801
- def track_functions(self) -> Optional[pulumi.Input[str]]:
801
+ def track_functions(self) -> Optional[pulumi.Input[_builtins.str]]:
802
802
  """
803
803
  Enables tracking of function call counts and time used. The default value is top. Supported values are: `all`, `pl`, `none`.
804
804
  """
805
805
  return pulumi.get(self, "track_functions")
806
806
 
807
807
  @track_functions.setter
808
- def track_functions(self, value: Optional[pulumi.Input[str]]):
808
+ def track_functions(self, value: Optional[pulumi.Input[_builtins.str]]):
809
809
  pulumi.set(self, "track_functions", value)
810
810
 
811
- @property
811
+ @_builtins.property
812
812
  @pulumi.getter(name="trackIoTiming")
813
- def track_io_timing(self) -> Optional[pulumi.Input[str]]:
813
+ def track_io_timing(self) -> Optional[pulumi.Input[_builtins.str]]:
814
814
  """
815
815
  Enables timing of database I/O calls. This parameter is off by default, because it will repeatedly query the operating system for the current time, which may cause significant overhead on some platforms. The default value is top. Supported values are: `off`, `on`.
816
816
  """
817
817
  return pulumi.get(self, "track_io_timing")
818
818
 
819
819
  @track_io_timing.setter
820
- def track_io_timing(self, value: Optional[pulumi.Input[str]]):
820
+ def track_io_timing(self, value: Optional[pulumi.Input[_builtins.str]]):
821
821
  pulumi.set(self, "track_io_timing", value)
822
822
 
823
- @property
823
+ @_builtins.property
824
824
  @pulumi.getter(name="walSenderTimeout")
825
- def wal_sender_timeout(self) -> Optional[pulumi.Input[int]]:
825
+ def wal_sender_timeout(self) -> Optional[pulumi.Input[_builtins.int]]:
826
826
  """
827
827
  Terminate replication connections that are inactive for longer than this amount of time, in milliseconds. Setting this value to zero disables the timeout. Must be either 0 or between 5000 and 10800000.
828
828
  """
829
829
  return pulumi.get(self, "wal_sender_timeout")
830
830
 
831
831
  @wal_sender_timeout.setter
832
- def wal_sender_timeout(self, value: Optional[pulumi.Input[int]]):
832
+ def wal_sender_timeout(self, value: Optional[pulumi.Input[_builtins.int]]):
833
833
  pulumi.set(self, "wal_sender_timeout", value)
834
834
 
835
- @property
835
+ @_builtins.property
836
836
  @pulumi.getter(name="walWriterDelay")
837
- def wal_writer_delay(self) -> Optional[pulumi.Input[int]]:
837
+ def wal_writer_delay(self) -> Optional[pulumi.Input[_builtins.int]]:
838
838
  """
839
839
  WAL flush interval in milliseconds. Note that setting this value to lower than the default 200ms may negatively impact performance
840
840
  """
841
841
  return pulumi.get(self, "wal_writer_delay")
842
842
 
843
843
  @wal_writer_delay.setter
844
- def wal_writer_delay(self, value: Optional[pulumi.Input[int]]):
844
+ def wal_writer_delay(self, value: Optional[pulumi.Input[_builtins.int]]):
845
845
  pulumi.set(self, "wal_writer_delay", value)
846
846
 
847
- @property
847
+ @_builtins.property
848
848
  @pulumi.getter(name="workMem")
849
- def work_mem(self) -> Optional[pulumi.Input[int]]:
849
+ def work_mem(self) -> Optional[pulumi.Input[_builtins.int]]:
850
850
  """
851
851
  The maximum amount of memory, in MB, used by a query operation (such as a sort or hash table) before writing to temporary disk files. Default is 1MB + 0.075% of total RAM (up to 32MB).
852
852
  """
853
853
  return pulumi.get(self, "work_mem")
854
854
 
855
855
  @work_mem.setter
856
- def work_mem(self, value: Optional[pulumi.Input[int]]):
856
+ def work_mem(self, value: Optional[pulumi.Input[_builtins.int]]):
857
857
  pulumi.set(self, "work_mem", value)
858
858
 
859
859
 
860
860
  @pulumi.input_type
861
861
  class _DatabasePostgresqlConfigState:
862
862
  def __init__(__self__, *,
863
- autovacuum_analyze_scale_factor: Optional[pulumi.Input[float]] = None,
864
- autovacuum_analyze_threshold: Optional[pulumi.Input[int]] = None,
865
- autovacuum_freeze_max_age: Optional[pulumi.Input[int]] = None,
866
- autovacuum_max_workers: Optional[pulumi.Input[int]] = None,
867
- autovacuum_naptime: Optional[pulumi.Input[int]] = None,
868
- autovacuum_vacuum_cost_delay: Optional[pulumi.Input[int]] = None,
869
- autovacuum_vacuum_cost_limit: Optional[pulumi.Input[int]] = None,
870
- autovacuum_vacuum_scale_factor: Optional[pulumi.Input[float]] = None,
871
- autovacuum_vacuum_threshold: Optional[pulumi.Input[int]] = None,
872
- backup_hour: Optional[pulumi.Input[int]] = None,
873
- backup_minute: Optional[pulumi.Input[int]] = None,
874
- bgwriter_delay: Optional[pulumi.Input[int]] = None,
875
- bgwriter_flush_after: Optional[pulumi.Input[int]] = None,
876
- bgwriter_lru_maxpages: Optional[pulumi.Input[int]] = None,
877
- bgwriter_lru_multiplier: Optional[pulumi.Input[float]] = None,
878
- cluster_id: Optional[pulumi.Input[str]] = None,
879
- deadlock_timeout: Optional[pulumi.Input[int]] = None,
880
- default_toast_compression: Optional[pulumi.Input[str]] = None,
881
- idle_in_transaction_session_timeout: Optional[pulumi.Input[int]] = None,
882
- jit: Optional[pulumi.Input[bool]] = None,
883
- log_autovacuum_min_duration: Optional[pulumi.Input[int]] = None,
884
- log_error_verbosity: Optional[pulumi.Input[str]] = None,
885
- log_line_prefix: Optional[pulumi.Input[str]] = None,
886
- log_min_duration_statement: Optional[pulumi.Input[int]] = None,
887
- max_files_per_process: Optional[pulumi.Input[int]] = None,
888
- max_locks_per_transaction: Optional[pulumi.Input[int]] = None,
889
- max_logical_replication_workers: Optional[pulumi.Input[int]] = None,
890
- max_parallel_workers: Optional[pulumi.Input[int]] = None,
891
- max_parallel_workers_per_gather: Optional[pulumi.Input[int]] = None,
892
- max_pred_locks_per_transaction: Optional[pulumi.Input[int]] = None,
893
- max_prepared_transactions: Optional[pulumi.Input[int]] = None,
894
- max_replication_slots: Optional[pulumi.Input[int]] = None,
895
- max_stack_depth: Optional[pulumi.Input[int]] = None,
896
- max_standby_archive_delay: Optional[pulumi.Input[int]] = None,
897
- max_standby_streaming_delay: Optional[pulumi.Input[int]] = None,
898
- max_wal_senders: Optional[pulumi.Input[int]] = None,
899
- max_worker_processes: Optional[pulumi.Input[int]] = None,
900
- pg_partman_bgw_interval: Optional[pulumi.Input[int]] = None,
901
- pg_partman_bgw_role: Optional[pulumi.Input[str]] = None,
902
- pg_stat_statements_track: Optional[pulumi.Input[str]] = None,
863
+ autovacuum_analyze_scale_factor: Optional[pulumi.Input[_builtins.float]] = None,
864
+ autovacuum_analyze_threshold: Optional[pulumi.Input[_builtins.int]] = None,
865
+ autovacuum_freeze_max_age: Optional[pulumi.Input[_builtins.int]] = None,
866
+ autovacuum_max_workers: Optional[pulumi.Input[_builtins.int]] = None,
867
+ autovacuum_naptime: Optional[pulumi.Input[_builtins.int]] = None,
868
+ autovacuum_vacuum_cost_delay: Optional[pulumi.Input[_builtins.int]] = None,
869
+ autovacuum_vacuum_cost_limit: Optional[pulumi.Input[_builtins.int]] = None,
870
+ autovacuum_vacuum_scale_factor: Optional[pulumi.Input[_builtins.float]] = None,
871
+ autovacuum_vacuum_threshold: Optional[pulumi.Input[_builtins.int]] = None,
872
+ backup_hour: Optional[pulumi.Input[_builtins.int]] = None,
873
+ backup_minute: Optional[pulumi.Input[_builtins.int]] = None,
874
+ bgwriter_delay: Optional[pulumi.Input[_builtins.int]] = None,
875
+ bgwriter_flush_after: Optional[pulumi.Input[_builtins.int]] = None,
876
+ bgwriter_lru_maxpages: Optional[pulumi.Input[_builtins.int]] = None,
877
+ bgwriter_lru_multiplier: Optional[pulumi.Input[_builtins.float]] = None,
878
+ cluster_id: Optional[pulumi.Input[_builtins.str]] = None,
879
+ deadlock_timeout: Optional[pulumi.Input[_builtins.int]] = None,
880
+ default_toast_compression: Optional[pulumi.Input[_builtins.str]] = None,
881
+ idle_in_transaction_session_timeout: Optional[pulumi.Input[_builtins.int]] = None,
882
+ jit: Optional[pulumi.Input[_builtins.bool]] = None,
883
+ log_autovacuum_min_duration: Optional[pulumi.Input[_builtins.int]] = None,
884
+ log_error_verbosity: Optional[pulumi.Input[_builtins.str]] = None,
885
+ log_line_prefix: Optional[pulumi.Input[_builtins.str]] = None,
886
+ log_min_duration_statement: Optional[pulumi.Input[_builtins.int]] = None,
887
+ max_files_per_process: Optional[pulumi.Input[_builtins.int]] = None,
888
+ max_locks_per_transaction: Optional[pulumi.Input[_builtins.int]] = None,
889
+ max_logical_replication_workers: Optional[pulumi.Input[_builtins.int]] = None,
890
+ max_parallel_workers: Optional[pulumi.Input[_builtins.int]] = None,
891
+ max_parallel_workers_per_gather: Optional[pulumi.Input[_builtins.int]] = None,
892
+ max_pred_locks_per_transaction: Optional[pulumi.Input[_builtins.int]] = None,
893
+ max_prepared_transactions: Optional[pulumi.Input[_builtins.int]] = None,
894
+ max_replication_slots: Optional[pulumi.Input[_builtins.int]] = None,
895
+ max_stack_depth: Optional[pulumi.Input[_builtins.int]] = None,
896
+ max_standby_archive_delay: Optional[pulumi.Input[_builtins.int]] = None,
897
+ max_standby_streaming_delay: Optional[pulumi.Input[_builtins.int]] = None,
898
+ max_wal_senders: Optional[pulumi.Input[_builtins.int]] = None,
899
+ max_worker_processes: Optional[pulumi.Input[_builtins.int]] = None,
900
+ pg_partman_bgw_interval: Optional[pulumi.Input[_builtins.int]] = None,
901
+ pg_partman_bgw_role: Optional[pulumi.Input[_builtins.str]] = None,
902
+ pg_stat_statements_track: Optional[pulumi.Input[_builtins.str]] = None,
903
903
  pgbouncers: Optional[pulumi.Input[Sequence[pulumi.Input['DatabasePostgresqlConfigPgbouncerArgs']]]] = None,
904
- shared_buffers_percentage: Optional[pulumi.Input[float]] = None,
905
- temp_file_limit: Optional[pulumi.Input[int]] = None,
904
+ shared_buffers_percentage: Optional[pulumi.Input[_builtins.float]] = None,
905
+ temp_file_limit: Optional[pulumi.Input[_builtins.int]] = None,
906
906
  timescaledbs: Optional[pulumi.Input[Sequence[pulumi.Input['DatabasePostgresqlConfigTimescaledbArgs']]]] = None,
907
- timezone: Optional[pulumi.Input[str]] = None,
908
- track_activity_query_size: Optional[pulumi.Input[int]] = None,
909
- track_commit_timestamp: Optional[pulumi.Input[str]] = None,
910
- track_functions: Optional[pulumi.Input[str]] = None,
911
- track_io_timing: Optional[pulumi.Input[str]] = None,
912
- wal_sender_timeout: Optional[pulumi.Input[int]] = None,
913
- wal_writer_delay: Optional[pulumi.Input[int]] = None,
914
- work_mem: Optional[pulumi.Input[int]] = None):
907
+ timezone: Optional[pulumi.Input[_builtins.str]] = None,
908
+ track_activity_query_size: Optional[pulumi.Input[_builtins.int]] = None,
909
+ track_commit_timestamp: Optional[pulumi.Input[_builtins.str]] = None,
910
+ track_functions: Optional[pulumi.Input[_builtins.str]] = None,
911
+ track_io_timing: Optional[pulumi.Input[_builtins.str]] = None,
912
+ wal_sender_timeout: Optional[pulumi.Input[_builtins.int]] = None,
913
+ wal_writer_delay: Optional[pulumi.Input[_builtins.int]] = None,
914
+ work_mem: Optional[pulumi.Input[_builtins.int]] = None):
915
915
  """
916
916
  Input properties used for looking up and filtering DatabasePostgresqlConfig resources.
917
- :param pulumi.Input[float] autovacuum_analyze_scale_factor: Specifies a fraction, in a decimal value, of the table size to add to autovacuum_analyze_threshold when deciding whether to trigger an ANALYZE. The default is 0.2 (20% of table size).
918
- :param pulumi.Input[int] autovacuum_analyze_threshold: Specifies the minimum number of inserted, updated, or deleted tuples needed to trigger an ANALYZE in any one table. The default is 50 tuples.
919
- :param pulumi.Input[int] autovacuum_freeze_max_age: Specifies the maximum age (in transactions) that a table's pg_class.relfrozenxid field can attain before a VACUUM operation is forced to prevent transaction ID wraparound within the table. Note that the system will launch autovacuum processes to prevent wraparound even when autovacuum is otherwise disabled. This parameter will cause the server to be restarted.
920
- :param pulumi.Input[int] autovacuum_max_workers: Specifies the maximum number of autovacuum processes (other than the autovacuum launcher) that may be running at any one time. The default is three. This parameter can only be set at server start.
921
- :param pulumi.Input[int] autovacuum_naptime: Specifies the minimum delay, in seconds, between autovacuum runs on any given database. The default is one minute.
922
- :param pulumi.Input[int] autovacuum_vacuum_cost_delay: Specifies the cost delay value, in milliseconds, that will be used in automatic VACUUM operations. If -1, uses the regular vacuum_cost_delay value, which is 20 milliseconds.
923
- :param pulumi.Input[int] autovacuum_vacuum_cost_limit: Specifies the cost limit value that will be used in automatic VACUUM operations. If -1 is specified (which is the default), the regular vacuum_cost_limit value will be used.
924
- :param pulumi.Input[float] autovacuum_vacuum_scale_factor: Specifies a fraction, in a decimal value, of the table size to add to autovacuum_vacuum_threshold when deciding whether to trigger a VACUUM. The default is 0.2 (20% of table size).
925
- :param pulumi.Input[int] autovacuum_vacuum_threshold: Specifies the minimum number of updated or deleted tuples needed to trigger a VACUUM in any one table. The default is 50 tuples.
926
- :param pulumi.Input[int] backup_hour: The hour of day (in UTC) when backup for the service starts. New backup only starts if previous backup has already completed.
927
- :param pulumi.Input[int] backup_minute: The minute of the backup hour when backup for the service starts. New backup is only started if previous backup has already completed.
928
- :param pulumi.Input[int] bgwriter_delay: Specifies the delay, in milliseconds, between activity rounds for the background writer. Default is 200 ms.
929
- :param pulumi.Input[int] bgwriter_flush_after: The amount of kilobytes that need to be written by the background writer before attempting to force the OS to issue these writes to underlying storage. Specified in kilobytes, default is 512. Setting of 0 disables forced writeback.
930
- :param pulumi.Input[int] bgwriter_lru_maxpages: The maximum number of buffers that the background writer can write. Setting this to zero disables background writing. Default is 100.
931
- :param pulumi.Input[float] bgwriter_lru_multiplier: The average recent need for new buffers is multiplied by bgwriter_lru_multiplier to arrive at an estimate of the number that will be needed during the next round, (up to bgwriter_lru_maxpages). 1.0 represents a “just in time” policy of writing exactly the number of buffers predicted to be needed. Larger values provide some cushion against spikes in demand, while smaller values intentionally leave writes to be done by server processes. The default is 2.0.
932
- :param pulumi.Input[str] cluster_id: The ID of the target PostgreSQL cluster.
933
- :param pulumi.Input[int] deadlock_timeout: The amount of time, in milliseconds, to wait on a lock before checking to see if there is a deadlock condition.
934
- :param pulumi.Input[str] default_toast_compression: Specifies the default TOAST compression method for values of compressible columns (the default is lz4). Supported values are: `lz4`, `pglz`.
935
- :param pulumi.Input[int] idle_in_transaction_session_timeout: Time out sessions with open transactions after this number of milliseconds
936
- :param pulumi.Input[bool] jit: Activates, in a boolean, the system-wide use of Just-in-Time Compilation (JIT).
937
- :param pulumi.Input[int] log_autovacuum_min_duration: Causes each action executed by autovacuum to be logged if it ran for at least the specified number of milliseconds. Setting this to zero logs all autovacuum actions. Minus-one (the default) disables logging autovacuum actions.
938
- :param pulumi.Input[str] log_error_verbosity: Controls the amount of detail written in the server log for each message that is logged. Supported values are: `TERSE`, `DEFAULT`, `VERBOSE`.
939
- :param pulumi.Input[str] log_line_prefix: Selects one of the available log-formats. These can support popular log analyzers like pgbadger, pganalyze, etc. Supported values are: `pid=%p,user=%u,db=%d,app=%a,client=%h`, `%m [%p] %q[user=%u,db=%d,app=%a]`, `%t [%p]: [%l-1] user=%u,db=%d,app=%a,client=%h`.
940
- :param pulumi.Input[int] log_min_duration_statement: Log statements that take more than this number of milliseconds to run. If -1, disables.
941
- :param pulumi.Input[int] max_files_per_process: PostgreSQL maximum number of files that can be open per process.
942
- :param pulumi.Input[int] max_locks_per_transaction: PostgreSQL maximum locks per transaction. Once increased, this parameter cannot be lowered from its set value.
943
- :param pulumi.Input[int] max_logical_replication_workers: PostgreSQL maximum logical replication workers (taken from the pool of max_parallel_workers).
944
- :param pulumi.Input[int] max_parallel_workers: Sets the maximum number of workers that the system can support for parallel queries.
945
- :param pulumi.Input[int] max_parallel_workers_per_gather: Sets the maximum number of workers that can be started by a single Gather or Gather Merge node.
946
- :param pulumi.Input[int] max_pred_locks_per_transaction: PostgreSQL maximum predicate locks per transaction.
947
- :param pulumi.Input[int] max_prepared_transactions: PostgreSQL maximum prepared transactions. Once increased, this parameter cannot be lowered from its set value.
948
- :param pulumi.Input[int] max_replication_slots: PostgreSQL maximum replication slots.
949
- :param pulumi.Input[int] max_stack_depth: Maximum depth of the stack in bytes.
950
- :param pulumi.Input[int] max_standby_archive_delay: Max standby archive delay in milliseconds.
951
- :param pulumi.Input[int] max_standby_streaming_delay: Max standby streaming delay in milliseconds.
952
- :param pulumi.Input[int] max_wal_senders: PostgreSQL maximum WAL senders. Once increased, this parameter cannot be lowered from its set value.
953
- :param pulumi.Input[int] max_worker_processes: Sets the maximum number of background processes that the system can support. Once increased, this parameter cannot be lowered from its set value.
954
- :param pulumi.Input[int] pg_partman_bgw_interval: Sets the time interval to run pg_partman's scheduled tasks.
955
- :param pulumi.Input[str] pg_partman_bgw_role: Controls which role to use for pg_partman's scheduled background tasks. Must consist of alpha-numeric characters, dots, underscores, or dashes. May not start with dash or dot. Maximum of 64 characters.
956
- :param pulumi.Input[str] pg_stat_statements_track: Controls which statements are counted. Specify 'top' to track top-level statements (those issued directly by clients), 'all' to also track nested statements (such as statements invoked within functions), or 'none' to disable statement statistics collection. The default value is top. Supported values are: `all`, `top`, `none`.
917
+ :param pulumi.Input[_builtins.float] autovacuum_analyze_scale_factor: Specifies a fraction, in a decimal value, of the table size to add to autovacuum_analyze_threshold when deciding whether to trigger an ANALYZE. The default is 0.2 (20% of table size).
918
+ :param pulumi.Input[_builtins.int] autovacuum_analyze_threshold: Specifies the minimum number of inserted, updated, or deleted tuples needed to trigger an ANALYZE in any one table. The default is 50 tuples.
919
+ :param pulumi.Input[_builtins.int] autovacuum_freeze_max_age: Specifies the maximum age (in transactions) that a table's pg_class.relfrozenxid field can attain before a VACUUM operation is forced to prevent transaction ID wraparound within the table. Note that the system will launch autovacuum processes to prevent wraparound even when autovacuum is otherwise disabled. This parameter will cause the server to be restarted.
920
+ :param pulumi.Input[_builtins.int] autovacuum_max_workers: Specifies the maximum number of autovacuum processes (other than the autovacuum launcher) that may be running at any one time. The default is three. This parameter can only be set at server start.
921
+ :param pulumi.Input[_builtins.int] autovacuum_naptime: Specifies the minimum delay, in seconds, between autovacuum runs on any given database. The default is one minute.
922
+ :param pulumi.Input[_builtins.int] autovacuum_vacuum_cost_delay: Specifies the cost delay value, in milliseconds, that will be used in automatic VACUUM operations. If -1, uses the regular vacuum_cost_delay value, which is 20 milliseconds.
923
+ :param pulumi.Input[_builtins.int] autovacuum_vacuum_cost_limit: Specifies the cost limit value that will be used in automatic VACUUM operations. If -1 is specified (which is the default), the regular vacuum_cost_limit value will be used.
924
+ :param pulumi.Input[_builtins.float] autovacuum_vacuum_scale_factor: Specifies a fraction, in a decimal value, of the table size to add to autovacuum_vacuum_threshold when deciding whether to trigger a VACUUM. The default is 0.2 (20% of table size).
925
+ :param pulumi.Input[_builtins.int] autovacuum_vacuum_threshold: Specifies the minimum number of updated or deleted tuples needed to trigger a VACUUM in any one table. The default is 50 tuples.
926
+ :param pulumi.Input[_builtins.int] backup_hour: The hour of day (in UTC) when backup for the service starts. New backup only starts if previous backup has already completed.
927
+ :param pulumi.Input[_builtins.int] backup_minute: The minute of the backup hour when backup for the service starts. New backup is only started if previous backup has already completed.
928
+ :param pulumi.Input[_builtins.int] bgwriter_delay: Specifies the delay, in milliseconds, between activity rounds for the background writer. Default is 200 ms.
929
+ :param pulumi.Input[_builtins.int] bgwriter_flush_after: The amount of kilobytes that need to be written by the background writer before attempting to force the OS to issue these writes to underlying storage. Specified in kilobytes, default is 512. Setting of 0 disables forced writeback.
930
+ :param pulumi.Input[_builtins.int] bgwriter_lru_maxpages: The maximum number of buffers that the background writer can write. Setting this to zero disables background writing. Default is 100.
931
+ :param pulumi.Input[_builtins.float] bgwriter_lru_multiplier: The average recent need for new buffers is multiplied by bgwriter_lru_multiplier to arrive at an estimate of the number that will be needed during the next round, (up to bgwriter_lru_maxpages). 1.0 represents a “just in time” policy of writing exactly the number of buffers predicted to be needed. Larger values provide some cushion against spikes in demand, while smaller values intentionally leave writes to be done by server processes. The default is 2.0.
932
+ :param pulumi.Input[_builtins.str] cluster_id: The ID of the target PostgreSQL cluster.
933
+ :param pulumi.Input[_builtins.int] deadlock_timeout: The amount of time, in milliseconds, to wait on a lock before checking to see if there is a deadlock condition.
934
+ :param pulumi.Input[_builtins.str] default_toast_compression: Specifies the default TOAST compression method for values of compressible columns (the default is lz4). Supported values are: `lz4`, `pglz`.
935
+ :param pulumi.Input[_builtins.int] idle_in_transaction_session_timeout: Time out sessions with open transactions after this number of milliseconds
936
+ :param pulumi.Input[_builtins.bool] jit: Activates, in a boolean, the system-wide use of Just-in-Time Compilation (JIT).
937
+ :param pulumi.Input[_builtins.int] log_autovacuum_min_duration: Causes each action executed by autovacuum to be logged if it ran for at least the specified number of milliseconds. Setting this to zero logs all autovacuum actions. Minus-one (the default) disables logging autovacuum actions.
938
+ :param pulumi.Input[_builtins.str] log_error_verbosity: Controls the amount of detail written in the server log for each message that is logged. Supported values are: `TERSE`, `DEFAULT`, `VERBOSE`.
939
+ :param pulumi.Input[_builtins.str] log_line_prefix: Selects one of the available log-formats. These can support popular log analyzers like pgbadger, pganalyze, etc. Supported values are: `pid=%p,user=%u,db=%d,app=%a,client=%h`, `%m [%p] %q[user=%u,db=%d,app=%a]`, `%t [%p]: [%l-1] user=%u,db=%d,app=%a,client=%h`.
940
+ :param pulumi.Input[_builtins.int] log_min_duration_statement: Log statements that take more than this number of milliseconds to run. If -1, disables.
941
+ :param pulumi.Input[_builtins.int] max_files_per_process: PostgreSQL maximum number of files that can be open per process.
942
+ :param pulumi.Input[_builtins.int] max_locks_per_transaction: PostgreSQL maximum locks per transaction. Once increased, this parameter cannot be lowered from its set value.
943
+ :param pulumi.Input[_builtins.int] max_logical_replication_workers: PostgreSQL maximum logical replication workers (taken from the pool of max_parallel_workers).
944
+ :param pulumi.Input[_builtins.int] max_parallel_workers: Sets the maximum number of workers that the system can support for parallel queries.
945
+ :param pulumi.Input[_builtins.int] max_parallel_workers_per_gather: Sets the maximum number of workers that can be started by a single Gather or Gather Merge node.
946
+ :param pulumi.Input[_builtins.int] max_pred_locks_per_transaction: PostgreSQL maximum predicate locks per transaction.
947
+ :param pulumi.Input[_builtins.int] max_prepared_transactions: PostgreSQL maximum prepared transactions. Once increased, this parameter cannot be lowered from its set value.
948
+ :param pulumi.Input[_builtins.int] max_replication_slots: PostgreSQL maximum replication slots.
949
+ :param pulumi.Input[_builtins.int] max_stack_depth: Maximum depth of the stack in bytes.
950
+ :param pulumi.Input[_builtins.int] max_standby_archive_delay: Max standby archive delay in milliseconds.
951
+ :param pulumi.Input[_builtins.int] max_standby_streaming_delay: Max standby streaming delay in milliseconds.
952
+ :param pulumi.Input[_builtins.int] max_wal_senders: PostgreSQL maximum WAL senders. Once increased, this parameter cannot be lowered from its set value.
953
+ :param pulumi.Input[_builtins.int] max_worker_processes: Sets the maximum number of background processes that the system can support. Once increased, this parameter cannot be lowered from its set value.
954
+ :param pulumi.Input[_builtins.int] pg_partman_bgw_interval: Sets the time interval to run pg_partman's scheduled tasks.
955
+ :param pulumi.Input[_builtins.str] pg_partman_bgw_role: Controls which role to use for pg_partman's scheduled background tasks. Must consist of alpha-numeric characters, dots, underscores, or dashes. May not start with dash or dot. Maximum of 64 characters.
956
+ :param pulumi.Input[_builtins.str] pg_stat_statements_track: Controls which statements are counted. Specify 'top' to track top-level statements (those issued directly by clients), 'all' to also track nested statements (such as statements invoked within functions), or 'none' to disable statement statistics collection. The default value is top. Supported values are: `all`, `top`, `none`.
957
957
  :param pulumi.Input[Sequence[pulumi.Input['DatabasePostgresqlConfigPgbouncerArgs']]] pgbouncers: PGBouncer connection pooling settings
958
- :param pulumi.Input[float] shared_buffers_percentage: Percentage of total RAM that the database server uses for shared memory buffers. Valid range is 20-60 (float), which corresponds to 20% - 60%. This setting adjusts the shared_buffers configuration value.
959
- :param pulumi.Input[int] temp_file_limit: PostgreSQL temporary file limit in KiB. If -1, sets to unlimited.
958
+ :param pulumi.Input[_builtins.float] shared_buffers_percentage: Percentage of total RAM that the database server uses for shared memory buffers. Valid range is 20-60 (float), which corresponds to 20% - 60%. This setting adjusts the shared_buffers configuration value.
959
+ :param pulumi.Input[_builtins.int] temp_file_limit: PostgreSQL temporary file limit in KiB. If -1, sets to unlimited.
960
960
  :param pulumi.Input[Sequence[pulumi.Input['DatabasePostgresqlConfigTimescaledbArgs']]] timescaledbs: TimescaleDB extension configuration values
961
- :param pulumi.Input[str] timezone: PostgreSQL service timezone
962
- :param pulumi.Input[int] track_activity_query_size: Specifies the number of bytes reserved to track the currently executing command for each active session.
963
- :param pulumi.Input[str] track_commit_timestamp: Record commit time of transactions. The default value is top. Supported values are: `off`, `on`.
964
- :param pulumi.Input[str] track_functions: Enables tracking of function call counts and time used. The default value is top. Supported values are: `all`, `pl`, `none`.
965
- :param pulumi.Input[str] track_io_timing: Enables timing of database I/O calls. This parameter is off by default, because it will repeatedly query the operating system for the current time, which may cause significant overhead on some platforms. The default value is top. Supported values are: `off`, `on`.
966
- :param pulumi.Input[int] wal_sender_timeout: Terminate replication connections that are inactive for longer than this amount of time, in milliseconds. Setting this value to zero disables the timeout. Must be either 0 or between 5000 and 10800000.
967
- :param pulumi.Input[int] wal_writer_delay: WAL flush interval in milliseconds. Note that setting this value to lower than the default 200ms may negatively impact performance
968
- :param pulumi.Input[int] work_mem: The maximum amount of memory, in MB, used by a query operation (such as a sort or hash table) before writing to temporary disk files. Default is 1MB + 0.075% of total RAM (up to 32MB).
961
+ :param pulumi.Input[_builtins.str] timezone: PostgreSQL service timezone
962
+ :param pulumi.Input[_builtins.int] track_activity_query_size: Specifies the number of bytes reserved to track the currently executing command for each active session.
963
+ :param pulumi.Input[_builtins.str] track_commit_timestamp: Record commit time of transactions. The default value is top. Supported values are: `off`, `on`.
964
+ :param pulumi.Input[_builtins.str] track_functions: Enables tracking of function call counts and time used. The default value is top. Supported values are: `all`, `pl`, `none`.
965
+ :param pulumi.Input[_builtins.str] track_io_timing: Enables timing of database I/O calls. This parameter is off by default, because it will repeatedly query the operating system for the current time, which may cause significant overhead on some platforms. The default value is top. Supported values are: `off`, `on`.
966
+ :param pulumi.Input[_builtins.int] wal_sender_timeout: Terminate replication connections that are inactive for longer than this amount of time, in milliseconds. Setting this value to zero disables the timeout. Must be either 0 or between 5000 and 10800000.
967
+ :param pulumi.Input[_builtins.int] wal_writer_delay: WAL flush interval in milliseconds. Note that setting this value to lower than the default 200ms may negatively impact performance
968
+ :param pulumi.Input[_builtins.int] work_mem: The maximum amount of memory, in MB, used by a query operation (such as a sort or hash table) before writing to temporary disk files. Default is 1MB + 0.075% of total RAM (up to 32MB).
969
969
  """
970
970
  if autovacuum_analyze_scale_factor is not None:
971
971
  pulumi.set(__self__, "autovacuum_analyze_scale_factor", autovacuum_analyze_scale_factor)
@@ -1072,487 +1072,487 @@ class _DatabasePostgresqlConfigState:
1072
1072
  if work_mem is not None:
1073
1073
  pulumi.set(__self__, "work_mem", work_mem)
1074
1074
 
1075
- @property
1075
+ @_builtins.property
1076
1076
  @pulumi.getter(name="autovacuumAnalyzeScaleFactor")
1077
- def autovacuum_analyze_scale_factor(self) -> Optional[pulumi.Input[float]]:
1077
+ def autovacuum_analyze_scale_factor(self) -> Optional[pulumi.Input[_builtins.float]]:
1078
1078
  """
1079
1079
  Specifies a fraction, in a decimal value, of the table size to add to autovacuum_analyze_threshold when deciding whether to trigger an ANALYZE. The default is 0.2 (20% of table size).
1080
1080
  """
1081
1081
  return pulumi.get(self, "autovacuum_analyze_scale_factor")
1082
1082
 
1083
1083
  @autovacuum_analyze_scale_factor.setter
1084
- def autovacuum_analyze_scale_factor(self, value: Optional[pulumi.Input[float]]):
1084
+ def autovacuum_analyze_scale_factor(self, value: Optional[pulumi.Input[_builtins.float]]):
1085
1085
  pulumi.set(self, "autovacuum_analyze_scale_factor", value)
1086
1086
 
1087
- @property
1087
+ @_builtins.property
1088
1088
  @pulumi.getter(name="autovacuumAnalyzeThreshold")
1089
- def autovacuum_analyze_threshold(self) -> Optional[pulumi.Input[int]]:
1089
+ def autovacuum_analyze_threshold(self) -> Optional[pulumi.Input[_builtins.int]]:
1090
1090
  """
1091
1091
  Specifies the minimum number of inserted, updated, or deleted tuples needed to trigger an ANALYZE in any one table. The default is 50 tuples.
1092
1092
  """
1093
1093
  return pulumi.get(self, "autovacuum_analyze_threshold")
1094
1094
 
1095
1095
  @autovacuum_analyze_threshold.setter
1096
- def autovacuum_analyze_threshold(self, value: Optional[pulumi.Input[int]]):
1096
+ def autovacuum_analyze_threshold(self, value: Optional[pulumi.Input[_builtins.int]]):
1097
1097
  pulumi.set(self, "autovacuum_analyze_threshold", value)
1098
1098
 
1099
- @property
1099
+ @_builtins.property
1100
1100
  @pulumi.getter(name="autovacuumFreezeMaxAge")
1101
- def autovacuum_freeze_max_age(self) -> Optional[pulumi.Input[int]]:
1101
+ def autovacuum_freeze_max_age(self) -> Optional[pulumi.Input[_builtins.int]]:
1102
1102
  """
1103
1103
  Specifies the maximum age (in transactions) that a table's pg_class.relfrozenxid field can attain before a VACUUM operation is forced to prevent transaction ID wraparound within the table. Note that the system will launch autovacuum processes to prevent wraparound even when autovacuum is otherwise disabled. This parameter will cause the server to be restarted.
1104
1104
  """
1105
1105
  return pulumi.get(self, "autovacuum_freeze_max_age")
1106
1106
 
1107
1107
  @autovacuum_freeze_max_age.setter
1108
- def autovacuum_freeze_max_age(self, value: Optional[pulumi.Input[int]]):
1108
+ def autovacuum_freeze_max_age(self, value: Optional[pulumi.Input[_builtins.int]]):
1109
1109
  pulumi.set(self, "autovacuum_freeze_max_age", value)
1110
1110
 
1111
- @property
1111
+ @_builtins.property
1112
1112
  @pulumi.getter(name="autovacuumMaxWorkers")
1113
- def autovacuum_max_workers(self) -> Optional[pulumi.Input[int]]:
1113
+ def autovacuum_max_workers(self) -> Optional[pulumi.Input[_builtins.int]]:
1114
1114
  """
1115
1115
  Specifies the maximum number of autovacuum processes (other than the autovacuum launcher) that may be running at any one time. The default is three. This parameter can only be set at server start.
1116
1116
  """
1117
1117
  return pulumi.get(self, "autovacuum_max_workers")
1118
1118
 
1119
1119
  @autovacuum_max_workers.setter
1120
- def autovacuum_max_workers(self, value: Optional[pulumi.Input[int]]):
1120
+ def autovacuum_max_workers(self, value: Optional[pulumi.Input[_builtins.int]]):
1121
1121
  pulumi.set(self, "autovacuum_max_workers", value)
1122
1122
 
1123
- @property
1123
+ @_builtins.property
1124
1124
  @pulumi.getter(name="autovacuumNaptime")
1125
- def autovacuum_naptime(self) -> Optional[pulumi.Input[int]]:
1125
+ def autovacuum_naptime(self) -> Optional[pulumi.Input[_builtins.int]]:
1126
1126
  """
1127
1127
  Specifies the minimum delay, in seconds, between autovacuum runs on any given database. The default is one minute.
1128
1128
  """
1129
1129
  return pulumi.get(self, "autovacuum_naptime")
1130
1130
 
1131
1131
  @autovacuum_naptime.setter
1132
- def autovacuum_naptime(self, value: Optional[pulumi.Input[int]]):
1132
+ def autovacuum_naptime(self, value: Optional[pulumi.Input[_builtins.int]]):
1133
1133
  pulumi.set(self, "autovacuum_naptime", value)
1134
1134
 
1135
- @property
1135
+ @_builtins.property
1136
1136
  @pulumi.getter(name="autovacuumVacuumCostDelay")
1137
- def autovacuum_vacuum_cost_delay(self) -> Optional[pulumi.Input[int]]:
1137
+ def autovacuum_vacuum_cost_delay(self) -> Optional[pulumi.Input[_builtins.int]]:
1138
1138
  """
1139
1139
  Specifies the cost delay value, in milliseconds, that will be used in automatic VACUUM operations. If -1, uses the regular vacuum_cost_delay value, which is 20 milliseconds.
1140
1140
  """
1141
1141
  return pulumi.get(self, "autovacuum_vacuum_cost_delay")
1142
1142
 
1143
1143
  @autovacuum_vacuum_cost_delay.setter
1144
- def autovacuum_vacuum_cost_delay(self, value: Optional[pulumi.Input[int]]):
1144
+ def autovacuum_vacuum_cost_delay(self, value: Optional[pulumi.Input[_builtins.int]]):
1145
1145
  pulumi.set(self, "autovacuum_vacuum_cost_delay", value)
1146
1146
 
1147
- @property
1147
+ @_builtins.property
1148
1148
  @pulumi.getter(name="autovacuumVacuumCostLimit")
1149
- def autovacuum_vacuum_cost_limit(self) -> Optional[pulumi.Input[int]]:
1149
+ def autovacuum_vacuum_cost_limit(self) -> Optional[pulumi.Input[_builtins.int]]:
1150
1150
  """
1151
1151
  Specifies the cost limit value that will be used in automatic VACUUM operations. If -1 is specified (which is the default), the regular vacuum_cost_limit value will be used.
1152
1152
  """
1153
1153
  return pulumi.get(self, "autovacuum_vacuum_cost_limit")
1154
1154
 
1155
1155
  @autovacuum_vacuum_cost_limit.setter
1156
- def autovacuum_vacuum_cost_limit(self, value: Optional[pulumi.Input[int]]):
1156
+ def autovacuum_vacuum_cost_limit(self, value: Optional[pulumi.Input[_builtins.int]]):
1157
1157
  pulumi.set(self, "autovacuum_vacuum_cost_limit", value)
1158
1158
 
1159
- @property
1159
+ @_builtins.property
1160
1160
  @pulumi.getter(name="autovacuumVacuumScaleFactor")
1161
- def autovacuum_vacuum_scale_factor(self) -> Optional[pulumi.Input[float]]:
1161
+ def autovacuum_vacuum_scale_factor(self) -> Optional[pulumi.Input[_builtins.float]]:
1162
1162
  """
1163
1163
  Specifies a fraction, in a decimal value, of the table size to add to autovacuum_vacuum_threshold when deciding whether to trigger a VACUUM. The default is 0.2 (20% of table size).
1164
1164
  """
1165
1165
  return pulumi.get(self, "autovacuum_vacuum_scale_factor")
1166
1166
 
1167
1167
  @autovacuum_vacuum_scale_factor.setter
1168
- def autovacuum_vacuum_scale_factor(self, value: Optional[pulumi.Input[float]]):
1168
+ def autovacuum_vacuum_scale_factor(self, value: Optional[pulumi.Input[_builtins.float]]):
1169
1169
  pulumi.set(self, "autovacuum_vacuum_scale_factor", value)
1170
1170
 
1171
- @property
1171
+ @_builtins.property
1172
1172
  @pulumi.getter(name="autovacuumVacuumThreshold")
1173
- def autovacuum_vacuum_threshold(self) -> Optional[pulumi.Input[int]]:
1173
+ def autovacuum_vacuum_threshold(self) -> Optional[pulumi.Input[_builtins.int]]:
1174
1174
  """
1175
1175
  Specifies the minimum number of updated or deleted tuples needed to trigger a VACUUM in any one table. The default is 50 tuples.
1176
1176
  """
1177
1177
  return pulumi.get(self, "autovacuum_vacuum_threshold")
1178
1178
 
1179
1179
  @autovacuum_vacuum_threshold.setter
1180
- def autovacuum_vacuum_threshold(self, value: Optional[pulumi.Input[int]]):
1180
+ def autovacuum_vacuum_threshold(self, value: Optional[pulumi.Input[_builtins.int]]):
1181
1181
  pulumi.set(self, "autovacuum_vacuum_threshold", value)
1182
1182
 
1183
- @property
1183
+ @_builtins.property
1184
1184
  @pulumi.getter(name="backupHour")
1185
- def backup_hour(self) -> Optional[pulumi.Input[int]]:
1185
+ def backup_hour(self) -> Optional[pulumi.Input[_builtins.int]]:
1186
1186
  """
1187
1187
  The hour of day (in UTC) when backup for the service starts. New backup only starts if previous backup has already completed.
1188
1188
  """
1189
1189
  return pulumi.get(self, "backup_hour")
1190
1190
 
1191
1191
  @backup_hour.setter
1192
- def backup_hour(self, value: Optional[pulumi.Input[int]]):
1192
+ def backup_hour(self, value: Optional[pulumi.Input[_builtins.int]]):
1193
1193
  pulumi.set(self, "backup_hour", value)
1194
1194
 
1195
- @property
1195
+ @_builtins.property
1196
1196
  @pulumi.getter(name="backupMinute")
1197
- def backup_minute(self) -> Optional[pulumi.Input[int]]:
1197
+ def backup_minute(self) -> Optional[pulumi.Input[_builtins.int]]:
1198
1198
  """
1199
1199
  The minute of the backup hour when backup for the service starts. New backup is only started if previous backup has already completed.
1200
1200
  """
1201
1201
  return pulumi.get(self, "backup_minute")
1202
1202
 
1203
1203
  @backup_minute.setter
1204
- def backup_minute(self, value: Optional[pulumi.Input[int]]):
1204
+ def backup_minute(self, value: Optional[pulumi.Input[_builtins.int]]):
1205
1205
  pulumi.set(self, "backup_minute", value)
1206
1206
 
1207
- @property
1207
+ @_builtins.property
1208
1208
  @pulumi.getter(name="bgwriterDelay")
1209
- def bgwriter_delay(self) -> Optional[pulumi.Input[int]]:
1209
+ def bgwriter_delay(self) -> Optional[pulumi.Input[_builtins.int]]:
1210
1210
  """
1211
1211
  Specifies the delay, in milliseconds, between activity rounds for the background writer. Default is 200 ms.
1212
1212
  """
1213
1213
  return pulumi.get(self, "bgwriter_delay")
1214
1214
 
1215
1215
  @bgwriter_delay.setter
1216
- def bgwriter_delay(self, value: Optional[pulumi.Input[int]]):
1216
+ def bgwriter_delay(self, value: Optional[pulumi.Input[_builtins.int]]):
1217
1217
  pulumi.set(self, "bgwriter_delay", value)
1218
1218
 
1219
- @property
1219
+ @_builtins.property
1220
1220
  @pulumi.getter(name="bgwriterFlushAfter")
1221
- def bgwriter_flush_after(self) -> Optional[pulumi.Input[int]]:
1221
+ def bgwriter_flush_after(self) -> Optional[pulumi.Input[_builtins.int]]:
1222
1222
  """
1223
1223
  The amount of kilobytes that need to be written by the background writer before attempting to force the OS to issue these writes to underlying storage. Specified in kilobytes, default is 512. Setting of 0 disables forced writeback.
1224
1224
  """
1225
1225
  return pulumi.get(self, "bgwriter_flush_after")
1226
1226
 
1227
1227
  @bgwriter_flush_after.setter
1228
- def bgwriter_flush_after(self, value: Optional[pulumi.Input[int]]):
1228
+ def bgwriter_flush_after(self, value: Optional[pulumi.Input[_builtins.int]]):
1229
1229
  pulumi.set(self, "bgwriter_flush_after", value)
1230
1230
 
1231
- @property
1231
+ @_builtins.property
1232
1232
  @pulumi.getter(name="bgwriterLruMaxpages")
1233
- def bgwriter_lru_maxpages(self) -> Optional[pulumi.Input[int]]:
1233
+ def bgwriter_lru_maxpages(self) -> Optional[pulumi.Input[_builtins.int]]:
1234
1234
  """
1235
1235
  The maximum number of buffers that the background writer can write. Setting this to zero disables background writing. Default is 100.
1236
1236
  """
1237
1237
  return pulumi.get(self, "bgwriter_lru_maxpages")
1238
1238
 
1239
1239
  @bgwriter_lru_maxpages.setter
1240
- def bgwriter_lru_maxpages(self, value: Optional[pulumi.Input[int]]):
1240
+ def bgwriter_lru_maxpages(self, value: Optional[pulumi.Input[_builtins.int]]):
1241
1241
  pulumi.set(self, "bgwriter_lru_maxpages", value)
1242
1242
 
1243
- @property
1243
+ @_builtins.property
1244
1244
  @pulumi.getter(name="bgwriterLruMultiplier")
1245
- def bgwriter_lru_multiplier(self) -> Optional[pulumi.Input[float]]:
1245
+ def bgwriter_lru_multiplier(self) -> Optional[pulumi.Input[_builtins.float]]:
1246
1246
  """
1247
1247
  The average recent need for new buffers is multiplied by bgwriter_lru_multiplier to arrive at an estimate of the number that will be needed during the next round, (up to bgwriter_lru_maxpages). 1.0 represents a “just in time” policy of writing exactly the number of buffers predicted to be needed. Larger values provide some cushion against spikes in demand, while smaller values intentionally leave writes to be done by server processes. The default is 2.0.
1248
1248
  """
1249
1249
  return pulumi.get(self, "bgwriter_lru_multiplier")
1250
1250
 
1251
1251
  @bgwriter_lru_multiplier.setter
1252
- def bgwriter_lru_multiplier(self, value: Optional[pulumi.Input[float]]):
1252
+ def bgwriter_lru_multiplier(self, value: Optional[pulumi.Input[_builtins.float]]):
1253
1253
  pulumi.set(self, "bgwriter_lru_multiplier", value)
1254
1254
 
1255
- @property
1255
+ @_builtins.property
1256
1256
  @pulumi.getter(name="clusterId")
1257
- def cluster_id(self) -> Optional[pulumi.Input[str]]:
1257
+ def cluster_id(self) -> Optional[pulumi.Input[_builtins.str]]:
1258
1258
  """
1259
1259
  The ID of the target PostgreSQL cluster.
1260
1260
  """
1261
1261
  return pulumi.get(self, "cluster_id")
1262
1262
 
1263
1263
  @cluster_id.setter
1264
- def cluster_id(self, value: Optional[pulumi.Input[str]]):
1264
+ def cluster_id(self, value: Optional[pulumi.Input[_builtins.str]]):
1265
1265
  pulumi.set(self, "cluster_id", value)
1266
1266
 
1267
- @property
1267
+ @_builtins.property
1268
1268
  @pulumi.getter(name="deadlockTimeout")
1269
- def deadlock_timeout(self) -> Optional[pulumi.Input[int]]:
1269
+ def deadlock_timeout(self) -> Optional[pulumi.Input[_builtins.int]]:
1270
1270
  """
1271
1271
  The amount of time, in milliseconds, to wait on a lock before checking to see if there is a deadlock condition.
1272
1272
  """
1273
1273
  return pulumi.get(self, "deadlock_timeout")
1274
1274
 
1275
1275
  @deadlock_timeout.setter
1276
- def deadlock_timeout(self, value: Optional[pulumi.Input[int]]):
1276
+ def deadlock_timeout(self, value: Optional[pulumi.Input[_builtins.int]]):
1277
1277
  pulumi.set(self, "deadlock_timeout", value)
1278
1278
 
1279
- @property
1279
+ @_builtins.property
1280
1280
  @pulumi.getter(name="defaultToastCompression")
1281
- def default_toast_compression(self) -> Optional[pulumi.Input[str]]:
1281
+ def default_toast_compression(self) -> Optional[pulumi.Input[_builtins.str]]:
1282
1282
  """
1283
1283
  Specifies the default TOAST compression method for values of compressible columns (the default is lz4). Supported values are: `lz4`, `pglz`.
1284
1284
  """
1285
1285
  return pulumi.get(self, "default_toast_compression")
1286
1286
 
1287
1287
  @default_toast_compression.setter
1288
- def default_toast_compression(self, value: Optional[pulumi.Input[str]]):
1288
+ def default_toast_compression(self, value: Optional[pulumi.Input[_builtins.str]]):
1289
1289
  pulumi.set(self, "default_toast_compression", value)
1290
1290
 
1291
- @property
1291
+ @_builtins.property
1292
1292
  @pulumi.getter(name="idleInTransactionSessionTimeout")
1293
- def idle_in_transaction_session_timeout(self) -> Optional[pulumi.Input[int]]:
1293
+ def idle_in_transaction_session_timeout(self) -> Optional[pulumi.Input[_builtins.int]]:
1294
1294
  """
1295
1295
  Time out sessions with open transactions after this number of milliseconds
1296
1296
  """
1297
1297
  return pulumi.get(self, "idle_in_transaction_session_timeout")
1298
1298
 
1299
1299
  @idle_in_transaction_session_timeout.setter
1300
- def idle_in_transaction_session_timeout(self, value: Optional[pulumi.Input[int]]):
1300
+ def idle_in_transaction_session_timeout(self, value: Optional[pulumi.Input[_builtins.int]]):
1301
1301
  pulumi.set(self, "idle_in_transaction_session_timeout", value)
1302
1302
 
1303
- @property
1303
+ @_builtins.property
1304
1304
  @pulumi.getter
1305
- def jit(self) -> Optional[pulumi.Input[bool]]:
1305
+ def jit(self) -> Optional[pulumi.Input[_builtins.bool]]:
1306
1306
  """
1307
1307
  Activates, in a boolean, the system-wide use of Just-in-Time Compilation (JIT).
1308
1308
  """
1309
1309
  return pulumi.get(self, "jit")
1310
1310
 
1311
1311
  @jit.setter
1312
- def jit(self, value: Optional[pulumi.Input[bool]]):
1312
+ def jit(self, value: Optional[pulumi.Input[_builtins.bool]]):
1313
1313
  pulumi.set(self, "jit", value)
1314
1314
 
1315
- @property
1315
+ @_builtins.property
1316
1316
  @pulumi.getter(name="logAutovacuumMinDuration")
1317
- def log_autovacuum_min_duration(self) -> Optional[pulumi.Input[int]]:
1317
+ def log_autovacuum_min_duration(self) -> Optional[pulumi.Input[_builtins.int]]:
1318
1318
  """
1319
1319
  Causes each action executed by autovacuum to be logged if it ran for at least the specified number of milliseconds. Setting this to zero logs all autovacuum actions. Minus-one (the default) disables logging autovacuum actions.
1320
1320
  """
1321
1321
  return pulumi.get(self, "log_autovacuum_min_duration")
1322
1322
 
1323
1323
  @log_autovacuum_min_duration.setter
1324
- def log_autovacuum_min_duration(self, value: Optional[pulumi.Input[int]]):
1324
+ def log_autovacuum_min_duration(self, value: Optional[pulumi.Input[_builtins.int]]):
1325
1325
  pulumi.set(self, "log_autovacuum_min_duration", value)
1326
1326
 
1327
- @property
1327
+ @_builtins.property
1328
1328
  @pulumi.getter(name="logErrorVerbosity")
1329
- def log_error_verbosity(self) -> Optional[pulumi.Input[str]]:
1329
+ def log_error_verbosity(self) -> Optional[pulumi.Input[_builtins.str]]:
1330
1330
  """
1331
1331
  Controls the amount of detail written in the server log for each message that is logged. Supported values are: `TERSE`, `DEFAULT`, `VERBOSE`.
1332
1332
  """
1333
1333
  return pulumi.get(self, "log_error_verbosity")
1334
1334
 
1335
1335
  @log_error_verbosity.setter
1336
- def log_error_verbosity(self, value: Optional[pulumi.Input[str]]):
1336
+ def log_error_verbosity(self, value: Optional[pulumi.Input[_builtins.str]]):
1337
1337
  pulumi.set(self, "log_error_verbosity", value)
1338
1338
 
1339
- @property
1339
+ @_builtins.property
1340
1340
  @pulumi.getter(name="logLinePrefix")
1341
- def log_line_prefix(self) -> Optional[pulumi.Input[str]]:
1341
+ def log_line_prefix(self) -> Optional[pulumi.Input[_builtins.str]]:
1342
1342
  """
1343
1343
  Selects one of the available log-formats. These can support popular log analyzers like pgbadger, pganalyze, etc. Supported values are: `pid=%p,user=%u,db=%d,app=%a,client=%h`, `%m [%p] %q[user=%u,db=%d,app=%a]`, `%t [%p]: [%l-1] user=%u,db=%d,app=%a,client=%h`.
1344
1344
  """
1345
1345
  return pulumi.get(self, "log_line_prefix")
1346
1346
 
1347
1347
  @log_line_prefix.setter
1348
- def log_line_prefix(self, value: Optional[pulumi.Input[str]]):
1348
+ def log_line_prefix(self, value: Optional[pulumi.Input[_builtins.str]]):
1349
1349
  pulumi.set(self, "log_line_prefix", value)
1350
1350
 
1351
- @property
1351
+ @_builtins.property
1352
1352
  @pulumi.getter(name="logMinDurationStatement")
1353
- def log_min_duration_statement(self) -> Optional[pulumi.Input[int]]:
1353
+ def log_min_duration_statement(self) -> Optional[pulumi.Input[_builtins.int]]:
1354
1354
  """
1355
1355
  Log statements that take more than this number of milliseconds to run. If -1, disables.
1356
1356
  """
1357
1357
  return pulumi.get(self, "log_min_duration_statement")
1358
1358
 
1359
1359
  @log_min_duration_statement.setter
1360
- def log_min_duration_statement(self, value: Optional[pulumi.Input[int]]):
1360
+ def log_min_duration_statement(self, value: Optional[pulumi.Input[_builtins.int]]):
1361
1361
  pulumi.set(self, "log_min_duration_statement", value)
1362
1362
 
1363
- @property
1363
+ @_builtins.property
1364
1364
  @pulumi.getter(name="maxFilesPerProcess")
1365
- def max_files_per_process(self) -> Optional[pulumi.Input[int]]:
1365
+ def max_files_per_process(self) -> Optional[pulumi.Input[_builtins.int]]:
1366
1366
  """
1367
1367
  PostgreSQL maximum number of files that can be open per process.
1368
1368
  """
1369
1369
  return pulumi.get(self, "max_files_per_process")
1370
1370
 
1371
1371
  @max_files_per_process.setter
1372
- def max_files_per_process(self, value: Optional[pulumi.Input[int]]):
1372
+ def max_files_per_process(self, value: Optional[pulumi.Input[_builtins.int]]):
1373
1373
  pulumi.set(self, "max_files_per_process", value)
1374
1374
 
1375
- @property
1375
+ @_builtins.property
1376
1376
  @pulumi.getter(name="maxLocksPerTransaction")
1377
- def max_locks_per_transaction(self) -> Optional[pulumi.Input[int]]:
1377
+ def max_locks_per_transaction(self) -> Optional[pulumi.Input[_builtins.int]]:
1378
1378
  """
1379
1379
  PostgreSQL maximum locks per transaction. Once increased, this parameter cannot be lowered from its set value.
1380
1380
  """
1381
1381
  return pulumi.get(self, "max_locks_per_transaction")
1382
1382
 
1383
1383
  @max_locks_per_transaction.setter
1384
- def max_locks_per_transaction(self, value: Optional[pulumi.Input[int]]):
1384
+ def max_locks_per_transaction(self, value: Optional[pulumi.Input[_builtins.int]]):
1385
1385
  pulumi.set(self, "max_locks_per_transaction", value)
1386
1386
 
1387
- @property
1387
+ @_builtins.property
1388
1388
  @pulumi.getter(name="maxLogicalReplicationWorkers")
1389
- def max_logical_replication_workers(self) -> Optional[pulumi.Input[int]]:
1389
+ def max_logical_replication_workers(self) -> Optional[pulumi.Input[_builtins.int]]:
1390
1390
  """
1391
1391
  PostgreSQL maximum logical replication workers (taken from the pool of max_parallel_workers).
1392
1392
  """
1393
1393
  return pulumi.get(self, "max_logical_replication_workers")
1394
1394
 
1395
1395
  @max_logical_replication_workers.setter
1396
- def max_logical_replication_workers(self, value: Optional[pulumi.Input[int]]):
1396
+ def max_logical_replication_workers(self, value: Optional[pulumi.Input[_builtins.int]]):
1397
1397
  pulumi.set(self, "max_logical_replication_workers", value)
1398
1398
 
1399
- @property
1399
+ @_builtins.property
1400
1400
  @pulumi.getter(name="maxParallelWorkers")
1401
- def max_parallel_workers(self) -> Optional[pulumi.Input[int]]:
1401
+ def max_parallel_workers(self) -> Optional[pulumi.Input[_builtins.int]]:
1402
1402
  """
1403
1403
  Sets the maximum number of workers that the system can support for parallel queries.
1404
1404
  """
1405
1405
  return pulumi.get(self, "max_parallel_workers")
1406
1406
 
1407
1407
  @max_parallel_workers.setter
1408
- def max_parallel_workers(self, value: Optional[pulumi.Input[int]]):
1408
+ def max_parallel_workers(self, value: Optional[pulumi.Input[_builtins.int]]):
1409
1409
  pulumi.set(self, "max_parallel_workers", value)
1410
1410
 
1411
- @property
1411
+ @_builtins.property
1412
1412
  @pulumi.getter(name="maxParallelWorkersPerGather")
1413
- def max_parallel_workers_per_gather(self) -> Optional[pulumi.Input[int]]:
1413
+ def max_parallel_workers_per_gather(self) -> Optional[pulumi.Input[_builtins.int]]:
1414
1414
  """
1415
1415
  Sets the maximum number of workers that can be started by a single Gather or Gather Merge node.
1416
1416
  """
1417
1417
  return pulumi.get(self, "max_parallel_workers_per_gather")
1418
1418
 
1419
1419
  @max_parallel_workers_per_gather.setter
1420
- def max_parallel_workers_per_gather(self, value: Optional[pulumi.Input[int]]):
1420
+ def max_parallel_workers_per_gather(self, value: Optional[pulumi.Input[_builtins.int]]):
1421
1421
  pulumi.set(self, "max_parallel_workers_per_gather", value)
1422
1422
 
1423
- @property
1423
+ @_builtins.property
1424
1424
  @pulumi.getter(name="maxPredLocksPerTransaction")
1425
- def max_pred_locks_per_transaction(self) -> Optional[pulumi.Input[int]]:
1425
+ def max_pred_locks_per_transaction(self) -> Optional[pulumi.Input[_builtins.int]]:
1426
1426
  """
1427
1427
  PostgreSQL maximum predicate locks per transaction.
1428
1428
  """
1429
1429
  return pulumi.get(self, "max_pred_locks_per_transaction")
1430
1430
 
1431
1431
  @max_pred_locks_per_transaction.setter
1432
- def max_pred_locks_per_transaction(self, value: Optional[pulumi.Input[int]]):
1432
+ def max_pred_locks_per_transaction(self, value: Optional[pulumi.Input[_builtins.int]]):
1433
1433
  pulumi.set(self, "max_pred_locks_per_transaction", value)
1434
1434
 
1435
- @property
1435
+ @_builtins.property
1436
1436
  @pulumi.getter(name="maxPreparedTransactions")
1437
- def max_prepared_transactions(self) -> Optional[pulumi.Input[int]]:
1437
+ def max_prepared_transactions(self) -> Optional[pulumi.Input[_builtins.int]]:
1438
1438
  """
1439
1439
  PostgreSQL maximum prepared transactions. Once increased, this parameter cannot be lowered from its set value.
1440
1440
  """
1441
1441
  return pulumi.get(self, "max_prepared_transactions")
1442
1442
 
1443
1443
  @max_prepared_transactions.setter
1444
- def max_prepared_transactions(self, value: Optional[pulumi.Input[int]]):
1444
+ def max_prepared_transactions(self, value: Optional[pulumi.Input[_builtins.int]]):
1445
1445
  pulumi.set(self, "max_prepared_transactions", value)
1446
1446
 
1447
- @property
1447
+ @_builtins.property
1448
1448
  @pulumi.getter(name="maxReplicationSlots")
1449
- def max_replication_slots(self) -> Optional[pulumi.Input[int]]:
1449
+ def max_replication_slots(self) -> Optional[pulumi.Input[_builtins.int]]:
1450
1450
  """
1451
1451
  PostgreSQL maximum replication slots.
1452
1452
  """
1453
1453
  return pulumi.get(self, "max_replication_slots")
1454
1454
 
1455
1455
  @max_replication_slots.setter
1456
- def max_replication_slots(self, value: Optional[pulumi.Input[int]]):
1456
+ def max_replication_slots(self, value: Optional[pulumi.Input[_builtins.int]]):
1457
1457
  pulumi.set(self, "max_replication_slots", value)
1458
1458
 
1459
- @property
1459
+ @_builtins.property
1460
1460
  @pulumi.getter(name="maxStackDepth")
1461
- def max_stack_depth(self) -> Optional[pulumi.Input[int]]:
1461
+ def max_stack_depth(self) -> Optional[pulumi.Input[_builtins.int]]:
1462
1462
  """
1463
1463
  Maximum depth of the stack in bytes.
1464
1464
  """
1465
1465
  return pulumi.get(self, "max_stack_depth")
1466
1466
 
1467
1467
  @max_stack_depth.setter
1468
- def max_stack_depth(self, value: Optional[pulumi.Input[int]]):
1468
+ def max_stack_depth(self, value: Optional[pulumi.Input[_builtins.int]]):
1469
1469
  pulumi.set(self, "max_stack_depth", value)
1470
1470
 
1471
- @property
1471
+ @_builtins.property
1472
1472
  @pulumi.getter(name="maxStandbyArchiveDelay")
1473
- def max_standby_archive_delay(self) -> Optional[pulumi.Input[int]]:
1473
+ def max_standby_archive_delay(self) -> Optional[pulumi.Input[_builtins.int]]:
1474
1474
  """
1475
1475
  Max standby archive delay in milliseconds.
1476
1476
  """
1477
1477
  return pulumi.get(self, "max_standby_archive_delay")
1478
1478
 
1479
1479
  @max_standby_archive_delay.setter
1480
- def max_standby_archive_delay(self, value: Optional[pulumi.Input[int]]):
1480
+ def max_standby_archive_delay(self, value: Optional[pulumi.Input[_builtins.int]]):
1481
1481
  pulumi.set(self, "max_standby_archive_delay", value)
1482
1482
 
1483
- @property
1483
+ @_builtins.property
1484
1484
  @pulumi.getter(name="maxStandbyStreamingDelay")
1485
- def max_standby_streaming_delay(self) -> Optional[pulumi.Input[int]]:
1485
+ def max_standby_streaming_delay(self) -> Optional[pulumi.Input[_builtins.int]]:
1486
1486
  """
1487
1487
  Max standby streaming delay in milliseconds.
1488
1488
  """
1489
1489
  return pulumi.get(self, "max_standby_streaming_delay")
1490
1490
 
1491
1491
  @max_standby_streaming_delay.setter
1492
- def max_standby_streaming_delay(self, value: Optional[pulumi.Input[int]]):
1492
+ def max_standby_streaming_delay(self, value: Optional[pulumi.Input[_builtins.int]]):
1493
1493
  pulumi.set(self, "max_standby_streaming_delay", value)
1494
1494
 
1495
- @property
1495
+ @_builtins.property
1496
1496
  @pulumi.getter(name="maxWalSenders")
1497
- def max_wal_senders(self) -> Optional[pulumi.Input[int]]:
1497
+ def max_wal_senders(self) -> Optional[pulumi.Input[_builtins.int]]:
1498
1498
  """
1499
1499
  PostgreSQL maximum WAL senders. Once increased, this parameter cannot be lowered from its set value.
1500
1500
  """
1501
1501
  return pulumi.get(self, "max_wal_senders")
1502
1502
 
1503
1503
  @max_wal_senders.setter
1504
- def max_wal_senders(self, value: Optional[pulumi.Input[int]]):
1504
+ def max_wal_senders(self, value: Optional[pulumi.Input[_builtins.int]]):
1505
1505
  pulumi.set(self, "max_wal_senders", value)
1506
1506
 
1507
- @property
1507
+ @_builtins.property
1508
1508
  @pulumi.getter(name="maxWorkerProcesses")
1509
- def max_worker_processes(self) -> Optional[pulumi.Input[int]]:
1509
+ def max_worker_processes(self) -> Optional[pulumi.Input[_builtins.int]]:
1510
1510
  """
1511
1511
  Sets the maximum number of background processes that the system can support. Once increased, this parameter cannot be lowered from its set value.
1512
1512
  """
1513
1513
  return pulumi.get(self, "max_worker_processes")
1514
1514
 
1515
1515
  @max_worker_processes.setter
1516
- def max_worker_processes(self, value: Optional[pulumi.Input[int]]):
1516
+ def max_worker_processes(self, value: Optional[pulumi.Input[_builtins.int]]):
1517
1517
  pulumi.set(self, "max_worker_processes", value)
1518
1518
 
1519
- @property
1519
+ @_builtins.property
1520
1520
  @pulumi.getter(name="pgPartmanBgwInterval")
1521
- def pg_partman_bgw_interval(self) -> Optional[pulumi.Input[int]]:
1521
+ def pg_partman_bgw_interval(self) -> Optional[pulumi.Input[_builtins.int]]:
1522
1522
  """
1523
1523
  Sets the time interval to run pg_partman's scheduled tasks.
1524
1524
  """
1525
1525
  return pulumi.get(self, "pg_partman_bgw_interval")
1526
1526
 
1527
1527
  @pg_partman_bgw_interval.setter
1528
- def pg_partman_bgw_interval(self, value: Optional[pulumi.Input[int]]):
1528
+ def pg_partman_bgw_interval(self, value: Optional[pulumi.Input[_builtins.int]]):
1529
1529
  pulumi.set(self, "pg_partman_bgw_interval", value)
1530
1530
 
1531
- @property
1531
+ @_builtins.property
1532
1532
  @pulumi.getter(name="pgPartmanBgwRole")
1533
- def pg_partman_bgw_role(self) -> Optional[pulumi.Input[str]]:
1533
+ def pg_partman_bgw_role(self) -> Optional[pulumi.Input[_builtins.str]]:
1534
1534
  """
1535
1535
  Controls which role to use for pg_partman's scheduled background tasks. Must consist of alpha-numeric characters, dots, underscores, or dashes. May not start with dash or dot. Maximum of 64 characters.
1536
1536
  """
1537
1537
  return pulumi.get(self, "pg_partman_bgw_role")
1538
1538
 
1539
1539
  @pg_partman_bgw_role.setter
1540
- def pg_partman_bgw_role(self, value: Optional[pulumi.Input[str]]):
1540
+ def pg_partman_bgw_role(self, value: Optional[pulumi.Input[_builtins.str]]):
1541
1541
  pulumi.set(self, "pg_partman_bgw_role", value)
1542
1542
 
1543
- @property
1543
+ @_builtins.property
1544
1544
  @pulumi.getter(name="pgStatStatementsTrack")
1545
- def pg_stat_statements_track(self) -> Optional[pulumi.Input[str]]:
1545
+ def pg_stat_statements_track(self) -> Optional[pulumi.Input[_builtins.str]]:
1546
1546
  """
1547
1547
  Controls which statements are counted. Specify 'top' to track top-level statements (those issued directly by clients), 'all' to also track nested statements (such as statements invoked within functions), or 'none' to disable statement statistics collection. The default value is top. Supported values are: `all`, `top`, `none`.
1548
1548
  """
1549
1549
  return pulumi.get(self, "pg_stat_statements_track")
1550
1550
 
1551
1551
  @pg_stat_statements_track.setter
1552
- def pg_stat_statements_track(self, value: Optional[pulumi.Input[str]]):
1552
+ def pg_stat_statements_track(self, value: Optional[pulumi.Input[_builtins.str]]):
1553
1553
  pulumi.set(self, "pg_stat_statements_track", value)
1554
1554
 
1555
- @property
1555
+ @_builtins.property
1556
1556
  @pulumi.getter
1557
1557
  def pgbouncers(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['DatabasePostgresqlConfigPgbouncerArgs']]]]:
1558
1558
  """
@@ -1564,31 +1564,31 @@ class _DatabasePostgresqlConfigState:
1564
1564
  def pgbouncers(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['DatabasePostgresqlConfigPgbouncerArgs']]]]):
1565
1565
  pulumi.set(self, "pgbouncers", value)
1566
1566
 
1567
- @property
1567
+ @_builtins.property
1568
1568
  @pulumi.getter(name="sharedBuffersPercentage")
1569
- def shared_buffers_percentage(self) -> Optional[pulumi.Input[float]]:
1569
+ def shared_buffers_percentage(self) -> Optional[pulumi.Input[_builtins.float]]:
1570
1570
  """
1571
1571
  Percentage of total RAM that the database server uses for shared memory buffers. Valid range is 20-60 (float), which corresponds to 20% - 60%. This setting adjusts the shared_buffers configuration value.
1572
1572
  """
1573
1573
  return pulumi.get(self, "shared_buffers_percentage")
1574
1574
 
1575
1575
  @shared_buffers_percentage.setter
1576
- def shared_buffers_percentage(self, value: Optional[pulumi.Input[float]]):
1576
+ def shared_buffers_percentage(self, value: Optional[pulumi.Input[_builtins.float]]):
1577
1577
  pulumi.set(self, "shared_buffers_percentage", value)
1578
1578
 
1579
- @property
1579
+ @_builtins.property
1580
1580
  @pulumi.getter(name="tempFileLimit")
1581
- def temp_file_limit(self) -> Optional[pulumi.Input[int]]:
1581
+ def temp_file_limit(self) -> Optional[pulumi.Input[_builtins.int]]:
1582
1582
  """
1583
1583
  PostgreSQL temporary file limit in KiB. If -1, sets to unlimited.
1584
1584
  """
1585
1585
  return pulumi.get(self, "temp_file_limit")
1586
1586
 
1587
1587
  @temp_file_limit.setter
1588
- def temp_file_limit(self, value: Optional[pulumi.Input[int]]):
1588
+ def temp_file_limit(self, value: Optional[pulumi.Input[_builtins.int]]):
1589
1589
  pulumi.set(self, "temp_file_limit", value)
1590
1590
 
1591
- @property
1591
+ @_builtins.property
1592
1592
  @pulumi.getter
1593
1593
  def timescaledbs(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['DatabasePostgresqlConfigTimescaledbArgs']]]]:
1594
1594
  """
@@ -1600,160 +1600,161 @@ class _DatabasePostgresqlConfigState:
1600
1600
  def timescaledbs(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['DatabasePostgresqlConfigTimescaledbArgs']]]]):
1601
1601
  pulumi.set(self, "timescaledbs", value)
1602
1602
 
1603
- @property
1603
+ @_builtins.property
1604
1604
  @pulumi.getter
1605
- def timezone(self) -> Optional[pulumi.Input[str]]:
1605
+ def timezone(self) -> Optional[pulumi.Input[_builtins.str]]:
1606
1606
  """
1607
1607
  PostgreSQL service timezone
1608
1608
  """
1609
1609
  return pulumi.get(self, "timezone")
1610
1610
 
1611
1611
  @timezone.setter
1612
- def timezone(self, value: Optional[pulumi.Input[str]]):
1612
+ def timezone(self, value: Optional[pulumi.Input[_builtins.str]]):
1613
1613
  pulumi.set(self, "timezone", value)
1614
1614
 
1615
- @property
1615
+ @_builtins.property
1616
1616
  @pulumi.getter(name="trackActivityQuerySize")
1617
- def track_activity_query_size(self) -> Optional[pulumi.Input[int]]:
1617
+ def track_activity_query_size(self) -> Optional[pulumi.Input[_builtins.int]]:
1618
1618
  """
1619
1619
  Specifies the number of bytes reserved to track the currently executing command for each active session.
1620
1620
  """
1621
1621
  return pulumi.get(self, "track_activity_query_size")
1622
1622
 
1623
1623
  @track_activity_query_size.setter
1624
- def track_activity_query_size(self, value: Optional[pulumi.Input[int]]):
1624
+ def track_activity_query_size(self, value: Optional[pulumi.Input[_builtins.int]]):
1625
1625
  pulumi.set(self, "track_activity_query_size", value)
1626
1626
 
1627
- @property
1627
+ @_builtins.property
1628
1628
  @pulumi.getter(name="trackCommitTimestamp")
1629
- def track_commit_timestamp(self) -> Optional[pulumi.Input[str]]:
1629
+ def track_commit_timestamp(self) -> Optional[pulumi.Input[_builtins.str]]:
1630
1630
  """
1631
1631
  Record commit time of transactions. The default value is top. Supported values are: `off`, `on`.
1632
1632
  """
1633
1633
  return pulumi.get(self, "track_commit_timestamp")
1634
1634
 
1635
1635
  @track_commit_timestamp.setter
1636
- def track_commit_timestamp(self, value: Optional[pulumi.Input[str]]):
1636
+ def track_commit_timestamp(self, value: Optional[pulumi.Input[_builtins.str]]):
1637
1637
  pulumi.set(self, "track_commit_timestamp", value)
1638
1638
 
1639
- @property
1639
+ @_builtins.property
1640
1640
  @pulumi.getter(name="trackFunctions")
1641
- def track_functions(self) -> Optional[pulumi.Input[str]]:
1641
+ def track_functions(self) -> Optional[pulumi.Input[_builtins.str]]:
1642
1642
  """
1643
1643
  Enables tracking of function call counts and time used. The default value is top. Supported values are: `all`, `pl`, `none`.
1644
1644
  """
1645
1645
  return pulumi.get(self, "track_functions")
1646
1646
 
1647
1647
  @track_functions.setter
1648
- def track_functions(self, value: Optional[pulumi.Input[str]]):
1648
+ def track_functions(self, value: Optional[pulumi.Input[_builtins.str]]):
1649
1649
  pulumi.set(self, "track_functions", value)
1650
1650
 
1651
- @property
1651
+ @_builtins.property
1652
1652
  @pulumi.getter(name="trackIoTiming")
1653
- def track_io_timing(self) -> Optional[pulumi.Input[str]]:
1653
+ def track_io_timing(self) -> Optional[pulumi.Input[_builtins.str]]:
1654
1654
  """
1655
1655
  Enables timing of database I/O calls. This parameter is off by default, because it will repeatedly query the operating system for the current time, which may cause significant overhead on some platforms. The default value is top. Supported values are: `off`, `on`.
1656
1656
  """
1657
1657
  return pulumi.get(self, "track_io_timing")
1658
1658
 
1659
1659
  @track_io_timing.setter
1660
- def track_io_timing(self, value: Optional[pulumi.Input[str]]):
1660
+ def track_io_timing(self, value: Optional[pulumi.Input[_builtins.str]]):
1661
1661
  pulumi.set(self, "track_io_timing", value)
1662
1662
 
1663
- @property
1663
+ @_builtins.property
1664
1664
  @pulumi.getter(name="walSenderTimeout")
1665
- def wal_sender_timeout(self) -> Optional[pulumi.Input[int]]:
1665
+ def wal_sender_timeout(self) -> Optional[pulumi.Input[_builtins.int]]:
1666
1666
  """
1667
1667
  Terminate replication connections that are inactive for longer than this amount of time, in milliseconds. Setting this value to zero disables the timeout. Must be either 0 or between 5000 and 10800000.
1668
1668
  """
1669
1669
  return pulumi.get(self, "wal_sender_timeout")
1670
1670
 
1671
1671
  @wal_sender_timeout.setter
1672
- def wal_sender_timeout(self, value: Optional[pulumi.Input[int]]):
1672
+ def wal_sender_timeout(self, value: Optional[pulumi.Input[_builtins.int]]):
1673
1673
  pulumi.set(self, "wal_sender_timeout", value)
1674
1674
 
1675
- @property
1675
+ @_builtins.property
1676
1676
  @pulumi.getter(name="walWriterDelay")
1677
- def wal_writer_delay(self) -> Optional[pulumi.Input[int]]:
1677
+ def wal_writer_delay(self) -> Optional[pulumi.Input[_builtins.int]]:
1678
1678
  """
1679
1679
  WAL flush interval in milliseconds. Note that setting this value to lower than the default 200ms may negatively impact performance
1680
1680
  """
1681
1681
  return pulumi.get(self, "wal_writer_delay")
1682
1682
 
1683
1683
  @wal_writer_delay.setter
1684
- def wal_writer_delay(self, value: Optional[pulumi.Input[int]]):
1684
+ def wal_writer_delay(self, value: Optional[pulumi.Input[_builtins.int]]):
1685
1685
  pulumi.set(self, "wal_writer_delay", value)
1686
1686
 
1687
- @property
1687
+ @_builtins.property
1688
1688
  @pulumi.getter(name="workMem")
1689
- def work_mem(self) -> Optional[pulumi.Input[int]]:
1689
+ def work_mem(self) -> Optional[pulumi.Input[_builtins.int]]:
1690
1690
  """
1691
1691
  The maximum amount of memory, in MB, used by a query operation (such as a sort or hash table) before writing to temporary disk files. Default is 1MB + 0.075% of total RAM (up to 32MB).
1692
1692
  """
1693
1693
  return pulumi.get(self, "work_mem")
1694
1694
 
1695
1695
  @work_mem.setter
1696
- def work_mem(self, value: Optional[pulumi.Input[int]]):
1696
+ def work_mem(self, value: Optional[pulumi.Input[_builtins.int]]):
1697
1697
  pulumi.set(self, "work_mem", value)
1698
1698
 
1699
1699
 
1700
+ @pulumi.type_token("digitalocean:index/databasePostgresqlConfig:DatabasePostgresqlConfig")
1700
1701
  class DatabasePostgresqlConfig(pulumi.CustomResource):
1701
1702
  @overload
1702
1703
  def __init__(__self__,
1703
1704
  resource_name: str,
1704
1705
  opts: Optional[pulumi.ResourceOptions] = None,
1705
- autovacuum_analyze_scale_factor: Optional[pulumi.Input[float]] = None,
1706
- autovacuum_analyze_threshold: Optional[pulumi.Input[int]] = None,
1707
- autovacuum_freeze_max_age: Optional[pulumi.Input[int]] = None,
1708
- autovacuum_max_workers: Optional[pulumi.Input[int]] = None,
1709
- autovacuum_naptime: Optional[pulumi.Input[int]] = None,
1710
- autovacuum_vacuum_cost_delay: Optional[pulumi.Input[int]] = None,
1711
- autovacuum_vacuum_cost_limit: Optional[pulumi.Input[int]] = None,
1712
- autovacuum_vacuum_scale_factor: Optional[pulumi.Input[float]] = None,
1713
- autovacuum_vacuum_threshold: Optional[pulumi.Input[int]] = None,
1714
- backup_hour: Optional[pulumi.Input[int]] = None,
1715
- backup_minute: Optional[pulumi.Input[int]] = None,
1716
- bgwriter_delay: Optional[pulumi.Input[int]] = None,
1717
- bgwriter_flush_after: Optional[pulumi.Input[int]] = None,
1718
- bgwriter_lru_maxpages: Optional[pulumi.Input[int]] = None,
1719
- bgwriter_lru_multiplier: Optional[pulumi.Input[float]] = None,
1720
- cluster_id: Optional[pulumi.Input[str]] = None,
1721
- deadlock_timeout: Optional[pulumi.Input[int]] = None,
1722
- default_toast_compression: Optional[pulumi.Input[str]] = None,
1723
- idle_in_transaction_session_timeout: Optional[pulumi.Input[int]] = None,
1724
- jit: Optional[pulumi.Input[bool]] = None,
1725
- log_autovacuum_min_duration: Optional[pulumi.Input[int]] = None,
1726
- log_error_verbosity: Optional[pulumi.Input[str]] = None,
1727
- log_line_prefix: Optional[pulumi.Input[str]] = None,
1728
- log_min_duration_statement: Optional[pulumi.Input[int]] = None,
1729
- max_files_per_process: Optional[pulumi.Input[int]] = None,
1730
- max_locks_per_transaction: Optional[pulumi.Input[int]] = None,
1731
- max_logical_replication_workers: Optional[pulumi.Input[int]] = None,
1732
- max_parallel_workers: Optional[pulumi.Input[int]] = None,
1733
- max_parallel_workers_per_gather: Optional[pulumi.Input[int]] = None,
1734
- max_pred_locks_per_transaction: Optional[pulumi.Input[int]] = None,
1735
- max_prepared_transactions: Optional[pulumi.Input[int]] = None,
1736
- max_replication_slots: Optional[pulumi.Input[int]] = None,
1737
- max_stack_depth: Optional[pulumi.Input[int]] = None,
1738
- max_standby_archive_delay: Optional[pulumi.Input[int]] = None,
1739
- max_standby_streaming_delay: Optional[pulumi.Input[int]] = None,
1740
- max_wal_senders: Optional[pulumi.Input[int]] = None,
1741
- max_worker_processes: Optional[pulumi.Input[int]] = None,
1742
- pg_partman_bgw_interval: Optional[pulumi.Input[int]] = None,
1743
- pg_partman_bgw_role: Optional[pulumi.Input[str]] = None,
1744
- pg_stat_statements_track: Optional[pulumi.Input[str]] = None,
1706
+ autovacuum_analyze_scale_factor: Optional[pulumi.Input[_builtins.float]] = None,
1707
+ autovacuum_analyze_threshold: Optional[pulumi.Input[_builtins.int]] = None,
1708
+ autovacuum_freeze_max_age: Optional[pulumi.Input[_builtins.int]] = None,
1709
+ autovacuum_max_workers: Optional[pulumi.Input[_builtins.int]] = None,
1710
+ autovacuum_naptime: Optional[pulumi.Input[_builtins.int]] = None,
1711
+ autovacuum_vacuum_cost_delay: Optional[pulumi.Input[_builtins.int]] = None,
1712
+ autovacuum_vacuum_cost_limit: Optional[pulumi.Input[_builtins.int]] = None,
1713
+ autovacuum_vacuum_scale_factor: Optional[pulumi.Input[_builtins.float]] = None,
1714
+ autovacuum_vacuum_threshold: Optional[pulumi.Input[_builtins.int]] = None,
1715
+ backup_hour: Optional[pulumi.Input[_builtins.int]] = None,
1716
+ backup_minute: Optional[pulumi.Input[_builtins.int]] = None,
1717
+ bgwriter_delay: Optional[pulumi.Input[_builtins.int]] = None,
1718
+ bgwriter_flush_after: Optional[pulumi.Input[_builtins.int]] = None,
1719
+ bgwriter_lru_maxpages: Optional[pulumi.Input[_builtins.int]] = None,
1720
+ bgwriter_lru_multiplier: Optional[pulumi.Input[_builtins.float]] = None,
1721
+ cluster_id: Optional[pulumi.Input[_builtins.str]] = None,
1722
+ deadlock_timeout: Optional[pulumi.Input[_builtins.int]] = None,
1723
+ default_toast_compression: Optional[pulumi.Input[_builtins.str]] = None,
1724
+ idle_in_transaction_session_timeout: Optional[pulumi.Input[_builtins.int]] = None,
1725
+ jit: Optional[pulumi.Input[_builtins.bool]] = None,
1726
+ log_autovacuum_min_duration: Optional[pulumi.Input[_builtins.int]] = None,
1727
+ log_error_verbosity: Optional[pulumi.Input[_builtins.str]] = None,
1728
+ log_line_prefix: Optional[pulumi.Input[_builtins.str]] = None,
1729
+ log_min_duration_statement: Optional[pulumi.Input[_builtins.int]] = None,
1730
+ max_files_per_process: Optional[pulumi.Input[_builtins.int]] = None,
1731
+ max_locks_per_transaction: Optional[pulumi.Input[_builtins.int]] = None,
1732
+ max_logical_replication_workers: Optional[pulumi.Input[_builtins.int]] = None,
1733
+ max_parallel_workers: Optional[pulumi.Input[_builtins.int]] = None,
1734
+ max_parallel_workers_per_gather: Optional[pulumi.Input[_builtins.int]] = None,
1735
+ max_pred_locks_per_transaction: Optional[pulumi.Input[_builtins.int]] = None,
1736
+ max_prepared_transactions: Optional[pulumi.Input[_builtins.int]] = None,
1737
+ max_replication_slots: Optional[pulumi.Input[_builtins.int]] = None,
1738
+ max_stack_depth: Optional[pulumi.Input[_builtins.int]] = None,
1739
+ max_standby_archive_delay: Optional[pulumi.Input[_builtins.int]] = None,
1740
+ max_standby_streaming_delay: Optional[pulumi.Input[_builtins.int]] = None,
1741
+ max_wal_senders: Optional[pulumi.Input[_builtins.int]] = None,
1742
+ max_worker_processes: Optional[pulumi.Input[_builtins.int]] = None,
1743
+ pg_partman_bgw_interval: Optional[pulumi.Input[_builtins.int]] = None,
1744
+ pg_partman_bgw_role: Optional[pulumi.Input[_builtins.str]] = None,
1745
+ pg_stat_statements_track: Optional[pulumi.Input[_builtins.str]] = None,
1745
1746
  pgbouncers: Optional[pulumi.Input[Sequence[pulumi.Input[Union['DatabasePostgresqlConfigPgbouncerArgs', 'DatabasePostgresqlConfigPgbouncerArgsDict']]]]] = None,
1746
- shared_buffers_percentage: Optional[pulumi.Input[float]] = None,
1747
- temp_file_limit: Optional[pulumi.Input[int]] = None,
1747
+ shared_buffers_percentage: Optional[pulumi.Input[_builtins.float]] = None,
1748
+ temp_file_limit: Optional[pulumi.Input[_builtins.int]] = None,
1748
1749
  timescaledbs: Optional[pulumi.Input[Sequence[pulumi.Input[Union['DatabasePostgresqlConfigTimescaledbArgs', 'DatabasePostgresqlConfigTimescaledbArgsDict']]]]] = None,
1749
- timezone: Optional[pulumi.Input[str]] = None,
1750
- track_activity_query_size: Optional[pulumi.Input[int]] = None,
1751
- track_commit_timestamp: Optional[pulumi.Input[str]] = None,
1752
- track_functions: Optional[pulumi.Input[str]] = None,
1753
- track_io_timing: Optional[pulumi.Input[str]] = None,
1754
- wal_sender_timeout: Optional[pulumi.Input[int]] = None,
1755
- wal_writer_delay: Optional[pulumi.Input[int]] = None,
1756
- work_mem: Optional[pulumi.Input[int]] = None,
1750
+ timezone: Optional[pulumi.Input[_builtins.str]] = None,
1751
+ track_activity_query_size: Optional[pulumi.Input[_builtins.int]] = None,
1752
+ track_commit_timestamp: Optional[pulumi.Input[_builtins.str]] = None,
1753
+ track_functions: Optional[pulumi.Input[_builtins.str]] = None,
1754
+ track_io_timing: Optional[pulumi.Input[_builtins.str]] = None,
1755
+ wal_sender_timeout: Optional[pulumi.Input[_builtins.int]] = None,
1756
+ wal_writer_delay: Optional[pulumi.Input[_builtins.int]] = None,
1757
+ work_mem: Optional[pulumi.Input[_builtins.int]] = None,
1757
1758
  __props__=None):
1758
1759
  """
1759
1760
  Provides a virtual resource that can be used to change advanced configuration
@@ -1792,58 +1793,58 @@ class DatabasePostgresqlConfig(pulumi.CustomResource):
1792
1793
 
1793
1794
  :param str resource_name: The name of the resource.
1794
1795
  :param pulumi.ResourceOptions opts: Options for the resource.
1795
- :param pulumi.Input[float] autovacuum_analyze_scale_factor: Specifies a fraction, in a decimal value, of the table size to add to autovacuum_analyze_threshold when deciding whether to trigger an ANALYZE. The default is 0.2 (20% of table size).
1796
- :param pulumi.Input[int] autovacuum_analyze_threshold: Specifies the minimum number of inserted, updated, or deleted tuples needed to trigger an ANALYZE in any one table. The default is 50 tuples.
1797
- :param pulumi.Input[int] autovacuum_freeze_max_age: Specifies the maximum age (in transactions) that a table's pg_class.relfrozenxid field can attain before a VACUUM operation is forced to prevent transaction ID wraparound within the table. Note that the system will launch autovacuum processes to prevent wraparound even when autovacuum is otherwise disabled. This parameter will cause the server to be restarted.
1798
- :param pulumi.Input[int] autovacuum_max_workers: Specifies the maximum number of autovacuum processes (other than the autovacuum launcher) that may be running at any one time. The default is three. This parameter can only be set at server start.
1799
- :param pulumi.Input[int] autovacuum_naptime: Specifies the minimum delay, in seconds, between autovacuum runs on any given database. The default is one minute.
1800
- :param pulumi.Input[int] autovacuum_vacuum_cost_delay: Specifies the cost delay value, in milliseconds, that will be used in automatic VACUUM operations. If -1, uses the regular vacuum_cost_delay value, which is 20 milliseconds.
1801
- :param pulumi.Input[int] autovacuum_vacuum_cost_limit: Specifies the cost limit value that will be used in automatic VACUUM operations. If -1 is specified (which is the default), the regular vacuum_cost_limit value will be used.
1802
- :param pulumi.Input[float] autovacuum_vacuum_scale_factor: Specifies a fraction, in a decimal value, of the table size to add to autovacuum_vacuum_threshold when deciding whether to trigger a VACUUM. The default is 0.2 (20% of table size).
1803
- :param pulumi.Input[int] autovacuum_vacuum_threshold: Specifies the minimum number of updated or deleted tuples needed to trigger a VACUUM in any one table. The default is 50 tuples.
1804
- :param pulumi.Input[int] backup_hour: The hour of day (in UTC) when backup for the service starts. New backup only starts if previous backup has already completed.
1805
- :param pulumi.Input[int] backup_minute: The minute of the backup hour when backup for the service starts. New backup is only started if previous backup has already completed.
1806
- :param pulumi.Input[int] bgwriter_delay: Specifies the delay, in milliseconds, between activity rounds for the background writer. Default is 200 ms.
1807
- :param pulumi.Input[int] bgwriter_flush_after: The amount of kilobytes that need to be written by the background writer before attempting to force the OS to issue these writes to underlying storage. Specified in kilobytes, default is 512. Setting of 0 disables forced writeback.
1808
- :param pulumi.Input[int] bgwriter_lru_maxpages: The maximum number of buffers that the background writer can write. Setting this to zero disables background writing. Default is 100.
1809
- :param pulumi.Input[float] bgwriter_lru_multiplier: The average recent need for new buffers is multiplied by bgwriter_lru_multiplier to arrive at an estimate of the number that will be needed during the next round, (up to bgwriter_lru_maxpages). 1.0 represents a “just in time” policy of writing exactly the number of buffers predicted to be needed. Larger values provide some cushion against spikes in demand, while smaller values intentionally leave writes to be done by server processes. The default is 2.0.
1810
- :param pulumi.Input[str] cluster_id: The ID of the target PostgreSQL cluster.
1811
- :param pulumi.Input[int] deadlock_timeout: The amount of time, in milliseconds, to wait on a lock before checking to see if there is a deadlock condition.
1812
- :param pulumi.Input[str] default_toast_compression: Specifies the default TOAST compression method for values of compressible columns (the default is lz4). Supported values are: `lz4`, `pglz`.
1813
- :param pulumi.Input[int] idle_in_transaction_session_timeout: Time out sessions with open transactions after this number of milliseconds
1814
- :param pulumi.Input[bool] jit: Activates, in a boolean, the system-wide use of Just-in-Time Compilation (JIT).
1815
- :param pulumi.Input[int] log_autovacuum_min_duration: Causes each action executed by autovacuum to be logged if it ran for at least the specified number of milliseconds. Setting this to zero logs all autovacuum actions. Minus-one (the default) disables logging autovacuum actions.
1816
- :param pulumi.Input[str] log_error_verbosity: Controls the amount of detail written in the server log for each message that is logged. Supported values are: `TERSE`, `DEFAULT`, `VERBOSE`.
1817
- :param pulumi.Input[str] log_line_prefix: Selects one of the available log-formats. These can support popular log analyzers like pgbadger, pganalyze, etc. Supported values are: `pid=%p,user=%u,db=%d,app=%a,client=%h`, `%m [%p] %q[user=%u,db=%d,app=%a]`, `%t [%p]: [%l-1] user=%u,db=%d,app=%a,client=%h`.
1818
- :param pulumi.Input[int] log_min_duration_statement: Log statements that take more than this number of milliseconds to run. If -1, disables.
1819
- :param pulumi.Input[int] max_files_per_process: PostgreSQL maximum number of files that can be open per process.
1820
- :param pulumi.Input[int] max_locks_per_transaction: PostgreSQL maximum locks per transaction. Once increased, this parameter cannot be lowered from its set value.
1821
- :param pulumi.Input[int] max_logical_replication_workers: PostgreSQL maximum logical replication workers (taken from the pool of max_parallel_workers).
1822
- :param pulumi.Input[int] max_parallel_workers: Sets the maximum number of workers that the system can support for parallel queries.
1823
- :param pulumi.Input[int] max_parallel_workers_per_gather: Sets the maximum number of workers that can be started by a single Gather or Gather Merge node.
1824
- :param pulumi.Input[int] max_pred_locks_per_transaction: PostgreSQL maximum predicate locks per transaction.
1825
- :param pulumi.Input[int] max_prepared_transactions: PostgreSQL maximum prepared transactions. Once increased, this parameter cannot be lowered from its set value.
1826
- :param pulumi.Input[int] max_replication_slots: PostgreSQL maximum replication slots.
1827
- :param pulumi.Input[int] max_stack_depth: Maximum depth of the stack in bytes.
1828
- :param pulumi.Input[int] max_standby_archive_delay: Max standby archive delay in milliseconds.
1829
- :param pulumi.Input[int] max_standby_streaming_delay: Max standby streaming delay in milliseconds.
1830
- :param pulumi.Input[int] max_wal_senders: PostgreSQL maximum WAL senders. Once increased, this parameter cannot be lowered from its set value.
1831
- :param pulumi.Input[int] max_worker_processes: Sets the maximum number of background processes that the system can support. Once increased, this parameter cannot be lowered from its set value.
1832
- :param pulumi.Input[int] pg_partman_bgw_interval: Sets the time interval to run pg_partman's scheduled tasks.
1833
- :param pulumi.Input[str] pg_partman_bgw_role: Controls which role to use for pg_partman's scheduled background tasks. Must consist of alpha-numeric characters, dots, underscores, or dashes. May not start with dash or dot. Maximum of 64 characters.
1834
- :param pulumi.Input[str] pg_stat_statements_track: Controls which statements are counted. Specify 'top' to track top-level statements (those issued directly by clients), 'all' to also track nested statements (such as statements invoked within functions), or 'none' to disable statement statistics collection. The default value is top. Supported values are: `all`, `top`, `none`.
1796
+ :param pulumi.Input[_builtins.float] autovacuum_analyze_scale_factor: Specifies a fraction, in a decimal value, of the table size to add to autovacuum_analyze_threshold when deciding whether to trigger an ANALYZE. The default is 0.2 (20% of table size).
1797
+ :param pulumi.Input[_builtins.int] autovacuum_analyze_threshold: Specifies the minimum number of inserted, updated, or deleted tuples needed to trigger an ANALYZE in any one table. The default is 50 tuples.
1798
+ :param pulumi.Input[_builtins.int] autovacuum_freeze_max_age: Specifies the maximum age (in transactions) that a table's pg_class.relfrozenxid field can attain before a VACUUM operation is forced to prevent transaction ID wraparound within the table. Note that the system will launch autovacuum processes to prevent wraparound even when autovacuum is otherwise disabled. This parameter will cause the server to be restarted.
1799
+ :param pulumi.Input[_builtins.int] autovacuum_max_workers: Specifies the maximum number of autovacuum processes (other than the autovacuum launcher) that may be running at any one time. The default is three. This parameter can only be set at server start.
1800
+ :param pulumi.Input[_builtins.int] autovacuum_naptime: Specifies the minimum delay, in seconds, between autovacuum runs on any given database. The default is one minute.
1801
+ :param pulumi.Input[_builtins.int] autovacuum_vacuum_cost_delay: Specifies the cost delay value, in milliseconds, that will be used in automatic VACUUM operations. If -1, uses the regular vacuum_cost_delay value, which is 20 milliseconds.
1802
+ :param pulumi.Input[_builtins.int] autovacuum_vacuum_cost_limit: Specifies the cost limit value that will be used in automatic VACUUM operations. If -1 is specified (which is the default), the regular vacuum_cost_limit value will be used.
1803
+ :param pulumi.Input[_builtins.float] autovacuum_vacuum_scale_factor: Specifies a fraction, in a decimal value, of the table size to add to autovacuum_vacuum_threshold when deciding whether to trigger a VACUUM. The default is 0.2 (20% of table size).
1804
+ :param pulumi.Input[_builtins.int] autovacuum_vacuum_threshold: Specifies the minimum number of updated or deleted tuples needed to trigger a VACUUM in any one table. The default is 50 tuples.
1805
+ :param pulumi.Input[_builtins.int] backup_hour: The hour of day (in UTC) when backup for the service starts. New backup only starts if previous backup has already completed.
1806
+ :param pulumi.Input[_builtins.int] backup_minute: The minute of the backup hour when backup for the service starts. New backup is only started if previous backup has already completed.
1807
+ :param pulumi.Input[_builtins.int] bgwriter_delay: Specifies the delay, in milliseconds, between activity rounds for the background writer. Default is 200 ms.
1808
+ :param pulumi.Input[_builtins.int] bgwriter_flush_after: The amount of kilobytes that need to be written by the background writer before attempting to force the OS to issue these writes to underlying storage. Specified in kilobytes, default is 512. Setting of 0 disables forced writeback.
1809
+ :param pulumi.Input[_builtins.int] bgwriter_lru_maxpages: The maximum number of buffers that the background writer can write. Setting this to zero disables background writing. Default is 100.
1810
+ :param pulumi.Input[_builtins.float] bgwriter_lru_multiplier: The average recent need for new buffers is multiplied by bgwriter_lru_multiplier to arrive at an estimate of the number that will be needed during the next round, (up to bgwriter_lru_maxpages). 1.0 represents a “just in time” policy of writing exactly the number of buffers predicted to be needed. Larger values provide some cushion against spikes in demand, while smaller values intentionally leave writes to be done by server processes. The default is 2.0.
1811
+ :param pulumi.Input[_builtins.str] cluster_id: The ID of the target PostgreSQL cluster.
1812
+ :param pulumi.Input[_builtins.int] deadlock_timeout: The amount of time, in milliseconds, to wait on a lock before checking to see if there is a deadlock condition.
1813
+ :param pulumi.Input[_builtins.str] default_toast_compression: Specifies the default TOAST compression method for values of compressible columns (the default is lz4). Supported values are: `lz4`, `pglz`.
1814
+ :param pulumi.Input[_builtins.int] idle_in_transaction_session_timeout: Time out sessions with open transactions after this number of milliseconds
1815
+ :param pulumi.Input[_builtins.bool] jit: Activates, in a boolean, the system-wide use of Just-in-Time Compilation (JIT).
1816
+ :param pulumi.Input[_builtins.int] log_autovacuum_min_duration: Causes each action executed by autovacuum to be logged if it ran for at least the specified number of milliseconds. Setting this to zero logs all autovacuum actions. Minus-one (the default) disables logging autovacuum actions.
1817
+ :param pulumi.Input[_builtins.str] log_error_verbosity: Controls the amount of detail written in the server log for each message that is logged. Supported values are: `TERSE`, `DEFAULT`, `VERBOSE`.
1818
+ :param pulumi.Input[_builtins.str] log_line_prefix: Selects one of the available log-formats. These can support popular log analyzers like pgbadger, pganalyze, etc. Supported values are: `pid=%p,user=%u,db=%d,app=%a,client=%h`, `%m [%p] %q[user=%u,db=%d,app=%a]`, `%t [%p]: [%l-1] user=%u,db=%d,app=%a,client=%h`.
1819
+ :param pulumi.Input[_builtins.int] log_min_duration_statement: Log statements that take more than this number of milliseconds to run. If -1, disables.
1820
+ :param pulumi.Input[_builtins.int] max_files_per_process: PostgreSQL maximum number of files that can be open per process.
1821
+ :param pulumi.Input[_builtins.int] max_locks_per_transaction: PostgreSQL maximum locks per transaction. Once increased, this parameter cannot be lowered from its set value.
1822
+ :param pulumi.Input[_builtins.int] max_logical_replication_workers: PostgreSQL maximum logical replication workers (taken from the pool of max_parallel_workers).
1823
+ :param pulumi.Input[_builtins.int] max_parallel_workers: Sets the maximum number of workers that the system can support for parallel queries.
1824
+ :param pulumi.Input[_builtins.int] max_parallel_workers_per_gather: Sets the maximum number of workers that can be started by a single Gather or Gather Merge node.
1825
+ :param pulumi.Input[_builtins.int] max_pred_locks_per_transaction: PostgreSQL maximum predicate locks per transaction.
1826
+ :param pulumi.Input[_builtins.int] max_prepared_transactions: PostgreSQL maximum prepared transactions. Once increased, this parameter cannot be lowered from its set value.
1827
+ :param pulumi.Input[_builtins.int] max_replication_slots: PostgreSQL maximum replication slots.
1828
+ :param pulumi.Input[_builtins.int] max_stack_depth: Maximum depth of the stack in bytes.
1829
+ :param pulumi.Input[_builtins.int] max_standby_archive_delay: Max standby archive delay in milliseconds.
1830
+ :param pulumi.Input[_builtins.int] max_standby_streaming_delay: Max standby streaming delay in milliseconds.
1831
+ :param pulumi.Input[_builtins.int] max_wal_senders: PostgreSQL maximum WAL senders. Once increased, this parameter cannot be lowered from its set value.
1832
+ :param pulumi.Input[_builtins.int] max_worker_processes: Sets the maximum number of background processes that the system can support. Once increased, this parameter cannot be lowered from its set value.
1833
+ :param pulumi.Input[_builtins.int] pg_partman_bgw_interval: Sets the time interval to run pg_partman's scheduled tasks.
1834
+ :param pulumi.Input[_builtins.str] pg_partman_bgw_role: Controls which role to use for pg_partman's scheduled background tasks. Must consist of alpha-numeric characters, dots, underscores, or dashes. May not start with dash or dot. Maximum of 64 characters.
1835
+ :param pulumi.Input[_builtins.str] pg_stat_statements_track: Controls which statements are counted. Specify 'top' to track top-level statements (those issued directly by clients), 'all' to also track nested statements (such as statements invoked within functions), or 'none' to disable statement statistics collection. The default value is top. Supported values are: `all`, `top`, `none`.
1835
1836
  :param pulumi.Input[Sequence[pulumi.Input[Union['DatabasePostgresqlConfigPgbouncerArgs', 'DatabasePostgresqlConfigPgbouncerArgsDict']]]] pgbouncers: PGBouncer connection pooling settings
1836
- :param pulumi.Input[float] shared_buffers_percentage: Percentage of total RAM that the database server uses for shared memory buffers. Valid range is 20-60 (float), which corresponds to 20% - 60%. This setting adjusts the shared_buffers configuration value.
1837
- :param pulumi.Input[int] temp_file_limit: PostgreSQL temporary file limit in KiB. If -1, sets to unlimited.
1837
+ :param pulumi.Input[_builtins.float] shared_buffers_percentage: Percentage of total RAM that the database server uses for shared memory buffers. Valid range is 20-60 (float), which corresponds to 20% - 60%. This setting adjusts the shared_buffers configuration value.
1838
+ :param pulumi.Input[_builtins.int] temp_file_limit: PostgreSQL temporary file limit in KiB. If -1, sets to unlimited.
1838
1839
  :param pulumi.Input[Sequence[pulumi.Input[Union['DatabasePostgresqlConfigTimescaledbArgs', 'DatabasePostgresqlConfigTimescaledbArgsDict']]]] timescaledbs: TimescaleDB extension configuration values
1839
- :param pulumi.Input[str] timezone: PostgreSQL service timezone
1840
- :param pulumi.Input[int] track_activity_query_size: Specifies the number of bytes reserved to track the currently executing command for each active session.
1841
- :param pulumi.Input[str] track_commit_timestamp: Record commit time of transactions. The default value is top. Supported values are: `off`, `on`.
1842
- :param pulumi.Input[str] track_functions: Enables tracking of function call counts and time used. The default value is top. Supported values are: `all`, `pl`, `none`.
1843
- :param pulumi.Input[str] track_io_timing: Enables timing of database I/O calls. This parameter is off by default, because it will repeatedly query the operating system for the current time, which may cause significant overhead on some platforms. The default value is top. Supported values are: `off`, `on`.
1844
- :param pulumi.Input[int] wal_sender_timeout: Terminate replication connections that are inactive for longer than this amount of time, in milliseconds. Setting this value to zero disables the timeout. Must be either 0 or between 5000 and 10800000.
1845
- :param pulumi.Input[int] wal_writer_delay: WAL flush interval in milliseconds. Note that setting this value to lower than the default 200ms may negatively impact performance
1846
- :param pulumi.Input[int] work_mem: The maximum amount of memory, in MB, used by a query operation (such as a sort or hash table) before writing to temporary disk files. Default is 1MB + 0.075% of total RAM (up to 32MB).
1840
+ :param pulumi.Input[_builtins.str] timezone: PostgreSQL service timezone
1841
+ :param pulumi.Input[_builtins.int] track_activity_query_size: Specifies the number of bytes reserved to track the currently executing command for each active session.
1842
+ :param pulumi.Input[_builtins.str] track_commit_timestamp: Record commit time of transactions. The default value is top. Supported values are: `off`, `on`.
1843
+ :param pulumi.Input[_builtins.str] track_functions: Enables tracking of function call counts and time used. The default value is top. Supported values are: `all`, `pl`, `none`.
1844
+ :param pulumi.Input[_builtins.str] track_io_timing: Enables timing of database I/O calls. This parameter is off by default, because it will repeatedly query the operating system for the current time, which may cause significant overhead on some platforms. The default value is top. Supported values are: `off`, `on`.
1845
+ :param pulumi.Input[_builtins.int] wal_sender_timeout: Terminate replication connections that are inactive for longer than this amount of time, in milliseconds. Setting this value to zero disables the timeout. Must be either 0 or between 5000 and 10800000.
1846
+ :param pulumi.Input[_builtins.int] wal_writer_delay: WAL flush interval in milliseconds. Note that setting this value to lower than the default 200ms may negatively impact performance
1847
+ :param pulumi.Input[_builtins.int] work_mem: The maximum amount of memory, in MB, used by a query operation (such as a sort or hash table) before writing to temporary disk files. Default is 1MB + 0.075% of total RAM (up to 32MB).
1847
1848
  """
1848
1849
  ...
1849
1850
  @overload
@@ -1901,58 +1902,58 @@ class DatabasePostgresqlConfig(pulumi.CustomResource):
1901
1902
  def _internal_init(__self__,
1902
1903
  resource_name: str,
1903
1904
  opts: Optional[pulumi.ResourceOptions] = None,
1904
- autovacuum_analyze_scale_factor: Optional[pulumi.Input[float]] = None,
1905
- autovacuum_analyze_threshold: Optional[pulumi.Input[int]] = None,
1906
- autovacuum_freeze_max_age: Optional[pulumi.Input[int]] = None,
1907
- autovacuum_max_workers: Optional[pulumi.Input[int]] = None,
1908
- autovacuum_naptime: Optional[pulumi.Input[int]] = None,
1909
- autovacuum_vacuum_cost_delay: Optional[pulumi.Input[int]] = None,
1910
- autovacuum_vacuum_cost_limit: Optional[pulumi.Input[int]] = None,
1911
- autovacuum_vacuum_scale_factor: Optional[pulumi.Input[float]] = None,
1912
- autovacuum_vacuum_threshold: Optional[pulumi.Input[int]] = None,
1913
- backup_hour: Optional[pulumi.Input[int]] = None,
1914
- backup_minute: Optional[pulumi.Input[int]] = None,
1915
- bgwriter_delay: Optional[pulumi.Input[int]] = None,
1916
- bgwriter_flush_after: Optional[pulumi.Input[int]] = None,
1917
- bgwriter_lru_maxpages: Optional[pulumi.Input[int]] = None,
1918
- bgwriter_lru_multiplier: Optional[pulumi.Input[float]] = None,
1919
- cluster_id: Optional[pulumi.Input[str]] = None,
1920
- deadlock_timeout: Optional[pulumi.Input[int]] = None,
1921
- default_toast_compression: Optional[pulumi.Input[str]] = None,
1922
- idle_in_transaction_session_timeout: Optional[pulumi.Input[int]] = None,
1923
- jit: Optional[pulumi.Input[bool]] = None,
1924
- log_autovacuum_min_duration: Optional[pulumi.Input[int]] = None,
1925
- log_error_verbosity: Optional[pulumi.Input[str]] = None,
1926
- log_line_prefix: Optional[pulumi.Input[str]] = None,
1927
- log_min_duration_statement: Optional[pulumi.Input[int]] = None,
1928
- max_files_per_process: Optional[pulumi.Input[int]] = None,
1929
- max_locks_per_transaction: Optional[pulumi.Input[int]] = None,
1930
- max_logical_replication_workers: Optional[pulumi.Input[int]] = None,
1931
- max_parallel_workers: Optional[pulumi.Input[int]] = None,
1932
- max_parallel_workers_per_gather: Optional[pulumi.Input[int]] = None,
1933
- max_pred_locks_per_transaction: Optional[pulumi.Input[int]] = None,
1934
- max_prepared_transactions: Optional[pulumi.Input[int]] = None,
1935
- max_replication_slots: Optional[pulumi.Input[int]] = None,
1936
- max_stack_depth: Optional[pulumi.Input[int]] = None,
1937
- max_standby_archive_delay: Optional[pulumi.Input[int]] = None,
1938
- max_standby_streaming_delay: Optional[pulumi.Input[int]] = None,
1939
- max_wal_senders: Optional[pulumi.Input[int]] = None,
1940
- max_worker_processes: Optional[pulumi.Input[int]] = None,
1941
- pg_partman_bgw_interval: Optional[pulumi.Input[int]] = None,
1942
- pg_partman_bgw_role: Optional[pulumi.Input[str]] = None,
1943
- pg_stat_statements_track: Optional[pulumi.Input[str]] = None,
1905
+ autovacuum_analyze_scale_factor: Optional[pulumi.Input[_builtins.float]] = None,
1906
+ autovacuum_analyze_threshold: Optional[pulumi.Input[_builtins.int]] = None,
1907
+ autovacuum_freeze_max_age: Optional[pulumi.Input[_builtins.int]] = None,
1908
+ autovacuum_max_workers: Optional[pulumi.Input[_builtins.int]] = None,
1909
+ autovacuum_naptime: Optional[pulumi.Input[_builtins.int]] = None,
1910
+ autovacuum_vacuum_cost_delay: Optional[pulumi.Input[_builtins.int]] = None,
1911
+ autovacuum_vacuum_cost_limit: Optional[pulumi.Input[_builtins.int]] = None,
1912
+ autovacuum_vacuum_scale_factor: Optional[pulumi.Input[_builtins.float]] = None,
1913
+ autovacuum_vacuum_threshold: Optional[pulumi.Input[_builtins.int]] = None,
1914
+ backup_hour: Optional[pulumi.Input[_builtins.int]] = None,
1915
+ backup_minute: Optional[pulumi.Input[_builtins.int]] = None,
1916
+ bgwriter_delay: Optional[pulumi.Input[_builtins.int]] = None,
1917
+ bgwriter_flush_after: Optional[pulumi.Input[_builtins.int]] = None,
1918
+ bgwriter_lru_maxpages: Optional[pulumi.Input[_builtins.int]] = None,
1919
+ bgwriter_lru_multiplier: Optional[pulumi.Input[_builtins.float]] = None,
1920
+ cluster_id: Optional[pulumi.Input[_builtins.str]] = None,
1921
+ deadlock_timeout: Optional[pulumi.Input[_builtins.int]] = None,
1922
+ default_toast_compression: Optional[pulumi.Input[_builtins.str]] = None,
1923
+ idle_in_transaction_session_timeout: Optional[pulumi.Input[_builtins.int]] = None,
1924
+ jit: Optional[pulumi.Input[_builtins.bool]] = None,
1925
+ log_autovacuum_min_duration: Optional[pulumi.Input[_builtins.int]] = None,
1926
+ log_error_verbosity: Optional[pulumi.Input[_builtins.str]] = None,
1927
+ log_line_prefix: Optional[pulumi.Input[_builtins.str]] = None,
1928
+ log_min_duration_statement: Optional[pulumi.Input[_builtins.int]] = None,
1929
+ max_files_per_process: Optional[pulumi.Input[_builtins.int]] = None,
1930
+ max_locks_per_transaction: Optional[pulumi.Input[_builtins.int]] = None,
1931
+ max_logical_replication_workers: Optional[pulumi.Input[_builtins.int]] = None,
1932
+ max_parallel_workers: Optional[pulumi.Input[_builtins.int]] = None,
1933
+ max_parallel_workers_per_gather: Optional[pulumi.Input[_builtins.int]] = None,
1934
+ max_pred_locks_per_transaction: Optional[pulumi.Input[_builtins.int]] = None,
1935
+ max_prepared_transactions: Optional[pulumi.Input[_builtins.int]] = None,
1936
+ max_replication_slots: Optional[pulumi.Input[_builtins.int]] = None,
1937
+ max_stack_depth: Optional[pulumi.Input[_builtins.int]] = None,
1938
+ max_standby_archive_delay: Optional[pulumi.Input[_builtins.int]] = None,
1939
+ max_standby_streaming_delay: Optional[pulumi.Input[_builtins.int]] = None,
1940
+ max_wal_senders: Optional[pulumi.Input[_builtins.int]] = None,
1941
+ max_worker_processes: Optional[pulumi.Input[_builtins.int]] = None,
1942
+ pg_partman_bgw_interval: Optional[pulumi.Input[_builtins.int]] = None,
1943
+ pg_partman_bgw_role: Optional[pulumi.Input[_builtins.str]] = None,
1944
+ pg_stat_statements_track: Optional[pulumi.Input[_builtins.str]] = None,
1944
1945
  pgbouncers: Optional[pulumi.Input[Sequence[pulumi.Input[Union['DatabasePostgresqlConfigPgbouncerArgs', 'DatabasePostgresqlConfigPgbouncerArgsDict']]]]] = None,
1945
- shared_buffers_percentage: Optional[pulumi.Input[float]] = None,
1946
- temp_file_limit: Optional[pulumi.Input[int]] = None,
1946
+ shared_buffers_percentage: Optional[pulumi.Input[_builtins.float]] = None,
1947
+ temp_file_limit: Optional[pulumi.Input[_builtins.int]] = None,
1947
1948
  timescaledbs: Optional[pulumi.Input[Sequence[pulumi.Input[Union['DatabasePostgresqlConfigTimescaledbArgs', 'DatabasePostgresqlConfigTimescaledbArgsDict']]]]] = None,
1948
- timezone: Optional[pulumi.Input[str]] = None,
1949
- track_activity_query_size: Optional[pulumi.Input[int]] = None,
1950
- track_commit_timestamp: Optional[pulumi.Input[str]] = None,
1951
- track_functions: Optional[pulumi.Input[str]] = None,
1952
- track_io_timing: Optional[pulumi.Input[str]] = None,
1953
- wal_sender_timeout: Optional[pulumi.Input[int]] = None,
1954
- wal_writer_delay: Optional[pulumi.Input[int]] = None,
1955
- work_mem: Optional[pulumi.Input[int]] = None,
1949
+ timezone: Optional[pulumi.Input[_builtins.str]] = None,
1950
+ track_activity_query_size: Optional[pulumi.Input[_builtins.int]] = None,
1951
+ track_commit_timestamp: Optional[pulumi.Input[_builtins.str]] = None,
1952
+ track_functions: Optional[pulumi.Input[_builtins.str]] = None,
1953
+ track_io_timing: Optional[pulumi.Input[_builtins.str]] = None,
1954
+ wal_sender_timeout: Optional[pulumi.Input[_builtins.int]] = None,
1955
+ wal_writer_delay: Optional[pulumi.Input[_builtins.int]] = None,
1956
+ work_mem: Optional[pulumi.Input[_builtins.int]] = None,
1956
1957
  __props__=None):
1957
1958
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
1958
1959
  if not isinstance(opts, pulumi.ResourceOptions):
@@ -2026,58 +2027,58 @@ class DatabasePostgresqlConfig(pulumi.CustomResource):
2026
2027
  def get(resource_name: str,
2027
2028
  id: pulumi.Input[str],
2028
2029
  opts: Optional[pulumi.ResourceOptions] = None,
2029
- autovacuum_analyze_scale_factor: Optional[pulumi.Input[float]] = None,
2030
- autovacuum_analyze_threshold: Optional[pulumi.Input[int]] = None,
2031
- autovacuum_freeze_max_age: Optional[pulumi.Input[int]] = None,
2032
- autovacuum_max_workers: Optional[pulumi.Input[int]] = None,
2033
- autovacuum_naptime: Optional[pulumi.Input[int]] = None,
2034
- autovacuum_vacuum_cost_delay: Optional[pulumi.Input[int]] = None,
2035
- autovacuum_vacuum_cost_limit: Optional[pulumi.Input[int]] = None,
2036
- autovacuum_vacuum_scale_factor: Optional[pulumi.Input[float]] = None,
2037
- autovacuum_vacuum_threshold: Optional[pulumi.Input[int]] = None,
2038
- backup_hour: Optional[pulumi.Input[int]] = None,
2039
- backup_minute: Optional[pulumi.Input[int]] = None,
2040
- bgwriter_delay: Optional[pulumi.Input[int]] = None,
2041
- bgwriter_flush_after: Optional[pulumi.Input[int]] = None,
2042
- bgwriter_lru_maxpages: Optional[pulumi.Input[int]] = None,
2043
- bgwriter_lru_multiplier: Optional[pulumi.Input[float]] = None,
2044
- cluster_id: Optional[pulumi.Input[str]] = None,
2045
- deadlock_timeout: Optional[pulumi.Input[int]] = None,
2046
- default_toast_compression: Optional[pulumi.Input[str]] = None,
2047
- idle_in_transaction_session_timeout: Optional[pulumi.Input[int]] = None,
2048
- jit: Optional[pulumi.Input[bool]] = None,
2049
- log_autovacuum_min_duration: Optional[pulumi.Input[int]] = None,
2050
- log_error_verbosity: Optional[pulumi.Input[str]] = None,
2051
- log_line_prefix: Optional[pulumi.Input[str]] = None,
2052
- log_min_duration_statement: Optional[pulumi.Input[int]] = None,
2053
- max_files_per_process: Optional[pulumi.Input[int]] = None,
2054
- max_locks_per_transaction: Optional[pulumi.Input[int]] = None,
2055
- max_logical_replication_workers: Optional[pulumi.Input[int]] = None,
2056
- max_parallel_workers: Optional[pulumi.Input[int]] = None,
2057
- max_parallel_workers_per_gather: Optional[pulumi.Input[int]] = None,
2058
- max_pred_locks_per_transaction: Optional[pulumi.Input[int]] = None,
2059
- max_prepared_transactions: Optional[pulumi.Input[int]] = None,
2060
- max_replication_slots: Optional[pulumi.Input[int]] = None,
2061
- max_stack_depth: Optional[pulumi.Input[int]] = None,
2062
- max_standby_archive_delay: Optional[pulumi.Input[int]] = None,
2063
- max_standby_streaming_delay: Optional[pulumi.Input[int]] = None,
2064
- max_wal_senders: Optional[pulumi.Input[int]] = None,
2065
- max_worker_processes: Optional[pulumi.Input[int]] = None,
2066
- pg_partman_bgw_interval: Optional[pulumi.Input[int]] = None,
2067
- pg_partman_bgw_role: Optional[pulumi.Input[str]] = None,
2068
- pg_stat_statements_track: Optional[pulumi.Input[str]] = None,
2030
+ autovacuum_analyze_scale_factor: Optional[pulumi.Input[_builtins.float]] = None,
2031
+ autovacuum_analyze_threshold: Optional[pulumi.Input[_builtins.int]] = None,
2032
+ autovacuum_freeze_max_age: Optional[pulumi.Input[_builtins.int]] = None,
2033
+ autovacuum_max_workers: Optional[pulumi.Input[_builtins.int]] = None,
2034
+ autovacuum_naptime: Optional[pulumi.Input[_builtins.int]] = None,
2035
+ autovacuum_vacuum_cost_delay: Optional[pulumi.Input[_builtins.int]] = None,
2036
+ autovacuum_vacuum_cost_limit: Optional[pulumi.Input[_builtins.int]] = None,
2037
+ autovacuum_vacuum_scale_factor: Optional[pulumi.Input[_builtins.float]] = None,
2038
+ autovacuum_vacuum_threshold: Optional[pulumi.Input[_builtins.int]] = None,
2039
+ backup_hour: Optional[pulumi.Input[_builtins.int]] = None,
2040
+ backup_minute: Optional[pulumi.Input[_builtins.int]] = None,
2041
+ bgwriter_delay: Optional[pulumi.Input[_builtins.int]] = None,
2042
+ bgwriter_flush_after: Optional[pulumi.Input[_builtins.int]] = None,
2043
+ bgwriter_lru_maxpages: Optional[pulumi.Input[_builtins.int]] = None,
2044
+ bgwriter_lru_multiplier: Optional[pulumi.Input[_builtins.float]] = None,
2045
+ cluster_id: Optional[pulumi.Input[_builtins.str]] = None,
2046
+ deadlock_timeout: Optional[pulumi.Input[_builtins.int]] = None,
2047
+ default_toast_compression: Optional[pulumi.Input[_builtins.str]] = None,
2048
+ idle_in_transaction_session_timeout: Optional[pulumi.Input[_builtins.int]] = None,
2049
+ jit: Optional[pulumi.Input[_builtins.bool]] = None,
2050
+ log_autovacuum_min_duration: Optional[pulumi.Input[_builtins.int]] = None,
2051
+ log_error_verbosity: Optional[pulumi.Input[_builtins.str]] = None,
2052
+ log_line_prefix: Optional[pulumi.Input[_builtins.str]] = None,
2053
+ log_min_duration_statement: Optional[pulumi.Input[_builtins.int]] = None,
2054
+ max_files_per_process: Optional[pulumi.Input[_builtins.int]] = None,
2055
+ max_locks_per_transaction: Optional[pulumi.Input[_builtins.int]] = None,
2056
+ max_logical_replication_workers: Optional[pulumi.Input[_builtins.int]] = None,
2057
+ max_parallel_workers: Optional[pulumi.Input[_builtins.int]] = None,
2058
+ max_parallel_workers_per_gather: Optional[pulumi.Input[_builtins.int]] = None,
2059
+ max_pred_locks_per_transaction: Optional[pulumi.Input[_builtins.int]] = None,
2060
+ max_prepared_transactions: Optional[pulumi.Input[_builtins.int]] = None,
2061
+ max_replication_slots: Optional[pulumi.Input[_builtins.int]] = None,
2062
+ max_stack_depth: Optional[pulumi.Input[_builtins.int]] = None,
2063
+ max_standby_archive_delay: Optional[pulumi.Input[_builtins.int]] = None,
2064
+ max_standby_streaming_delay: Optional[pulumi.Input[_builtins.int]] = None,
2065
+ max_wal_senders: Optional[pulumi.Input[_builtins.int]] = None,
2066
+ max_worker_processes: Optional[pulumi.Input[_builtins.int]] = None,
2067
+ pg_partman_bgw_interval: Optional[pulumi.Input[_builtins.int]] = None,
2068
+ pg_partman_bgw_role: Optional[pulumi.Input[_builtins.str]] = None,
2069
+ pg_stat_statements_track: Optional[pulumi.Input[_builtins.str]] = None,
2069
2070
  pgbouncers: Optional[pulumi.Input[Sequence[pulumi.Input[Union['DatabasePostgresqlConfigPgbouncerArgs', 'DatabasePostgresqlConfigPgbouncerArgsDict']]]]] = None,
2070
- shared_buffers_percentage: Optional[pulumi.Input[float]] = None,
2071
- temp_file_limit: Optional[pulumi.Input[int]] = None,
2071
+ shared_buffers_percentage: Optional[pulumi.Input[_builtins.float]] = None,
2072
+ temp_file_limit: Optional[pulumi.Input[_builtins.int]] = None,
2072
2073
  timescaledbs: Optional[pulumi.Input[Sequence[pulumi.Input[Union['DatabasePostgresqlConfigTimescaledbArgs', 'DatabasePostgresqlConfigTimescaledbArgsDict']]]]] = None,
2073
- timezone: Optional[pulumi.Input[str]] = None,
2074
- track_activity_query_size: Optional[pulumi.Input[int]] = None,
2075
- track_commit_timestamp: Optional[pulumi.Input[str]] = None,
2076
- track_functions: Optional[pulumi.Input[str]] = None,
2077
- track_io_timing: Optional[pulumi.Input[str]] = None,
2078
- wal_sender_timeout: Optional[pulumi.Input[int]] = None,
2079
- wal_writer_delay: Optional[pulumi.Input[int]] = None,
2080
- work_mem: Optional[pulumi.Input[int]] = None) -> 'DatabasePostgresqlConfig':
2074
+ timezone: Optional[pulumi.Input[_builtins.str]] = None,
2075
+ track_activity_query_size: Optional[pulumi.Input[_builtins.int]] = None,
2076
+ track_commit_timestamp: Optional[pulumi.Input[_builtins.str]] = None,
2077
+ track_functions: Optional[pulumi.Input[_builtins.str]] = None,
2078
+ track_io_timing: Optional[pulumi.Input[_builtins.str]] = None,
2079
+ wal_sender_timeout: Optional[pulumi.Input[_builtins.int]] = None,
2080
+ wal_writer_delay: Optional[pulumi.Input[_builtins.int]] = None,
2081
+ work_mem: Optional[pulumi.Input[_builtins.int]] = None) -> 'DatabasePostgresqlConfig':
2081
2082
  """
2082
2083
  Get an existing DatabasePostgresqlConfig resource's state with the given name, id, and optional extra
2083
2084
  properties used to qualify the lookup.
@@ -2085,58 +2086,58 @@ class DatabasePostgresqlConfig(pulumi.CustomResource):
2085
2086
  :param str resource_name: The unique name of the resulting resource.
2086
2087
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
2087
2088
  :param pulumi.ResourceOptions opts: Options for the resource.
2088
- :param pulumi.Input[float] autovacuum_analyze_scale_factor: Specifies a fraction, in a decimal value, of the table size to add to autovacuum_analyze_threshold when deciding whether to trigger an ANALYZE. The default is 0.2 (20% of table size).
2089
- :param pulumi.Input[int] autovacuum_analyze_threshold: Specifies the minimum number of inserted, updated, or deleted tuples needed to trigger an ANALYZE in any one table. The default is 50 tuples.
2090
- :param pulumi.Input[int] autovacuum_freeze_max_age: Specifies the maximum age (in transactions) that a table's pg_class.relfrozenxid field can attain before a VACUUM operation is forced to prevent transaction ID wraparound within the table. Note that the system will launch autovacuum processes to prevent wraparound even when autovacuum is otherwise disabled. This parameter will cause the server to be restarted.
2091
- :param pulumi.Input[int] autovacuum_max_workers: Specifies the maximum number of autovacuum processes (other than the autovacuum launcher) that may be running at any one time. The default is three. This parameter can only be set at server start.
2092
- :param pulumi.Input[int] autovacuum_naptime: Specifies the minimum delay, in seconds, between autovacuum runs on any given database. The default is one minute.
2093
- :param pulumi.Input[int] autovacuum_vacuum_cost_delay: Specifies the cost delay value, in milliseconds, that will be used in automatic VACUUM operations. If -1, uses the regular vacuum_cost_delay value, which is 20 milliseconds.
2094
- :param pulumi.Input[int] autovacuum_vacuum_cost_limit: Specifies the cost limit value that will be used in automatic VACUUM operations. If -1 is specified (which is the default), the regular vacuum_cost_limit value will be used.
2095
- :param pulumi.Input[float] autovacuum_vacuum_scale_factor: Specifies a fraction, in a decimal value, of the table size to add to autovacuum_vacuum_threshold when deciding whether to trigger a VACUUM. The default is 0.2 (20% of table size).
2096
- :param pulumi.Input[int] autovacuum_vacuum_threshold: Specifies the minimum number of updated or deleted tuples needed to trigger a VACUUM in any one table. The default is 50 tuples.
2097
- :param pulumi.Input[int] backup_hour: The hour of day (in UTC) when backup for the service starts. New backup only starts if previous backup has already completed.
2098
- :param pulumi.Input[int] backup_minute: The minute of the backup hour when backup for the service starts. New backup is only started if previous backup has already completed.
2099
- :param pulumi.Input[int] bgwriter_delay: Specifies the delay, in milliseconds, between activity rounds for the background writer. Default is 200 ms.
2100
- :param pulumi.Input[int] bgwriter_flush_after: The amount of kilobytes that need to be written by the background writer before attempting to force the OS to issue these writes to underlying storage. Specified in kilobytes, default is 512. Setting of 0 disables forced writeback.
2101
- :param pulumi.Input[int] bgwriter_lru_maxpages: The maximum number of buffers that the background writer can write. Setting this to zero disables background writing. Default is 100.
2102
- :param pulumi.Input[float] bgwriter_lru_multiplier: The average recent need for new buffers is multiplied by bgwriter_lru_multiplier to arrive at an estimate of the number that will be needed during the next round, (up to bgwriter_lru_maxpages). 1.0 represents a “just in time” policy of writing exactly the number of buffers predicted to be needed. Larger values provide some cushion against spikes in demand, while smaller values intentionally leave writes to be done by server processes. The default is 2.0.
2103
- :param pulumi.Input[str] cluster_id: The ID of the target PostgreSQL cluster.
2104
- :param pulumi.Input[int] deadlock_timeout: The amount of time, in milliseconds, to wait on a lock before checking to see if there is a deadlock condition.
2105
- :param pulumi.Input[str] default_toast_compression: Specifies the default TOAST compression method for values of compressible columns (the default is lz4). Supported values are: `lz4`, `pglz`.
2106
- :param pulumi.Input[int] idle_in_transaction_session_timeout: Time out sessions with open transactions after this number of milliseconds
2107
- :param pulumi.Input[bool] jit: Activates, in a boolean, the system-wide use of Just-in-Time Compilation (JIT).
2108
- :param pulumi.Input[int] log_autovacuum_min_duration: Causes each action executed by autovacuum to be logged if it ran for at least the specified number of milliseconds. Setting this to zero logs all autovacuum actions. Minus-one (the default) disables logging autovacuum actions.
2109
- :param pulumi.Input[str] log_error_verbosity: Controls the amount of detail written in the server log for each message that is logged. Supported values are: `TERSE`, `DEFAULT`, `VERBOSE`.
2110
- :param pulumi.Input[str] log_line_prefix: Selects one of the available log-formats. These can support popular log analyzers like pgbadger, pganalyze, etc. Supported values are: `pid=%p,user=%u,db=%d,app=%a,client=%h`, `%m [%p] %q[user=%u,db=%d,app=%a]`, `%t [%p]: [%l-1] user=%u,db=%d,app=%a,client=%h`.
2111
- :param pulumi.Input[int] log_min_duration_statement: Log statements that take more than this number of milliseconds to run. If -1, disables.
2112
- :param pulumi.Input[int] max_files_per_process: PostgreSQL maximum number of files that can be open per process.
2113
- :param pulumi.Input[int] max_locks_per_transaction: PostgreSQL maximum locks per transaction. Once increased, this parameter cannot be lowered from its set value.
2114
- :param pulumi.Input[int] max_logical_replication_workers: PostgreSQL maximum logical replication workers (taken from the pool of max_parallel_workers).
2115
- :param pulumi.Input[int] max_parallel_workers: Sets the maximum number of workers that the system can support for parallel queries.
2116
- :param pulumi.Input[int] max_parallel_workers_per_gather: Sets the maximum number of workers that can be started by a single Gather or Gather Merge node.
2117
- :param pulumi.Input[int] max_pred_locks_per_transaction: PostgreSQL maximum predicate locks per transaction.
2118
- :param pulumi.Input[int] max_prepared_transactions: PostgreSQL maximum prepared transactions. Once increased, this parameter cannot be lowered from its set value.
2119
- :param pulumi.Input[int] max_replication_slots: PostgreSQL maximum replication slots.
2120
- :param pulumi.Input[int] max_stack_depth: Maximum depth of the stack in bytes.
2121
- :param pulumi.Input[int] max_standby_archive_delay: Max standby archive delay in milliseconds.
2122
- :param pulumi.Input[int] max_standby_streaming_delay: Max standby streaming delay in milliseconds.
2123
- :param pulumi.Input[int] max_wal_senders: PostgreSQL maximum WAL senders. Once increased, this parameter cannot be lowered from its set value.
2124
- :param pulumi.Input[int] max_worker_processes: Sets the maximum number of background processes that the system can support. Once increased, this parameter cannot be lowered from its set value.
2125
- :param pulumi.Input[int] pg_partman_bgw_interval: Sets the time interval to run pg_partman's scheduled tasks.
2126
- :param pulumi.Input[str] pg_partman_bgw_role: Controls which role to use for pg_partman's scheduled background tasks. Must consist of alpha-numeric characters, dots, underscores, or dashes. May not start with dash or dot. Maximum of 64 characters.
2127
- :param pulumi.Input[str] pg_stat_statements_track: Controls which statements are counted. Specify 'top' to track top-level statements (those issued directly by clients), 'all' to also track nested statements (such as statements invoked within functions), or 'none' to disable statement statistics collection. The default value is top. Supported values are: `all`, `top`, `none`.
2089
+ :param pulumi.Input[_builtins.float] autovacuum_analyze_scale_factor: Specifies a fraction, in a decimal value, of the table size to add to autovacuum_analyze_threshold when deciding whether to trigger an ANALYZE. The default is 0.2 (20% of table size).
2090
+ :param pulumi.Input[_builtins.int] autovacuum_analyze_threshold: Specifies the minimum number of inserted, updated, or deleted tuples needed to trigger an ANALYZE in any one table. The default is 50 tuples.
2091
+ :param pulumi.Input[_builtins.int] autovacuum_freeze_max_age: Specifies the maximum age (in transactions) that a table's pg_class.relfrozenxid field can attain before a VACUUM operation is forced to prevent transaction ID wraparound within the table. Note that the system will launch autovacuum processes to prevent wraparound even when autovacuum is otherwise disabled. This parameter will cause the server to be restarted.
2092
+ :param pulumi.Input[_builtins.int] autovacuum_max_workers: Specifies the maximum number of autovacuum processes (other than the autovacuum launcher) that may be running at any one time. The default is three. This parameter can only be set at server start.
2093
+ :param pulumi.Input[_builtins.int] autovacuum_naptime: Specifies the minimum delay, in seconds, between autovacuum runs on any given database. The default is one minute.
2094
+ :param pulumi.Input[_builtins.int] autovacuum_vacuum_cost_delay: Specifies the cost delay value, in milliseconds, that will be used in automatic VACUUM operations. If -1, uses the regular vacuum_cost_delay value, which is 20 milliseconds.
2095
+ :param pulumi.Input[_builtins.int] autovacuum_vacuum_cost_limit: Specifies the cost limit value that will be used in automatic VACUUM operations. If -1 is specified (which is the default), the regular vacuum_cost_limit value will be used.
2096
+ :param pulumi.Input[_builtins.float] autovacuum_vacuum_scale_factor: Specifies a fraction, in a decimal value, of the table size to add to autovacuum_vacuum_threshold when deciding whether to trigger a VACUUM. The default is 0.2 (20% of table size).
2097
+ :param pulumi.Input[_builtins.int] autovacuum_vacuum_threshold: Specifies the minimum number of updated or deleted tuples needed to trigger a VACUUM in any one table. The default is 50 tuples.
2098
+ :param pulumi.Input[_builtins.int] backup_hour: The hour of day (in UTC) when backup for the service starts. New backup only starts if previous backup has already completed.
2099
+ :param pulumi.Input[_builtins.int] backup_minute: The minute of the backup hour when backup for the service starts. New backup is only started if previous backup has already completed.
2100
+ :param pulumi.Input[_builtins.int] bgwriter_delay: Specifies the delay, in milliseconds, between activity rounds for the background writer. Default is 200 ms.
2101
+ :param pulumi.Input[_builtins.int] bgwriter_flush_after: The amount of kilobytes that need to be written by the background writer before attempting to force the OS to issue these writes to underlying storage. Specified in kilobytes, default is 512. Setting of 0 disables forced writeback.
2102
+ :param pulumi.Input[_builtins.int] bgwriter_lru_maxpages: The maximum number of buffers that the background writer can write. Setting this to zero disables background writing. Default is 100.
2103
+ :param pulumi.Input[_builtins.float] bgwriter_lru_multiplier: The average recent need for new buffers is multiplied by bgwriter_lru_multiplier to arrive at an estimate of the number that will be needed during the next round, (up to bgwriter_lru_maxpages). 1.0 represents a “just in time” policy of writing exactly the number of buffers predicted to be needed. Larger values provide some cushion against spikes in demand, while smaller values intentionally leave writes to be done by server processes. The default is 2.0.
2104
+ :param pulumi.Input[_builtins.str] cluster_id: The ID of the target PostgreSQL cluster.
2105
+ :param pulumi.Input[_builtins.int] deadlock_timeout: The amount of time, in milliseconds, to wait on a lock before checking to see if there is a deadlock condition.
2106
+ :param pulumi.Input[_builtins.str] default_toast_compression: Specifies the default TOAST compression method for values of compressible columns (the default is lz4). Supported values are: `lz4`, `pglz`.
2107
+ :param pulumi.Input[_builtins.int] idle_in_transaction_session_timeout: Time out sessions with open transactions after this number of milliseconds
2108
+ :param pulumi.Input[_builtins.bool] jit: Activates, in a boolean, the system-wide use of Just-in-Time Compilation (JIT).
2109
+ :param pulumi.Input[_builtins.int] log_autovacuum_min_duration: Causes each action executed by autovacuum to be logged if it ran for at least the specified number of milliseconds. Setting this to zero logs all autovacuum actions. Minus-one (the default) disables logging autovacuum actions.
2110
+ :param pulumi.Input[_builtins.str] log_error_verbosity: Controls the amount of detail written in the server log for each message that is logged. Supported values are: `TERSE`, `DEFAULT`, `VERBOSE`.
2111
+ :param pulumi.Input[_builtins.str] log_line_prefix: Selects one of the available log-formats. These can support popular log analyzers like pgbadger, pganalyze, etc. Supported values are: `pid=%p,user=%u,db=%d,app=%a,client=%h`, `%m [%p] %q[user=%u,db=%d,app=%a]`, `%t [%p]: [%l-1] user=%u,db=%d,app=%a,client=%h`.
2112
+ :param pulumi.Input[_builtins.int] log_min_duration_statement: Log statements that take more than this number of milliseconds to run. If -1, disables.
2113
+ :param pulumi.Input[_builtins.int] max_files_per_process: PostgreSQL maximum number of files that can be open per process.
2114
+ :param pulumi.Input[_builtins.int] max_locks_per_transaction: PostgreSQL maximum locks per transaction. Once increased, this parameter cannot be lowered from its set value.
2115
+ :param pulumi.Input[_builtins.int] max_logical_replication_workers: PostgreSQL maximum logical replication workers (taken from the pool of max_parallel_workers).
2116
+ :param pulumi.Input[_builtins.int] max_parallel_workers: Sets the maximum number of workers that the system can support for parallel queries.
2117
+ :param pulumi.Input[_builtins.int] max_parallel_workers_per_gather: Sets the maximum number of workers that can be started by a single Gather or Gather Merge node.
2118
+ :param pulumi.Input[_builtins.int] max_pred_locks_per_transaction: PostgreSQL maximum predicate locks per transaction.
2119
+ :param pulumi.Input[_builtins.int] max_prepared_transactions: PostgreSQL maximum prepared transactions. Once increased, this parameter cannot be lowered from its set value.
2120
+ :param pulumi.Input[_builtins.int] max_replication_slots: PostgreSQL maximum replication slots.
2121
+ :param pulumi.Input[_builtins.int] max_stack_depth: Maximum depth of the stack in bytes.
2122
+ :param pulumi.Input[_builtins.int] max_standby_archive_delay: Max standby archive delay in milliseconds.
2123
+ :param pulumi.Input[_builtins.int] max_standby_streaming_delay: Max standby streaming delay in milliseconds.
2124
+ :param pulumi.Input[_builtins.int] max_wal_senders: PostgreSQL maximum WAL senders. Once increased, this parameter cannot be lowered from its set value.
2125
+ :param pulumi.Input[_builtins.int] max_worker_processes: Sets the maximum number of background processes that the system can support. Once increased, this parameter cannot be lowered from its set value.
2126
+ :param pulumi.Input[_builtins.int] pg_partman_bgw_interval: Sets the time interval to run pg_partman's scheduled tasks.
2127
+ :param pulumi.Input[_builtins.str] pg_partman_bgw_role: Controls which role to use for pg_partman's scheduled background tasks. Must consist of alpha-numeric characters, dots, underscores, or dashes. May not start with dash or dot. Maximum of 64 characters.
2128
+ :param pulumi.Input[_builtins.str] pg_stat_statements_track: Controls which statements are counted. Specify 'top' to track top-level statements (those issued directly by clients), 'all' to also track nested statements (such as statements invoked within functions), or 'none' to disable statement statistics collection. The default value is top. Supported values are: `all`, `top`, `none`.
2128
2129
  :param pulumi.Input[Sequence[pulumi.Input[Union['DatabasePostgresqlConfigPgbouncerArgs', 'DatabasePostgresqlConfigPgbouncerArgsDict']]]] pgbouncers: PGBouncer connection pooling settings
2129
- :param pulumi.Input[float] shared_buffers_percentage: Percentage of total RAM that the database server uses for shared memory buffers. Valid range is 20-60 (float), which corresponds to 20% - 60%. This setting adjusts the shared_buffers configuration value.
2130
- :param pulumi.Input[int] temp_file_limit: PostgreSQL temporary file limit in KiB. If -1, sets to unlimited.
2130
+ :param pulumi.Input[_builtins.float] shared_buffers_percentage: Percentage of total RAM that the database server uses for shared memory buffers. Valid range is 20-60 (float), which corresponds to 20% - 60%. This setting adjusts the shared_buffers configuration value.
2131
+ :param pulumi.Input[_builtins.int] temp_file_limit: PostgreSQL temporary file limit in KiB. If -1, sets to unlimited.
2131
2132
  :param pulumi.Input[Sequence[pulumi.Input[Union['DatabasePostgresqlConfigTimescaledbArgs', 'DatabasePostgresqlConfigTimescaledbArgsDict']]]] timescaledbs: TimescaleDB extension configuration values
2132
- :param pulumi.Input[str] timezone: PostgreSQL service timezone
2133
- :param pulumi.Input[int] track_activity_query_size: Specifies the number of bytes reserved to track the currently executing command for each active session.
2134
- :param pulumi.Input[str] track_commit_timestamp: Record commit time of transactions. The default value is top. Supported values are: `off`, `on`.
2135
- :param pulumi.Input[str] track_functions: Enables tracking of function call counts and time used. The default value is top. Supported values are: `all`, `pl`, `none`.
2136
- :param pulumi.Input[str] track_io_timing: Enables timing of database I/O calls. This parameter is off by default, because it will repeatedly query the operating system for the current time, which may cause significant overhead on some platforms. The default value is top. Supported values are: `off`, `on`.
2137
- :param pulumi.Input[int] wal_sender_timeout: Terminate replication connections that are inactive for longer than this amount of time, in milliseconds. Setting this value to zero disables the timeout. Must be either 0 or between 5000 and 10800000.
2138
- :param pulumi.Input[int] wal_writer_delay: WAL flush interval in milliseconds. Note that setting this value to lower than the default 200ms may negatively impact performance
2139
- :param pulumi.Input[int] work_mem: The maximum amount of memory, in MB, used by a query operation (such as a sort or hash table) before writing to temporary disk files. Default is 1MB + 0.075% of total RAM (up to 32MB).
2133
+ :param pulumi.Input[_builtins.str] timezone: PostgreSQL service timezone
2134
+ :param pulumi.Input[_builtins.int] track_activity_query_size: Specifies the number of bytes reserved to track the currently executing command for each active session.
2135
+ :param pulumi.Input[_builtins.str] track_commit_timestamp: Record commit time of transactions. The default value is top. Supported values are: `off`, `on`.
2136
+ :param pulumi.Input[_builtins.str] track_functions: Enables tracking of function call counts and time used. The default value is top. Supported values are: `all`, `pl`, `none`.
2137
+ :param pulumi.Input[_builtins.str] track_io_timing: Enables timing of database I/O calls. This parameter is off by default, because it will repeatedly query the operating system for the current time, which may cause significant overhead on some platforms. The default value is top. Supported values are: `off`, `on`.
2138
+ :param pulumi.Input[_builtins.int] wal_sender_timeout: Terminate replication connections that are inactive for longer than this amount of time, in milliseconds. Setting this value to zero disables the timeout. Must be either 0 or between 5000 and 10800000.
2139
+ :param pulumi.Input[_builtins.int] wal_writer_delay: WAL flush interval in milliseconds. Note that setting this value to lower than the default 200ms may negatively impact performance
2140
+ :param pulumi.Input[_builtins.int] work_mem: The maximum amount of memory, in MB, used by a query operation (such as a sort or hash table) before writing to temporary disk files. Default is 1MB + 0.075% of total RAM (up to 32MB).
2140
2141
  """
2141
2142
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
2142
2143
 
@@ -2196,327 +2197,327 @@ class DatabasePostgresqlConfig(pulumi.CustomResource):
2196
2197
  __props__.__dict__["work_mem"] = work_mem
2197
2198
  return DatabasePostgresqlConfig(resource_name, opts=opts, __props__=__props__)
2198
2199
 
2199
- @property
2200
+ @_builtins.property
2200
2201
  @pulumi.getter(name="autovacuumAnalyzeScaleFactor")
2201
- def autovacuum_analyze_scale_factor(self) -> pulumi.Output[float]:
2202
+ def autovacuum_analyze_scale_factor(self) -> pulumi.Output[_builtins.float]:
2202
2203
  """
2203
2204
  Specifies a fraction, in a decimal value, of the table size to add to autovacuum_analyze_threshold when deciding whether to trigger an ANALYZE. The default is 0.2 (20% of table size).
2204
2205
  """
2205
2206
  return pulumi.get(self, "autovacuum_analyze_scale_factor")
2206
2207
 
2207
- @property
2208
+ @_builtins.property
2208
2209
  @pulumi.getter(name="autovacuumAnalyzeThreshold")
2209
- def autovacuum_analyze_threshold(self) -> pulumi.Output[int]:
2210
+ def autovacuum_analyze_threshold(self) -> pulumi.Output[_builtins.int]:
2210
2211
  """
2211
2212
  Specifies the minimum number of inserted, updated, or deleted tuples needed to trigger an ANALYZE in any one table. The default is 50 tuples.
2212
2213
  """
2213
2214
  return pulumi.get(self, "autovacuum_analyze_threshold")
2214
2215
 
2215
- @property
2216
+ @_builtins.property
2216
2217
  @pulumi.getter(name="autovacuumFreezeMaxAge")
2217
- def autovacuum_freeze_max_age(self) -> pulumi.Output[int]:
2218
+ def autovacuum_freeze_max_age(self) -> pulumi.Output[_builtins.int]:
2218
2219
  """
2219
2220
  Specifies the maximum age (in transactions) that a table's pg_class.relfrozenxid field can attain before a VACUUM operation is forced to prevent transaction ID wraparound within the table. Note that the system will launch autovacuum processes to prevent wraparound even when autovacuum is otherwise disabled. This parameter will cause the server to be restarted.
2220
2221
  """
2221
2222
  return pulumi.get(self, "autovacuum_freeze_max_age")
2222
2223
 
2223
- @property
2224
+ @_builtins.property
2224
2225
  @pulumi.getter(name="autovacuumMaxWorkers")
2225
- def autovacuum_max_workers(self) -> pulumi.Output[int]:
2226
+ def autovacuum_max_workers(self) -> pulumi.Output[_builtins.int]:
2226
2227
  """
2227
2228
  Specifies the maximum number of autovacuum processes (other than the autovacuum launcher) that may be running at any one time. The default is three. This parameter can only be set at server start.
2228
2229
  """
2229
2230
  return pulumi.get(self, "autovacuum_max_workers")
2230
2231
 
2231
- @property
2232
+ @_builtins.property
2232
2233
  @pulumi.getter(name="autovacuumNaptime")
2233
- def autovacuum_naptime(self) -> pulumi.Output[int]:
2234
+ def autovacuum_naptime(self) -> pulumi.Output[_builtins.int]:
2234
2235
  """
2235
2236
  Specifies the minimum delay, in seconds, between autovacuum runs on any given database. The default is one minute.
2236
2237
  """
2237
2238
  return pulumi.get(self, "autovacuum_naptime")
2238
2239
 
2239
- @property
2240
+ @_builtins.property
2240
2241
  @pulumi.getter(name="autovacuumVacuumCostDelay")
2241
- def autovacuum_vacuum_cost_delay(self) -> pulumi.Output[int]:
2242
+ def autovacuum_vacuum_cost_delay(self) -> pulumi.Output[_builtins.int]:
2242
2243
  """
2243
2244
  Specifies the cost delay value, in milliseconds, that will be used in automatic VACUUM operations. If -1, uses the regular vacuum_cost_delay value, which is 20 milliseconds.
2244
2245
  """
2245
2246
  return pulumi.get(self, "autovacuum_vacuum_cost_delay")
2246
2247
 
2247
- @property
2248
+ @_builtins.property
2248
2249
  @pulumi.getter(name="autovacuumVacuumCostLimit")
2249
- def autovacuum_vacuum_cost_limit(self) -> pulumi.Output[int]:
2250
+ def autovacuum_vacuum_cost_limit(self) -> pulumi.Output[_builtins.int]:
2250
2251
  """
2251
2252
  Specifies the cost limit value that will be used in automatic VACUUM operations. If -1 is specified (which is the default), the regular vacuum_cost_limit value will be used.
2252
2253
  """
2253
2254
  return pulumi.get(self, "autovacuum_vacuum_cost_limit")
2254
2255
 
2255
- @property
2256
+ @_builtins.property
2256
2257
  @pulumi.getter(name="autovacuumVacuumScaleFactor")
2257
- def autovacuum_vacuum_scale_factor(self) -> pulumi.Output[float]:
2258
+ def autovacuum_vacuum_scale_factor(self) -> pulumi.Output[_builtins.float]:
2258
2259
  """
2259
2260
  Specifies a fraction, in a decimal value, of the table size to add to autovacuum_vacuum_threshold when deciding whether to trigger a VACUUM. The default is 0.2 (20% of table size).
2260
2261
  """
2261
2262
  return pulumi.get(self, "autovacuum_vacuum_scale_factor")
2262
2263
 
2263
- @property
2264
+ @_builtins.property
2264
2265
  @pulumi.getter(name="autovacuumVacuumThreshold")
2265
- def autovacuum_vacuum_threshold(self) -> pulumi.Output[int]:
2266
+ def autovacuum_vacuum_threshold(self) -> pulumi.Output[_builtins.int]:
2266
2267
  """
2267
2268
  Specifies the minimum number of updated or deleted tuples needed to trigger a VACUUM in any one table. The default is 50 tuples.
2268
2269
  """
2269
2270
  return pulumi.get(self, "autovacuum_vacuum_threshold")
2270
2271
 
2271
- @property
2272
+ @_builtins.property
2272
2273
  @pulumi.getter(name="backupHour")
2273
- def backup_hour(self) -> pulumi.Output[int]:
2274
+ def backup_hour(self) -> pulumi.Output[_builtins.int]:
2274
2275
  """
2275
2276
  The hour of day (in UTC) when backup for the service starts. New backup only starts if previous backup has already completed.
2276
2277
  """
2277
2278
  return pulumi.get(self, "backup_hour")
2278
2279
 
2279
- @property
2280
+ @_builtins.property
2280
2281
  @pulumi.getter(name="backupMinute")
2281
- def backup_minute(self) -> pulumi.Output[int]:
2282
+ def backup_minute(self) -> pulumi.Output[_builtins.int]:
2282
2283
  """
2283
2284
  The minute of the backup hour when backup for the service starts. New backup is only started if previous backup has already completed.
2284
2285
  """
2285
2286
  return pulumi.get(self, "backup_minute")
2286
2287
 
2287
- @property
2288
+ @_builtins.property
2288
2289
  @pulumi.getter(name="bgwriterDelay")
2289
- def bgwriter_delay(self) -> pulumi.Output[int]:
2290
+ def bgwriter_delay(self) -> pulumi.Output[_builtins.int]:
2290
2291
  """
2291
2292
  Specifies the delay, in milliseconds, between activity rounds for the background writer. Default is 200 ms.
2292
2293
  """
2293
2294
  return pulumi.get(self, "bgwriter_delay")
2294
2295
 
2295
- @property
2296
+ @_builtins.property
2296
2297
  @pulumi.getter(name="bgwriterFlushAfter")
2297
- def bgwriter_flush_after(self) -> pulumi.Output[int]:
2298
+ def bgwriter_flush_after(self) -> pulumi.Output[_builtins.int]:
2298
2299
  """
2299
2300
  The amount of kilobytes that need to be written by the background writer before attempting to force the OS to issue these writes to underlying storage. Specified in kilobytes, default is 512. Setting of 0 disables forced writeback.
2300
2301
  """
2301
2302
  return pulumi.get(self, "bgwriter_flush_after")
2302
2303
 
2303
- @property
2304
+ @_builtins.property
2304
2305
  @pulumi.getter(name="bgwriterLruMaxpages")
2305
- def bgwriter_lru_maxpages(self) -> pulumi.Output[int]:
2306
+ def bgwriter_lru_maxpages(self) -> pulumi.Output[_builtins.int]:
2306
2307
  """
2307
2308
  The maximum number of buffers that the background writer can write. Setting this to zero disables background writing. Default is 100.
2308
2309
  """
2309
2310
  return pulumi.get(self, "bgwriter_lru_maxpages")
2310
2311
 
2311
- @property
2312
+ @_builtins.property
2312
2313
  @pulumi.getter(name="bgwriterLruMultiplier")
2313
- def bgwriter_lru_multiplier(self) -> pulumi.Output[float]:
2314
+ def bgwriter_lru_multiplier(self) -> pulumi.Output[_builtins.float]:
2314
2315
  """
2315
2316
  The average recent need for new buffers is multiplied by bgwriter_lru_multiplier to arrive at an estimate of the number that will be needed during the next round, (up to bgwriter_lru_maxpages). 1.0 represents a “just in time” policy of writing exactly the number of buffers predicted to be needed. Larger values provide some cushion against spikes in demand, while smaller values intentionally leave writes to be done by server processes. The default is 2.0.
2316
2317
  """
2317
2318
  return pulumi.get(self, "bgwriter_lru_multiplier")
2318
2319
 
2319
- @property
2320
+ @_builtins.property
2320
2321
  @pulumi.getter(name="clusterId")
2321
- def cluster_id(self) -> pulumi.Output[str]:
2322
+ def cluster_id(self) -> pulumi.Output[_builtins.str]:
2322
2323
  """
2323
2324
  The ID of the target PostgreSQL cluster.
2324
2325
  """
2325
2326
  return pulumi.get(self, "cluster_id")
2326
2327
 
2327
- @property
2328
+ @_builtins.property
2328
2329
  @pulumi.getter(name="deadlockTimeout")
2329
- def deadlock_timeout(self) -> pulumi.Output[int]:
2330
+ def deadlock_timeout(self) -> pulumi.Output[_builtins.int]:
2330
2331
  """
2331
2332
  The amount of time, in milliseconds, to wait on a lock before checking to see if there is a deadlock condition.
2332
2333
  """
2333
2334
  return pulumi.get(self, "deadlock_timeout")
2334
2335
 
2335
- @property
2336
+ @_builtins.property
2336
2337
  @pulumi.getter(name="defaultToastCompression")
2337
- def default_toast_compression(self) -> pulumi.Output[str]:
2338
+ def default_toast_compression(self) -> pulumi.Output[_builtins.str]:
2338
2339
  """
2339
2340
  Specifies the default TOAST compression method for values of compressible columns (the default is lz4). Supported values are: `lz4`, `pglz`.
2340
2341
  """
2341
2342
  return pulumi.get(self, "default_toast_compression")
2342
2343
 
2343
- @property
2344
+ @_builtins.property
2344
2345
  @pulumi.getter(name="idleInTransactionSessionTimeout")
2345
- def idle_in_transaction_session_timeout(self) -> pulumi.Output[int]:
2346
+ def idle_in_transaction_session_timeout(self) -> pulumi.Output[_builtins.int]:
2346
2347
  """
2347
2348
  Time out sessions with open transactions after this number of milliseconds
2348
2349
  """
2349
2350
  return pulumi.get(self, "idle_in_transaction_session_timeout")
2350
2351
 
2351
- @property
2352
+ @_builtins.property
2352
2353
  @pulumi.getter
2353
- def jit(self) -> pulumi.Output[bool]:
2354
+ def jit(self) -> pulumi.Output[_builtins.bool]:
2354
2355
  """
2355
2356
  Activates, in a boolean, the system-wide use of Just-in-Time Compilation (JIT).
2356
2357
  """
2357
2358
  return pulumi.get(self, "jit")
2358
2359
 
2359
- @property
2360
+ @_builtins.property
2360
2361
  @pulumi.getter(name="logAutovacuumMinDuration")
2361
- def log_autovacuum_min_duration(self) -> pulumi.Output[int]:
2362
+ def log_autovacuum_min_duration(self) -> pulumi.Output[_builtins.int]:
2362
2363
  """
2363
2364
  Causes each action executed by autovacuum to be logged if it ran for at least the specified number of milliseconds. Setting this to zero logs all autovacuum actions. Minus-one (the default) disables logging autovacuum actions.
2364
2365
  """
2365
2366
  return pulumi.get(self, "log_autovacuum_min_duration")
2366
2367
 
2367
- @property
2368
+ @_builtins.property
2368
2369
  @pulumi.getter(name="logErrorVerbosity")
2369
- def log_error_verbosity(self) -> pulumi.Output[str]:
2370
+ def log_error_verbosity(self) -> pulumi.Output[_builtins.str]:
2370
2371
  """
2371
2372
  Controls the amount of detail written in the server log for each message that is logged. Supported values are: `TERSE`, `DEFAULT`, `VERBOSE`.
2372
2373
  """
2373
2374
  return pulumi.get(self, "log_error_verbosity")
2374
2375
 
2375
- @property
2376
+ @_builtins.property
2376
2377
  @pulumi.getter(name="logLinePrefix")
2377
- def log_line_prefix(self) -> pulumi.Output[str]:
2378
+ def log_line_prefix(self) -> pulumi.Output[_builtins.str]:
2378
2379
  """
2379
2380
  Selects one of the available log-formats. These can support popular log analyzers like pgbadger, pganalyze, etc. Supported values are: `pid=%p,user=%u,db=%d,app=%a,client=%h`, `%m [%p] %q[user=%u,db=%d,app=%a]`, `%t [%p]: [%l-1] user=%u,db=%d,app=%a,client=%h`.
2380
2381
  """
2381
2382
  return pulumi.get(self, "log_line_prefix")
2382
2383
 
2383
- @property
2384
+ @_builtins.property
2384
2385
  @pulumi.getter(name="logMinDurationStatement")
2385
- def log_min_duration_statement(self) -> pulumi.Output[int]:
2386
+ def log_min_duration_statement(self) -> pulumi.Output[_builtins.int]:
2386
2387
  """
2387
2388
  Log statements that take more than this number of milliseconds to run. If -1, disables.
2388
2389
  """
2389
2390
  return pulumi.get(self, "log_min_duration_statement")
2390
2391
 
2391
- @property
2392
+ @_builtins.property
2392
2393
  @pulumi.getter(name="maxFilesPerProcess")
2393
- def max_files_per_process(self) -> pulumi.Output[int]:
2394
+ def max_files_per_process(self) -> pulumi.Output[_builtins.int]:
2394
2395
  """
2395
2396
  PostgreSQL maximum number of files that can be open per process.
2396
2397
  """
2397
2398
  return pulumi.get(self, "max_files_per_process")
2398
2399
 
2399
- @property
2400
+ @_builtins.property
2400
2401
  @pulumi.getter(name="maxLocksPerTransaction")
2401
- def max_locks_per_transaction(self) -> pulumi.Output[int]:
2402
+ def max_locks_per_transaction(self) -> pulumi.Output[_builtins.int]:
2402
2403
  """
2403
2404
  PostgreSQL maximum locks per transaction. Once increased, this parameter cannot be lowered from its set value.
2404
2405
  """
2405
2406
  return pulumi.get(self, "max_locks_per_transaction")
2406
2407
 
2407
- @property
2408
+ @_builtins.property
2408
2409
  @pulumi.getter(name="maxLogicalReplicationWorkers")
2409
- def max_logical_replication_workers(self) -> pulumi.Output[int]:
2410
+ def max_logical_replication_workers(self) -> pulumi.Output[_builtins.int]:
2410
2411
  """
2411
2412
  PostgreSQL maximum logical replication workers (taken from the pool of max_parallel_workers).
2412
2413
  """
2413
2414
  return pulumi.get(self, "max_logical_replication_workers")
2414
2415
 
2415
- @property
2416
+ @_builtins.property
2416
2417
  @pulumi.getter(name="maxParallelWorkers")
2417
- def max_parallel_workers(self) -> pulumi.Output[int]:
2418
+ def max_parallel_workers(self) -> pulumi.Output[_builtins.int]:
2418
2419
  """
2419
2420
  Sets the maximum number of workers that the system can support for parallel queries.
2420
2421
  """
2421
2422
  return pulumi.get(self, "max_parallel_workers")
2422
2423
 
2423
- @property
2424
+ @_builtins.property
2424
2425
  @pulumi.getter(name="maxParallelWorkersPerGather")
2425
- def max_parallel_workers_per_gather(self) -> pulumi.Output[int]:
2426
+ def max_parallel_workers_per_gather(self) -> pulumi.Output[_builtins.int]:
2426
2427
  """
2427
2428
  Sets the maximum number of workers that can be started by a single Gather or Gather Merge node.
2428
2429
  """
2429
2430
  return pulumi.get(self, "max_parallel_workers_per_gather")
2430
2431
 
2431
- @property
2432
+ @_builtins.property
2432
2433
  @pulumi.getter(name="maxPredLocksPerTransaction")
2433
- def max_pred_locks_per_transaction(self) -> pulumi.Output[int]:
2434
+ def max_pred_locks_per_transaction(self) -> pulumi.Output[_builtins.int]:
2434
2435
  """
2435
2436
  PostgreSQL maximum predicate locks per transaction.
2436
2437
  """
2437
2438
  return pulumi.get(self, "max_pred_locks_per_transaction")
2438
2439
 
2439
- @property
2440
+ @_builtins.property
2440
2441
  @pulumi.getter(name="maxPreparedTransactions")
2441
- def max_prepared_transactions(self) -> pulumi.Output[int]:
2442
+ def max_prepared_transactions(self) -> pulumi.Output[_builtins.int]:
2442
2443
  """
2443
2444
  PostgreSQL maximum prepared transactions. Once increased, this parameter cannot be lowered from its set value.
2444
2445
  """
2445
2446
  return pulumi.get(self, "max_prepared_transactions")
2446
2447
 
2447
- @property
2448
+ @_builtins.property
2448
2449
  @pulumi.getter(name="maxReplicationSlots")
2449
- def max_replication_slots(self) -> pulumi.Output[int]:
2450
+ def max_replication_slots(self) -> pulumi.Output[_builtins.int]:
2450
2451
  """
2451
2452
  PostgreSQL maximum replication slots.
2452
2453
  """
2453
2454
  return pulumi.get(self, "max_replication_slots")
2454
2455
 
2455
- @property
2456
+ @_builtins.property
2456
2457
  @pulumi.getter(name="maxStackDepth")
2457
- def max_stack_depth(self) -> pulumi.Output[int]:
2458
+ def max_stack_depth(self) -> pulumi.Output[_builtins.int]:
2458
2459
  """
2459
2460
  Maximum depth of the stack in bytes.
2460
2461
  """
2461
2462
  return pulumi.get(self, "max_stack_depth")
2462
2463
 
2463
- @property
2464
+ @_builtins.property
2464
2465
  @pulumi.getter(name="maxStandbyArchiveDelay")
2465
- def max_standby_archive_delay(self) -> pulumi.Output[int]:
2466
+ def max_standby_archive_delay(self) -> pulumi.Output[_builtins.int]:
2466
2467
  """
2467
2468
  Max standby archive delay in milliseconds.
2468
2469
  """
2469
2470
  return pulumi.get(self, "max_standby_archive_delay")
2470
2471
 
2471
- @property
2472
+ @_builtins.property
2472
2473
  @pulumi.getter(name="maxStandbyStreamingDelay")
2473
- def max_standby_streaming_delay(self) -> pulumi.Output[int]:
2474
+ def max_standby_streaming_delay(self) -> pulumi.Output[_builtins.int]:
2474
2475
  """
2475
2476
  Max standby streaming delay in milliseconds.
2476
2477
  """
2477
2478
  return pulumi.get(self, "max_standby_streaming_delay")
2478
2479
 
2479
- @property
2480
+ @_builtins.property
2480
2481
  @pulumi.getter(name="maxWalSenders")
2481
- def max_wal_senders(self) -> pulumi.Output[int]:
2482
+ def max_wal_senders(self) -> pulumi.Output[_builtins.int]:
2482
2483
  """
2483
2484
  PostgreSQL maximum WAL senders. Once increased, this parameter cannot be lowered from its set value.
2484
2485
  """
2485
2486
  return pulumi.get(self, "max_wal_senders")
2486
2487
 
2487
- @property
2488
+ @_builtins.property
2488
2489
  @pulumi.getter(name="maxWorkerProcesses")
2489
- def max_worker_processes(self) -> pulumi.Output[int]:
2490
+ def max_worker_processes(self) -> pulumi.Output[_builtins.int]:
2490
2491
  """
2491
2492
  Sets the maximum number of background processes that the system can support. Once increased, this parameter cannot be lowered from its set value.
2492
2493
  """
2493
2494
  return pulumi.get(self, "max_worker_processes")
2494
2495
 
2495
- @property
2496
+ @_builtins.property
2496
2497
  @pulumi.getter(name="pgPartmanBgwInterval")
2497
- def pg_partman_bgw_interval(self) -> pulumi.Output[int]:
2498
+ def pg_partman_bgw_interval(self) -> pulumi.Output[_builtins.int]:
2498
2499
  """
2499
2500
  Sets the time interval to run pg_partman's scheduled tasks.
2500
2501
  """
2501
2502
  return pulumi.get(self, "pg_partman_bgw_interval")
2502
2503
 
2503
- @property
2504
+ @_builtins.property
2504
2505
  @pulumi.getter(name="pgPartmanBgwRole")
2505
- def pg_partman_bgw_role(self) -> pulumi.Output[str]:
2506
+ def pg_partman_bgw_role(self) -> pulumi.Output[_builtins.str]:
2506
2507
  """
2507
2508
  Controls which role to use for pg_partman's scheduled background tasks. Must consist of alpha-numeric characters, dots, underscores, or dashes. May not start with dash or dot. Maximum of 64 characters.
2508
2509
  """
2509
2510
  return pulumi.get(self, "pg_partman_bgw_role")
2510
2511
 
2511
- @property
2512
+ @_builtins.property
2512
2513
  @pulumi.getter(name="pgStatStatementsTrack")
2513
- def pg_stat_statements_track(self) -> pulumi.Output[str]:
2514
+ def pg_stat_statements_track(self) -> pulumi.Output[_builtins.str]:
2514
2515
  """
2515
2516
  Controls which statements are counted. Specify 'top' to track top-level statements (those issued directly by clients), 'all' to also track nested statements (such as statements invoked within functions), or 'none' to disable statement statistics collection. The default value is top. Supported values are: `all`, `top`, `none`.
2516
2517
  """
2517
2518
  return pulumi.get(self, "pg_stat_statements_track")
2518
2519
 
2519
- @property
2520
+ @_builtins.property
2520
2521
  @pulumi.getter
2521
2522
  def pgbouncers(self) -> pulumi.Output[Sequence['outputs.DatabasePostgresqlConfigPgbouncer']]:
2522
2523
  """
@@ -2524,23 +2525,23 @@ class DatabasePostgresqlConfig(pulumi.CustomResource):
2524
2525
  """
2525
2526
  return pulumi.get(self, "pgbouncers")
2526
2527
 
2527
- @property
2528
+ @_builtins.property
2528
2529
  @pulumi.getter(name="sharedBuffersPercentage")
2529
- def shared_buffers_percentage(self) -> pulumi.Output[float]:
2530
+ def shared_buffers_percentage(self) -> pulumi.Output[_builtins.float]:
2530
2531
  """
2531
2532
  Percentage of total RAM that the database server uses for shared memory buffers. Valid range is 20-60 (float), which corresponds to 20% - 60%. This setting adjusts the shared_buffers configuration value.
2532
2533
  """
2533
2534
  return pulumi.get(self, "shared_buffers_percentage")
2534
2535
 
2535
- @property
2536
+ @_builtins.property
2536
2537
  @pulumi.getter(name="tempFileLimit")
2537
- def temp_file_limit(self) -> pulumi.Output[int]:
2538
+ def temp_file_limit(self) -> pulumi.Output[_builtins.int]:
2538
2539
  """
2539
2540
  PostgreSQL temporary file limit in KiB. If -1, sets to unlimited.
2540
2541
  """
2541
2542
  return pulumi.get(self, "temp_file_limit")
2542
2543
 
2543
- @property
2544
+ @_builtins.property
2544
2545
  @pulumi.getter
2545
2546
  def timescaledbs(self) -> pulumi.Output[Sequence['outputs.DatabasePostgresqlConfigTimescaledb']]:
2546
2547
  """
@@ -2548,65 +2549,65 @@ class DatabasePostgresqlConfig(pulumi.CustomResource):
2548
2549
  """
2549
2550
  return pulumi.get(self, "timescaledbs")
2550
2551
 
2551
- @property
2552
+ @_builtins.property
2552
2553
  @pulumi.getter
2553
- def timezone(self) -> pulumi.Output[str]:
2554
+ def timezone(self) -> pulumi.Output[_builtins.str]:
2554
2555
  """
2555
2556
  PostgreSQL service timezone
2556
2557
  """
2557
2558
  return pulumi.get(self, "timezone")
2558
2559
 
2559
- @property
2560
+ @_builtins.property
2560
2561
  @pulumi.getter(name="trackActivityQuerySize")
2561
- def track_activity_query_size(self) -> pulumi.Output[int]:
2562
+ def track_activity_query_size(self) -> pulumi.Output[_builtins.int]:
2562
2563
  """
2563
2564
  Specifies the number of bytes reserved to track the currently executing command for each active session.
2564
2565
  """
2565
2566
  return pulumi.get(self, "track_activity_query_size")
2566
2567
 
2567
- @property
2568
+ @_builtins.property
2568
2569
  @pulumi.getter(name="trackCommitTimestamp")
2569
- def track_commit_timestamp(self) -> pulumi.Output[str]:
2570
+ def track_commit_timestamp(self) -> pulumi.Output[_builtins.str]:
2570
2571
  """
2571
2572
  Record commit time of transactions. The default value is top. Supported values are: `off`, `on`.
2572
2573
  """
2573
2574
  return pulumi.get(self, "track_commit_timestamp")
2574
2575
 
2575
- @property
2576
+ @_builtins.property
2576
2577
  @pulumi.getter(name="trackFunctions")
2577
- def track_functions(self) -> pulumi.Output[str]:
2578
+ def track_functions(self) -> pulumi.Output[_builtins.str]:
2578
2579
  """
2579
2580
  Enables tracking of function call counts and time used. The default value is top. Supported values are: `all`, `pl`, `none`.
2580
2581
  """
2581
2582
  return pulumi.get(self, "track_functions")
2582
2583
 
2583
- @property
2584
+ @_builtins.property
2584
2585
  @pulumi.getter(name="trackIoTiming")
2585
- def track_io_timing(self) -> pulumi.Output[str]:
2586
+ def track_io_timing(self) -> pulumi.Output[_builtins.str]:
2586
2587
  """
2587
2588
  Enables timing of database I/O calls. This parameter is off by default, because it will repeatedly query the operating system for the current time, which may cause significant overhead on some platforms. The default value is top. Supported values are: `off`, `on`.
2588
2589
  """
2589
2590
  return pulumi.get(self, "track_io_timing")
2590
2591
 
2591
- @property
2592
+ @_builtins.property
2592
2593
  @pulumi.getter(name="walSenderTimeout")
2593
- def wal_sender_timeout(self) -> pulumi.Output[int]:
2594
+ def wal_sender_timeout(self) -> pulumi.Output[_builtins.int]:
2594
2595
  """
2595
2596
  Terminate replication connections that are inactive for longer than this amount of time, in milliseconds. Setting this value to zero disables the timeout. Must be either 0 or between 5000 and 10800000.
2596
2597
  """
2597
2598
  return pulumi.get(self, "wal_sender_timeout")
2598
2599
 
2599
- @property
2600
+ @_builtins.property
2600
2601
  @pulumi.getter(name="walWriterDelay")
2601
- def wal_writer_delay(self) -> pulumi.Output[int]:
2602
+ def wal_writer_delay(self) -> pulumi.Output[_builtins.int]:
2602
2603
  """
2603
2604
  WAL flush interval in milliseconds. Note that setting this value to lower than the default 200ms may negatively impact performance
2604
2605
  """
2605
2606
  return pulumi.get(self, "wal_writer_delay")
2606
2607
 
2607
- @property
2608
+ @_builtins.property
2608
2609
  @pulumi.getter(name="workMem")
2609
- def work_mem(self) -> pulumi.Output[int]:
2610
+ def work_mem(self) -> pulumi.Output[_builtins.int]:
2610
2611
  """
2611
2612
  The maximum amount of memory, in MB, used by a query operation (such as a sort or hash table) before writing to temporary disk files. Default is 1MB + 0.075% of total RAM (up to 32MB).
2612
2613
  """