pulumi-linode 5.2.0a1752905257__py3-none-any.whl → 5.2.0a1753397983__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-linode might be problematic. Click here for more details.

Files changed (125) hide show
  1. pulumi_linode/__init__.py +1 -1
  2. pulumi_linode/_inputs.py +5169 -5170
  3. pulumi_linode/account_settings.py +70 -71
  4. pulumi_linode/config/__init__.py +1 -1
  5. pulumi_linode/config/__init__.pyi +1 -2
  6. pulumi_linode/config/vars.py +21 -22
  7. pulumi_linode/database_access_controls.py +52 -53
  8. pulumi_linode/database_mysql.py +247 -248
  9. pulumi_linode/database_mysql_v2.py +782 -783
  10. pulumi_linode/database_postgresql.py +273 -274
  11. pulumi_linode/database_postgresql_v2.py +1105 -1106
  12. pulumi_linode/domain.py +222 -223
  13. pulumi_linode/domain_record.py +188 -189
  14. pulumi_linode/firewall.py +155 -156
  15. pulumi_linode/firewall_device.py +70 -71
  16. pulumi_linode/get_account.py +33 -34
  17. pulumi_linode/get_account_availabilities.py +5 -6
  18. pulumi_linode/get_account_availability.py +13 -14
  19. pulumi_linode/get_account_login.py +17 -18
  20. pulumi_linode/get_account_logins.py +5 -6
  21. pulumi_linode/get_account_settings.py +13 -14
  22. pulumi_linode/get_child_account.py +37 -38
  23. pulumi_linode/get_child_accounts.py +5 -6
  24. pulumi_linode/get_database_backups.py +35 -36
  25. pulumi_linode/get_database_engines.py +23 -24
  26. pulumi_linode/get_database_mysql.py +52 -53
  27. pulumi_linode/get_database_mysql_backups.py +29 -30
  28. pulumi_linode/get_database_mysql_config.py +5 -6
  29. pulumi_linode/get_database_mysql_v2.py +115 -116
  30. pulumi_linode/get_database_postgresql.py +56 -57
  31. pulumi_linode/get_database_postgresql_config.py +7 -8
  32. pulumi_linode/get_database_postgresql_v2.py +153 -154
  33. pulumi_linode/get_databases.py +17 -18
  34. pulumi_linode/get_domain.py +37 -38
  35. pulumi_linode/get_domain_record.py +37 -38
  36. pulumi_linode/get_domain_zonefile.py +11 -12
  37. pulumi_linode/get_domains.py +17 -18
  38. pulumi_linode/get_firewall.py +30 -31
  39. pulumi_linode/get_firewalls.py +17 -18
  40. pulumi_linode/get_image.py +36 -37
  41. pulumi_linode/get_images.py +23 -24
  42. pulumi_linode/get_instance_backups.py +12 -13
  43. pulumi_linode/get_instance_networking.py +11 -12
  44. pulumi_linode/get_instance_type.py +30 -31
  45. pulumi_linode/get_instance_types.py +17 -18
  46. pulumi_linode/get_instances.py +17 -18
  47. pulumi_linode/get_ipv6_range.py +17 -18
  48. pulumi_linode/get_ipv6_ranges.py +5 -6
  49. pulumi_linode/get_kernel.py +23 -24
  50. pulumi_linode/get_kernels.py +17 -18
  51. pulumi_linode/get_linode_object_storage_bucket.py +33 -34
  52. pulumi_linode/get_lke_cluster.py +33 -34
  53. pulumi_linode/get_lke_clusters.py +17 -18
  54. pulumi_linode/get_lke_types.py +17 -18
  55. pulumi_linode/get_lke_version.py +13 -14
  56. pulumi_linode/get_lke_versions.py +10 -11
  57. pulumi_linode/get_nb_types.py +13 -14
  58. pulumi_linode/get_network_transfer_prices.py +17 -18
  59. pulumi_linode/get_networking_ip.py +28 -29
  60. pulumi_linode/get_networking_ips.py +17 -18
  61. pulumi_linode/get_node_balancer.py +29 -30
  62. pulumi_linode/get_node_balancer_config.py +48 -49
  63. pulumi_linode/get_node_balancer_node.py +29 -30
  64. pulumi_linode/get_nodebalancer_configs.py +23 -24
  65. pulumi_linode/get_nodebalancers.py +17 -18
  66. pulumi_linode/get_object_storage_cluster.py +15 -16
  67. pulumi_linode/get_object_storage_endpoints.py +17 -18
  68. pulumi_linode/get_object_storage_quota.py +22 -23
  69. pulumi_linode/get_object_storage_quotas.py +5 -6
  70. pulumi_linode/get_placement_group.py +19 -20
  71. pulumi_linode/get_placement_groups.py +13 -14
  72. pulumi_linode/get_profile.py +22 -23
  73. pulumi_linode/get_region.py +19 -20
  74. pulumi_linode/get_regions.py +5 -6
  75. pulumi_linode/get_ssh_key.py +17 -18
  76. pulumi_linode/get_sshkeys.py +17 -18
  77. pulumi_linode/get_stack_script.py +32 -33
  78. pulumi_linode/get_stack_scripts.py +23 -24
  79. pulumi_linode/get_user.py +35 -36
  80. pulumi_linode/get_users.py +17 -18
  81. pulumi_linode/get_vlans.py +17 -18
  82. pulumi_linode/get_volume.py +27 -28
  83. pulumi_linode/get_volume_types.py +17 -18
  84. pulumi_linode/get_volumes.py +17 -18
  85. pulumi_linode/get_vpc.py +17 -18
  86. pulumi_linode/get_vpc_ips.py +11 -12
  87. pulumi_linode/get_vpc_subnet.py +22 -23
  88. pulumi_linode/get_vpc_subnets.py +11 -12
  89. pulumi_linode/get_vpcs.py +5 -6
  90. pulumi_linode/image.py +292 -293
  91. pulumi_linode/instance.py +520 -521
  92. pulumi_linode/instance_config.py +166 -167
  93. pulumi_linode/instance_disk.py +210 -211
  94. pulumi_linode/instance_ip.py +125 -126
  95. pulumi_linode/instance_shared_ips.py +35 -36
  96. pulumi_linode/ipv6_range.py +88 -89
  97. pulumi_linode/lke_cluster.py +162 -163
  98. pulumi_linode/lke_node_pool.py +137 -138
  99. pulumi_linode/networking_ip.py +133 -134
  100. pulumi_linode/networking_ip_assignment.py +21 -22
  101. pulumi_linode/node_balancer.py +152 -153
  102. pulumi_linode/node_balancer_config.py +319 -320
  103. pulumi_linode/node_balancer_node.py +112 -113
  104. pulumi_linode/object_storage_bucket.py +195 -196
  105. pulumi_linode/object_storage_key.py +67 -68
  106. pulumi_linode/object_storage_object.py +350 -351
  107. pulumi_linode/outputs.py +5305 -5306
  108. pulumi_linode/placement_group.py +80 -81
  109. pulumi_linode/placement_group_assignment.py +48 -49
  110. pulumi_linode/provider.py +180 -181
  111. pulumi_linode/pulumi-plugin.json +1 -1
  112. pulumi_linode/rdns.py +55 -56
  113. pulumi_linode/reserved_ip_assignment.py +142 -143
  114. pulumi_linode/ssh_key.py +44 -45
  115. pulumi_linode/stack_script.py +159 -160
  116. pulumi_linode/token.py +70 -71
  117. pulumi_linode/user.py +112 -113
  118. pulumi_linode/volume.py +141 -142
  119. pulumi_linode/vpc.py +70 -71
  120. pulumi_linode/vpc_subnet.py +72 -73
  121. {pulumi_linode-5.2.0a1752905257.dist-info → pulumi_linode-5.2.0a1753397983.dist-info}/METADATA +1 -1
  122. pulumi_linode-5.2.0a1753397983.dist-info/RECORD +126 -0
  123. pulumi_linode-5.2.0a1752905257.dist-info/RECORD +0 -126
  124. {pulumi_linode-5.2.0a1752905257.dist-info → pulumi_linode-5.2.0a1753397983.dist-info}/WHEEL +0 -0
  125. {pulumi_linode-5.2.0a1752905257.dist-info → pulumi_linode-5.2.0a1753397983.dist-info}/top_level.txt +0 -0
@@ -2,8 +2,7 @@
2
2
  # *** WARNING: this file was generated by pulumi-language-python. ***
3
3
  # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
4
 
5
- import builtins
6
- import copy
5
+ import builtins as _builtins
7
6
  import warnings
8
7
  import sys
9
8
  import pulumi
@@ -255,586 +254,586 @@ class GetDatabasePostgresqlV2Result:
255
254
  raise TypeError("Expected argument 'version' to be a str")
256
255
  pulumi.set(__self__, "version", version)
257
256
 
258
- @property
257
+ @_builtins.property
259
258
  @pulumi.getter(name="allowLists")
260
- def allow_lists(self) -> Sequence[builtins.str]:
259
+ def allow_lists(self) -> Sequence[_builtins.str]:
261
260
  """
262
261
  A list of IP addresses that can access the Managed Database. Each item can be a single IP address or a range in CIDR format. Use `DatabaseAccessControls` to manage your allow list separately.
263
262
  """
264
263
  return pulumi.get(self, "allow_lists")
265
264
 
266
- @property
265
+ @_builtins.property
267
266
  @pulumi.getter(name="caCert")
268
- def ca_cert(self) -> builtins.str:
267
+ def ca_cert(self) -> _builtins.str:
269
268
  """
270
269
  The base64-encoded SSL CA certificate for the Managed Database.
271
270
  """
272
271
  return pulumi.get(self, "ca_cert")
273
272
 
274
- @property
273
+ @_builtins.property
275
274
  @pulumi.getter(name="clusterSize")
276
- def cluster_size(self) -> builtins.int:
275
+ def cluster_size(self) -> _builtins.int:
277
276
  """
278
277
  The number of Linode Instance nodes deployed to the Managed Database. (default `1`)
279
278
  """
280
279
  return pulumi.get(self, "cluster_size")
281
280
 
282
- @property
281
+ @_builtins.property
283
282
  @pulumi.getter
284
- def created(self) -> builtins.str:
283
+ def created(self) -> _builtins.str:
285
284
  """
286
285
  When this Managed Database was created.
287
286
  """
288
287
  return pulumi.get(self, "created")
289
288
 
290
- @property
289
+ @_builtins.property
291
290
  @pulumi.getter
292
- def encrypted(self) -> builtins.bool:
291
+ def encrypted(self) -> _builtins.bool:
293
292
  """
294
293
  Whether the Managed Databases is encrypted.
295
294
  """
296
295
  return pulumi.get(self, "encrypted")
297
296
 
298
- @property
297
+ @_builtins.property
299
298
  @pulumi.getter
300
- def engine(self) -> builtins.str:
299
+ def engine(self) -> _builtins.str:
301
300
  """
302
301
  The Managed Database engine. (e.g. `postgresql`)
303
302
  """
304
303
  return pulumi.get(self, "engine")
305
304
 
306
- @property
305
+ @_builtins.property
307
306
  @pulumi.getter(name="engineConfigPgAutovacuumAnalyzeScaleFactor")
308
- def engine_config_pg_autovacuum_analyze_scale_factor(self) -> builtins.float:
307
+ def engine_config_pg_autovacuum_analyze_scale_factor(self) -> _builtins.float:
309
308
  """
310
309
  Specifies a fraction of the table size to add to autovacuum_analyze_threshold when deciding whether to trigger an ANALYZE. The default is 0.2 (20% of table size)
311
310
  """
312
311
  return pulumi.get(self, "engine_config_pg_autovacuum_analyze_scale_factor")
313
312
 
314
- @property
313
+ @_builtins.property
315
314
  @pulumi.getter(name="engineConfigPgAutovacuumAnalyzeThreshold")
316
- def engine_config_pg_autovacuum_analyze_threshold(self) -> builtins.int:
315
+ def engine_config_pg_autovacuum_analyze_threshold(self) -> _builtins.int:
317
316
  """
318
317
  Specifies the minimum number of inserted, updated or deleted tuples needed to trigger an ANALYZE in any one table. The default is 50 tuples.
319
318
  """
320
319
  return pulumi.get(self, "engine_config_pg_autovacuum_analyze_threshold")
321
320
 
322
- @property
321
+ @_builtins.property
323
322
  @pulumi.getter(name="engineConfigPgAutovacuumMaxWorkers")
324
- def engine_config_pg_autovacuum_max_workers(self) -> builtins.int:
323
+ def engine_config_pg_autovacuum_max_workers(self) -> _builtins.int:
325
324
  """
326
325
  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.
327
326
  """
328
327
  return pulumi.get(self, "engine_config_pg_autovacuum_max_workers")
329
328
 
330
- @property
329
+ @_builtins.property
331
330
  @pulumi.getter(name="engineConfigPgAutovacuumNaptime")
332
- def engine_config_pg_autovacuum_naptime(self) -> builtins.int:
331
+ def engine_config_pg_autovacuum_naptime(self) -> _builtins.int:
333
332
  """
334
333
  Specifies the minimum delay between autovacuum runs on any given database. The delay is measured in seconds, and the default is one minute
335
334
  """
336
335
  return pulumi.get(self, "engine_config_pg_autovacuum_naptime")
337
336
 
338
- @property
337
+ @_builtins.property
339
338
  @pulumi.getter(name="engineConfigPgAutovacuumVacuumCostDelay")
340
- def engine_config_pg_autovacuum_vacuum_cost_delay(self) -> builtins.int:
339
+ def engine_config_pg_autovacuum_vacuum_cost_delay(self) -> _builtins.int:
341
340
  """
342
341
  Specifies the cost delay value that will be used in automatic VACUUM operations. If -1 is specified, the regular vacuum_cost_delay value will be used. The default value is 20 milliseconds
343
342
  """
344
343
  return pulumi.get(self, "engine_config_pg_autovacuum_vacuum_cost_delay")
345
344
 
346
- @property
345
+ @_builtins.property
347
346
  @pulumi.getter(name="engineConfigPgAutovacuumVacuumCostLimit")
348
- def engine_config_pg_autovacuum_vacuum_cost_limit(self) -> builtins.int:
347
+ def engine_config_pg_autovacuum_vacuum_cost_limit(self) -> _builtins.int:
349
348
  """
350
349
  Specifies the cost limit value that will be used in automatic VACUUM operations. If -1 is specified (which is the default), the regular vacuum_cost_limit value will be used.
351
350
  """
352
351
  return pulumi.get(self, "engine_config_pg_autovacuum_vacuum_cost_limit")
353
352
 
354
- @property
353
+ @_builtins.property
355
354
  @pulumi.getter(name="engineConfigPgAutovacuumVacuumScaleFactor")
356
- def engine_config_pg_autovacuum_vacuum_scale_factor(self) -> builtins.float:
355
+ def engine_config_pg_autovacuum_vacuum_scale_factor(self) -> _builtins.float:
357
356
  """
358
357
  Specifies a fraction of the table size to add to autovacuum_vacuum_threshold when deciding whether to trigger a VACUUM. The default is 0.2 (20% of table size)
359
358
  """
360
359
  return pulumi.get(self, "engine_config_pg_autovacuum_vacuum_scale_factor")
361
360
 
362
- @property
361
+ @_builtins.property
363
362
  @pulumi.getter(name="engineConfigPgAutovacuumVacuumThreshold")
364
- def engine_config_pg_autovacuum_vacuum_threshold(self) -> builtins.int:
363
+ def engine_config_pg_autovacuum_vacuum_threshold(self) -> _builtins.int:
365
364
  """
366
365
  Specifies the minimum number of updated or deleted tuples needed to trigger a VACUUM in any one table. The default is 50 tuples.
367
366
  """
368
367
  return pulumi.get(self, "engine_config_pg_autovacuum_vacuum_threshold")
369
368
 
370
- @property
369
+ @_builtins.property
371
370
  @pulumi.getter(name="engineConfigPgBgwriterDelay")
372
- def engine_config_pg_bgwriter_delay(self) -> builtins.int:
371
+ def engine_config_pg_bgwriter_delay(self) -> _builtins.int:
373
372
  """
374
373
  Specifies the delay between activity rounds for the background writer in milliseconds. Default is 200.
375
374
  """
376
375
  return pulumi.get(self, "engine_config_pg_bgwriter_delay")
377
376
 
378
- @property
377
+ @_builtins.property
379
378
  @pulumi.getter(name="engineConfigPgBgwriterFlushAfter")
380
- def engine_config_pg_bgwriter_flush_after(self) -> builtins.int:
379
+ def engine_config_pg_bgwriter_flush_after(self) -> _builtins.int:
381
380
  """
382
381
  Whenever more than bgwriter_flush_after bytes have been written by the background writer, attempt to force the OS to issue these writes to the underlying storage. Specified in kilobytes, default is 512. Setting of 0 disables forced writeback.
383
382
  """
384
383
  return pulumi.get(self, "engine_config_pg_bgwriter_flush_after")
385
384
 
386
- @property
385
+ @_builtins.property
387
386
  @pulumi.getter(name="engineConfigPgBgwriterLruMaxpages")
388
- def engine_config_pg_bgwriter_lru_maxpages(self) -> builtins.int:
387
+ def engine_config_pg_bgwriter_lru_maxpages(self) -> _builtins.int:
389
388
  """
390
389
  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.
391
390
  """
392
391
  return pulumi.get(self, "engine_config_pg_bgwriter_lru_maxpages")
393
392
 
394
- @property
393
+ @_builtins.property
395
394
  @pulumi.getter(name="engineConfigPgBgwriterLruMultiplier")
396
- def engine_config_pg_bgwriter_lru_multiplier(self) -> builtins.float:
395
+ def engine_config_pg_bgwriter_lru_multiplier(self) -> _builtins.float:
397
396
  """
398
397
  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.
399
398
  """
400
399
  return pulumi.get(self, "engine_config_pg_bgwriter_lru_multiplier")
401
400
 
402
- @property
401
+ @_builtins.property
403
402
  @pulumi.getter(name="engineConfigPgDeadlockTimeout")
404
- def engine_config_pg_deadlock_timeout(self) -> builtins.int:
403
+ def engine_config_pg_deadlock_timeout(self) -> _builtins.int:
405
404
  """
406
405
  This is the amount of time, in milliseconds, to wait on a lock before checking to see if there is a deadlock condition.
407
406
  """
408
407
  return pulumi.get(self, "engine_config_pg_deadlock_timeout")
409
408
 
410
- @property
409
+ @_builtins.property
411
410
  @pulumi.getter(name="engineConfigPgDefaultToastCompression")
412
- def engine_config_pg_default_toast_compression(self) -> builtins.str:
411
+ def engine_config_pg_default_toast_compression(self) -> _builtins.str:
413
412
  """
414
413
  Specifies the default TOAST compression method for values of compressible columns (the default is lz4).
415
414
  """
416
415
  return pulumi.get(self, "engine_config_pg_default_toast_compression")
417
416
 
418
- @property
417
+ @_builtins.property
419
418
  @pulumi.getter(name="engineConfigPgIdleInTransactionSessionTimeout")
420
- def engine_config_pg_idle_in_transaction_session_timeout(self) -> builtins.int:
419
+ def engine_config_pg_idle_in_transaction_session_timeout(self) -> _builtins.int:
421
420
  """
422
421
  Time out sessions with open transactions after this number of milliseconds.
423
422
  """
424
423
  return pulumi.get(self, "engine_config_pg_idle_in_transaction_session_timeout")
425
424
 
426
- @property
425
+ @_builtins.property
427
426
  @pulumi.getter(name="engineConfigPgJit")
428
- def engine_config_pg_jit(self) -> builtins.bool:
427
+ def engine_config_pg_jit(self) -> _builtins.bool:
429
428
  """
430
429
  Controls system-wide use of Just-in-Time Compilation (JIT).
431
430
  """
432
431
  return pulumi.get(self, "engine_config_pg_jit")
433
432
 
434
- @property
433
+ @_builtins.property
435
434
  @pulumi.getter(name="engineConfigPgMaxFilesPerProcess")
436
- def engine_config_pg_max_files_per_process(self) -> builtins.int:
435
+ def engine_config_pg_max_files_per_process(self) -> _builtins.int:
437
436
  """
438
437
  PostgreSQL maximum number of files that can be open per process.
439
438
  """
440
439
  return pulumi.get(self, "engine_config_pg_max_files_per_process")
441
440
 
442
- @property
441
+ @_builtins.property
443
442
  @pulumi.getter(name="engineConfigPgMaxLocksPerTransaction")
444
- def engine_config_pg_max_locks_per_transaction(self) -> builtins.int:
443
+ def engine_config_pg_max_locks_per_transaction(self) -> _builtins.int:
445
444
  """
446
445
  PostgreSQL maximum locks per transaction.
447
446
  """
448
447
  return pulumi.get(self, "engine_config_pg_max_locks_per_transaction")
449
448
 
450
- @property
449
+ @_builtins.property
451
450
  @pulumi.getter(name="engineConfigPgMaxLogicalReplicationWorkers")
452
- def engine_config_pg_max_logical_replication_workers(self) -> builtins.int:
451
+ def engine_config_pg_max_logical_replication_workers(self) -> _builtins.int:
453
452
  """
454
453
  PostgreSQL maximum logical replication workers (taken from the pool of max_parallel_workers).
455
454
  """
456
455
  return pulumi.get(self, "engine_config_pg_max_logical_replication_workers")
457
456
 
458
- @property
457
+ @_builtins.property
459
458
  @pulumi.getter(name="engineConfigPgMaxParallelWorkers")
460
- def engine_config_pg_max_parallel_workers(self) -> builtins.int:
459
+ def engine_config_pg_max_parallel_workers(self) -> _builtins.int:
461
460
  """
462
461
  Sets the maximum number of workers that the system can support for parallel queries.
463
462
  """
464
463
  return pulumi.get(self, "engine_config_pg_max_parallel_workers")
465
464
 
466
- @property
465
+ @_builtins.property
467
466
  @pulumi.getter(name="engineConfigPgMaxParallelWorkersPerGather")
468
- def engine_config_pg_max_parallel_workers_per_gather(self) -> builtins.int:
467
+ def engine_config_pg_max_parallel_workers_per_gather(self) -> _builtins.int:
469
468
  """
470
469
  Sets the maximum number of workers that can be started by a single Gather or Gather Merge node.
471
470
  """
472
471
  return pulumi.get(self, "engine_config_pg_max_parallel_workers_per_gather")
473
472
 
474
- @property
473
+ @_builtins.property
475
474
  @pulumi.getter(name="engineConfigPgMaxPredLocksPerTransaction")
476
- def engine_config_pg_max_pred_locks_per_transaction(self) -> builtins.int:
475
+ def engine_config_pg_max_pred_locks_per_transaction(self) -> _builtins.int:
477
476
  """
478
477
  PostgreSQL maximum predicate locks per transaction.
479
478
  """
480
479
  return pulumi.get(self, "engine_config_pg_max_pred_locks_per_transaction")
481
480
 
482
- @property
481
+ @_builtins.property
483
482
  @pulumi.getter(name="engineConfigPgMaxReplicationSlots")
484
- def engine_config_pg_max_replication_slots(self) -> builtins.int:
483
+ def engine_config_pg_max_replication_slots(self) -> _builtins.int:
485
484
  """
486
485
  PostgreSQL maximum replication slots.
487
486
  """
488
487
  return pulumi.get(self, "engine_config_pg_max_replication_slots")
489
488
 
490
- @property
489
+ @_builtins.property
491
490
  @pulumi.getter(name="engineConfigPgMaxSlotWalKeepSize")
492
- def engine_config_pg_max_slot_wal_keep_size(self) -> builtins.int:
491
+ def engine_config_pg_max_slot_wal_keep_size(self) -> _builtins.int:
493
492
  """
494
493
  PostgreSQL maximum WAL size (MB) reserved for replication slots. Default is -1 (unlimited). wal_keep_size minimum WAL size setting takes precedence over this.
495
494
  """
496
495
  return pulumi.get(self, "engine_config_pg_max_slot_wal_keep_size")
497
496
 
498
- @property
497
+ @_builtins.property
499
498
  @pulumi.getter(name="engineConfigPgMaxStackDepth")
500
- def engine_config_pg_max_stack_depth(self) -> builtins.int:
499
+ def engine_config_pg_max_stack_depth(self) -> _builtins.int:
501
500
  """
502
501
  Maximum depth of the stack in bytes.
503
502
  """
504
503
  return pulumi.get(self, "engine_config_pg_max_stack_depth")
505
504
 
506
- @property
505
+ @_builtins.property
507
506
  @pulumi.getter(name="engineConfigPgMaxStandbyArchiveDelay")
508
- def engine_config_pg_max_standby_archive_delay(self) -> builtins.int:
507
+ def engine_config_pg_max_standby_archive_delay(self) -> _builtins.int:
509
508
  """
510
509
  Max standby archive delay in milliseconds.
511
510
  """
512
511
  return pulumi.get(self, "engine_config_pg_max_standby_archive_delay")
513
512
 
514
- @property
513
+ @_builtins.property
515
514
  @pulumi.getter(name="engineConfigPgMaxStandbyStreamingDelay")
516
- def engine_config_pg_max_standby_streaming_delay(self) -> builtins.int:
515
+ def engine_config_pg_max_standby_streaming_delay(self) -> _builtins.int:
517
516
  """
518
517
  Max standby streaming delay in milliseconds.
519
518
  """
520
519
  return pulumi.get(self, "engine_config_pg_max_standby_streaming_delay")
521
520
 
522
- @property
521
+ @_builtins.property
523
522
  @pulumi.getter(name="engineConfigPgMaxWalSenders")
524
- def engine_config_pg_max_wal_senders(self) -> builtins.int:
523
+ def engine_config_pg_max_wal_senders(self) -> _builtins.int:
525
524
  """
526
525
  PostgreSQL maximum WAL senders.
527
526
  """
528
527
  return pulumi.get(self, "engine_config_pg_max_wal_senders")
529
528
 
530
- @property
529
+ @_builtins.property
531
530
  @pulumi.getter(name="engineConfigPgMaxWorkerProcesses")
532
- def engine_config_pg_max_worker_processes(self) -> builtins.int:
531
+ def engine_config_pg_max_worker_processes(self) -> _builtins.int:
533
532
  """
534
533
  Sets the maximum number of background processes that the system can support.
535
534
  """
536
535
  return pulumi.get(self, "engine_config_pg_max_worker_processes")
537
536
 
538
- @property
537
+ @_builtins.property
539
538
  @pulumi.getter(name="engineConfigPgPasswordEncryption")
540
- def engine_config_pg_password_encryption(self) -> builtins.str:
539
+ def engine_config_pg_password_encryption(self) -> _builtins.str:
541
540
  """
542
541
  Chooses the algorithm for encrypting passwords.
543
542
  """
544
543
  return pulumi.get(self, "engine_config_pg_password_encryption")
545
544
 
546
- @property
545
+ @_builtins.property
547
546
  @pulumi.getter(name="engineConfigPgPgPartmanBgwInterval")
548
- def engine_config_pg_pg_partman_bgw_interval(self) -> builtins.int:
547
+ def engine_config_pg_pg_partman_bgw_interval(self) -> _builtins.int:
549
548
  """
550
549
  Sets the time interval to run pg_partman's scheduled tasks.
551
550
  """
552
551
  return pulumi.get(self, "engine_config_pg_pg_partman_bgw_interval")
553
552
 
554
- @property
553
+ @_builtins.property
555
554
  @pulumi.getter(name="engineConfigPgPgPartmanBgwRole")
556
- def engine_config_pg_pg_partman_bgw_role(self) -> builtins.str:
555
+ def engine_config_pg_pg_partman_bgw_role(self) -> _builtins.str:
557
556
  """
558
557
  Controls which role to use for pg_partman's scheduled background tasks.
559
558
  """
560
559
  return pulumi.get(self, "engine_config_pg_pg_partman_bgw_role")
561
560
 
562
- @property
561
+ @_builtins.property
563
562
  @pulumi.getter(name="engineConfigPgPgStatMonitorPgsmEnableQueryPlan")
564
- def engine_config_pg_pg_stat_monitor_pgsm_enable_query_plan(self) -> builtins.bool:
563
+ def engine_config_pg_pg_stat_monitor_pgsm_enable_query_plan(self) -> _builtins.bool:
565
564
  """
566
565
  Enables or disables query plan monitoring.
567
566
  """
568
567
  return pulumi.get(self, "engine_config_pg_pg_stat_monitor_pgsm_enable_query_plan")
569
568
 
570
- @property
569
+ @_builtins.property
571
570
  @pulumi.getter(name="engineConfigPgPgStatMonitorPgsmMaxBuckets")
572
- def engine_config_pg_pg_stat_monitor_pgsm_max_buckets(self) -> builtins.int:
571
+ def engine_config_pg_pg_stat_monitor_pgsm_max_buckets(self) -> _builtins.int:
573
572
  """
574
573
  Sets the maximum number of buckets.
575
574
  """
576
575
  return pulumi.get(self, "engine_config_pg_pg_stat_monitor_pgsm_max_buckets")
577
576
 
578
- @property
577
+ @_builtins.property
579
578
  @pulumi.getter(name="engineConfigPgPgStatStatementsTrack")
580
- def engine_config_pg_pg_stat_statements_track(self) -> builtins.str:
579
+ def engine_config_pg_pg_stat_statements_track(self) -> _builtins.str:
581
580
  """
582
581
  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.
583
582
  """
584
583
  return pulumi.get(self, "engine_config_pg_pg_stat_statements_track")
585
584
 
586
- @property
585
+ @_builtins.property
587
586
  @pulumi.getter(name="engineConfigPgStatMonitorEnable")
588
- def engine_config_pg_stat_monitor_enable(self) -> builtins.bool:
587
+ def engine_config_pg_stat_monitor_enable(self) -> _builtins.bool:
589
588
  """
590
589
  Enable the pg_stat_monitor extension. Enabling this extension will cause the cluster to be restarted. When this extension is enabled, pg_stat_statements results for utility commands are unreliable.
591
590
  """
592
591
  return pulumi.get(self, "engine_config_pg_stat_monitor_enable")
593
592
 
594
- @property
593
+ @_builtins.property
595
594
  @pulumi.getter(name="engineConfigPgTempFileLimit")
596
- def engine_config_pg_temp_file_limit(self) -> builtins.int:
595
+ def engine_config_pg_temp_file_limit(self) -> _builtins.int:
597
596
  """
598
597
  PostgreSQL temporary file limit in KiB, -1 for unlimited.
599
598
  """
600
599
  return pulumi.get(self, "engine_config_pg_temp_file_limit")
601
600
 
602
- @property
601
+ @_builtins.property
603
602
  @pulumi.getter(name="engineConfigPgTimezone")
604
- def engine_config_pg_timezone(self) -> builtins.str:
603
+ def engine_config_pg_timezone(self) -> _builtins.str:
605
604
  """
606
605
  PostgreSQL service timezone.
607
606
  """
608
607
  return pulumi.get(self, "engine_config_pg_timezone")
609
608
 
610
- @property
609
+ @_builtins.property
611
610
  @pulumi.getter(name="engineConfigPgTrackActivityQuerySize")
612
- def engine_config_pg_track_activity_query_size(self) -> builtins.int:
611
+ def engine_config_pg_track_activity_query_size(self) -> _builtins.int:
613
612
  """
614
613
  Specifies the number of bytes reserved to track the currently executing command for each active session.
615
614
  """
616
615
  return pulumi.get(self, "engine_config_pg_track_activity_query_size")
617
616
 
618
- @property
617
+ @_builtins.property
619
618
  @pulumi.getter(name="engineConfigPgTrackCommitTimestamp")
620
- def engine_config_pg_track_commit_timestamp(self) -> builtins.str:
619
+ def engine_config_pg_track_commit_timestamp(self) -> _builtins.str:
621
620
  """
622
621
  Record commit time of transactions.
623
622
  """
624
623
  return pulumi.get(self, "engine_config_pg_track_commit_timestamp")
625
624
 
626
- @property
625
+ @_builtins.property
627
626
  @pulumi.getter(name="engineConfigPgTrackFunctions")
628
- def engine_config_pg_track_functions(self) -> builtins.str:
627
+ def engine_config_pg_track_functions(self) -> _builtins.str:
629
628
  """
630
629
  Enables tracking of function call counts and time used.
631
630
  """
632
631
  return pulumi.get(self, "engine_config_pg_track_functions")
633
632
 
634
- @property
633
+ @_builtins.property
635
634
  @pulumi.getter(name="engineConfigPgTrackIoTiming")
636
- def engine_config_pg_track_io_timing(self) -> builtins.str:
635
+ def engine_config_pg_track_io_timing(self) -> _builtins.str:
637
636
  """
638
637
  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.
639
638
  """
640
639
  return pulumi.get(self, "engine_config_pg_track_io_timing")
641
640
 
642
- @property
641
+ @_builtins.property
643
642
  @pulumi.getter(name="engineConfigPgWalSenderTimeout")
644
- def engine_config_pg_wal_sender_timeout(self) -> builtins.int:
643
+ def engine_config_pg_wal_sender_timeout(self) -> _builtins.int:
645
644
  """
646
645
  Terminate replication connections that are inactive for longer than this amount of time, in milliseconds. Setting this value to zero disables the timeout.
647
646
  """
648
647
  return pulumi.get(self, "engine_config_pg_wal_sender_timeout")
649
648
 
650
- @property
649
+ @_builtins.property
651
650
  @pulumi.getter(name="engineConfigPgWalWriterDelay")
652
- def engine_config_pg_wal_writer_delay(self) -> builtins.int:
651
+ def engine_config_pg_wal_writer_delay(self) -> _builtins.int:
653
652
  """
654
653
  WAL flush interval in milliseconds. Note that setting this value to lower than the default 200ms may negatively impact performance.
655
654
  """
656
655
  return pulumi.get(self, "engine_config_pg_wal_writer_delay")
657
656
 
658
- @property
657
+ @_builtins.property
659
658
  @pulumi.getter(name="engineConfigPglookoutMaxFailoverReplicationTimeLag")
660
- def engine_config_pglookout_max_failover_replication_time_lag(self) -> builtins.int:
659
+ def engine_config_pglookout_max_failover_replication_time_lag(self) -> _builtins.int:
661
660
  """
662
661
  Number of seconds of master unavailability before triggering database failover to standby.
663
662
  """
664
663
  return pulumi.get(self, "engine_config_pglookout_max_failover_replication_time_lag")
665
664
 
666
- @property
665
+ @_builtins.property
667
666
  @pulumi.getter(name="engineConfigSharedBuffersPercentage")
668
- def engine_config_shared_buffers_percentage(self) -> builtins.float:
667
+ def engine_config_shared_buffers_percentage(self) -> _builtins.float:
669
668
  """
670
669
  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.
671
670
  """
672
671
  return pulumi.get(self, "engine_config_shared_buffers_percentage")
673
672
 
674
- @property
673
+ @_builtins.property
675
674
  @pulumi.getter(name="engineConfigWorkMem")
676
- def engine_config_work_mem(self) -> builtins.int:
675
+ def engine_config_work_mem(self) -> _builtins.int:
677
676
  """
678
677
  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).
679
678
  """
680
679
  return pulumi.get(self, "engine_config_work_mem")
681
680
 
682
- @property
681
+ @_builtins.property
683
682
  @pulumi.getter(name="engineId")
684
- def engine_id(self) -> builtins.str:
683
+ def engine_id(self) -> _builtins.str:
685
684
  """
686
685
  The Managed Database engine in engine/version format. (e.g. `postgresql/16`)
687
686
  """
688
687
  return pulumi.get(self, "engine_id")
689
688
 
690
- @property
689
+ @_builtins.property
691
690
  @pulumi.getter(name="forkRestoreTime")
692
- def fork_restore_time(self) -> builtins.str:
691
+ def fork_restore_time(self) -> _builtins.str:
693
692
  """
694
693
  The database timestamp from which it was restored.
695
694
  """
696
695
  return pulumi.get(self, "fork_restore_time")
697
696
 
698
- @property
697
+ @_builtins.property
699
698
  @pulumi.getter(name="forkSource")
700
- def fork_source(self) -> builtins.int:
699
+ def fork_source(self) -> _builtins.int:
701
700
  """
702
701
  The ID of the database that was forked from.
703
702
  """
704
703
  return pulumi.get(self, "fork_source")
705
704
 
706
- @property
705
+ @_builtins.property
707
706
  @pulumi.getter(name="hostPrimary")
708
- def host_primary(self) -> builtins.str:
707
+ def host_primary(self) -> _builtins.str:
709
708
  """
710
709
  The primary host for the Managed Database.
711
710
  """
712
711
  return pulumi.get(self, "host_primary")
713
712
 
714
- @property
713
+ @_builtins.property
715
714
  @pulumi.getter(name="hostSecondary")
716
- def host_secondary(self) -> builtins.str:
715
+ def host_secondary(self) -> _builtins.str:
717
716
  """
718
717
  The secondary/private host for the managed database.
719
718
  """
720
719
  return pulumi.get(self, "host_secondary")
721
720
 
722
- @property
721
+ @_builtins.property
723
722
  @pulumi.getter
724
- def id(self) -> builtins.str:
723
+ def id(self) -> _builtins.str:
725
724
  return pulumi.get(self, "id")
726
725
 
727
- @property
726
+ @_builtins.property
728
727
  @pulumi.getter
729
- def label(self) -> builtins.str:
728
+ def label(self) -> _builtins.str:
730
729
  """
731
730
  A unique, user-defined string referring to the Managed Database.
732
731
  """
733
732
  return pulumi.get(self, "label")
734
733
 
735
- @property
734
+ @_builtins.property
736
735
  @pulumi.getter
737
- def members(self) -> Mapping[str, builtins.str]:
736
+ def members(self) -> Mapping[str, _builtins.str]:
738
737
  return pulumi.get(self, "members")
739
738
 
740
- @property
739
+ @_builtins.property
741
740
  @pulumi.getter(name="oldestRestoreTime")
742
- def oldest_restore_time(self) -> builtins.str:
741
+ def oldest_restore_time(self) -> _builtins.str:
743
742
  return pulumi.get(self, "oldest_restore_time")
744
743
 
745
- @property
744
+ @_builtins.property
746
745
  @pulumi.getter(name="pendingUpdates")
747
746
  def pending_updates(self) -> Sequence['outputs.GetDatabasePostgresqlV2PendingUpdateResult']:
748
747
  return pulumi.get(self, "pending_updates")
749
748
 
750
- @property
749
+ @_builtins.property
751
750
  @pulumi.getter
752
- def platform(self) -> builtins.str:
751
+ def platform(self) -> _builtins.str:
753
752
  """
754
753
  The back-end platform for relational databases used by the service.
755
754
  """
756
755
  return pulumi.get(self, "platform")
757
756
 
758
- @property
757
+ @_builtins.property
759
758
  @pulumi.getter
760
- def port(self) -> builtins.int:
759
+ def port(self) -> _builtins.int:
761
760
  """
762
761
  The access port for this Managed Database.
763
762
  """
764
763
  return pulumi.get(self, "port")
765
764
 
766
- @property
765
+ @_builtins.property
767
766
  @pulumi.getter
768
- def region(self) -> builtins.str:
767
+ def region(self) -> _builtins.str:
769
768
  """
770
769
  The region to use for the Managed Database.
771
770
  """
772
771
  return pulumi.get(self, "region")
773
772
 
774
- @property
773
+ @_builtins.property
775
774
  @pulumi.getter(name="rootPassword")
776
- def root_password(self) -> builtins.str:
775
+ def root_password(self) -> _builtins.str:
777
776
  """
778
777
  The randomly-generated root password for the Managed Database instance.
779
778
  """
780
779
  return pulumi.get(self, "root_password")
781
780
 
782
- @property
781
+ @_builtins.property
783
782
  @pulumi.getter(name="rootUsername")
784
- def root_username(self) -> builtins.str:
783
+ def root_username(self) -> _builtins.str:
785
784
  """
786
785
  The root username for the Managed Database instance.
787
786
  """
788
787
  return pulumi.get(self, "root_username")
789
788
 
790
- @property
789
+ @_builtins.property
791
790
  @pulumi.getter(name="sslConnection")
792
- def ssl_connection(self) -> builtins.bool:
791
+ def ssl_connection(self) -> _builtins.bool:
793
792
  """
794
793
  Whether to require SSL credentials to establish a connection to the Managed Database.
795
794
  """
796
795
  return pulumi.get(self, "ssl_connection")
797
796
 
798
- @property
797
+ @_builtins.property
799
798
  @pulumi.getter
800
- def status(self) -> builtins.str:
799
+ def status(self) -> _builtins.str:
801
800
  """
802
801
  The operating status of the Managed Database.
803
802
  """
804
803
  return pulumi.get(self, "status")
805
804
 
806
- @property
805
+ @_builtins.property
807
806
  @pulumi.getter
808
- def suspended(self) -> builtins.bool:
807
+ def suspended(self) -> _builtins.bool:
809
808
  """
810
809
  Whether this Managed Database is suspended.
811
810
  """
812
811
  return pulumi.get(self, "suspended")
813
812
 
814
- @property
813
+ @_builtins.property
815
814
  @pulumi.getter
816
- def type(self) -> builtins.str:
815
+ def type(self) -> _builtins.str:
817
816
  """
818
817
  The Linode Instance type used for the nodes of the Managed Database.
819
818
  """
820
819
  return pulumi.get(self, "type")
821
820
 
822
- @property
821
+ @_builtins.property
823
822
  @pulumi.getter
824
- def updated(self) -> builtins.str:
823
+ def updated(self) -> _builtins.str:
825
824
  """
826
825
  When this Managed Database was last updated.
827
826
  """
828
827
  return pulumi.get(self, "updated")
829
828
 
830
- @property
829
+ @_builtins.property
831
830
  @pulumi.getter
832
831
  def updates(self) -> 'outputs.GetDatabasePostgresqlV2UpdatesResult':
833
832
  return pulumi.get(self, "updates")
834
833
 
835
- @property
834
+ @_builtins.property
836
835
  @pulumi.getter
837
- def version(self) -> builtins.str:
836
+ def version(self) -> _builtins.str:
838
837
  """
839
838
  The Managed Database engine version. (e.g. `13.2`)
840
839
  """
@@ -924,7 +923,7 @@ class AwaitableGetDatabasePostgresqlV2Result(GetDatabasePostgresqlV2Result):
924
923
  version=self.version)
925
924
 
926
925
 
927
- def get_database_postgresql_v2(id: Optional[builtins.str] = None,
926
+ def get_database_postgresql_v2(id: Optional[_builtins.str] = None,
928
927
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetDatabasePostgresqlV2Result:
929
928
  """
930
929
  Provides information about a Linode PostgreSQL Database.
@@ -964,7 +963,7 @@ def get_database_postgresql_v2(id: Optional[builtins.str] = None,
964
963
  * `hour_of_day` - The hour to begin maintenance based in UTC time. (`0`..`23`)
965
964
 
966
965
 
967
- :param builtins.str id: The ID of the PostgreSQL database.
966
+ :param _builtins.str id: The ID of the PostgreSQL database.
968
967
  """
969
968
  __args__ = dict()
970
969
  __args__['id'] = id
@@ -1047,7 +1046,7 @@ def get_database_postgresql_v2(id: Optional[builtins.str] = None,
1047
1046
  updated=pulumi.get(__ret__, 'updated'),
1048
1047
  updates=pulumi.get(__ret__, 'updates'),
1049
1048
  version=pulumi.get(__ret__, 'version'))
1050
- def get_database_postgresql_v2_output(id: Optional[pulumi.Input[builtins.str]] = None,
1049
+ def get_database_postgresql_v2_output(id: Optional[pulumi.Input[_builtins.str]] = None,
1051
1050
  opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetDatabasePostgresqlV2Result]:
1052
1051
  """
1053
1052
  Provides information about a Linode PostgreSQL Database.
@@ -1087,7 +1086,7 @@ def get_database_postgresql_v2_output(id: Optional[pulumi.Input[builtins.str]] =
1087
1086
  * `hour_of_day` - The hour to begin maintenance based in UTC time. (`0`..`23`)
1088
1087
 
1089
1088
 
1090
- :param builtins.str id: The ID of the PostgreSQL database.
1089
+ :param _builtins.str id: The ID of the PostgreSQL database.
1091
1090
  """
1092
1091
  __args__ = dict()
1093
1092
  __args__['id'] = id