@pulumi/linode 4.40.0-alpha.1750140805 → 5.0.0-alpha.1750670188
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.
- package/databaseMysqlV2.d.ts +336 -0
- package/databaseMysqlV2.js +56 -0
- package/databaseMysqlV2.js.map +1 -1
- package/databasePostgresqlV2.d.ts +564 -0
- package/databasePostgresqlV2.js +94 -0
- package/databasePostgresqlV2.js.map +1 -1
- package/getDatabaseMysqlConfig.d.ts +1038 -0
- package/getDatabaseMysqlConfig.js +1044 -0
- package/getDatabaseMysqlConfig.js.map +1 -0
- package/getDatabaseMysqlV2.d.ts +112 -0
- package/getDatabaseMysqlV2.js.map +1 -1
- package/getDatabasePostgresqlConfig.d.ts +1580 -0
- package/getDatabasePostgresqlConfig.js +1584 -0
- package/getDatabasePostgresqlConfig.js.map +1 -0
- package/getDatabasePostgresqlV2.d.ts +188 -0
- package/getDatabasePostgresqlV2.js.map +1 -1
- package/getInstanceType.d.ts +2 -2
- package/getNodeBalancer.d.ts +4 -0
- package/getNodeBalancer.js.map +1 -1
- package/getNodeBalancerConfig.d.ts +8 -0
- package/getNodeBalancerConfig.js.map +1 -1
- package/getObjectStorageQuota.d.ts +3 -3
- package/getObjectStorageQuota.js +2 -2
- package/getObjectStorageQuotas.d.ts +2 -2
- package/getObjectStorageQuotas.js +2 -2
- package/getProfile.d.ts +1 -1
- package/index.d.ts +6 -0
- package/index.js +10 -4
- package/index.js.map +1 -1
- package/instance.d.ts +4 -4
- package/instanceDisk.d.ts +1 -1
- package/instanceDisk.js +1 -1
- package/nodeBalancer.d.ts +19 -0
- package/nodeBalancer.js +3 -0
- package/nodeBalancer.js.map +1 -1
- package/nodeBalancerConfig.d.ts +27 -0
- package/nodeBalancerConfig.js +5 -0
- package/nodeBalancerConfig.js.map +1 -1
- package/package.json +2 -2
- package/types/input.d.ts +28 -4
- package/types/output.d.ts +304 -12
|
@@ -88,6 +88,194 @@ export declare class DatabasePostgresqlV2 extends pulumi.CustomResource {
|
|
|
88
88
|
* The Managed Database engine. (e.g. `postgresql`)
|
|
89
89
|
*/
|
|
90
90
|
readonly engine: pulumi.Output<string>;
|
|
91
|
+
/**
|
|
92
|
+
* Specifies a fraction of the table size to add to autovacuumAnalyzeThreshold when deciding whether to trigger an ANALYZE. The default is 0.2 (20% of table size)
|
|
93
|
+
*/
|
|
94
|
+
readonly engineConfigPgAutovacuumAnalyzeScaleFactor: pulumi.Output<number>;
|
|
95
|
+
/**
|
|
96
|
+
* Specifies the minimum number of inserted, updated or deleted tuples needed to trigger an ANALYZE in any one table. The default is 50 tuples.
|
|
97
|
+
*/
|
|
98
|
+
readonly engineConfigPgAutovacuumAnalyzeThreshold: pulumi.Output<number>;
|
|
99
|
+
/**
|
|
100
|
+
* Specifies the maximum number of autovacuum processes (other than the autovacuum launcher) that may be running at any one time. The default is three. This parameter can only be set at server start.
|
|
101
|
+
*/
|
|
102
|
+
readonly engineConfigPgAutovacuumMaxWorkers: pulumi.Output<number>;
|
|
103
|
+
/**
|
|
104
|
+
* Specifies the minimum delay between autovacuum runs on any given database. The delay is measured in seconds, and the default is one minute
|
|
105
|
+
*/
|
|
106
|
+
readonly engineConfigPgAutovacuumNaptime: pulumi.Output<number>;
|
|
107
|
+
/**
|
|
108
|
+
* Specifies the cost delay value that will be used in automatic VACUUM operations. If -1 is specified, the regular vacuumCostDelay value will be used. The default value is 20 milliseconds
|
|
109
|
+
*/
|
|
110
|
+
readonly engineConfigPgAutovacuumVacuumCostDelay: pulumi.Output<number>;
|
|
111
|
+
/**
|
|
112
|
+
* Specifies the cost limit value that will be used in automatic VACUUM operations. If -1 is specified (which is the default), the regular vacuumCostLimit value will be used.
|
|
113
|
+
*/
|
|
114
|
+
readonly engineConfigPgAutovacuumVacuumCostLimit: pulumi.Output<number>;
|
|
115
|
+
/**
|
|
116
|
+
* Specifies a fraction of the table size to add to autovacuumVacuumThreshold when deciding whether to trigger a VACUUM. The default is 0.2 (20% of table size)
|
|
117
|
+
*/
|
|
118
|
+
readonly engineConfigPgAutovacuumVacuumScaleFactor: pulumi.Output<number>;
|
|
119
|
+
/**
|
|
120
|
+
* Specifies the minimum number of updated or deleted tuples needed to trigger a VACUUM in any one table. The default is 50 tuples.
|
|
121
|
+
*/
|
|
122
|
+
readonly engineConfigPgAutovacuumVacuumThreshold: pulumi.Output<number>;
|
|
123
|
+
/**
|
|
124
|
+
* Specifies the delay between activity rounds for the background writer in milliseconds. Default is 200.
|
|
125
|
+
*/
|
|
126
|
+
readonly engineConfigPgBgwriterDelay: pulumi.Output<number>;
|
|
127
|
+
/**
|
|
128
|
+
* Whenever more than bgwriterFlushAfter bytes have been written by the background writer, attempt to force the OS to issue these writes to the underlying storage. Specified in kilobytes, default is 512. Setting of 0 disables forced writeback.
|
|
129
|
+
*/
|
|
130
|
+
readonly engineConfigPgBgwriterFlushAfter: pulumi.Output<number>;
|
|
131
|
+
/**
|
|
132
|
+
* In each round, no more than this many buffers will be written by the background writer. Setting this to zero disables background writing. Default is 100.
|
|
133
|
+
*/
|
|
134
|
+
readonly engineConfigPgBgwriterLruMaxpages: pulumi.Output<number>;
|
|
135
|
+
/**
|
|
136
|
+
* The average recent need for new buffers is multiplied by bgwriterLruMultiplier 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.
|
|
137
|
+
*/
|
|
138
|
+
readonly engineConfigPgBgwriterLruMultiplier: pulumi.Output<number>;
|
|
139
|
+
/**
|
|
140
|
+
* This is the amount of time, in milliseconds, to wait on a lock before checking to see if there is a deadlock condition.
|
|
141
|
+
*/
|
|
142
|
+
readonly engineConfigPgDeadlockTimeout: pulumi.Output<number>;
|
|
143
|
+
/**
|
|
144
|
+
* Specifies the default TOAST compression method for values of compressible columns (the default is lz4).
|
|
145
|
+
*/
|
|
146
|
+
readonly engineConfigPgDefaultToastCompression: pulumi.Output<string>;
|
|
147
|
+
/**
|
|
148
|
+
* Time out sessions with open transactions after this number of milliseconds.
|
|
149
|
+
*/
|
|
150
|
+
readonly engineConfigPgIdleInTransactionSessionTimeout: pulumi.Output<number>;
|
|
151
|
+
/**
|
|
152
|
+
* Controls system-wide use of Just-in-Time Compilation (JIT).
|
|
153
|
+
*/
|
|
154
|
+
readonly engineConfigPgJit: pulumi.Output<boolean>;
|
|
155
|
+
/**
|
|
156
|
+
* PostgreSQL maximum number of files that can be open per process.
|
|
157
|
+
*/
|
|
158
|
+
readonly engineConfigPgMaxFilesPerProcess: pulumi.Output<number>;
|
|
159
|
+
/**
|
|
160
|
+
* PostgreSQL maximum locks per transaction.
|
|
161
|
+
*/
|
|
162
|
+
readonly engineConfigPgMaxLocksPerTransaction: pulumi.Output<number>;
|
|
163
|
+
/**
|
|
164
|
+
* PostgreSQL maximum logical replication workers (taken from the pool of max_parallel_workers).
|
|
165
|
+
*/
|
|
166
|
+
readonly engineConfigPgMaxLogicalReplicationWorkers: pulumi.Output<number>;
|
|
167
|
+
/**
|
|
168
|
+
* Sets the maximum number of workers that the system can support for parallel queries.
|
|
169
|
+
*/
|
|
170
|
+
readonly engineConfigPgMaxParallelWorkers: pulumi.Output<number>;
|
|
171
|
+
/**
|
|
172
|
+
* Sets the maximum number of workers that can be started by a single Gather or Gather Merge node.
|
|
173
|
+
*/
|
|
174
|
+
readonly engineConfigPgMaxParallelWorkersPerGather: pulumi.Output<number>;
|
|
175
|
+
/**
|
|
176
|
+
* PostgreSQL maximum predicate locks per transaction.
|
|
177
|
+
*/
|
|
178
|
+
readonly engineConfigPgMaxPredLocksPerTransaction: pulumi.Output<number>;
|
|
179
|
+
/**
|
|
180
|
+
* PostgreSQL maximum replication slots.
|
|
181
|
+
*/
|
|
182
|
+
readonly engineConfigPgMaxReplicationSlots: pulumi.Output<number>;
|
|
183
|
+
/**
|
|
184
|
+
* PostgreSQL maximum WAL size (MB) reserved for replication slots. Default is -1 (unlimited). walKeepSize minimum WAL size setting takes precedence over this.
|
|
185
|
+
*/
|
|
186
|
+
readonly engineConfigPgMaxSlotWalKeepSize: pulumi.Output<number>;
|
|
187
|
+
/**
|
|
188
|
+
* Maximum depth of the stack in bytes.
|
|
189
|
+
*/
|
|
190
|
+
readonly engineConfigPgMaxStackDepth: pulumi.Output<number>;
|
|
191
|
+
/**
|
|
192
|
+
* Max standby archive delay in milliseconds.
|
|
193
|
+
*/
|
|
194
|
+
readonly engineConfigPgMaxStandbyArchiveDelay: pulumi.Output<number>;
|
|
195
|
+
/**
|
|
196
|
+
* Max standby streaming delay in milliseconds.
|
|
197
|
+
*/
|
|
198
|
+
readonly engineConfigPgMaxStandbyStreamingDelay: pulumi.Output<number>;
|
|
199
|
+
/**
|
|
200
|
+
* PostgreSQL maximum WAL senders.
|
|
201
|
+
*/
|
|
202
|
+
readonly engineConfigPgMaxWalSenders: pulumi.Output<number>;
|
|
203
|
+
/**
|
|
204
|
+
* Sets the maximum number of background processes that the system can support.
|
|
205
|
+
*/
|
|
206
|
+
readonly engineConfigPgMaxWorkerProcesses: pulumi.Output<number>;
|
|
207
|
+
/**
|
|
208
|
+
* Chooses the algorithm for encrypting passwords. (default `md5`)
|
|
209
|
+
*/
|
|
210
|
+
readonly engineConfigPgPasswordEncryption: pulumi.Output<string>;
|
|
211
|
+
/**
|
|
212
|
+
* Sets the time interval to run pg_partman's scheduled tasks.
|
|
213
|
+
*/
|
|
214
|
+
readonly engineConfigPgPgPartmanBgwInterval: pulumi.Output<number>;
|
|
215
|
+
/**
|
|
216
|
+
* Controls which role to use for pg_partman's scheduled background tasks.
|
|
217
|
+
*/
|
|
218
|
+
readonly engineConfigPgPgPartmanBgwRole: pulumi.Output<string>;
|
|
219
|
+
/**
|
|
220
|
+
* Enables or disables query plan monitoring.
|
|
221
|
+
*/
|
|
222
|
+
readonly engineConfigPgPgStatMonitorPgsmEnableQueryPlan: pulumi.Output<boolean>;
|
|
223
|
+
/**
|
|
224
|
+
* Sets the maximum number of buckets.
|
|
225
|
+
*/
|
|
226
|
+
readonly engineConfigPgPgStatMonitorPgsmMaxBuckets: pulumi.Output<number>;
|
|
227
|
+
/**
|
|
228
|
+
* Controls which statements are counted. Specify top to track top-level statements (those issued directly by clients), all to also track nested statements (such as statements invoked within functions), or none to disable statement statistics collection. The default value is top.
|
|
229
|
+
*/
|
|
230
|
+
readonly engineConfigPgPgStatStatementsTrack: pulumi.Output<string>;
|
|
231
|
+
/**
|
|
232
|
+
* Enable the pgStatMonitor extension. Enabling this extension will cause the cluster to be restarted. When this extension is enabled, pgStatStatements results for utility commands are unreliable. (default `false`)
|
|
233
|
+
*/
|
|
234
|
+
readonly engineConfigPgStatMonitorEnable: pulumi.Output<boolean>;
|
|
235
|
+
/**
|
|
236
|
+
* PostgreSQL temporary file limit in KiB, -1 for unlimited.
|
|
237
|
+
*/
|
|
238
|
+
readonly engineConfigPgTempFileLimit: pulumi.Output<number>;
|
|
239
|
+
/**
|
|
240
|
+
* PostgreSQL service timezone.
|
|
241
|
+
*/
|
|
242
|
+
readonly engineConfigPgTimezone: pulumi.Output<string>;
|
|
243
|
+
/**
|
|
244
|
+
* Specifies the number of bytes reserved to track the currently executing command for each active session.
|
|
245
|
+
*/
|
|
246
|
+
readonly engineConfigPgTrackActivityQuerySize: pulumi.Output<number>;
|
|
247
|
+
/**
|
|
248
|
+
* Record commit time of transactions.
|
|
249
|
+
*/
|
|
250
|
+
readonly engineConfigPgTrackCommitTimestamp: pulumi.Output<string>;
|
|
251
|
+
/**
|
|
252
|
+
* Enables tracking of function call counts and time used.
|
|
253
|
+
*/
|
|
254
|
+
readonly engineConfigPgTrackFunctions: pulumi.Output<string>;
|
|
255
|
+
/**
|
|
256
|
+
* Enables timing of database I/O calls. This parameter is off by default, because it will repeatedly query the operating system for the current time, which may cause significant overhead on some platforms.
|
|
257
|
+
*/
|
|
258
|
+
readonly engineConfigPgTrackIoTiming: pulumi.Output<string>;
|
|
259
|
+
/**
|
|
260
|
+
* Terminate replication connections that are inactive for longer than this amount of time, in milliseconds. Setting this value to zero disables the timeout.
|
|
261
|
+
*/
|
|
262
|
+
readonly engineConfigPgWalSenderTimeout: pulumi.Output<number>;
|
|
263
|
+
/**
|
|
264
|
+
* WAL flush interval in milliseconds. Note that setting this value to lower than the default 200ms may negatively impact performance.
|
|
265
|
+
*/
|
|
266
|
+
readonly engineConfigPgWalWriterDelay: pulumi.Output<number>;
|
|
267
|
+
/**
|
|
268
|
+
* Number of seconds of master unavailability before triggering database failover to standby. (default `60`)
|
|
269
|
+
*/
|
|
270
|
+
readonly engineConfigPglookoutMaxFailoverReplicationTimeLag: pulumi.Output<number>;
|
|
271
|
+
/**
|
|
272
|
+
* 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 sharedBuffers configuration value.
|
|
273
|
+
*/
|
|
274
|
+
readonly engineConfigSharedBuffersPercentage: pulumi.Output<number>;
|
|
275
|
+
/**
|
|
276
|
+
* Sets the maximum amount of memory to be used by a query operation (such as a sort or hash table) before writing to temporary disk files, in MB. Default is 1MB + 0.075% of total RAM (up to 32MB).
|
|
277
|
+
*/
|
|
278
|
+
readonly engineConfigWorkMem: pulumi.Output<number>;
|
|
91
279
|
/**
|
|
92
280
|
* The Managed Database engine in engine/version format. (e.g. `postgresql/16`)
|
|
93
281
|
*/
|
|
@@ -216,6 +404,194 @@ export interface DatabasePostgresqlV2State {
|
|
|
216
404
|
* The Managed Database engine. (e.g. `postgresql`)
|
|
217
405
|
*/
|
|
218
406
|
engine?: pulumi.Input<string>;
|
|
407
|
+
/**
|
|
408
|
+
* Specifies a fraction of the table size to add to autovacuumAnalyzeThreshold when deciding whether to trigger an ANALYZE. The default is 0.2 (20% of table size)
|
|
409
|
+
*/
|
|
410
|
+
engineConfigPgAutovacuumAnalyzeScaleFactor?: pulumi.Input<number>;
|
|
411
|
+
/**
|
|
412
|
+
* Specifies the minimum number of inserted, updated or deleted tuples needed to trigger an ANALYZE in any one table. The default is 50 tuples.
|
|
413
|
+
*/
|
|
414
|
+
engineConfigPgAutovacuumAnalyzeThreshold?: pulumi.Input<number>;
|
|
415
|
+
/**
|
|
416
|
+
* Specifies the maximum number of autovacuum processes (other than the autovacuum launcher) that may be running at any one time. The default is three. This parameter can only be set at server start.
|
|
417
|
+
*/
|
|
418
|
+
engineConfigPgAutovacuumMaxWorkers?: pulumi.Input<number>;
|
|
419
|
+
/**
|
|
420
|
+
* Specifies the minimum delay between autovacuum runs on any given database. The delay is measured in seconds, and the default is one minute
|
|
421
|
+
*/
|
|
422
|
+
engineConfigPgAutovacuumNaptime?: pulumi.Input<number>;
|
|
423
|
+
/**
|
|
424
|
+
* Specifies the cost delay value that will be used in automatic VACUUM operations. If -1 is specified, the regular vacuumCostDelay value will be used. The default value is 20 milliseconds
|
|
425
|
+
*/
|
|
426
|
+
engineConfigPgAutovacuumVacuumCostDelay?: pulumi.Input<number>;
|
|
427
|
+
/**
|
|
428
|
+
* Specifies the cost limit value that will be used in automatic VACUUM operations. If -1 is specified (which is the default), the regular vacuumCostLimit value will be used.
|
|
429
|
+
*/
|
|
430
|
+
engineConfigPgAutovacuumVacuumCostLimit?: pulumi.Input<number>;
|
|
431
|
+
/**
|
|
432
|
+
* Specifies a fraction of the table size to add to autovacuumVacuumThreshold when deciding whether to trigger a VACUUM. The default is 0.2 (20% of table size)
|
|
433
|
+
*/
|
|
434
|
+
engineConfigPgAutovacuumVacuumScaleFactor?: pulumi.Input<number>;
|
|
435
|
+
/**
|
|
436
|
+
* Specifies the minimum number of updated or deleted tuples needed to trigger a VACUUM in any one table. The default is 50 tuples.
|
|
437
|
+
*/
|
|
438
|
+
engineConfigPgAutovacuumVacuumThreshold?: pulumi.Input<number>;
|
|
439
|
+
/**
|
|
440
|
+
* Specifies the delay between activity rounds for the background writer in milliseconds. Default is 200.
|
|
441
|
+
*/
|
|
442
|
+
engineConfigPgBgwriterDelay?: pulumi.Input<number>;
|
|
443
|
+
/**
|
|
444
|
+
* Whenever more than bgwriterFlushAfter bytes have been written by the background writer, attempt to force the OS to issue these writes to the underlying storage. Specified in kilobytes, default is 512. Setting of 0 disables forced writeback.
|
|
445
|
+
*/
|
|
446
|
+
engineConfigPgBgwriterFlushAfter?: pulumi.Input<number>;
|
|
447
|
+
/**
|
|
448
|
+
* In each round, no more than this many buffers will be written by the background writer. Setting this to zero disables background writing. Default is 100.
|
|
449
|
+
*/
|
|
450
|
+
engineConfigPgBgwriterLruMaxpages?: pulumi.Input<number>;
|
|
451
|
+
/**
|
|
452
|
+
* The average recent need for new buffers is multiplied by bgwriterLruMultiplier 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.
|
|
453
|
+
*/
|
|
454
|
+
engineConfigPgBgwriterLruMultiplier?: pulumi.Input<number>;
|
|
455
|
+
/**
|
|
456
|
+
* This is the amount of time, in milliseconds, to wait on a lock before checking to see if there is a deadlock condition.
|
|
457
|
+
*/
|
|
458
|
+
engineConfigPgDeadlockTimeout?: pulumi.Input<number>;
|
|
459
|
+
/**
|
|
460
|
+
* Specifies the default TOAST compression method for values of compressible columns (the default is lz4).
|
|
461
|
+
*/
|
|
462
|
+
engineConfigPgDefaultToastCompression?: pulumi.Input<string>;
|
|
463
|
+
/**
|
|
464
|
+
* Time out sessions with open transactions after this number of milliseconds.
|
|
465
|
+
*/
|
|
466
|
+
engineConfigPgIdleInTransactionSessionTimeout?: pulumi.Input<number>;
|
|
467
|
+
/**
|
|
468
|
+
* Controls system-wide use of Just-in-Time Compilation (JIT).
|
|
469
|
+
*/
|
|
470
|
+
engineConfigPgJit?: pulumi.Input<boolean>;
|
|
471
|
+
/**
|
|
472
|
+
* PostgreSQL maximum number of files that can be open per process.
|
|
473
|
+
*/
|
|
474
|
+
engineConfigPgMaxFilesPerProcess?: pulumi.Input<number>;
|
|
475
|
+
/**
|
|
476
|
+
* PostgreSQL maximum locks per transaction.
|
|
477
|
+
*/
|
|
478
|
+
engineConfigPgMaxLocksPerTransaction?: pulumi.Input<number>;
|
|
479
|
+
/**
|
|
480
|
+
* PostgreSQL maximum logical replication workers (taken from the pool of max_parallel_workers).
|
|
481
|
+
*/
|
|
482
|
+
engineConfigPgMaxLogicalReplicationWorkers?: pulumi.Input<number>;
|
|
483
|
+
/**
|
|
484
|
+
* Sets the maximum number of workers that the system can support for parallel queries.
|
|
485
|
+
*/
|
|
486
|
+
engineConfigPgMaxParallelWorkers?: pulumi.Input<number>;
|
|
487
|
+
/**
|
|
488
|
+
* Sets the maximum number of workers that can be started by a single Gather or Gather Merge node.
|
|
489
|
+
*/
|
|
490
|
+
engineConfigPgMaxParallelWorkersPerGather?: pulumi.Input<number>;
|
|
491
|
+
/**
|
|
492
|
+
* PostgreSQL maximum predicate locks per transaction.
|
|
493
|
+
*/
|
|
494
|
+
engineConfigPgMaxPredLocksPerTransaction?: pulumi.Input<number>;
|
|
495
|
+
/**
|
|
496
|
+
* PostgreSQL maximum replication slots.
|
|
497
|
+
*/
|
|
498
|
+
engineConfigPgMaxReplicationSlots?: pulumi.Input<number>;
|
|
499
|
+
/**
|
|
500
|
+
* PostgreSQL maximum WAL size (MB) reserved for replication slots. Default is -1 (unlimited). walKeepSize minimum WAL size setting takes precedence over this.
|
|
501
|
+
*/
|
|
502
|
+
engineConfigPgMaxSlotWalKeepSize?: pulumi.Input<number>;
|
|
503
|
+
/**
|
|
504
|
+
* Maximum depth of the stack in bytes.
|
|
505
|
+
*/
|
|
506
|
+
engineConfigPgMaxStackDepth?: pulumi.Input<number>;
|
|
507
|
+
/**
|
|
508
|
+
* Max standby archive delay in milliseconds.
|
|
509
|
+
*/
|
|
510
|
+
engineConfigPgMaxStandbyArchiveDelay?: pulumi.Input<number>;
|
|
511
|
+
/**
|
|
512
|
+
* Max standby streaming delay in milliseconds.
|
|
513
|
+
*/
|
|
514
|
+
engineConfigPgMaxStandbyStreamingDelay?: pulumi.Input<number>;
|
|
515
|
+
/**
|
|
516
|
+
* PostgreSQL maximum WAL senders.
|
|
517
|
+
*/
|
|
518
|
+
engineConfigPgMaxWalSenders?: pulumi.Input<number>;
|
|
519
|
+
/**
|
|
520
|
+
* Sets the maximum number of background processes that the system can support.
|
|
521
|
+
*/
|
|
522
|
+
engineConfigPgMaxWorkerProcesses?: pulumi.Input<number>;
|
|
523
|
+
/**
|
|
524
|
+
* Chooses the algorithm for encrypting passwords. (default `md5`)
|
|
525
|
+
*/
|
|
526
|
+
engineConfigPgPasswordEncryption?: pulumi.Input<string>;
|
|
527
|
+
/**
|
|
528
|
+
* Sets the time interval to run pg_partman's scheduled tasks.
|
|
529
|
+
*/
|
|
530
|
+
engineConfigPgPgPartmanBgwInterval?: pulumi.Input<number>;
|
|
531
|
+
/**
|
|
532
|
+
* Controls which role to use for pg_partman's scheduled background tasks.
|
|
533
|
+
*/
|
|
534
|
+
engineConfigPgPgPartmanBgwRole?: pulumi.Input<string>;
|
|
535
|
+
/**
|
|
536
|
+
* Enables or disables query plan monitoring.
|
|
537
|
+
*/
|
|
538
|
+
engineConfigPgPgStatMonitorPgsmEnableQueryPlan?: pulumi.Input<boolean>;
|
|
539
|
+
/**
|
|
540
|
+
* Sets the maximum number of buckets.
|
|
541
|
+
*/
|
|
542
|
+
engineConfigPgPgStatMonitorPgsmMaxBuckets?: pulumi.Input<number>;
|
|
543
|
+
/**
|
|
544
|
+
* Controls which statements are counted. Specify top to track top-level statements (those issued directly by clients), all to also track nested statements (such as statements invoked within functions), or none to disable statement statistics collection. The default value is top.
|
|
545
|
+
*/
|
|
546
|
+
engineConfigPgPgStatStatementsTrack?: pulumi.Input<string>;
|
|
547
|
+
/**
|
|
548
|
+
* Enable the pgStatMonitor extension. Enabling this extension will cause the cluster to be restarted. When this extension is enabled, pgStatStatements results for utility commands are unreliable. (default `false`)
|
|
549
|
+
*/
|
|
550
|
+
engineConfigPgStatMonitorEnable?: pulumi.Input<boolean>;
|
|
551
|
+
/**
|
|
552
|
+
* PostgreSQL temporary file limit in KiB, -1 for unlimited.
|
|
553
|
+
*/
|
|
554
|
+
engineConfigPgTempFileLimit?: pulumi.Input<number>;
|
|
555
|
+
/**
|
|
556
|
+
* PostgreSQL service timezone.
|
|
557
|
+
*/
|
|
558
|
+
engineConfigPgTimezone?: pulumi.Input<string>;
|
|
559
|
+
/**
|
|
560
|
+
* Specifies the number of bytes reserved to track the currently executing command for each active session.
|
|
561
|
+
*/
|
|
562
|
+
engineConfigPgTrackActivityQuerySize?: pulumi.Input<number>;
|
|
563
|
+
/**
|
|
564
|
+
* Record commit time of transactions.
|
|
565
|
+
*/
|
|
566
|
+
engineConfigPgTrackCommitTimestamp?: pulumi.Input<string>;
|
|
567
|
+
/**
|
|
568
|
+
* Enables tracking of function call counts and time used.
|
|
569
|
+
*/
|
|
570
|
+
engineConfigPgTrackFunctions?: pulumi.Input<string>;
|
|
571
|
+
/**
|
|
572
|
+
* Enables timing of database I/O calls. This parameter is off by default, because it will repeatedly query the operating system for the current time, which may cause significant overhead on some platforms.
|
|
573
|
+
*/
|
|
574
|
+
engineConfigPgTrackIoTiming?: pulumi.Input<string>;
|
|
575
|
+
/**
|
|
576
|
+
* Terminate replication connections that are inactive for longer than this amount of time, in milliseconds. Setting this value to zero disables the timeout.
|
|
577
|
+
*/
|
|
578
|
+
engineConfigPgWalSenderTimeout?: pulumi.Input<number>;
|
|
579
|
+
/**
|
|
580
|
+
* WAL flush interval in milliseconds. Note that setting this value to lower than the default 200ms may negatively impact performance.
|
|
581
|
+
*/
|
|
582
|
+
engineConfigPgWalWriterDelay?: pulumi.Input<number>;
|
|
583
|
+
/**
|
|
584
|
+
* Number of seconds of master unavailability before triggering database failover to standby. (default `60`)
|
|
585
|
+
*/
|
|
586
|
+
engineConfigPglookoutMaxFailoverReplicationTimeLag?: pulumi.Input<number>;
|
|
587
|
+
/**
|
|
588
|
+
* 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 sharedBuffers configuration value.
|
|
589
|
+
*/
|
|
590
|
+
engineConfigSharedBuffersPercentage?: pulumi.Input<number>;
|
|
591
|
+
/**
|
|
592
|
+
* Sets the maximum amount of memory to be used by a query operation (such as a sort or hash table) before writing to temporary disk files, in MB. Default is 1MB + 0.075% of total RAM (up to 32MB).
|
|
593
|
+
*/
|
|
594
|
+
engineConfigWorkMem?: pulumi.Input<number>;
|
|
219
595
|
/**
|
|
220
596
|
* The Managed Database engine in engine/version format. (e.g. `postgresql/16`)
|
|
221
597
|
*/
|
|
@@ -320,6 +696,194 @@ export interface DatabasePostgresqlV2Args {
|
|
|
320
696
|
* The number of Linode Instance nodes deployed to the Managed Database. (default `1`)
|
|
321
697
|
*/
|
|
322
698
|
clusterSize?: pulumi.Input<number>;
|
|
699
|
+
/**
|
|
700
|
+
* Specifies a fraction of the table size to add to autovacuumAnalyzeThreshold when deciding whether to trigger an ANALYZE. The default is 0.2 (20% of table size)
|
|
701
|
+
*/
|
|
702
|
+
engineConfigPgAutovacuumAnalyzeScaleFactor?: pulumi.Input<number>;
|
|
703
|
+
/**
|
|
704
|
+
* Specifies the minimum number of inserted, updated or deleted tuples needed to trigger an ANALYZE in any one table. The default is 50 tuples.
|
|
705
|
+
*/
|
|
706
|
+
engineConfigPgAutovacuumAnalyzeThreshold?: pulumi.Input<number>;
|
|
707
|
+
/**
|
|
708
|
+
* Specifies the maximum number of autovacuum processes (other than the autovacuum launcher) that may be running at any one time. The default is three. This parameter can only be set at server start.
|
|
709
|
+
*/
|
|
710
|
+
engineConfigPgAutovacuumMaxWorkers?: pulumi.Input<number>;
|
|
711
|
+
/**
|
|
712
|
+
* Specifies the minimum delay between autovacuum runs on any given database. The delay is measured in seconds, and the default is one minute
|
|
713
|
+
*/
|
|
714
|
+
engineConfigPgAutovacuumNaptime?: pulumi.Input<number>;
|
|
715
|
+
/**
|
|
716
|
+
* Specifies the cost delay value that will be used in automatic VACUUM operations. If -1 is specified, the regular vacuumCostDelay value will be used. The default value is 20 milliseconds
|
|
717
|
+
*/
|
|
718
|
+
engineConfigPgAutovacuumVacuumCostDelay?: pulumi.Input<number>;
|
|
719
|
+
/**
|
|
720
|
+
* Specifies the cost limit value that will be used in automatic VACUUM operations. If -1 is specified (which is the default), the regular vacuumCostLimit value will be used.
|
|
721
|
+
*/
|
|
722
|
+
engineConfigPgAutovacuumVacuumCostLimit?: pulumi.Input<number>;
|
|
723
|
+
/**
|
|
724
|
+
* Specifies a fraction of the table size to add to autovacuumVacuumThreshold when deciding whether to trigger a VACUUM. The default is 0.2 (20% of table size)
|
|
725
|
+
*/
|
|
726
|
+
engineConfigPgAutovacuumVacuumScaleFactor?: pulumi.Input<number>;
|
|
727
|
+
/**
|
|
728
|
+
* Specifies the minimum number of updated or deleted tuples needed to trigger a VACUUM in any one table. The default is 50 tuples.
|
|
729
|
+
*/
|
|
730
|
+
engineConfigPgAutovacuumVacuumThreshold?: pulumi.Input<number>;
|
|
731
|
+
/**
|
|
732
|
+
* Specifies the delay between activity rounds for the background writer in milliseconds. Default is 200.
|
|
733
|
+
*/
|
|
734
|
+
engineConfigPgBgwriterDelay?: pulumi.Input<number>;
|
|
735
|
+
/**
|
|
736
|
+
* Whenever more than bgwriterFlushAfter bytes have been written by the background writer, attempt to force the OS to issue these writes to the underlying storage. Specified in kilobytes, default is 512. Setting of 0 disables forced writeback.
|
|
737
|
+
*/
|
|
738
|
+
engineConfigPgBgwriterFlushAfter?: pulumi.Input<number>;
|
|
739
|
+
/**
|
|
740
|
+
* In each round, no more than this many buffers will be written by the background writer. Setting this to zero disables background writing. Default is 100.
|
|
741
|
+
*/
|
|
742
|
+
engineConfigPgBgwriterLruMaxpages?: pulumi.Input<number>;
|
|
743
|
+
/**
|
|
744
|
+
* The average recent need for new buffers is multiplied by bgwriterLruMultiplier 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.
|
|
745
|
+
*/
|
|
746
|
+
engineConfigPgBgwriterLruMultiplier?: pulumi.Input<number>;
|
|
747
|
+
/**
|
|
748
|
+
* This is the amount of time, in milliseconds, to wait on a lock before checking to see if there is a deadlock condition.
|
|
749
|
+
*/
|
|
750
|
+
engineConfigPgDeadlockTimeout?: pulumi.Input<number>;
|
|
751
|
+
/**
|
|
752
|
+
* Specifies the default TOAST compression method for values of compressible columns (the default is lz4).
|
|
753
|
+
*/
|
|
754
|
+
engineConfigPgDefaultToastCompression?: pulumi.Input<string>;
|
|
755
|
+
/**
|
|
756
|
+
* Time out sessions with open transactions after this number of milliseconds.
|
|
757
|
+
*/
|
|
758
|
+
engineConfigPgIdleInTransactionSessionTimeout?: pulumi.Input<number>;
|
|
759
|
+
/**
|
|
760
|
+
* Controls system-wide use of Just-in-Time Compilation (JIT).
|
|
761
|
+
*/
|
|
762
|
+
engineConfigPgJit?: pulumi.Input<boolean>;
|
|
763
|
+
/**
|
|
764
|
+
* PostgreSQL maximum number of files that can be open per process.
|
|
765
|
+
*/
|
|
766
|
+
engineConfigPgMaxFilesPerProcess?: pulumi.Input<number>;
|
|
767
|
+
/**
|
|
768
|
+
* PostgreSQL maximum locks per transaction.
|
|
769
|
+
*/
|
|
770
|
+
engineConfigPgMaxLocksPerTransaction?: pulumi.Input<number>;
|
|
771
|
+
/**
|
|
772
|
+
* PostgreSQL maximum logical replication workers (taken from the pool of max_parallel_workers).
|
|
773
|
+
*/
|
|
774
|
+
engineConfigPgMaxLogicalReplicationWorkers?: pulumi.Input<number>;
|
|
775
|
+
/**
|
|
776
|
+
* Sets the maximum number of workers that the system can support for parallel queries.
|
|
777
|
+
*/
|
|
778
|
+
engineConfigPgMaxParallelWorkers?: pulumi.Input<number>;
|
|
779
|
+
/**
|
|
780
|
+
* Sets the maximum number of workers that can be started by a single Gather or Gather Merge node.
|
|
781
|
+
*/
|
|
782
|
+
engineConfigPgMaxParallelWorkersPerGather?: pulumi.Input<number>;
|
|
783
|
+
/**
|
|
784
|
+
* PostgreSQL maximum predicate locks per transaction.
|
|
785
|
+
*/
|
|
786
|
+
engineConfigPgMaxPredLocksPerTransaction?: pulumi.Input<number>;
|
|
787
|
+
/**
|
|
788
|
+
* PostgreSQL maximum replication slots.
|
|
789
|
+
*/
|
|
790
|
+
engineConfigPgMaxReplicationSlots?: pulumi.Input<number>;
|
|
791
|
+
/**
|
|
792
|
+
* PostgreSQL maximum WAL size (MB) reserved for replication slots. Default is -1 (unlimited). walKeepSize minimum WAL size setting takes precedence over this.
|
|
793
|
+
*/
|
|
794
|
+
engineConfigPgMaxSlotWalKeepSize?: pulumi.Input<number>;
|
|
795
|
+
/**
|
|
796
|
+
* Maximum depth of the stack in bytes.
|
|
797
|
+
*/
|
|
798
|
+
engineConfigPgMaxStackDepth?: pulumi.Input<number>;
|
|
799
|
+
/**
|
|
800
|
+
* Max standby archive delay in milliseconds.
|
|
801
|
+
*/
|
|
802
|
+
engineConfigPgMaxStandbyArchiveDelay?: pulumi.Input<number>;
|
|
803
|
+
/**
|
|
804
|
+
* Max standby streaming delay in milliseconds.
|
|
805
|
+
*/
|
|
806
|
+
engineConfigPgMaxStandbyStreamingDelay?: pulumi.Input<number>;
|
|
807
|
+
/**
|
|
808
|
+
* PostgreSQL maximum WAL senders.
|
|
809
|
+
*/
|
|
810
|
+
engineConfigPgMaxWalSenders?: pulumi.Input<number>;
|
|
811
|
+
/**
|
|
812
|
+
* Sets the maximum number of background processes that the system can support.
|
|
813
|
+
*/
|
|
814
|
+
engineConfigPgMaxWorkerProcesses?: pulumi.Input<number>;
|
|
815
|
+
/**
|
|
816
|
+
* Chooses the algorithm for encrypting passwords. (default `md5`)
|
|
817
|
+
*/
|
|
818
|
+
engineConfigPgPasswordEncryption?: pulumi.Input<string>;
|
|
819
|
+
/**
|
|
820
|
+
* Sets the time interval to run pg_partman's scheduled tasks.
|
|
821
|
+
*/
|
|
822
|
+
engineConfigPgPgPartmanBgwInterval?: pulumi.Input<number>;
|
|
823
|
+
/**
|
|
824
|
+
* Controls which role to use for pg_partman's scheduled background tasks.
|
|
825
|
+
*/
|
|
826
|
+
engineConfigPgPgPartmanBgwRole?: pulumi.Input<string>;
|
|
827
|
+
/**
|
|
828
|
+
* Enables or disables query plan monitoring.
|
|
829
|
+
*/
|
|
830
|
+
engineConfigPgPgStatMonitorPgsmEnableQueryPlan?: pulumi.Input<boolean>;
|
|
831
|
+
/**
|
|
832
|
+
* Sets the maximum number of buckets.
|
|
833
|
+
*/
|
|
834
|
+
engineConfigPgPgStatMonitorPgsmMaxBuckets?: pulumi.Input<number>;
|
|
835
|
+
/**
|
|
836
|
+
* Controls which statements are counted. Specify top to track top-level statements (those issued directly by clients), all to also track nested statements (such as statements invoked within functions), or none to disable statement statistics collection. The default value is top.
|
|
837
|
+
*/
|
|
838
|
+
engineConfigPgPgStatStatementsTrack?: pulumi.Input<string>;
|
|
839
|
+
/**
|
|
840
|
+
* Enable the pgStatMonitor extension. Enabling this extension will cause the cluster to be restarted. When this extension is enabled, pgStatStatements results for utility commands are unreliable. (default `false`)
|
|
841
|
+
*/
|
|
842
|
+
engineConfigPgStatMonitorEnable?: pulumi.Input<boolean>;
|
|
843
|
+
/**
|
|
844
|
+
* PostgreSQL temporary file limit in KiB, -1 for unlimited.
|
|
845
|
+
*/
|
|
846
|
+
engineConfigPgTempFileLimit?: pulumi.Input<number>;
|
|
847
|
+
/**
|
|
848
|
+
* PostgreSQL service timezone.
|
|
849
|
+
*/
|
|
850
|
+
engineConfigPgTimezone?: pulumi.Input<string>;
|
|
851
|
+
/**
|
|
852
|
+
* Specifies the number of bytes reserved to track the currently executing command for each active session.
|
|
853
|
+
*/
|
|
854
|
+
engineConfigPgTrackActivityQuerySize?: pulumi.Input<number>;
|
|
855
|
+
/**
|
|
856
|
+
* Record commit time of transactions.
|
|
857
|
+
*/
|
|
858
|
+
engineConfigPgTrackCommitTimestamp?: pulumi.Input<string>;
|
|
859
|
+
/**
|
|
860
|
+
* Enables tracking of function call counts and time used.
|
|
861
|
+
*/
|
|
862
|
+
engineConfigPgTrackFunctions?: pulumi.Input<string>;
|
|
863
|
+
/**
|
|
864
|
+
* Enables timing of database I/O calls. This parameter is off by default, because it will repeatedly query the operating system for the current time, which may cause significant overhead on some platforms.
|
|
865
|
+
*/
|
|
866
|
+
engineConfigPgTrackIoTiming?: pulumi.Input<string>;
|
|
867
|
+
/**
|
|
868
|
+
* Terminate replication connections that are inactive for longer than this amount of time, in milliseconds. Setting this value to zero disables the timeout.
|
|
869
|
+
*/
|
|
870
|
+
engineConfigPgWalSenderTimeout?: pulumi.Input<number>;
|
|
871
|
+
/**
|
|
872
|
+
* WAL flush interval in milliseconds. Note that setting this value to lower than the default 200ms may negatively impact performance.
|
|
873
|
+
*/
|
|
874
|
+
engineConfigPgWalWriterDelay?: pulumi.Input<number>;
|
|
875
|
+
/**
|
|
876
|
+
* Number of seconds of master unavailability before triggering database failover to standby. (default `60`)
|
|
877
|
+
*/
|
|
878
|
+
engineConfigPglookoutMaxFailoverReplicationTimeLag?: pulumi.Input<number>;
|
|
879
|
+
/**
|
|
880
|
+
* 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 sharedBuffers configuration value.
|
|
881
|
+
*/
|
|
882
|
+
engineConfigSharedBuffersPercentage?: pulumi.Input<number>;
|
|
883
|
+
/**
|
|
884
|
+
* Sets the maximum amount of memory to be used by a query operation (such as a sort or hash table) before writing to temporary disk files, in MB. Default is 1MB + 0.075% of total RAM (up to 32MB).
|
|
885
|
+
*/
|
|
886
|
+
engineConfigWorkMem?: pulumi.Input<number>;
|
|
323
887
|
/**
|
|
324
888
|
* The Managed Database engine in engine/version format. (e.g. `postgresql/16`)
|
|
325
889
|
*/
|