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 +401 -286
- pulumi_aiven/governance_access.py +87 -54
- pulumi_aiven/organization_permission.py +0 -18
- pulumi_aiven/outputs.py +430 -347
- pulumi_aiven/pulumi-plugin.json +1 -1
- {pulumi_aiven-6.39.0a1748900807.dist-info → pulumi_aiven-6.40.0a1749532603.dist-info}/METADATA +1 -1
- {pulumi_aiven-6.39.0a1748900807.dist-info → pulumi_aiven-6.40.0a1749532603.dist-info}/RECORD +9 -9
- {pulumi_aiven-6.39.0a1748900807.dist-info → pulumi_aiven-6.40.0a1749532603.dist-info}/WHEEL +0 -0
- {pulumi_aiven-6.39.0a1748900807.dist-info → pulumi_aiven-6.40.0a1749532603.dist-info}/top_level.txt +0 -0
pulumi_aiven/outputs.py
CHANGED
|
@@ -83,6 +83,7 @@ __all__ = [
|
|
|
83
83
|
'FlinkTechEmail',
|
|
84
84
|
'GovernanceAccessAccessData',
|
|
85
85
|
'GovernanceAccessAccessDataAcl',
|
|
86
|
+
'GovernanceAccessTimeouts',
|
|
86
87
|
'GrafanaComponent',
|
|
87
88
|
'GrafanaGrafana',
|
|
88
89
|
'GrafanaGrafanaUserConfig',
|
|
@@ -1201,11 +1202,11 @@ class AlloydbomniAlloydbomniUserConfig(dict):
|
|
|
1201
1202
|
:param 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`.
|
|
1202
1203
|
:param builtins.bool service_log: Store logs for the service so that they are available in the HTTP API and console.
|
|
1203
1204
|
:param 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`.
|
|
1204
|
-
:param 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`.
|
|
1205
|
+
:param 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`.
|
|
1205
1206
|
:param builtins.bool static_ips: Use static public IP addresses.
|
|
1206
1207
|
:param builtins.str synchronous_replication: Enum: `off`, `quorum`. Synchronous replication type. Note that the service plan also needs to support synchronous replication.
|
|
1207
1208
|
:param builtins.str variant: Enum: `aiven`, `timescale`. Variant of the PostgreSQL service, may affect the features that are exposed by default.
|
|
1208
|
-
:param 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.
|
|
1209
|
+
:param 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`.
|
|
1209
1210
|
"""
|
|
1210
1211
|
if additional_backup_regions is not None:
|
|
1211
1212
|
pulumi.set(__self__, "additional_backup_regions", additional_backup_regions)
|
|
@@ -1483,7 +1484,7 @@ class AlloydbomniAlloydbomniUserConfig(dict):
|
|
|
1483
1484
|
@pulumi.getter(name="sharedBuffersPercentage")
|
|
1484
1485
|
def shared_buffers_percentage(self) -> Optional[builtins.float]:
|
|
1485
1486
|
"""
|
|
1486
|
-
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`.
|
|
1487
|
+
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`.
|
|
1487
1488
|
"""
|
|
1488
1489
|
return pulumi.get(self, "shared_buffers_percentage")
|
|
1489
1490
|
|
|
@@ -1515,7 +1516,7 @@ class AlloydbomniAlloydbomniUserConfig(dict):
|
|
|
1515
1516
|
@pulumi.getter(name="workMem")
|
|
1516
1517
|
def work_mem(self) -> Optional[builtins.int]:
|
|
1517
1518
|
"""
|
|
1518
|
-
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.
|
|
1519
|
+
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`.
|
|
1519
1520
|
"""
|
|
1520
1521
|
return pulumi.get(self, "work_mem")
|
|
1521
1522
|
|
|
@@ -1709,54 +1710,54 @@ class AlloydbomniAlloydbomniUserConfigPg(dict):
|
|
|
1709
1710
|
wal_sender_timeout: Optional[builtins.int] = None,
|
|
1710
1711
|
wal_writer_delay: Optional[builtins.int] = None):
|
|
1711
1712
|
"""
|
|
1712
|
-
:param 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.
|
|
1713
|
-
:param 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
|
|
1714
|
-
:param 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.
|
|
1715
|
-
:param 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
|
|
1716
|
-
:param builtins.int autovacuum_naptime: Specifies the minimum delay between autovacuum runs on any given database. The delay is measured in seconds
|
|
1717
|
-
:param builtins.int autovacuum_vacuum_cost_delay: Specifies the cost delay value that will be used in automatic VACUUM operations. If
|
|
1718
|
-
:param builtins.int autovacuum_vacuum_cost_limit: Specifies the cost limit value that will be used in automatic VACUUM operations. If
|
|
1719
|
-
:param 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.
|
|
1720
|
-
:param 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
|
|
1721
|
-
:param builtins.int bgwriter_delay: Specifies the delay between activity rounds for the background writer in milliseconds.
|
|
1722
|
-
:param 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
|
|
1723
|
-
:param 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.
|
|
1724
|
-
:param 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
|
|
1725
|
-
:param 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`.
|
|
1726
|
-
:param builtins.str default_toast_compression: Enum: `lz4`, `pglz`. Specifies the default TOAST compression method for values of compressible columns
|
|
1713
|
+
:param 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`.
|
|
1714
|
+
:param 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`.
|
|
1715
|
+
:param 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`.
|
|
1716
|
+
:param 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.
|
|
1717
|
+
:param 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`.
|
|
1718
|
+
:param 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).
|
|
1719
|
+
:param 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).
|
|
1720
|
+
:param 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`.
|
|
1721
|
+
:param 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`.
|
|
1722
|
+
:param builtins.int bgwriter_delay: Specifies the delay between activity rounds for the background writer in milliseconds. The default is `200`. Example: `200`.
|
|
1723
|
+
:param 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`.
|
|
1724
|
+
:param 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`.
|
|
1725
|
+
:param 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`.
|
|
1726
|
+
:param 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`.
|
|
1727
|
+
:param builtins.str default_toast_compression: Enum: `lz4`, `pglz`. Specifies the default TOAST compression method for values of compressible columns. The default is `lz4`.
|
|
1727
1728
|
:param builtins.int idle_in_transaction_session_timeout: Time out sessions with open transactions after this number of milliseconds.
|
|
1728
1729
|
:param builtins.bool jit: Controls system-wide use of Just-in-Time Compilation (JIT).
|
|
1729
|
-
:param 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
|
|
1730
|
+
:param 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`.
|
|
1730
1731
|
:param 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.
|
|
1731
1732
|
:param 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.
|
|
1732
1733
|
:param builtins.int log_min_duration_statement: Log statements that take more than this number of milliseconds to run, -1 disables.
|
|
1733
1734
|
:param builtins.int log_temp_files: Log statements for each temporary file created larger than this number of kilobytes, -1 disables.
|
|
1734
|
-
:param builtins.int max_files_per_process: PostgreSQL maximum number of files that can be open per process.
|
|
1735
|
-
:param builtins.int max_locks_per_transaction: PostgreSQL maximum locks per transaction.
|
|
1736
|
-
:param builtins.int max_logical_replication_workers: PostgreSQL maximum logical replication workers (taken from the pool of max*parallel*workers).
|
|
1737
|
-
:param builtins.int max_parallel_workers: Sets the maximum number of workers that the system can support for parallel queries.
|
|
1738
|
-
:param 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.
|
|
1739
|
-
:param builtins.int max_pred_locks_per_transaction: PostgreSQL maximum predicate locks per transaction.
|
|
1740
|
-
:param builtins.int max_prepared_transactions: PostgreSQL maximum prepared transactions.
|
|
1741
|
-
:param builtins.int max_replication_slots: PostgreSQL maximum replication slots.
|
|
1742
|
-
:param builtins.int max_slot_wal_keep_size: PostgreSQL maximum WAL size (MB) reserved for replication slots.
|
|
1743
|
-
:param builtins.int max_stack_depth: Maximum depth of the stack in bytes.
|
|
1744
|
-
:param builtins.int max_standby_archive_delay: Max standby archive delay in milliseconds.
|
|
1745
|
-
:param builtins.int max_standby_streaming_delay: Max standby streaming delay in milliseconds.
|
|
1746
|
-
:param builtins.int max_wal_senders: PostgreSQL maximum WAL senders.
|
|
1747
|
-
:param builtins.int max_worker_processes: Sets the maximum number of background processes that the system can support.
|
|
1735
|
+
:param 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.
|
|
1736
|
+
:param builtins.int max_locks_per_transaction: PostgreSQL maximum locks per transaction. Changing this parameter causes a service restart.
|
|
1737
|
+
:param 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.
|
|
1738
|
+
:param 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).
|
|
1739
|
+
:param 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).
|
|
1740
|
+
:param 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.
|
|
1741
|
+
:param builtins.int max_prepared_transactions: PostgreSQL maximum prepared transactions. The default is `0`. Changing this parameter causes a service restart.
|
|
1742
|
+
:param builtins.int max_replication_slots: PostgreSQL maximum replication slots. The default is `20`. Changing this parameter causes a service restart.
|
|
1743
|
+
:param 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.
|
|
1744
|
+
:param builtins.int max_stack_depth: Maximum depth of the stack in bytes. The default is `2097152` (upstream default).
|
|
1745
|
+
:param builtins.int max_standby_archive_delay: Max standby archive delay in milliseconds. The default is `30000` (upstream default).
|
|
1746
|
+
:param builtins.int max_standby_streaming_delay: Max standby streaming delay in milliseconds. The default is `30000` (upstream default).
|
|
1747
|
+
:param builtins.int max_wal_senders: PostgreSQL maximum WAL senders. The default is `20`. Changing this parameter causes a service restart.
|
|
1748
|
+
:param 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.
|
|
1748
1749
|
:param builtins.str password_encryption: Enum: `md5`, `scram-sha-256`. Chooses the algorithm for encrypting passwords. Default: `md5`.
|
|
1749
|
-
:param builtins.int pg_partman_bgw_dot_interval: Sets the time interval to run pg_partman's scheduled tasks. Example: `3600`.
|
|
1750
|
+
:param 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`.
|
|
1750
1751
|
:param builtins.str pg_partman_bgw_dot_role: Controls which role to use for pg_partman's scheduled background tasks. Example: `myrolename`.
|
|
1751
|
-
:param 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
|
|
1752
|
+
:param 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`.
|
|
1752
1753
|
:param builtins.int temp_file_limit: PostgreSQL temporary file limit in KiB, -1 for unlimited. Example: `5000000`.
|
|
1753
1754
|
:param builtins.str timezone: PostgreSQL service timezone. Example: `Europe/Helsinki`.
|
|
1754
|
-
:param builtins.int track_activity_query_size: Specifies the number of bytes reserved to track the currently executing command for each active session. Example: `1024`.
|
|
1755
|
-
:param builtins.str track_commit_timestamp: Enum: `off`, `on`. Record commit time of transactions.
|
|
1755
|
+
:param 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`.
|
|
1756
|
+
:param builtins.str track_commit_timestamp: Enum: `off`, `on`. Record commit time of transactions. Changing this parameter causes a service restart.
|
|
1756
1757
|
:param builtins.str track_functions: Enum: `all`, `none`, `pl`. Enables tracking of function call counts and time used.
|
|
1757
|
-
:param builtins.str track_io_timing: Enum: `off`, `on`. Enables timing of database I/O calls.
|
|
1758
|
+
:param 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.
|
|
1758
1759
|
:param 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`.
|
|
1759
|
-
:param builtins.int wal_writer_delay: WAL flush interval in milliseconds.
|
|
1760
|
+
:param 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`.
|
|
1760
1761
|
"""
|
|
1761
1762
|
if autovacuum_analyze_scale_factor is not None:
|
|
1762
1763
|
pulumi.set(__self__, "autovacuum_analyze_scale_factor", autovacuum_analyze_scale_factor)
|
|
@@ -1859,7 +1860,7 @@ class AlloydbomniAlloydbomniUserConfigPg(dict):
|
|
|
1859
1860
|
@pulumi.getter(name="autovacuumAnalyzeScaleFactor")
|
|
1860
1861
|
def autovacuum_analyze_scale_factor(self) -> Optional[builtins.float]:
|
|
1861
1862
|
"""
|
|
1862
|
-
Specifies a fraction of the table size to add to autovacuum*analyze*threshold when deciding whether to trigger an ANALYZE.
|
|
1863
|
+
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`.
|
|
1863
1864
|
"""
|
|
1864
1865
|
return pulumi.get(self, "autovacuum_analyze_scale_factor")
|
|
1865
1866
|
|
|
@@ -1867,7 +1868,7 @@ class AlloydbomniAlloydbomniUserConfigPg(dict):
|
|
|
1867
1868
|
@pulumi.getter(name="autovacuumAnalyzeThreshold")
|
|
1868
1869
|
def autovacuum_analyze_threshold(self) -> Optional[builtins.int]:
|
|
1869
1870
|
"""
|
|
1870
|
-
Specifies the minimum number of inserted, updated or deleted tuples needed to trigger an ANALYZE in any one table. The default is 50
|
|
1871
|
+
Specifies the minimum number of inserted, updated or deleted tuples needed to trigger an ANALYZE in any one table. The default is `50`.
|
|
1871
1872
|
"""
|
|
1872
1873
|
return pulumi.get(self, "autovacuum_analyze_threshold")
|
|
1873
1874
|
|
|
@@ -1875,7 +1876,7 @@ class AlloydbomniAlloydbomniUserConfigPg(dict):
|
|
|
1875
1876
|
@pulumi.getter(name="autovacuumFreezeMaxAge")
|
|
1876
1877
|
def autovacuum_freeze_max_age(self) -> Optional[builtins.int]:
|
|
1877
1878
|
"""
|
|
1878
|
-
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.
|
|
1879
|
+
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`.
|
|
1879
1880
|
"""
|
|
1880
1881
|
return pulumi.get(self, "autovacuum_freeze_max_age")
|
|
1881
1882
|
|
|
@@ -1883,7 +1884,7 @@ class AlloydbomniAlloydbomniUserConfigPg(dict):
|
|
|
1883
1884
|
@pulumi.getter(name="autovacuumMaxWorkers")
|
|
1884
1885
|
def autovacuum_max_workers(self) -> Optional[builtins.int]:
|
|
1885
1886
|
"""
|
|
1886
|
-
Specifies the maximum number of autovacuum processes (other than the autovacuum launcher) that may be running at any one time. The default is
|
|
1887
|
+
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.
|
|
1887
1888
|
"""
|
|
1888
1889
|
return pulumi.get(self, "autovacuum_max_workers")
|
|
1889
1890
|
|
|
@@ -1891,7 +1892,7 @@ class AlloydbomniAlloydbomniUserConfigPg(dict):
|
|
|
1891
1892
|
@pulumi.getter(name="autovacuumNaptime")
|
|
1892
1893
|
def autovacuum_naptime(self) -> Optional[builtins.int]:
|
|
1893
1894
|
"""
|
|
1894
|
-
Specifies the minimum delay between autovacuum runs on any given database. The delay is measured in seconds
|
|
1895
|
+
Specifies the minimum delay between autovacuum runs on any given database. The delay is measured in seconds. The default is `60`.
|
|
1895
1896
|
"""
|
|
1896
1897
|
return pulumi.get(self, "autovacuum_naptime")
|
|
1897
1898
|
|
|
@@ -1899,7 +1900,7 @@ class AlloydbomniAlloydbomniUserConfigPg(dict):
|
|
|
1899
1900
|
@pulumi.getter(name="autovacuumVacuumCostDelay")
|
|
1900
1901
|
def autovacuum_vacuum_cost_delay(self) -> Optional[builtins.int]:
|
|
1901
1902
|
"""
|
|
1902
|
-
Specifies the cost delay value that will be used in automatic VACUUM operations. If
|
|
1903
|
+
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).
|
|
1903
1904
|
"""
|
|
1904
1905
|
return pulumi.get(self, "autovacuum_vacuum_cost_delay")
|
|
1905
1906
|
|
|
@@ -1907,7 +1908,7 @@ class AlloydbomniAlloydbomniUserConfigPg(dict):
|
|
|
1907
1908
|
@pulumi.getter(name="autovacuumVacuumCostLimit")
|
|
1908
1909
|
def autovacuum_vacuum_cost_limit(self) -> Optional[builtins.int]:
|
|
1909
1910
|
"""
|
|
1910
|
-
Specifies the cost limit value that will be used in automatic VACUUM operations. If
|
|
1911
|
+
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).
|
|
1911
1912
|
"""
|
|
1912
1913
|
return pulumi.get(self, "autovacuum_vacuum_cost_limit")
|
|
1913
1914
|
|
|
@@ -1915,7 +1916,7 @@ class AlloydbomniAlloydbomniUserConfigPg(dict):
|
|
|
1915
1916
|
@pulumi.getter(name="autovacuumVacuumScaleFactor")
|
|
1916
1917
|
def autovacuum_vacuum_scale_factor(self) -> Optional[builtins.float]:
|
|
1917
1918
|
"""
|
|
1918
|
-
Specifies a fraction of the table size to add to autovacuum*vacuum*threshold when deciding whether to trigger a VACUUM.
|
|
1919
|
+
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`.
|
|
1919
1920
|
"""
|
|
1920
1921
|
return pulumi.get(self, "autovacuum_vacuum_scale_factor")
|
|
1921
1922
|
|
|
@@ -1923,7 +1924,7 @@ class AlloydbomniAlloydbomniUserConfigPg(dict):
|
|
|
1923
1924
|
@pulumi.getter(name="autovacuumVacuumThreshold")
|
|
1924
1925
|
def autovacuum_vacuum_threshold(self) -> Optional[builtins.int]:
|
|
1925
1926
|
"""
|
|
1926
|
-
Specifies the minimum number of updated or deleted tuples needed to trigger a VACUUM in any one table. The default is 50
|
|
1927
|
+
Specifies the minimum number of updated or deleted tuples needed to trigger a VACUUM in any one table. The default is `50`.
|
|
1927
1928
|
"""
|
|
1928
1929
|
return pulumi.get(self, "autovacuum_vacuum_threshold")
|
|
1929
1930
|
|
|
@@ -1931,7 +1932,7 @@ class AlloydbomniAlloydbomniUserConfigPg(dict):
|
|
|
1931
1932
|
@pulumi.getter(name="bgwriterDelay")
|
|
1932
1933
|
def bgwriter_delay(self) -> Optional[builtins.int]:
|
|
1933
1934
|
"""
|
|
1934
|
-
Specifies the delay between activity rounds for the background writer in milliseconds.
|
|
1935
|
+
Specifies the delay between activity rounds for the background writer in milliseconds. The default is `200`. Example: `200`.
|
|
1935
1936
|
"""
|
|
1936
1937
|
return pulumi.get(self, "bgwriter_delay")
|
|
1937
1938
|
|
|
@@ -1939,7 +1940,7 @@ class AlloydbomniAlloydbomniUserConfigPg(dict):
|
|
|
1939
1940
|
@pulumi.getter(name="bgwriterFlushAfter")
|
|
1940
1941
|
def bgwriter_flush_after(self) -> Optional[builtins.int]:
|
|
1941
1942
|
"""
|
|
1942
|
-
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
|
|
1943
|
+
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`.
|
|
1943
1944
|
"""
|
|
1944
1945
|
return pulumi.get(self, "bgwriter_flush_after")
|
|
1945
1946
|
|
|
@@ -1947,7 +1948,7 @@ class AlloydbomniAlloydbomniUserConfigPg(dict):
|
|
|
1947
1948
|
@pulumi.getter(name="bgwriterLruMaxpages")
|
|
1948
1949
|
def bgwriter_lru_maxpages(self) -> Optional[builtins.int]:
|
|
1949
1950
|
"""
|
|
1950
|
-
In each round, no more than this many buffers will be written by the background writer. Setting this to zero disables background writing.
|
|
1951
|
+
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`.
|
|
1951
1952
|
"""
|
|
1952
1953
|
return pulumi.get(self, "bgwriter_lru_maxpages")
|
|
1953
1954
|
|
|
@@ -1955,7 +1956,7 @@ class AlloydbomniAlloydbomniUserConfigPg(dict):
|
|
|
1955
1956
|
@pulumi.getter(name="bgwriterLruMultiplier")
|
|
1956
1957
|
def bgwriter_lru_multiplier(self) -> Optional[builtins.float]:
|
|
1957
1958
|
"""
|
|
1958
|
-
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
|
|
1959
|
+
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`.
|
|
1959
1960
|
"""
|
|
1960
1961
|
return pulumi.get(self, "bgwriter_lru_multiplier")
|
|
1961
1962
|
|
|
@@ -1963,7 +1964,7 @@ class AlloydbomniAlloydbomniUserConfigPg(dict):
|
|
|
1963
1964
|
@pulumi.getter(name="deadlockTimeout")
|
|
1964
1965
|
def deadlock_timeout(self) -> Optional[builtins.int]:
|
|
1965
1966
|
"""
|
|
1966
|
-
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`.
|
|
1967
|
+
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`.
|
|
1967
1968
|
"""
|
|
1968
1969
|
return pulumi.get(self, "deadlock_timeout")
|
|
1969
1970
|
|
|
@@ -1971,7 +1972,7 @@ class AlloydbomniAlloydbomniUserConfigPg(dict):
|
|
|
1971
1972
|
@pulumi.getter(name="defaultToastCompression")
|
|
1972
1973
|
def default_toast_compression(self) -> Optional[builtins.str]:
|
|
1973
1974
|
"""
|
|
1974
|
-
Enum: `lz4`, `pglz`. Specifies the default TOAST compression method for values of compressible columns
|
|
1975
|
+
Enum: `lz4`, `pglz`. Specifies the default TOAST compression method for values of compressible columns. The default is `lz4`.
|
|
1975
1976
|
"""
|
|
1976
1977
|
return pulumi.get(self, "default_toast_compression")
|
|
1977
1978
|
|
|
@@ -1995,7 +1996,7 @@ class AlloydbomniAlloydbomniUserConfigPg(dict):
|
|
|
1995
1996
|
@pulumi.getter(name="logAutovacuumMinDuration")
|
|
1996
1997
|
def log_autovacuum_min_duration(self) -> Optional[builtins.int]:
|
|
1997
1998
|
"""
|
|
1998
|
-
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
|
|
1999
|
+
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`.
|
|
1999
2000
|
"""
|
|
2000
2001
|
return pulumi.get(self, "log_autovacuum_min_duration")
|
|
2001
2002
|
|
|
@@ -2035,7 +2036,7 @@ class AlloydbomniAlloydbomniUserConfigPg(dict):
|
|
|
2035
2036
|
@pulumi.getter(name="maxFilesPerProcess")
|
|
2036
2037
|
def max_files_per_process(self) -> Optional[builtins.int]:
|
|
2037
2038
|
"""
|
|
2038
|
-
PostgreSQL maximum number of files that can be open per process.
|
|
2039
|
+
PostgreSQL maximum number of files that can be open per process. The default is `1000` (upstream default). Changing this parameter causes a service restart.
|
|
2039
2040
|
"""
|
|
2040
2041
|
return pulumi.get(self, "max_files_per_process")
|
|
2041
2042
|
|
|
@@ -2043,7 +2044,7 @@ class AlloydbomniAlloydbomniUserConfigPg(dict):
|
|
|
2043
2044
|
@pulumi.getter(name="maxLocksPerTransaction")
|
|
2044
2045
|
def max_locks_per_transaction(self) -> Optional[builtins.int]:
|
|
2045
2046
|
"""
|
|
2046
|
-
PostgreSQL maximum locks per transaction.
|
|
2047
|
+
PostgreSQL maximum locks per transaction. Changing this parameter causes a service restart.
|
|
2047
2048
|
"""
|
|
2048
2049
|
return pulumi.get(self, "max_locks_per_transaction")
|
|
2049
2050
|
|
|
@@ -2051,7 +2052,7 @@ class AlloydbomniAlloydbomniUserConfigPg(dict):
|
|
|
2051
2052
|
@pulumi.getter(name="maxLogicalReplicationWorkers")
|
|
2052
2053
|
def max_logical_replication_workers(self) -> Optional[builtins.int]:
|
|
2053
2054
|
"""
|
|
2054
|
-
PostgreSQL maximum logical replication workers (taken from the pool of max*parallel*workers).
|
|
2055
|
+
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.
|
|
2055
2056
|
"""
|
|
2056
2057
|
return pulumi.get(self, "max_logical_replication_workers")
|
|
2057
2058
|
|
|
@@ -2059,7 +2060,7 @@ class AlloydbomniAlloydbomniUserConfigPg(dict):
|
|
|
2059
2060
|
@pulumi.getter(name="maxParallelWorkers")
|
|
2060
2061
|
def max_parallel_workers(self) -> Optional[builtins.int]:
|
|
2061
2062
|
"""
|
|
2062
|
-
Sets the maximum number of workers that the system can support for parallel queries.
|
|
2063
|
+
Sets the maximum number of workers that the system can support for parallel queries. The default is `8` (upstream default).
|
|
2063
2064
|
"""
|
|
2064
2065
|
return pulumi.get(self, "max_parallel_workers")
|
|
2065
2066
|
|
|
@@ -2067,7 +2068,7 @@ class AlloydbomniAlloydbomniUserConfigPg(dict):
|
|
|
2067
2068
|
@pulumi.getter(name="maxParallelWorkersPerGather")
|
|
2068
2069
|
def max_parallel_workers_per_gather(self) -> Optional[builtins.int]:
|
|
2069
2070
|
"""
|
|
2070
|
-
Sets the maximum number of workers that can be started by a single Gather or Gather Merge node.
|
|
2071
|
+
Sets the maximum number of workers that can be started by a single Gather or Gather Merge node. The default is `2` (upstream default).
|
|
2071
2072
|
"""
|
|
2072
2073
|
return pulumi.get(self, "max_parallel_workers_per_gather")
|
|
2073
2074
|
|
|
@@ -2075,7 +2076,7 @@ class AlloydbomniAlloydbomniUserConfigPg(dict):
|
|
|
2075
2076
|
@pulumi.getter(name="maxPredLocksPerTransaction")
|
|
2076
2077
|
def max_pred_locks_per_transaction(self) -> Optional[builtins.int]:
|
|
2077
2078
|
"""
|
|
2078
|
-
PostgreSQL maximum predicate locks per transaction.
|
|
2079
|
+
PostgreSQL maximum predicate locks per transaction. The default is `64` (upstream default). Changing this parameter causes a service restart.
|
|
2079
2080
|
"""
|
|
2080
2081
|
return pulumi.get(self, "max_pred_locks_per_transaction")
|
|
2081
2082
|
|
|
@@ -2083,7 +2084,7 @@ class AlloydbomniAlloydbomniUserConfigPg(dict):
|
|
|
2083
2084
|
@pulumi.getter(name="maxPreparedTransactions")
|
|
2084
2085
|
def max_prepared_transactions(self) -> Optional[builtins.int]:
|
|
2085
2086
|
"""
|
|
2086
|
-
PostgreSQL maximum prepared transactions.
|
|
2087
|
+
PostgreSQL maximum prepared transactions. The default is `0`. Changing this parameter causes a service restart.
|
|
2087
2088
|
"""
|
|
2088
2089
|
return pulumi.get(self, "max_prepared_transactions")
|
|
2089
2090
|
|
|
@@ -2091,7 +2092,7 @@ class AlloydbomniAlloydbomniUserConfigPg(dict):
|
|
|
2091
2092
|
@pulumi.getter(name="maxReplicationSlots")
|
|
2092
2093
|
def max_replication_slots(self) -> Optional[builtins.int]:
|
|
2093
2094
|
"""
|
|
2094
|
-
PostgreSQL maximum replication slots.
|
|
2095
|
+
PostgreSQL maximum replication slots. The default is `20`. Changing this parameter causes a service restart.
|
|
2095
2096
|
"""
|
|
2096
2097
|
return pulumi.get(self, "max_replication_slots")
|
|
2097
2098
|
|
|
@@ -2099,7 +2100,7 @@ class AlloydbomniAlloydbomniUserConfigPg(dict):
|
|
|
2099
2100
|
@pulumi.getter(name="maxSlotWalKeepSize")
|
|
2100
2101
|
def max_slot_wal_keep_size(self) -> Optional[builtins.int]:
|
|
2101
2102
|
"""
|
|
2102
|
-
PostgreSQL maximum WAL size (MB) reserved for replication slots.
|
|
2103
|
+
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.
|
|
2103
2104
|
"""
|
|
2104
2105
|
return pulumi.get(self, "max_slot_wal_keep_size")
|
|
2105
2106
|
|
|
@@ -2107,7 +2108,7 @@ class AlloydbomniAlloydbomniUserConfigPg(dict):
|
|
|
2107
2108
|
@pulumi.getter(name="maxStackDepth")
|
|
2108
2109
|
def max_stack_depth(self) -> Optional[builtins.int]:
|
|
2109
2110
|
"""
|
|
2110
|
-
Maximum depth of the stack in bytes.
|
|
2111
|
+
Maximum depth of the stack in bytes. The default is `2097152` (upstream default).
|
|
2111
2112
|
"""
|
|
2112
2113
|
return pulumi.get(self, "max_stack_depth")
|
|
2113
2114
|
|
|
@@ -2115,7 +2116,7 @@ class AlloydbomniAlloydbomniUserConfigPg(dict):
|
|
|
2115
2116
|
@pulumi.getter(name="maxStandbyArchiveDelay")
|
|
2116
2117
|
def max_standby_archive_delay(self) -> Optional[builtins.int]:
|
|
2117
2118
|
"""
|
|
2118
|
-
Max standby archive delay in milliseconds.
|
|
2119
|
+
Max standby archive delay in milliseconds. The default is `30000` (upstream default).
|
|
2119
2120
|
"""
|
|
2120
2121
|
return pulumi.get(self, "max_standby_archive_delay")
|
|
2121
2122
|
|
|
@@ -2123,7 +2124,7 @@ class AlloydbomniAlloydbomniUserConfigPg(dict):
|
|
|
2123
2124
|
@pulumi.getter(name="maxStandbyStreamingDelay")
|
|
2124
2125
|
def max_standby_streaming_delay(self) -> Optional[builtins.int]:
|
|
2125
2126
|
"""
|
|
2126
|
-
Max standby streaming delay in milliseconds.
|
|
2127
|
+
Max standby streaming delay in milliseconds. The default is `30000` (upstream default).
|
|
2127
2128
|
"""
|
|
2128
2129
|
return pulumi.get(self, "max_standby_streaming_delay")
|
|
2129
2130
|
|
|
@@ -2131,7 +2132,7 @@ class AlloydbomniAlloydbomniUserConfigPg(dict):
|
|
|
2131
2132
|
@pulumi.getter(name="maxWalSenders")
|
|
2132
2133
|
def max_wal_senders(self) -> Optional[builtins.int]:
|
|
2133
2134
|
"""
|
|
2134
|
-
PostgreSQL maximum WAL senders.
|
|
2135
|
+
PostgreSQL maximum WAL senders. The default is `20`. Changing this parameter causes a service restart.
|
|
2135
2136
|
"""
|
|
2136
2137
|
return pulumi.get(self, "max_wal_senders")
|
|
2137
2138
|
|
|
@@ -2139,7 +2140,7 @@ class AlloydbomniAlloydbomniUserConfigPg(dict):
|
|
|
2139
2140
|
@pulumi.getter(name="maxWorkerProcesses")
|
|
2140
2141
|
def max_worker_processes(self) -> Optional[builtins.int]:
|
|
2141
2142
|
"""
|
|
2142
|
-
Sets the maximum number of background processes that the system can support.
|
|
2143
|
+
Sets the maximum number of background processes that the system can support. The default is `8`. Changing this parameter causes a service restart.
|
|
2143
2144
|
"""
|
|
2144
2145
|
return pulumi.get(self, "max_worker_processes")
|
|
2145
2146
|
|
|
@@ -2155,7 +2156,7 @@ class AlloydbomniAlloydbomniUserConfigPg(dict):
|
|
|
2155
2156
|
@pulumi.getter(name="pgPartmanBgwDotInterval")
|
|
2156
2157
|
def pg_partman_bgw_dot_interval(self) -> Optional[builtins.int]:
|
|
2157
2158
|
"""
|
|
2158
|
-
Sets the time interval to run pg_partman's scheduled tasks. Example: `3600`.
|
|
2159
|
+
Sets the time interval in seconds to run pg_partman's scheduled tasks. The default is `3600`. Example: `3600`.
|
|
2159
2160
|
"""
|
|
2160
2161
|
return pulumi.get(self, "pg_partman_bgw_dot_interval")
|
|
2161
2162
|
|
|
@@ -2171,7 +2172,7 @@ class AlloydbomniAlloydbomniUserConfigPg(dict):
|
|
|
2171
2172
|
@pulumi.getter(name="pgStatStatementsDotTrack")
|
|
2172
2173
|
def pg_stat_statements_dot_track(self) -> Optional[builtins.str]:
|
|
2173
2174
|
"""
|
|
2174
|
-
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
|
|
2175
|
+
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`.
|
|
2175
2176
|
"""
|
|
2176
2177
|
return pulumi.get(self, "pg_stat_statements_dot_track")
|
|
2177
2178
|
|
|
@@ -2195,7 +2196,7 @@ class AlloydbomniAlloydbomniUserConfigPg(dict):
|
|
|
2195
2196
|
@pulumi.getter(name="trackActivityQuerySize")
|
|
2196
2197
|
def track_activity_query_size(self) -> Optional[builtins.int]:
|
|
2197
2198
|
"""
|
|
2198
|
-
Specifies the number of bytes reserved to track the currently executing command for each active session. Example: `1024`.
|
|
2199
|
+
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`.
|
|
2199
2200
|
"""
|
|
2200
2201
|
return pulumi.get(self, "track_activity_query_size")
|
|
2201
2202
|
|
|
@@ -2203,7 +2204,7 @@ class AlloydbomniAlloydbomniUserConfigPg(dict):
|
|
|
2203
2204
|
@pulumi.getter(name="trackCommitTimestamp")
|
|
2204
2205
|
def track_commit_timestamp(self) -> Optional[builtins.str]:
|
|
2205
2206
|
"""
|
|
2206
|
-
Enum: `off`, `on`. Record commit time of transactions.
|
|
2207
|
+
Enum: `off`, `on`. Record commit time of transactions. Changing this parameter causes a service restart.
|
|
2207
2208
|
"""
|
|
2208
2209
|
return pulumi.get(self, "track_commit_timestamp")
|
|
2209
2210
|
|
|
@@ -2219,7 +2220,7 @@ class AlloydbomniAlloydbomniUserConfigPg(dict):
|
|
|
2219
2220
|
@pulumi.getter(name="trackIoTiming")
|
|
2220
2221
|
def track_io_timing(self) -> Optional[builtins.str]:
|
|
2221
2222
|
"""
|
|
2222
|
-
Enum: `off`, `on`. Enables timing of database I/O calls.
|
|
2223
|
+
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.
|
|
2223
2224
|
"""
|
|
2224
2225
|
return pulumi.get(self, "track_io_timing")
|
|
2225
2226
|
|
|
@@ -2235,7 +2236,7 @@ class AlloydbomniAlloydbomniUserConfigPg(dict):
|
|
|
2235
2236
|
@pulumi.getter(name="walWriterDelay")
|
|
2236
2237
|
def wal_writer_delay(self) -> Optional[builtins.int]:
|
|
2237
2238
|
"""
|
|
2238
|
-
WAL flush interval in milliseconds.
|
|
2239
|
+
WAL flush interval in milliseconds. The default is `200`. Setting this parameter to a lower value may negatively impact performance. Example: `50`.
|
|
2239
2240
|
"""
|
|
2240
2241
|
return pulumi.get(self, "wal_writer_delay")
|
|
2241
2242
|
|
|
@@ -6431,35 +6432,28 @@ class GovernanceAccessAccessData(dict):
|
|
|
6431
6432
|
return super().get(key, default)
|
|
6432
6433
|
|
|
6433
6434
|
def __init__(__self__, *,
|
|
6434
|
-
acls: Sequence['outputs.GovernanceAccessAccessDataAcl'],
|
|
6435
6435
|
project: builtins.str,
|
|
6436
6436
|
service_name: builtins.str,
|
|
6437
|
+
acls: Optional[Sequence['outputs.GovernanceAccessAccessDataAcl']] = None,
|
|
6437
6438
|
username: Optional[builtins.str] = None):
|
|
6438
6439
|
"""
|
|
6439
|
-
:param
|
|
6440
|
-
:param builtins.str
|
|
6441
|
-
:param
|
|
6442
|
-
:param builtins.str username: The
|
|
6440
|
+
:param builtins.str project: Project name. Changing this property forces recreation of the resource.
|
|
6441
|
+
:param builtins.str service_name: Service name. Changing this property forces recreation of the resource.
|
|
6442
|
+
:param Sequence['GovernanceAccessAccessDataAclArgs'] acls: Required property. Acls. Changing this property forces recreation of the resource.
|
|
6443
|
+
:param builtins.str username: The service username assigned to the access. Changing this property forces recreation of the resource.
|
|
6443
6444
|
"""
|
|
6444
|
-
pulumi.set(__self__, "acls", acls)
|
|
6445
6445
|
pulumi.set(__self__, "project", project)
|
|
6446
6446
|
pulumi.set(__self__, "service_name", service_name)
|
|
6447
|
+
if acls is not None:
|
|
6448
|
+
pulumi.set(__self__, "acls", acls)
|
|
6447
6449
|
if username is not None:
|
|
6448
6450
|
pulumi.set(__self__, "username", username)
|
|
6449
6451
|
|
|
6450
|
-
@property
|
|
6451
|
-
@pulumi.getter
|
|
6452
|
-
def acls(self) -> Sequence['outputs.GovernanceAccessAccessDataAcl']:
|
|
6453
|
-
"""
|
|
6454
|
-
The permissions granted to the assigned service user. Maximum length: `54`. Changing this property forces recreation of the resource.
|
|
6455
|
-
"""
|
|
6456
|
-
return pulumi.get(self, "acls")
|
|
6457
|
-
|
|
6458
6452
|
@property
|
|
6459
6453
|
@pulumi.getter
|
|
6460
6454
|
def project(self) -> builtins.str:
|
|
6461
6455
|
"""
|
|
6462
|
-
|
|
6456
|
+
Project name. Changing this property forces recreation of the resource.
|
|
6463
6457
|
"""
|
|
6464
6458
|
return pulumi.get(self, "project")
|
|
6465
6459
|
|
|
@@ -6467,15 +6461,23 @@ class GovernanceAccessAccessData(dict):
|
|
|
6467
6461
|
@pulumi.getter(name="serviceName")
|
|
6468
6462
|
def service_name(self) -> builtins.str:
|
|
6469
6463
|
"""
|
|
6470
|
-
|
|
6464
|
+
Service name. Changing this property forces recreation of the resource.
|
|
6471
6465
|
"""
|
|
6472
6466
|
return pulumi.get(self, "service_name")
|
|
6473
6467
|
|
|
6468
|
+
@property
|
|
6469
|
+
@pulumi.getter
|
|
6470
|
+
def acls(self) -> Optional[Sequence['outputs.GovernanceAccessAccessDataAcl']]:
|
|
6471
|
+
"""
|
|
6472
|
+
Required property. Acls. Changing this property forces recreation of the resource.
|
|
6473
|
+
"""
|
|
6474
|
+
return pulumi.get(self, "acls")
|
|
6475
|
+
|
|
6474
6476
|
@property
|
|
6475
6477
|
@pulumi.getter
|
|
6476
6478
|
def username(self) -> Optional[builtins.str]:
|
|
6477
6479
|
"""
|
|
6478
|
-
The
|
|
6480
|
+
The service username assigned to the access. Changing this property forces recreation of the resource.
|
|
6479
6481
|
"""
|
|
6480
6482
|
return pulumi.get(self, "username")
|
|
6481
6483
|
|
|
@@ -6515,14 +6517,14 @@ class GovernanceAccessAccessDataAcl(dict):
|
|
|
6515
6517
|
pattern_type: Optional[builtins.str] = None,
|
|
6516
6518
|
principal: Optional[builtins.str] = None):
|
|
6517
6519
|
"""
|
|
6518
|
-
:param builtins.str operation:
|
|
6519
|
-
:param builtins.str permission_type:
|
|
6520
|
-
:param builtins.str resource_name:
|
|
6521
|
-
:param builtins.str resource_type:
|
|
6520
|
+
:param builtins.str operation: An enumeration. The possible values are `Read` and `Write`. Changing this property forces recreation of the resource.
|
|
6521
|
+
:param builtins.str permission_type: An enumeration. The possible value is `ALLOW`. Changing this property forces recreation of the resource.
|
|
6522
|
+
:param builtins.str resource_name: Acl resource name. Maximum length: `256`. Changing this property forces recreation of the resource.
|
|
6523
|
+
:param builtins.str resource_type: An enumeration. The possible value is `Topic`. Changing this property forces recreation of the resource.
|
|
6522
6524
|
:param 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.
|
|
6523
|
-
:param builtins.str id:
|
|
6524
|
-
:param builtins.str pattern_type:
|
|
6525
|
-
:param builtins.str principal:
|
|
6525
|
+
:param builtins.str id: Acl ID.
|
|
6526
|
+
:param builtins.str pattern_type: An enumeration. The possible value is `LITERAL`.
|
|
6527
|
+
:param builtins.str principal: Acl principal.
|
|
6526
6528
|
"""
|
|
6527
6529
|
pulumi.set(__self__, "operation", operation)
|
|
6528
6530
|
pulumi.set(__self__, "permission_type", permission_type)
|
|
@@ -6541,7 +6543,7 @@ class GovernanceAccessAccessDataAcl(dict):
|
|
|
6541
6543
|
@pulumi.getter
|
|
6542
6544
|
def operation(self) -> builtins.str:
|
|
6543
6545
|
"""
|
|
6544
|
-
|
|
6546
|
+
An enumeration. The possible values are `Read` and `Write`. Changing this property forces recreation of the resource.
|
|
6545
6547
|
"""
|
|
6546
6548
|
return pulumi.get(self, "operation")
|
|
6547
6549
|
|
|
@@ -6549,7 +6551,7 @@ class GovernanceAccessAccessDataAcl(dict):
|
|
|
6549
6551
|
@pulumi.getter(name="permissionType")
|
|
6550
6552
|
def permission_type(self) -> builtins.str:
|
|
6551
6553
|
"""
|
|
6552
|
-
|
|
6554
|
+
An enumeration. The possible value is `ALLOW`. Changing this property forces recreation of the resource.
|
|
6553
6555
|
"""
|
|
6554
6556
|
return pulumi.get(self, "permission_type")
|
|
6555
6557
|
|
|
@@ -6557,7 +6559,7 @@ class GovernanceAccessAccessDataAcl(dict):
|
|
|
6557
6559
|
@pulumi.getter(name="resourceName")
|
|
6558
6560
|
def resource_name(self) -> builtins.str:
|
|
6559
6561
|
"""
|
|
6560
|
-
|
|
6562
|
+
Acl resource name. Maximum length: `256`. Changing this property forces recreation of the resource.
|
|
6561
6563
|
"""
|
|
6562
6564
|
return pulumi.get(self, "resource_name")
|
|
6563
6565
|
|
|
@@ -6565,7 +6567,7 @@ class GovernanceAccessAccessDataAcl(dict):
|
|
|
6565
6567
|
@pulumi.getter(name="resourceType")
|
|
6566
6568
|
def resource_type(self) -> builtins.str:
|
|
6567
6569
|
"""
|
|
6568
|
-
|
|
6570
|
+
An enumeration. The possible value is `Topic`. Changing this property forces recreation of the resource.
|
|
6569
6571
|
"""
|
|
6570
6572
|
return pulumi.get(self, "resource_type")
|
|
6571
6573
|
|
|
@@ -6581,7 +6583,7 @@ class GovernanceAccessAccessDataAcl(dict):
|
|
|
6581
6583
|
@pulumi.getter
|
|
6582
6584
|
def id(self) -> Optional[builtins.str]:
|
|
6583
6585
|
"""
|
|
6584
|
-
|
|
6586
|
+
Acl ID.
|
|
6585
6587
|
"""
|
|
6586
6588
|
return pulumi.get(self, "id")
|
|
6587
6589
|
|
|
@@ -6589,7 +6591,7 @@ class GovernanceAccessAccessDataAcl(dict):
|
|
|
6589
6591
|
@pulumi.getter(name="patternType")
|
|
6590
6592
|
def pattern_type(self) -> Optional[builtins.str]:
|
|
6591
6593
|
"""
|
|
6592
|
-
|
|
6594
|
+
An enumeration. The possible value is `LITERAL`.
|
|
6593
6595
|
"""
|
|
6594
6596
|
return pulumi.get(self, "pattern_type")
|
|
6595
6597
|
|
|
@@ -6597,11 +6599,66 @@ class GovernanceAccessAccessDataAcl(dict):
|
|
|
6597
6599
|
@pulumi.getter
|
|
6598
6600
|
def principal(self) -> Optional[builtins.str]:
|
|
6599
6601
|
"""
|
|
6600
|
-
|
|
6602
|
+
Acl principal.
|
|
6601
6603
|
"""
|
|
6602
6604
|
return pulumi.get(self, "principal")
|
|
6603
6605
|
|
|
6604
6606
|
|
|
6607
|
+
@pulumi.output_type
|
|
6608
|
+
class GovernanceAccessTimeouts(dict):
|
|
6609
|
+
def __init__(__self__, *,
|
|
6610
|
+
create: Optional[builtins.str] = None,
|
|
6611
|
+
delete: Optional[builtins.str] = None,
|
|
6612
|
+
read: Optional[builtins.str] = None,
|
|
6613
|
+
update: Optional[builtins.str] = None):
|
|
6614
|
+
"""
|
|
6615
|
+
:param 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).
|
|
6616
|
+
:param 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.
|
|
6617
|
+
:param 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.
|
|
6618
|
+
:param 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).
|
|
6619
|
+
"""
|
|
6620
|
+
if create is not None:
|
|
6621
|
+
pulumi.set(__self__, "create", create)
|
|
6622
|
+
if delete is not None:
|
|
6623
|
+
pulumi.set(__self__, "delete", delete)
|
|
6624
|
+
if read is not None:
|
|
6625
|
+
pulumi.set(__self__, "read", read)
|
|
6626
|
+
if update is not None:
|
|
6627
|
+
pulumi.set(__self__, "update", update)
|
|
6628
|
+
|
|
6629
|
+
@property
|
|
6630
|
+
@pulumi.getter
|
|
6631
|
+
def create(self) -> Optional[builtins.str]:
|
|
6632
|
+
"""
|
|
6633
|
+
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).
|
|
6634
|
+
"""
|
|
6635
|
+
return pulumi.get(self, "create")
|
|
6636
|
+
|
|
6637
|
+
@property
|
|
6638
|
+
@pulumi.getter
|
|
6639
|
+
def delete(self) -> Optional[builtins.str]:
|
|
6640
|
+
"""
|
|
6641
|
+
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.
|
|
6642
|
+
"""
|
|
6643
|
+
return pulumi.get(self, "delete")
|
|
6644
|
+
|
|
6645
|
+
@property
|
|
6646
|
+
@pulumi.getter
|
|
6647
|
+
def read(self) -> Optional[builtins.str]:
|
|
6648
|
+
"""
|
|
6649
|
+
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.
|
|
6650
|
+
"""
|
|
6651
|
+
return pulumi.get(self, "read")
|
|
6652
|
+
|
|
6653
|
+
@property
|
|
6654
|
+
@pulumi.getter
|
|
6655
|
+
def update(self) -> Optional[builtins.str]:
|
|
6656
|
+
"""
|
|
6657
|
+
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).
|
|
6658
|
+
"""
|
|
6659
|
+
return pulumi.get(self, "update")
|
|
6660
|
+
|
|
6661
|
+
|
|
6605
6662
|
@pulumi.output_type
|
|
6606
6663
|
class GrafanaComponent(dict):
|
|
6607
6664
|
@staticmethod
|
|
@@ -18749,6 +18806,8 @@ class OpenSearchOpensearchUserConfigOpensearch(dict):
|
|
|
18749
18806
|
suggest = "enable_searchable_snapshots"
|
|
18750
18807
|
elif key == "enableSecurityAudit":
|
|
18751
18808
|
suggest = "enable_security_audit"
|
|
18809
|
+
elif key == "enableSnapshotApi":
|
|
18810
|
+
suggest = "enable_snapshot_api"
|
|
18752
18811
|
elif key == "httpMaxContentLength":
|
|
18753
18812
|
suggest = "http_max_content_length"
|
|
18754
18813
|
elif key == "httpMaxHeaderSize":
|
|
@@ -18852,6 +18911,7 @@ class OpenSearchOpensearchUserConfigOpensearch(dict):
|
|
|
18852
18911
|
enable_remote_backed_storage: Optional[builtins.bool] = None,
|
|
18853
18912
|
enable_searchable_snapshots: Optional[builtins.bool] = None,
|
|
18854
18913
|
enable_security_audit: Optional[builtins.bool] = None,
|
|
18914
|
+
enable_snapshot_api: Optional[builtins.bool] = None,
|
|
18855
18915
|
http_max_content_length: Optional[builtins.int] = None,
|
|
18856
18916
|
http_max_header_size: Optional[builtins.int] = None,
|
|
18857
18917
|
http_max_initial_line_length: Optional[builtins.int] = None,
|
|
@@ -18905,6 +18965,7 @@ class OpenSearchOpensearchUserConfigOpensearch(dict):
|
|
|
18905
18965
|
:param builtins.bool enable_remote_backed_storage: Enable remote-backed storage.
|
|
18906
18966
|
:param builtins.bool enable_searchable_snapshots: Enable searchable snapshots.
|
|
18907
18967
|
:param builtins.bool enable_security_audit: Enable/Disable security audit.
|
|
18968
|
+
:param builtins.bool enable_snapshot_api: Enable/Disable snapshot API for custom repositories, this requires security management to be enabled.
|
|
18908
18969
|
:param builtins.int http_max_content_length: Maximum content length for HTTP requests to the OpenSearch HTTP API, in bytes.
|
|
18909
18970
|
:param builtins.int http_max_header_size: The max size of allowed headers, in bytes. Example: `8192`.
|
|
18910
18971
|
:param builtins.int http_max_initial_line_length: The max length of an HTTP URL, in bytes. Example: `4096`.
|
|
@@ -18972,6 +19033,8 @@ class OpenSearchOpensearchUserConfigOpensearch(dict):
|
|
|
18972
19033
|
pulumi.set(__self__, "enable_searchable_snapshots", enable_searchable_snapshots)
|
|
18973
19034
|
if enable_security_audit is not None:
|
|
18974
19035
|
pulumi.set(__self__, "enable_security_audit", enable_security_audit)
|
|
19036
|
+
if enable_snapshot_api is not None:
|
|
19037
|
+
pulumi.set(__self__, "enable_snapshot_api", enable_snapshot_api)
|
|
18975
19038
|
if http_max_content_length is not None:
|
|
18976
19039
|
pulumi.set(__self__, "http_max_content_length", http_max_content_length)
|
|
18977
19040
|
if http_max_header_size is not None:
|
|
@@ -19160,6 +19223,14 @@ class OpenSearchOpensearchUserConfigOpensearch(dict):
|
|
|
19160
19223
|
"""
|
|
19161
19224
|
return pulumi.get(self, "enable_security_audit")
|
|
19162
19225
|
|
|
19226
|
+
@property
|
|
19227
|
+
@pulumi.getter(name="enableSnapshotApi")
|
|
19228
|
+
def enable_snapshot_api(self) -> Optional[builtins.bool]:
|
|
19229
|
+
"""
|
|
19230
|
+
Enable/Disable snapshot API for custom repositories, this requires security management to be enabled.
|
|
19231
|
+
"""
|
|
19232
|
+
return pulumi.get(self, "enable_snapshot_api")
|
|
19233
|
+
|
|
19163
19234
|
@property
|
|
19164
19235
|
@pulumi.getter(name="httpMaxContentLength")
|
|
19165
19236
|
def http_max_content_length(self) -> Optional[builtins.int]:
|
|
@@ -22529,7 +22600,7 @@ class PgPgUserConfig(dict):
|
|
|
22529
22600
|
:param 'PgPgUserConfigPgQualstatsArgs' pg_qualstats: System-wide settings for the pg*qualstats extension
|
|
22530
22601
|
:param builtins.bool pg_read_replica: Should the service which is being forked be a read replica (deprecated, use read_replica service integration instead).
|
|
22531
22602
|
:param 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`.
|
|
22532
|
-
:param builtins.bool pg_stat_monitor_enable: Enable the pg*stat*monitor extension.
|
|
22603
|
+
:param 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`.
|
|
22533
22604
|
:param builtins.str pg_version: Enum: `10`, `11`, `12`, `13`, `14`, `15`, `16`, `17`, and newer. PostgreSQL major version.
|
|
22534
22605
|
:param 'PgPgUserConfigPgauditArgs' pgaudit: System-wide settings for the pgaudit extension
|
|
22535
22606
|
:param 'PgPgUserConfigPgbouncerArgs' pgbouncer: PGBouncer connection pooling settings
|
|
@@ -22541,12 +22612,12 @@ class PgPgUserConfig(dict):
|
|
|
22541
22612
|
:param 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`.
|
|
22542
22613
|
:param builtins.bool service_log: Store logs for the service so that they are available in the HTTP API and console.
|
|
22543
22614
|
:param 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`.
|
|
22544
|
-
:param 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`.
|
|
22615
|
+
:param 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`.
|
|
22545
22616
|
:param builtins.bool static_ips: Use static public IP addresses.
|
|
22546
22617
|
:param builtins.str synchronous_replication: Enum: `off`, `quorum`. Synchronous replication type. Note that the service plan also needs to support synchronous replication.
|
|
22547
22618
|
:param 'PgPgUserConfigTimescaledbArgs' timescaledb: System-wide settings for the timescaledb extension
|
|
22548
22619
|
:param builtins.str variant: Enum: `aiven`, `timescale`. Variant of the PostgreSQL service, may affect the features that are exposed by default.
|
|
22549
|
-
:param 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.
|
|
22620
|
+
:param 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`.
|
|
22550
22621
|
"""
|
|
22551
22622
|
if additional_backup_regions is not None:
|
|
22552
22623
|
pulumi.set(__self__, "additional_backup_regions", additional_backup_regions)
|
|
@@ -22731,7 +22802,7 @@ class PgPgUserConfig(dict):
|
|
|
22731
22802
|
@pulumi.getter(name="pgStatMonitorEnable")
|
|
22732
22803
|
def pg_stat_monitor_enable(self) -> Optional[builtins.bool]:
|
|
22733
22804
|
"""
|
|
22734
|
-
Enable the pg*stat*monitor extension.
|
|
22805
|
+
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`.
|
|
22735
22806
|
"""
|
|
22736
22807
|
return pulumi.get(self, "pg_stat_monitor_enable")
|
|
22737
22808
|
|
|
@@ -22827,7 +22898,7 @@ class PgPgUserConfig(dict):
|
|
|
22827
22898
|
@pulumi.getter(name="sharedBuffersPercentage")
|
|
22828
22899
|
def shared_buffers_percentage(self) -> Optional[builtins.float]:
|
|
22829
22900
|
"""
|
|
22830
|
-
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`.
|
|
22901
|
+
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`.
|
|
22831
22902
|
"""
|
|
22832
22903
|
return pulumi.get(self, "shared_buffers_percentage")
|
|
22833
22904
|
|
|
@@ -22867,7 +22938,7 @@ class PgPgUserConfig(dict):
|
|
|
22867
22938
|
@pulumi.getter(name="workMem")
|
|
22868
22939
|
def work_mem(self) -> Optional[builtins.int]:
|
|
22869
22940
|
"""
|
|
22870
|
-
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.
|
|
22941
|
+
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`.
|
|
22871
22942
|
"""
|
|
22872
22943
|
return pulumi.get(self, "work_mem")
|
|
22873
22944
|
|
|
@@ -23199,56 +23270,56 @@ class PgPgUserConfigPg(dict):
|
|
|
23199
23270
|
wal_sender_timeout: Optional[builtins.int] = None,
|
|
23200
23271
|
wal_writer_delay: Optional[builtins.int] = None):
|
|
23201
23272
|
"""
|
|
23202
|
-
:param 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.
|
|
23203
|
-
:param 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
|
|
23204
|
-
:param 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.
|
|
23205
|
-
:param 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
|
|
23206
|
-
:param builtins.int autovacuum_naptime: Specifies the minimum delay between autovacuum runs on any given database. The delay is measured in seconds
|
|
23207
|
-
:param builtins.int autovacuum_vacuum_cost_delay: Specifies the cost delay value that will be used in automatic VACUUM operations. If
|
|
23208
|
-
:param builtins.int autovacuum_vacuum_cost_limit: Specifies the cost limit value that will be used in automatic VACUUM operations. If
|
|
23209
|
-
:param 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.
|
|
23210
|
-
:param 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
|
|
23211
|
-
:param builtins.int bgwriter_delay: Specifies the delay between activity rounds for the background writer in milliseconds.
|
|
23212
|
-
:param 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
|
|
23213
|
-
:param 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.
|
|
23214
|
-
:param 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
|
|
23215
|
-
:param 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`.
|
|
23216
|
-
:param builtins.str default_toast_compression: Enum: `lz4`, `pglz`. Specifies the default TOAST compression method for values of compressible columns
|
|
23273
|
+
:param 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`.
|
|
23274
|
+
:param 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`.
|
|
23275
|
+
:param 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`.
|
|
23276
|
+
:param 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.
|
|
23277
|
+
:param 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`.
|
|
23278
|
+
:param 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).
|
|
23279
|
+
:param 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).
|
|
23280
|
+
:param 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`.
|
|
23281
|
+
:param 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`.
|
|
23282
|
+
:param builtins.int bgwriter_delay: Specifies the delay between activity rounds for the background writer in milliseconds. The default is `200`. Example: `200`.
|
|
23283
|
+
:param 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`.
|
|
23284
|
+
:param 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`.
|
|
23285
|
+
:param 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`.
|
|
23286
|
+
:param 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`.
|
|
23287
|
+
:param 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+.
|
|
23217
23288
|
:param builtins.int idle_in_transaction_session_timeout: Time out sessions with open transactions after this number of milliseconds.
|
|
23218
23289
|
:param builtins.bool jit: Controls system-wide use of Just-in-Time Compilation (JIT).
|
|
23219
|
-
:param 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
|
|
23290
|
+
:param 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`.
|
|
23220
23291
|
:param 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.
|
|
23221
23292
|
:param 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.
|
|
23222
23293
|
:param builtins.int log_min_duration_statement: Log statements that take more than this number of milliseconds to run, -1 disables.
|
|
23223
23294
|
:param builtins.int log_temp_files: Log statements for each temporary file created larger than this number of kilobytes, -1 disables.
|
|
23224
|
-
:param builtins.int max_files_per_process: PostgreSQL maximum number of files that can be open per process.
|
|
23225
|
-
:param builtins.int max_locks_per_transaction: PostgreSQL maximum locks per transaction.
|
|
23226
|
-
:param builtins.int max_logical_replication_workers: PostgreSQL maximum logical replication workers (taken from the pool of max*parallel*workers).
|
|
23227
|
-
:param builtins.int max_parallel_workers: Sets the maximum number of workers that the system can support for parallel queries.
|
|
23228
|
-
:param 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.
|
|
23229
|
-
:param builtins.int max_pred_locks_per_transaction: PostgreSQL maximum predicate locks per transaction.
|
|
23230
|
-
:param builtins.int max_prepared_transactions: PostgreSQL maximum prepared transactions.
|
|
23231
|
-
:param builtins.int max_replication_slots: PostgreSQL maximum replication slots.
|
|
23232
|
-
:param builtins.int max_slot_wal_keep_size: PostgreSQL maximum WAL size (MB) reserved for replication slots.
|
|
23233
|
-
:param builtins.int max_stack_depth: Maximum depth of the stack in bytes.
|
|
23234
|
-
:param builtins.int max_standby_archive_delay: Max standby archive delay in milliseconds.
|
|
23235
|
-
:param builtins.int max_standby_streaming_delay: Max standby streaming delay in milliseconds.
|
|
23236
|
-
:param builtins.int max_wal_senders: PostgreSQL maximum WAL senders.
|
|
23237
|
-
:param builtins.int max_worker_processes: Sets the maximum number of background processes that the system can support.
|
|
23295
|
+
:param 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.
|
|
23296
|
+
:param builtins.int max_locks_per_transaction: PostgreSQL maximum locks per transaction. Changing this parameter causes a service restart.
|
|
23297
|
+
:param 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.
|
|
23298
|
+
:param 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).
|
|
23299
|
+
:param 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).
|
|
23300
|
+
:param 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.
|
|
23301
|
+
:param builtins.int max_prepared_transactions: PostgreSQL maximum prepared transactions. The default is `0`. Changing this parameter causes a service restart.
|
|
23302
|
+
:param builtins.int max_replication_slots: PostgreSQL maximum replication slots. The default is `20`. Changing this parameter causes a service restart.
|
|
23303
|
+
:param 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.
|
|
23304
|
+
:param builtins.int max_stack_depth: Maximum depth of the stack in bytes. The default is `2097152` (upstream default).
|
|
23305
|
+
:param builtins.int max_standby_archive_delay: Max standby archive delay in milliseconds. The default is `30000` (upstream default).
|
|
23306
|
+
:param builtins.int max_standby_streaming_delay: Max standby streaming delay in milliseconds. The default is `30000` (upstream default).
|
|
23307
|
+
:param builtins.int max_wal_senders: PostgreSQL maximum WAL senders. The default is `20`. Changing this parameter causes a service restart.
|
|
23308
|
+
:param 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.
|
|
23238
23309
|
:param builtins.str password_encryption: Enum: `md5`, `scram-sha-256`. Chooses the algorithm for encrypting passwords. Default: `md5`.
|
|
23239
|
-
:param builtins.int pg_partman_bgw_dot_interval: Sets the time interval to run pg_partman's scheduled tasks. Example: `3600`.
|
|
23310
|
+
:param 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`.
|
|
23240
23311
|
:param builtins.str pg_partman_bgw_dot_role: Controls which role to use for pg_partman's scheduled background tasks. Example: `myrolename`.
|
|
23241
|
-
:param builtins.bool pg_stat_monitor_dot_pgsm_enable_query_plan: Enables or disables query plan monitoring.
|
|
23242
|
-
:param builtins.int pg_stat_monitor_dot_pgsm_max_buckets: Sets the maximum number of buckets. Example: `10`.
|
|
23243
|
-
:param 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
|
|
23312
|
+
:param 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+.
|
|
23313
|
+
:param 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`.
|
|
23314
|
+
:param 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`.
|
|
23244
23315
|
:param builtins.int temp_file_limit: PostgreSQL temporary file limit in KiB, -1 for unlimited. Example: `5000000`.
|
|
23245
23316
|
:param builtins.str timezone: PostgreSQL service timezone. Example: `Europe/Helsinki`.
|
|
23246
|
-
:param builtins.int track_activity_query_size: Specifies the number of bytes reserved to track the currently executing command for each active session. Example: `1024`.
|
|
23247
|
-
:param builtins.str track_commit_timestamp: Enum: `off`, `on`. Record commit time of transactions.
|
|
23317
|
+
:param 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`.
|
|
23318
|
+
:param builtins.str track_commit_timestamp: Enum: `off`, `on`. Record commit time of transactions. Changing this parameter causes a service restart.
|
|
23248
23319
|
:param builtins.str track_functions: Enum: `all`, `none`, `pl`. Enables tracking of function call counts and time used.
|
|
23249
|
-
:param builtins.str track_io_timing: Enum: `off`, `on`. Enables timing of database I/O calls.
|
|
23320
|
+
:param 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.
|
|
23250
23321
|
:param 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`.
|
|
23251
|
-
:param builtins.int wal_writer_delay: WAL flush interval in milliseconds.
|
|
23322
|
+
:param 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`.
|
|
23252
23323
|
"""
|
|
23253
23324
|
if autovacuum_analyze_scale_factor is not None:
|
|
23254
23325
|
pulumi.set(__self__, "autovacuum_analyze_scale_factor", autovacuum_analyze_scale_factor)
|
|
@@ -23355,7 +23426,7 @@ class PgPgUserConfigPg(dict):
|
|
|
23355
23426
|
@pulumi.getter(name="autovacuumAnalyzeScaleFactor")
|
|
23356
23427
|
def autovacuum_analyze_scale_factor(self) -> Optional[builtins.float]:
|
|
23357
23428
|
"""
|
|
23358
|
-
Specifies a fraction of the table size to add to autovacuum*analyze*threshold when deciding whether to trigger an ANALYZE.
|
|
23429
|
+
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`.
|
|
23359
23430
|
"""
|
|
23360
23431
|
return pulumi.get(self, "autovacuum_analyze_scale_factor")
|
|
23361
23432
|
|
|
@@ -23363,7 +23434,7 @@ class PgPgUserConfigPg(dict):
|
|
|
23363
23434
|
@pulumi.getter(name="autovacuumAnalyzeThreshold")
|
|
23364
23435
|
def autovacuum_analyze_threshold(self) -> Optional[builtins.int]:
|
|
23365
23436
|
"""
|
|
23366
|
-
Specifies the minimum number of inserted, updated or deleted tuples needed to trigger an ANALYZE in any one table. The default is 50
|
|
23437
|
+
Specifies the minimum number of inserted, updated or deleted tuples needed to trigger an ANALYZE in any one table. The default is `50`.
|
|
23367
23438
|
"""
|
|
23368
23439
|
return pulumi.get(self, "autovacuum_analyze_threshold")
|
|
23369
23440
|
|
|
@@ -23371,7 +23442,7 @@ class PgPgUserConfigPg(dict):
|
|
|
23371
23442
|
@pulumi.getter(name="autovacuumFreezeMaxAge")
|
|
23372
23443
|
def autovacuum_freeze_max_age(self) -> Optional[builtins.int]:
|
|
23373
23444
|
"""
|
|
23374
|
-
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.
|
|
23445
|
+
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`.
|
|
23375
23446
|
"""
|
|
23376
23447
|
return pulumi.get(self, "autovacuum_freeze_max_age")
|
|
23377
23448
|
|
|
@@ -23379,7 +23450,7 @@ class PgPgUserConfigPg(dict):
|
|
|
23379
23450
|
@pulumi.getter(name="autovacuumMaxWorkers")
|
|
23380
23451
|
def autovacuum_max_workers(self) -> Optional[builtins.int]:
|
|
23381
23452
|
"""
|
|
23382
|
-
Specifies the maximum number of autovacuum processes (other than the autovacuum launcher) that may be running at any one time. The default is
|
|
23453
|
+
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.
|
|
23383
23454
|
"""
|
|
23384
23455
|
return pulumi.get(self, "autovacuum_max_workers")
|
|
23385
23456
|
|
|
@@ -23387,7 +23458,7 @@ class PgPgUserConfigPg(dict):
|
|
|
23387
23458
|
@pulumi.getter(name="autovacuumNaptime")
|
|
23388
23459
|
def autovacuum_naptime(self) -> Optional[builtins.int]:
|
|
23389
23460
|
"""
|
|
23390
|
-
Specifies the minimum delay between autovacuum runs on any given database. The delay is measured in seconds
|
|
23461
|
+
Specifies the minimum delay between autovacuum runs on any given database. The delay is measured in seconds. The default is `60`.
|
|
23391
23462
|
"""
|
|
23392
23463
|
return pulumi.get(self, "autovacuum_naptime")
|
|
23393
23464
|
|
|
@@ -23395,7 +23466,7 @@ class PgPgUserConfigPg(dict):
|
|
|
23395
23466
|
@pulumi.getter(name="autovacuumVacuumCostDelay")
|
|
23396
23467
|
def autovacuum_vacuum_cost_delay(self) -> Optional[builtins.int]:
|
|
23397
23468
|
"""
|
|
23398
|
-
Specifies the cost delay value that will be used in automatic VACUUM operations. If
|
|
23469
|
+
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).
|
|
23399
23470
|
"""
|
|
23400
23471
|
return pulumi.get(self, "autovacuum_vacuum_cost_delay")
|
|
23401
23472
|
|
|
@@ -23403,7 +23474,7 @@ class PgPgUserConfigPg(dict):
|
|
|
23403
23474
|
@pulumi.getter(name="autovacuumVacuumCostLimit")
|
|
23404
23475
|
def autovacuum_vacuum_cost_limit(self) -> Optional[builtins.int]:
|
|
23405
23476
|
"""
|
|
23406
|
-
Specifies the cost limit value that will be used in automatic VACUUM operations. If
|
|
23477
|
+
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).
|
|
23407
23478
|
"""
|
|
23408
23479
|
return pulumi.get(self, "autovacuum_vacuum_cost_limit")
|
|
23409
23480
|
|
|
@@ -23411,7 +23482,7 @@ class PgPgUserConfigPg(dict):
|
|
|
23411
23482
|
@pulumi.getter(name="autovacuumVacuumScaleFactor")
|
|
23412
23483
|
def autovacuum_vacuum_scale_factor(self) -> Optional[builtins.float]:
|
|
23413
23484
|
"""
|
|
23414
|
-
Specifies a fraction of the table size to add to autovacuum*vacuum*threshold when deciding whether to trigger a VACUUM.
|
|
23485
|
+
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`.
|
|
23415
23486
|
"""
|
|
23416
23487
|
return pulumi.get(self, "autovacuum_vacuum_scale_factor")
|
|
23417
23488
|
|
|
@@ -23419,7 +23490,7 @@ class PgPgUserConfigPg(dict):
|
|
|
23419
23490
|
@pulumi.getter(name="autovacuumVacuumThreshold")
|
|
23420
23491
|
def autovacuum_vacuum_threshold(self) -> Optional[builtins.int]:
|
|
23421
23492
|
"""
|
|
23422
|
-
Specifies the minimum number of updated or deleted tuples needed to trigger a VACUUM in any one table. The default is 50
|
|
23493
|
+
Specifies the minimum number of updated or deleted tuples needed to trigger a VACUUM in any one table. The default is `50`.
|
|
23423
23494
|
"""
|
|
23424
23495
|
return pulumi.get(self, "autovacuum_vacuum_threshold")
|
|
23425
23496
|
|
|
@@ -23427,7 +23498,7 @@ class PgPgUserConfigPg(dict):
|
|
|
23427
23498
|
@pulumi.getter(name="bgwriterDelay")
|
|
23428
23499
|
def bgwriter_delay(self) -> Optional[builtins.int]:
|
|
23429
23500
|
"""
|
|
23430
|
-
Specifies the delay between activity rounds for the background writer in milliseconds.
|
|
23501
|
+
Specifies the delay between activity rounds for the background writer in milliseconds. The default is `200`. Example: `200`.
|
|
23431
23502
|
"""
|
|
23432
23503
|
return pulumi.get(self, "bgwriter_delay")
|
|
23433
23504
|
|
|
@@ -23435,7 +23506,7 @@ class PgPgUserConfigPg(dict):
|
|
|
23435
23506
|
@pulumi.getter(name="bgwriterFlushAfter")
|
|
23436
23507
|
def bgwriter_flush_after(self) -> Optional[builtins.int]:
|
|
23437
23508
|
"""
|
|
23438
|
-
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
|
|
23509
|
+
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`.
|
|
23439
23510
|
"""
|
|
23440
23511
|
return pulumi.get(self, "bgwriter_flush_after")
|
|
23441
23512
|
|
|
@@ -23443,7 +23514,7 @@ class PgPgUserConfigPg(dict):
|
|
|
23443
23514
|
@pulumi.getter(name="bgwriterLruMaxpages")
|
|
23444
23515
|
def bgwriter_lru_maxpages(self) -> Optional[builtins.int]:
|
|
23445
23516
|
"""
|
|
23446
|
-
In each round, no more than this many buffers will be written by the background writer. Setting this to zero disables background writing.
|
|
23517
|
+
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`.
|
|
23447
23518
|
"""
|
|
23448
23519
|
return pulumi.get(self, "bgwriter_lru_maxpages")
|
|
23449
23520
|
|
|
@@ -23451,7 +23522,7 @@ class PgPgUserConfigPg(dict):
|
|
|
23451
23522
|
@pulumi.getter(name="bgwriterLruMultiplier")
|
|
23452
23523
|
def bgwriter_lru_multiplier(self) -> Optional[builtins.float]:
|
|
23453
23524
|
"""
|
|
23454
|
-
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
|
|
23525
|
+
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`.
|
|
23455
23526
|
"""
|
|
23456
23527
|
return pulumi.get(self, "bgwriter_lru_multiplier")
|
|
23457
23528
|
|
|
@@ -23459,7 +23530,7 @@ class PgPgUserConfigPg(dict):
|
|
|
23459
23530
|
@pulumi.getter(name="deadlockTimeout")
|
|
23460
23531
|
def deadlock_timeout(self) -> Optional[builtins.int]:
|
|
23461
23532
|
"""
|
|
23462
|
-
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`.
|
|
23533
|
+
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`.
|
|
23463
23534
|
"""
|
|
23464
23535
|
return pulumi.get(self, "deadlock_timeout")
|
|
23465
23536
|
|
|
@@ -23467,7 +23538,7 @@ class PgPgUserConfigPg(dict):
|
|
|
23467
23538
|
@pulumi.getter(name="defaultToastCompression")
|
|
23468
23539
|
def default_toast_compression(self) -> Optional[builtins.str]:
|
|
23469
23540
|
"""
|
|
23470
|
-
Enum: `lz4`, `pglz`. Specifies the default TOAST compression method for values of compressible columns
|
|
23541
|
+
Enum: `lz4`, `pglz`. Specifies the default TOAST compression method for values of compressible columns. The default is `lz4`. Only available for PostgreSQL 14+.
|
|
23471
23542
|
"""
|
|
23472
23543
|
return pulumi.get(self, "default_toast_compression")
|
|
23473
23544
|
|
|
@@ -23491,7 +23562,7 @@ class PgPgUserConfigPg(dict):
|
|
|
23491
23562
|
@pulumi.getter(name="logAutovacuumMinDuration")
|
|
23492
23563
|
def log_autovacuum_min_duration(self) -> Optional[builtins.int]:
|
|
23493
23564
|
"""
|
|
23494
|
-
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
|
|
23565
|
+
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`.
|
|
23495
23566
|
"""
|
|
23496
23567
|
return pulumi.get(self, "log_autovacuum_min_duration")
|
|
23497
23568
|
|
|
@@ -23531,7 +23602,7 @@ class PgPgUserConfigPg(dict):
|
|
|
23531
23602
|
@pulumi.getter(name="maxFilesPerProcess")
|
|
23532
23603
|
def max_files_per_process(self) -> Optional[builtins.int]:
|
|
23533
23604
|
"""
|
|
23534
|
-
PostgreSQL maximum number of files that can be open per process.
|
|
23605
|
+
PostgreSQL maximum number of files that can be open per process. The default is `1000` (upstream default). Changing this parameter causes a service restart.
|
|
23535
23606
|
"""
|
|
23536
23607
|
return pulumi.get(self, "max_files_per_process")
|
|
23537
23608
|
|
|
@@ -23539,7 +23610,7 @@ class PgPgUserConfigPg(dict):
|
|
|
23539
23610
|
@pulumi.getter(name="maxLocksPerTransaction")
|
|
23540
23611
|
def max_locks_per_transaction(self) -> Optional[builtins.int]:
|
|
23541
23612
|
"""
|
|
23542
|
-
PostgreSQL maximum locks per transaction.
|
|
23613
|
+
PostgreSQL maximum locks per transaction. Changing this parameter causes a service restart.
|
|
23543
23614
|
"""
|
|
23544
23615
|
return pulumi.get(self, "max_locks_per_transaction")
|
|
23545
23616
|
|
|
@@ -23547,7 +23618,7 @@ class PgPgUserConfigPg(dict):
|
|
|
23547
23618
|
@pulumi.getter(name="maxLogicalReplicationWorkers")
|
|
23548
23619
|
def max_logical_replication_workers(self) -> Optional[builtins.int]:
|
|
23549
23620
|
"""
|
|
23550
|
-
PostgreSQL maximum logical replication workers (taken from the pool of max*parallel*workers).
|
|
23621
|
+
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.
|
|
23551
23622
|
"""
|
|
23552
23623
|
return pulumi.get(self, "max_logical_replication_workers")
|
|
23553
23624
|
|
|
@@ -23555,7 +23626,7 @@ class PgPgUserConfigPg(dict):
|
|
|
23555
23626
|
@pulumi.getter(name="maxParallelWorkers")
|
|
23556
23627
|
def max_parallel_workers(self) -> Optional[builtins.int]:
|
|
23557
23628
|
"""
|
|
23558
|
-
Sets the maximum number of workers that the system can support for parallel queries.
|
|
23629
|
+
Sets the maximum number of workers that the system can support for parallel queries. The default is `8` (upstream default).
|
|
23559
23630
|
"""
|
|
23560
23631
|
return pulumi.get(self, "max_parallel_workers")
|
|
23561
23632
|
|
|
@@ -23563,7 +23634,7 @@ class PgPgUserConfigPg(dict):
|
|
|
23563
23634
|
@pulumi.getter(name="maxParallelWorkersPerGather")
|
|
23564
23635
|
def max_parallel_workers_per_gather(self) -> Optional[builtins.int]:
|
|
23565
23636
|
"""
|
|
23566
|
-
Sets the maximum number of workers that can be started by a single Gather or Gather Merge node.
|
|
23637
|
+
Sets the maximum number of workers that can be started by a single Gather or Gather Merge node. The default is `2` (upstream default).
|
|
23567
23638
|
"""
|
|
23568
23639
|
return pulumi.get(self, "max_parallel_workers_per_gather")
|
|
23569
23640
|
|
|
@@ -23571,7 +23642,7 @@ class PgPgUserConfigPg(dict):
|
|
|
23571
23642
|
@pulumi.getter(name="maxPredLocksPerTransaction")
|
|
23572
23643
|
def max_pred_locks_per_transaction(self) -> Optional[builtins.int]:
|
|
23573
23644
|
"""
|
|
23574
|
-
PostgreSQL maximum predicate locks per transaction.
|
|
23645
|
+
PostgreSQL maximum predicate locks per transaction. The default is `64` (upstream default). Changing this parameter causes a service restart.
|
|
23575
23646
|
"""
|
|
23576
23647
|
return pulumi.get(self, "max_pred_locks_per_transaction")
|
|
23577
23648
|
|
|
@@ -23579,7 +23650,7 @@ class PgPgUserConfigPg(dict):
|
|
|
23579
23650
|
@pulumi.getter(name="maxPreparedTransactions")
|
|
23580
23651
|
def max_prepared_transactions(self) -> Optional[builtins.int]:
|
|
23581
23652
|
"""
|
|
23582
|
-
PostgreSQL maximum prepared transactions.
|
|
23653
|
+
PostgreSQL maximum prepared transactions. The default is `0`. Changing this parameter causes a service restart.
|
|
23583
23654
|
"""
|
|
23584
23655
|
return pulumi.get(self, "max_prepared_transactions")
|
|
23585
23656
|
|
|
@@ -23587,7 +23658,7 @@ class PgPgUserConfigPg(dict):
|
|
|
23587
23658
|
@pulumi.getter(name="maxReplicationSlots")
|
|
23588
23659
|
def max_replication_slots(self) -> Optional[builtins.int]:
|
|
23589
23660
|
"""
|
|
23590
|
-
PostgreSQL maximum replication slots.
|
|
23661
|
+
PostgreSQL maximum replication slots. The default is `20`. Changing this parameter causes a service restart.
|
|
23591
23662
|
"""
|
|
23592
23663
|
return pulumi.get(self, "max_replication_slots")
|
|
23593
23664
|
|
|
@@ -23595,7 +23666,7 @@ class PgPgUserConfigPg(dict):
|
|
|
23595
23666
|
@pulumi.getter(name="maxSlotWalKeepSize")
|
|
23596
23667
|
def max_slot_wal_keep_size(self) -> Optional[builtins.int]:
|
|
23597
23668
|
"""
|
|
23598
|
-
PostgreSQL maximum WAL size (MB) reserved for replication slots.
|
|
23669
|
+
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.
|
|
23599
23670
|
"""
|
|
23600
23671
|
return pulumi.get(self, "max_slot_wal_keep_size")
|
|
23601
23672
|
|
|
@@ -23603,7 +23674,7 @@ class PgPgUserConfigPg(dict):
|
|
|
23603
23674
|
@pulumi.getter(name="maxStackDepth")
|
|
23604
23675
|
def max_stack_depth(self) -> Optional[builtins.int]:
|
|
23605
23676
|
"""
|
|
23606
|
-
Maximum depth of the stack in bytes.
|
|
23677
|
+
Maximum depth of the stack in bytes. The default is `2097152` (upstream default).
|
|
23607
23678
|
"""
|
|
23608
23679
|
return pulumi.get(self, "max_stack_depth")
|
|
23609
23680
|
|
|
@@ -23611,7 +23682,7 @@ class PgPgUserConfigPg(dict):
|
|
|
23611
23682
|
@pulumi.getter(name="maxStandbyArchiveDelay")
|
|
23612
23683
|
def max_standby_archive_delay(self) -> Optional[builtins.int]:
|
|
23613
23684
|
"""
|
|
23614
|
-
Max standby archive delay in milliseconds.
|
|
23685
|
+
Max standby archive delay in milliseconds. The default is `30000` (upstream default).
|
|
23615
23686
|
"""
|
|
23616
23687
|
return pulumi.get(self, "max_standby_archive_delay")
|
|
23617
23688
|
|
|
@@ -23619,7 +23690,7 @@ class PgPgUserConfigPg(dict):
|
|
|
23619
23690
|
@pulumi.getter(name="maxStandbyStreamingDelay")
|
|
23620
23691
|
def max_standby_streaming_delay(self) -> Optional[builtins.int]:
|
|
23621
23692
|
"""
|
|
23622
|
-
Max standby streaming delay in milliseconds.
|
|
23693
|
+
Max standby streaming delay in milliseconds. The default is `30000` (upstream default).
|
|
23623
23694
|
"""
|
|
23624
23695
|
return pulumi.get(self, "max_standby_streaming_delay")
|
|
23625
23696
|
|
|
@@ -23627,7 +23698,7 @@ class PgPgUserConfigPg(dict):
|
|
|
23627
23698
|
@pulumi.getter(name="maxWalSenders")
|
|
23628
23699
|
def max_wal_senders(self) -> Optional[builtins.int]:
|
|
23629
23700
|
"""
|
|
23630
|
-
PostgreSQL maximum WAL senders.
|
|
23701
|
+
PostgreSQL maximum WAL senders. The default is `20`. Changing this parameter causes a service restart.
|
|
23631
23702
|
"""
|
|
23632
23703
|
return pulumi.get(self, "max_wal_senders")
|
|
23633
23704
|
|
|
@@ -23635,7 +23706,7 @@ class PgPgUserConfigPg(dict):
|
|
|
23635
23706
|
@pulumi.getter(name="maxWorkerProcesses")
|
|
23636
23707
|
def max_worker_processes(self) -> Optional[builtins.int]:
|
|
23637
23708
|
"""
|
|
23638
|
-
Sets the maximum number of background processes that the system can support.
|
|
23709
|
+
Sets the maximum number of background processes that the system can support. The default is `8`. Changing this parameter causes a service restart.
|
|
23639
23710
|
"""
|
|
23640
23711
|
return pulumi.get(self, "max_worker_processes")
|
|
23641
23712
|
|
|
@@ -23651,7 +23722,7 @@ class PgPgUserConfigPg(dict):
|
|
|
23651
23722
|
@pulumi.getter(name="pgPartmanBgwDotInterval")
|
|
23652
23723
|
def pg_partman_bgw_dot_interval(self) -> Optional[builtins.int]:
|
|
23653
23724
|
"""
|
|
23654
|
-
Sets the time interval to run pg_partman's scheduled tasks. Example: `3600`.
|
|
23725
|
+
Sets the time interval in seconds to run pg_partman's scheduled tasks. The default is `3600`. Example: `3600`.
|
|
23655
23726
|
"""
|
|
23656
23727
|
return pulumi.get(self, "pg_partman_bgw_dot_interval")
|
|
23657
23728
|
|
|
@@ -23667,7 +23738,7 @@ class PgPgUserConfigPg(dict):
|
|
|
23667
23738
|
@pulumi.getter(name="pgStatMonitorDotPgsmEnableQueryPlan")
|
|
23668
23739
|
def pg_stat_monitor_dot_pgsm_enable_query_plan(self) -> Optional[builtins.bool]:
|
|
23669
23740
|
"""
|
|
23670
|
-
Enables or disables query plan monitoring.
|
|
23741
|
+
Enables or disables query plan monitoring. Changing this parameter causes a service restart. Only available for PostgreSQL 13+.
|
|
23671
23742
|
"""
|
|
23672
23743
|
return pulumi.get(self, "pg_stat_monitor_dot_pgsm_enable_query_plan")
|
|
23673
23744
|
|
|
@@ -23675,7 +23746,7 @@ class PgPgUserConfigPg(dict):
|
|
|
23675
23746
|
@pulumi.getter(name="pgStatMonitorDotPgsmMaxBuckets")
|
|
23676
23747
|
def pg_stat_monitor_dot_pgsm_max_buckets(self) -> Optional[builtins.int]:
|
|
23677
23748
|
"""
|
|
23678
|
-
Sets the maximum number of buckets. Example: `10`.
|
|
23749
|
+
Sets the maximum number of buckets. Changing this parameter causes a service restart. Only available for PostgreSQL 13+. Example: `10`.
|
|
23679
23750
|
"""
|
|
23680
23751
|
return pulumi.get(self, "pg_stat_monitor_dot_pgsm_max_buckets")
|
|
23681
23752
|
|
|
@@ -23683,7 +23754,7 @@ class PgPgUserConfigPg(dict):
|
|
|
23683
23754
|
@pulumi.getter(name="pgStatStatementsDotTrack")
|
|
23684
23755
|
def pg_stat_statements_dot_track(self) -> Optional[builtins.str]:
|
|
23685
23756
|
"""
|
|
23686
|
-
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
|
|
23757
|
+
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`.
|
|
23687
23758
|
"""
|
|
23688
23759
|
return pulumi.get(self, "pg_stat_statements_dot_track")
|
|
23689
23760
|
|
|
@@ -23707,7 +23778,7 @@ class PgPgUserConfigPg(dict):
|
|
|
23707
23778
|
@pulumi.getter(name="trackActivityQuerySize")
|
|
23708
23779
|
def track_activity_query_size(self) -> Optional[builtins.int]:
|
|
23709
23780
|
"""
|
|
23710
|
-
Specifies the number of bytes reserved to track the currently executing command for each active session. Example: `1024`.
|
|
23781
|
+
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`.
|
|
23711
23782
|
"""
|
|
23712
23783
|
return pulumi.get(self, "track_activity_query_size")
|
|
23713
23784
|
|
|
@@ -23715,7 +23786,7 @@ class PgPgUserConfigPg(dict):
|
|
|
23715
23786
|
@pulumi.getter(name="trackCommitTimestamp")
|
|
23716
23787
|
def track_commit_timestamp(self) -> Optional[builtins.str]:
|
|
23717
23788
|
"""
|
|
23718
|
-
Enum: `off`, `on`. Record commit time of transactions.
|
|
23789
|
+
Enum: `off`, `on`. Record commit time of transactions. Changing this parameter causes a service restart.
|
|
23719
23790
|
"""
|
|
23720
23791
|
return pulumi.get(self, "track_commit_timestamp")
|
|
23721
23792
|
|
|
@@ -23731,7 +23802,7 @@ class PgPgUserConfigPg(dict):
|
|
|
23731
23802
|
@pulumi.getter(name="trackIoTiming")
|
|
23732
23803
|
def track_io_timing(self) -> Optional[builtins.str]:
|
|
23733
23804
|
"""
|
|
23734
|
-
Enum: `off`, `on`. Enables timing of database I/O calls.
|
|
23805
|
+
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.
|
|
23735
23806
|
"""
|
|
23736
23807
|
return pulumi.get(self, "track_io_timing")
|
|
23737
23808
|
|
|
@@ -23747,7 +23818,7 @@ class PgPgUserConfigPg(dict):
|
|
|
23747
23818
|
@pulumi.getter(name="walWriterDelay")
|
|
23748
23819
|
def wal_writer_delay(self) -> Optional[builtins.int]:
|
|
23749
23820
|
"""
|
|
23750
|
-
WAL flush interval in milliseconds.
|
|
23821
|
+
WAL flush interval in milliseconds. The default is `200`. Setting this parameter to a lower value may negatively impact performance. Example: `50`.
|
|
23751
23822
|
"""
|
|
23752
23823
|
return pulumi.get(self, "wal_writer_delay")
|
|
23753
23824
|
|
|
@@ -31385,11 +31456,11 @@ class GetAlloydbomniAlloydbomniUserConfigResult(dict):
|
|
|
31385
31456
|
:param 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`.
|
|
31386
31457
|
:param builtins.bool service_log: Store logs for the service so that they are available in the HTTP API and console.
|
|
31387
31458
|
:param 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`.
|
|
31388
|
-
:param 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`.
|
|
31459
|
+
:param 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`.
|
|
31389
31460
|
:param builtins.bool static_ips: Use static public IP addresses.
|
|
31390
31461
|
:param builtins.str synchronous_replication: Enum: `off`, `quorum`. Synchronous replication type. Note that the service plan also needs to support synchronous replication.
|
|
31391
31462
|
:param builtins.str variant: Enum: `aiven`, `timescale`. Variant of the PostgreSQL service, may affect the features that are exposed by default.
|
|
31392
|
-
:param 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.
|
|
31463
|
+
:param 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`.
|
|
31393
31464
|
"""
|
|
31394
31465
|
if additional_backup_regions is not None:
|
|
31395
31466
|
pulumi.set(__self__, "additional_backup_regions", additional_backup_regions)
|
|
@@ -31667,7 +31738,7 @@ class GetAlloydbomniAlloydbomniUserConfigResult(dict):
|
|
|
31667
31738
|
@pulumi.getter(name="sharedBuffersPercentage")
|
|
31668
31739
|
def shared_buffers_percentage(self) -> Optional[builtins.float]:
|
|
31669
31740
|
"""
|
|
31670
|
-
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`.
|
|
31741
|
+
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`.
|
|
31671
31742
|
"""
|
|
31672
31743
|
return pulumi.get(self, "shared_buffers_percentage")
|
|
31673
31744
|
|
|
@@ -31699,7 +31770,7 @@ class GetAlloydbomniAlloydbomniUserConfigResult(dict):
|
|
|
31699
31770
|
@pulumi.getter(name="workMem")
|
|
31700
31771
|
def work_mem(self) -> Optional[builtins.int]:
|
|
31701
31772
|
"""
|
|
31702
|
-
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.
|
|
31773
|
+
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`.
|
|
31703
31774
|
"""
|
|
31704
31775
|
return pulumi.get(self, "work_mem")
|
|
31705
31776
|
|
|
@@ -31786,54 +31857,54 @@ class GetAlloydbomniAlloydbomniUserConfigPgResult(dict):
|
|
|
31786
31857
|
wal_sender_timeout: Optional[builtins.int] = None,
|
|
31787
31858
|
wal_writer_delay: Optional[builtins.int] = None):
|
|
31788
31859
|
"""
|
|
31789
|
-
:param 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.
|
|
31790
|
-
:param 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
|
|
31791
|
-
:param 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.
|
|
31792
|
-
:param 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
|
|
31793
|
-
:param builtins.int autovacuum_naptime: Specifies the minimum delay between autovacuum runs on any given database. The delay is measured in seconds
|
|
31794
|
-
:param builtins.int autovacuum_vacuum_cost_delay: Specifies the cost delay value that will be used in automatic VACUUM operations. If
|
|
31795
|
-
:param builtins.int autovacuum_vacuum_cost_limit: Specifies the cost limit value that will be used in automatic VACUUM operations. If
|
|
31796
|
-
:param 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.
|
|
31797
|
-
:param 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
|
|
31798
|
-
:param builtins.int bgwriter_delay: Specifies the delay between activity rounds for the background writer in milliseconds.
|
|
31799
|
-
:param 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
|
|
31800
|
-
:param 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.
|
|
31801
|
-
:param 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
|
|
31802
|
-
:param 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`.
|
|
31803
|
-
:param builtins.str default_toast_compression: Enum: `lz4`, `pglz`. Specifies the default TOAST compression method for values of compressible columns
|
|
31860
|
+
:param 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`.
|
|
31861
|
+
:param 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`.
|
|
31862
|
+
:param 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`.
|
|
31863
|
+
:param 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.
|
|
31864
|
+
:param 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`.
|
|
31865
|
+
:param 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).
|
|
31866
|
+
:param 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).
|
|
31867
|
+
:param 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`.
|
|
31868
|
+
:param 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`.
|
|
31869
|
+
:param builtins.int bgwriter_delay: Specifies the delay between activity rounds for the background writer in milliseconds. The default is `200`. Example: `200`.
|
|
31870
|
+
:param 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`.
|
|
31871
|
+
:param 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`.
|
|
31872
|
+
:param 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`.
|
|
31873
|
+
:param 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`.
|
|
31874
|
+
:param builtins.str default_toast_compression: Enum: `lz4`, `pglz`. Specifies the default TOAST compression method for values of compressible columns. The default is `lz4`.
|
|
31804
31875
|
:param builtins.int idle_in_transaction_session_timeout: Time out sessions with open transactions after this number of milliseconds.
|
|
31805
31876
|
:param builtins.bool jit: Controls system-wide use of Just-in-Time Compilation (JIT).
|
|
31806
|
-
:param 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
|
|
31877
|
+
:param 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`.
|
|
31807
31878
|
:param 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.
|
|
31808
31879
|
:param 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.
|
|
31809
31880
|
:param builtins.int log_min_duration_statement: Log statements that take more than this number of milliseconds to run, -1 disables.
|
|
31810
31881
|
:param builtins.int log_temp_files: Log statements for each temporary file created larger than this number of kilobytes, -1 disables.
|
|
31811
|
-
:param builtins.int max_files_per_process: PostgreSQL maximum number of files that can be open per process.
|
|
31812
|
-
:param builtins.int max_locks_per_transaction: PostgreSQL maximum locks per transaction.
|
|
31813
|
-
:param builtins.int max_logical_replication_workers: PostgreSQL maximum logical replication workers (taken from the pool of max_parallel_workers).
|
|
31814
|
-
:param builtins.int max_parallel_workers: Sets the maximum number of workers that the system can support for parallel queries.
|
|
31815
|
-
:param 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.
|
|
31816
|
-
:param builtins.int max_pred_locks_per_transaction: PostgreSQL maximum predicate locks per transaction.
|
|
31817
|
-
:param builtins.int max_prepared_transactions: PostgreSQL maximum prepared transactions.
|
|
31818
|
-
:param builtins.int max_replication_slots: PostgreSQL maximum replication slots.
|
|
31819
|
-
:param builtins.int max_slot_wal_keep_size: PostgreSQL maximum WAL size (MB) reserved for replication slots.
|
|
31820
|
-
:param builtins.int max_stack_depth: Maximum depth of the stack in bytes.
|
|
31821
|
-
:param builtins.int max_standby_archive_delay: Max standby archive delay in milliseconds.
|
|
31822
|
-
:param builtins.int max_standby_streaming_delay: Max standby streaming delay in milliseconds.
|
|
31823
|
-
:param builtins.int max_wal_senders: PostgreSQL maximum WAL senders.
|
|
31824
|
-
:param builtins.int max_worker_processes: Sets the maximum number of background processes that the system can support.
|
|
31882
|
+
:param 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.
|
|
31883
|
+
:param builtins.int max_locks_per_transaction: PostgreSQL maximum locks per transaction. Changing this parameter causes a service restart.
|
|
31884
|
+
:param 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.
|
|
31885
|
+
:param 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).
|
|
31886
|
+
:param 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).
|
|
31887
|
+
:param 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.
|
|
31888
|
+
:param builtins.int max_prepared_transactions: PostgreSQL maximum prepared transactions. The default is `0`. Changing this parameter causes a service restart.
|
|
31889
|
+
:param builtins.int max_replication_slots: PostgreSQL maximum replication slots. The default is `20`. Changing this parameter causes a service restart.
|
|
31890
|
+
:param 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.
|
|
31891
|
+
:param builtins.int max_stack_depth: Maximum depth of the stack in bytes. The default is `2097152` (upstream default).
|
|
31892
|
+
:param builtins.int max_standby_archive_delay: Max standby archive delay in milliseconds. The default is `30000` (upstream default).
|
|
31893
|
+
:param builtins.int max_standby_streaming_delay: Max standby streaming delay in milliseconds. The default is `30000` (upstream default).
|
|
31894
|
+
:param builtins.int max_wal_senders: PostgreSQL maximum WAL senders. The default is `20`. Changing this parameter causes a service restart.
|
|
31895
|
+
:param 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.
|
|
31825
31896
|
:param builtins.str password_encryption: Enum: `md5`, `scram-sha-256`. Chooses the algorithm for encrypting passwords. Default: `md5`.
|
|
31826
|
-
:param builtins.int pg_partman_bgw_dot_interval: Sets the time interval to run pg_partman's scheduled tasks. Example: `3600`.
|
|
31897
|
+
:param 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`.
|
|
31827
31898
|
:param builtins.str pg_partman_bgw_dot_role: Controls which role to use for pg_partman's scheduled background tasks. Example: `myrolename`.
|
|
31828
|
-
:param 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
|
|
31899
|
+
:param 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`.
|
|
31829
31900
|
:param builtins.int temp_file_limit: PostgreSQL temporary file limit in KiB, -1 for unlimited. Example: `5000000`.
|
|
31830
31901
|
:param builtins.str timezone: PostgreSQL service timezone. Example: `Europe/Helsinki`.
|
|
31831
|
-
:param builtins.int track_activity_query_size: Specifies the number of bytes reserved to track the currently executing command for each active session. Example: `1024`.
|
|
31832
|
-
:param builtins.str track_commit_timestamp: Enum: `off`, `on`. Record commit time of transactions.
|
|
31902
|
+
:param 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`.
|
|
31903
|
+
:param builtins.str track_commit_timestamp: Enum: `off`, `on`. Record commit time of transactions. Changing this parameter causes a service restart.
|
|
31833
31904
|
:param builtins.str track_functions: Enum: `all`, `none`, `pl`. Enables tracking of function call counts and time used.
|
|
31834
|
-
:param builtins.str track_io_timing: Enum: `off`, `on`. Enables timing of database I/O calls.
|
|
31905
|
+
:param 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.
|
|
31835
31906
|
:param 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`.
|
|
31836
|
-
:param builtins.int wal_writer_delay: WAL flush interval in milliseconds.
|
|
31907
|
+
:param 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`.
|
|
31837
31908
|
"""
|
|
31838
31909
|
if autovacuum_analyze_scale_factor is not None:
|
|
31839
31910
|
pulumi.set(__self__, "autovacuum_analyze_scale_factor", autovacuum_analyze_scale_factor)
|
|
@@ -31936,7 +32007,7 @@ class GetAlloydbomniAlloydbomniUserConfigPgResult(dict):
|
|
|
31936
32007
|
@pulumi.getter(name="autovacuumAnalyzeScaleFactor")
|
|
31937
32008
|
def autovacuum_analyze_scale_factor(self) -> Optional[builtins.float]:
|
|
31938
32009
|
"""
|
|
31939
|
-
Specifies a fraction of the table size to add to autovacuum_analyze_threshold when deciding whether to trigger an ANALYZE.
|
|
32010
|
+
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`.
|
|
31940
32011
|
"""
|
|
31941
32012
|
return pulumi.get(self, "autovacuum_analyze_scale_factor")
|
|
31942
32013
|
|
|
@@ -31944,7 +32015,7 @@ class GetAlloydbomniAlloydbomniUserConfigPgResult(dict):
|
|
|
31944
32015
|
@pulumi.getter(name="autovacuumAnalyzeThreshold")
|
|
31945
32016
|
def autovacuum_analyze_threshold(self) -> Optional[builtins.int]:
|
|
31946
32017
|
"""
|
|
31947
|
-
Specifies the minimum number of inserted, updated or deleted tuples needed to trigger an ANALYZE in any one table. The default is 50
|
|
32018
|
+
Specifies the minimum number of inserted, updated or deleted tuples needed to trigger an ANALYZE in any one table. The default is `50`.
|
|
31948
32019
|
"""
|
|
31949
32020
|
return pulumi.get(self, "autovacuum_analyze_threshold")
|
|
31950
32021
|
|
|
@@ -31952,7 +32023,7 @@ class GetAlloydbomniAlloydbomniUserConfigPgResult(dict):
|
|
|
31952
32023
|
@pulumi.getter(name="autovacuumFreezeMaxAge")
|
|
31953
32024
|
def autovacuum_freeze_max_age(self) -> Optional[builtins.int]:
|
|
31954
32025
|
"""
|
|
31955
|
-
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.
|
|
32026
|
+
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`.
|
|
31956
32027
|
"""
|
|
31957
32028
|
return pulumi.get(self, "autovacuum_freeze_max_age")
|
|
31958
32029
|
|
|
@@ -31960,7 +32031,7 @@ class GetAlloydbomniAlloydbomniUserConfigPgResult(dict):
|
|
|
31960
32031
|
@pulumi.getter(name="autovacuumMaxWorkers")
|
|
31961
32032
|
def autovacuum_max_workers(self) -> Optional[builtins.int]:
|
|
31962
32033
|
"""
|
|
31963
|
-
Specifies the maximum number of autovacuum processes (other than the autovacuum launcher) that may be running at any one time. The default is
|
|
32034
|
+
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.
|
|
31964
32035
|
"""
|
|
31965
32036
|
return pulumi.get(self, "autovacuum_max_workers")
|
|
31966
32037
|
|
|
@@ -31968,7 +32039,7 @@ class GetAlloydbomniAlloydbomniUserConfigPgResult(dict):
|
|
|
31968
32039
|
@pulumi.getter(name="autovacuumNaptime")
|
|
31969
32040
|
def autovacuum_naptime(self) -> Optional[builtins.int]:
|
|
31970
32041
|
"""
|
|
31971
|
-
Specifies the minimum delay between autovacuum runs on any given database. The delay is measured in seconds
|
|
32042
|
+
Specifies the minimum delay between autovacuum runs on any given database. The delay is measured in seconds. The default is `60`.
|
|
31972
32043
|
"""
|
|
31973
32044
|
return pulumi.get(self, "autovacuum_naptime")
|
|
31974
32045
|
|
|
@@ -31976,7 +32047,7 @@ class GetAlloydbomniAlloydbomniUserConfigPgResult(dict):
|
|
|
31976
32047
|
@pulumi.getter(name="autovacuumVacuumCostDelay")
|
|
31977
32048
|
def autovacuum_vacuum_cost_delay(self) -> Optional[builtins.int]:
|
|
31978
32049
|
"""
|
|
31979
|
-
Specifies the cost delay value that will be used in automatic VACUUM operations. If
|
|
32050
|
+
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).
|
|
31980
32051
|
"""
|
|
31981
32052
|
return pulumi.get(self, "autovacuum_vacuum_cost_delay")
|
|
31982
32053
|
|
|
@@ -31984,7 +32055,7 @@ class GetAlloydbomniAlloydbomniUserConfigPgResult(dict):
|
|
|
31984
32055
|
@pulumi.getter(name="autovacuumVacuumCostLimit")
|
|
31985
32056
|
def autovacuum_vacuum_cost_limit(self) -> Optional[builtins.int]:
|
|
31986
32057
|
"""
|
|
31987
|
-
Specifies the cost limit value that will be used in automatic VACUUM operations. If
|
|
32058
|
+
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).
|
|
31988
32059
|
"""
|
|
31989
32060
|
return pulumi.get(self, "autovacuum_vacuum_cost_limit")
|
|
31990
32061
|
|
|
@@ -31992,7 +32063,7 @@ class GetAlloydbomniAlloydbomniUserConfigPgResult(dict):
|
|
|
31992
32063
|
@pulumi.getter(name="autovacuumVacuumScaleFactor")
|
|
31993
32064
|
def autovacuum_vacuum_scale_factor(self) -> Optional[builtins.float]:
|
|
31994
32065
|
"""
|
|
31995
|
-
Specifies a fraction of the table size to add to autovacuum_vacuum_threshold when deciding whether to trigger a VACUUM.
|
|
32066
|
+
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`.
|
|
31996
32067
|
"""
|
|
31997
32068
|
return pulumi.get(self, "autovacuum_vacuum_scale_factor")
|
|
31998
32069
|
|
|
@@ -32000,7 +32071,7 @@ class GetAlloydbomniAlloydbomniUserConfigPgResult(dict):
|
|
|
32000
32071
|
@pulumi.getter(name="autovacuumVacuumThreshold")
|
|
32001
32072
|
def autovacuum_vacuum_threshold(self) -> Optional[builtins.int]:
|
|
32002
32073
|
"""
|
|
32003
|
-
Specifies the minimum number of updated or deleted tuples needed to trigger a VACUUM in any one table. The default is 50
|
|
32074
|
+
Specifies the minimum number of updated or deleted tuples needed to trigger a VACUUM in any one table. The default is `50`.
|
|
32004
32075
|
"""
|
|
32005
32076
|
return pulumi.get(self, "autovacuum_vacuum_threshold")
|
|
32006
32077
|
|
|
@@ -32008,7 +32079,7 @@ class GetAlloydbomniAlloydbomniUserConfigPgResult(dict):
|
|
|
32008
32079
|
@pulumi.getter(name="bgwriterDelay")
|
|
32009
32080
|
def bgwriter_delay(self) -> Optional[builtins.int]:
|
|
32010
32081
|
"""
|
|
32011
|
-
Specifies the delay between activity rounds for the background writer in milliseconds.
|
|
32082
|
+
Specifies the delay between activity rounds for the background writer in milliseconds. The default is `200`. Example: `200`.
|
|
32012
32083
|
"""
|
|
32013
32084
|
return pulumi.get(self, "bgwriter_delay")
|
|
32014
32085
|
|
|
@@ -32016,7 +32087,7 @@ class GetAlloydbomniAlloydbomniUserConfigPgResult(dict):
|
|
|
32016
32087
|
@pulumi.getter(name="bgwriterFlushAfter")
|
|
32017
32088
|
def bgwriter_flush_after(self) -> Optional[builtins.int]:
|
|
32018
32089
|
"""
|
|
32019
|
-
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
|
|
32090
|
+
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`.
|
|
32020
32091
|
"""
|
|
32021
32092
|
return pulumi.get(self, "bgwriter_flush_after")
|
|
32022
32093
|
|
|
@@ -32024,7 +32095,7 @@ class GetAlloydbomniAlloydbomniUserConfigPgResult(dict):
|
|
|
32024
32095
|
@pulumi.getter(name="bgwriterLruMaxpages")
|
|
32025
32096
|
def bgwriter_lru_maxpages(self) -> Optional[builtins.int]:
|
|
32026
32097
|
"""
|
|
32027
|
-
In each round, no more than this many buffers will be written by the background writer. Setting this to zero disables background writing.
|
|
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`.
|
|
32028
32099
|
"""
|
|
32029
32100
|
return pulumi.get(self, "bgwriter_lru_maxpages")
|
|
32030
32101
|
|
|
@@ -32032,7 +32103,7 @@ class GetAlloydbomniAlloydbomniUserConfigPgResult(dict):
|
|
|
32032
32103
|
@pulumi.getter(name="bgwriterLruMultiplier")
|
|
32033
32104
|
def bgwriter_lru_multiplier(self) -> Optional[builtins.float]:
|
|
32034
32105
|
"""
|
|
32035
|
-
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
|
|
32106
|
+
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`.
|
|
32036
32107
|
"""
|
|
32037
32108
|
return pulumi.get(self, "bgwriter_lru_multiplier")
|
|
32038
32109
|
|
|
@@ -32040,7 +32111,7 @@ class GetAlloydbomniAlloydbomniUserConfigPgResult(dict):
|
|
|
32040
32111
|
@pulumi.getter(name="deadlockTimeout")
|
|
32041
32112
|
def deadlock_timeout(self) -> Optional[builtins.int]:
|
|
32042
32113
|
"""
|
|
32043
|
-
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`.
|
|
32114
|
+
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`.
|
|
32044
32115
|
"""
|
|
32045
32116
|
return pulumi.get(self, "deadlock_timeout")
|
|
32046
32117
|
|
|
@@ -32048,7 +32119,7 @@ class GetAlloydbomniAlloydbomniUserConfigPgResult(dict):
|
|
|
32048
32119
|
@pulumi.getter(name="defaultToastCompression")
|
|
32049
32120
|
def default_toast_compression(self) -> Optional[builtins.str]:
|
|
32050
32121
|
"""
|
|
32051
|
-
Enum: `lz4`, `pglz`. Specifies the default TOAST compression method for values of compressible columns
|
|
32122
|
+
Enum: `lz4`, `pglz`. Specifies the default TOAST compression method for values of compressible columns. The default is `lz4`.
|
|
32052
32123
|
"""
|
|
32053
32124
|
return pulumi.get(self, "default_toast_compression")
|
|
32054
32125
|
|
|
@@ -32072,7 +32143,7 @@ class GetAlloydbomniAlloydbomniUserConfigPgResult(dict):
|
|
|
32072
32143
|
@pulumi.getter(name="logAutovacuumMinDuration")
|
|
32073
32144
|
def log_autovacuum_min_duration(self) -> Optional[builtins.int]:
|
|
32074
32145
|
"""
|
|
32075
|
-
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
|
|
32146
|
+
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`.
|
|
32076
32147
|
"""
|
|
32077
32148
|
return pulumi.get(self, "log_autovacuum_min_duration")
|
|
32078
32149
|
|
|
@@ -32112,7 +32183,7 @@ class GetAlloydbomniAlloydbomniUserConfigPgResult(dict):
|
|
|
32112
32183
|
@pulumi.getter(name="maxFilesPerProcess")
|
|
32113
32184
|
def max_files_per_process(self) -> Optional[builtins.int]:
|
|
32114
32185
|
"""
|
|
32115
|
-
PostgreSQL maximum number of files that can be open per process.
|
|
32186
|
+
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
32187
|
"""
|
|
32117
32188
|
return pulumi.get(self, "max_files_per_process")
|
|
32118
32189
|
|
|
@@ -32120,7 +32191,7 @@ class GetAlloydbomniAlloydbomniUserConfigPgResult(dict):
|
|
|
32120
32191
|
@pulumi.getter(name="maxLocksPerTransaction")
|
|
32121
32192
|
def max_locks_per_transaction(self) -> Optional[builtins.int]:
|
|
32122
32193
|
"""
|
|
32123
|
-
PostgreSQL maximum locks per transaction.
|
|
32194
|
+
PostgreSQL maximum locks per transaction. Changing this parameter causes a service restart.
|
|
32124
32195
|
"""
|
|
32125
32196
|
return pulumi.get(self, "max_locks_per_transaction")
|
|
32126
32197
|
|
|
@@ -32128,7 +32199,7 @@ class GetAlloydbomniAlloydbomniUserConfigPgResult(dict):
|
|
|
32128
32199
|
@pulumi.getter(name="maxLogicalReplicationWorkers")
|
|
32129
32200
|
def max_logical_replication_workers(self) -> Optional[builtins.int]:
|
|
32130
32201
|
"""
|
|
32131
|
-
PostgreSQL maximum logical replication workers (taken from the pool of max_parallel_workers).
|
|
32202
|
+
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.
|
|
32132
32203
|
"""
|
|
32133
32204
|
return pulumi.get(self, "max_logical_replication_workers")
|
|
32134
32205
|
|
|
@@ -32136,7 +32207,7 @@ class GetAlloydbomniAlloydbomniUserConfigPgResult(dict):
|
|
|
32136
32207
|
@pulumi.getter(name="maxParallelWorkers")
|
|
32137
32208
|
def max_parallel_workers(self) -> Optional[builtins.int]:
|
|
32138
32209
|
"""
|
|
32139
|
-
Sets the maximum number of workers that the system can support for parallel queries.
|
|
32210
|
+
Sets the maximum number of workers that the system can support for parallel queries. The default is `8` (upstream default).
|
|
32140
32211
|
"""
|
|
32141
32212
|
return pulumi.get(self, "max_parallel_workers")
|
|
32142
32213
|
|
|
@@ -32144,7 +32215,7 @@ class GetAlloydbomniAlloydbomniUserConfigPgResult(dict):
|
|
|
32144
32215
|
@pulumi.getter(name="maxParallelWorkersPerGather")
|
|
32145
32216
|
def max_parallel_workers_per_gather(self) -> Optional[builtins.int]:
|
|
32146
32217
|
"""
|
|
32147
|
-
Sets the maximum number of workers that can be started by a single Gather or Gather Merge node.
|
|
32218
|
+
Sets the maximum number of workers that can be started by a single Gather or Gather Merge node. The default is `2` (upstream default).
|
|
32148
32219
|
"""
|
|
32149
32220
|
return pulumi.get(self, "max_parallel_workers_per_gather")
|
|
32150
32221
|
|
|
@@ -32152,7 +32223,7 @@ class GetAlloydbomniAlloydbomniUserConfigPgResult(dict):
|
|
|
32152
32223
|
@pulumi.getter(name="maxPredLocksPerTransaction")
|
|
32153
32224
|
def max_pred_locks_per_transaction(self) -> Optional[builtins.int]:
|
|
32154
32225
|
"""
|
|
32155
|
-
PostgreSQL maximum predicate locks per transaction.
|
|
32226
|
+
PostgreSQL maximum predicate locks per transaction. The default is `64` (upstream default). Changing this parameter causes a service restart.
|
|
32156
32227
|
"""
|
|
32157
32228
|
return pulumi.get(self, "max_pred_locks_per_transaction")
|
|
32158
32229
|
|
|
@@ -32160,7 +32231,7 @@ class GetAlloydbomniAlloydbomniUserConfigPgResult(dict):
|
|
|
32160
32231
|
@pulumi.getter(name="maxPreparedTransactions")
|
|
32161
32232
|
def max_prepared_transactions(self) -> Optional[builtins.int]:
|
|
32162
32233
|
"""
|
|
32163
|
-
PostgreSQL maximum prepared transactions.
|
|
32234
|
+
PostgreSQL maximum prepared transactions. The default is `0`. Changing this parameter causes a service restart.
|
|
32164
32235
|
"""
|
|
32165
32236
|
return pulumi.get(self, "max_prepared_transactions")
|
|
32166
32237
|
|
|
@@ -32168,7 +32239,7 @@ class GetAlloydbomniAlloydbomniUserConfigPgResult(dict):
|
|
|
32168
32239
|
@pulumi.getter(name="maxReplicationSlots")
|
|
32169
32240
|
def max_replication_slots(self) -> Optional[builtins.int]:
|
|
32170
32241
|
"""
|
|
32171
|
-
PostgreSQL maximum replication slots.
|
|
32242
|
+
PostgreSQL maximum replication slots. The default is `20`. Changing this parameter causes a service restart.
|
|
32172
32243
|
"""
|
|
32173
32244
|
return pulumi.get(self, "max_replication_slots")
|
|
32174
32245
|
|
|
@@ -32176,7 +32247,7 @@ class GetAlloydbomniAlloydbomniUserConfigPgResult(dict):
|
|
|
32176
32247
|
@pulumi.getter(name="maxSlotWalKeepSize")
|
|
32177
32248
|
def max_slot_wal_keep_size(self) -> Optional[builtins.int]:
|
|
32178
32249
|
"""
|
|
32179
|
-
PostgreSQL maximum WAL size (MB) reserved for replication slots.
|
|
32250
|
+
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.
|
|
32180
32251
|
"""
|
|
32181
32252
|
return pulumi.get(self, "max_slot_wal_keep_size")
|
|
32182
32253
|
|
|
@@ -32184,7 +32255,7 @@ class GetAlloydbomniAlloydbomniUserConfigPgResult(dict):
|
|
|
32184
32255
|
@pulumi.getter(name="maxStackDepth")
|
|
32185
32256
|
def max_stack_depth(self) -> Optional[builtins.int]:
|
|
32186
32257
|
"""
|
|
32187
|
-
Maximum depth of the stack in bytes.
|
|
32258
|
+
Maximum depth of the stack in bytes. The default is `2097152` (upstream default).
|
|
32188
32259
|
"""
|
|
32189
32260
|
return pulumi.get(self, "max_stack_depth")
|
|
32190
32261
|
|
|
@@ -32192,7 +32263,7 @@ class GetAlloydbomniAlloydbomniUserConfigPgResult(dict):
|
|
|
32192
32263
|
@pulumi.getter(name="maxStandbyArchiveDelay")
|
|
32193
32264
|
def max_standby_archive_delay(self) -> Optional[builtins.int]:
|
|
32194
32265
|
"""
|
|
32195
|
-
Max standby archive delay in milliseconds.
|
|
32266
|
+
Max standby archive delay in milliseconds. The default is `30000` (upstream default).
|
|
32196
32267
|
"""
|
|
32197
32268
|
return pulumi.get(self, "max_standby_archive_delay")
|
|
32198
32269
|
|
|
@@ -32200,7 +32271,7 @@ class GetAlloydbomniAlloydbomniUserConfigPgResult(dict):
|
|
|
32200
32271
|
@pulumi.getter(name="maxStandbyStreamingDelay")
|
|
32201
32272
|
def max_standby_streaming_delay(self) -> Optional[builtins.int]:
|
|
32202
32273
|
"""
|
|
32203
|
-
Max standby streaming delay in milliseconds.
|
|
32274
|
+
Max standby streaming delay in milliseconds. The default is `30000` (upstream default).
|
|
32204
32275
|
"""
|
|
32205
32276
|
return pulumi.get(self, "max_standby_streaming_delay")
|
|
32206
32277
|
|
|
@@ -32208,7 +32279,7 @@ class GetAlloydbomniAlloydbomniUserConfigPgResult(dict):
|
|
|
32208
32279
|
@pulumi.getter(name="maxWalSenders")
|
|
32209
32280
|
def max_wal_senders(self) -> Optional[builtins.int]:
|
|
32210
32281
|
"""
|
|
32211
|
-
PostgreSQL maximum WAL senders.
|
|
32282
|
+
PostgreSQL maximum WAL senders. The default is `20`. Changing this parameter causes a service restart.
|
|
32212
32283
|
"""
|
|
32213
32284
|
return pulumi.get(self, "max_wal_senders")
|
|
32214
32285
|
|
|
@@ -32216,7 +32287,7 @@ class GetAlloydbomniAlloydbomniUserConfigPgResult(dict):
|
|
|
32216
32287
|
@pulumi.getter(name="maxWorkerProcesses")
|
|
32217
32288
|
def max_worker_processes(self) -> Optional[builtins.int]:
|
|
32218
32289
|
"""
|
|
32219
|
-
Sets the maximum number of background processes that the system can support.
|
|
32290
|
+
Sets the maximum number of background processes that the system can support. The default is `8`. Changing this parameter causes a service restart.
|
|
32220
32291
|
"""
|
|
32221
32292
|
return pulumi.get(self, "max_worker_processes")
|
|
32222
32293
|
|
|
@@ -32232,7 +32303,7 @@ class GetAlloydbomniAlloydbomniUserConfigPgResult(dict):
|
|
|
32232
32303
|
@pulumi.getter(name="pgPartmanBgwDotInterval")
|
|
32233
32304
|
def pg_partman_bgw_dot_interval(self) -> Optional[builtins.int]:
|
|
32234
32305
|
"""
|
|
32235
|
-
Sets the time interval to run pg_partman's scheduled tasks. Example: `3600`.
|
|
32306
|
+
Sets the time interval in seconds to run pg_partman's scheduled tasks. The default is `3600`. Example: `3600`.
|
|
32236
32307
|
"""
|
|
32237
32308
|
return pulumi.get(self, "pg_partman_bgw_dot_interval")
|
|
32238
32309
|
|
|
@@ -32248,7 +32319,7 @@ class GetAlloydbomniAlloydbomniUserConfigPgResult(dict):
|
|
|
32248
32319
|
@pulumi.getter(name="pgStatStatementsDotTrack")
|
|
32249
32320
|
def pg_stat_statements_dot_track(self) -> Optional[builtins.str]:
|
|
32250
32321
|
"""
|
|
32251
|
-
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
|
|
32322
|
+
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`.
|
|
32252
32323
|
"""
|
|
32253
32324
|
return pulumi.get(self, "pg_stat_statements_dot_track")
|
|
32254
32325
|
|
|
@@ -32272,7 +32343,7 @@ class GetAlloydbomniAlloydbomniUserConfigPgResult(dict):
|
|
|
32272
32343
|
@pulumi.getter(name="trackActivityQuerySize")
|
|
32273
32344
|
def track_activity_query_size(self) -> Optional[builtins.int]:
|
|
32274
32345
|
"""
|
|
32275
|
-
Specifies the number of bytes reserved to track the currently executing command for each active session. Example: `1024`.
|
|
32346
|
+
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`.
|
|
32276
32347
|
"""
|
|
32277
32348
|
return pulumi.get(self, "track_activity_query_size")
|
|
32278
32349
|
|
|
@@ -32280,7 +32351,7 @@ class GetAlloydbomniAlloydbomniUserConfigPgResult(dict):
|
|
|
32280
32351
|
@pulumi.getter(name="trackCommitTimestamp")
|
|
32281
32352
|
def track_commit_timestamp(self) -> Optional[builtins.str]:
|
|
32282
32353
|
"""
|
|
32283
|
-
Enum: `off`, `on`. Record commit time of transactions.
|
|
32354
|
+
Enum: `off`, `on`. Record commit time of transactions. Changing this parameter causes a service restart.
|
|
32284
32355
|
"""
|
|
32285
32356
|
return pulumi.get(self, "track_commit_timestamp")
|
|
32286
32357
|
|
|
@@ -32296,7 +32367,7 @@ class GetAlloydbomniAlloydbomniUserConfigPgResult(dict):
|
|
|
32296
32367
|
@pulumi.getter(name="trackIoTiming")
|
|
32297
32368
|
def track_io_timing(self) -> Optional[builtins.str]:
|
|
32298
32369
|
"""
|
|
32299
|
-
Enum: `off`, `on`. Enables timing of database I/O calls.
|
|
32370
|
+
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.
|
|
32300
32371
|
"""
|
|
32301
32372
|
return pulumi.get(self, "track_io_timing")
|
|
32302
32373
|
|
|
@@ -32312,7 +32383,7 @@ class GetAlloydbomniAlloydbomniUserConfigPgResult(dict):
|
|
|
32312
32383
|
@pulumi.getter(name="walWriterDelay")
|
|
32313
32384
|
def wal_writer_delay(self) -> Optional[builtins.int]:
|
|
32314
32385
|
"""
|
|
32315
|
-
WAL flush interval in milliseconds.
|
|
32386
|
+
WAL flush interval in milliseconds. The default is `200`. Setting this parameter to a lower value may negatively impact performance. Example: `50`.
|
|
32316
32387
|
"""
|
|
32317
32388
|
return pulumi.get(self, "wal_writer_delay")
|
|
32318
32389
|
|
|
@@ -45502,6 +45573,7 @@ class GetOpenSearchOpensearchUserConfigOpensearchResult(dict):
|
|
|
45502
45573
|
enable_remote_backed_storage: Optional[builtins.bool] = None,
|
|
45503
45574
|
enable_searchable_snapshots: Optional[builtins.bool] = None,
|
|
45504
45575
|
enable_security_audit: Optional[builtins.bool] = None,
|
|
45576
|
+
enable_snapshot_api: Optional[builtins.bool] = None,
|
|
45505
45577
|
http_max_content_length: Optional[builtins.int] = None,
|
|
45506
45578
|
http_max_header_size: Optional[builtins.int] = None,
|
|
45507
45579
|
http_max_initial_line_length: Optional[builtins.int] = None,
|
|
@@ -45555,6 +45627,7 @@ class GetOpenSearchOpensearchUserConfigOpensearchResult(dict):
|
|
|
45555
45627
|
:param builtins.bool enable_remote_backed_storage: Enable remote-backed storage.
|
|
45556
45628
|
:param builtins.bool enable_searchable_snapshots: Enable searchable snapshots.
|
|
45557
45629
|
:param builtins.bool enable_security_audit: Enable/Disable security audit.
|
|
45630
|
+
:param builtins.bool enable_snapshot_api: Enable/Disable snapshot API for custom repositories, this requires security management to be enabled.
|
|
45558
45631
|
:param builtins.int http_max_content_length: Maximum content length for HTTP requests to the OpenSearch HTTP API, in bytes.
|
|
45559
45632
|
:param builtins.int http_max_header_size: The max size of allowed headers, in bytes. Example: `8192`.
|
|
45560
45633
|
:param builtins.int http_max_initial_line_length: The max length of an HTTP URL, in bytes. Example: `4096`.
|
|
@@ -45622,6 +45695,8 @@ class GetOpenSearchOpensearchUserConfigOpensearchResult(dict):
|
|
|
45622
45695
|
pulumi.set(__self__, "enable_searchable_snapshots", enable_searchable_snapshots)
|
|
45623
45696
|
if enable_security_audit is not None:
|
|
45624
45697
|
pulumi.set(__self__, "enable_security_audit", enable_security_audit)
|
|
45698
|
+
if enable_snapshot_api is not None:
|
|
45699
|
+
pulumi.set(__self__, "enable_snapshot_api", enable_snapshot_api)
|
|
45625
45700
|
if http_max_content_length is not None:
|
|
45626
45701
|
pulumi.set(__self__, "http_max_content_length", http_max_content_length)
|
|
45627
45702
|
if http_max_header_size is not None:
|
|
@@ -45810,6 +45885,14 @@ class GetOpenSearchOpensearchUserConfigOpensearchResult(dict):
|
|
|
45810
45885
|
"""
|
|
45811
45886
|
return pulumi.get(self, "enable_security_audit")
|
|
45812
45887
|
|
|
45888
|
+
@property
|
|
45889
|
+
@pulumi.getter(name="enableSnapshotApi")
|
|
45890
|
+
def enable_snapshot_api(self) -> Optional[builtins.bool]:
|
|
45891
|
+
"""
|
|
45892
|
+
Enable/Disable snapshot API for custom repositories, this requires security management to be enabled.
|
|
45893
|
+
"""
|
|
45894
|
+
return pulumi.get(self, "enable_snapshot_api")
|
|
45895
|
+
|
|
45813
45896
|
@property
|
|
45814
45897
|
@pulumi.getter(name="httpMaxContentLength")
|
|
45815
45898
|
def http_max_content_length(self) -> Optional[builtins.int]:
|
|
@@ -48538,7 +48621,7 @@ class GetPgPgUserConfigResult(dict):
|
|
|
48538
48621
|
:param 'GetPgPgUserConfigPgQualstatsArgs' pg_qualstats: System-wide settings for the pg_qualstats extension
|
|
48539
48622
|
:param builtins.bool pg_read_replica: Should the service which is being forked be a read replica (deprecated, use read_replica service integration instead).
|
|
48540
48623
|
:param 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`.
|
|
48541
|
-
:param builtins.bool pg_stat_monitor_enable: Enable the pg_stat_monitor extension.
|
|
48624
|
+
:param 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`.
|
|
48542
48625
|
:param builtins.str pg_version: Enum: `10`, `11`, `12`, `13`, `14`, `15`, `16`, `17`, and newer. PostgreSQL major version.
|
|
48543
48626
|
:param 'GetPgPgUserConfigPgauditArgs' pgaudit: System-wide settings for the pgaudit extension
|
|
48544
48627
|
:param 'GetPgPgUserConfigPgbouncerArgs' pgbouncer: PGBouncer connection pooling settings
|
|
@@ -48550,12 +48633,12 @@ class GetPgPgUserConfigResult(dict):
|
|
|
48550
48633
|
:param 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`.
|
|
48551
48634
|
:param builtins.bool service_log: Store logs for the service so that they are available in the HTTP API and console.
|
|
48552
48635
|
:param 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`.
|
|
48553
|
-
:param 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`.
|
|
48636
|
+
:param 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`.
|
|
48554
48637
|
:param builtins.bool static_ips: Use static public IP addresses.
|
|
48555
48638
|
:param builtins.str synchronous_replication: Enum: `off`, `quorum`. Synchronous replication type. Note that the service plan also needs to support synchronous replication.
|
|
48556
48639
|
:param 'GetPgPgUserConfigTimescaledbArgs' timescaledb: System-wide settings for the timescaledb extension
|
|
48557
48640
|
:param builtins.str variant: Enum: `aiven`, `timescale`. Variant of the PostgreSQL service, may affect the features that are exposed by default.
|
|
48558
|
-
:param 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.
|
|
48641
|
+
:param 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`.
|
|
48559
48642
|
"""
|
|
48560
48643
|
if additional_backup_regions is not None:
|
|
48561
48644
|
pulumi.set(__self__, "additional_backup_regions", additional_backup_regions)
|
|
@@ -48740,7 +48823,7 @@ class GetPgPgUserConfigResult(dict):
|
|
|
48740
48823
|
@pulumi.getter(name="pgStatMonitorEnable")
|
|
48741
48824
|
def pg_stat_monitor_enable(self) -> Optional[builtins.bool]:
|
|
48742
48825
|
"""
|
|
48743
|
-
Enable the pg_stat_monitor extension.
|
|
48826
|
+
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`.
|
|
48744
48827
|
"""
|
|
48745
48828
|
return pulumi.get(self, "pg_stat_monitor_enable")
|
|
48746
48829
|
|
|
@@ -48836,7 +48919,7 @@ class GetPgPgUserConfigResult(dict):
|
|
|
48836
48919
|
@pulumi.getter(name="sharedBuffersPercentage")
|
|
48837
48920
|
def shared_buffers_percentage(self) -> Optional[builtins.float]:
|
|
48838
48921
|
"""
|
|
48839
|
-
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`.
|
|
48922
|
+
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`.
|
|
48840
48923
|
"""
|
|
48841
48924
|
return pulumi.get(self, "shared_buffers_percentage")
|
|
48842
48925
|
|
|
@@ -48876,7 +48959,7 @@ class GetPgPgUserConfigResult(dict):
|
|
|
48876
48959
|
@pulumi.getter(name="workMem")
|
|
48877
48960
|
def work_mem(self) -> Optional[builtins.int]:
|
|
48878
48961
|
"""
|
|
48879
|
-
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.
|
|
48962
|
+
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`.
|
|
48880
48963
|
"""
|
|
48881
48964
|
return pulumi.get(self, "work_mem")
|
|
48882
48965
|
|
|
@@ -49078,56 +49161,56 @@ class GetPgPgUserConfigPgResult(dict):
|
|
|
49078
49161
|
wal_sender_timeout: Optional[builtins.int] = None,
|
|
49079
49162
|
wal_writer_delay: Optional[builtins.int] = None):
|
|
49080
49163
|
"""
|
|
49081
|
-
:param 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.
|
|
49082
|
-
:param 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
|
|
49083
|
-
:param 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.
|
|
49084
|
-
:param 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
|
|
49085
|
-
:param builtins.int autovacuum_naptime: Specifies the minimum delay between autovacuum runs on any given database. The delay is measured in seconds
|
|
49086
|
-
:param builtins.int autovacuum_vacuum_cost_delay: Specifies the cost delay value that will be used in automatic VACUUM operations. If
|
|
49087
|
-
:param builtins.int autovacuum_vacuum_cost_limit: Specifies the cost limit value that will be used in automatic VACUUM operations. If
|
|
49088
|
-
:param 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.
|
|
49089
|
-
:param 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
|
|
49090
|
-
:param builtins.int bgwriter_delay: Specifies the delay between activity rounds for the background writer in milliseconds.
|
|
49091
|
-
:param 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
|
|
49092
|
-
:param 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.
|
|
49093
|
-
:param 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
|
|
49094
|
-
:param 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`.
|
|
49095
|
-
:param builtins.str default_toast_compression: Enum: `lz4`, `pglz`. Specifies the default TOAST compression method for values of compressible columns
|
|
49164
|
+
:param 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`.
|
|
49165
|
+
:param 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`.
|
|
49166
|
+
:param 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`.
|
|
49167
|
+
:param 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.
|
|
49168
|
+
:param 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`.
|
|
49169
|
+
:param 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).
|
|
49170
|
+
:param 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).
|
|
49171
|
+
:param 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`.
|
|
49172
|
+
:param 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`.
|
|
49173
|
+
:param builtins.int bgwriter_delay: Specifies the delay between activity rounds for the background writer in milliseconds. The default is `200`. Example: `200`.
|
|
49174
|
+
:param 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`.
|
|
49175
|
+
:param 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`.
|
|
49176
|
+
:param 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`.
|
|
49177
|
+
:param 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`.
|
|
49178
|
+
:param 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+.
|
|
49096
49179
|
:param builtins.int idle_in_transaction_session_timeout: Time out sessions with open transactions after this number of milliseconds.
|
|
49097
49180
|
:param builtins.bool jit: Controls system-wide use of Just-in-Time Compilation (JIT).
|
|
49098
|
-
:param 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
|
|
49181
|
+
:param 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`.
|
|
49099
49182
|
:param 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.
|
|
49100
49183
|
:param 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.
|
|
49101
49184
|
:param builtins.int log_min_duration_statement: Log statements that take more than this number of milliseconds to run, -1 disables.
|
|
49102
49185
|
:param builtins.int log_temp_files: Log statements for each temporary file created larger than this number of kilobytes, -1 disables.
|
|
49103
|
-
:param builtins.int max_files_per_process: PostgreSQL maximum number of files that can be open per process.
|
|
49104
|
-
:param builtins.int max_locks_per_transaction: PostgreSQL maximum locks per transaction.
|
|
49105
|
-
:param builtins.int max_logical_replication_workers: PostgreSQL maximum logical replication workers (taken from the pool of max_parallel_workers).
|
|
49106
|
-
:param builtins.int max_parallel_workers: Sets the maximum number of workers that the system can support for parallel queries.
|
|
49107
|
-
:param 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.
|
|
49108
|
-
:param builtins.int max_pred_locks_per_transaction: PostgreSQL maximum predicate locks per transaction.
|
|
49109
|
-
:param builtins.int max_prepared_transactions: PostgreSQL maximum prepared transactions.
|
|
49110
|
-
:param builtins.int max_replication_slots: PostgreSQL maximum replication slots.
|
|
49111
|
-
:param builtins.int max_slot_wal_keep_size: PostgreSQL maximum WAL size (MB) reserved for replication slots.
|
|
49112
|
-
:param builtins.int max_stack_depth: Maximum depth of the stack in bytes.
|
|
49113
|
-
:param builtins.int max_standby_archive_delay: Max standby archive delay in milliseconds.
|
|
49114
|
-
:param builtins.int max_standby_streaming_delay: Max standby streaming delay in milliseconds.
|
|
49115
|
-
:param builtins.int max_wal_senders: PostgreSQL maximum WAL senders.
|
|
49116
|
-
:param builtins.int max_worker_processes: Sets the maximum number of background processes that the system can support.
|
|
49186
|
+
:param 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.
|
|
49187
|
+
:param builtins.int max_locks_per_transaction: PostgreSQL maximum locks per transaction. Changing this parameter causes a service restart.
|
|
49188
|
+
:param 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.
|
|
49189
|
+
:param 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).
|
|
49190
|
+
:param 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).
|
|
49191
|
+
:param 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.
|
|
49192
|
+
:param builtins.int max_prepared_transactions: PostgreSQL maximum prepared transactions. The default is `0`. Changing this parameter causes a service restart.
|
|
49193
|
+
:param builtins.int max_replication_slots: PostgreSQL maximum replication slots. The default is `20`. Changing this parameter causes a service restart.
|
|
49194
|
+
:param 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.
|
|
49195
|
+
:param builtins.int max_stack_depth: Maximum depth of the stack in bytes. The default is `2097152` (upstream default).
|
|
49196
|
+
:param builtins.int max_standby_archive_delay: Max standby archive delay in milliseconds. The default is `30000` (upstream default).
|
|
49197
|
+
:param builtins.int max_standby_streaming_delay: Max standby streaming delay in milliseconds. The default is `30000` (upstream default).
|
|
49198
|
+
:param builtins.int max_wal_senders: PostgreSQL maximum WAL senders. The default is `20`. Changing this parameter causes a service restart.
|
|
49199
|
+
:param 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.
|
|
49117
49200
|
:param builtins.str password_encryption: Enum: `md5`, `scram-sha-256`. Chooses the algorithm for encrypting passwords. Default: `md5`.
|
|
49118
|
-
:param builtins.int pg_partman_bgw_dot_interval: Sets the time interval to run pg_partman's scheduled tasks. Example: `3600`.
|
|
49201
|
+
:param 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`.
|
|
49119
49202
|
:param builtins.str pg_partman_bgw_dot_role: Controls which role to use for pg_partman's scheduled background tasks. Example: `myrolename`.
|
|
49120
|
-
:param builtins.bool pg_stat_monitor_dot_pgsm_enable_query_plan: Enables or disables query plan monitoring.
|
|
49121
|
-
:param builtins.int pg_stat_monitor_dot_pgsm_max_buckets: Sets the maximum number of buckets. Example: `10`.
|
|
49122
|
-
:param 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
|
|
49203
|
+
:param 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+.
|
|
49204
|
+
:param 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`.
|
|
49205
|
+
:param 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`.
|
|
49123
49206
|
:param builtins.int temp_file_limit: PostgreSQL temporary file limit in KiB, -1 for unlimited. Example: `5000000`.
|
|
49124
49207
|
:param builtins.str timezone: PostgreSQL service timezone. Example: `Europe/Helsinki`.
|
|
49125
|
-
:param builtins.int track_activity_query_size: Specifies the number of bytes reserved to track the currently executing command for each active session. Example: `1024`.
|
|
49126
|
-
:param builtins.str track_commit_timestamp: Enum: `off`, `on`. Record commit time of transactions.
|
|
49208
|
+
:param 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`.
|
|
49209
|
+
:param builtins.str track_commit_timestamp: Enum: `off`, `on`. Record commit time of transactions. Changing this parameter causes a service restart.
|
|
49127
49210
|
:param builtins.str track_functions: Enum: `all`, `none`, `pl`. Enables tracking of function call counts and time used.
|
|
49128
|
-
:param builtins.str track_io_timing: Enum: `off`, `on`. Enables timing of database I/O calls.
|
|
49211
|
+
:param 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.
|
|
49129
49212
|
:param 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`.
|
|
49130
|
-
:param builtins.int wal_writer_delay: WAL flush interval in milliseconds.
|
|
49213
|
+
:param 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`.
|
|
49131
49214
|
"""
|
|
49132
49215
|
if autovacuum_analyze_scale_factor is not None:
|
|
49133
49216
|
pulumi.set(__self__, "autovacuum_analyze_scale_factor", autovacuum_analyze_scale_factor)
|
|
@@ -49234,7 +49317,7 @@ class GetPgPgUserConfigPgResult(dict):
|
|
|
49234
49317
|
@pulumi.getter(name="autovacuumAnalyzeScaleFactor")
|
|
49235
49318
|
def autovacuum_analyze_scale_factor(self) -> Optional[builtins.float]:
|
|
49236
49319
|
"""
|
|
49237
|
-
Specifies a fraction of the table size to add to autovacuum_analyze_threshold when deciding whether to trigger an ANALYZE.
|
|
49320
|
+
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`.
|
|
49238
49321
|
"""
|
|
49239
49322
|
return pulumi.get(self, "autovacuum_analyze_scale_factor")
|
|
49240
49323
|
|
|
@@ -49242,7 +49325,7 @@ class GetPgPgUserConfigPgResult(dict):
|
|
|
49242
49325
|
@pulumi.getter(name="autovacuumAnalyzeThreshold")
|
|
49243
49326
|
def autovacuum_analyze_threshold(self) -> Optional[builtins.int]:
|
|
49244
49327
|
"""
|
|
49245
|
-
Specifies the minimum number of inserted, updated or deleted tuples needed to trigger an ANALYZE in any one table. The default is 50
|
|
49328
|
+
Specifies the minimum number of inserted, updated or deleted tuples needed to trigger an ANALYZE in any one table. The default is `50`.
|
|
49246
49329
|
"""
|
|
49247
49330
|
return pulumi.get(self, "autovacuum_analyze_threshold")
|
|
49248
49331
|
|
|
@@ -49250,7 +49333,7 @@ class GetPgPgUserConfigPgResult(dict):
|
|
|
49250
49333
|
@pulumi.getter(name="autovacuumFreezeMaxAge")
|
|
49251
49334
|
def autovacuum_freeze_max_age(self) -> Optional[builtins.int]:
|
|
49252
49335
|
"""
|
|
49253
|
-
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.
|
|
49336
|
+
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`.
|
|
49254
49337
|
"""
|
|
49255
49338
|
return pulumi.get(self, "autovacuum_freeze_max_age")
|
|
49256
49339
|
|
|
@@ -49258,7 +49341,7 @@ class GetPgPgUserConfigPgResult(dict):
|
|
|
49258
49341
|
@pulumi.getter(name="autovacuumMaxWorkers")
|
|
49259
49342
|
def autovacuum_max_workers(self) -> Optional[builtins.int]:
|
|
49260
49343
|
"""
|
|
49261
|
-
Specifies the maximum number of autovacuum processes (other than the autovacuum launcher) that may be running at any one time. The default is
|
|
49344
|
+
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.
|
|
49262
49345
|
"""
|
|
49263
49346
|
return pulumi.get(self, "autovacuum_max_workers")
|
|
49264
49347
|
|
|
@@ -49266,7 +49349,7 @@ class GetPgPgUserConfigPgResult(dict):
|
|
|
49266
49349
|
@pulumi.getter(name="autovacuumNaptime")
|
|
49267
49350
|
def autovacuum_naptime(self) -> Optional[builtins.int]:
|
|
49268
49351
|
"""
|
|
49269
|
-
Specifies the minimum delay between autovacuum runs on any given database. The delay is measured in seconds
|
|
49352
|
+
Specifies the minimum delay between autovacuum runs on any given database. The delay is measured in seconds. The default is `60`.
|
|
49270
49353
|
"""
|
|
49271
49354
|
return pulumi.get(self, "autovacuum_naptime")
|
|
49272
49355
|
|
|
@@ -49274,7 +49357,7 @@ class GetPgPgUserConfigPgResult(dict):
|
|
|
49274
49357
|
@pulumi.getter(name="autovacuumVacuumCostDelay")
|
|
49275
49358
|
def autovacuum_vacuum_cost_delay(self) -> Optional[builtins.int]:
|
|
49276
49359
|
"""
|
|
49277
|
-
Specifies the cost delay value that will be used in automatic VACUUM operations. If
|
|
49360
|
+
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).
|
|
49278
49361
|
"""
|
|
49279
49362
|
return pulumi.get(self, "autovacuum_vacuum_cost_delay")
|
|
49280
49363
|
|
|
@@ -49282,7 +49365,7 @@ class GetPgPgUserConfigPgResult(dict):
|
|
|
49282
49365
|
@pulumi.getter(name="autovacuumVacuumCostLimit")
|
|
49283
49366
|
def autovacuum_vacuum_cost_limit(self) -> Optional[builtins.int]:
|
|
49284
49367
|
"""
|
|
49285
|
-
Specifies the cost limit value that will be used in automatic VACUUM operations. If
|
|
49368
|
+
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).
|
|
49286
49369
|
"""
|
|
49287
49370
|
return pulumi.get(self, "autovacuum_vacuum_cost_limit")
|
|
49288
49371
|
|
|
@@ -49290,7 +49373,7 @@ class GetPgPgUserConfigPgResult(dict):
|
|
|
49290
49373
|
@pulumi.getter(name="autovacuumVacuumScaleFactor")
|
|
49291
49374
|
def autovacuum_vacuum_scale_factor(self) -> Optional[builtins.float]:
|
|
49292
49375
|
"""
|
|
49293
|
-
Specifies a fraction of the table size to add to autovacuum_vacuum_threshold when deciding whether to trigger a VACUUM.
|
|
49376
|
+
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`.
|
|
49294
49377
|
"""
|
|
49295
49378
|
return pulumi.get(self, "autovacuum_vacuum_scale_factor")
|
|
49296
49379
|
|
|
@@ -49298,7 +49381,7 @@ class GetPgPgUserConfigPgResult(dict):
|
|
|
49298
49381
|
@pulumi.getter(name="autovacuumVacuumThreshold")
|
|
49299
49382
|
def autovacuum_vacuum_threshold(self) -> Optional[builtins.int]:
|
|
49300
49383
|
"""
|
|
49301
|
-
Specifies the minimum number of updated or deleted tuples needed to trigger a VACUUM in any one table. The default is 50
|
|
49384
|
+
Specifies the minimum number of updated or deleted tuples needed to trigger a VACUUM in any one table. The default is `50`.
|
|
49302
49385
|
"""
|
|
49303
49386
|
return pulumi.get(self, "autovacuum_vacuum_threshold")
|
|
49304
49387
|
|
|
@@ -49306,7 +49389,7 @@ class GetPgPgUserConfigPgResult(dict):
|
|
|
49306
49389
|
@pulumi.getter(name="bgwriterDelay")
|
|
49307
49390
|
def bgwriter_delay(self) -> Optional[builtins.int]:
|
|
49308
49391
|
"""
|
|
49309
|
-
Specifies the delay between activity rounds for the background writer in milliseconds.
|
|
49392
|
+
Specifies the delay between activity rounds for the background writer in milliseconds. The default is `200`. Example: `200`.
|
|
49310
49393
|
"""
|
|
49311
49394
|
return pulumi.get(self, "bgwriter_delay")
|
|
49312
49395
|
|
|
@@ -49314,7 +49397,7 @@ class GetPgPgUserConfigPgResult(dict):
|
|
|
49314
49397
|
@pulumi.getter(name="bgwriterFlushAfter")
|
|
49315
49398
|
def bgwriter_flush_after(self) -> Optional[builtins.int]:
|
|
49316
49399
|
"""
|
|
49317
|
-
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
|
|
49400
|
+
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`.
|
|
49318
49401
|
"""
|
|
49319
49402
|
return pulumi.get(self, "bgwriter_flush_after")
|
|
49320
49403
|
|
|
@@ -49322,7 +49405,7 @@ class GetPgPgUserConfigPgResult(dict):
|
|
|
49322
49405
|
@pulumi.getter(name="bgwriterLruMaxpages")
|
|
49323
49406
|
def bgwriter_lru_maxpages(self) -> Optional[builtins.int]:
|
|
49324
49407
|
"""
|
|
49325
|
-
In each round, no more than this many buffers will be written by the background writer. Setting this to zero disables background writing.
|
|
49408
|
+
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`.
|
|
49326
49409
|
"""
|
|
49327
49410
|
return pulumi.get(self, "bgwriter_lru_maxpages")
|
|
49328
49411
|
|
|
@@ -49330,7 +49413,7 @@ class GetPgPgUserConfigPgResult(dict):
|
|
|
49330
49413
|
@pulumi.getter(name="bgwriterLruMultiplier")
|
|
49331
49414
|
def bgwriter_lru_multiplier(self) -> Optional[builtins.float]:
|
|
49332
49415
|
"""
|
|
49333
|
-
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
|
|
49416
|
+
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`.
|
|
49334
49417
|
"""
|
|
49335
49418
|
return pulumi.get(self, "bgwriter_lru_multiplier")
|
|
49336
49419
|
|
|
@@ -49338,7 +49421,7 @@ class GetPgPgUserConfigPgResult(dict):
|
|
|
49338
49421
|
@pulumi.getter(name="deadlockTimeout")
|
|
49339
49422
|
def deadlock_timeout(self) -> Optional[builtins.int]:
|
|
49340
49423
|
"""
|
|
49341
|
-
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`.
|
|
49424
|
+
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`.
|
|
49342
49425
|
"""
|
|
49343
49426
|
return pulumi.get(self, "deadlock_timeout")
|
|
49344
49427
|
|
|
@@ -49346,7 +49429,7 @@ class GetPgPgUserConfigPgResult(dict):
|
|
|
49346
49429
|
@pulumi.getter(name="defaultToastCompression")
|
|
49347
49430
|
def default_toast_compression(self) -> Optional[builtins.str]:
|
|
49348
49431
|
"""
|
|
49349
|
-
Enum: `lz4`, `pglz`. Specifies the default TOAST compression method for values of compressible columns
|
|
49432
|
+
Enum: `lz4`, `pglz`. Specifies the default TOAST compression method for values of compressible columns. The default is `lz4`. Only available for PostgreSQL 14+.
|
|
49350
49433
|
"""
|
|
49351
49434
|
return pulumi.get(self, "default_toast_compression")
|
|
49352
49435
|
|
|
@@ -49370,7 +49453,7 @@ class GetPgPgUserConfigPgResult(dict):
|
|
|
49370
49453
|
@pulumi.getter(name="logAutovacuumMinDuration")
|
|
49371
49454
|
def log_autovacuum_min_duration(self) -> Optional[builtins.int]:
|
|
49372
49455
|
"""
|
|
49373
|
-
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
|
|
49456
|
+
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`.
|
|
49374
49457
|
"""
|
|
49375
49458
|
return pulumi.get(self, "log_autovacuum_min_duration")
|
|
49376
49459
|
|
|
@@ -49410,7 +49493,7 @@ class GetPgPgUserConfigPgResult(dict):
|
|
|
49410
49493
|
@pulumi.getter(name="maxFilesPerProcess")
|
|
49411
49494
|
def max_files_per_process(self) -> Optional[builtins.int]:
|
|
49412
49495
|
"""
|
|
49413
|
-
PostgreSQL maximum number of files that can be open per process.
|
|
49496
|
+
PostgreSQL maximum number of files that can be open per process. The default is `1000` (upstream default). Changing this parameter causes a service restart.
|
|
49414
49497
|
"""
|
|
49415
49498
|
return pulumi.get(self, "max_files_per_process")
|
|
49416
49499
|
|
|
@@ -49418,7 +49501,7 @@ class GetPgPgUserConfigPgResult(dict):
|
|
|
49418
49501
|
@pulumi.getter(name="maxLocksPerTransaction")
|
|
49419
49502
|
def max_locks_per_transaction(self) -> Optional[builtins.int]:
|
|
49420
49503
|
"""
|
|
49421
|
-
PostgreSQL maximum locks per transaction.
|
|
49504
|
+
PostgreSQL maximum locks per transaction. Changing this parameter causes a service restart.
|
|
49422
49505
|
"""
|
|
49423
49506
|
return pulumi.get(self, "max_locks_per_transaction")
|
|
49424
49507
|
|
|
@@ -49426,7 +49509,7 @@ class GetPgPgUserConfigPgResult(dict):
|
|
|
49426
49509
|
@pulumi.getter(name="maxLogicalReplicationWorkers")
|
|
49427
49510
|
def max_logical_replication_workers(self) -> Optional[builtins.int]:
|
|
49428
49511
|
"""
|
|
49429
|
-
PostgreSQL maximum logical replication workers (taken from the pool of max_parallel_workers).
|
|
49512
|
+
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.
|
|
49430
49513
|
"""
|
|
49431
49514
|
return pulumi.get(self, "max_logical_replication_workers")
|
|
49432
49515
|
|
|
@@ -49434,7 +49517,7 @@ class GetPgPgUserConfigPgResult(dict):
|
|
|
49434
49517
|
@pulumi.getter(name="maxParallelWorkers")
|
|
49435
49518
|
def max_parallel_workers(self) -> Optional[builtins.int]:
|
|
49436
49519
|
"""
|
|
49437
|
-
Sets the maximum number of workers that the system can support for parallel queries.
|
|
49520
|
+
Sets the maximum number of workers that the system can support for parallel queries. The default is `8` (upstream default).
|
|
49438
49521
|
"""
|
|
49439
49522
|
return pulumi.get(self, "max_parallel_workers")
|
|
49440
49523
|
|
|
@@ -49442,7 +49525,7 @@ class GetPgPgUserConfigPgResult(dict):
|
|
|
49442
49525
|
@pulumi.getter(name="maxParallelWorkersPerGather")
|
|
49443
49526
|
def max_parallel_workers_per_gather(self) -> Optional[builtins.int]:
|
|
49444
49527
|
"""
|
|
49445
|
-
Sets the maximum number of workers that can be started by a single Gather or Gather Merge node.
|
|
49528
|
+
Sets the maximum number of workers that can be started by a single Gather or Gather Merge node. The default is `2` (upstream default).
|
|
49446
49529
|
"""
|
|
49447
49530
|
return pulumi.get(self, "max_parallel_workers_per_gather")
|
|
49448
49531
|
|
|
@@ -49450,7 +49533,7 @@ class GetPgPgUserConfigPgResult(dict):
|
|
|
49450
49533
|
@pulumi.getter(name="maxPredLocksPerTransaction")
|
|
49451
49534
|
def max_pred_locks_per_transaction(self) -> Optional[builtins.int]:
|
|
49452
49535
|
"""
|
|
49453
|
-
PostgreSQL maximum predicate locks per transaction.
|
|
49536
|
+
PostgreSQL maximum predicate locks per transaction. The default is `64` (upstream default). Changing this parameter causes a service restart.
|
|
49454
49537
|
"""
|
|
49455
49538
|
return pulumi.get(self, "max_pred_locks_per_transaction")
|
|
49456
49539
|
|
|
@@ -49458,7 +49541,7 @@ class GetPgPgUserConfigPgResult(dict):
|
|
|
49458
49541
|
@pulumi.getter(name="maxPreparedTransactions")
|
|
49459
49542
|
def max_prepared_transactions(self) -> Optional[builtins.int]:
|
|
49460
49543
|
"""
|
|
49461
|
-
PostgreSQL maximum prepared transactions.
|
|
49544
|
+
PostgreSQL maximum prepared transactions. The default is `0`. Changing this parameter causes a service restart.
|
|
49462
49545
|
"""
|
|
49463
49546
|
return pulumi.get(self, "max_prepared_transactions")
|
|
49464
49547
|
|
|
@@ -49466,7 +49549,7 @@ class GetPgPgUserConfigPgResult(dict):
|
|
|
49466
49549
|
@pulumi.getter(name="maxReplicationSlots")
|
|
49467
49550
|
def max_replication_slots(self) -> Optional[builtins.int]:
|
|
49468
49551
|
"""
|
|
49469
|
-
PostgreSQL maximum replication slots.
|
|
49552
|
+
PostgreSQL maximum replication slots. The default is `20`. Changing this parameter causes a service restart.
|
|
49470
49553
|
"""
|
|
49471
49554
|
return pulumi.get(self, "max_replication_slots")
|
|
49472
49555
|
|
|
@@ -49474,7 +49557,7 @@ class GetPgPgUserConfigPgResult(dict):
|
|
|
49474
49557
|
@pulumi.getter(name="maxSlotWalKeepSize")
|
|
49475
49558
|
def max_slot_wal_keep_size(self) -> Optional[builtins.int]:
|
|
49476
49559
|
"""
|
|
49477
|
-
PostgreSQL maximum WAL size (MB) reserved for replication slots.
|
|
49560
|
+
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.
|
|
49478
49561
|
"""
|
|
49479
49562
|
return pulumi.get(self, "max_slot_wal_keep_size")
|
|
49480
49563
|
|
|
@@ -49482,7 +49565,7 @@ class GetPgPgUserConfigPgResult(dict):
|
|
|
49482
49565
|
@pulumi.getter(name="maxStackDepth")
|
|
49483
49566
|
def max_stack_depth(self) -> Optional[builtins.int]:
|
|
49484
49567
|
"""
|
|
49485
|
-
Maximum depth of the stack in bytes.
|
|
49568
|
+
Maximum depth of the stack in bytes. The default is `2097152` (upstream default).
|
|
49486
49569
|
"""
|
|
49487
49570
|
return pulumi.get(self, "max_stack_depth")
|
|
49488
49571
|
|
|
@@ -49490,7 +49573,7 @@ class GetPgPgUserConfigPgResult(dict):
|
|
|
49490
49573
|
@pulumi.getter(name="maxStandbyArchiveDelay")
|
|
49491
49574
|
def max_standby_archive_delay(self) -> Optional[builtins.int]:
|
|
49492
49575
|
"""
|
|
49493
|
-
Max standby archive delay in milliseconds.
|
|
49576
|
+
Max standby archive delay in milliseconds. The default is `30000` (upstream default).
|
|
49494
49577
|
"""
|
|
49495
49578
|
return pulumi.get(self, "max_standby_archive_delay")
|
|
49496
49579
|
|
|
@@ -49498,7 +49581,7 @@ class GetPgPgUserConfigPgResult(dict):
|
|
|
49498
49581
|
@pulumi.getter(name="maxStandbyStreamingDelay")
|
|
49499
49582
|
def max_standby_streaming_delay(self) -> Optional[builtins.int]:
|
|
49500
49583
|
"""
|
|
49501
|
-
Max standby streaming delay in milliseconds.
|
|
49584
|
+
Max standby streaming delay in milliseconds. The default is `30000` (upstream default).
|
|
49502
49585
|
"""
|
|
49503
49586
|
return pulumi.get(self, "max_standby_streaming_delay")
|
|
49504
49587
|
|
|
@@ -49506,7 +49589,7 @@ class GetPgPgUserConfigPgResult(dict):
|
|
|
49506
49589
|
@pulumi.getter(name="maxWalSenders")
|
|
49507
49590
|
def max_wal_senders(self) -> Optional[builtins.int]:
|
|
49508
49591
|
"""
|
|
49509
|
-
PostgreSQL maximum WAL senders.
|
|
49592
|
+
PostgreSQL maximum WAL senders. The default is `20`. Changing this parameter causes a service restart.
|
|
49510
49593
|
"""
|
|
49511
49594
|
return pulumi.get(self, "max_wal_senders")
|
|
49512
49595
|
|
|
@@ -49514,7 +49597,7 @@ class GetPgPgUserConfigPgResult(dict):
|
|
|
49514
49597
|
@pulumi.getter(name="maxWorkerProcesses")
|
|
49515
49598
|
def max_worker_processes(self) -> Optional[builtins.int]:
|
|
49516
49599
|
"""
|
|
49517
|
-
Sets the maximum number of background processes that the system can support.
|
|
49600
|
+
Sets the maximum number of background processes that the system can support. The default is `8`. Changing this parameter causes a service restart.
|
|
49518
49601
|
"""
|
|
49519
49602
|
return pulumi.get(self, "max_worker_processes")
|
|
49520
49603
|
|
|
@@ -49530,7 +49613,7 @@ class GetPgPgUserConfigPgResult(dict):
|
|
|
49530
49613
|
@pulumi.getter(name="pgPartmanBgwDotInterval")
|
|
49531
49614
|
def pg_partman_bgw_dot_interval(self) -> Optional[builtins.int]:
|
|
49532
49615
|
"""
|
|
49533
|
-
Sets the time interval to run pg_partman's scheduled tasks. Example: `3600`.
|
|
49616
|
+
Sets the time interval in seconds to run pg_partman's scheduled tasks. The default is `3600`. Example: `3600`.
|
|
49534
49617
|
"""
|
|
49535
49618
|
return pulumi.get(self, "pg_partman_bgw_dot_interval")
|
|
49536
49619
|
|
|
@@ -49546,7 +49629,7 @@ class GetPgPgUserConfigPgResult(dict):
|
|
|
49546
49629
|
@pulumi.getter(name="pgStatMonitorDotPgsmEnableQueryPlan")
|
|
49547
49630
|
def pg_stat_monitor_dot_pgsm_enable_query_plan(self) -> Optional[builtins.bool]:
|
|
49548
49631
|
"""
|
|
49549
|
-
Enables or disables query plan monitoring.
|
|
49632
|
+
Enables or disables query plan monitoring. Changing this parameter causes a service restart. Only available for PostgreSQL 13+.
|
|
49550
49633
|
"""
|
|
49551
49634
|
return pulumi.get(self, "pg_stat_monitor_dot_pgsm_enable_query_plan")
|
|
49552
49635
|
|
|
@@ -49554,7 +49637,7 @@ class GetPgPgUserConfigPgResult(dict):
|
|
|
49554
49637
|
@pulumi.getter(name="pgStatMonitorDotPgsmMaxBuckets")
|
|
49555
49638
|
def pg_stat_monitor_dot_pgsm_max_buckets(self) -> Optional[builtins.int]:
|
|
49556
49639
|
"""
|
|
49557
|
-
Sets the maximum number of buckets. Example: `10`.
|
|
49640
|
+
Sets the maximum number of buckets. Changing this parameter causes a service restart. Only available for PostgreSQL 13+. Example: `10`.
|
|
49558
49641
|
"""
|
|
49559
49642
|
return pulumi.get(self, "pg_stat_monitor_dot_pgsm_max_buckets")
|
|
49560
49643
|
|
|
@@ -49562,7 +49645,7 @@ class GetPgPgUserConfigPgResult(dict):
|
|
|
49562
49645
|
@pulumi.getter(name="pgStatStatementsDotTrack")
|
|
49563
49646
|
def pg_stat_statements_dot_track(self) -> Optional[builtins.str]:
|
|
49564
49647
|
"""
|
|
49565
|
-
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
|
|
49648
|
+
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`.
|
|
49566
49649
|
"""
|
|
49567
49650
|
return pulumi.get(self, "pg_stat_statements_dot_track")
|
|
49568
49651
|
|
|
@@ -49586,7 +49669,7 @@ class GetPgPgUserConfigPgResult(dict):
|
|
|
49586
49669
|
@pulumi.getter(name="trackActivityQuerySize")
|
|
49587
49670
|
def track_activity_query_size(self) -> Optional[builtins.int]:
|
|
49588
49671
|
"""
|
|
49589
|
-
Specifies the number of bytes reserved to track the currently executing command for each active session. Example: `1024`.
|
|
49672
|
+
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`.
|
|
49590
49673
|
"""
|
|
49591
49674
|
return pulumi.get(self, "track_activity_query_size")
|
|
49592
49675
|
|
|
@@ -49594,7 +49677,7 @@ class GetPgPgUserConfigPgResult(dict):
|
|
|
49594
49677
|
@pulumi.getter(name="trackCommitTimestamp")
|
|
49595
49678
|
def track_commit_timestamp(self) -> Optional[builtins.str]:
|
|
49596
49679
|
"""
|
|
49597
|
-
Enum: `off`, `on`. Record commit time of transactions.
|
|
49680
|
+
Enum: `off`, `on`. Record commit time of transactions. Changing this parameter causes a service restart.
|
|
49598
49681
|
"""
|
|
49599
49682
|
return pulumi.get(self, "track_commit_timestamp")
|
|
49600
49683
|
|
|
@@ -49610,7 +49693,7 @@ class GetPgPgUserConfigPgResult(dict):
|
|
|
49610
49693
|
@pulumi.getter(name="trackIoTiming")
|
|
49611
49694
|
def track_io_timing(self) -> Optional[builtins.str]:
|
|
49612
49695
|
"""
|
|
49613
|
-
Enum: `off`, `on`. Enables timing of database I/O calls.
|
|
49696
|
+
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.
|
|
49614
49697
|
"""
|
|
49615
49698
|
return pulumi.get(self, "track_io_timing")
|
|
49616
49699
|
|
|
@@ -49626,7 +49709,7 @@ class GetPgPgUserConfigPgResult(dict):
|
|
|
49626
49709
|
@pulumi.getter(name="walWriterDelay")
|
|
49627
49710
|
def wal_writer_delay(self) -> Optional[builtins.int]:
|
|
49628
49711
|
"""
|
|
49629
|
-
WAL flush interval in milliseconds.
|
|
49712
|
+
WAL flush interval in milliseconds. The default is `200`. Setting this parameter to a lower value may negatively impact performance. Example: `50`.
|
|
49630
49713
|
"""
|
|
49631
49714
|
return pulumi.get(self, "wal_writer_delay")
|
|
49632
49715
|
|