pulumi-aiven 6.40.0a1750736392__py3-none-any.whl → 6.41.0__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/outputs.py CHANGED
@@ -194,6 +194,7 @@ __all__ = [
194
194
  'MySqlMysqlUserConfigIpFilterObject',
195
195
  'MySqlMysqlUserConfigMigration',
196
196
  'MySqlMysqlUserConfigMysql',
197
+ 'MySqlMysqlUserConfigMysqlIncrementalBackup',
197
198
  'MySqlMysqlUserConfigPrivateAccess',
198
199
  'MySqlMysqlUserConfigPrivatelinkAccess',
199
200
  'MySqlMysqlUserConfigPublicAccess',
@@ -280,6 +281,8 @@ __all__ = [
280
281
  'RedisServiceIntegration',
281
282
  'RedisTag',
282
283
  'RedisTechEmail',
284
+ 'ServiceIntegrationClickhouseCredentialsUserConfig',
285
+ 'ServiceIntegrationClickhouseCredentialsUserConfigGrant',
283
286
  'ServiceIntegrationClickhouseKafkaUserConfig',
284
287
  'ServiceIntegrationClickhouseKafkaUserConfigTable',
285
288
  'ServiceIntegrationClickhouseKafkaUserConfigTableColumn',
@@ -532,6 +535,7 @@ __all__ = [
532
535
  'GetMySqlMysqlUserConfigIpFilterObjectResult',
533
536
  'GetMySqlMysqlUserConfigMigrationResult',
534
537
  'GetMySqlMysqlUserConfigMysqlResult',
538
+ 'GetMySqlMysqlUserConfigMysqlIncrementalBackupResult',
535
539
  'GetMySqlMysqlUserConfigPrivateAccessResult',
536
540
  'GetMySqlMysqlUserConfigPrivatelinkAccessResult',
537
541
  'GetMySqlMysqlUserConfigPublicAccessResult',
@@ -619,6 +623,8 @@ __all__ = [
619
623
  'GetRedisServiceIntegrationResult',
620
624
  'GetRedisTagResult',
621
625
  'GetRedisTechEmailResult',
626
+ 'GetServiceIntegrationClickhouseCredentialsUserConfigResult',
627
+ 'GetServiceIntegrationClickhouseCredentialsUserConfigGrantResult',
622
628
  'GetServiceIntegrationClickhouseKafkaUserConfigResult',
623
629
  'GetServiceIntegrationClickhouseKafkaUserConfigTableResult',
624
630
  'GetServiceIntegrationClickhouseKafkaUserConfigTableColumnResult',
@@ -1626,6 +1632,8 @@ class AlloydbomniAlloydbomniUserConfigPg(dict):
1626
1632
  suggest = "max_standby_archive_delay"
1627
1633
  elif key == "maxStandbyStreamingDelay":
1628
1634
  suggest = "max_standby_streaming_delay"
1635
+ elif key == "maxSyncWorkersPerSubscription":
1636
+ suggest = "max_sync_workers_per_subscription"
1629
1637
  elif key == "maxWalSenders":
1630
1638
  suggest = "max_wal_senders"
1631
1639
  elif key == "maxWorkerProcesses":
@@ -1699,6 +1707,7 @@ class AlloydbomniAlloydbomniUserConfigPg(dict):
1699
1707
  max_stack_depth: Optional[builtins.int] = None,
1700
1708
  max_standby_archive_delay: Optional[builtins.int] = None,
1701
1709
  max_standby_streaming_delay: Optional[builtins.int] = None,
1710
+ max_sync_workers_per_subscription: Optional[builtins.int] = None,
1702
1711
  max_wal_senders: Optional[builtins.int] = None,
1703
1712
  max_worker_processes: Optional[builtins.int] = None,
1704
1713
  password_encryption: Optional[builtins.str] = None,
@@ -1748,6 +1757,7 @@ class AlloydbomniAlloydbomniUserConfigPg(dict):
1748
1757
  :param builtins.int max_stack_depth: Maximum depth of the stack in bytes. The default is `2097152` (upstream default).
1749
1758
  :param builtins.int max_standby_archive_delay: Max standby archive delay in milliseconds. The default is `30000` (upstream default).
1750
1759
  :param builtins.int max_standby_streaming_delay: Max standby streaming delay in milliseconds. The default is `30000` (upstream default).
1760
+ :param builtins.int max_sync_workers_per_subscription: Maximum number of synchronization workers per subscription. The default is `2`.
1751
1761
  :param builtins.int max_wal_senders: PostgreSQL maximum WAL senders. The default is `20`. Changing this parameter causes a service restart.
1752
1762
  :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.
1753
1763
  :param builtins.str password_encryption: Enum: `md5`, `scram-sha-256`. Chooses the algorithm for encrypting passwords. Default: `md5`.
@@ -1831,6 +1841,8 @@ class AlloydbomniAlloydbomniUserConfigPg(dict):
1831
1841
  pulumi.set(__self__, "max_standby_archive_delay", max_standby_archive_delay)
1832
1842
  if max_standby_streaming_delay is not None:
1833
1843
  pulumi.set(__self__, "max_standby_streaming_delay", max_standby_streaming_delay)
1844
+ if max_sync_workers_per_subscription is not None:
1845
+ pulumi.set(__self__, "max_sync_workers_per_subscription", max_sync_workers_per_subscription)
1834
1846
  if max_wal_senders is not None:
1835
1847
  pulumi.set(__self__, "max_wal_senders", max_wal_senders)
1836
1848
  if max_worker_processes is not None:
@@ -2132,6 +2144,14 @@ class AlloydbomniAlloydbomniUserConfigPg(dict):
2132
2144
  """
2133
2145
  return pulumi.get(self, "max_standby_streaming_delay")
2134
2146
 
2147
+ @property
2148
+ @pulumi.getter(name="maxSyncWorkersPerSubscription")
2149
+ def max_sync_workers_per_subscription(self) -> Optional[builtins.int]:
2150
+ """
2151
+ Maximum number of synchronization workers per subscription. The default is `2`.
2152
+ """
2153
+ return pulumi.get(self, "max_sync_workers_per_subscription")
2154
+
2135
2155
  @property
2136
2156
  @pulumi.getter(name="maxWalSenders")
2137
2157
  def max_wal_senders(self) -> Optional[builtins.int]:
@@ -2303,17 +2323,17 @@ class AlloydbomniAlloydbomniUserConfigPgaudit(dict):
2303
2323
  role: Optional[builtins.str] = None):
2304
2324
  """
2305
2325
  :param builtins.bool feature_enabled: Enable pgaudit extension. When enabled, pgaudit extension will be automatically installed.Otherwise, extension will be uninstalled but auditing configurations will be preserved. Default: `false`.
2306
- :param builtins.bool log_catalog: Specifies that session logging should be enabled in the casewhere all relations in a statement are in pg_catalog. Default: `true`.
2326
+ :param builtins.bool log_catalog: Specifies that session logging should be enabled in the case where all relationsin a statement are in pg_catalog. Default: `true`.
2307
2327
  :param builtins.bool log_client: Specifies whether log messages will be visible to a client process such as psql. Default: `false`.
2308
2328
  :param builtins.str log_level: Enum: `debug1`, `debug2`, `debug3`, `debug4`, `debug5`, `info`, `log`, `notice`, `warning`. Specifies the log level that will be used for log entries. Default: `log`.
2309
- :param builtins.int log_max_string_length: Crop parameters representation and whole statements if they exceed this threshold. A (default) value of -1 disable the truncation. Default: `-1`.
2310
- :param builtins.bool log_nested_statements: This GUC allows to turn off logging nested statements, that is, statements that are executed as part of another ExecutorRun. Default: `true`.
2329
+ :param builtins.int log_max_string_length: Crop parameters representation and whole statements if they exceed this threshold.A (default) value of -1 disable the truncation. Default: `-1`.
2330
+ :param builtins.bool log_nested_statements: This GUC allows to turn off logging nested statements, that is, statements that areexecuted as part of another ExecutorRun. Default: `true`.
2311
2331
  :param builtins.bool log_parameter: Specifies that audit logging should include the parameters that were passed with the statement. Default: `false`.
2312
- :param builtins.int log_parameter_max_size: Specifies that parameter values longer than this setting (in bytes) should not be logged, but replaced with \\n\\n. Default: `0`.
2313
- :param builtins.bool log_relation: Specifies whether session audit logging should create a separate log entry for each relation (TABLE, VIEW, etc.) referenced in a SELECT or DML statement. Default: `false`.
2314
- :param builtins.bool log_rows: Specifies that audit logging should include the rows retrieved or affected by a statement. When enabled the rows field will be included after the parameter field. Default: `false`.
2332
+ :param builtins.int log_parameter_max_size: Specifies that parameter values longer than this setting (in bytes) should not be logged,but replaced with \\n\\n. Default: `0`.
2333
+ :param builtins.bool log_relation: Specifies whether session audit logging should create a separate log entryfor each relation (TABLE, VIEW, etc.) referenced in a SELECT or DML statement. Default: `false`.
2334
+ :param builtins.bool log_rows: Log Rows. Default: `false`.
2315
2335
  :param builtins.bool log_statement: Specifies whether logging will include the statement text and parameters (if enabled). Default: `true`.
2316
- :param builtins.bool log_statement_once: Specifies whether logging will include the statement text and parameters with the first log entry for a statement/substatement combination or with every entry. Default: `false`.
2336
+ :param builtins.bool log_statement_once: Specifies whether logging will include the statement text and parameters withthe first log entry for a statement/substatement combination or with every entry. Default: `false`.
2317
2337
  :param Sequence[builtins.str] logs: Specifies which classes of statements will be logged by session audit logging.
2318
2338
  :param builtins.str role: Specifies the master role to use for object audit logging.
2319
2339
  """
@@ -2358,7 +2378,7 @@ class AlloydbomniAlloydbomniUserConfigPgaudit(dict):
2358
2378
  @pulumi.getter(name="logCatalog")
2359
2379
  def log_catalog(self) -> Optional[builtins.bool]:
2360
2380
  """
2361
- Specifies that session logging should be enabled in the casewhere all relations in a statement are in pg_catalog. Default: `true`.
2381
+ Specifies that session logging should be enabled in the case where all relationsin a statement are in pg_catalog. Default: `true`.
2362
2382
  """
2363
2383
  return pulumi.get(self, "log_catalog")
2364
2384
 
@@ -2382,7 +2402,7 @@ class AlloydbomniAlloydbomniUserConfigPgaudit(dict):
2382
2402
  @pulumi.getter(name="logMaxStringLength")
2383
2403
  def log_max_string_length(self) -> Optional[builtins.int]:
2384
2404
  """
2385
- Crop parameters representation and whole statements if they exceed this threshold. A (default) value of -1 disable the truncation. Default: `-1`.
2405
+ Crop parameters representation and whole statements if they exceed this threshold.A (default) value of -1 disable the truncation. Default: `-1`.
2386
2406
  """
2387
2407
  return pulumi.get(self, "log_max_string_length")
2388
2408
 
@@ -2390,7 +2410,7 @@ class AlloydbomniAlloydbomniUserConfigPgaudit(dict):
2390
2410
  @pulumi.getter(name="logNestedStatements")
2391
2411
  def log_nested_statements(self) -> Optional[builtins.bool]:
2392
2412
  """
2393
- This GUC allows to turn off logging nested statements, that is, statements that are executed as part of another ExecutorRun. Default: `true`.
2413
+ This GUC allows to turn off logging nested statements, that is, statements that areexecuted as part of another ExecutorRun. Default: `true`.
2394
2414
  """
2395
2415
  return pulumi.get(self, "log_nested_statements")
2396
2416
 
@@ -2406,7 +2426,7 @@ class AlloydbomniAlloydbomniUserConfigPgaudit(dict):
2406
2426
  @pulumi.getter(name="logParameterMaxSize")
2407
2427
  def log_parameter_max_size(self) -> Optional[builtins.int]:
2408
2428
  """
2409
- Specifies that parameter values longer than this setting (in bytes) should not be logged, but replaced with \\n\\n. Default: `0`.
2429
+ Specifies that parameter values longer than this setting (in bytes) should not be logged,but replaced with \\n\\n. Default: `0`.
2410
2430
  """
2411
2431
  return pulumi.get(self, "log_parameter_max_size")
2412
2432
 
@@ -2414,7 +2434,7 @@ class AlloydbomniAlloydbomniUserConfigPgaudit(dict):
2414
2434
  @pulumi.getter(name="logRelation")
2415
2435
  def log_relation(self) -> Optional[builtins.bool]:
2416
2436
  """
2417
- Specifies whether session audit logging should create a separate log entry for each relation (TABLE, VIEW, etc.) referenced in a SELECT or DML statement. Default: `false`.
2437
+ Specifies whether session audit logging should create a separate log entryfor each relation (TABLE, VIEW, etc.) referenced in a SELECT or DML statement. Default: `false`.
2418
2438
  """
2419
2439
  return pulumi.get(self, "log_relation")
2420
2440
 
@@ -2422,7 +2442,7 @@ class AlloydbomniAlloydbomniUserConfigPgaudit(dict):
2422
2442
  @pulumi.getter(name="logRows")
2423
2443
  def log_rows(self) -> Optional[builtins.bool]:
2424
2444
  """
2425
- Specifies that audit logging should include the rows retrieved or affected by a statement. When enabled the rows field will be included after the parameter field. Default: `false`.
2445
+ Log Rows. Default: `false`.
2426
2446
  """
2427
2447
  return pulumi.get(self, "log_rows")
2428
2448
 
@@ -2438,7 +2458,7 @@ class AlloydbomniAlloydbomniUserConfigPgaudit(dict):
2438
2458
  @pulumi.getter(name="logStatementOnce")
2439
2459
  def log_statement_once(self) -> Optional[builtins.bool]:
2440
2460
  """
2441
- Specifies whether logging will include the statement text and parameters with the first log entry for a statement/substatement combination or with every entry. Default: `false`.
2461
+ Specifies whether logging will include the statement text and parameters withthe first log entry for a statement/substatement combination or with every entry. Default: `false`.
2442
2462
  """
2443
2463
  return pulumi.get(self, "log_statement_once")
2444
2464
 
@@ -13030,14 +13050,43 @@ class KafkaKafkaUserConfigSchemaRegistryConfig(dict):
13030
13050
 
13031
13051
  @pulumi.output_type
13032
13052
  class KafkaKafkaUserConfigSingleZone(dict):
13053
+ @staticmethod
13054
+ def __key_warning(key: str):
13055
+ suggest = None
13056
+ if key == "availabilityZone":
13057
+ suggest = "availability_zone"
13058
+
13059
+ if suggest:
13060
+ pulumi.log.warn(f"Key '{key}' not found in KafkaKafkaUserConfigSingleZone. Access the value via the '{suggest}' property getter instead.")
13061
+
13062
+ def __getitem__(self, key: str) -> Any:
13063
+ KafkaKafkaUserConfigSingleZone.__key_warning(key)
13064
+ return super().__getitem__(key)
13065
+
13066
+ def get(self, key: str, default = None) -> Any:
13067
+ KafkaKafkaUserConfigSingleZone.__key_warning(key)
13068
+ return super().get(key, default)
13069
+
13033
13070
  def __init__(__self__, *,
13071
+ availability_zone: Optional[builtins.str] = None,
13034
13072
  enabled: Optional[builtins.bool] = None):
13035
13073
  """
13074
+ :param builtins.str availability_zone: The availability zone to use for the service. This is only used when enabled is set to true. If not set the service will be allocated in random AZ.The AZ is not guaranteed, and the service may be allocated in a different AZ if the selected AZ is not available. Zones will not be validated and invalid zones will be ignored, falling back to random AZ selection. Common availability zones include: AWS (euc1-az1, euc1-az2, euc1-az3), GCP (europe-west1-a, europe-west1-b, europe-west1-c), Azure (germanywestcentral/1, germanywestcentral/2, germanywestcentral/3). Example: `euc1-az1`.
13036
13075
  :param builtins.bool enabled: Whether to allocate nodes on the same Availability Zone or spread across zones available. By default service nodes are spread across different AZs. The single AZ support is best-effort and may temporarily allocate nodes in different AZs e.g. in case of capacity limitations in one AZ.
13037
13076
  """
13077
+ if availability_zone is not None:
13078
+ pulumi.set(__self__, "availability_zone", availability_zone)
13038
13079
  if enabled is not None:
13039
13080
  pulumi.set(__self__, "enabled", enabled)
13040
13081
 
13082
+ @property
13083
+ @pulumi.getter(name="availabilityZone")
13084
+ def availability_zone(self) -> Optional[builtins.str]:
13085
+ """
13086
+ The availability zone to use for the service. This is only used when enabled is set to true. If not set the service will be allocated in random AZ.The AZ is not guaranteed, and the service may be allocated in a different AZ if the selected AZ is not available. Zones will not be validated and invalid zones will be ignored, falling back to random AZ selection. Common availability zones include: AWS (euc1-az1, euc1-az2, euc1-az3), GCP (europe-west1-a, europe-west1-b, europe-west1-c), Azure (germanywestcentral/1, germanywestcentral/2, germanywestcentral/3). Example: `euc1-az1`.
13087
+ """
13088
+ return pulumi.get(self, "availability_zone")
13089
+
13041
13090
  @property
13042
13091
  @pulumi.getter
13043
13092
  def enabled(self) -> Optional[builtins.bool]:
@@ -13918,7 +13967,7 @@ class KafkaTopicConfig(dict):
13918
13967
  :param builtins.str flush_messages: This setting allows specifying an interval at which we will force an fsync of data written to the log. For example if this was set to 1 we would fsync after every message; if it were 5 we would fsync after every five messages. In general we recommend you not set this and use replication for durability and allow the operating system's background flush capabilities as it is more efficient.
13919
13968
  :param builtins.str flush_ms: This setting allows specifying a time interval at which we will force an fsync of data written to the log. For example if this was set to 1000 we would fsync after 1000 ms had passed. In general we recommend you not set this and use replication for durability and allow the operating system's background flush capabilities as it is more efficient.
13920
13969
  :param builtins.str index_interval_bytes: This setting controls how frequently Kafka adds an index entry to its offset index. The default setting ensures that we index a message roughly every 4096 bytes. More indexing allows reads to jump closer to the exact position in the log but makes the index larger. You probably don't need to change this.
13921
- :param builtins.bool inkless_enable: Indicates whether inkless should be enabled. This is only available for BYOC services with Inkless feature enabled.
13970
+ :param builtins.bool inkless_enable: Creates a [diskless topic](https://aiven.io/docs/products/diskless). You can only do this when you create the topic and you cannot change it later. Diskless topics are only available for bring your own cloud (BYOC) services that have the feature enabled.
13922
13971
  :param builtins.str local_retention_bytes: This configuration controls the maximum bytes tiered storage will retain segment files locally before it will discard old log segments to free up space. If set to -2, the limit is equal to overall retention time. If set to -1, no limit is applied but it's possible only if overall retention is also -1.
13923
13972
  :param builtins.str local_retention_ms: This configuration controls the maximum time tiered storage will retain segment files locally before it will discard old log segments to free up space. If set to -2, the time limit is equal to overall retention time. If set to -1, no time limit is applied but it's possible only if overall retention is also -1.
13924
13973
  :param builtins.str max_compaction_lag_ms: The maximum time a message will remain ineligible for compaction in the log. Only applicable for logs that are being compacted.
@@ -14057,7 +14106,7 @@ class KafkaTopicConfig(dict):
14057
14106
  @pulumi.getter(name="inklessEnable")
14058
14107
  def inkless_enable(self) -> Optional[builtins.bool]:
14059
14108
  """
14060
- Indicates whether inkless should be enabled. This is only available for BYOC services with Inkless feature enabled.
14109
+ Creates a [diskless topic](https://aiven.io/docs/products/diskless). You can only do this when you create the topic and you cannot change it later. Diskless topics are only available for bring your own cloud (BYOC) services that have the feature enabled.
14061
14110
  """
14062
14111
  return pulumi.get(self, "inkless_enable")
14063
14112
 
@@ -16309,6 +16358,8 @@ class MySqlMysqlUserConfig(dict):
16309
16358
  suggest = "ip_filter_strings"
16310
16359
  elif key == "ipFilters":
16311
16360
  suggest = "ip_filters"
16361
+ elif key == "mysqlIncrementalBackup":
16362
+ suggest = "mysql_incremental_backup"
16312
16363
  elif key == "mysqlVersion":
16313
16364
  suggest = "mysql_version"
16314
16365
  elif key == "privateAccess":
@@ -16351,6 +16402,7 @@ class MySqlMysqlUserConfig(dict):
16351
16402
  ip_filters: Optional[Sequence[builtins.str]] = None,
16352
16403
  migration: Optional['outputs.MySqlMysqlUserConfigMigration'] = None,
16353
16404
  mysql: Optional['outputs.MySqlMysqlUserConfigMysql'] = None,
16405
+ mysql_incremental_backup: Optional['outputs.MySqlMysqlUserConfigMysqlIncrementalBackup'] = None,
16354
16406
  mysql_version: Optional[builtins.str] = None,
16355
16407
  private_access: Optional['outputs.MySqlMysqlUserConfigPrivateAccess'] = None,
16356
16408
  privatelink_access: Optional['outputs.MySqlMysqlUserConfigPrivatelinkAccess'] = None,
@@ -16372,6 +16424,7 @@ class MySqlMysqlUserConfig(dict):
16372
16424
  :param Sequence[builtins.str] ip_filters: Allow incoming connections from CIDR address block, e.g. `10.20.0.0/16`.
16373
16425
  :param 'MySqlMysqlUserConfigMigrationArgs' migration: Migrate data from existing server
16374
16426
  :param 'MySqlMysqlUserConfigMysqlArgs' mysql: mysql.conf configuration values
16427
+ :param 'MySqlMysqlUserConfigMysqlIncrementalBackupArgs' mysql_incremental_backup: MySQL incremental backup configuration
16375
16428
  :param builtins.str mysql_version: Enum: `8`, and newer. MySQL major version.
16376
16429
  :param 'MySqlMysqlUserConfigPrivateAccessArgs' private_access: Allow access to selected service ports from private networks
16377
16430
  :param 'MySqlMysqlUserConfigPrivatelinkAccessArgs' privatelink_access: Allow access to selected service components through Privatelink
@@ -16404,6 +16457,8 @@ class MySqlMysqlUserConfig(dict):
16404
16457
  pulumi.set(__self__, "migration", migration)
16405
16458
  if mysql is not None:
16406
16459
  pulumi.set(__self__, "mysql", mysql)
16460
+ if mysql_incremental_backup is not None:
16461
+ pulumi.set(__self__, "mysql_incremental_backup", mysql_incremental_backup)
16407
16462
  if mysql_version is not None:
16408
16463
  pulumi.set(__self__, "mysql_version", mysql_version)
16409
16464
  if private_access is not None:
@@ -16512,6 +16567,14 @@ class MySqlMysqlUserConfig(dict):
16512
16567
  """
16513
16568
  return pulumi.get(self, "mysql")
16514
16569
 
16570
+ @property
16571
+ @pulumi.getter(name="mysqlIncrementalBackup")
16572
+ def mysql_incremental_backup(self) -> Optional['outputs.MySqlMysqlUserConfigMysqlIncrementalBackup']:
16573
+ """
16574
+ MySQL incremental backup configuration
16575
+ """
16576
+ return pulumi.get(self, "mysql_incremental_backup")
16577
+
16515
16578
  @property
16516
16579
  @pulumi.getter(name="mysqlVersion")
16517
16580
  def mysql_version(self) -> Optional[builtins.str]:
@@ -17203,6 +17266,53 @@ class MySqlMysqlUserConfigMysql(dict):
17203
17266
  return pulumi.get(self, "wait_timeout")
17204
17267
 
17205
17268
 
17269
+ @pulumi.output_type
17270
+ class MySqlMysqlUserConfigMysqlIncrementalBackup(dict):
17271
+ @staticmethod
17272
+ def __key_warning(key: str):
17273
+ suggest = None
17274
+ if key == "fullBackupWeekSchedule":
17275
+ suggest = "full_backup_week_schedule"
17276
+
17277
+ if suggest:
17278
+ pulumi.log.warn(f"Key '{key}' not found in MySqlMysqlUserConfigMysqlIncrementalBackup. Access the value via the '{suggest}' property getter instead.")
17279
+
17280
+ def __getitem__(self, key: str) -> Any:
17281
+ MySqlMysqlUserConfigMysqlIncrementalBackup.__key_warning(key)
17282
+ return super().__getitem__(key)
17283
+
17284
+ def get(self, key: str, default = None) -> Any:
17285
+ MySqlMysqlUserConfigMysqlIncrementalBackup.__key_warning(key)
17286
+ return super().get(key, default)
17287
+
17288
+ def __init__(__self__, *,
17289
+ enabled: builtins.bool,
17290
+ full_backup_week_schedule: Optional[builtins.str] = None):
17291
+ """
17292
+ :param builtins.bool enabled: Enable periodic incremental backups. When enabled, full*backup*week_schedule must be set. Incremental backups only store changes since the last backup, making them faster and more storage-efficient than full backups. This is particularly useful for large databases where daily full backups would be too time-consuming or expensive.
17293
+ :param builtins.str full_backup_week_schedule: Comma-separated list of days of the week when full backups should be created. Valid values: mon, tue, wed, thu, fri, sat, sun. Example: `sun,wed`.
17294
+ """
17295
+ pulumi.set(__self__, "enabled", enabled)
17296
+ if full_backup_week_schedule is not None:
17297
+ pulumi.set(__self__, "full_backup_week_schedule", full_backup_week_schedule)
17298
+
17299
+ @property
17300
+ @pulumi.getter
17301
+ def enabled(self) -> builtins.bool:
17302
+ """
17303
+ Enable periodic incremental backups. When enabled, full*backup*week_schedule must be set. Incremental backups only store changes since the last backup, making them faster and more storage-efficient than full backups. This is particularly useful for large databases where daily full backups would be too time-consuming or expensive.
17304
+ """
17305
+ return pulumi.get(self, "enabled")
17306
+
17307
+ @property
17308
+ @pulumi.getter(name="fullBackupWeekSchedule")
17309
+ def full_backup_week_schedule(self) -> Optional[builtins.str]:
17310
+ """
17311
+ Comma-separated list of days of the week when full backups should be created. Valid values: mon, tue, wed, thu, fri, sat, sun. Example: `sun,wed`.
17312
+ """
17313
+ return pulumi.get(self, "full_backup_week_schedule")
17314
+
17315
+
17206
17316
  @pulumi.output_type
17207
17317
  class MySqlMysqlUserConfigPrivateAccess(dict):
17208
17318
  def __init__(__self__, *,
@@ -21032,12 +21142,7 @@ class OpenSearchOpensearchUserConfigOpensearchShardIndexingPressure(dict):
21032
21142
  primary_parameter: Optional['outputs.OpenSearchOpensearchUserConfigOpensearchShardIndexingPressurePrimaryParameter'] = None):
21033
21143
  """
21034
21144
  :param builtins.bool enabled: Enable or disable shard indexing backpressure. Default is false.
21035
- :param builtins.bool enforced: Run shard indexing backpressure in shadow mode or enforced mode.
21036
- In shadow mode (value set as false), shard indexing backpressure tracks all granular-level metrics,
21037
- but it doesn’t actually reject any indexing requests.
21038
- In enforced mode (value set as true),
21039
- shard indexing backpressure rejects any requests to the cluster that might cause a dip in its performance.
21040
- Default is false.
21145
+ :param builtins.bool enforced: Run shard indexing backpressure in shadow mode or enforced mode. In shadow mode (value set as false), shard indexing backpressure tracks all granular-level metrics, but it doesn’t actually reject any indexing requests. In enforced mode (value set as true), shard indexing backpressure rejects any requests to the cluster that might cause a dip in its performance. Default is false.
21041
21146
  :param 'OpenSearchOpensearchUserConfigOpensearchShardIndexingPressureOperatingFactorArgs' operating_factor: Operating factor
21042
21147
  :param 'OpenSearchOpensearchUserConfigOpensearchShardIndexingPressurePrimaryParameterArgs' primary_parameter: Primary parameter
21043
21148
  """
@@ -21062,12 +21167,7 @@ class OpenSearchOpensearchUserConfigOpensearchShardIndexingPressure(dict):
21062
21167
  @pulumi.getter
21063
21168
  def enforced(self) -> Optional[builtins.bool]:
21064
21169
  """
21065
- Run shard indexing backpressure in shadow mode or enforced mode.
21066
- In shadow mode (value set as false), shard indexing backpressure tracks all granular-level metrics,
21067
- but it doesn’t actually reject any indexing requests.
21068
- In enforced mode (value set as true),
21069
- shard indexing backpressure rejects any requests to the cluster that might cause a dip in its performance.
21070
- Default is false.
21170
+ Run shard indexing backpressure in shadow mode or enforced mode. In shadow mode (value set as false), shard indexing backpressure tracks all granular-level metrics, but it doesn’t actually reject any indexing requests. In enforced mode (value set as true), shard indexing backpressure rejects any requests to the cluster that might cause a dip in its performance. Default is false.
21071
21171
  """
21072
21172
  return pulumi.get(self, "enforced")
21073
21173
 
@@ -21095,18 +21195,9 @@ class OpenSearchOpensearchUserConfigOpensearchShardIndexingPressureOperatingFact
21095
21195
  optimal: Optional[builtins.float] = None,
21096
21196
  upper: Optional[builtins.float] = None):
21097
21197
  """
21098
- :param builtins.float lower: Specify the lower occupancy limit of the allocated quota of memory for the shard.
21099
- If the total memory usage of a shard is below this limit,
21100
- shard indexing backpressure decreases the current allocated memory for that shard.
21101
- Default is 0.75.
21102
- :param builtins.float optimal: Specify the optimal occupancy of the allocated quota of memory for the shard.
21103
- If the total memory usage of a shard is at this level,
21104
- shard indexing backpressure doesn’t change the current allocated memory for that shard.
21105
- Default is 0.85.
21106
- :param builtins.float upper: Specify the upper occupancy limit of the allocated quota of memory for the shard.
21107
- If the total memory usage of a shard is above this limit,
21108
- shard indexing backpressure increases the current allocated memory for that shard.
21109
- Default is 0.95.
21198
+ :param builtins.float lower: Specify the lower occupancy limit of the allocated quota of memory for the shard. If the total memory usage of a shard is below this limit, shard indexing backpressure decreases the current allocated memory for that shard. Default is 0.75.
21199
+ :param builtins.float optimal: Specify the optimal occupancy of the allocated quota of memory for the shard. If the total memory usage of a shard is at this level, shard indexing backpressure doesn’t change the current allocated memory for that shard. Default is 0.85.
21200
+ :param builtins.float upper: Specify the upper occupancy limit of the allocated quota of memory for the shard. If the total memory usage of a shard is above this limit, shard indexing backpressure increases the current allocated memory for that shard. Default is 0.95.
21110
21201
  """
21111
21202
  if lower is not None:
21112
21203
  pulumi.set(__self__, "lower", lower)
@@ -21119,10 +21210,7 @@ class OpenSearchOpensearchUserConfigOpensearchShardIndexingPressureOperatingFact
21119
21210
  @pulumi.getter
21120
21211
  def lower(self) -> Optional[builtins.float]:
21121
21212
  """
21122
- Specify the lower occupancy limit of the allocated quota of memory for the shard.
21123
- If the total memory usage of a shard is below this limit,
21124
- shard indexing backpressure decreases the current allocated memory for that shard.
21125
- Default is 0.75.
21213
+ Specify the lower occupancy limit of the allocated quota of memory for the shard. If the total memory usage of a shard is below this limit, shard indexing backpressure decreases the current allocated memory for that shard. Default is 0.75.
21126
21214
  """
21127
21215
  return pulumi.get(self, "lower")
21128
21216
 
@@ -21130,10 +21218,7 @@ class OpenSearchOpensearchUserConfigOpensearchShardIndexingPressureOperatingFact
21130
21218
  @pulumi.getter
21131
21219
  def optimal(self) -> Optional[builtins.float]:
21132
21220
  """
21133
- Specify the optimal occupancy of the allocated quota of memory for the shard.
21134
- If the total memory usage of a shard is at this level,
21135
- shard indexing backpressure doesn’t change the current allocated memory for that shard.
21136
- Default is 0.85.
21221
+ Specify the optimal occupancy of the allocated quota of memory for the shard. If the total memory usage of a shard is at this level, shard indexing backpressure doesn’t change the current allocated memory for that shard. Default is 0.85.
21137
21222
  """
21138
21223
  return pulumi.get(self, "optimal")
21139
21224
 
@@ -21141,10 +21226,7 @@ class OpenSearchOpensearchUserConfigOpensearchShardIndexingPressureOperatingFact
21141
21226
  @pulumi.getter
21142
21227
  def upper(self) -> Optional[builtins.float]:
21143
21228
  """
21144
- Specify the upper occupancy limit of the allocated quota of memory for the shard.
21145
- If the total memory usage of a shard is above this limit,
21146
- shard indexing backpressure increases the current allocated memory for that shard.
21147
- Default is 0.95.
21229
+ Specify the upper occupancy limit of the allocated quota of memory for the shard. If the total memory usage of a shard is above this limit, shard indexing backpressure increases the current allocated memory for that shard. Default is 0.95.
21148
21230
  """
21149
21231
  return pulumi.get(self, "upper")
21150
21232
 
@@ -21192,9 +21274,7 @@ class OpenSearchOpensearchUserConfigOpensearchShardIndexingPressurePrimaryParame
21192
21274
  def __init__(__self__, *,
21193
21275
  soft_limit: Optional[builtins.float] = None):
21194
21276
  """
21195
- :param builtins.float soft_limit: Define the percentage of the node-level memory
21196
- threshold that acts as a soft indicator for strain on a node.
21197
- Default is 0.7.
21277
+ :param builtins.float soft_limit: Define the percentage of the node-level memory threshold that acts as a soft indicator for strain on a node. Default is 0.7.
21198
21278
  """
21199
21279
  if soft_limit is not None:
21200
21280
  pulumi.set(__self__, "soft_limit", soft_limit)
@@ -21203,9 +21283,7 @@ class OpenSearchOpensearchUserConfigOpensearchShardIndexingPressurePrimaryParame
21203
21283
  @pulumi.getter(name="softLimit")
21204
21284
  def soft_limit(self) -> Optional[builtins.float]:
21205
21285
  """
21206
- Define the percentage of the node-level memory
21207
- threshold that acts as a soft indicator for strain on a node.
21208
- Default is 0.7.
21286
+ Define the percentage of the node-level memory threshold that acts as a soft indicator for strain on a node. Default is 0.7.
21209
21287
  """
21210
21288
  return pulumi.get(self, "soft_limit")
21211
21289
 
@@ -21232,9 +21310,7 @@ class OpenSearchOpensearchUserConfigOpensearchShardIndexingPressurePrimaryParame
21232
21310
  def __init__(__self__, *,
21233
21311
  min_limit: Optional[builtins.float] = None):
21234
21312
  """
21235
- :param builtins.float min_limit: Specify the minimum assigned quota for a new shard in any role (coordinator, primary, or replica).
21236
- Shard indexing backpressure increases or decreases this allocated quota based on the inflow of traffic for the shard.
21237
- Default is 0.001.
21313
+ :param builtins.float min_limit: Specify the minimum assigned quota for a new shard in any role (coordinator, primary, or replica). Shard indexing backpressure increases or decreases this allocated quota based on the inflow of traffic for the shard. Default is 0.001.
21238
21314
  """
21239
21315
  if min_limit is not None:
21240
21316
  pulumi.set(__self__, "min_limit", min_limit)
@@ -21243,9 +21319,7 @@ class OpenSearchOpensearchUserConfigOpensearchShardIndexingPressurePrimaryParame
21243
21319
  @pulumi.getter(name="minLimit")
21244
21320
  def min_limit(self) -> Optional[builtins.float]:
21245
21321
  """
21246
- Specify the minimum assigned quota for a new shard in any role (coordinator, primary, or replica).
21247
- Shard indexing backpressure increases or decreases this allocated quota based on the inflow of traffic for the shard.
21248
- Default is 0.001.
21322
+ Specify the minimum assigned quota for a new shard in any role (coordinator, primary, or replica). Shard indexing backpressure increases or decreases this allocated quota based on the inflow of traffic for the shard. Default is 0.001.
21249
21323
  """
21250
21324
  return pulumi.get(self, "min_limit")
21251
21325
 
@@ -22041,7 +22115,7 @@ class OrganizationPermissionPermission(dict):
22041
22115
  create_time: Optional[builtins.str] = None,
22042
22116
  update_time: Optional[builtins.str] = None):
22043
22117
  """
22044
- :param Sequence[builtins.str] permissions: List of [roles and permissions](https://aiven.io/docs/platform/concepts/permissions) to grant. The possible values are `admin`, `developer`, `operator`, `organization:app_users:write`, `organization:audit_logs:read`, `organization:billing:read`, `organization:billing:write`, `organization:domains:write`, `organization:groups:write`, `organization:idps:write`, `organization:networking:read`, `organization:networking:write`, `organization:projects:write`, `organization:users:write`, `project:audit_logs:read`, `project:integrations:read`, `project:integrations:write`, `project:networking:read`, `project:networking:write`, `project:permissions:read`, `project:services:read`, `project:services:write`, `read_only`, `role:organization:admin`, `role:services:maintenance`, `role:services:recover`, `service:configuration:write`, `service:data:write`, `service:logs:read`, `service:secrets:read` and `service:users:write`.
22118
+ :param Sequence[builtins.str] permissions: List of [roles and permissions](https://aiven.io/docs/platform/concepts/permissions) to grant. The possible values are `admin`, `developer`, `operator`, `organization:app_users:write`, `organization:audit_logs:read`, `organization:billing:read`, `organization:billing:write`, `organization:domains:write`, `organization:groups:write`, `organization:networking:read`, `organization:networking:write`, `organization:projects:write`, `organization:users:write`, `project:audit_logs:read`, `project:integrations:read`, `project:integrations:write`, `project:networking:read`, `project:networking:write`, `project:permissions:read`, `project:services:read`, `project:services:write`, `read_only`, `role:organization:admin`, `role:services:maintenance`, `role:services:recover`, `service:configuration:write`, `service:data:write`, `service:logs:read`, `service:secrets:read` and `service:users:write`.
22045
22119
  :param builtins.str principal_id: ID of the user or group to grant permissions to. Only active users who have accepted an [invite](https://aiven.io/docs/platform/howto/manage-org-users) to join the organization can be granted permissions.
22046
22120
  :param builtins.str principal_type: The type of principal. The possible values are `user` and `user_group`.
22047
22121
  :param builtins.str create_time: Time created.
@@ -22059,7 +22133,7 @@ class OrganizationPermissionPermission(dict):
22059
22133
  @pulumi.getter
22060
22134
  def permissions(self) -> Sequence[builtins.str]:
22061
22135
  """
22062
- List of [roles and permissions](https://aiven.io/docs/platform/concepts/permissions) to grant. The possible values are `admin`, `developer`, `operator`, `organization:app_users:write`, `organization:audit_logs:read`, `organization:billing:read`, `organization:billing:write`, `organization:domains:write`, `organization:groups:write`, `organization:idps:write`, `organization:networking:read`, `organization:networking:write`, `organization:projects:write`, `organization:users:write`, `project:audit_logs:read`, `project:integrations:read`, `project:integrations:write`, `project:networking:read`, `project:networking:write`, `project:permissions:read`, `project:services:read`, `project:services:write`, `read_only`, `role:organization:admin`, `role:services:maintenance`, `role:services:recover`, `service:configuration:write`, `service:data:write`, `service:logs:read`, `service:secrets:read` and `service:users:write`.
22136
+ List of [roles and permissions](https://aiven.io/docs/platform/concepts/permissions) to grant. The possible values are `admin`, `developer`, `operator`, `organization:app_users:write`, `organization:audit_logs:read`, `organization:billing:read`, `organization:billing:write`, `organization:domains:write`, `organization:groups:write`, `organization:networking:read`, `organization:networking:write`, `organization:projects:write`, `organization:users:write`, `project:audit_logs:read`, `project:integrations:read`, `project:integrations:write`, `project:networking:read`, `project:networking:write`, `project:permissions:read`, `project:services:read`, `project:services:write`, `read_only`, `role:organization:admin`, `role:services:maintenance`, `role:services:recover`, `service:configuration:write`, `service:data:write`, `service:logs:read`, `service:secrets:read` and `service:users:write`.
22063
22137
  """
22064
22138
  return pulumi.get(self, "permissions")
22065
22139
 
@@ -23388,6 +23462,8 @@ class PgPgUserConfigPg(dict):
23388
23462
  suggest = "log_min_duration_statement"
23389
23463
  elif key == "logTempFiles":
23390
23464
  suggest = "log_temp_files"
23465
+ elif key == "maxConnections":
23466
+ suggest = "max_connections"
23391
23467
  elif key == "maxFilesPerProcess":
23392
23468
  suggest = "max_files_per_process"
23393
23469
  elif key == "maxLocksPerTransaction":
@@ -23412,6 +23488,8 @@ class PgPgUserConfigPg(dict):
23412
23488
  suggest = "max_standby_archive_delay"
23413
23489
  elif key == "maxStandbyStreamingDelay":
23414
23490
  suggest = "max_standby_streaming_delay"
23491
+ elif key == "maxSyncWorkersPerSubscription":
23492
+ suggest = "max_sync_workers_per_subscription"
23415
23493
  elif key == "maxWalSenders":
23416
23494
  suggest = "max_wal_senders"
23417
23495
  elif key == "maxWorkerProcesses":
@@ -23477,6 +23555,7 @@ class PgPgUserConfigPg(dict):
23477
23555
  log_line_prefix: Optional[builtins.str] = None,
23478
23556
  log_min_duration_statement: Optional[builtins.int] = None,
23479
23557
  log_temp_files: Optional[builtins.int] = None,
23558
+ max_connections: Optional[builtins.int] = None,
23480
23559
  max_files_per_process: Optional[builtins.int] = None,
23481
23560
  max_locks_per_transaction: Optional[builtins.int] = None,
23482
23561
  max_logical_replication_workers: Optional[builtins.int] = None,
@@ -23489,6 +23568,7 @@ class PgPgUserConfigPg(dict):
23489
23568
  max_stack_depth: Optional[builtins.int] = None,
23490
23569
  max_standby_archive_delay: Optional[builtins.int] = None,
23491
23570
  max_standby_streaming_delay: Optional[builtins.int] = None,
23571
+ max_sync_workers_per_subscription: Optional[builtins.int] = None,
23492
23572
  max_wal_senders: Optional[builtins.int] = None,
23493
23573
  max_worker_processes: Optional[builtins.int] = None,
23494
23574
  password_encryption: Optional[builtins.str] = None,
@@ -23528,6 +23608,7 @@ class PgPgUserConfigPg(dict):
23528
23608
  :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.
23529
23609
  :param builtins.int log_min_duration_statement: Log statements that take more than this number of milliseconds to run, -1 disables.
23530
23610
  :param builtins.int log_temp_files: Log statements for each temporary file created larger than this number of kilobytes, -1 disables.
23611
+ :param builtins.int max_connections: PostgreSQL maximum number of concurrent connections to the database server. Changing this parameter causes a service restart.
23531
23612
  :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.
23532
23613
  :param builtins.int max_locks_per_transaction: PostgreSQL maximum locks per transaction. Changing this parameter causes a service restart.
23533
23614
  :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.
@@ -23540,6 +23621,7 @@ class PgPgUserConfigPg(dict):
23540
23621
  :param builtins.int max_stack_depth: Maximum depth of the stack in bytes. The default is `2097152` (upstream default).
23541
23622
  :param builtins.int max_standby_archive_delay: Max standby archive delay in milliseconds. The default is `30000` (upstream default).
23542
23623
  :param builtins.int max_standby_streaming_delay: Max standby streaming delay in milliseconds. The default is `30000` (upstream default).
23624
+ :param builtins.int max_sync_workers_per_subscription: Maximum number of synchronization workers per subscription. The default is `2`.
23543
23625
  :param builtins.int max_wal_senders: PostgreSQL maximum WAL senders. The default is `20`. Changing this parameter causes a service restart.
23544
23626
  :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.
23545
23627
  :param builtins.str password_encryption: Enum: `md5`, `scram-sha-256`. Chooses the algorithm for encrypting passwords. Default: `md5`.
@@ -23601,6 +23683,8 @@ class PgPgUserConfigPg(dict):
23601
23683
  pulumi.set(__self__, "log_min_duration_statement", log_min_duration_statement)
23602
23684
  if log_temp_files is not None:
23603
23685
  pulumi.set(__self__, "log_temp_files", log_temp_files)
23686
+ if max_connections is not None:
23687
+ pulumi.set(__self__, "max_connections", max_connections)
23604
23688
  if max_files_per_process is not None:
23605
23689
  pulumi.set(__self__, "max_files_per_process", max_files_per_process)
23606
23690
  if max_locks_per_transaction is not None:
@@ -23625,6 +23709,8 @@ class PgPgUserConfigPg(dict):
23625
23709
  pulumi.set(__self__, "max_standby_archive_delay", max_standby_archive_delay)
23626
23710
  if max_standby_streaming_delay is not None:
23627
23711
  pulumi.set(__self__, "max_standby_streaming_delay", max_standby_streaming_delay)
23712
+ if max_sync_workers_per_subscription is not None:
23713
+ pulumi.set(__self__, "max_sync_workers_per_subscription", max_sync_workers_per_subscription)
23628
23714
  if max_wal_senders is not None:
23629
23715
  pulumi.set(__self__, "max_wal_senders", max_wal_senders)
23630
23716
  if max_worker_processes is not None:
@@ -23834,6 +23920,14 @@ class PgPgUserConfigPg(dict):
23834
23920
  """
23835
23921
  return pulumi.get(self, "log_temp_files")
23836
23922
 
23923
+ @property
23924
+ @pulumi.getter(name="maxConnections")
23925
+ def max_connections(self) -> Optional[builtins.int]:
23926
+ """
23927
+ PostgreSQL maximum number of concurrent connections to the database server. Changing this parameter causes a service restart.
23928
+ """
23929
+ return pulumi.get(self, "max_connections")
23930
+
23837
23931
  @property
23838
23932
  @pulumi.getter(name="maxFilesPerProcess")
23839
23933
  def max_files_per_process(self) -> Optional[builtins.int]:
@@ -23930,6 +24024,14 @@ class PgPgUserConfigPg(dict):
23930
24024
  """
23931
24025
  return pulumi.get(self, "max_standby_streaming_delay")
23932
24026
 
24027
+ @property
24028
+ @pulumi.getter(name="maxSyncWorkersPerSubscription")
24029
+ def max_sync_workers_per_subscription(self) -> Optional[builtins.int]:
24030
+ """
24031
+ Maximum number of synchronization workers per subscription. The default is `2`.
24032
+ """
24033
+ return pulumi.get(self, "max_sync_workers_per_subscription")
24034
+
23933
24035
  @property
23934
24036
  @pulumi.getter(name="maxWalSenders")
23935
24037
  def max_wal_senders(self) -> Optional[builtins.int]:
@@ -24212,17 +24314,17 @@ class PgPgUserConfigPgaudit(dict):
24212
24314
  role: Optional[builtins.str] = None):
24213
24315
  """
24214
24316
  :param builtins.bool feature_enabled: Enable pgaudit extension. When enabled, pgaudit extension will be automatically installed.Otherwise, extension will be uninstalled but auditing configurations will be preserved. Default: `false`.
24215
- :param builtins.bool log_catalog: Specifies that session logging should be enabled in the casewhere all relations in a statement are in pg_catalog. Default: `true`.
24317
+ :param builtins.bool log_catalog: Specifies that session logging should be enabled in the case where all relationsin a statement are in pg_catalog. Default: `true`.
24216
24318
  :param builtins.bool log_client: Specifies whether log messages will be visible to a client process such as psql. Default: `false`.
24217
24319
  :param builtins.str log_level: Enum: `debug1`, `debug2`, `debug3`, `debug4`, `debug5`, `info`, `log`, `notice`, `warning`. Specifies the log level that will be used for log entries. Default: `log`.
24218
- :param builtins.int log_max_string_length: Crop parameters representation and whole statements if they exceed this threshold. A (default) value of -1 disable the truncation. Default: `-1`.
24219
- :param builtins.bool log_nested_statements: This GUC allows to turn off logging nested statements, that is, statements that are executed as part of another ExecutorRun. Default: `true`.
24320
+ :param builtins.int log_max_string_length: Crop parameters representation and whole statements if they exceed this threshold.A (default) value of -1 disable the truncation. Default: `-1`.
24321
+ :param builtins.bool log_nested_statements: This GUC allows to turn off logging nested statements, that is, statements that areexecuted as part of another ExecutorRun. Default: `true`.
24220
24322
  :param builtins.bool log_parameter: Specifies that audit logging should include the parameters that were passed with the statement. Default: `false`.
24221
- :param builtins.int log_parameter_max_size: Specifies that parameter values longer than this setting (in bytes) should not be logged, but replaced with \\n\\n. Default: `0`.
24222
- :param builtins.bool log_relation: Specifies whether session audit logging should create a separate log entry for each relation (TABLE, VIEW, etc.) referenced in a SELECT or DML statement. Default: `false`.
24223
- :param builtins.bool log_rows: Specifies that audit logging should include the rows retrieved or affected by a statement. When enabled the rows field will be included after the parameter field. Default: `false`.
24323
+ :param builtins.int log_parameter_max_size: Specifies that parameter values longer than this setting (in bytes) should not be logged,but replaced with \\n\\n. Default: `0`.
24324
+ :param builtins.bool log_relation: Specifies whether session audit logging should create a separate log entryfor each relation (TABLE, VIEW, etc.) referenced in a SELECT or DML statement. Default: `false`.
24325
+ :param builtins.bool log_rows: Log Rows. Default: `false`.
24224
24326
  :param builtins.bool log_statement: Specifies whether logging will include the statement text and parameters (if enabled). Default: `true`.
24225
- :param builtins.bool log_statement_once: Specifies whether logging will include the statement text and parameters with the first log entry for a statement/substatement combination or with every entry. Default: `false`.
24327
+ :param builtins.bool log_statement_once: Specifies whether logging will include the statement text and parameters withthe first log entry for a statement/substatement combination or with every entry. Default: `false`.
24226
24328
  :param Sequence[builtins.str] logs: Specifies which classes of statements will be logged by session audit logging.
24227
24329
  :param builtins.str role: Specifies the master role to use for object audit logging.
24228
24330
  """
@@ -24267,7 +24369,7 @@ class PgPgUserConfigPgaudit(dict):
24267
24369
  @pulumi.getter(name="logCatalog")
24268
24370
  def log_catalog(self) -> Optional[builtins.bool]:
24269
24371
  """
24270
- Specifies that session logging should be enabled in the casewhere all relations in a statement are in pg_catalog. Default: `true`.
24372
+ Specifies that session logging should be enabled in the case where all relationsin a statement are in pg_catalog. Default: `true`.
24271
24373
  """
24272
24374
  return pulumi.get(self, "log_catalog")
24273
24375
 
@@ -24291,7 +24393,7 @@ class PgPgUserConfigPgaudit(dict):
24291
24393
  @pulumi.getter(name="logMaxStringLength")
24292
24394
  def log_max_string_length(self) -> Optional[builtins.int]:
24293
24395
  """
24294
- Crop parameters representation and whole statements if they exceed this threshold. A (default) value of -1 disable the truncation. Default: `-1`.
24396
+ Crop parameters representation and whole statements if they exceed this threshold.A (default) value of -1 disable the truncation. Default: `-1`.
24295
24397
  """
24296
24398
  return pulumi.get(self, "log_max_string_length")
24297
24399
 
@@ -24299,7 +24401,7 @@ class PgPgUserConfigPgaudit(dict):
24299
24401
  @pulumi.getter(name="logNestedStatements")
24300
24402
  def log_nested_statements(self) -> Optional[builtins.bool]:
24301
24403
  """
24302
- This GUC allows to turn off logging nested statements, that is, statements that are executed as part of another ExecutorRun. Default: `true`.
24404
+ This GUC allows to turn off logging nested statements, that is, statements that areexecuted as part of another ExecutorRun. Default: `true`.
24303
24405
  """
24304
24406
  return pulumi.get(self, "log_nested_statements")
24305
24407
 
@@ -24315,7 +24417,7 @@ class PgPgUserConfigPgaudit(dict):
24315
24417
  @pulumi.getter(name="logParameterMaxSize")
24316
24418
  def log_parameter_max_size(self) -> Optional[builtins.int]:
24317
24419
  """
24318
- Specifies that parameter values longer than this setting (in bytes) should not be logged, but replaced with \\n\\n. Default: `0`.
24420
+ Specifies that parameter values longer than this setting (in bytes) should not be logged,but replaced with \\n\\n. Default: `0`.
24319
24421
  """
24320
24422
  return pulumi.get(self, "log_parameter_max_size")
24321
24423
 
@@ -24323,7 +24425,7 @@ class PgPgUserConfigPgaudit(dict):
24323
24425
  @pulumi.getter(name="logRelation")
24324
24426
  def log_relation(self) -> Optional[builtins.bool]:
24325
24427
  """
24326
- Specifies whether session audit logging should create a separate log entry for each relation (TABLE, VIEW, etc.) referenced in a SELECT or DML statement. Default: `false`.
24428
+ Specifies whether session audit logging should create a separate log entryfor each relation (TABLE, VIEW, etc.) referenced in a SELECT or DML statement. Default: `false`.
24327
24429
  """
24328
24430
  return pulumi.get(self, "log_relation")
24329
24431
 
@@ -24331,7 +24433,7 @@ class PgPgUserConfigPgaudit(dict):
24331
24433
  @pulumi.getter(name="logRows")
24332
24434
  def log_rows(self) -> Optional[builtins.bool]:
24333
24435
  """
24334
- Specifies that audit logging should include the rows retrieved or affected by a statement. When enabled the rows field will be included after the parameter field. Default: `false`.
24436
+ Log Rows. Default: `false`.
24335
24437
  """
24336
24438
  return pulumi.get(self, "log_rows")
24337
24439
 
@@ -24347,7 +24449,7 @@ class PgPgUserConfigPgaudit(dict):
24347
24449
  @pulumi.getter(name="logStatementOnce")
24348
24450
  def log_statement_once(self) -> Optional[builtins.bool]:
24349
24451
  """
24350
- Specifies whether logging will include the statement text and parameters with the first log entry for a statement/substatement combination or with every entry. Default: `false`.
24452
+ Specifies whether logging will include the statement text and parameters withthe first log entry for a statement/substatement combination or with every entry. Default: `false`.
24351
24453
  """
24352
24454
  return pulumi.get(self, "log_statement_once")
24353
24455
 
@@ -25814,6 +25916,43 @@ class RedisTechEmail(dict):
25814
25916
  return pulumi.get(self, "email")
25815
25917
 
25816
25918
 
25919
+ @pulumi.output_type
25920
+ class ServiceIntegrationClickhouseCredentialsUserConfig(dict):
25921
+ def __init__(__self__, *,
25922
+ grants: Optional[Sequence['outputs.ServiceIntegrationClickhouseCredentialsUserConfigGrant']] = None):
25923
+ """
25924
+ :param Sequence['ServiceIntegrationClickhouseCredentialsUserConfigGrantArgs'] grants: Grants to assign
25925
+ """
25926
+ if grants is not None:
25927
+ pulumi.set(__self__, "grants", grants)
25928
+
25929
+ @property
25930
+ @pulumi.getter
25931
+ def grants(self) -> Optional[Sequence['outputs.ServiceIntegrationClickhouseCredentialsUserConfigGrant']]:
25932
+ """
25933
+ Grants to assign
25934
+ """
25935
+ return pulumi.get(self, "grants")
25936
+
25937
+
25938
+ @pulumi.output_type
25939
+ class ServiceIntegrationClickhouseCredentialsUserConfigGrant(dict):
25940
+ def __init__(__self__, *,
25941
+ user: builtins.str):
25942
+ """
25943
+ :param builtins.str user: User or role to assign the grant to. Example: `alice`.
25944
+ """
25945
+ pulumi.set(__self__, "user", user)
25946
+
25947
+ @property
25948
+ @pulumi.getter
25949
+ def user(self) -> builtins.str:
25950
+ """
25951
+ User or role to assign the grant to. Example: `alice`.
25952
+ """
25953
+ return pulumi.get(self, "user")
25954
+
25955
+
25817
25956
  @pulumi.output_type
25818
25957
  class ServiceIntegrationClickhouseKafkaUserConfig(dict):
25819
25958
  def __init__(__self__, *,
@@ -32078,6 +32217,7 @@ class GetAlloydbomniAlloydbomniUserConfigPgResult(dict):
32078
32217
  max_stack_depth: Optional[builtins.int] = None,
32079
32218
  max_standby_archive_delay: Optional[builtins.int] = None,
32080
32219
  max_standby_streaming_delay: Optional[builtins.int] = None,
32220
+ max_sync_workers_per_subscription: Optional[builtins.int] = None,
32081
32221
  max_wal_senders: Optional[builtins.int] = None,
32082
32222
  max_worker_processes: Optional[builtins.int] = None,
32083
32223
  password_encryption: Optional[builtins.str] = None,
@@ -32127,6 +32267,7 @@ class GetAlloydbomniAlloydbomniUserConfigPgResult(dict):
32127
32267
  :param builtins.int max_stack_depth: Maximum depth of the stack in bytes. The default is `2097152` (upstream default).
32128
32268
  :param builtins.int max_standby_archive_delay: Max standby archive delay in milliseconds. The default is `30000` (upstream default).
32129
32269
  :param builtins.int max_standby_streaming_delay: Max standby streaming delay in milliseconds. The default is `30000` (upstream default).
32270
+ :param builtins.int max_sync_workers_per_subscription: Maximum number of synchronization workers per subscription. The default is `2`.
32130
32271
  :param builtins.int max_wal_senders: PostgreSQL maximum WAL senders. The default is `20`. Changing this parameter causes a service restart.
32131
32272
  :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.
32132
32273
  :param builtins.str password_encryption: Enum: `md5`, `scram-sha-256`. Chooses the algorithm for encrypting passwords. Default: `md5`.
@@ -32210,6 +32351,8 @@ class GetAlloydbomniAlloydbomniUserConfigPgResult(dict):
32210
32351
  pulumi.set(__self__, "max_standby_archive_delay", max_standby_archive_delay)
32211
32352
  if max_standby_streaming_delay is not None:
32212
32353
  pulumi.set(__self__, "max_standby_streaming_delay", max_standby_streaming_delay)
32354
+ if max_sync_workers_per_subscription is not None:
32355
+ pulumi.set(__self__, "max_sync_workers_per_subscription", max_sync_workers_per_subscription)
32213
32356
  if max_wal_senders is not None:
32214
32357
  pulumi.set(__self__, "max_wal_senders", max_wal_senders)
32215
32358
  if max_worker_processes is not None:
@@ -32511,6 +32654,14 @@ class GetAlloydbomniAlloydbomniUserConfigPgResult(dict):
32511
32654
  """
32512
32655
  return pulumi.get(self, "max_standby_streaming_delay")
32513
32656
 
32657
+ @property
32658
+ @pulumi.getter(name="maxSyncWorkersPerSubscription")
32659
+ def max_sync_workers_per_subscription(self) -> Optional[builtins.int]:
32660
+ """
32661
+ Maximum number of synchronization workers per subscription. The default is `2`.
32662
+ """
32663
+ return pulumi.get(self, "max_sync_workers_per_subscription")
32664
+
32514
32665
  @property
32515
32666
  @pulumi.getter(name="maxWalSenders")
32516
32667
  def max_wal_senders(self) -> Optional[builtins.int]:
@@ -32643,7 +32794,7 @@ class GetAlloydbomniAlloydbomniUserConfigPgauditResult(dict):
32643
32794
  role: Optional[builtins.str] = None):
32644
32795
  """
32645
32796
  :param builtins.bool feature_enabled: Enable pgaudit extension. When enabled, pgaudit extension will be automatically installed.Otherwise, extension will be uninstalled but auditing configurations will be preserved. Default: `false`.
32646
- :param builtins.bool log_catalog: Specifies that session logging should be enabled in the casewhere all relations in a statement are in pg_catalog. Default: `true`.
32797
+ :param builtins.bool log_catalog: Specifies that session logging should be enabled in the case where all relations in a statement are in pg_catalog. Default: `true`.
32647
32798
  :param builtins.bool log_client: Specifies whether log messages will be visible to a client process such as psql. Default: `false`.
32648
32799
  :param builtins.str log_level: Enum: `debug1`, `debug2`, `debug3`, `debug4`, `debug5`, `info`, `log`, `notice`, `warning`. Specifies the log level that will be used for log entries. Default: `log`.
32649
32800
  :param builtins.int log_max_string_length: Crop parameters representation and whole statements if they exceed this threshold. A (default) value of -1 disable the truncation. Default: `-1`.
@@ -32651,7 +32802,7 @@ class GetAlloydbomniAlloydbomniUserConfigPgauditResult(dict):
32651
32802
  :param builtins.bool log_parameter: Specifies that audit logging should include the parameters that were passed with the statement. Default: `false`.
32652
32803
  :param builtins.int log_parameter_max_size: Specifies that parameter values longer than this setting (in bytes) should not be logged, but replaced with <long param suppressed>. Default: `0`.
32653
32804
  :param builtins.bool log_relation: Specifies whether session audit logging should create a separate log entry for each relation (TABLE, VIEW, etc.) referenced in a SELECT or DML statement. Default: `false`.
32654
- :param builtins.bool log_rows: Specifies that audit logging should include the rows retrieved or affected by a statement. When enabled the rows field will be included after the parameter field. Default: `false`.
32805
+ :param builtins.bool log_rows: Log Rows. Default: `false`.
32655
32806
  :param builtins.bool log_statement: Specifies whether logging will include the statement text and parameters (if enabled). Default: `true`.
32656
32807
  :param builtins.bool log_statement_once: Specifies whether logging will include the statement text and parameters with the first log entry for a statement/substatement combination or with every entry. Default: `false`.
32657
32808
  :param Sequence[builtins.str] logs: Specifies which classes of statements will be logged by session audit logging.
@@ -32698,7 +32849,7 @@ class GetAlloydbomniAlloydbomniUserConfigPgauditResult(dict):
32698
32849
  @pulumi.getter(name="logCatalog")
32699
32850
  def log_catalog(self) -> Optional[builtins.bool]:
32700
32851
  """
32701
- Specifies that session logging should be enabled in the casewhere all relations in a statement are in pg_catalog. Default: `true`.
32852
+ Specifies that session logging should be enabled in the case where all relations in a statement are in pg_catalog. Default: `true`.
32702
32853
  """
32703
32854
  return pulumi.get(self, "log_catalog")
32704
32855
 
@@ -32762,7 +32913,7 @@ class GetAlloydbomniAlloydbomniUserConfigPgauditResult(dict):
32762
32913
  @pulumi.getter(name="logRows")
32763
32914
  def log_rows(self) -> Optional[builtins.bool]:
32764
32915
  """
32765
- Specifies that audit logging should include the rows retrieved or affected by a statement. When enabled the rows field will be included after the parameter field. Default: `false`.
32916
+ Log Rows. Default: `false`.
32766
32917
  """
32767
32918
  return pulumi.get(self, "log_rows")
32768
32919
 
@@ -41130,13 +41281,25 @@ class GetKafkaKafkaUserConfigSchemaRegistryConfigResult(dict):
41130
41281
  @pulumi.output_type
41131
41282
  class GetKafkaKafkaUserConfigSingleZoneResult(dict):
41132
41283
  def __init__(__self__, *,
41284
+ availability_zone: Optional[builtins.str] = None,
41133
41285
  enabled: Optional[builtins.bool] = None):
41134
41286
  """
41287
+ :param builtins.str availability_zone: The availability zone to use for the service. This is only used when enabled is set to true. If not set the service will be allocated in random AZ.The AZ is not guaranteed, and the service may be allocated in a different AZ if the selected AZ is not available. Zones will not be validated and invalid zones will be ignored, falling back to random AZ selection. Common availability zones include: AWS (euc1-az1, euc1-az2, euc1-az3), GCP (europe-west1-a, europe-west1-b, europe-west1-c), Azure (germanywestcentral/1, germanywestcentral/2, germanywestcentral/3). Example: `euc1-az1`.
41135
41288
  :param builtins.bool enabled: Whether to allocate nodes on the same Availability Zone or spread across zones available. By default service nodes are spread across different AZs. The single AZ support is best-effort and may temporarily allocate nodes in different AZs e.g. in case of capacity limitations in one AZ.
41136
41289
  """
41290
+ if availability_zone is not None:
41291
+ pulumi.set(__self__, "availability_zone", availability_zone)
41137
41292
  if enabled is not None:
41138
41293
  pulumi.set(__self__, "enabled", enabled)
41139
41294
 
41295
+ @property
41296
+ @pulumi.getter(name="availabilityZone")
41297
+ def availability_zone(self) -> Optional[builtins.str]:
41298
+ """
41299
+ The availability zone to use for the service. This is only used when enabled is set to true. If not set the service will be allocated in random AZ.The AZ is not guaranteed, and the service may be allocated in a different AZ if the selected AZ is not available. Zones will not be validated and invalid zones will be ignored, falling back to random AZ selection. Common availability zones include: AWS (euc1-az1, euc1-az2, euc1-az3), GCP (europe-west1-a, europe-west1-b, europe-west1-c), Azure (germanywestcentral/1, germanywestcentral/2, germanywestcentral/3). Example: `euc1-az1`.
41300
+ """
41301
+ return pulumi.get(self, "availability_zone")
41302
+
41140
41303
  @property
41141
41304
  @pulumi.getter
41142
41305
  def enabled(self) -> Optional[builtins.bool]:
@@ -41793,7 +41956,7 @@ class GetKafkaTopicConfigResult(dict):
41793
41956
  :param builtins.str flush_messages: This setting allows specifying an interval at which we will force an fsync of data written to the log. For example if this was set to 1 we would fsync after every message; if it were 5 we would fsync after every five messages. In general we recommend you not set this and use replication for durability and allow the operating system's background flush capabilities as it is more efficient.
41794
41957
  :param builtins.str flush_ms: This setting allows specifying a time interval at which we will force an fsync of data written to the log. For example if this was set to 1000 we would fsync after 1000 ms had passed. In general we recommend you not set this and use replication for durability and allow the operating system's background flush capabilities as it is more efficient.
41795
41958
  :param builtins.str index_interval_bytes: This setting controls how frequently Kafka adds an index entry to its offset index. The default setting ensures that we index a message roughly every 4096 bytes. More indexing allows reads to jump closer to the exact position in the log but makes the index larger. You probably don't need to change this.
41796
- :param builtins.bool inkless_enable: Indicates whether inkless should be enabled. This is only available for BYOC services with Inkless feature enabled.
41959
+ :param builtins.bool inkless_enable: Creates a [diskless topic](https://aiven.io/docs/products/diskless). You can only do this when you create the topic and you cannot change it later. Diskless topics are only available for bring your own cloud (BYOC) services that have the feature enabled.
41797
41960
  :param builtins.str local_retention_bytes: This configuration controls the maximum bytes tiered storage will retain segment files locally before it will discard old log segments to free up space. If set to -2, the limit is equal to overall retention time. If set to -1, no limit is applied but it's possible only if overall retention is also -1.
41798
41961
  :param builtins.str local_retention_ms: This configuration controls the maximum time tiered storage will retain segment files locally before it will discard old log segments to free up space. If set to -2, the time limit is equal to overall retention time. If set to -1, no time limit is applied but it's possible only if overall retention is also -1.
41799
41962
  :param builtins.str max_compaction_lag_ms: The maximum time a message will remain ineligible for compaction in the log. Only applicable for logs that are being compacted.
@@ -41932,7 +42095,7 @@ class GetKafkaTopicConfigResult(dict):
41932
42095
  @pulumi.getter(name="inklessEnable")
41933
42096
  def inkless_enable(self) -> Optional[builtins.bool]:
41934
42097
  """
41935
- Indicates whether inkless should be enabled. This is only available for BYOC services with Inkless feature enabled.
42098
+ Creates a [diskless topic](https://aiven.io/docs/products/diskless). You can only do this when you create the topic and you cannot change it later. Diskless topics are only available for bring your own cloud (BYOC) services that have the feature enabled.
41936
42099
  """
41937
42100
  return pulumi.get(self, "inkless_enable")
41938
42101
 
@@ -43746,6 +43909,7 @@ class GetMySqlMysqlUserConfigResult(dict):
43746
43909
  ip_filters: Optional[Sequence[builtins.str]] = None,
43747
43910
  migration: Optional['outputs.GetMySqlMysqlUserConfigMigrationResult'] = None,
43748
43911
  mysql: Optional['outputs.GetMySqlMysqlUserConfigMysqlResult'] = None,
43912
+ mysql_incremental_backup: Optional['outputs.GetMySqlMysqlUserConfigMysqlIncrementalBackupResult'] = None,
43749
43913
  mysql_version: Optional[builtins.str] = None,
43750
43914
  private_access: Optional['outputs.GetMySqlMysqlUserConfigPrivateAccessResult'] = None,
43751
43915
  privatelink_access: Optional['outputs.GetMySqlMysqlUserConfigPrivatelinkAccessResult'] = None,
@@ -43767,6 +43931,7 @@ class GetMySqlMysqlUserConfigResult(dict):
43767
43931
  :param Sequence[builtins.str] ip_filters: Allow incoming connections from CIDR address block, e.g. `10.20.0.0/16`.
43768
43932
  :param 'GetMySqlMysqlUserConfigMigrationArgs' migration: Migrate data from existing server
43769
43933
  :param 'GetMySqlMysqlUserConfigMysqlArgs' mysql: mysql.conf configuration values
43934
+ :param 'GetMySqlMysqlUserConfigMysqlIncrementalBackupArgs' mysql_incremental_backup: MySQL incremental backup configuration
43770
43935
  :param builtins.str mysql_version: Enum: `8`, and newer. MySQL major version.
43771
43936
  :param 'GetMySqlMysqlUserConfigPrivateAccessArgs' private_access: Allow access to selected service ports from private networks
43772
43937
  :param 'GetMySqlMysqlUserConfigPrivatelinkAccessArgs' privatelink_access: Allow access to selected service components through Privatelink
@@ -43799,6 +43964,8 @@ class GetMySqlMysqlUserConfigResult(dict):
43799
43964
  pulumi.set(__self__, "migration", migration)
43800
43965
  if mysql is not None:
43801
43966
  pulumi.set(__self__, "mysql", mysql)
43967
+ if mysql_incremental_backup is not None:
43968
+ pulumi.set(__self__, "mysql_incremental_backup", mysql_incremental_backup)
43802
43969
  if mysql_version is not None:
43803
43970
  pulumi.set(__self__, "mysql_version", mysql_version)
43804
43971
  if private_access is not None:
@@ -43907,6 +44074,14 @@ class GetMySqlMysqlUserConfigResult(dict):
43907
44074
  """
43908
44075
  return pulumi.get(self, "mysql")
43909
44076
 
44077
+ @property
44078
+ @pulumi.getter(name="mysqlIncrementalBackup")
44079
+ def mysql_incremental_backup(self) -> Optional['outputs.GetMySqlMysqlUserConfigMysqlIncrementalBackupResult']:
44080
+ """
44081
+ MySQL incremental backup configuration
44082
+ """
44083
+ return pulumi.get(self, "mysql_incremental_backup")
44084
+
43910
44085
  @property
43911
44086
  @pulumi.getter(name="mysqlVersion")
43912
44087
  def mysql_version(self) -> Optional[builtins.str]:
@@ -44502,6 +44677,36 @@ class GetMySqlMysqlUserConfigMysqlResult(dict):
44502
44677
  return pulumi.get(self, "wait_timeout")
44503
44678
 
44504
44679
 
44680
+ @pulumi.output_type
44681
+ class GetMySqlMysqlUserConfigMysqlIncrementalBackupResult(dict):
44682
+ def __init__(__self__, *,
44683
+ enabled: builtins.bool,
44684
+ full_backup_week_schedule: Optional[builtins.str] = None):
44685
+ """
44686
+ :param builtins.bool enabled: Enable periodic incremental backups. When enabled, full_backup_week_schedule must be set. Incremental backups only store changes since the last backup, making them faster and more storage-efficient than full backups. This is particularly useful for large databases where daily full backups would be too time-consuming or expensive.
44687
+ :param builtins.str full_backup_week_schedule: Comma-separated list of days of the week when full backups should be created. Valid values: mon, tue, wed, thu, fri, sat, sun. Example: `sun,wed`.
44688
+ """
44689
+ pulumi.set(__self__, "enabled", enabled)
44690
+ if full_backup_week_schedule is not None:
44691
+ pulumi.set(__self__, "full_backup_week_schedule", full_backup_week_schedule)
44692
+
44693
+ @property
44694
+ @pulumi.getter
44695
+ def enabled(self) -> builtins.bool:
44696
+ """
44697
+ Enable periodic incremental backups. When enabled, full_backup_week_schedule must be set. Incremental backups only store changes since the last backup, making them faster and more storage-efficient than full backups. This is particularly useful for large databases where daily full backups would be too time-consuming or expensive.
44698
+ """
44699
+ return pulumi.get(self, "enabled")
44700
+
44701
+ @property
44702
+ @pulumi.getter(name="fullBackupWeekSchedule")
44703
+ def full_backup_week_schedule(self) -> Optional[builtins.str]:
44704
+ """
44705
+ Comma-separated list of days of the week when full backups should be created. Valid values: mon, tue, wed, thu, fri, sat, sun. Example: `sun,wed`.
44706
+ """
44707
+ return pulumi.get(self, "full_backup_week_schedule")
44708
+
44709
+
44505
44710
  @pulumi.output_type
44506
44711
  class GetMySqlMysqlUserConfigPrivateAccessResult(dict):
44507
44712
  def __init__(__self__, *,
@@ -47552,12 +47757,7 @@ class GetOpenSearchOpensearchUserConfigOpensearchShardIndexingPressureResult(dic
47552
47757
  primary_parameter: Optional['outputs.GetOpenSearchOpensearchUserConfigOpensearchShardIndexingPressurePrimaryParameterResult'] = None):
47553
47758
  """
47554
47759
  :param builtins.bool enabled: Enable or disable shard indexing backpressure. Default is false.
47555
- :param builtins.bool enforced: Run shard indexing backpressure in shadow mode or enforced mode.
47556
- In shadow mode (value set as false), shard indexing backpressure tracks all granular-level metrics,
47557
- but it doesn’t actually reject any indexing requests.
47558
- In enforced mode (value set as true),
47559
- shard indexing backpressure rejects any requests to the cluster that might cause a dip in its performance.
47560
- Default is false.
47760
+ :param builtins.bool enforced: Run shard indexing backpressure in shadow mode or enforced mode. In shadow mode (value set as false), shard indexing backpressure tracks all granular-level metrics, but it doesn’t actually reject any indexing requests. In enforced mode (value set as true), shard indexing backpressure rejects any requests to the cluster that might cause a dip in its performance. Default is false.
47561
47761
  :param 'GetOpenSearchOpensearchUserConfigOpensearchShardIndexingPressureOperatingFactorArgs' operating_factor: Operating factor
47562
47762
  :param 'GetOpenSearchOpensearchUserConfigOpensearchShardIndexingPressurePrimaryParameterArgs' primary_parameter: Primary parameter
47563
47763
  """
@@ -47582,12 +47782,7 @@ class GetOpenSearchOpensearchUserConfigOpensearchShardIndexingPressureResult(dic
47582
47782
  @pulumi.getter
47583
47783
  def enforced(self) -> Optional[builtins.bool]:
47584
47784
  """
47585
- Run shard indexing backpressure in shadow mode or enforced mode.
47586
- In shadow mode (value set as false), shard indexing backpressure tracks all granular-level metrics,
47587
- but it doesn’t actually reject any indexing requests.
47588
- In enforced mode (value set as true),
47589
- shard indexing backpressure rejects any requests to the cluster that might cause a dip in its performance.
47590
- Default is false.
47785
+ Run shard indexing backpressure in shadow mode or enforced mode. In shadow mode (value set as false), shard indexing backpressure tracks all granular-level metrics, but it doesn’t actually reject any indexing requests. In enforced mode (value set as true), shard indexing backpressure rejects any requests to the cluster that might cause a dip in its performance. Default is false.
47591
47786
  """
47592
47787
  return pulumi.get(self, "enforced")
47593
47788
 
@@ -47615,18 +47810,9 @@ class GetOpenSearchOpensearchUserConfigOpensearchShardIndexingPressureOperatingF
47615
47810
  optimal: Optional[builtins.float] = None,
47616
47811
  upper: Optional[builtins.float] = None):
47617
47812
  """
47618
- :param builtins.float lower: Specify the lower occupancy limit of the allocated quota of memory for the shard.
47619
- If the total memory usage of a shard is below this limit,
47620
- shard indexing backpressure decreases the current allocated memory for that shard.
47621
- Default is 0.75.
47622
- :param builtins.float optimal: Specify the optimal occupancy of the allocated quota of memory for the shard.
47623
- If the total memory usage of a shard is at this level,
47624
- shard indexing backpressure doesn’t change the current allocated memory for that shard.
47625
- Default is 0.85.
47626
- :param builtins.float upper: Specify the upper occupancy limit of the allocated quota of memory for the shard.
47627
- If the total memory usage of a shard is above this limit,
47628
- shard indexing backpressure increases the current allocated memory for that shard.
47629
- Default is 0.95.
47813
+ :param builtins.float lower: Specify the lower occupancy limit of the allocated quota of memory for the shard. If the total memory usage of a shard is below this limit, shard indexing backpressure decreases the current allocated memory for that shard. Default is 0.75.
47814
+ :param builtins.float optimal: Specify the optimal occupancy of the allocated quota of memory for the shard. If the total memory usage of a shard is at this level, shard indexing backpressure doesn’t change the current allocated memory for that shard. Default is 0.85.
47815
+ :param builtins.float upper: Specify the upper occupancy limit of the allocated quota of memory for the shard. If the total memory usage of a shard is above this limit, shard indexing backpressure increases the current allocated memory for that shard. Default is 0.95.
47630
47816
  """
47631
47817
  if lower is not None:
47632
47818
  pulumi.set(__self__, "lower", lower)
@@ -47639,10 +47825,7 @@ class GetOpenSearchOpensearchUserConfigOpensearchShardIndexingPressureOperatingF
47639
47825
  @pulumi.getter
47640
47826
  def lower(self) -> Optional[builtins.float]:
47641
47827
  """
47642
- Specify the lower occupancy limit of the allocated quota of memory for the shard.
47643
- If the total memory usage of a shard is below this limit,
47644
- shard indexing backpressure decreases the current allocated memory for that shard.
47645
- Default is 0.75.
47828
+ Specify the lower occupancy limit of the allocated quota of memory for the shard. If the total memory usage of a shard is below this limit, shard indexing backpressure decreases the current allocated memory for that shard. Default is 0.75.
47646
47829
  """
47647
47830
  return pulumi.get(self, "lower")
47648
47831
 
@@ -47650,10 +47833,7 @@ class GetOpenSearchOpensearchUserConfigOpensearchShardIndexingPressureOperatingF
47650
47833
  @pulumi.getter
47651
47834
  def optimal(self) -> Optional[builtins.float]:
47652
47835
  """
47653
- Specify the optimal occupancy of the allocated quota of memory for the shard.
47654
- If the total memory usage of a shard is at this level,
47655
- shard indexing backpressure doesn’t change the current allocated memory for that shard.
47656
- Default is 0.85.
47836
+ Specify the optimal occupancy of the allocated quota of memory for the shard. If the total memory usage of a shard is at this level, shard indexing backpressure doesn’t change the current allocated memory for that shard. Default is 0.85.
47657
47837
  """
47658
47838
  return pulumi.get(self, "optimal")
47659
47839
 
@@ -47661,10 +47841,7 @@ class GetOpenSearchOpensearchUserConfigOpensearchShardIndexingPressureOperatingF
47661
47841
  @pulumi.getter
47662
47842
  def upper(self) -> Optional[builtins.float]:
47663
47843
  """
47664
- Specify the upper occupancy limit of the allocated quota of memory for the shard.
47665
- If the total memory usage of a shard is above this limit,
47666
- shard indexing backpressure increases the current allocated memory for that shard.
47667
- Default is 0.95.
47844
+ Specify the upper occupancy limit of the allocated quota of memory for the shard. If the total memory usage of a shard is above this limit, shard indexing backpressure increases the current allocated memory for that shard. Default is 0.95.
47668
47845
  """
47669
47846
  return pulumi.get(self, "upper")
47670
47847
 
@@ -47695,9 +47872,7 @@ class GetOpenSearchOpensearchUserConfigOpensearchShardIndexingPressurePrimaryPar
47695
47872
  def __init__(__self__, *,
47696
47873
  soft_limit: Optional[builtins.float] = None):
47697
47874
  """
47698
- :param builtins.float soft_limit: Define the percentage of the node-level memory
47699
- threshold that acts as a soft indicator for strain on a node.
47700
- Default is 0.7.
47875
+ :param builtins.float soft_limit: Define the percentage of the node-level memory threshold that acts as a soft indicator for strain on a node. Default is 0.7.
47701
47876
  """
47702
47877
  if soft_limit is not None:
47703
47878
  pulumi.set(__self__, "soft_limit", soft_limit)
@@ -47706,9 +47881,7 @@ class GetOpenSearchOpensearchUserConfigOpensearchShardIndexingPressurePrimaryPar
47706
47881
  @pulumi.getter(name="softLimit")
47707
47882
  def soft_limit(self) -> Optional[builtins.float]:
47708
47883
  """
47709
- Define the percentage of the node-level memory
47710
- threshold that acts as a soft indicator for strain on a node.
47711
- Default is 0.7.
47884
+ Define the percentage of the node-level memory threshold that acts as a soft indicator for strain on a node. Default is 0.7.
47712
47885
  """
47713
47886
  return pulumi.get(self, "soft_limit")
47714
47887
 
@@ -47718,9 +47891,7 @@ class GetOpenSearchOpensearchUserConfigOpensearchShardIndexingPressurePrimaryPar
47718
47891
  def __init__(__self__, *,
47719
47892
  min_limit: Optional[builtins.float] = None):
47720
47893
  """
47721
- :param builtins.float min_limit: Specify the minimum assigned quota for a new shard in any role (coordinator, primary, or replica).
47722
- Shard indexing backpressure increases or decreases this allocated quota based on the inflow of traffic for the shard.
47723
- Default is 0.001.
47894
+ :param builtins.float min_limit: Specify the minimum assigned quota for a new shard in any role (coordinator, primary, or replica). Shard indexing backpressure increases or decreases this allocated quota based on the inflow of traffic for the shard. Default is 0.001.
47724
47895
  """
47725
47896
  if min_limit is not None:
47726
47897
  pulumi.set(__self__, "min_limit", min_limit)
@@ -47729,9 +47900,7 @@ class GetOpenSearchOpensearchUserConfigOpensearchShardIndexingPressurePrimaryPar
47729
47900
  @pulumi.getter(name="minLimit")
47730
47901
  def min_limit(self) -> Optional[builtins.float]:
47731
47902
  """
47732
- Specify the minimum assigned quota for a new shard in any role (coordinator, primary, or replica).
47733
- Shard indexing backpressure increases or decreases this allocated quota based on the inflow of traffic for the shard.
47734
- Default is 0.001.
47903
+ Specify the minimum assigned quota for a new shard in any role (coordinator, primary, or replica). Shard indexing backpressure increases or decreases this allocated quota based on the inflow of traffic for the shard. Default is 0.001.
47735
47904
  """
47736
47905
  return pulumi.get(self, "min_limit")
47737
47906
 
@@ -49542,6 +49711,7 @@ class GetPgPgUserConfigPgResult(dict):
49542
49711
  log_line_prefix: Optional[builtins.str] = None,
49543
49712
  log_min_duration_statement: Optional[builtins.int] = None,
49544
49713
  log_temp_files: Optional[builtins.int] = None,
49714
+ max_connections: Optional[builtins.int] = None,
49545
49715
  max_files_per_process: Optional[builtins.int] = None,
49546
49716
  max_locks_per_transaction: Optional[builtins.int] = None,
49547
49717
  max_logical_replication_workers: Optional[builtins.int] = None,
@@ -49554,6 +49724,7 @@ class GetPgPgUserConfigPgResult(dict):
49554
49724
  max_stack_depth: Optional[builtins.int] = None,
49555
49725
  max_standby_archive_delay: Optional[builtins.int] = None,
49556
49726
  max_standby_streaming_delay: Optional[builtins.int] = None,
49727
+ max_sync_workers_per_subscription: Optional[builtins.int] = None,
49557
49728
  max_wal_senders: Optional[builtins.int] = None,
49558
49729
  max_worker_processes: Optional[builtins.int] = None,
49559
49730
  password_encryption: Optional[builtins.str] = None,
@@ -49593,6 +49764,7 @@ class GetPgPgUserConfigPgResult(dict):
49593
49764
  :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.
49594
49765
  :param builtins.int log_min_duration_statement: Log statements that take more than this number of milliseconds to run, -1 disables.
49595
49766
  :param builtins.int log_temp_files: Log statements for each temporary file created larger than this number of kilobytes, -1 disables.
49767
+ :param builtins.int max_connections: PostgreSQL maximum number of concurrent connections to the database server. Changing this parameter causes a service restart.
49596
49768
  :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.
49597
49769
  :param builtins.int max_locks_per_transaction: PostgreSQL maximum locks per transaction. Changing this parameter causes a service restart.
49598
49770
  :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.
@@ -49605,6 +49777,7 @@ class GetPgPgUserConfigPgResult(dict):
49605
49777
  :param builtins.int max_stack_depth: Maximum depth of the stack in bytes. The default is `2097152` (upstream default).
49606
49778
  :param builtins.int max_standby_archive_delay: Max standby archive delay in milliseconds. The default is `30000` (upstream default).
49607
49779
  :param builtins.int max_standby_streaming_delay: Max standby streaming delay in milliseconds. The default is `30000` (upstream default).
49780
+ :param builtins.int max_sync_workers_per_subscription: Maximum number of synchronization workers per subscription. The default is `2`.
49608
49781
  :param builtins.int max_wal_senders: PostgreSQL maximum WAL senders. The default is `20`. Changing this parameter causes a service restart.
49609
49782
  :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.
49610
49783
  :param builtins.str password_encryption: Enum: `md5`, `scram-sha-256`. Chooses the algorithm for encrypting passwords. Default: `md5`.
@@ -49666,6 +49839,8 @@ class GetPgPgUserConfigPgResult(dict):
49666
49839
  pulumi.set(__self__, "log_min_duration_statement", log_min_duration_statement)
49667
49840
  if log_temp_files is not None:
49668
49841
  pulumi.set(__self__, "log_temp_files", log_temp_files)
49842
+ if max_connections is not None:
49843
+ pulumi.set(__self__, "max_connections", max_connections)
49669
49844
  if max_files_per_process is not None:
49670
49845
  pulumi.set(__self__, "max_files_per_process", max_files_per_process)
49671
49846
  if max_locks_per_transaction is not None:
@@ -49690,6 +49865,8 @@ class GetPgPgUserConfigPgResult(dict):
49690
49865
  pulumi.set(__self__, "max_standby_archive_delay", max_standby_archive_delay)
49691
49866
  if max_standby_streaming_delay is not None:
49692
49867
  pulumi.set(__self__, "max_standby_streaming_delay", max_standby_streaming_delay)
49868
+ if max_sync_workers_per_subscription is not None:
49869
+ pulumi.set(__self__, "max_sync_workers_per_subscription", max_sync_workers_per_subscription)
49693
49870
  if max_wal_senders is not None:
49694
49871
  pulumi.set(__self__, "max_wal_senders", max_wal_senders)
49695
49872
  if max_worker_processes is not None:
@@ -49899,6 +50076,14 @@ class GetPgPgUserConfigPgResult(dict):
49899
50076
  """
49900
50077
  return pulumi.get(self, "log_temp_files")
49901
50078
 
50079
+ @property
50080
+ @pulumi.getter(name="maxConnections")
50081
+ def max_connections(self) -> Optional[builtins.int]:
50082
+ """
50083
+ PostgreSQL maximum number of concurrent connections to the database server. Changing this parameter causes a service restart.
50084
+ """
50085
+ return pulumi.get(self, "max_connections")
50086
+
49902
50087
  @property
49903
50088
  @pulumi.getter(name="maxFilesPerProcess")
49904
50089
  def max_files_per_process(self) -> Optional[builtins.int]:
@@ -49995,6 +50180,14 @@ class GetPgPgUserConfigPgResult(dict):
49995
50180
  """
49996
50181
  return pulumi.get(self, "max_standby_streaming_delay")
49997
50182
 
50183
+ @property
50184
+ @pulumi.getter(name="maxSyncWorkersPerSubscription")
50185
+ def max_sync_workers_per_subscription(self) -> Optional[builtins.int]:
50186
+ """
50187
+ Maximum number of synchronization workers per subscription. The default is `2`.
50188
+ """
50189
+ return pulumi.get(self, "max_sync_workers_per_subscription")
50190
+
49998
50191
  @property
49999
50192
  @pulumi.getter(name="maxWalSenders")
50000
50193
  def max_wal_senders(self) -> Optional[builtins.int]:
@@ -50215,7 +50408,7 @@ class GetPgPgUserConfigPgauditResult(dict):
50215
50408
  role: Optional[builtins.str] = None):
50216
50409
  """
50217
50410
  :param builtins.bool feature_enabled: Enable pgaudit extension. When enabled, pgaudit extension will be automatically installed.Otherwise, extension will be uninstalled but auditing configurations will be preserved. Default: `false`.
50218
- :param builtins.bool log_catalog: Specifies that session logging should be enabled in the casewhere all relations in a statement are in pg_catalog. Default: `true`.
50411
+ :param builtins.bool log_catalog: Specifies that session logging should be enabled in the case where all relations in a statement are in pg_catalog. Default: `true`.
50219
50412
  :param builtins.bool log_client: Specifies whether log messages will be visible to a client process such as psql. Default: `false`.
50220
50413
  :param builtins.str log_level: Enum: `debug1`, `debug2`, `debug3`, `debug4`, `debug5`, `info`, `log`, `notice`, `warning`. Specifies the log level that will be used for log entries. Default: `log`.
50221
50414
  :param builtins.int log_max_string_length: Crop parameters representation and whole statements if they exceed this threshold. A (default) value of -1 disable the truncation. Default: `-1`.
@@ -50223,7 +50416,7 @@ class GetPgPgUserConfigPgauditResult(dict):
50223
50416
  :param builtins.bool log_parameter: Specifies that audit logging should include the parameters that were passed with the statement. Default: `false`.
50224
50417
  :param builtins.int log_parameter_max_size: Specifies that parameter values longer than this setting (in bytes) should not be logged, but replaced with <long param suppressed>. Default: `0`.
50225
50418
  :param builtins.bool log_relation: Specifies whether session audit logging should create a separate log entry for each relation (TABLE, VIEW, etc.) referenced in a SELECT or DML statement. Default: `false`.
50226
- :param builtins.bool log_rows: Specifies that audit logging should include the rows retrieved or affected by a statement. When enabled the rows field will be included after the parameter field. Default: `false`.
50419
+ :param builtins.bool log_rows: Log Rows. Default: `false`.
50227
50420
  :param builtins.bool log_statement: Specifies whether logging will include the statement text and parameters (if enabled). Default: `true`.
50228
50421
  :param builtins.bool log_statement_once: Specifies whether logging will include the statement text and parameters with the first log entry for a statement/substatement combination or with every entry. Default: `false`.
50229
50422
  :param Sequence[builtins.str] logs: Specifies which classes of statements will be logged by session audit logging.
@@ -50270,7 +50463,7 @@ class GetPgPgUserConfigPgauditResult(dict):
50270
50463
  @pulumi.getter(name="logCatalog")
50271
50464
  def log_catalog(self) -> Optional[builtins.bool]:
50272
50465
  """
50273
- Specifies that session logging should be enabled in the casewhere all relations in a statement are in pg_catalog. Default: `true`.
50466
+ Specifies that session logging should be enabled in the case where all relations in a statement are in pg_catalog. Default: `true`.
50274
50467
  """
50275
50468
  return pulumi.get(self, "log_catalog")
50276
50469
 
@@ -50334,7 +50527,7 @@ class GetPgPgUserConfigPgauditResult(dict):
50334
50527
  @pulumi.getter(name="logRows")
50335
50528
  def log_rows(self) -> Optional[builtins.bool]:
50336
50529
  """
50337
- Specifies that audit logging should include the rows retrieved or affected by a statement. When enabled the rows field will be included after the parameter field. Default: `false`.
50530
+ Log Rows. Default: `false`.
50338
50531
  """
50339
50532
  return pulumi.get(self, "log_rows")
50340
50533
 
@@ -51571,6 +51764,43 @@ class GetRedisTechEmailResult(dict):
51571
51764
  return pulumi.get(self, "email")
51572
51765
 
51573
51766
 
51767
+ @pulumi.output_type
51768
+ class GetServiceIntegrationClickhouseCredentialsUserConfigResult(dict):
51769
+ def __init__(__self__, *,
51770
+ grants: Optional[Sequence['outputs.GetServiceIntegrationClickhouseCredentialsUserConfigGrantResult']] = None):
51771
+ """
51772
+ :param Sequence['GetServiceIntegrationClickhouseCredentialsUserConfigGrantArgs'] grants: Grants to assign
51773
+ """
51774
+ if grants is not None:
51775
+ pulumi.set(__self__, "grants", grants)
51776
+
51777
+ @property
51778
+ @pulumi.getter
51779
+ def grants(self) -> Optional[Sequence['outputs.GetServiceIntegrationClickhouseCredentialsUserConfigGrantResult']]:
51780
+ """
51781
+ Grants to assign
51782
+ """
51783
+ return pulumi.get(self, "grants")
51784
+
51785
+
51786
+ @pulumi.output_type
51787
+ class GetServiceIntegrationClickhouseCredentialsUserConfigGrantResult(dict):
51788
+ def __init__(__self__, *,
51789
+ user: builtins.str):
51790
+ """
51791
+ :param builtins.str user: User or role to assign the grant to. Example: `alice`.
51792
+ """
51793
+ pulumi.set(__self__, "user", user)
51794
+
51795
+ @property
51796
+ @pulumi.getter
51797
+ def user(self) -> builtins.str:
51798
+ """
51799
+ User or role to assign the grant to. Example: `alice`.
51800
+ """
51801
+ return pulumi.get(self, "user")
51802
+
51803
+
51574
51804
  @pulumi.output_type
51575
51805
  class GetServiceIntegrationClickhouseKafkaUserConfigResult(dict):
51576
51806
  def __init__(__self__, *,
@@ -52986,7 +53216,7 @@ class GetServiceIntegrationEndpointExternalPostgresqlResult(dict):
52986
53216
  :param builtins.str ssl_client_key: Client key. Example: `-----BEGIN PRIVATE KEY-----
52987
53217
  ...
52988
53218
  -----END PRIVATE KEY-----`.
52989
- :param builtins.str ssl_mode: Enum: `allow`, `disable`, `prefer`, `require`, `verify-ca`, `verify-full`. SSL mode to use for the connection. Please note that Aiven requires TLS for all connections to external PostgreSQL services. Default: `verify-full`.
53219
+ :param builtins.str ssl_mode: Enum: `allow`, `disable`, `prefer`, `require`, `verify-ca`, `verify-full`. SSL mode to use for the connection. Please note that Aiven requires TLS for all connections to external PostgreSQL services. Default: `verify-full`.
52990
53220
  :param builtins.str ssl_root_cert: SSL Root Cert. Example: `-----BEGIN CERTIFICATE-----
52991
53221
  ...
52992
53222
  -----END CERTIFICATE-----
@@ -53073,7 +53303,7 @@ class GetServiceIntegrationEndpointExternalPostgresqlResult(dict):
53073
53303
  @pulumi.getter(name="sslMode")
53074
53304
  def ssl_mode(self) -> Optional[builtins.str]:
53075
53305
  """
53076
- Enum: `allow`, `disable`, `prefer`, `require`, `verify-ca`, `verify-full`. SSL mode to use for the connection. Please note that Aiven requires TLS for all connections to external PostgreSQL services. Default: `verify-full`.
53306
+ Enum: `allow`, `disable`, `prefer`, `require`, `verify-ca`, `verify-full`. SSL mode to use for the connection. Please note that Aiven requires TLS for all connections to external PostgreSQL services. Default: `verify-full`.
53077
53307
  """
53078
53308
  return pulumi.get(self, "ssl_mode")
53079
53309