pulumi-aiven 6.39.0a1748900807__py3-none-any.whl → 6.40.0a1749532603__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.

Potentially problematic release.


This version of pulumi-aiven might be problematic. Click here for more details.

pulumi_aiven/_inputs.py CHANGED
@@ -148,6 +148,8 @@ __all__ = [
148
148
  'GovernanceAccessAccessDataArgsDict',
149
149
  'GovernanceAccessAccessDataAclArgs',
150
150
  'GovernanceAccessAccessDataAclArgsDict',
151
+ 'GovernanceAccessTimeoutsArgs',
152
+ 'GovernanceAccessTimeoutsArgsDict',
151
153
  'GrafanaComponentArgs',
152
154
  'GrafanaComponentArgsDict',
153
155
  'GrafanaGrafanaArgs',
@@ -1350,7 +1352,7 @@ if not MYPY:
1350
1352
  """
1351
1353
  shared_buffers_percentage: NotRequired[pulumi.Input[builtins.float]]
1352
1354
  """
1353
- 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. Example: `41.5`.
1355
+ 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. Changing this parameter causes a service restart. Example: `41.5`.
1354
1356
  """
1355
1357
  static_ips: NotRequired[pulumi.Input[builtins.bool]]
1356
1358
  """
@@ -1366,7 +1368,7 @@ if not MYPY:
1366
1368
  """
1367
1369
  work_mem: NotRequired[pulumi.Input[builtins.int]]
1368
1370
  """
1369
- Sets the maximum amount of memory to be used by a query operation (such as a sort or hash table) before writing to temporary disk files, in MB. Default is 1MB + 0.075% of total RAM (up to 32MB). Example: `4`.
1371
+ Sets the maximum amount of memory to be used by a query operation (such as a sort or hash table) before writing to temporary disk files, in MB. The default is 1MB + 0.075% of total RAM (up to 32MB). Example: `4`.
1370
1372
  """
1371
1373
  elif False:
1372
1374
  AlloydbomniAlloydbomniUserConfigArgsDict: TypeAlias = Mapping[str, Any]
@@ -1432,11 +1434,11 @@ class AlloydbomniAlloydbomniUserConfigArgs:
1432
1434
  :param pulumi.Input[builtins.str] recovery_target_time: Recovery target time when forking a service. This has effect only when a new service is being created. Example: `2019-01-01 23:34:45`.
1433
1435
  :param pulumi.Input[builtins.bool] service_log: Store logs for the service so that they are available in the HTTP API and console.
1434
1436
  :param pulumi.Input[builtins.str] service_to_fork_from: Name of another service to fork from. This has effect only when a new service is being created. Example: `anotherservicename`.
1435
- :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. Example: `41.5`.
1437
+ :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. Changing this parameter causes a service restart. Example: `41.5`.
1436
1438
  :param pulumi.Input[builtins.bool] static_ips: Use static public IP addresses.
1437
1439
  :param pulumi.Input[builtins.str] synchronous_replication: Enum: `off`, `quorum`. Synchronous replication type. Note that the service plan also needs to support synchronous replication.
1438
1440
  :param pulumi.Input[builtins.str] variant: Enum: `aiven`, `timescale`. Variant of the PostgreSQL service, may affect the features that are exposed by default.
1439
- :param pulumi.Input[builtins.int] work_mem: Sets the maximum amount of memory to be used by a query operation (such as a sort or hash table) before writing to temporary disk files, in MB. Default is 1MB + 0.075% of total RAM (up to 32MB). Example: `4`.
1441
+ :param pulumi.Input[builtins.int] work_mem: Sets the maximum amount of memory to be used by a query operation (such as a sort or hash table) before writing to temporary disk files, in MB. The default is 1MB + 0.075% of total RAM (up to 32MB). Example: `4`.
1440
1442
  """
1441
1443
  if additional_backup_regions is not None:
1442
1444
  pulumi.set(__self__, "additional_backup_regions", additional_backup_regions)
@@ -1821,7 +1823,7 @@ class AlloydbomniAlloydbomniUserConfigArgs:
1821
1823
  @pulumi.getter(name="sharedBuffersPercentage")
1822
1824
  def shared_buffers_percentage(self) -> Optional[pulumi.Input[builtins.float]]:
1823
1825
  """
1824
- 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. Example: `41.5`.
1826
+ 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. Changing this parameter causes a service restart. Example: `41.5`.
1825
1827
  """
1826
1828
  return pulumi.get(self, "shared_buffers_percentage")
1827
1829
 
@@ -1869,7 +1871,7 @@ class AlloydbomniAlloydbomniUserConfigArgs:
1869
1871
  @pulumi.getter(name="workMem")
1870
1872
  def work_mem(self) -> Optional[pulumi.Input[builtins.int]]:
1871
1873
  """
1872
- Sets the maximum amount of memory to be used by a query operation (such as a sort or hash table) before writing to temporary disk files, in MB. Default is 1MB + 0.075% of total RAM (up to 32MB). Example: `4`.
1874
+ Sets the maximum amount of memory to be used by a query operation (such as a sort or hash table) before writing to temporary disk files, in MB. The default is 1MB + 0.075% of total RAM (up to 32MB). Example: `4`.
1873
1875
  """
1874
1876
  return pulumi.get(self, "work_mem")
1875
1877
 
@@ -1933,63 +1935,63 @@ if not MYPY:
1933
1935
  class AlloydbomniAlloydbomniUserConfigPgArgsDict(TypedDict):
1934
1936
  autovacuum_analyze_scale_factor: NotRequired[pulumi.Input[builtins.float]]
1935
1937
  """
1936
- Specifies a fraction 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).
1938
+ Specifies a fraction of the table size to add to autovacuum*analyze*threshold when deciding whether to trigger an ANALYZE (e.g. `0.2` for 20% of the table size). The default is `0.2`.
1937
1939
  """
1938
1940
  autovacuum_analyze_threshold: NotRequired[pulumi.Input[builtins.int]]
1939
1941
  """
1940
- Specifies the minimum number of inserted, updated or deleted tuples needed to trigger an ANALYZE in any one table. The default is 50 tuples.
1942
+ Specifies the minimum number of inserted, updated or deleted tuples needed to trigger an ANALYZE in any one table. The default is `50`.
1941
1943
  """
1942
1944
  autovacuum_freeze_max_age: NotRequired[pulumi.Input[builtins.int]]
1943
1945
  """
1944
- 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. Example: `200000000`.
1946
+ 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. The system launches autovacuum processes to prevent wraparound even when autovacuum is otherwise disabled. Changing this parameter causes a service restart. Example: `200000000`.
1945
1947
  """
1946
1948
  autovacuum_max_workers: NotRequired[pulumi.Input[builtins.int]]
1947
1949
  """
1948
- 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.
1950
+ Specifies the maximum number of autovacuum processes (other than the autovacuum launcher) that may be running at any one time. The default is `3`. Changing this parameter causes a service restart.
1949
1951
  """
1950
1952
  autovacuum_naptime: NotRequired[pulumi.Input[builtins.int]]
1951
1953
  """
1952
- Specifies the minimum delay between autovacuum runs on any given database. The delay is measured in seconds, and the default is one minute.
1954
+ Specifies the minimum delay between autovacuum runs on any given database. The delay is measured in seconds. The default is `60`.
1953
1955
  """
1954
1956
  autovacuum_vacuum_cost_delay: NotRequired[pulumi.Input[builtins.int]]
1955
1957
  """
1956
- Specifies the cost delay value that will be used in automatic VACUUM operations. If -1 is specified, the regular vacuum*cost*delay value will be used. The default value is 20 milliseconds.
1958
+ Specifies the cost delay value that will be used in automatic VACUUM operations. If `-1` is specified, the regular vacuum*cost*delay value will be used. The default is `2` (upstream default).
1957
1959
  """
1958
1960
  autovacuum_vacuum_cost_limit: NotRequired[pulumi.Input[builtins.int]]
1959
1961
  """
1960
- 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.
1962
+ Specifies the cost limit value that will be used in automatic VACUUM operations. If `-1` is specified, the regular vacuum*cost*limit value will be used. The default is `-1` (upstream default).
1961
1963
  """
1962
1964
  autovacuum_vacuum_scale_factor: NotRequired[pulumi.Input[builtins.float]]
1963
1965
  """
1964
- Specifies a fraction 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).
1966
+ Specifies a fraction of the table size to add to autovacuum*vacuum*threshold when deciding whether to trigger a VACUUM (e.g. `0.2` for 20% of the table size). The default is `0.2`.
1965
1967
  """
1966
1968
  autovacuum_vacuum_threshold: NotRequired[pulumi.Input[builtins.int]]
1967
1969
  """
1968
- Specifies the minimum number of updated or deleted tuples needed to trigger a VACUUM in any one table. The default is 50 tuples.
1970
+ Specifies the minimum number of updated or deleted tuples needed to trigger a VACUUM in any one table. The default is `50`.
1969
1971
  """
1970
1972
  bgwriter_delay: NotRequired[pulumi.Input[builtins.int]]
1971
1973
  """
1972
- Specifies the delay between activity rounds for the background writer in milliseconds. Default is 200. Example: `200`.
1974
+ Specifies the delay between activity rounds for the background writer in milliseconds. The default is `200`. Example: `200`.
1973
1975
  """
1974
1976
  bgwriter_flush_after: NotRequired[pulumi.Input[builtins.int]]
1975
1977
  """
1976
- Whenever more than bgwriter*flush*after bytes have been written by the background writer, attempt to force the OS to issue these writes to the underlying storage. Specified in kilobytes, default is 512. Setting of 0 disables forced writeback. Example: `512`.
1978
+ Whenever more than bgwriter*flush*after bytes have been written by the background writer, attempt to force the OS to issue these writes to the underlying storage. Specified in kilobytes. Setting of 0 disables forced writeback. The default is `512`. Example: `512`.
1977
1979
  """
1978
1980
  bgwriter_lru_maxpages: NotRequired[pulumi.Input[builtins.int]]
1979
1981
  """
1980
- In each round, no more than this many buffers will be written by the background writer. Setting this to zero disables background writing. Default is 100. Example: `100`.
1982
+ In each round, no more than this many buffers will be written by the background writer. Setting this to zero disables background writing. The default is `100`. Example: `100`.
1981
1983
  """
1982
1984
  bgwriter_lru_multiplier: NotRequired[pulumi.Input[builtins.float]]
1983
1985
  """
1984
- 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. Example: `2.0`.
1986
+ 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`. Example: `2.0`.
1985
1987
  """
1986
1988
  deadlock_timeout: NotRequired[pulumi.Input[builtins.int]]
1987
1989
  """
1988
- This is the amount of time, in milliseconds, to wait on a lock before checking to see if there is a deadlock condition. Example: `1000`.
1990
+ This is the amount of time, in milliseconds, to wait on a lock before checking to see if there is a deadlock condition. The default is `1000` (upstream default). Example: `1000`.
1989
1991
  """
1990
1992
  default_toast_compression: NotRequired[pulumi.Input[builtins.str]]
1991
1993
  """
1992
- Enum: `lz4`, `pglz`. Specifies the default TOAST compression method for values of compressible columns (the default is lz4).
1994
+ Enum: `lz4`, `pglz`. Specifies the default TOAST compression method for values of compressible columns. The default is `lz4`.
1993
1995
  """
1994
1996
  idle_in_transaction_session_timeout: NotRequired[pulumi.Input[builtins.int]]
1995
1997
  """
@@ -2001,7 +2003,7 @@ if not MYPY:
2001
2003
  """
2002
2004
  log_autovacuum_min_duration: NotRequired[pulumi.Input[builtins.int]]
2003
2005
  """
2004
- 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.
2006
+ 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 disables logging autovacuum actions. The default is `1000`.
2005
2007
  """
2006
2008
  log_error_verbosity: NotRequired[pulumi.Input[builtins.str]]
2007
2009
  """
@@ -2021,59 +2023,59 @@ if not MYPY:
2021
2023
  """
2022
2024
  max_files_per_process: NotRequired[pulumi.Input[builtins.int]]
2023
2025
  """
2024
- PostgreSQL maximum number of files that can be open per process.
2026
+ PostgreSQL maximum number of files that can be open per process. The default is `1000` (upstream default). Changing this parameter causes a service restart.
2025
2027
  """
2026
2028
  max_locks_per_transaction: NotRequired[pulumi.Input[builtins.int]]
2027
2029
  """
2028
- PostgreSQL maximum locks per transaction.
2030
+ PostgreSQL maximum locks per transaction. Changing this parameter causes a service restart.
2029
2031
  """
2030
2032
  max_logical_replication_workers: NotRequired[pulumi.Input[builtins.int]]
2031
2033
  """
2032
- PostgreSQL maximum logical replication workers (taken from the pool of max*parallel*workers).
2034
+ PostgreSQL maximum logical replication workers (taken from the pool of max*parallel*workers). The default is `4` (upstream default). Changing this parameter causes a service restart.
2033
2035
  """
2034
2036
  max_parallel_workers: NotRequired[pulumi.Input[builtins.int]]
2035
2037
  """
2036
- Sets the maximum number of workers that the system can support for parallel queries.
2038
+ Sets the maximum number of workers that the system can support for parallel queries. The default is `8` (upstream default).
2037
2039
  """
2038
2040
  max_parallel_workers_per_gather: NotRequired[pulumi.Input[builtins.int]]
2039
2041
  """
2040
- Sets the maximum number of workers that can be started by a single Gather or Gather Merge node.
2042
+ Sets the maximum number of workers that can be started by a single Gather or Gather Merge node. The default is `2` (upstream default).
2041
2043
  """
2042
2044
  max_pred_locks_per_transaction: NotRequired[pulumi.Input[builtins.int]]
2043
2045
  """
2044
- PostgreSQL maximum predicate locks per transaction.
2046
+ PostgreSQL maximum predicate locks per transaction. The default is `64` (upstream default). Changing this parameter causes a service restart.
2045
2047
  """
2046
2048
  max_prepared_transactions: NotRequired[pulumi.Input[builtins.int]]
2047
2049
  """
2048
- PostgreSQL maximum prepared transactions.
2050
+ PostgreSQL maximum prepared transactions. The default is `0`. Changing this parameter causes a service restart.
2049
2051
  """
2050
2052
  max_replication_slots: NotRequired[pulumi.Input[builtins.int]]
2051
2053
  """
2052
- PostgreSQL maximum replication slots.
2054
+ PostgreSQL maximum replication slots. The default is `20`. Changing this parameter causes a service restart.
2053
2055
  """
2054
2056
  max_slot_wal_keep_size: NotRequired[pulumi.Input[builtins.int]]
2055
2057
  """
2056
- PostgreSQL maximum WAL size (MB) reserved for replication slots. Default is -1 (unlimited). wal*keep*size minimum WAL size setting takes precedence over this.
2058
+ PostgreSQL maximum WAL size (MB) reserved for replication slots. If `-1` is specified, replication slots may retain an unlimited amount of WAL files. The default is `-1` (upstream default). wal*keep*size minimum WAL size setting takes precedence over this.
2057
2059
  """
2058
2060
  max_stack_depth: NotRequired[pulumi.Input[builtins.int]]
2059
2061
  """
2060
- Maximum depth of the stack in bytes.
2062
+ Maximum depth of the stack in bytes. The default is `2097152` (upstream default).
2061
2063
  """
2062
2064
  max_standby_archive_delay: NotRequired[pulumi.Input[builtins.int]]
2063
2065
  """
2064
- Max standby archive delay in milliseconds.
2066
+ Max standby archive delay in milliseconds. The default is `30000` (upstream default).
2065
2067
  """
2066
2068
  max_standby_streaming_delay: NotRequired[pulumi.Input[builtins.int]]
2067
2069
  """
2068
- Max standby streaming delay in milliseconds.
2070
+ Max standby streaming delay in milliseconds. The default is `30000` (upstream default).
2069
2071
  """
2070
2072
  max_wal_senders: NotRequired[pulumi.Input[builtins.int]]
2071
2073
  """
2072
- PostgreSQL maximum WAL senders.
2074
+ PostgreSQL maximum WAL senders. The default is `20`. Changing this parameter causes a service restart.
2073
2075
  """
2074
2076
  max_worker_processes: NotRequired[pulumi.Input[builtins.int]]
2075
2077
  """
2076
- Sets the maximum number of background processes that the system can support.
2078
+ Sets the maximum number of background processes that the system can support. The default is `8`. Changing this parameter causes a service restart.
2077
2079
  """
2078
2080
  password_encryption: NotRequired[pulumi.Input[builtins.str]]
2079
2081
  """
@@ -2081,7 +2083,7 @@ if not MYPY:
2081
2083
  """
2082
2084
  pg_partman_bgw_dot_interval: NotRequired[pulumi.Input[builtins.int]]
2083
2085
  """
2084
- Sets the time interval to run pg_partman's scheduled tasks. Example: `3600`.
2086
+ Sets the time interval in seconds to run pg_partman's scheduled tasks. The default is `3600`. Example: `3600`.
2085
2087
  """
2086
2088
  pg_partman_bgw_dot_role: NotRequired[pulumi.Input[builtins.str]]
2087
2089
  """
@@ -2089,7 +2091,7 @@ if not MYPY:
2089
2091
  """
2090
2092
  pg_stat_statements_dot_track: NotRequired[pulumi.Input[builtins.str]]
2091
2093
  """
2092
- Enum: `all`, `none`, `top`. 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.
2094
+ Enum: `all`, `none`, `top`. 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 is `top`.
2093
2095
  """
2094
2096
  temp_file_limit: NotRequired[pulumi.Input[builtins.int]]
2095
2097
  """
@@ -2101,11 +2103,11 @@ if not MYPY:
2101
2103
  """
2102
2104
  track_activity_query_size: NotRequired[pulumi.Input[builtins.int]]
2103
2105
  """
2104
- Specifies the number of bytes reserved to track the currently executing command for each active session. Example: `1024`.
2106
+ Specifies the number of bytes reserved to track the currently executing command for each active session. Changing this parameter causes a service restart. Example: `1024`.
2105
2107
  """
2106
2108
  track_commit_timestamp: NotRequired[pulumi.Input[builtins.str]]
2107
2109
  """
2108
- Enum: `off`, `on`. Record commit time of transactions.
2110
+ Enum: `off`, `on`. Record commit time of transactions. Changing this parameter causes a service restart.
2109
2111
  """
2110
2112
  track_functions: NotRequired[pulumi.Input[builtins.str]]
2111
2113
  """
@@ -2113,7 +2115,7 @@ if not MYPY:
2113
2115
  """
2114
2116
  track_io_timing: NotRequired[pulumi.Input[builtins.str]]
2115
2117
  """
2116
- Enum: `off`, `on`. 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.
2118
+ Enum: `off`, `on`. Enables timing of database I/O calls. The default is `off`. When on, it will repeatedly query the operating system for the current time, which may cause significant overhead on some platforms.
2117
2119
  """
2118
2120
  wal_sender_timeout: NotRequired[pulumi.Input[builtins.int]]
2119
2121
  """
@@ -2121,7 +2123,7 @@ if not MYPY:
2121
2123
  """
2122
2124
  wal_writer_delay: NotRequired[pulumi.Input[builtins.int]]
2123
2125
  """
2124
- WAL flush interval in milliseconds. Note that setting this value to lower than the default 200ms may negatively impact performance. Example: `50`.
2126
+ WAL flush interval in milliseconds. The default is `200`. Setting this parameter to a lower value may negatively impact performance. Example: `50`.
2125
2127
  """
2126
2128
  elif False:
2127
2129
  AlloydbomniAlloydbomniUserConfigPgArgsDict: TypeAlias = Mapping[str, Any]
@@ -2178,54 +2180,54 @@ class AlloydbomniAlloydbomniUserConfigPgArgs:
2178
2180
  wal_sender_timeout: Optional[pulumi.Input[builtins.int]] = None,
2179
2181
  wal_writer_delay: Optional[pulumi.Input[builtins.int]] = None):
2180
2182
  """
2181
- :param pulumi.Input[builtins.float] autovacuum_analyze_scale_factor: Specifies a fraction 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).
2182
- :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.
2183
- :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. Example: `200000000`.
2184
- :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.
2185
- :param pulumi.Input[builtins.int] autovacuum_naptime: Specifies the minimum delay between autovacuum runs on any given database. The delay is measured in seconds, and the default is one minute.
2186
- :param pulumi.Input[builtins.int] autovacuum_vacuum_cost_delay: Specifies the cost delay value that will be used in automatic VACUUM operations. If -1 is specified, the regular vacuum*cost*delay value will be used. The default value is 20 milliseconds.
2187
- :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.
2188
- :param pulumi.Input[builtins.float] autovacuum_vacuum_scale_factor: Specifies a fraction 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).
2189
- :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.
2190
- :param pulumi.Input[builtins.int] bgwriter_delay: Specifies the delay between activity rounds for the background writer in milliseconds. Default is 200. Example: `200`.
2191
- :param pulumi.Input[builtins.int] bgwriter_flush_after: Whenever more than bgwriter*flush*after bytes have been written by the background writer, attempt to force the OS to issue these writes to the underlying storage. Specified in kilobytes, default is 512. Setting of 0 disables forced writeback. Example: `512`.
2192
- :param pulumi.Input[builtins.int] bgwriter_lru_maxpages: In each round, no more than this many buffers will be written by the background writer. Setting this to zero disables background writing. Default is 100. Example: `100`.
2193
- :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. Example: `2.0`.
2194
- :param pulumi.Input[builtins.int] deadlock_timeout: This is the amount of time, in milliseconds, to wait on a lock before checking to see if there is a deadlock condition. Example: `1000`.
2195
- :param pulumi.Input[builtins.str] default_toast_compression: Enum: `lz4`, `pglz`. Specifies the default TOAST compression method for values of compressible columns (the default is lz4).
2183
+ :param pulumi.Input[builtins.float] autovacuum_analyze_scale_factor: Specifies a fraction of the table size to add to autovacuum*analyze*threshold when deciding whether to trigger an ANALYZE (e.g. `0.2` for 20% of the table size). The default is `0.2`.
2184
+ :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`.
2185
+ :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. The system launches autovacuum processes to prevent wraparound even when autovacuum is otherwise disabled. Changing this parameter causes a service restart. Example: `200000000`.
2186
+ :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 `3`. Changing this parameter causes a service restart.
2187
+ :param pulumi.Input[builtins.int] autovacuum_naptime: Specifies the minimum delay between autovacuum runs on any given database. The delay is measured in seconds. The default is `60`.
2188
+ :param pulumi.Input[builtins.int] autovacuum_vacuum_cost_delay: Specifies the cost delay value that will be used in automatic VACUUM operations. If `-1` is specified, the regular vacuum*cost*delay value will be used. The default is `2` (upstream default).
2189
+ :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, the regular vacuum*cost*limit value will be used. The default is `-1` (upstream default).
2190
+ :param pulumi.Input[builtins.float] autovacuum_vacuum_scale_factor: Specifies a fraction of the table size to add to autovacuum*vacuum*threshold when deciding whether to trigger a VACUUM (e.g. `0.2` for 20% of the table size). The default is `0.2`.
2191
+ :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`.
2192
+ :param pulumi.Input[builtins.int] bgwriter_delay: Specifies the delay between activity rounds for the background writer in milliseconds. The default is `200`. Example: `200`.
2193
+ :param pulumi.Input[builtins.int] bgwriter_flush_after: Whenever more than bgwriter*flush*after bytes have been written by the background writer, attempt to force the OS to issue these writes to the underlying storage. Specified in kilobytes. Setting of 0 disables forced writeback. The default is `512`. Example: `512`.
2194
+ :param pulumi.Input[builtins.int] bgwriter_lru_maxpages: In each round, no more than this many buffers will be written by the background writer. Setting this to zero disables background writing. The default is `100`. Example: `100`.
2195
+ :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`. Example: `2.0`.
2196
+ :param pulumi.Input[builtins.int] deadlock_timeout: This is the amount of time, in milliseconds, to wait on a lock before checking to see if there is a deadlock condition. The default is `1000` (upstream default). Example: `1000`.
2197
+ :param pulumi.Input[builtins.str] default_toast_compression: Enum: `lz4`, `pglz`. Specifies the default TOAST compression method for values of compressible columns. The default is `lz4`.
2196
2198
  :param pulumi.Input[builtins.int] idle_in_transaction_session_timeout: Time out sessions with open transactions after this number of milliseconds.
2197
2199
  :param pulumi.Input[builtins.bool] jit: Controls system-wide use of Just-in-Time Compilation (JIT).
2198
- :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.
2200
+ :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 disables logging autovacuum actions. The default is `1000`.
2199
2201
  :param pulumi.Input[builtins.str] log_error_verbosity: Enum: `DEFAULT`, `TERSE`, `VERBOSE`. Controls the amount of detail written in the server log for each message that is logged.
2200
2202
  :param pulumi.Input[builtins.str] log_line_prefix: Enum: `'%m [%p] %q[user=%u,db=%d,app=%a] '`, `'%t [%p]: [%l-1] user=%u,db=%d,app=%a,client=%h '`, `'pid=%p,user=%u,db=%d,app=%a,client=%h '`, `'pid=%p,user=%u,db=%d,app=%a,client=%h,txid=%x,qid=%Q '`. Choose from one of the available log formats.
2201
2203
  :param pulumi.Input[builtins.int] log_min_duration_statement: Log statements that take more than this number of milliseconds to run, -1 disables.
2202
2204
  :param pulumi.Input[builtins.int] log_temp_files: Log statements for each temporary file created larger than this number of kilobytes, -1 disables.
2203
- :param pulumi.Input[builtins.int] max_files_per_process: PostgreSQL maximum number of files that can be open per process.
2204
- :param pulumi.Input[builtins.int] max_locks_per_transaction: PostgreSQL maximum locks per transaction.
2205
- :param pulumi.Input[builtins.int] max_logical_replication_workers: PostgreSQL maximum logical replication workers (taken from the pool of max*parallel*workers).
2206
- :param pulumi.Input[builtins.int] max_parallel_workers: Sets the maximum number of workers that the system can support for parallel queries.
2207
- :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.
2208
- :param pulumi.Input[builtins.int] max_pred_locks_per_transaction: PostgreSQL maximum predicate locks per transaction.
2209
- :param pulumi.Input[builtins.int] max_prepared_transactions: PostgreSQL maximum prepared transactions.
2210
- :param pulumi.Input[builtins.int] max_replication_slots: PostgreSQL maximum replication slots.
2211
- :param pulumi.Input[builtins.int] max_slot_wal_keep_size: PostgreSQL maximum WAL size (MB) reserved for replication slots. Default is -1 (unlimited). wal*keep*size minimum WAL size setting takes precedence over this.
2212
- :param pulumi.Input[builtins.int] max_stack_depth: Maximum depth of the stack in bytes.
2213
- :param pulumi.Input[builtins.int] max_standby_archive_delay: Max standby archive delay in milliseconds.
2214
- :param pulumi.Input[builtins.int] max_standby_streaming_delay: Max standby streaming delay in milliseconds.
2215
- :param pulumi.Input[builtins.int] max_wal_senders: PostgreSQL maximum WAL senders.
2216
- :param pulumi.Input[builtins.int] max_worker_processes: Sets the maximum number of background processes that the system can support.
2205
+ :param pulumi.Input[builtins.int] max_files_per_process: PostgreSQL maximum number of files that can be open per process. The default is `1000` (upstream default). Changing this parameter causes a service restart.
2206
+ :param pulumi.Input[builtins.int] max_locks_per_transaction: PostgreSQL maximum locks per transaction. Changing this parameter causes a service restart.
2207
+ :param pulumi.Input[builtins.int] max_logical_replication_workers: PostgreSQL maximum logical replication workers (taken from the pool of max*parallel*workers). The default is `4` (upstream default). Changing this parameter causes a service restart.
2208
+ :param pulumi.Input[builtins.int] max_parallel_workers: Sets the maximum number of workers that the system can support for parallel queries. The default is `8` (upstream default).
2209
+ :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. The default is `2` (upstream default).
2210
+ :param pulumi.Input[builtins.int] max_pred_locks_per_transaction: PostgreSQL maximum predicate locks per transaction. The default is `64` (upstream default). Changing this parameter causes a service restart.
2211
+ :param pulumi.Input[builtins.int] max_prepared_transactions: PostgreSQL maximum prepared transactions. The default is `0`. Changing this parameter causes a service restart.
2212
+ :param pulumi.Input[builtins.int] max_replication_slots: PostgreSQL maximum replication slots. The default is `20`. Changing this parameter causes a service restart.
2213
+ :param pulumi.Input[builtins.int] max_slot_wal_keep_size: PostgreSQL maximum WAL size (MB) reserved for replication slots. If `-1` is specified, replication slots may retain an unlimited amount of WAL files. The default is `-1` (upstream default). wal*keep*size minimum WAL size setting takes precedence over this.
2214
+ :param pulumi.Input[builtins.int] max_stack_depth: Maximum depth of the stack in bytes. The default is `2097152` (upstream default).
2215
+ :param pulumi.Input[builtins.int] max_standby_archive_delay: Max standby archive delay in milliseconds. The default is `30000` (upstream default).
2216
+ :param pulumi.Input[builtins.int] max_standby_streaming_delay: Max standby streaming delay in milliseconds. The default is `30000` (upstream default).
2217
+ :param pulumi.Input[builtins.int] max_wal_senders: PostgreSQL maximum WAL senders. The default is `20`. Changing this parameter causes a service restart.
2218
+ :param pulumi.Input[builtins.int] max_worker_processes: Sets the maximum number of background processes that the system can support. The default is `8`. Changing this parameter causes a service restart.
2217
2219
  :param pulumi.Input[builtins.str] password_encryption: Enum: `md5`, `scram-sha-256`. Chooses the algorithm for encrypting passwords. Default: `md5`.
2218
- :param pulumi.Input[builtins.int] pg_partman_bgw_dot_interval: Sets the time interval to run pg_partman's scheduled tasks. Example: `3600`.
2220
+ :param pulumi.Input[builtins.int] pg_partman_bgw_dot_interval: Sets the time interval in seconds to run pg_partman's scheduled tasks. The default is `3600`. Example: `3600`.
2219
2221
  :param pulumi.Input[builtins.str] pg_partman_bgw_dot_role: Controls which role to use for pg_partman's scheduled background tasks. Example: `myrolename`.
2220
- :param pulumi.Input[builtins.str] pg_stat_statements_dot_track: Enum: `all`, `none`, `top`. 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.
2222
+ :param pulumi.Input[builtins.str] pg_stat_statements_dot_track: Enum: `all`, `none`, `top`. 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 is `top`.
2221
2223
  :param pulumi.Input[builtins.int] temp_file_limit: PostgreSQL temporary file limit in KiB, -1 for unlimited. Example: `5000000`.
2222
2224
  :param pulumi.Input[builtins.str] timezone: PostgreSQL service timezone. Example: `Europe/Helsinki`.
2223
- :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. Example: `1024`.
2224
- :param pulumi.Input[builtins.str] track_commit_timestamp: Enum: `off`, `on`. Record commit time of transactions.
2225
+ :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. Changing this parameter causes a service restart. Example: `1024`.
2226
+ :param pulumi.Input[builtins.str] track_commit_timestamp: Enum: `off`, `on`. Record commit time of transactions. Changing this parameter causes a service restart.
2225
2227
  :param pulumi.Input[builtins.str] track_functions: Enum: `all`, `none`, `pl`. Enables tracking of function call counts and time used.
2226
- :param pulumi.Input[builtins.str] track_io_timing: Enum: `off`, `on`. 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.
2228
+ :param pulumi.Input[builtins.str] track_io_timing: Enum: `off`, `on`. Enables timing of database I/O calls. The default is `off`. When on, it will repeatedly query the operating system for the current time, which may cause significant overhead on some platforms.
2227
2229
  :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. Example: `60000`.
2228
- :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. Example: `50`.
2230
+ :param pulumi.Input[builtins.int] wal_writer_delay: WAL flush interval in milliseconds. The default is `200`. Setting this parameter to a lower value may negatively impact performance. Example: `50`.
2229
2231
  """
2230
2232
  if autovacuum_analyze_scale_factor is not None:
2231
2233
  pulumi.set(__self__, "autovacuum_analyze_scale_factor", autovacuum_analyze_scale_factor)
@@ -2328,7 +2330,7 @@ class AlloydbomniAlloydbomniUserConfigPgArgs:
2328
2330
  @pulumi.getter(name="autovacuumAnalyzeScaleFactor")
2329
2331
  def autovacuum_analyze_scale_factor(self) -> Optional[pulumi.Input[builtins.float]]:
2330
2332
  """
2331
- Specifies a fraction 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).
2333
+ Specifies a fraction of the table size to add to autovacuum*analyze*threshold when deciding whether to trigger an ANALYZE (e.g. `0.2` for 20% of the table size). The default is `0.2`.
2332
2334
  """
2333
2335
  return pulumi.get(self, "autovacuum_analyze_scale_factor")
2334
2336
 
@@ -2340,7 +2342,7 @@ class AlloydbomniAlloydbomniUserConfigPgArgs:
2340
2342
  @pulumi.getter(name="autovacuumAnalyzeThreshold")
2341
2343
  def autovacuum_analyze_threshold(self) -> Optional[pulumi.Input[builtins.int]]:
2342
2344
  """
2343
- Specifies the minimum number of inserted, updated or deleted tuples needed to trigger an ANALYZE in any one table. The default is 50 tuples.
2345
+ Specifies the minimum number of inserted, updated or deleted tuples needed to trigger an ANALYZE in any one table. The default is `50`.
2344
2346
  """
2345
2347
  return pulumi.get(self, "autovacuum_analyze_threshold")
2346
2348
 
@@ -2352,7 +2354,7 @@ class AlloydbomniAlloydbomniUserConfigPgArgs:
2352
2354
  @pulumi.getter(name="autovacuumFreezeMaxAge")
2353
2355
  def autovacuum_freeze_max_age(self) -> Optional[pulumi.Input[builtins.int]]:
2354
2356
  """
2355
- 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. Example: `200000000`.
2357
+ 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. The system launches autovacuum processes to prevent wraparound even when autovacuum is otherwise disabled. Changing this parameter causes a service restart. Example: `200000000`.
2356
2358
  """
2357
2359
  return pulumi.get(self, "autovacuum_freeze_max_age")
2358
2360
 
@@ -2364,7 +2366,7 @@ class AlloydbomniAlloydbomniUserConfigPgArgs:
2364
2366
  @pulumi.getter(name="autovacuumMaxWorkers")
2365
2367
  def autovacuum_max_workers(self) -> Optional[pulumi.Input[builtins.int]]:
2366
2368
  """
2367
- 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.
2369
+ Specifies the maximum number of autovacuum processes (other than the autovacuum launcher) that may be running at any one time. The default is `3`. Changing this parameter causes a service restart.
2368
2370
  """
2369
2371
  return pulumi.get(self, "autovacuum_max_workers")
2370
2372
 
@@ -2376,7 +2378,7 @@ class AlloydbomniAlloydbomniUserConfigPgArgs:
2376
2378
  @pulumi.getter(name="autovacuumNaptime")
2377
2379
  def autovacuum_naptime(self) -> Optional[pulumi.Input[builtins.int]]:
2378
2380
  """
2379
- Specifies the minimum delay between autovacuum runs on any given database. The delay is measured in seconds, and the default is one minute.
2381
+ Specifies the minimum delay between autovacuum runs on any given database. The delay is measured in seconds. The default is `60`.
2380
2382
  """
2381
2383
  return pulumi.get(self, "autovacuum_naptime")
2382
2384
 
@@ -2388,7 +2390,7 @@ class AlloydbomniAlloydbomniUserConfigPgArgs:
2388
2390
  @pulumi.getter(name="autovacuumVacuumCostDelay")
2389
2391
  def autovacuum_vacuum_cost_delay(self) -> Optional[pulumi.Input[builtins.int]]:
2390
2392
  """
2391
- Specifies the cost delay value that will be used in automatic VACUUM operations. If -1 is specified, the regular vacuum*cost*delay value will be used. The default value is 20 milliseconds.
2393
+ Specifies the cost delay value that will be used in automatic VACUUM operations. If `-1` is specified, the regular vacuum*cost*delay value will be used. The default is `2` (upstream default).
2392
2394
  """
2393
2395
  return pulumi.get(self, "autovacuum_vacuum_cost_delay")
2394
2396
 
@@ -2400,7 +2402,7 @@ class AlloydbomniAlloydbomniUserConfigPgArgs:
2400
2402
  @pulumi.getter(name="autovacuumVacuumCostLimit")
2401
2403
  def autovacuum_vacuum_cost_limit(self) -> Optional[pulumi.Input[builtins.int]]:
2402
2404
  """
2403
- 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.
2405
+ Specifies the cost limit value that will be used in automatic VACUUM operations. If `-1` is specified, the regular vacuum*cost*limit value will be used. The default is `-1` (upstream default).
2404
2406
  """
2405
2407
  return pulumi.get(self, "autovacuum_vacuum_cost_limit")
2406
2408
 
@@ -2412,7 +2414,7 @@ class AlloydbomniAlloydbomniUserConfigPgArgs:
2412
2414
  @pulumi.getter(name="autovacuumVacuumScaleFactor")
2413
2415
  def autovacuum_vacuum_scale_factor(self) -> Optional[pulumi.Input[builtins.float]]:
2414
2416
  """
2415
- Specifies a fraction 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).
2417
+ Specifies a fraction of the table size to add to autovacuum*vacuum*threshold when deciding whether to trigger a VACUUM (e.g. `0.2` for 20% of the table size). The default is `0.2`.
2416
2418
  """
2417
2419
  return pulumi.get(self, "autovacuum_vacuum_scale_factor")
2418
2420
 
@@ -2424,7 +2426,7 @@ class AlloydbomniAlloydbomniUserConfigPgArgs:
2424
2426
  @pulumi.getter(name="autovacuumVacuumThreshold")
2425
2427
  def autovacuum_vacuum_threshold(self) -> Optional[pulumi.Input[builtins.int]]:
2426
2428
  """
2427
- Specifies the minimum number of updated or deleted tuples needed to trigger a VACUUM in any one table. The default is 50 tuples.
2429
+ Specifies the minimum number of updated or deleted tuples needed to trigger a VACUUM in any one table. The default is `50`.
2428
2430
  """
2429
2431
  return pulumi.get(self, "autovacuum_vacuum_threshold")
2430
2432
 
@@ -2436,7 +2438,7 @@ class AlloydbomniAlloydbomniUserConfigPgArgs:
2436
2438
  @pulumi.getter(name="bgwriterDelay")
2437
2439
  def bgwriter_delay(self) -> Optional[pulumi.Input[builtins.int]]:
2438
2440
  """
2439
- Specifies the delay between activity rounds for the background writer in milliseconds. Default is 200. Example: `200`.
2441
+ Specifies the delay between activity rounds for the background writer in milliseconds. The default is `200`. Example: `200`.
2440
2442
  """
2441
2443
  return pulumi.get(self, "bgwriter_delay")
2442
2444
 
@@ -2448,7 +2450,7 @@ class AlloydbomniAlloydbomniUserConfigPgArgs:
2448
2450
  @pulumi.getter(name="bgwriterFlushAfter")
2449
2451
  def bgwriter_flush_after(self) -> Optional[pulumi.Input[builtins.int]]:
2450
2452
  """
2451
- Whenever more than bgwriter*flush*after bytes have been written by the background writer, attempt to force the OS to issue these writes to the underlying storage. Specified in kilobytes, default is 512. Setting of 0 disables forced writeback. Example: `512`.
2453
+ Whenever more than bgwriter*flush*after bytes have been written by the background writer, attempt to force the OS to issue these writes to the underlying storage. Specified in kilobytes. Setting of 0 disables forced writeback. The default is `512`. Example: `512`.
2452
2454
  """
2453
2455
  return pulumi.get(self, "bgwriter_flush_after")
2454
2456
 
@@ -2460,7 +2462,7 @@ class AlloydbomniAlloydbomniUserConfigPgArgs:
2460
2462
  @pulumi.getter(name="bgwriterLruMaxpages")
2461
2463
  def bgwriter_lru_maxpages(self) -> Optional[pulumi.Input[builtins.int]]:
2462
2464
  """
2463
- In each round, no more than this many buffers will be written by the background writer. Setting this to zero disables background writing. Default is 100. Example: `100`.
2465
+ In each round, no more than this many buffers will be written by the background writer. Setting this to zero disables background writing. The default is `100`. Example: `100`.
2464
2466
  """
2465
2467
  return pulumi.get(self, "bgwriter_lru_maxpages")
2466
2468
 
@@ -2472,7 +2474,7 @@ class AlloydbomniAlloydbomniUserConfigPgArgs:
2472
2474
  @pulumi.getter(name="bgwriterLruMultiplier")
2473
2475
  def bgwriter_lru_multiplier(self) -> Optional[pulumi.Input[builtins.float]]:
2474
2476
  """
2475
- 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. Example: `2.0`.
2477
+ 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`. Example: `2.0`.
2476
2478
  """
2477
2479
  return pulumi.get(self, "bgwriter_lru_multiplier")
2478
2480
 
@@ -2484,7 +2486,7 @@ class AlloydbomniAlloydbomniUserConfigPgArgs:
2484
2486
  @pulumi.getter(name="deadlockTimeout")
2485
2487
  def deadlock_timeout(self) -> Optional[pulumi.Input[builtins.int]]:
2486
2488
  """
2487
- This is the amount of time, in milliseconds, to wait on a lock before checking to see if there is a deadlock condition. Example: `1000`.
2489
+ This is the amount of time, in milliseconds, to wait on a lock before checking to see if there is a deadlock condition. The default is `1000` (upstream default). Example: `1000`.
2488
2490
  """
2489
2491
  return pulumi.get(self, "deadlock_timeout")
2490
2492
 
@@ -2496,7 +2498,7 @@ class AlloydbomniAlloydbomniUserConfigPgArgs:
2496
2498
  @pulumi.getter(name="defaultToastCompression")
2497
2499
  def default_toast_compression(self) -> Optional[pulumi.Input[builtins.str]]:
2498
2500
  """
2499
- Enum: `lz4`, `pglz`. Specifies the default TOAST compression method for values of compressible columns (the default is lz4).
2501
+ Enum: `lz4`, `pglz`. Specifies the default TOAST compression method for values of compressible columns. The default is `lz4`.
2500
2502
  """
2501
2503
  return pulumi.get(self, "default_toast_compression")
2502
2504
 
@@ -2532,7 +2534,7 @@ class AlloydbomniAlloydbomniUserConfigPgArgs:
2532
2534
  @pulumi.getter(name="logAutovacuumMinDuration")
2533
2535
  def log_autovacuum_min_duration(self) -> Optional[pulumi.Input[builtins.int]]:
2534
2536
  """
2535
- 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.
2537
+ 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 disables logging autovacuum actions. The default is `1000`.
2536
2538
  """
2537
2539
  return pulumi.get(self, "log_autovacuum_min_duration")
2538
2540
 
@@ -2592,7 +2594,7 @@ class AlloydbomniAlloydbomniUserConfigPgArgs:
2592
2594
  @pulumi.getter(name="maxFilesPerProcess")
2593
2595
  def max_files_per_process(self) -> Optional[pulumi.Input[builtins.int]]:
2594
2596
  """
2595
- PostgreSQL maximum number of files that can be open per process.
2597
+ PostgreSQL maximum number of files that can be open per process. The default is `1000` (upstream default). Changing this parameter causes a service restart.
2596
2598
  """
2597
2599
  return pulumi.get(self, "max_files_per_process")
2598
2600
 
@@ -2604,7 +2606,7 @@ class AlloydbomniAlloydbomniUserConfigPgArgs:
2604
2606
  @pulumi.getter(name="maxLocksPerTransaction")
2605
2607
  def max_locks_per_transaction(self) -> Optional[pulumi.Input[builtins.int]]:
2606
2608
  """
2607
- PostgreSQL maximum locks per transaction.
2609
+ PostgreSQL maximum locks per transaction. Changing this parameter causes a service restart.
2608
2610
  """
2609
2611
  return pulumi.get(self, "max_locks_per_transaction")
2610
2612
 
@@ -2616,7 +2618,7 @@ class AlloydbomniAlloydbomniUserConfigPgArgs:
2616
2618
  @pulumi.getter(name="maxLogicalReplicationWorkers")
2617
2619
  def max_logical_replication_workers(self) -> Optional[pulumi.Input[builtins.int]]:
2618
2620
  """
2619
- PostgreSQL maximum logical replication workers (taken from the pool of max*parallel*workers).
2621
+ PostgreSQL maximum logical replication workers (taken from the pool of max*parallel*workers). The default is `4` (upstream default). Changing this parameter causes a service restart.
2620
2622
  """
2621
2623
  return pulumi.get(self, "max_logical_replication_workers")
2622
2624
 
@@ -2628,7 +2630,7 @@ class AlloydbomniAlloydbomniUserConfigPgArgs:
2628
2630
  @pulumi.getter(name="maxParallelWorkers")
2629
2631
  def max_parallel_workers(self) -> Optional[pulumi.Input[builtins.int]]:
2630
2632
  """
2631
- Sets the maximum number of workers that the system can support for parallel queries.
2633
+ Sets the maximum number of workers that the system can support for parallel queries. The default is `8` (upstream default).
2632
2634
  """
2633
2635
  return pulumi.get(self, "max_parallel_workers")
2634
2636
 
@@ -2640,7 +2642,7 @@ class AlloydbomniAlloydbomniUserConfigPgArgs:
2640
2642
  @pulumi.getter(name="maxParallelWorkersPerGather")
2641
2643
  def max_parallel_workers_per_gather(self) -> Optional[pulumi.Input[builtins.int]]:
2642
2644
  """
2643
- Sets the maximum number of workers that can be started by a single Gather or Gather Merge node.
2645
+ Sets the maximum number of workers that can be started by a single Gather or Gather Merge node. The default is `2` (upstream default).
2644
2646
  """
2645
2647
  return pulumi.get(self, "max_parallel_workers_per_gather")
2646
2648
 
@@ -2652,7 +2654,7 @@ class AlloydbomniAlloydbomniUserConfigPgArgs:
2652
2654
  @pulumi.getter(name="maxPredLocksPerTransaction")
2653
2655
  def max_pred_locks_per_transaction(self) -> Optional[pulumi.Input[builtins.int]]:
2654
2656
  """
2655
- PostgreSQL maximum predicate locks per transaction.
2657
+ PostgreSQL maximum predicate locks per transaction. The default is `64` (upstream default). Changing this parameter causes a service restart.
2656
2658
  """
2657
2659
  return pulumi.get(self, "max_pred_locks_per_transaction")
2658
2660
 
@@ -2664,7 +2666,7 @@ class AlloydbomniAlloydbomniUserConfigPgArgs:
2664
2666
  @pulumi.getter(name="maxPreparedTransactions")
2665
2667
  def max_prepared_transactions(self) -> Optional[pulumi.Input[builtins.int]]:
2666
2668
  """
2667
- PostgreSQL maximum prepared transactions.
2669
+ PostgreSQL maximum prepared transactions. The default is `0`. Changing this parameter causes a service restart.
2668
2670
  """
2669
2671
  return pulumi.get(self, "max_prepared_transactions")
2670
2672
 
@@ -2676,7 +2678,7 @@ class AlloydbomniAlloydbomniUserConfigPgArgs:
2676
2678
  @pulumi.getter(name="maxReplicationSlots")
2677
2679
  def max_replication_slots(self) -> Optional[pulumi.Input[builtins.int]]:
2678
2680
  """
2679
- PostgreSQL maximum replication slots.
2681
+ PostgreSQL maximum replication slots. The default is `20`. Changing this parameter causes a service restart.
2680
2682
  """
2681
2683
  return pulumi.get(self, "max_replication_slots")
2682
2684
 
@@ -2688,7 +2690,7 @@ class AlloydbomniAlloydbomniUserConfigPgArgs:
2688
2690
  @pulumi.getter(name="maxSlotWalKeepSize")
2689
2691
  def max_slot_wal_keep_size(self) -> Optional[pulumi.Input[builtins.int]]:
2690
2692
  """
2691
- PostgreSQL maximum WAL size (MB) reserved for replication slots. Default is -1 (unlimited). wal*keep*size minimum WAL size setting takes precedence over this.
2693
+ PostgreSQL maximum WAL size (MB) reserved for replication slots. If `-1` is specified, replication slots may retain an unlimited amount of WAL files. The default is `-1` (upstream default). wal*keep*size minimum WAL size setting takes precedence over this.
2692
2694
  """
2693
2695
  return pulumi.get(self, "max_slot_wal_keep_size")
2694
2696
 
@@ -2700,7 +2702,7 @@ class AlloydbomniAlloydbomniUserConfigPgArgs:
2700
2702
  @pulumi.getter(name="maxStackDepth")
2701
2703
  def max_stack_depth(self) -> Optional[pulumi.Input[builtins.int]]:
2702
2704
  """
2703
- Maximum depth of the stack in bytes.
2705
+ Maximum depth of the stack in bytes. The default is `2097152` (upstream default).
2704
2706
  """
2705
2707
  return pulumi.get(self, "max_stack_depth")
2706
2708
 
@@ -2712,7 +2714,7 @@ class AlloydbomniAlloydbomniUserConfigPgArgs:
2712
2714
  @pulumi.getter(name="maxStandbyArchiveDelay")
2713
2715
  def max_standby_archive_delay(self) -> Optional[pulumi.Input[builtins.int]]:
2714
2716
  """
2715
- Max standby archive delay in milliseconds.
2717
+ Max standby archive delay in milliseconds. The default is `30000` (upstream default).
2716
2718
  """
2717
2719
  return pulumi.get(self, "max_standby_archive_delay")
2718
2720
 
@@ -2724,7 +2726,7 @@ class AlloydbomniAlloydbomniUserConfigPgArgs:
2724
2726
  @pulumi.getter(name="maxStandbyStreamingDelay")
2725
2727
  def max_standby_streaming_delay(self) -> Optional[pulumi.Input[builtins.int]]:
2726
2728
  """
2727
- Max standby streaming delay in milliseconds.
2729
+ Max standby streaming delay in milliseconds. The default is `30000` (upstream default).
2728
2730
  """
2729
2731
  return pulumi.get(self, "max_standby_streaming_delay")
2730
2732
 
@@ -2736,7 +2738,7 @@ class AlloydbomniAlloydbomniUserConfigPgArgs:
2736
2738
  @pulumi.getter(name="maxWalSenders")
2737
2739
  def max_wal_senders(self) -> Optional[pulumi.Input[builtins.int]]:
2738
2740
  """
2739
- PostgreSQL maximum WAL senders.
2741
+ PostgreSQL maximum WAL senders. The default is `20`. Changing this parameter causes a service restart.
2740
2742
  """
2741
2743
  return pulumi.get(self, "max_wal_senders")
2742
2744
 
@@ -2748,7 +2750,7 @@ class AlloydbomniAlloydbomniUserConfigPgArgs:
2748
2750
  @pulumi.getter(name="maxWorkerProcesses")
2749
2751
  def max_worker_processes(self) -> Optional[pulumi.Input[builtins.int]]:
2750
2752
  """
2751
- Sets the maximum number of background processes that the system can support.
2753
+ Sets the maximum number of background processes that the system can support. The default is `8`. Changing this parameter causes a service restart.
2752
2754
  """
2753
2755
  return pulumi.get(self, "max_worker_processes")
2754
2756
 
@@ -2772,7 +2774,7 @@ class AlloydbomniAlloydbomniUserConfigPgArgs:
2772
2774
  @pulumi.getter(name="pgPartmanBgwDotInterval")
2773
2775
  def pg_partman_bgw_dot_interval(self) -> Optional[pulumi.Input[builtins.int]]:
2774
2776
  """
2775
- Sets the time interval to run pg_partman's scheduled tasks. Example: `3600`.
2777
+ Sets the time interval in seconds to run pg_partman's scheduled tasks. The default is `3600`. Example: `3600`.
2776
2778
  """
2777
2779
  return pulumi.get(self, "pg_partman_bgw_dot_interval")
2778
2780
 
@@ -2796,7 +2798,7 @@ class AlloydbomniAlloydbomniUserConfigPgArgs:
2796
2798
  @pulumi.getter(name="pgStatStatementsDotTrack")
2797
2799
  def pg_stat_statements_dot_track(self) -> Optional[pulumi.Input[builtins.str]]:
2798
2800
  """
2799
- Enum: `all`, `none`, `top`. 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.
2801
+ Enum: `all`, `none`, `top`. 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 is `top`.
2800
2802
  """
2801
2803
  return pulumi.get(self, "pg_stat_statements_dot_track")
2802
2804
 
@@ -2832,7 +2834,7 @@ class AlloydbomniAlloydbomniUserConfigPgArgs:
2832
2834
  @pulumi.getter(name="trackActivityQuerySize")
2833
2835
  def track_activity_query_size(self) -> Optional[pulumi.Input[builtins.int]]:
2834
2836
  """
2835
- Specifies the number of bytes reserved to track the currently executing command for each active session. Example: `1024`.
2837
+ Specifies the number of bytes reserved to track the currently executing command for each active session. Changing this parameter causes a service restart. Example: `1024`.
2836
2838
  """
2837
2839
  return pulumi.get(self, "track_activity_query_size")
2838
2840
 
@@ -2844,7 +2846,7 @@ class AlloydbomniAlloydbomniUserConfigPgArgs:
2844
2846
  @pulumi.getter(name="trackCommitTimestamp")
2845
2847
  def track_commit_timestamp(self) -> Optional[pulumi.Input[builtins.str]]:
2846
2848
  """
2847
- Enum: `off`, `on`. Record commit time of transactions.
2849
+ Enum: `off`, `on`. Record commit time of transactions. Changing this parameter causes a service restart.
2848
2850
  """
2849
2851
  return pulumi.get(self, "track_commit_timestamp")
2850
2852
 
@@ -2868,7 +2870,7 @@ class AlloydbomniAlloydbomniUserConfigPgArgs:
2868
2870
  @pulumi.getter(name="trackIoTiming")
2869
2871
  def track_io_timing(self) -> Optional[pulumi.Input[builtins.str]]:
2870
2872
  """
2871
- Enum: `off`, `on`. 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.
2873
+ Enum: `off`, `on`. Enables timing of database I/O calls. The default is `off`. When on, it will repeatedly query the operating system for the current time, which may cause significant overhead on some platforms.
2872
2874
  """
2873
2875
  return pulumi.get(self, "track_io_timing")
2874
2876
 
@@ -2892,7 +2894,7 @@ class AlloydbomniAlloydbomniUserConfigPgArgs:
2892
2894
  @pulumi.getter(name="walWriterDelay")
2893
2895
  def wal_writer_delay(self) -> Optional[pulumi.Input[builtins.int]]:
2894
2896
  """
2895
- WAL flush interval in milliseconds. Note that setting this value to lower than the default 200ms may negatively impact performance. Example: `50`.
2897
+ WAL flush interval in milliseconds. The default is `200`. Setting this parameter to a lower value may negatively impact performance. Example: `50`.
2896
2898
  """
2897
2899
  return pulumi.get(self, "wal_writer_delay")
2898
2900
 
@@ -8649,21 +8651,21 @@ class FlinkTechEmailArgs:
8649
8651
 
8650
8652
  if not MYPY:
8651
8653
  class GovernanceAccessAccessDataArgsDict(TypedDict):
8652
- acls: pulumi.Input[Sequence[pulumi.Input['GovernanceAccessAccessDataAclArgsDict']]]
8653
- """
8654
- The permissions granted to the assigned service user. Maximum length: `54`. Changing this property forces recreation of the resource.
8655
- """
8656
8654
  project: pulumi.Input[builtins.str]
8657
8655
  """
8658
- The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
8656
+ Project name. Changing this property forces recreation of the resource.
8659
8657
  """
8660
8658
  service_name: pulumi.Input[builtins.str]
8661
8659
  """
8662
- The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
8660
+ Service name. Changing this property forces recreation of the resource.
8661
+ """
8662
+ acls: NotRequired[pulumi.Input[Sequence[pulumi.Input['GovernanceAccessAccessDataAclArgsDict']]]]
8663
+ """
8664
+ Required property. Acls. Changing this property forces recreation of the resource.
8663
8665
  """
8664
8666
  username: NotRequired[pulumi.Input[builtins.str]]
8665
8667
  """
8666
- The name for the new service user given access. If not provided, the name is automatically generated. Maximum length: `54`. Changing this property forces recreation of the resource.
8668
+ The service username assigned to the access. Changing this property forces recreation of the resource.
8667
8669
  """
8668
8670
  elif False:
8669
8671
  GovernanceAccessAccessDataArgsDict: TypeAlias = Mapping[str, Any]
@@ -8671,39 +8673,28 @@ elif False:
8671
8673
  @pulumi.input_type
8672
8674
  class GovernanceAccessAccessDataArgs:
8673
8675
  def __init__(__self__, *,
8674
- acls: pulumi.Input[Sequence[pulumi.Input['GovernanceAccessAccessDataAclArgs']]],
8675
8676
  project: pulumi.Input[builtins.str],
8676
8677
  service_name: pulumi.Input[builtins.str],
8678
+ acls: Optional[pulumi.Input[Sequence[pulumi.Input['GovernanceAccessAccessDataAclArgs']]]] = None,
8677
8679
  username: Optional[pulumi.Input[builtins.str]] = None):
8678
8680
  """
8679
- :param pulumi.Input[Sequence[pulumi.Input['GovernanceAccessAccessDataAclArgs']]] acls: The permissions granted to the assigned service user. Maximum length: `54`. Changing this property forces recreation of the resource.
8680
- :param pulumi.Input[builtins.str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
8681
- :param pulumi.Input[builtins.str] service_name: The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
8682
- :param pulumi.Input[builtins.str] username: The name for the new service user given access. If not provided, the name is automatically generated. Maximum length: `54`. Changing this property forces recreation of the resource.
8681
+ :param pulumi.Input[builtins.str] project: Project name. Changing this property forces recreation of the resource.
8682
+ :param pulumi.Input[builtins.str] service_name: Service name. Changing this property forces recreation of the resource.
8683
+ :param pulumi.Input[Sequence[pulumi.Input['GovernanceAccessAccessDataAclArgs']]] acls: Required property. Acls. Changing this property forces recreation of the resource.
8684
+ :param pulumi.Input[builtins.str] username: The service username assigned to the access. Changing this property forces recreation of the resource.
8683
8685
  """
8684
- pulumi.set(__self__, "acls", acls)
8685
8686
  pulumi.set(__self__, "project", project)
8686
8687
  pulumi.set(__self__, "service_name", service_name)
8688
+ if acls is not None:
8689
+ pulumi.set(__self__, "acls", acls)
8687
8690
  if username is not None:
8688
8691
  pulumi.set(__self__, "username", username)
8689
8692
 
8690
- @property
8691
- @pulumi.getter
8692
- def acls(self) -> pulumi.Input[Sequence[pulumi.Input['GovernanceAccessAccessDataAclArgs']]]:
8693
- """
8694
- The permissions granted to the assigned service user. Maximum length: `54`. Changing this property forces recreation of the resource.
8695
- """
8696
- return pulumi.get(self, "acls")
8697
-
8698
- @acls.setter
8699
- def acls(self, value: pulumi.Input[Sequence[pulumi.Input['GovernanceAccessAccessDataAclArgs']]]):
8700
- pulumi.set(self, "acls", value)
8701
-
8702
8693
  @property
8703
8694
  @pulumi.getter
8704
8695
  def project(self) -> pulumi.Input[builtins.str]:
8705
8696
  """
8706
- The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
8697
+ Project name. Changing this property forces recreation of the resource.
8707
8698
  """
8708
8699
  return pulumi.get(self, "project")
8709
8700
 
@@ -8715,7 +8706,7 @@ class GovernanceAccessAccessDataArgs:
8715
8706
  @pulumi.getter(name="serviceName")
8716
8707
  def service_name(self) -> pulumi.Input[builtins.str]:
8717
8708
  """
8718
- The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
8709
+ Service name. Changing this property forces recreation of the resource.
8719
8710
  """
8720
8711
  return pulumi.get(self, "service_name")
8721
8712
 
@@ -8723,11 +8714,23 @@ class GovernanceAccessAccessDataArgs:
8723
8714
  def service_name(self, value: pulumi.Input[builtins.str]):
8724
8715
  pulumi.set(self, "service_name", value)
8725
8716
 
8717
+ @property
8718
+ @pulumi.getter
8719
+ def acls(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['GovernanceAccessAccessDataAclArgs']]]]:
8720
+ """
8721
+ Required property. Acls. Changing this property forces recreation of the resource.
8722
+ """
8723
+ return pulumi.get(self, "acls")
8724
+
8725
+ @acls.setter
8726
+ def acls(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['GovernanceAccessAccessDataAclArgs']]]]):
8727
+ pulumi.set(self, "acls", value)
8728
+
8726
8729
  @property
8727
8730
  @pulumi.getter
8728
8731
  def username(self) -> Optional[pulumi.Input[builtins.str]]:
8729
8732
  """
8730
- The name for the new service user given access. If not provided, the name is automatically generated. Maximum length: `54`. Changing this property forces recreation of the resource.
8733
+ The service username assigned to the access. Changing this property forces recreation of the resource.
8731
8734
  """
8732
8735
  return pulumi.get(self, "username")
8733
8736
 
@@ -8740,19 +8743,19 @@ if not MYPY:
8740
8743
  class GovernanceAccessAccessDataAclArgsDict(TypedDict):
8741
8744
  operation: pulumi.Input[builtins.str]
8742
8745
  """
8743
- The action that will be allowed for the service user. The possible values are `Read` and `Write`. Changing this property forces recreation of the resource.
8746
+ An enumeration. The possible values are `Read` and `Write`. Changing this property forces recreation of the resource.
8744
8747
  """
8745
8748
  permission_type: pulumi.Input[builtins.str]
8746
8749
  """
8747
- Explicitly allows or denies the action for the service user on the specified resource. The possible value is `ALLOW`. Changing this property forces recreation of the resource.
8750
+ An enumeration. The possible value is `ALLOW`. Changing this property forces recreation of the resource.
8748
8751
  """
8749
8752
  resource_name: pulumi.Input[builtins.str]
8750
8753
  """
8751
- The name of the resource the permission applies to, such as the topic name or group ID in the Kafka service. Maximum length: `256`. Changing this property forces recreation of the resource.
8754
+ Acl resource name. Maximum length: `256`. Changing this property forces recreation of the resource.
8752
8755
  """
8753
8756
  resource_type: pulumi.Input[builtins.str]
8754
8757
  """
8755
- The type of resource. The possible value is `Topic`. Changing this property forces recreation of the resource.
8758
+ An enumeration. The possible value is `Topic`. Changing this property forces recreation of the resource.
8756
8759
  """
8757
8760
  host: NotRequired[pulumi.Input[builtins.str]]
8758
8761
  """
@@ -8760,15 +8763,15 @@ if not MYPY:
8760
8763
  """
8761
8764
  id: NotRequired[pulumi.Input[builtins.str]]
8762
8765
  """
8763
- The ACL ID.
8766
+ Acl ID.
8764
8767
  """
8765
8768
  pattern_type: NotRequired[pulumi.Input[builtins.str]]
8766
8769
  """
8767
- Pattern used to match specified resources. The possible value is `LITERAL`.
8770
+ An enumeration. The possible value is `LITERAL`.
8768
8771
  """
8769
8772
  principal: NotRequired[pulumi.Input[builtins.str]]
8770
8773
  """
8771
- Identities in `user:name` format that the permissions apply to.
8774
+ Acl principal.
8772
8775
  """
8773
8776
  elif False:
8774
8777
  GovernanceAccessAccessDataAclArgsDict: TypeAlias = Mapping[str, Any]
@@ -8785,14 +8788,14 @@ class GovernanceAccessAccessDataAclArgs:
8785
8788
  pattern_type: Optional[pulumi.Input[builtins.str]] = None,
8786
8789
  principal: Optional[pulumi.Input[builtins.str]] = None):
8787
8790
  """
8788
- :param pulumi.Input[builtins.str] operation: The action that will be allowed for the service user. The possible values are `Read` and `Write`. Changing this property forces recreation of the resource.
8789
- :param pulumi.Input[builtins.str] permission_type: Explicitly allows or denies the action for the service user on the specified resource. The possible value is `ALLOW`. Changing this property forces recreation of the resource.
8790
- :param pulumi.Input[builtins.str] resource_name: The name of the resource the permission applies to, such as the topic name or group ID in the Kafka service. Maximum length: `256`. Changing this property forces recreation of the resource.
8791
- :param pulumi.Input[builtins.str] resource_type: The type of resource. The possible value is `Topic`. Changing this property forces recreation of the resource.
8791
+ :param pulumi.Input[builtins.str] operation: An enumeration. The possible values are `Read` and `Write`. Changing this property forces recreation of the resource.
8792
+ :param pulumi.Input[builtins.str] permission_type: An enumeration. The possible value is `ALLOW`. Changing this property forces recreation of the resource.
8793
+ :param pulumi.Input[builtins.str] resource_name: Acl resource name. Maximum length: `256`. Changing this property forces recreation of the resource.
8794
+ :param pulumi.Input[builtins.str] resource_type: An enumeration. The possible value is `Topic`. Changing this property forces recreation of the resource.
8792
8795
  :param pulumi.Input[builtins.str] host: The IP address from which a principal is allowed or denied access to the resource. Use `*` for all hosts. Maximum length: `256`. Changing this property forces recreation of the resource.
8793
- :param pulumi.Input[builtins.str] id: The ACL ID.
8794
- :param pulumi.Input[builtins.str] pattern_type: Pattern used to match specified resources. The possible value is `LITERAL`.
8795
- :param pulumi.Input[builtins.str] principal: Identities in `user:name` format that the permissions apply to.
8796
+ :param pulumi.Input[builtins.str] id: Acl ID.
8797
+ :param pulumi.Input[builtins.str] pattern_type: An enumeration. The possible value is `LITERAL`.
8798
+ :param pulumi.Input[builtins.str] principal: Acl principal.
8796
8799
  """
8797
8800
  pulumi.set(__self__, "operation", operation)
8798
8801
  pulumi.set(__self__, "permission_type", permission_type)
@@ -8811,7 +8814,7 @@ class GovernanceAccessAccessDataAclArgs:
8811
8814
  @pulumi.getter
8812
8815
  def operation(self) -> pulumi.Input[builtins.str]:
8813
8816
  """
8814
- The action that will be allowed for the service user. The possible values are `Read` and `Write`. Changing this property forces recreation of the resource.
8817
+ An enumeration. The possible values are `Read` and `Write`. Changing this property forces recreation of the resource.
8815
8818
  """
8816
8819
  return pulumi.get(self, "operation")
8817
8820
 
@@ -8823,7 +8826,7 @@ class GovernanceAccessAccessDataAclArgs:
8823
8826
  @pulumi.getter(name="permissionType")
8824
8827
  def permission_type(self) -> pulumi.Input[builtins.str]:
8825
8828
  """
8826
- Explicitly allows or denies the action for the service user on the specified resource. The possible value is `ALLOW`. Changing this property forces recreation of the resource.
8829
+ An enumeration. The possible value is `ALLOW`. Changing this property forces recreation of the resource.
8827
8830
  """
8828
8831
  return pulumi.get(self, "permission_type")
8829
8832
 
@@ -8835,7 +8838,7 @@ class GovernanceAccessAccessDataAclArgs:
8835
8838
  @pulumi.getter(name="resourceName")
8836
8839
  def resource_name(self) -> pulumi.Input[builtins.str]:
8837
8840
  """
8838
- The name of the resource the permission applies to, such as the topic name or group ID in the Kafka service. Maximum length: `256`. Changing this property forces recreation of the resource.
8841
+ Acl resource name. Maximum length: `256`. Changing this property forces recreation of the resource.
8839
8842
  """
8840
8843
  return pulumi.get(self, "resource_name")
8841
8844
 
@@ -8847,7 +8850,7 @@ class GovernanceAccessAccessDataAclArgs:
8847
8850
  @pulumi.getter(name="resourceType")
8848
8851
  def resource_type(self) -> pulumi.Input[builtins.str]:
8849
8852
  """
8850
- The type of resource. The possible value is `Topic`. Changing this property forces recreation of the resource.
8853
+ An enumeration. The possible value is `Topic`. Changing this property forces recreation of the resource.
8851
8854
  """
8852
8855
  return pulumi.get(self, "resource_type")
8853
8856
 
@@ -8871,7 +8874,7 @@ class GovernanceAccessAccessDataAclArgs:
8871
8874
  @pulumi.getter
8872
8875
  def id(self) -> Optional[pulumi.Input[builtins.str]]:
8873
8876
  """
8874
- The ACL ID.
8877
+ Acl ID.
8875
8878
  """
8876
8879
  return pulumi.get(self, "id")
8877
8880
 
@@ -8883,7 +8886,7 @@ class GovernanceAccessAccessDataAclArgs:
8883
8886
  @pulumi.getter(name="patternType")
8884
8887
  def pattern_type(self) -> Optional[pulumi.Input[builtins.str]]:
8885
8888
  """
8886
- Pattern used to match specified resources. The possible value is `LITERAL`.
8889
+ An enumeration. The possible value is `LITERAL`.
8887
8890
  """
8888
8891
  return pulumi.get(self, "pattern_type")
8889
8892
 
@@ -8895,7 +8898,7 @@ class GovernanceAccessAccessDataAclArgs:
8895
8898
  @pulumi.getter
8896
8899
  def principal(self) -> Optional[pulumi.Input[builtins.str]]:
8897
8900
  """
8898
- Identities in `user:name` format that the permissions apply to.
8901
+ Acl principal.
8899
8902
  """
8900
8903
  return pulumi.get(self, "principal")
8901
8904
 
@@ -8904,6 +8907,98 @@ class GovernanceAccessAccessDataAclArgs:
8904
8907
  pulumi.set(self, "principal", value)
8905
8908
 
8906
8909
 
8910
+ if not MYPY:
8911
+ class GovernanceAccessTimeoutsArgsDict(TypedDict):
8912
+ create: NotRequired[pulumi.Input[builtins.str]]
8913
+ """
8914
+ A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
8915
+ """
8916
+ delete: NotRequired[pulumi.Input[builtins.str]]
8917
+ """
8918
+ A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
8919
+ """
8920
+ read: NotRequired[pulumi.Input[builtins.str]]
8921
+ """
8922
+ A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
8923
+ """
8924
+ update: NotRequired[pulumi.Input[builtins.str]]
8925
+ """
8926
+ A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
8927
+ """
8928
+ elif False:
8929
+ GovernanceAccessTimeoutsArgsDict: TypeAlias = Mapping[str, Any]
8930
+
8931
+ @pulumi.input_type
8932
+ class GovernanceAccessTimeoutsArgs:
8933
+ def __init__(__self__, *,
8934
+ create: Optional[pulumi.Input[builtins.str]] = None,
8935
+ delete: Optional[pulumi.Input[builtins.str]] = None,
8936
+ read: Optional[pulumi.Input[builtins.str]] = None,
8937
+ update: Optional[pulumi.Input[builtins.str]] = None):
8938
+ """
8939
+ :param pulumi.Input[builtins.str] create: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
8940
+ :param pulumi.Input[builtins.str] delete: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
8941
+ :param pulumi.Input[builtins.str] read: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
8942
+ :param pulumi.Input[builtins.str] update: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
8943
+ """
8944
+ if create is not None:
8945
+ pulumi.set(__self__, "create", create)
8946
+ if delete is not None:
8947
+ pulumi.set(__self__, "delete", delete)
8948
+ if read is not None:
8949
+ pulumi.set(__self__, "read", read)
8950
+ if update is not None:
8951
+ pulumi.set(__self__, "update", update)
8952
+
8953
+ @property
8954
+ @pulumi.getter
8955
+ def create(self) -> Optional[pulumi.Input[builtins.str]]:
8956
+ """
8957
+ A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
8958
+ """
8959
+ return pulumi.get(self, "create")
8960
+
8961
+ @create.setter
8962
+ def create(self, value: Optional[pulumi.Input[builtins.str]]):
8963
+ pulumi.set(self, "create", value)
8964
+
8965
+ @property
8966
+ @pulumi.getter
8967
+ def delete(self) -> Optional[pulumi.Input[builtins.str]]:
8968
+ """
8969
+ A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
8970
+ """
8971
+ return pulumi.get(self, "delete")
8972
+
8973
+ @delete.setter
8974
+ def delete(self, value: Optional[pulumi.Input[builtins.str]]):
8975
+ pulumi.set(self, "delete", value)
8976
+
8977
+ @property
8978
+ @pulumi.getter
8979
+ def read(self) -> Optional[pulumi.Input[builtins.str]]:
8980
+ """
8981
+ A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
8982
+ """
8983
+ return pulumi.get(self, "read")
8984
+
8985
+ @read.setter
8986
+ def read(self, value: Optional[pulumi.Input[builtins.str]]):
8987
+ pulumi.set(self, "read", value)
8988
+
8989
+ @property
8990
+ @pulumi.getter
8991
+ def update(self) -> Optional[pulumi.Input[builtins.str]]:
8992
+ """
8993
+ A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
8994
+ """
8995
+ return pulumi.get(self, "update")
8996
+
8997
+ @update.setter
8998
+ def update(self, value: Optional[pulumi.Input[builtins.str]]):
8999
+ pulumi.set(self, "update", value)
9000
+
9001
+
8907
9002
  if not MYPY:
8908
9003
  class GrafanaComponentArgsDict(TypedDict):
8909
9004
  component: NotRequired[pulumi.Input[builtins.str]]
@@ -25532,6 +25627,10 @@ if not MYPY:
25532
25627
  """
25533
25628
  Enable/Disable security audit.
25534
25629
  """
25630
+ enable_snapshot_api: NotRequired[pulumi.Input[builtins.bool]]
25631
+ """
25632
+ Enable/Disable snapshot API for custom repositories, this requires security management to be enabled.
25633
+ """
25535
25634
  http_max_content_length: NotRequired[pulumi.Input[builtins.int]]
25536
25635
  """
25537
25636
  Maximum content length for HTTP requests to the OpenSearch HTTP API, in bytes.
@@ -25705,6 +25804,7 @@ class OpenSearchOpensearchUserConfigOpensearchArgs:
25705
25804
  enable_remote_backed_storage: Optional[pulumi.Input[builtins.bool]] = None,
25706
25805
  enable_searchable_snapshots: Optional[pulumi.Input[builtins.bool]] = None,
25707
25806
  enable_security_audit: Optional[pulumi.Input[builtins.bool]] = None,
25807
+ enable_snapshot_api: Optional[pulumi.Input[builtins.bool]] = None,
25708
25808
  http_max_content_length: Optional[pulumi.Input[builtins.int]] = None,
25709
25809
  http_max_header_size: Optional[pulumi.Input[builtins.int]] = None,
25710
25810
  http_max_initial_line_length: Optional[pulumi.Input[builtins.int]] = None,
@@ -25758,6 +25858,7 @@ class OpenSearchOpensearchUserConfigOpensearchArgs:
25758
25858
  :param pulumi.Input[builtins.bool] enable_remote_backed_storage: Enable remote-backed storage.
25759
25859
  :param pulumi.Input[builtins.bool] enable_searchable_snapshots: Enable searchable snapshots.
25760
25860
  :param pulumi.Input[builtins.bool] enable_security_audit: Enable/Disable security audit.
25861
+ :param pulumi.Input[builtins.bool] enable_snapshot_api: Enable/Disable snapshot API for custom repositories, this requires security management to be enabled.
25761
25862
  :param pulumi.Input[builtins.int] http_max_content_length: Maximum content length for HTTP requests to the OpenSearch HTTP API, in bytes.
25762
25863
  :param pulumi.Input[builtins.int] http_max_header_size: The max size of allowed headers, in bytes. Example: `8192`.
25763
25864
  :param pulumi.Input[builtins.int] http_max_initial_line_length: The max length of an HTTP URL, in bytes. Example: `4096`.
@@ -25825,6 +25926,8 @@ class OpenSearchOpensearchUserConfigOpensearchArgs:
25825
25926
  pulumi.set(__self__, "enable_searchable_snapshots", enable_searchable_snapshots)
25826
25927
  if enable_security_audit is not None:
25827
25928
  pulumi.set(__self__, "enable_security_audit", enable_security_audit)
25929
+ if enable_snapshot_api is not None:
25930
+ pulumi.set(__self__, "enable_snapshot_api", enable_snapshot_api)
25828
25931
  if http_max_content_length is not None:
25829
25932
  pulumi.set(__self__, "http_max_content_length", http_max_content_length)
25830
25933
  if http_max_header_size is not None:
@@ -26069,6 +26172,18 @@ class OpenSearchOpensearchUserConfigOpensearchArgs:
26069
26172
  def enable_security_audit(self, value: Optional[pulumi.Input[builtins.bool]]):
26070
26173
  pulumi.set(self, "enable_security_audit", value)
26071
26174
 
26175
+ @property
26176
+ @pulumi.getter(name="enableSnapshotApi")
26177
+ def enable_snapshot_api(self) -> Optional[pulumi.Input[builtins.bool]]:
26178
+ """
26179
+ Enable/Disable snapshot API for custom repositories, this requires security management to be enabled.
26180
+ """
26181
+ return pulumi.get(self, "enable_snapshot_api")
26182
+
26183
+ @enable_snapshot_api.setter
26184
+ def enable_snapshot_api(self, value: Optional[pulumi.Input[builtins.bool]]):
26185
+ pulumi.set(self, "enable_snapshot_api", value)
26186
+
26072
26187
  @property
26073
26188
  @pulumi.getter(name="httpMaxContentLength")
26074
26189
  def http_max_content_length(self) -> Optional[pulumi.Input[builtins.int]]:
@@ -30592,7 +30707,7 @@ if not MYPY:
30592
30707
  """
30593
30708
  pg_stat_monitor_enable: NotRequired[pulumi.Input[builtins.bool]]
30594
30709
  """
30595
- Enable the pg*stat*monitor extension. Enabling this extension will cause the cluster to be restarted.When this extension is enabled, pg*stat*statements results for utility commands are unreliable. Default: `false`.
30710
+ Enable the pg*stat*monitor extension. Changing this parameter causes a service restart. When this extension is enabled, pg*stat*statements results for utility commands are unreliable. Default: `false`.
30596
30711
  """
30597
30712
  pg_version: NotRequired[pulumi.Input[builtins.str]]
30598
30713
  """
@@ -30640,7 +30755,7 @@ if not MYPY:
30640
30755
  """
30641
30756
  shared_buffers_percentage: NotRequired[pulumi.Input[builtins.float]]
30642
30757
  """
30643
- 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. Example: `41.5`.
30758
+ 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. Changing this parameter causes a service restart. Example: `41.5`.
30644
30759
  """
30645
30760
  static_ips: NotRequired[pulumi.Input[builtins.bool]]
30646
30761
  """
@@ -30660,7 +30775,7 @@ if not MYPY:
30660
30775
  """
30661
30776
  work_mem: NotRequired[pulumi.Input[builtins.int]]
30662
30777
  """
30663
- Sets the maximum amount of memory to be used by a query operation (such as a sort or hash table) before writing to temporary disk files, in MB. Default is 1MB + 0.075% of total RAM (up to 32MB). Example: `4`.
30778
+ Sets the maximum amount of memory to be used by a query operation (such as a sort or hash table) before writing to temporary disk files, in MB. The default is 1MB + 0.075% of total RAM (up to 32MB). Example: `4`.
30664
30779
  """
30665
30780
  elif False:
30666
30781
  PgPgUserConfigArgsDict: TypeAlias = Mapping[str, Any]
@@ -30715,7 +30830,7 @@ class PgPgUserConfigArgs:
30715
30830
  :param pulumi.Input['PgPgUserConfigPgQualstatsArgs'] pg_qualstats: System-wide settings for the pg*qualstats extension
30716
30831
  :param pulumi.Input[builtins.bool] pg_read_replica: Should the service which is being forked be a read replica (deprecated, use read_replica service integration instead).
30717
30832
  :param pulumi.Input[builtins.str] pg_service_to_fork_from: Name of the PG Service from which to fork (deprecated, use service*to*fork_from). This has effect only when a new service is being created. Example: `anotherservicename`.
30718
- :param pulumi.Input[builtins.bool] pg_stat_monitor_enable: Enable the pg*stat*monitor extension. Enabling this extension will cause the cluster to be restarted.When this extension is enabled, pg*stat*statements results for utility commands are unreliable. Default: `false`.
30833
+ :param pulumi.Input[builtins.bool] pg_stat_monitor_enable: Enable the pg*stat*monitor extension. Changing this parameter causes a service restart. When this extension is enabled, pg*stat*statements results for utility commands are unreliable. Default: `false`.
30719
30834
  :param pulumi.Input[builtins.str] pg_version: Enum: `10`, `11`, `12`, `13`, `14`, `15`, `16`, `17`, and newer. PostgreSQL major version.
30720
30835
  :param pulumi.Input['PgPgUserConfigPgauditArgs'] pgaudit: System-wide settings for the pgaudit extension
30721
30836
  :param pulumi.Input['PgPgUserConfigPgbouncerArgs'] pgbouncer: PGBouncer connection pooling settings
@@ -30727,12 +30842,12 @@ class PgPgUserConfigArgs:
30727
30842
  :param pulumi.Input[builtins.str] recovery_target_time: Recovery target time when forking a service. This has effect only when a new service is being created. Example: `2019-01-01 23:34:45`.
30728
30843
  :param pulumi.Input[builtins.bool] service_log: Store logs for the service so that they are available in the HTTP API and console.
30729
30844
  :param pulumi.Input[builtins.str] service_to_fork_from: Name of another service to fork from. This has effect only when a new service is being created. Example: `anotherservicename`.
30730
- :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. Example: `41.5`.
30845
+ :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. Changing this parameter causes a service restart. Example: `41.5`.
30731
30846
  :param pulumi.Input[builtins.bool] static_ips: Use static public IP addresses.
30732
30847
  :param pulumi.Input[builtins.str] synchronous_replication: Enum: `off`, `quorum`. Synchronous replication type. Note that the service plan also needs to support synchronous replication.
30733
30848
  :param pulumi.Input['PgPgUserConfigTimescaledbArgs'] timescaledb: System-wide settings for the timescaledb extension
30734
30849
  :param pulumi.Input[builtins.str] variant: Enum: `aiven`, `timescale`. Variant of the PostgreSQL service, may affect the features that are exposed by default.
30735
- :param pulumi.Input[builtins.int] work_mem: Sets the maximum amount of memory to be used by a query operation (such as a sort or hash table) before writing to temporary disk files, in MB. Default is 1MB + 0.075% of total RAM (up to 32MB). Example: `4`.
30850
+ :param pulumi.Input[builtins.int] work_mem: Sets the maximum amount of memory to be used by a query operation (such as a sort or hash table) before writing to temporary disk files, in MB. The default is 1MB + 0.075% of total RAM (up to 32MB). Example: `4`.
30736
30851
  """
30737
30852
  if additional_backup_regions is not None:
30738
30853
  pulumi.set(__self__, "additional_backup_regions", additional_backup_regions)
@@ -30979,7 +31094,7 @@ class PgPgUserConfigArgs:
30979
31094
  @pulumi.getter(name="pgStatMonitorEnable")
30980
31095
  def pg_stat_monitor_enable(self) -> Optional[pulumi.Input[builtins.bool]]:
30981
31096
  """
30982
- Enable the pg*stat*monitor extension. Enabling this extension will cause the cluster to be restarted.When this extension is enabled, pg*stat*statements results for utility commands are unreliable. Default: `false`.
31097
+ Enable the pg*stat*monitor extension. Changing this parameter causes a service restart. When this extension is enabled, pg*stat*statements results for utility commands are unreliable. Default: `false`.
30983
31098
  """
30984
31099
  return pulumi.get(self, "pg_stat_monitor_enable")
30985
31100
 
@@ -31123,7 +31238,7 @@ class PgPgUserConfigArgs:
31123
31238
  @pulumi.getter(name="sharedBuffersPercentage")
31124
31239
  def shared_buffers_percentage(self) -> Optional[pulumi.Input[builtins.float]]:
31125
31240
  """
31126
- 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. Example: `41.5`.
31241
+ 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. Changing this parameter causes a service restart. Example: `41.5`.
31127
31242
  """
31128
31243
  return pulumi.get(self, "shared_buffers_percentage")
31129
31244
 
@@ -31183,7 +31298,7 @@ class PgPgUserConfigArgs:
31183
31298
  @pulumi.getter(name="workMem")
31184
31299
  def work_mem(self) -> Optional[pulumi.Input[builtins.int]]:
31185
31300
  """
31186
- Sets the maximum amount of memory to be used by a query operation (such as a sort or hash table) before writing to temporary disk files, in MB. Default is 1MB + 0.075% of total RAM (up to 32MB). Example: `4`.
31301
+ Sets the maximum amount of memory to be used by a query operation (such as a sort or hash table) before writing to temporary disk files, in MB. The default is 1MB + 0.075% of total RAM (up to 32MB). Example: `4`.
31187
31302
  """
31188
31303
  return pulumi.get(self, "work_mem")
31189
31304
 
@@ -31437,63 +31552,63 @@ if not MYPY:
31437
31552
  class PgPgUserConfigPgArgsDict(TypedDict):
31438
31553
  autovacuum_analyze_scale_factor: NotRequired[pulumi.Input[builtins.float]]
31439
31554
  """
31440
- Specifies a fraction 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).
31555
+ Specifies a fraction of the table size to add to autovacuum*analyze*threshold when deciding whether to trigger an ANALYZE (e.g. `0.2` for 20% of the table size). The default is `0.2`.
31441
31556
  """
31442
31557
  autovacuum_analyze_threshold: NotRequired[pulumi.Input[builtins.int]]
31443
31558
  """
31444
- Specifies the minimum number of inserted, updated or deleted tuples needed to trigger an ANALYZE in any one table. The default is 50 tuples.
31559
+ Specifies the minimum number of inserted, updated or deleted tuples needed to trigger an ANALYZE in any one table. The default is `50`.
31445
31560
  """
31446
31561
  autovacuum_freeze_max_age: NotRequired[pulumi.Input[builtins.int]]
31447
31562
  """
31448
- 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. Example: `200000000`.
31563
+ 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. The system launches autovacuum processes to prevent wraparound even when autovacuum is otherwise disabled. Changing this parameter causes a service restart. Example: `200000000`.
31449
31564
  """
31450
31565
  autovacuum_max_workers: NotRequired[pulumi.Input[builtins.int]]
31451
31566
  """
31452
- 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.
31567
+ Specifies the maximum number of autovacuum processes (other than the autovacuum launcher) that may be running at any one time. The default is `3`. Changing this parameter causes a service restart.
31453
31568
  """
31454
31569
  autovacuum_naptime: NotRequired[pulumi.Input[builtins.int]]
31455
31570
  """
31456
- Specifies the minimum delay between autovacuum runs on any given database. The delay is measured in seconds, and the default is one minute.
31571
+ Specifies the minimum delay between autovacuum runs on any given database. The delay is measured in seconds. The default is `60`.
31457
31572
  """
31458
31573
  autovacuum_vacuum_cost_delay: NotRequired[pulumi.Input[builtins.int]]
31459
31574
  """
31460
- Specifies the cost delay value that will be used in automatic VACUUM operations. If -1 is specified, the regular vacuum*cost*delay value will be used. The default value is 20 milliseconds.
31575
+ Specifies the cost delay value that will be used in automatic VACUUM operations. If `-1` is specified, the regular vacuum*cost*delay value will be used. The default is `2` (upstream default).
31461
31576
  """
31462
31577
  autovacuum_vacuum_cost_limit: NotRequired[pulumi.Input[builtins.int]]
31463
31578
  """
31464
- 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.
31579
+ Specifies the cost limit value that will be used in automatic VACUUM operations. If `-1` is specified, the regular vacuum*cost*limit value will be used. The default is `-1` (upstream default).
31465
31580
  """
31466
31581
  autovacuum_vacuum_scale_factor: NotRequired[pulumi.Input[builtins.float]]
31467
31582
  """
31468
- Specifies a fraction 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).
31583
+ Specifies a fraction of the table size to add to autovacuum*vacuum*threshold when deciding whether to trigger a VACUUM (e.g. `0.2` for 20% of the table size). The default is `0.2`.
31469
31584
  """
31470
31585
  autovacuum_vacuum_threshold: NotRequired[pulumi.Input[builtins.int]]
31471
31586
  """
31472
- Specifies the minimum number of updated or deleted tuples needed to trigger a VACUUM in any one table. The default is 50 tuples.
31587
+ Specifies the minimum number of updated or deleted tuples needed to trigger a VACUUM in any one table. The default is `50`.
31473
31588
  """
31474
31589
  bgwriter_delay: NotRequired[pulumi.Input[builtins.int]]
31475
31590
  """
31476
- Specifies the delay between activity rounds for the background writer in milliseconds. Default is 200. Example: `200`.
31591
+ Specifies the delay between activity rounds for the background writer in milliseconds. The default is `200`. Example: `200`.
31477
31592
  """
31478
31593
  bgwriter_flush_after: NotRequired[pulumi.Input[builtins.int]]
31479
31594
  """
31480
- Whenever more than bgwriter*flush*after bytes have been written by the background writer, attempt to force the OS to issue these writes to the underlying storage. Specified in kilobytes, default is 512. Setting of 0 disables forced writeback. Example: `512`.
31595
+ Whenever more than bgwriter*flush*after bytes have been written by the background writer, attempt to force the OS to issue these writes to the underlying storage. Specified in kilobytes. Setting of 0 disables forced writeback. The default is `512`. Example: `512`.
31481
31596
  """
31482
31597
  bgwriter_lru_maxpages: NotRequired[pulumi.Input[builtins.int]]
31483
31598
  """
31484
- In each round, no more than this many buffers will be written by the background writer. Setting this to zero disables background writing. Default is 100. Example: `100`.
31599
+ In each round, no more than this many buffers will be written by the background writer. Setting this to zero disables background writing. The default is `100`. Example: `100`.
31485
31600
  """
31486
31601
  bgwriter_lru_multiplier: NotRequired[pulumi.Input[builtins.float]]
31487
31602
  """
31488
- 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. Example: `2.0`.
31603
+ 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`. Example: `2.0`.
31489
31604
  """
31490
31605
  deadlock_timeout: NotRequired[pulumi.Input[builtins.int]]
31491
31606
  """
31492
- This is the amount of time, in milliseconds, to wait on a lock before checking to see if there is a deadlock condition. Example: `1000`.
31607
+ This is the amount of time, in milliseconds, to wait on a lock before checking to see if there is a deadlock condition. The default is `1000` (upstream default). Example: `1000`.
31493
31608
  """
31494
31609
  default_toast_compression: NotRequired[pulumi.Input[builtins.str]]
31495
31610
  """
31496
- Enum: `lz4`, `pglz`. Specifies the default TOAST compression method for values of compressible columns (the default is lz4).
31611
+ Enum: `lz4`, `pglz`. Specifies the default TOAST compression method for values of compressible columns. The default is `lz4`. Only available for PostgreSQL 14+.
31497
31612
  """
31498
31613
  idle_in_transaction_session_timeout: NotRequired[pulumi.Input[builtins.int]]
31499
31614
  """
@@ -31505,7 +31620,7 @@ if not MYPY:
31505
31620
  """
31506
31621
  log_autovacuum_min_duration: NotRequired[pulumi.Input[builtins.int]]
31507
31622
  """
31508
- 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.
31623
+ 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 disables logging autovacuum actions. The default is `1000`.
31509
31624
  """
31510
31625
  log_error_verbosity: NotRequired[pulumi.Input[builtins.str]]
31511
31626
  """
@@ -31525,59 +31640,59 @@ if not MYPY:
31525
31640
  """
31526
31641
  max_files_per_process: NotRequired[pulumi.Input[builtins.int]]
31527
31642
  """
31528
- PostgreSQL maximum number of files that can be open per process.
31643
+ PostgreSQL maximum number of files that can be open per process. The default is `1000` (upstream default). Changing this parameter causes a service restart.
31529
31644
  """
31530
31645
  max_locks_per_transaction: NotRequired[pulumi.Input[builtins.int]]
31531
31646
  """
31532
- PostgreSQL maximum locks per transaction.
31647
+ PostgreSQL maximum locks per transaction. Changing this parameter causes a service restart.
31533
31648
  """
31534
31649
  max_logical_replication_workers: NotRequired[pulumi.Input[builtins.int]]
31535
31650
  """
31536
- PostgreSQL maximum logical replication workers (taken from the pool of max*parallel*workers).
31651
+ PostgreSQL maximum logical replication workers (taken from the pool of max*parallel*workers). The default is `4` (upstream default). Changing this parameter causes a service restart.
31537
31652
  """
31538
31653
  max_parallel_workers: NotRequired[pulumi.Input[builtins.int]]
31539
31654
  """
31540
- Sets the maximum number of workers that the system can support for parallel queries.
31655
+ Sets the maximum number of workers that the system can support for parallel queries. The default is `8` (upstream default).
31541
31656
  """
31542
31657
  max_parallel_workers_per_gather: NotRequired[pulumi.Input[builtins.int]]
31543
31658
  """
31544
- Sets the maximum number of workers that can be started by a single Gather or Gather Merge node.
31659
+ Sets the maximum number of workers that can be started by a single Gather or Gather Merge node. The default is `2` (upstream default).
31545
31660
  """
31546
31661
  max_pred_locks_per_transaction: NotRequired[pulumi.Input[builtins.int]]
31547
31662
  """
31548
- PostgreSQL maximum predicate locks per transaction.
31663
+ PostgreSQL maximum predicate locks per transaction. The default is `64` (upstream default). Changing this parameter causes a service restart.
31549
31664
  """
31550
31665
  max_prepared_transactions: NotRequired[pulumi.Input[builtins.int]]
31551
31666
  """
31552
- PostgreSQL maximum prepared transactions.
31667
+ PostgreSQL maximum prepared transactions. The default is `0`. Changing this parameter causes a service restart.
31553
31668
  """
31554
31669
  max_replication_slots: NotRequired[pulumi.Input[builtins.int]]
31555
31670
  """
31556
- PostgreSQL maximum replication slots.
31671
+ PostgreSQL maximum replication slots. The default is `20`. Changing this parameter causes a service restart.
31557
31672
  """
31558
31673
  max_slot_wal_keep_size: NotRequired[pulumi.Input[builtins.int]]
31559
31674
  """
31560
- PostgreSQL maximum WAL size (MB) reserved for replication slots. Default is -1 (unlimited). wal*keep*size minimum WAL size setting takes precedence over this.
31675
+ PostgreSQL maximum WAL size (MB) reserved for replication slots. If `-1` is specified, replication slots may retain an unlimited amount of WAL files. The default is `-1` (upstream default). wal*keep*size minimum WAL size setting takes precedence over this.
31561
31676
  """
31562
31677
  max_stack_depth: NotRequired[pulumi.Input[builtins.int]]
31563
31678
  """
31564
- Maximum depth of the stack in bytes.
31679
+ Maximum depth of the stack in bytes. The default is `2097152` (upstream default).
31565
31680
  """
31566
31681
  max_standby_archive_delay: NotRequired[pulumi.Input[builtins.int]]
31567
31682
  """
31568
- Max standby archive delay in milliseconds.
31683
+ Max standby archive delay in milliseconds. The default is `30000` (upstream default).
31569
31684
  """
31570
31685
  max_standby_streaming_delay: NotRequired[pulumi.Input[builtins.int]]
31571
31686
  """
31572
- Max standby streaming delay in milliseconds.
31687
+ Max standby streaming delay in milliseconds. The default is `30000` (upstream default).
31573
31688
  """
31574
31689
  max_wal_senders: NotRequired[pulumi.Input[builtins.int]]
31575
31690
  """
31576
- PostgreSQL maximum WAL senders.
31691
+ PostgreSQL maximum WAL senders. The default is `20`. Changing this parameter causes a service restart.
31577
31692
  """
31578
31693
  max_worker_processes: NotRequired[pulumi.Input[builtins.int]]
31579
31694
  """
31580
- Sets the maximum number of background processes that the system can support.
31695
+ Sets the maximum number of background processes that the system can support. The default is `8`. Changing this parameter causes a service restart.
31581
31696
  """
31582
31697
  password_encryption: NotRequired[pulumi.Input[builtins.str]]
31583
31698
  """
@@ -31585,7 +31700,7 @@ if not MYPY:
31585
31700
  """
31586
31701
  pg_partman_bgw_dot_interval: NotRequired[pulumi.Input[builtins.int]]
31587
31702
  """
31588
- Sets the time interval to run pg_partman's scheduled tasks. Example: `3600`.
31703
+ Sets the time interval in seconds to run pg_partman's scheduled tasks. The default is `3600`. Example: `3600`.
31589
31704
  """
31590
31705
  pg_partman_bgw_dot_role: NotRequired[pulumi.Input[builtins.str]]
31591
31706
  """
@@ -31593,15 +31708,15 @@ if not MYPY:
31593
31708
  """
31594
31709
  pg_stat_monitor_dot_pgsm_enable_query_plan: NotRequired[pulumi.Input[builtins.bool]]
31595
31710
  """
31596
- Enables or disables query plan monitoring.
31711
+ Enables or disables query plan monitoring. Changing this parameter causes a service restart. Only available for PostgreSQL 13+.
31597
31712
  """
31598
31713
  pg_stat_monitor_dot_pgsm_max_buckets: NotRequired[pulumi.Input[builtins.int]]
31599
31714
  """
31600
- Sets the maximum number of buckets. Example: `10`.
31715
+ Sets the maximum number of buckets. Changing this parameter causes a service restart. Only available for PostgreSQL 13+. Example: `10`.
31601
31716
  """
31602
31717
  pg_stat_statements_dot_track: NotRequired[pulumi.Input[builtins.str]]
31603
31718
  """
31604
- Enum: `all`, `none`, `top`. 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.
31719
+ Enum: `all`, `none`, `top`. 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 is `top`.
31605
31720
  """
31606
31721
  temp_file_limit: NotRequired[pulumi.Input[builtins.int]]
31607
31722
  """
@@ -31613,11 +31728,11 @@ if not MYPY:
31613
31728
  """
31614
31729
  track_activity_query_size: NotRequired[pulumi.Input[builtins.int]]
31615
31730
  """
31616
- Specifies the number of bytes reserved to track the currently executing command for each active session. Example: `1024`.
31731
+ Specifies the number of bytes reserved to track the currently executing command for each active session. Changing this parameter causes a service restart. Example: `1024`.
31617
31732
  """
31618
31733
  track_commit_timestamp: NotRequired[pulumi.Input[builtins.str]]
31619
31734
  """
31620
- Enum: `off`, `on`. Record commit time of transactions.
31735
+ Enum: `off`, `on`. Record commit time of transactions. Changing this parameter causes a service restart.
31621
31736
  """
31622
31737
  track_functions: NotRequired[pulumi.Input[builtins.str]]
31623
31738
  """
@@ -31625,7 +31740,7 @@ if not MYPY:
31625
31740
  """
31626
31741
  track_io_timing: NotRequired[pulumi.Input[builtins.str]]
31627
31742
  """
31628
- Enum: `off`, `on`. 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.
31743
+ Enum: `off`, `on`. Enables timing of database I/O calls. The default is `off`. When on, it will repeatedly query the operating system for the current time, which may cause significant overhead on some platforms.
31629
31744
  """
31630
31745
  wal_sender_timeout: NotRequired[pulumi.Input[builtins.int]]
31631
31746
  """
@@ -31633,7 +31748,7 @@ if not MYPY:
31633
31748
  """
31634
31749
  wal_writer_delay: NotRequired[pulumi.Input[builtins.int]]
31635
31750
  """
31636
- WAL flush interval in milliseconds. Note that setting this value to lower than the default 200ms may negatively impact performance. Example: `50`.
31751
+ WAL flush interval in milliseconds. The default is `200`. Setting this parameter to a lower value may negatively impact performance. Example: `50`.
31637
31752
  """
31638
31753
  elif False:
31639
31754
  PgPgUserConfigPgArgsDict: TypeAlias = Mapping[str, Any]
@@ -31692,56 +31807,56 @@ class PgPgUserConfigPgArgs:
31692
31807
  wal_sender_timeout: Optional[pulumi.Input[builtins.int]] = None,
31693
31808
  wal_writer_delay: Optional[pulumi.Input[builtins.int]] = None):
31694
31809
  """
31695
- :param pulumi.Input[builtins.float] autovacuum_analyze_scale_factor: Specifies a fraction 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).
31696
- :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.
31697
- :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. Example: `200000000`.
31698
- :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.
31699
- :param pulumi.Input[builtins.int] autovacuum_naptime: Specifies the minimum delay between autovacuum runs on any given database. The delay is measured in seconds, and the default is one minute.
31700
- :param pulumi.Input[builtins.int] autovacuum_vacuum_cost_delay: Specifies the cost delay value that will be used in automatic VACUUM operations. If -1 is specified, the regular vacuum*cost*delay value will be used. The default value is 20 milliseconds.
31701
- :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.
31702
- :param pulumi.Input[builtins.float] autovacuum_vacuum_scale_factor: Specifies a fraction 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).
31703
- :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.
31704
- :param pulumi.Input[builtins.int] bgwriter_delay: Specifies the delay between activity rounds for the background writer in milliseconds. Default is 200. Example: `200`.
31705
- :param pulumi.Input[builtins.int] bgwriter_flush_after: Whenever more than bgwriter*flush*after bytes have been written by the background writer, attempt to force the OS to issue these writes to the underlying storage. Specified in kilobytes, default is 512. Setting of 0 disables forced writeback. Example: `512`.
31706
- :param pulumi.Input[builtins.int] bgwriter_lru_maxpages: In each round, no more than this many buffers will be written by the background writer. Setting this to zero disables background writing. Default is 100. Example: `100`.
31707
- :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. Example: `2.0`.
31708
- :param pulumi.Input[builtins.int] deadlock_timeout: This is the amount of time, in milliseconds, to wait on a lock before checking to see if there is a deadlock condition. Example: `1000`.
31709
- :param pulumi.Input[builtins.str] default_toast_compression: Enum: `lz4`, `pglz`. Specifies the default TOAST compression method for values of compressible columns (the default is lz4).
31810
+ :param pulumi.Input[builtins.float] autovacuum_analyze_scale_factor: Specifies a fraction of the table size to add to autovacuum*analyze*threshold when deciding whether to trigger an ANALYZE (e.g. `0.2` for 20% of the table size). The default is `0.2`.
31811
+ :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`.
31812
+ :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. The system launches autovacuum processes to prevent wraparound even when autovacuum is otherwise disabled. Changing this parameter causes a service restart. Example: `200000000`.
31813
+ :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 `3`. Changing this parameter causes a service restart.
31814
+ :param pulumi.Input[builtins.int] autovacuum_naptime: Specifies the minimum delay between autovacuum runs on any given database. The delay is measured in seconds. The default is `60`.
31815
+ :param pulumi.Input[builtins.int] autovacuum_vacuum_cost_delay: Specifies the cost delay value that will be used in automatic VACUUM operations. If `-1` is specified, the regular vacuum*cost*delay value will be used. The default is `2` (upstream default).
31816
+ :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, the regular vacuum*cost*limit value will be used. The default is `-1` (upstream default).
31817
+ :param pulumi.Input[builtins.float] autovacuum_vacuum_scale_factor: Specifies a fraction of the table size to add to autovacuum*vacuum*threshold when deciding whether to trigger a VACUUM (e.g. `0.2` for 20% of the table size). The default is `0.2`.
31818
+ :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`.
31819
+ :param pulumi.Input[builtins.int] bgwriter_delay: Specifies the delay between activity rounds for the background writer in milliseconds. The default is `200`. Example: `200`.
31820
+ :param pulumi.Input[builtins.int] bgwriter_flush_after: Whenever more than bgwriter*flush*after bytes have been written by the background writer, attempt to force the OS to issue these writes to the underlying storage. Specified in kilobytes. Setting of 0 disables forced writeback. The default is `512`. Example: `512`.
31821
+ :param pulumi.Input[builtins.int] bgwriter_lru_maxpages: In each round, no more than this many buffers will be written by the background writer. Setting this to zero disables background writing. The default is `100`. Example: `100`.
31822
+ :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`. Example: `2.0`.
31823
+ :param pulumi.Input[builtins.int] deadlock_timeout: This is the amount of time, in milliseconds, to wait on a lock before checking to see if there is a deadlock condition. The default is `1000` (upstream default). Example: `1000`.
31824
+ :param pulumi.Input[builtins.str] default_toast_compression: Enum: `lz4`, `pglz`. Specifies the default TOAST compression method for values of compressible columns. The default is `lz4`. Only available for PostgreSQL 14+.
31710
31825
  :param pulumi.Input[builtins.int] idle_in_transaction_session_timeout: Time out sessions with open transactions after this number of milliseconds.
31711
31826
  :param pulumi.Input[builtins.bool] jit: Controls system-wide use of Just-in-Time Compilation (JIT).
31712
- :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.
31827
+ :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 disables logging autovacuum actions. The default is `1000`.
31713
31828
  :param pulumi.Input[builtins.str] log_error_verbosity: Enum: `DEFAULT`, `TERSE`, `VERBOSE`. Controls the amount of detail written in the server log for each message that is logged.
31714
31829
  :param pulumi.Input[builtins.str] log_line_prefix: Enum: `'%m [%p] %q[user=%u,db=%d,app=%a] '`, `'%t [%p]: [%l-1] user=%u,db=%d,app=%a,client=%h '`, `'pid=%p,user=%u,db=%d,app=%a,client=%h '`, `'pid=%p,user=%u,db=%d,app=%a,client=%h,txid=%x,qid=%Q '`. Choose from one of the available log formats.
31715
31830
  :param pulumi.Input[builtins.int] log_min_duration_statement: Log statements that take more than this number of milliseconds to run, -1 disables.
31716
31831
  :param pulumi.Input[builtins.int] log_temp_files: Log statements for each temporary file created larger than this number of kilobytes, -1 disables.
31717
- :param pulumi.Input[builtins.int] max_files_per_process: PostgreSQL maximum number of files that can be open per process.
31718
- :param pulumi.Input[builtins.int] max_locks_per_transaction: PostgreSQL maximum locks per transaction.
31719
- :param pulumi.Input[builtins.int] max_logical_replication_workers: PostgreSQL maximum logical replication workers (taken from the pool of max*parallel*workers).
31720
- :param pulumi.Input[builtins.int] max_parallel_workers: Sets the maximum number of workers that the system can support for parallel queries.
31721
- :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.
31722
- :param pulumi.Input[builtins.int] max_pred_locks_per_transaction: PostgreSQL maximum predicate locks per transaction.
31723
- :param pulumi.Input[builtins.int] max_prepared_transactions: PostgreSQL maximum prepared transactions.
31724
- :param pulumi.Input[builtins.int] max_replication_slots: PostgreSQL maximum replication slots.
31725
- :param pulumi.Input[builtins.int] max_slot_wal_keep_size: PostgreSQL maximum WAL size (MB) reserved for replication slots. Default is -1 (unlimited). wal*keep*size minimum WAL size setting takes precedence over this.
31726
- :param pulumi.Input[builtins.int] max_stack_depth: Maximum depth of the stack in bytes.
31727
- :param pulumi.Input[builtins.int] max_standby_archive_delay: Max standby archive delay in milliseconds.
31728
- :param pulumi.Input[builtins.int] max_standby_streaming_delay: Max standby streaming delay in milliseconds.
31729
- :param pulumi.Input[builtins.int] max_wal_senders: PostgreSQL maximum WAL senders.
31730
- :param pulumi.Input[builtins.int] max_worker_processes: Sets the maximum number of background processes that the system can support.
31832
+ :param pulumi.Input[builtins.int] max_files_per_process: PostgreSQL maximum number of files that can be open per process. The default is `1000` (upstream default). Changing this parameter causes a service restart.
31833
+ :param pulumi.Input[builtins.int] max_locks_per_transaction: PostgreSQL maximum locks per transaction. Changing this parameter causes a service restart.
31834
+ :param pulumi.Input[builtins.int] max_logical_replication_workers: PostgreSQL maximum logical replication workers (taken from the pool of max*parallel*workers). The default is `4` (upstream default). Changing this parameter causes a service restart.
31835
+ :param pulumi.Input[builtins.int] max_parallel_workers: Sets the maximum number of workers that the system can support for parallel queries. The default is `8` (upstream default).
31836
+ :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. The default is `2` (upstream default).
31837
+ :param pulumi.Input[builtins.int] max_pred_locks_per_transaction: PostgreSQL maximum predicate locks per transaction. The default is `64` (upstream default). Changing this parameter causes a service restart.
31838
+ :param pulumi.Input[builtins.int] max_prepared_transactions: PostgreSQL maximum prepared transactions. The default is `0`. Changing this parameter causes a service restart.
31839
+ :param pulumi.Input[builtins.int] max_replication_slots: PostgreSQL maximum replication slots. The default is `20`. Changing this parameter causes a service restart.
31840
+ :param pulumi.Input[builtins.int] max_slot_wal_keep_size: PostgreSQL maximum WAL size (MB) reserved for replication slots. If `-1` is specified, replication slots may retain an unlimited amount of WAL files. The default is `-1` (upstream default). wal*keep*size minimum WAL size setting takes precedence over this.
31841
+ :param pulumi.Input[builtins.int] max_stack_depth: Maximum depth of the stack in bytes. The default is `2097152` (upstream default).
31842
+ :param pulumi.Input[builtins.int] max_standby_archive_delay: Max standby archive delay in milliseconds. The default is `30000` (upstream default).
31843
+ :param pulumi.Input[builtins.int] max_standby_streaming_delay: Max standby streaming delay in milliseconds. The default is `30000` (upstream default).
31844
+ :param pulumi.Input[builtins.int] max_wal_senders: PostgreSQL maximum WAL senders. The default is `20`. Changing this parameter causes a service restart.
31845
+ :param pulumi.Input[builtins.int] max_worker_processes: Sets the maximum number of background processes that the system can support. The default is `8`. Changing this parameter causes a service restart.
31731
31846
  :param pulumi.Input[builtins.str] password_encryption: Enum: `md5`, `scram-sha-256`. Chooses the algorithm for encrypting passwords. Default: `md5`.
31732
- :param pulumi.Input[builtins.int] pg_partman_bgw_dot_interval: Sets the time interval to run pg_partman's scheduled tasks. Example: `3600`.
31847
+ :param pulumi.Input[builtins.int] pg_partman_bgw_dot_interval: Sets the time interval in seconds to run pg_partman's scheduled tasks. The default is `3600`. Example: `3600`.
31733
31848
  :param pulumi.Input[builtins.str] pg_partman_bgw_dot_role: Controls which role to use for pg_partman's scheduled background tasks. Example: `myrolename`.
31734
- :param pulumi.Input[builtins.bool] pg_stat_monitor_dot_pgsm_enable_query_plan: Enables or disables query plan monitoring.
31735
- :param pulumi.Input[builtins.int] pg_stat_monitor_dot_pgsm_max_buckets: Sets the maximum number of buckets. Example: `10`.
31736
- :param pulumi.Input[builtins.str] pg_stat_statements_dot_track: Enum: `all`, `none`, `top`. 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.
31849
+ :param pulumi.Input[builtins.bool] pg_stat_monitor_dot_pgsm_enable_query_plan: Enables or disables query plan monitoring. Changing this parameter causes a service restart. Only available for PostgreSQL 13+.
31850
+ :param pulumi.Input[builtins.int] pg_stat_monitor_dot_pgsm_max_buckets: Sets the maximum number of buckets. Changing this parameter causes a service restart. Only available for PostgreSQL 13+. Example: `10`.
31851
+ :param pulumi.Input[builtins.str] pg_stat_statements_dot_track: Enum: `all`, `none`, `top`. 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 is `top`.
31737
31852
  :param pulumi.Input[builtins.int] temp_file_limit: PostgreSQL temporary file limit in KiB, -1 for unlimited. Example: `5000000`.
31738
31853
  :param pulumi.Input[builtins.str] timezone: PostgreSQL service timezone. Example: `Europe/Helsinki`.
31739
- :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. Example: `1024`.
31740
- :param pulumi.Input[builtins.str] track_commit_timestamp: Enum: `off`, `on`. Record commit time of transactions.
31854
+ :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. Changing this parameter causes a service restart. Example: `1024`.
31855
+ :param pulumi.Input[builtins.str] track_commit_timestamp: Enum: `off`, `on`. Record commit time of transactions. Changing this parameter causes a service restart.
31741
31856
  :param pulumi.Input[builtins.str] track_functions: Enum: `all`, `none`, `pl`. Enables tracking of function call counts and time used.
31742
- :param pulumi.Input[builtins.str] track_io_timing: Enum: `off`, `on`. 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.
31857
+ :param pulumi.Input[builtins.str] track_io_timing: Enum: `off`, `on`. Enables timing of database I/O calls. The default is `off`. When on, it will repeatedly query the operating system for the current time, which may cause significant overhead on some platforms.
31743
31858
  :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. Example: `60000`.
31744
- :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. Example: `50`.
31859
+ :param pulumi.Input[builtins.int] wal_writer_delay: WAL flush interval in milliseconds. The default is `200`. Setting this parameter to a lower value may negatively impact performance. Example: `50`.
31745
31860
  """
31746
31861
  if autovacuum_analyze_scale_factor is not None:
31747
31862
  pulumi.set(__self__, "autovacuum_analyze_scale_factor", autovacuum_analyze_scale_factor)
@@ -31848,7 +31963,7 @@ class PgPgUserConfigPgArgs:
31848
31963
  @pulumi.getter(name="autovacuumAnalyzeScaleFactor")
31849
31964
  def autovacuum_analyze_scale_factor(self) -> Optional[pulumi.Input[builtins.float]]:
31850
31965
  """
31851
- Specifies a fraction 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).
31966
+ Specifies a fraction of the table size to add to autovacuum*analyze*threshold when deciding whether to trigger an ANALYZE (e.g. `0.2` for 20% of the table size). The default is `0.2`.
31852
31967
  """
31853
31968
  return pulumi.get(self, "autovacuum_analyze_scale_factor")
31854
31969
 
@@ -31860,7 +31975,7 @@ class PgPgUserConfigPgArgs:
31860
31975
  @pulumi.getter(name="autovacuumAnalyzeThreshold")
31861
31976
  def autovacuum_analyze_threshold(self) -> Optional[pulumi.Input[builtins.int]]:
31862
31977
  """
31863
- Specifies the minimum number of inserted, updated or deleted tuples needed to trigger an ANALYZE in any one table. The default is 50 tuples.
31978
+ Specifies the minimum number of inserted, updated or deleted tuples needed to trigger an ANALYZE in any one table. The default is `50`.
31864
31979
  """
31865
31980
  return pulumi.get(self, "autovacuum_analyze_threshold")
31866
31981
 
@@ -31872,7 +31987,7 @@ class PgPgUserConfigPgArgs:
31872
31987
  @pulumi.getter(name="autovacuumFreezeMaxAge")
31873
31988
  def autovacuum_freeze_max_age(self) -> Optional[pulumi.Input[builtins.int]]:
31874
31989
  """
31875
- 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. Example: `200000000`.
31990
+ 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. The system launches autovacuum processes to prevent wraparound even when autovacuum is otherwise disabled. Changing this parameter causes a service restart. Example: `200000000`.
31876
31991
  """
31877
31992
  return pulumi.get(self, "autovacuum_freeze_max_age")
31878
31993
 
@@ -31884,7 +31999,7 @@ class PgPgUserConfigPgArgs:
31884
31999
  @pulumi.getter(name="autovacuumMaxWorkers")
31885
32000
  def autovacuum_max_workers(self) -> Optional[pulumi.Input[builtins.int]]:
31886
32001
  """
31887
- 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.
32002
+ Specifies the maximum number of autovacuum processes (other than the autovacuum launcher) that may be running at any one time. The default is `3`. Changing this parameter causes a service restart.
31888
32003
  """
31889
32004
  return pulumi.get(self, "autovacuum_max_workers")
31890
32005
 
@@ -31896,7 +32011,7 @@ class PgPgUserConfigPgArgs:
31896
32011
  @pulumi.getter(name="autovacuumNaptime")
31897
32012
  def autovacuum_naptime(self) -> Optional[pulumi.Input[builtins.int]]:
31898
32013
  """
31899
- Specifies the minimum delay between autovacuum runs on any given database. The delay is measured in seconds, and the default is one minute.
32014
+ Specifies the minimum delay between autovacuum runs on any given database. The delay is measured in seconds. The default is `60`.
31900
32015
  """
31901
32016
  return pulumi.get(self, "autovacuum_naptime")
31902
32017
 
@@ -31908,7 +32023,7 @@ class PgPgUserConfigPgArgs:
31908
32023
  @pulumi.getter(name="autovacuumVacuumCostDelay")
31909
32024
  def autovacuum_vacuum_cost_delay(self) -> Optional[pulumi.Input[builtins.int]]:
31910
32025
  """
31911
- Specifies the cost delay value that will be used in automatic VACUUM operations. If -1 is specified, the regular vacuum*cost*delay value will be used. The default value is 20 milliseconds.
32026
+ Specifies the cost delay value that will be used in automatic VACUUM operations. If `-1` is specified, the regular vacuum*cost*delay value will be used. The default is `2` (upstream default).
31912
32027
  """
31913
32028
  return pulumi.get(self, "autovacuum_vacuum_cost_delay")
31914
32029
 
@@ -31920,7 +32035,7 @@ class PgPgUserConfigPgArgs:
31920
32035
  @pulumi.getter(name="autovacuumVacuumCostLimit")
31921
32036
  def autovacuum_vacuum_cost_limit(self) -> Optional[pulumi.Input[builtins.int]]:
31922
32037
  """
31923
- 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.
32038
+ Specifies the cost limit value that will be used in automatic VACUUM operations. If `-1` is specified, the regular vacuum*cost*limit value will be used. The default is `-1` (upstream default).
31924
32039
  """
31925
32040
  return pulumi.get(self, "autovacuum_vacuum_cost_limit")
31926
32041
 
@@ -31932,7 +32047,7 @@ class PgPgUserConfigPgArgs:
31932
32047
  @pulumi.getter(name="autovacuumVacuumScaleFactor")
31933
32048
  def autovacuum_vacuum_scale_factor(self) -> Optional[pulumi.Input[builtins.float]]:
31934
32049
  """
31935
- Specifies a fraction 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).
32050
+ Specifies a fraction of the table size to add to autovacuum*vacuum*threshold when deciding whether to trigger a VACUUM (e.g. `0.2` for 20% of the table size). The default is `0.2`.
31936
32051
  """
31937
32052
  return pulumi.get(self, "autovacuum_vacuum_scale_factor")
31938
32053
 
@@ -31944,7 +32059,7 @@ class PgPgUserConfigPgArgs:
31944
32059
  @pulumi.getter(name="autovacuumVacuumThreshold")
31945
32060
  def autovacuum_vacuum_threshold(self) -> Optional[pulumi.Input[builtins.int]]:
31946
32061
  """
31947
- Specifies the minimum number of updated or deleted tuples needed to trigger a VACUUM in any one table. The default is 50 tuples.
32062
+ Specifies the minimum number of updated or deleted tuples needed to trigger a VACUUM in any one table. The default is `50`.
31948
32063
  """
31949
32064
  return pulumi.get(self, "autovacuum_vacuum_threshold")
31950
32065
 
@@ -31956,7 +32071,7 @@ class PgPgUserConfigPgArgs:
31956
32071
  @pulumi.getter(name="bgwriterDelay")
31957
32072
  def bgwriter_delay(self) -> Optional[pulumi.Input[builtins.int]]:
31958
32073
  """
31959
- Specifies the delay between activity rounds for the background writer in milliseconds. Default is 200. Example: `200`.
32074
+ Specifies the delay between activity rounds for the background writer in milliseconds. The default is `200`. Example: `200`.
31960
32075
  """
31961
32076
  return pulumi.get(self, "bgwriter_delay")
31962
32077
 
@@ -31968,7 +32083,7 @@ class PgPgUserConfigPgArgs:
31968
32083
  @pulumi.getter(name="bgwriterFlushAfter")
31969
32084
  def bgwriter_flush_after(self) -> Optional[pulumi.Input[builtins.int]]:
31970
32085
  """
31971
- Whenever more than bgwriter*flush*after bytes have been written by the background writer, attempt to force the OS to issue these writes to the underlying storage. Specified in kilobytes, default is 512. Setting of 0 disables forced writeback. Example: `512`.
32086
+ Whenever more than bgwriter*flush*after bytes have been written by the background writer, attempt to force the OS to issue these writes to the underlying storage. Specified in kilobytes. Setting of 0 disables forced writeback. The default is `512`. Example: `512`.
31972
32087
  """
31973
32088
  return pulumi.get(self, "bgwriter_flush_after")
31974
32089
 
@@ -31980,7 +32095,7 @@ class PgPgUserConfigPgArgs:
31980
32095
  @pulumi.getter(name="bgwriterLruMaxpages")
31981
32096
  def bgwriter_lru_maxpages(self) -> Optional[pulumi.Input[builtins.int]]:
31982
32097
  """
31983
- In each round, no more than this many buffers will be written by the background writer. Setting this to zero disables background writing. Default is 100. Example: `100`.
32098
+ In each round, no more than this many buffers will be written by the background writer. Setting this to zero disables background writing. The default is `100`. Example: `100`.
31984
32099
  """
31985
32100
  return pulumi.get(self, "bgwriter_lru_maxpages")
31986
32101
 
@@ -31992,7 +32107,7 @@ class PgPgUserConfigPgArgs:
31992
32107
  @pulumi.getter(name="bgwriterLruMultiplier")
31993
32108
  def bgwriter_lru_multiplier(self) -> Optional[pulumi.Input[builtins.float]]:
31994
32109
  """
31995
- 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. Example: `2.0`.
32110
+ 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`. Example: `2.0`.
31996
32111
  """
31997
32112
  return pulumi.get(self, "bgwriter_lru_multiplier")
31998
32113
 
@@ -32004,7 +32119,7 @@ class PgPgUserConfigPgArgs:
32004
32119
  @pulumi.getter(name="deadlockTimeout")
32005
32120
  def deadlock_timeout(self) -> Optional[pulumi.Input[builtins.int]]:
32006
32121
  """
32007
- This is the amount of time, in milliseconds, to wait on a lock before checking to see if there is a deadlock condition. Example: `1000`.
32122
+ This is the amount of time, in milliseconds, to wait on a lock before checking to see if there is a deadlock condition. The default is `1000` (upstream default). Example: `1000`.
32008
32123
  """
32009
32124
  return pulumi.get(self, "deadlock_timeout")
32010
32125
 
@@ -32016,7 +32131,7 @@ class PgPgUserConfigPgArgs:
32016
32131
  @pulumi.getter(name="defaultToastCompression")
32017
32132
  def default_toast_compression(self) -> Optional[pulumi.Input[builtins.str]]:
32018
32133
  """
32019
- Enum: `lz4`, `pglz`. Specifies the default TOAST compression method for values of compressible columns (the default is lz4).
32134
+ Enum: `lz4`, `pglz`. Specifies the default TOAST compression method for values of compressible columns. The default is `lz4`. Only available for PostgreSQL 14+.
32020
32135
  """
32021
32136
  return pulumi.get(self, "default_toast_compression")
32022
32137
 
@@ -32052,7 +32167,7 @@ class PgPgUserConfigPgArgs:
32052
32167
  @pulumi.getter(name="logAutovacuumMinDuration")
32053
32168
  def log_autovacuum_min_duration(self) -> Optional[pulumi.Input[builtins.int]]:
32054
32169
  """
32055
- 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.
32170
+ 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 disables logging autovacuum actions. The default is `1000`.
32056
32171
  """
32057
32172
  return pulumi.get(self, "log_autovacuum_min_duration")
32058
32173
 
@@ -32112,7 +32227,7 @@ class PgPgUserConfigPgArgs:
32112
32227
  @pulumi.getter(name="maxFilesPerProcess")
32113
32228
  def max_files_per_process(self) -> Optional[pulumi.Input[builtins.int]]:
32114
32229
  """
32115
- PostgreSQL maximum number of files that can be open per process.
32230
+ PostgreSQL maximum number of files that can be open per process. The default is `1000` (upstream default). Changing this parameter causes a service restart.
32116
32231
  """
32117
32232
  return pulumi.get(self, "max_files_per_process")
32118
32233
 
@@ -32124,7 +32239,7 @@ class PgPgUserConfigPgArgs:
32124
32239
  @pulumi.getter(name="maxLocksPerTransaction")
32125
32240
  def max_locks_per_transaction(self) -> Optional[pulumi.Input[builtins.int]]:
32126
32241
  """
32127
- PostgreSQL maximum locks per transaction.
32242
+ PostgreSQL maximum locks per transaction. Changing this parameter causes a service restart.
32128
32243
  """
32129
32244
  return pulumi.get(self, "max_locks_per_transaction")
32130
32245
 
@@ -32136,7 +32251,7 @@ class PgPgUserConfigPgArgs:
32136
32251
  @pulumi.getter(name="maxLogicalReplicationWorkers")
32137
32252
  def max_logical_replication_workers(self) -> Optional[pulumi.Input[builtins.int]]:
32138
32253
  """
32139
- PostgreSQL maximum logical replication workers (taken from the pool of max*parallel*workers).
32254
+ PostgreSQL maximum logical replication workers (taken from the pool of max*parallel*workers). The default is `4` (upstream default). Changing this parameter causes a service restart.
32140
32255
  """
32141
32256
  return pulumi.get(self, "max_logical_replication_workers")
32142
32257
 
@@ -32148,7 +32263,7 @@ class PgPgUserConfigPgArgs:
32148
32263
  @pulumi.getter(name="maxParallelWorkers")
32149
32264
  def max_parallel_workers(self) -> Optional[pulumi.Input[builtins.int]]:
32150
32265
  """
32151
- Sets the maximum number of workers that the system can support for parallel queries.
32266
+ Sets the maximum number of workers that the system can support for parallel queries. The default is `8` (upstream default).
32152
32267
  """
32153
32268
  return pulumi.get(self, "max_parallel_workers")
32154
32269
 
@@ -32160,7 +32275,7 @@ class PgPgUserConfigPgArgs:
32160
32275
  @pulumi.getter(name="maxParallelWorkersPerGather")
32161
32276
  def max_parallel_workers_per_gather(self) -> Optional[pulumi.Input[builtins.int]]:
32162
32277
  """
32163
- Sets the maximum number of workers that can be started by a single Gather or Gather Merge node.
32278
+ Sets the maximum number of workers that can be started by a single Gather or Gather Merge node. The default is `2` (upstream default).
32164
32279
  """
32165
32280
  return pulumi.get(self, "max_parallel_workers_per_gather")
32166
32281
 
@@ -32172,7 +32287,7 @@ class PgPgUserConfigPgArgs:
32172
32287
  @pulumi.getter(name="maxPredLocksPerTransaction")
32173
32288
  def max_pred_locks_per_transaction(self) -> Optional[pulumi.Input[builtins.int]]:
32174
32289
  """
32175
- PostgreSQL maximum predicate locks per transaction.
32290
+ PostgreSQL maximum predicate locks per transaction. The default is `64` (upstream default). Changing this parameter causes a service restart.
32176
32291
  """
32177
32292
  return pulumi.get(self, "max_pred_locks_per_transaction")
32178
32293
 
@@ -32184,7 +32299,7 @@ class PgPgUserConfigPgArgs:
32184
32299
  @pulumi.getter(name="maxPreparedTransactions")
32185
32300
  def max_prepared_transactions(self) -> Optional[pulumi.Input[builtins.int]]:
32186
32301
  """
32187
- PostgreSQL maximum prepared transactions.
32302
+ PostgreSQL maximum prepared transactions. The default is `0`. Changing this parameter causes a service restart.
32188
32303
  """
32189
32304
  return pulumi.get(self, "max_prepared_transactions")
32190
32305
 
@@ -32196,7 +32311,7 @@ class PgPgUserConfigPgArgs:
32196
32311
  @pulumi.getter(name="maxReplicationSlots")
32197
32312
  def max_replication_slots(self) -> Optional[pulumi.Input[builtins.int]]:
32198
32313
  """
32199
- PostgreSQL maximum replication slots.
32314
+ PostgreSQL maximum replication slots. The default is `20`. Changing this parameter causes a service restart.
32200
32315
  """
32201
32316
  return pulumi.get(self, "max_replication_slots")
32202
32317
 
@@ -32208,7 +32323,7 @@ class PgPgUserConfigPgArgs:
32208
32323
  @pulumi.getter(name="maxSlotWalKeepSize")
32209
32324
  def max_slot_wal_keep_size(self) -> Optional[pulumi.Input[builtins.int]]:
32210
32325
  """
32211
- PostgreSQL maximum WAL size (MB) reserved for replication slots. Default is -1 (unlimited). wal*keep*size minimum WAL size setting takes precedence over this.
32326
+ PostgreSQL maximum WAL size (MB) reserved for replication slots. If `-1` is specified, replication slots may retain an unlimited amount of WAL files. The default is `-1` (upstream default). wal*keep*size minimum WAL size setting takes precedence over this.
32212
32327
  """
32213
32328
  return pulumi.get(self, "max_slot_wal_keep_size")
32214
32329
 
@@ -32220,7 +32335,7 @@ class PgPgUserConfigPgArgs:
32220
32335
  @pulumi.getter(name="maxStackDepth")
32221
32336
  def max_stack_depth(self) -> Optional[pulumi.Input[builtins.int]]:
32222
32337
  """
32223
- Maximum depth of the stack in bytes.
32338
+ Maximum depth of the stack in bytes. The default is `2097152` (upstream default).
32224
32339
  """
32225
32340
  return pulumi.get(self, "max_stack_depth")
32226
32341
 
@@ -32232,7 +32347,7 @@ class PgPgUserConfigPgArgs:
32232
32347
  @pulumi.getter(name="maxStandbyArchiveDelay")
32233
32348
  def max_standby_archive_delay(self) -> Optional[pulumi.Input[builtins.int]]:
32234
32349
  """
32235
- Max standby archive delay in milliseconds.
32350
+ Max standby archive delay in milliseconds. The default is `30000` (upstream default).
32236
32351
  """
32237
32352
  return pulumi.get(self, "max_standby_archive_delay")
32238
32353
 
@@ -32244,7 +32359,7 @@ class PgPgUserConfigPgArgs:
32244
32359
  @pulumi.getter(name="maxStandbyStreamingDelay")
32245
32360
  def max_standby_streaming_delay(self) -> Optional[pulumi.Input[builtins.int]]:
32246
32361
  """
32247
- Max standby streaming delay in milliseconds.
32362
+ Max standby streaming delay in milliseconds. The default is `30000` (upstream default).
32248
32363
  """
32249
32364
  return pulumi.get(self, "max_standby_streaming_delay")
32250
32365
 
@@ -32256,7 +32371,7 @@ class PgPgUserConfigPgArgs:
32256
32371
  @pulumi.getter(name="maxWalSenders")
32257
32372
  def max_wal_senders(self) -> Optional[pulumi.Input[builtins.int]]:
32258
32373
  """
32259
- PostgreSQL maximum WAL senders.
32374
+ PostgreSQL maximum WAL senders. The default is `20`. Changing this parameter causes a service restart.
32260
32375
  """
32261
32376
  return pulumi.get(self, "max_wal_senders")
32262
32377
 
@@ -32268,7 +32383,7 @@ class PgPgUserConfigPgArgs:
32268
32383
  @pulumi.getter(name="maxWorkerProcesses")
32269
32384
  def max_worker_processes(self) -> Optional[pulumi.Input[builtins.int]]:
32270
32385
  """
32271
- Sets the maximum number of background processes that the system can support.
32386
+ Sets the maximum number of background processes that the system can support. The default is `8`. Changing this parameter causes a service restart.
32272
32387
  """
32273
32388
  return pulumi.get(self, "max_worker_processes")
32274
32389
 
@@ -32292,7 +32407,7 @@ class PgPgUserConfigPgArgs:
32292
32407
  @pulumi.getter(name="pgPartmanBgwDotInterval")
32293
32408
  def pg_partman_bgw_dot_interval(self) -> Optional[pulumi.Input[builtins.int]]:
32294
32409
  """
32295
- Sets the time interval to run pg_partman's scheduled tasks. Example: `3600`.
32410
+ Sets the time interval in seconds to run pg_partman's scheduled tasks. The default is `3600`. Example: `3600`.
32296
32411
  """
32297
32412
  return pulumi.get(self, "pg_partman_bgw_dot_interval")
32298
32413
 
@@ -32316,7 +32431,7 @@ class PgPgUserConfigPgArgs:
32316
32431
  @pulumi.getter(name="pgStatMonitorDotPgsmEnableQueryPlan")
32317
32432
  def pg_stat_monitor_dot_pgsm_enable_query_plan(self) -> Optional[pulumi.Input[builtins.bool]]:
32318
32433
  """
32319
- Enables or disables query plan monitoring.
32434
+ Enables or disables query plan monitoring. Changing this parameter causes a service restart. Only available for PostgreSQL 13+.
32320
32435
  """
32321
32436
  return pulumi.get(self, "pg_stat_monitor_dot_pgsm_enable_query_plan")
32322
32437
 
@@ -32328,7 +32443,7 @@ class PgPgUserConfigPgArgs:
32328
32443
  @pulumi.getter(name="pgStatMonitorDotPgsmMaxBuckets")
32329
32444
  def pg_stat_monitor_dot_pgsm_max_buckets(self) -> Optional[pulumi.Input[builtins.int]]:
32330
32445
  """
32331
- Sets the maximum number of buckets. Example: `10`.
32446
+ Sets the maximum number of buckets. Changing this parameter causes a service restart. Only available for PostgreSQL 13+. Example: `10`.
32332
32447
  """
32333
32448
  return pulumi.get(self, "pg_stat_monitor_dot_pgsm_max_buckets")
32334
32449
 
@@ -32340,7 +32455,7 @@ class PgPgUserConfigPgArgs:
32340
32455
  @pulumi.getter(name="pgStatStatementsDotTrack")
32341
32456
  def pg_stat_statements_dot_track(self) -> Optional[pulumi.Input[builtins.str]]:
32342
32457
  """
32343
- Enum: `all`, `none`, `top`. 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.
32458
+ Enum: `all`, `none`, `top`. 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 is `top`.
32344
32459
  """
32345
32460
  return pulumi.get(self, "pg_stat_statements_dot_track")
32346
32461
 
@@ -32376,7 +32491,7 @@ class PgPgUserConfigPgArgs:
32376
32491
  @pulumi.getter(name="trackActivityQuerySize")
32377
32492
  def track_activity_query_size(self) -> Optional[pulumi.Input[builtins.int]]:
32378
32493
  """
32379
- Specifies the number of bytes reserved to track the currently executing command for each active session. Example: `1024`.
32494
+ Specifies the number of bytes reserved to track the currently executing command for each active session. Changing this parameter causes a service restart. Example: `1024`.
32380
32495
  """
32381
32496
  return pulumi.get(self, "track_activity_query_size")
32382
32497
 
@@ -32388,7 +32503,7 @@ class PgPgUserConfigPgArgs:
32388
32503
  @pulumi.getter(name="trackCommitTimestamp")
32389
32504
  def track_commit_timestamp(self) -> Optional[pulumi.Input[builtins.str]]:
32390
32505
  """
32391
- Enum: `off`, `on`. Record commit time of transactions.
32506
+ Enum: `off`, `on`. Record commit time of transactions. Changing this parameter causes a service restart.
32392
32507
  """
32393
32508
  return pulumi.get(self, "track_commit_timestamp")
32394
32509
 
@@ -32412,7 +32527,7 @@ class PgPgUserConfigPgArgs:
32412
32527
  @pulumi.getter(name="trackIoTiming")
32413
32528
  def track_io_timing(self) -> Optional[pulumi.Input[builtins.str]]:
32414
32529
  """
32415
- Enum: `off`, `on`. 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.
32530
+ Enum: `off`, `on`. Enables timing of database I/O calls. The default is `off`. When on, it will repeatedly query the operating system for the current time, which may cause significant overhead on some platforms.
32416
32531
  """
32417
32532
  return pulumi.get(self, "track_io_timing")
32418
32533
 
@@ -32436,7 +32551,7 @@ class PgPgUserConfigPgArgs:
32436
32551
  @pulumi.getter(name="walWriterDelay")
32437
32552
  def wal_writer_delay(self) -> Optional[pulumi.Input[builtins.int]]:
32438
32553
  """
32439
- WAL flush interval in milliseconds. Note that setting this value to lower than the default 200ms may negatively impact performance. Example: `50`.
32554
+ WAL flush interval in milliseconds. The default is `200`. Setting this parameter to a lower value may negatively impact performance. Example: `50`.
32440
32555
  """
32441
32556
  return pulumi.get(self, "wal_writer_delay")
32442
32557