pulumi-aiven 6.41.0a1752901795__py3-none-any.whl → 6.41.0a1753242343__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


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

pulumi_aiven/_inputs.py CHANGED
@@ -370,6 +370,8 @@ __all__ = [
370
370
  'MySqlMysqlUserConfigMigrationArgsDict',
371
371
  'MySqlMysqlUserConfigMysqlArgs',
372
372
  'MySqlMysqlUserConfigMysqlArgsDict',
373
+ 'MySqlMysqlUserConfigMysqlIncrementalBackupArgs',
374
+ 'MySqlMysqlUserConfigMysqlIncrementalBackupArgsDict',
373
375
  'MySqlMysqlUserConfigPrivateAccessArgs',
374
376
  'MySqlMysqlUserConfigPrivateAccessArgsDict',
375
377
  'MySqlMysqlUserConfigPrivatelinkAccessArgs',
@@ -542,6 +544,10 @@ __all__ = [
542
544
  'RedisTagArgsDict',
543
545
  'RedisTechEmailArgs',
544
546
  'RedisTechEmailArgsDict',
547
+ 'ServiceIntegrationClickhouseCredentialsUserConfigArgs',
548
+ 'ServiceIntegrationClickhouseCredentialsUserConfigArgsDict',
549
+ 'ServiceIntegrationClickhouseCredentialsUserConfigGrantArgs',
550
+ 'ServiceIntegrationClickhouseCredentialsUserConfigGrantArgsDict',
545
551
  'ServiceIntegrationClickhouseKafkaUserConfigArgs',
546
552
  'ServiceIntegrationClickhouseKafkaUserConfigArgsDict',
547
553
  'ServiceIntegrationClickhouseKafkaUserConfigTableArgs',
@@ -2073,6 +2079,10 @@ if not MYPY:
2073
2079
  """
2074
2080
  Max standby streaming delay in milliseconds. The default is `30000` (upstream default).
2075
2081
  """
2082
+ max_sync_workers_per_subscription: NotRequired[pulumi.Input[builtins.int]]
2083
+ """
2084
+ Maximum number of synchronization workers per subscription. The default is `2`.
2085
+ """
2076
2086
  max_wal_senders: NotRequired[pulumi.Input[builtins.int]]
2077
2087
  """
2078
2088
  PostgreSQL maximum WAL senders. The default is `20`. Changing this parameter causes a service restart.
@@ -2169,6 +2179,7 @@ class AlloydbomniAlloydbomniUserConfigPgArgs:
2169
2179
  max_stack_depth: Optional[pulumi.Input[builtins.int]] = None,
2170
2180
  max_standby_archive_delay: Optional[pulumi.Input[builtins.int]] = None,
2171
2181
  max_standby_streaming_delay: Optional[pulumi.Input[builtins.int]] = None,
2182
+ max_sync_workers_per_subscription: Optional[pulumi.Input[builtins.int]] = None,
2172
2183
  max_wal_senders: Optional[pulumi.Input[builtins.int]] = None,
2173
2184
  max_worker_processes: Optional[pulumi.Input[builtins.int]] = None,
2174
2185
  password_encryption: Optional[pulumi.Input[builtins.str]] = None,
@@ -2218,6 +2229,7 @@ class AlloydbomniAlloydbomniUserConfigPgArgs:
2218
2229
  :param pulumi.Input[builtins.int] max_stack_depth: Maximum depth of the stack in bytes. The default is `2097152` (upstream default).
2219
2230
  :param pulumi.Input[builtins.int] max_standby_archive_delay: Max standby archive delay in milliseconds. The default is `30000` (upstream default).
2220
2231
  :param pulumi.Input[builtins.int] max_standby_streaming_delay: Max standby streaming delay in milliseconds. The default is `30000` (upstream default).
2232
+ :param pulumi.Input[builtins.int] max_sync_workers_per_subscription: Maximum number of synchronization workers per subscription. The default is `2`.
2221
2233
  :param pulumi.Input[builtins.int] max_wal_senders: PostgreSQL maximum WAL senders. The default is `20`. Changing this parameter causes a service restart.
2222
2234
  :param pulumi.Input[builtins.int] max_worker_processes: Sets the maximum number of background processes that the system can support. The default is `8`. Changing this parameter causes a service restart.
2223
2235
  :param pulumi.Input[builtins.str] password_encryption: Enum: `md5`, `scram-sha-256`. Chooses the algorithm for encrypting passwords. Default: `md5`.
@@ -2301,6 +2313,8 @@ class AlloydbomniAlloydbomniUserConfigPgArgs:
2301
2313
  pulumi.set(__self__, "max_standby_archive_delay", max_standby_archive_delay)
2302
2314
  if max_standby_streaming_delay is not None:
2303
2315
  pulumi.set(__self__, "max_standby_streaming_delay", max_standby_streaming_delay)
2316
+ if max_sync_workers_per_subscription is not None:
2317
+ pulumi.set(__self__, "max_sync_workers_per_subscription", max_sync_workers_per_subscription)
2304
2318
  if max_wal_senders is not None:
2305
2319
  pulumi.set(__self__, "max_wal_senders", max_wal_senders)
2306
2320
  if max_worker_processes is not None:
@@ -2738,6 +2752,18 @@ class AlloydbomniAlloydbomniUserConfigPgArgs:
2738
2752
  def max_standby_streaming_delay(self, value: Optional[pulumi.Input[builtins.int]]):
2739
2753
  pulumi.set(self, "max_standby_streaming_delay", value)
2740
2754
 
2755
+ @property
2756
+ @pulumi.getter(name="maxSyncWorkersPerSubscription")
2757
+ def max_sync_workers_per_subscription(self) -> Optional[pulumi.Input[builtins.int]]:
2758
+ """
2759
+ Maximum number of synchronization workers per subscription. The default is `2`.
2760
+ """
2761
+ return pulumi.get(self, "max_sync_workers_per_subscription")
2762
+
2763
+ @max_sync_workers_per_subscription.setter
2764
+ def max_sync_workers_per_subscription(self, value: Optional[pulumi.Input[builtins.int]]):
2765
+ pulumi.set(self, "max_sync_workers_per_subscription", value)
2766
+
2741
2767
  @property
2742
2768
  @pulumi.getter(name="maxWalSenders")
2743
2769
  def max_wal_senders(self) -> Optional[pulumi.Input[builtins.int]]:
@@ -2915,7 +2941,7 @@ if not MYPY:
2915
2941
  """
2916
2942
  log_catalog: NotRequired[pulumi.Input[builtins.bool]]
2917
2943
  """
2918
- Specifies that session logging should be enabled in the casewhere all relations in a statement are in pg_catalog. Default: `true`.
2944
+ Specifies that session logging should be enabled in the case where all relationsin a statement are in pg_catalog. Default: `true`.
2919
2945
  """
2920
2946
  log_client: NotRequired[pulumi.Input[builtins.bool]]
2921
2947
  """
@@ -2927,11 +2953,11 @@ if not MYPY:
2927
2953
  """
2928
2954
  log_max_string_length: NotRequired[pulumi.Input[builtins.int]]
2929
2955
  """
2930
- Crop parameters representation and whole statements if they exceed this threshold. A (default) value of -1 disable the truncation. Default: `-1`.
2956
+ Crop parameters representation and whole statements if they exceed this threshold.A (default) value of -1 disable the truncation. Default: `-1`.
2931
2957
  """
2932
2958
  log_nested_statements: NotRequired[pulumi.Input[builtins.bool]]
2933
2959
  """
2934
- This GUC allows to turn off logging nested statements, that is, statements that are executed as part of another ExecutorRun. Default: `true`.
2960
+ This GUC allows to turn off logging nested statements, that is, statements that areexecuted as part of another ExecutorRun. Default: `true`.
2935
2961
  """
2936
2962
  log_parameter: NotRequired[pulumi.Input[builtins.bool]]
2937
2963
  """
@@ -2939,15 +2965,15 @@ if not MYPY:
2939
2965
  """
2940
2966
  log_parameter_max_size: NotRequired[pulumi.Input[builtins.int]]
2941
2967
  """
2942
- Specifies that parameter values longer than this setting (in bytes) should not be logged, but replaced with \\n\\n. Default: `0`.
2968
+ Specifies that parameter values longer than this setting (in bytes) should not be logged,but replaced with \\n\\n. Default: `0`.
2943
2969
  """
2944
2970
  log_relation: NotRequired[pulumi.Input[builtins.bool]]
2945
2971
  """
2946
- 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`.
2972
+ 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`.
2947
2973
  """
2948
2974
  log_rows: NotRequired[pulumi.Input[builtins.bool]]
2949
2975
  """
2950
- 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`.
2976
+ Log Rows. Default: `false`.
2951
2977
  """
2952
2978
  log_statement: NotRequired[pulumi.Input[builtins.bool]]
2953
2979
  """
@@ -2955,7 +2981,7 @@ if not MYPY:
2955
2981
  """
2956
2982
  log_statement_once: NotRequired[pulumi.Input[builtins.bool]]
2957
2983
  """
2958
- 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`.
2984
+ 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`.
2959
2985
  """
2960
2986
  logs: NotRequired[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]
2961
2987
  """
@@ -2987,17 +3013,17 @@ class AlloydbomniAlloydbomniUserConfigPgauditArgs:
2987
3013
  role: Optional[pulumi.Input[builtins.str]] = None):
2988
3014
  """
2989
3015
  :param pulumi.Input[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`.
2990
- :param pulumi.Input[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`.
3016
+ :param pulumi.Input[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`.
2991
3017
  :param pulumi.Input[builtins.bool] log_client: Specifies whether log messages will be visible to a client process such as psql. Default: `false`.
2992
3018
  :param pulumi.Input[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`.
2993
- :param pulumi.Input[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`.
2994
- :param pulumi.Input[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`.
3019
+ :param pulumi.Input[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`.
3020
+ :param pulumi.Input[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`.
2995
3021
  :param pulumi.Input[builtins.bool] log_parameter: Specifies that audit logging should include the parameters that were passed with the statement. Default: `false`.
2996
- :param pulumi.Input[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`.
2997
- :param pulumi.Input[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`.
2998
- :param pulumi.Input[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`.
3022
+ :param pulumi.Input[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`.
3023
+ :param pulumi.Input[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`.
3024
+ :param pulumi.Input[builtins.bool] log_rows: Log Rows. Default: `false`.
2999
3025
  :param pulumi.Input[builtins.bool] log_statement: Specifies whether logging will include the statement text and parameters (if enabled). Default: `true`.
3000
- :param pulumi.Input[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`.
3026
+ :param pulumi.Input[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`.
3001
3027
  :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] logs: Specifies which classes of statements will be logged by session audit logging.
3002
3028
  :param pulumi.Input[builtins.str] role: Specifies the master role to use for object audit logging.
3003
3029
  """
@@ -3046,7 +3072,7 @@ class AlloydbomniAlloydbomniUserConfigPgauditArgs:
3046
3072
  @pulumi.getter(name="logCatalog")
3047
3073
  def log_catalog(self) -> Optional[pulumi.Input[builtins.bool]]:
3048
3074
  """
3049
- Specifies that session logging should be enabled in the casewhere all relations in a statement are in pg_catalog. Default: `true`.
3075
+ Specifies that session logging should be enabled in the case where all relationsin a statement are in pg_catalog. Default: `true`.
3050
3076
  """
3051
3077
  return pulumi.get(self, "log_catalog")
3052
3078
 
@@ -3082,7 +3108,7 @@ class AlloydbomniAlloydbomniUserConfigPgauditArgs:
3082
3108
  @pulumi.getter(name="logMaxStringLength")
3083
3109
  def log_max_string_length(self) -> Optional[pulumi.Input[builtins.int]]:
3084
3110
  """
3085
- Crop parameters representation and whole statements if they exceed this threshold. A (default) value of -1 disable the truncation. Default: `-1`.
3111
+ Crop parameters representation and whole statements if they exceed this threshold.A (default) value of -1 disable the truncation. Default: `-1`.
3086
3112
  """
3087
3113
  return pulumi.get(self, "log_max_string_length")
3088
3114
 
@@ -3094,7 +3120,7 @@ class AlloydbomniAlloydbomniUserConfigPgauditArgs:
3094
3120
  @pulumi.getter(name="logNestedStatements")
3095
3121
  def log_nested_statements(self) -> Optional[pulumi.Input[builtins.bool]]:
3096
3122
  """
3097
- This GUC allows to turn off logging nested statements, that is, statements that are executed as part of another ExecutorRun. Default: `true`.
3123
+ This GUC allows to turn off logging nested statements, that is, statements that areexecuted as part of another ExecutorRun. Default: `true`.
3098
3124
  """
3099
3125
  return pulumi.get(self, "log_nested_statements")
3100
3126
 
@@ -3118,7 +3144,7 @@ class AlloydbomniAlloydbomniUserConfigPgauditArgs:
3118
3144
  @pulumi.getter(name="logParameterMaxSize")
3119
3145
  def log_parameter_max_size(self) -> Optional[pulumi.Input[builtins.int]]:
3120
3146
  """
3121
- Specifies that parameter values longer than this setting (in bytes) should not be logged, but replaced with \\n\\n. Default: `0`.
3147
+ Specifies that parameter values longer than this setting (in bytes) should not be logged,but replaced with \\n\\n. Default: `0`.
3122
3148
  """
3123
3149
  return pulumi.get(self, "log_parameter_max_size")
3124
3150
 
@@ -3130,7 +3156,7 @@ class AlloydbomniAlloydbomniUserConfigPgauditArgs:
3130
3156
  @pulumi.getter(name="logRelation")
3131
3157
  def log_relation(self) -> Optional[pulumi.Input[builtins.bool]]:
3132
3158
  """
3133
- 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`.
3159
+ 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`.
3134
3160
  """
3135
3161
  return pulumi.get(self, "log_relation")
3136
3162
 
@@ -3142,7 +3168,7 @@ class AlloydbomniAlloydbomniUserConfigPgauditArgs:
3142
3168
  @pulumi.getter(name="logRows")
3143
3169
  def log_rows(self) -> Optional[pulumi.Input[builtins.bool]]:
3144
3170
  """
3145
- 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`.
3171
+ Log Rows. Default: `false`.
3146
3172
  """
3147
3173
  return pulumi.get(self, "log_rows")
3148
3174
 
@@ -3166,7 +3192,7 @@ class AlloydbomniAlloydbomniUserConfigPgauditArgs:
3166
3192
  @pulumi.getter(name="logStatementOnce")
3167
3193
  def log_statement_once(self) -> Optional[pulumi.Input[builtins.bool]]:
3168
3194
  """
3169
- 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`.
3195
+ 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`.
3170
3196
  """
3171
3197
  return pulumi.get(self, "log_statement_once")
3172
3198
 
@@ -17606,6 +17632,10 @@ class KafkaKafkaUserConfigSchemaRegistryConfigArgs:
17606
17632
 
17607
17633
  if not MYPY:
17608
17634
  class KafkaKafkaUserConfigSingleZoneArgsDict(TypedDict):
17635
+ availability_zone: NotRequired[pulumi.Input[builtins.str]]
17636
+ """
17637
+ 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`.
17638
+ """
17609
17639
  enabled: NotRequired[pulumi.Input[builtins.bool]]
17610
17640
  """
17611
17641
  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.
@@ -17616,13 +17646,29 @@ elif False:
17616
17646
  @pulumi.input_type
17617
17647
  class KafkaKafkaUserConfigSingleZoneArgs:
17618
17648
  def __init__(__self__, *,
17649
+ availability_zone: Optional[pulumi.Input[builtins.str]] = None,
17619
17650
  enabled: Optional[pulumi.Input[builtins.bool]] = None):
17620
17651
  """
17652
+ :param pulumi.Input[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`.
17621
17653
  :param pulumi.Input[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.
17622
17654
  """
17655
+ if availability_zone is not None:
17656
+ pulumi.set(__self__, "availability_zone", availability_zone)
17623
17657
  if enabled is not None:
17624
17658
  pulumi.set(__self__, "enabled", enabled)
17625
17659
 
17660
+ @property
17661
+ @pulumi.getter(name="availabilityZone")
17662
+ def availability_zone(self) -> Optional[pulumi.Input[builtins.str]]:
17663
+ """
17664
+ 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`.
17665
+ """
17666
+ return pulumi.get(self, "availability_zone")
17667
+
17668
+ @availability_zone.setter
17669
+ def availability_zone(self, value: Optional[pulumi.Input[builtins.str]]):
17670
+ pulumi.set(self, "availability_zone", value)
17671
+
17626
17672
  @property
17627
17673
  @pulumi.getter
17628
17674
  def enabled(self) -> Optional[pulumi.Input[builtins.bool]]:
@@ -18717,7 +18763,7 @@ if not MYPY:
18717
18763
  """
18718
18764
  inkless_enable: NotRequired[pulumi.Input[builtins.bool]]
18719
18765
  """
18720
- Indicates whether inkless should be enabled. This is only available for BYOC services with Inkless feature enabled.
18766
+ 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.
18721
18767
  """
18722
18768
  local_retention_bytes: NotRequired[pulumi.Input[builtins.str]]
18723
18769
  """
@@ -18841,7 +18887,7 @@ class KafkaTopicConfigArgs:
18841
18887
  :param pulumi.Input[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.
18842
18888
  :param pulumi.Input[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.
18843
18889
  :param pulumi.Input[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.
18844
- :param pulumi.Input[builtins.bool] inkless_enable: Indicates whether inkless should be enabled. This is only available for BYOC services with Inkless feature enabled.
18890
+ :param pulumi.Input[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.
18845
18891
  :param pulumi.Input[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.
18846
18892
  :param pulumi.Input[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.
18847
18893
  :param pulumi.Input[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.
@@ -19008,7 +19054,7 @@ class KafkaTopicConfigArgs:
19008
19054
  @pulumi.getter(name="inklessEnable")
19009
19055
  def inkless_enable(self) -> Optional[pulumi.Input[builtins.bool]]:
19010
19056
  """
19011
- Indicates whether inkless should be enabled. This is only available for BYOC services with Inkless feature enabled.
19057
+ 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.
19012
19058
  """
19013
19059
  return pulumi.get(self, "inkless_enable")
19014
19060
 
@@ -22135,6 +22181,10 @@ if not MYPY:
22135
22181
  """
22136
22182
  mysql.conf configuration values
22137
22183
  """
22184
+ mysql_incremental_backup: NotRequired[pulumi.Input['MySqlMysqlUserConfigMysqlIncrementalBackupArgsDict']]
22185
+ """
22186
+ MySQL incremental backup configuration
22187
+ """
22138
22188
  mysql_version: NotRequired[pulumi.Input[builtins.str]]
22139
22189
  """
22140
22190
  Enum: `8`, and newer. MySQL major version.
@@ -22188,6 +22238,7 @@ class MySqlMysqlUserConfigArgs:
22188
22238
  ip_filters: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
22189
22239
  migration: Optional[pulumi.Input['MySqlMysqlUserConfigMigrationArgs']] = None,
22190
22240
  mysql: Optional[pulumi.Input['MySqlMysqlUserConfigMysqlArgs']] = None,
22241
+ mysql_incremental_backup: Optional[pulumi.Input['MySqlMysqlUserConfigMysqlIncrementalBackupArgs']] = None,
22191
22242
  mysql_version: Optional[pulumi.Input[builtins.str]] = None,
22192
22243
  private_access: Optional[pulumi.Input['MySqlMysqlUserConfigPrivateAccessArgs']] = None,
22193
22244
  privatelink_access: Optional[pulumi.Input['MySqlMysqlUserConfigPrivatelinkAccessArgs']] = None,
@@ -22209,6 +22260,7 @@ class MySqlMysqlUserConfigArgs:
22209
22260
  :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] ip_filters: Allow incoming connections from CIDR address block, e.g. `10.20.0.0/16`.
22210
22261
  :param pulumi.Input['MySqlMysqlUserConfigMigrationArgs'] migration: Migrate data from existing server
22211
22262
  :param pulumi.Input['MySqlMysqlUserConfigMysqlArgs'] mysql: mysql.conf configuration values
22263
+ :param pulumi.Input['MySqlMysqlUserConfigMysqlIncrementalBackupArgs'] mysql_incremental_backup: MySQL incremental backup configuration
22212
22264
  :param pulumi.Input[builtins.str] mysql_version: Enum: `8`, and newer. MySQL major version.
22213
22265
  :param pulumi.Input['MySqlMysqlUserConfigPrivateAccessArgs'] private_access: Allow access to selected service ports from private networks
22214
22266
  :param pulumi.Input['MySqlMysqlUserConfigPrivatelinkAccessArgs'] privatelink_access: Allow access to selected service components through Privatelink
@@ -22244,6 +22296,8 @@ class MySqlMysqlUserConfigArgs:
22244
22296
  pulumi.set(__self__, "migration", migration)
22245
22297
  if mysql is not None:
22246
22298
  pulumi.set(__self__, "mysql", mysql)
22299
+ if mysql_incremental_backup is not None:
22300
+ pulumi.set(__self__, "mysql_incremental_backup", mysql_incremental_backup)
22247
22301
  if mysql_version is not None:
22248
22302
  pulumi.set(__self__, "mysql_version", mysql_version)
22249
22303
  if private_access is not None:
@@ -22396,6 +22450,18 @@ class MySqlMysqlUserConfigArgs:
22396
22450
  def mysql(self, value: Optional[pulumi.Input['MySqlMysqlUserConfigMysqlArgs']]):
22397
22451
  pulumi.set(self, "mysql", value)
22398
22452
 
22453
+ @property
22454
+ @pulumi.getter(name="mysqlIncrementalBackup")
22455
+ def mysql_incremental_backup(self) -> Optional[pulumi.Input['MySqlMysqlUserConfigMysqlIncrementalBackupArgs']]:
22456
+ """
22457
+ MySQL incremental backup configuration
22458
+ """
22459
+ return pulumi.get(self, "mysql_incremental_backup")
22460
+
22461
+ @mysql_incremental_backup.setter
22462
+ def mysql_incremental_backup(self, value: Optional[pulumi.Input['MySqlMysqlUserConfigMysqlIncrementalBackupArgs']]):
22463
+ pulumi.set(self, "mysql_incremental_backup", value)
22464
+
22399
22465
  @property
22400
22466
  @pulumi.getter(name="mysqlVersion")
22401
22467
  def mysql_version(self) -> Optional[pulumi.Input[builtins.str]]:
@@ -23378,6 +23444,57 @@ class MySqlMysqlUserConfigMysqlArgs:
23378
23444
  pulumi.set(self, "wait_timeout", value)
23379
23445
 
23380
23446
 
23447
+ if not MYPY:
23448
+ class MySqlMysqlUserConfigMysqlIncrementalBackupArgsDict(TypedDict):
23449
+ enabled: pulumi.Input[builtins.bool]
23450
+ """
23451
+ 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.
23452
+ """
23453
+ full_backup_week_schedule: NotRequired[pulumi.Input[builtins.str]]
23454
+ """
23455
+ 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`.
23456
+ """
23457
+ elif False:
23458
+ MySqlMysqlUserConfigMysqlIncrementalBackupArgsDict: TypeAlias = Mapping[str, Any]
23459
+
23460
+ @pulumi.input_type
23461
+ class MySqlMysqlUserConfigMysqlIncrementalBackupArgs:
23462
+ def __init__(__self__, *,
23463
+ enabled: pulumi.Input[builtins.bool],
23464
+ full_backup_week_schedule: Optional[pulumi.Input[builtins.str]] = None):
23465
+ """
23466
+ :param pulumi.Input[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.
23467
+ :param pulumi.Input[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`.
23468
+ """
23469
+ pulumi.set(__self__, "enabled", enabled)
23470
+ if full_backup_week_schedule is not None:
23471
+ pulumi.set(__self__, "full_backup_week_schedule", full_backup_week_schedule)
23472
+
23473
+ @property
23474
+ @pulumi.getter
23475
+ def enabled(self) -> pulumi.Input[builtins.bool]:
23476
+ """
23477
+ 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.
23478
+ """
23479
+ return pulumi.get(self, "enabled")
23480
+
23481
+ @enabled.setter
23482
+ def enabled(self, value: pulumi.Input[builtins.bool]):
23483
+ pulumi.set(self, "enabled", value)
23484
+
23485
+ @property
23486
+ @pulumi.getter(name="fullBackupWeekSchedule")
23487
+ def full_backup_week_schedule(self) -> Optional[pulumi.Input[builtins.str]]:
23488
+ """
23489
+ 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`.
23490
+ """
23491
+ return pulumi.get(self, "full_backup_week_schedule")
23492
+
23493
+ @full_backup_week_schedule.setter
23494
+ def full_backup_week_schedule(self, value: Optional[pulumi.Input[builtins.str]]):
23495
+ pulumi.set(self, "full_backup_week_schedule", value)
23496
+
23497
+
23381
23498
  if not MYPY:
23382
23499
  class MySqlMysqlUserConfigPrivateAccessArgsDict(TypedDict):
23383
23500
  mysql: NotRequired[pulumi.Input[builtins.bool]]
@@ -28511,12 +28628,7 @@ if not MYPY:
28511
28628
  """
28512
28629
  enforced: NotRequired[pulumi.Input[builtins.bool]]
28513
28630
  """
28514
- Run shard indexing backpressure in shadow mode or enforced mode.
28515
- In shadow mode (value set as false), shard indexing backpressure tracks all granular-level metrics,
28516
- but it doesn’t actually reject any indexing requests.
28517
- In enforced mode (value set as true),
28518
- shard indexing backpressure rejects any requests to the cluster that might cause a dip in its performance.
28519
- Default is false.
28631
+ 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.
28520
28632
  """
28521
28633
  operating_factor: NotRequired[pulumi.Input['OpenSearchOpensearchUserConfigOpensearchShardIndexingPressureOperatingFactorArgsDict']]
28522
28634
  """
@@ -28538,12 +28650,7 @@ class OpenSearchOpensearchUserConfigOpensearchShardIndexingPressureArgs:
28538
28650
  primary_parameter: Optional[pulumi.Input['OpenSearchOpensearchUserConfigOpensearchShardIndexingPressurePrimaryParameterArgs']] = None):
28539
28651
  """
28540
28652
  :param pulumi.Input[builtins.bool] enabled: Enable or disable shard indexing backpressure. Default is false.
28541
- :param pulumi.Input[builtins.bool] enforced: Run shard indexing backpressure in shadow mode or enforced mode.
28542
- In shadow mode (value set as false), shard indexing backpressure tracks all granular-level metrics,
28543
- but it doesn’t actually reject any indexing requests.
28544
- In enforced mode (value set as true),
28545
- shard indexing backpressure rejects any requests to the cluster that might cause a dip in its performance.
28546
- Default is false.
28653
+ :param pulumi.Input[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.
28547
28654
  :param pulumi.Input['OpenSearchOpensearchUserConfigOpensearchShardIndexingPressureOperatingFactorArgs'] operating_factor: Operating factor
28548
28655
  :param pulumi.Input['OpenSearchOpensearchUserConfigOpensearchShardIndexingPressurePrimaryParameterArgs'] primary_parameter: Primary parameter
28549
28656
  """
@@ -28572,12 +28679,7 @@ class OpenSearchOpensearchUserConfigOpensearchShardIndexingPressureArgs:
28572
28679
  @pulumi.getter
28573
28680
  def enforced(self) -> Optional[pulumi.Input[builtins.bool]]:
28574
28681
  """
28575
- Run shard indexing backpressure in shadow mode or enforced mode.
28576
- In shadow mode (value set as false), shard indexing backpressure tracks all granular-level metrics,
28577
- but it doesn’t actually reject any indexing requests.
28578
- In enforced mode (value set as true),
28579
- shard indexing backpressure rejects any requests to the cluster that might cause a dip in its performance.
28580
- Default is false.
28682
+ 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.
28581
28683
  """
28582
28684
  return pulumi.get(self, "enforced")
28583
28685
 
@@ -28614,24 +28716,15 @@ if not MYPY:
28614
28716
  class OpenSearchOpensearchUserConfigOpensearchShardIndexingPressureOperatingFactorArgsDict(TypedDict):
28615
28717
  lower: NotRequired[pulumi.Input[builtins.float]]
28616
28718
  """
28617
- Specify the lower occupancy limit of the allocated quota of memory for the shard.
28618
- If the total memory usage of a shard is below this limit,
28619
- shard indexing backpressure decreases the current allocated memory for that shard.
28620
- Default is 0.75.
28719
+ 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.
28621
28720
  """
28622
28721
  optimal: NotRequired[pulumi.Input[builtins.float]]
28623
28722
  """
28624
- Specify the optimal occupancy of the allocated quota of memory for the shard.
28625
- If the total memory usage of a shard is at this level,
28626
- shard indexing backpressure doesn’t change the current allocated memory for that shard.
28627
- Default is 0.85.
28723
+ 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.
28628
28724
  """
28629
28725
  upper: NotRequired[pulumi.Input[builtins.float]]
28630
28726
  """
28631
- Specify the upper occupancy limit of the allocated quota of memory for the shard.
28632
- If the total memory usage of a shard is above this limit,
28633
- shard indexing backpressure increases the current allocated memory for that shard.
28634
- Default is 0.95.
28727
+ 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.
28635
28728
  """
28636
28729
  elif False:
28637
28730
  OpenSearchOpensearchUserConfigOpensearchShardIndexingPressureOperatingFactorArgsDict: TypeAlias = Mapping[str, Any]
@@ -28643,18 +28736,9 @@ class OpenSearchOpensearchUserConfigOpensearchShardIndexingPressureOperatingFact
28643
28736
  optimal: Optional[pulumi.Input[builtins.float]] = None,
28644
28737
  upper: Optional[pulumi.Input[builtins.float]] = None):
28645
28738
  """
28646
- :param pulumi.Input[builtins.float] lower: Specify the lower occupancy limit of the allocated quota of memory for the shard.
28647
- If the total memory usage of a shard is below this limit,
28648
- shard indexing backpressure decreases the current allocated memory for that shard.
28649
- Default is 0.75.
28650
- :param pulumi.Input[builtins.float] optimal: Specify the optimal occupancy of the allocated quota of memory for the shard.
28651
- If the total memory usage of a shard is at this level,
28652
- shard indexing backpressure doesn’t change the current allocated memory for that shard.
28653
- Default is 0.85.
28654
- :param pulumi.Input[builtins.float] upper: Specify the upper occupancy limit of the allocated quota of memory for the shard.
28655
- If the total memory usage of a shard is above this limit,
28656
- shard indexing backpressure increases the current allocated memory for that shard.
28657
- Default is 0.95.
28739
+ :param pulumi.Input[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.
28740
+ :param pulumi.Input[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.
28741
+ :param pulumi.Input[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.
28658
28742
  """
28659
28743
  if lower is not None:
28660
28744
  pulumi.set(__self__, "lower", lower)
@@ -28667,10 +28751,7 @@ class OpenSearchOpensearchUserConfigOpensearchShardIndexingPressureOperatingFact
28667
28751
  @pulumi.getter
28668
28752
  def lower(self) -> Optional[pulumi.Input[builtins.float]]:
28669
28753
  """
28670
- Specify the lower occupancy limit of the allocated quota of memory for the shard.
28671
- If the total memory usage of a shard is below this limit,
28672
- shard indexing backpressure decreases the current allocated memory for that shard.
28673
- Default is 0.75.
28754
+ 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.
28674
28755
  """
28675
28756
  return pulumi.get(self, "lower")
28676
28757
 
@@ -28682,10 +28763,7 @@ class OpenSearchOpensearchUserConfigOpensearchShardIndexingPressureOperatingFact
28682
28763
  @pulumi.getter
28683
28764
  def optimal(self) -> Optional[pulumi.Input[builtins.float]]:
28684
28765
  """
28685
- Specify the optimal occupancy of the allocated quota of memory for the shard.
28686
- If the total memory usage of a shard is at this level,
28687
- shard indexing backpressure doesn’t change the current allocated memory for that shard.
28688
- Default is 0.85.
28766
+ 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.
28689
28767
  """
28690
28768
  return pulumi.get(self, "optimal")
28691
28769
 
@@ -28697,10 +28775,7 @@ class OpenSearchOpensearchUserConfigOpensearchShardIndexingPressureOperatingFact
28697
28775
  @pulumi.getter
28698
28776
  def upper(self) -> Optional[pulumi.Input[builtins.float]]:
28699
28777
  """
28700
- Specify the upper occupancy limit of the allocated quota of memory for the shard.
28701
- If the total memory usage of a shard is above this limit,
28702
- shard indexing backpressure increases the current allocated memory for that shard.
28703
- Default is 0.95.
28778
+ 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.
28704
28779
  """
28705
28780
  return pulumi.get(self, "upper")
28706
28781
 
@@ -28749,9 +28824,7 @@ if not MYPY:
28749
28824
  class OpenSearchOpensearchUserConfigOpensearchShardIndexingPressurePrimaryParameterNodeArgsDict(TypedDict):
28750
28825
  soft_limit: NotRequired[pulumi.Input[builtins.float]]
28751
28826
  """
28752
- Define the percentage of the node-level memory
28753
- threshold that acts as a soft indicator for strain on a node.
28754
- Default is 0.7.
28827
+ Define the percentage of the node-level memory threshold that acts as a soft indicator for strain on a node. Default is 0.7.
28755
28828
  """
28756
28829
  elif False:
28757
28830
  OpenSearchOpensearchUserConfigOpensearchShardIndexingPressurePrimaryParameterNodeArgsDict: TypeAlias = Mapping[str, Any]
@@ -28761,9 +28834,7 @@ class OpenSearchOpensearchUserConfigOpensearchShardIndexingPressurePrimaryParame
28761
28834
  def __init__(__self__, *,
28762
28835
  soft_limit: Optional[pulumi.Input[builtins.float]] = None):
28763
28836
  """
28764
- :param pulumi.Input[builtins.float] soft_limit: Define the percentage of the node-level memory
28765
- threshold that acts as a soft indicator for strain on a node.
28766
- Default is 0.7.
28837
+ :param pulumi.Input[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.
28767
28838
  """
28768
28839
  if soft_limit is not None:
28769
28840
  pulumi.set(__self__, "soft_limit", soft_limit)
@@ -28772,9 +28843,7 @@ class OpenSearchOpensearchUserConfigOpensearchShardIndexingPressurePrimaryParame
28772
28843
  @pulumi.getter(name="softLimit")
28773
28844
  def soft_limit(self) -> Optional[pulumi.Input[builtins.float]]:
28774
28845
  """
28775
- Define the percentage of the node-level memory
28776
- threshold that acts as a soft indicator for strain on a node.
28777
- Default is 0.7.
28846
+ Define the percentage of the node-level memory threshold that acts as a soft indicator for strain on a node. Default is 0.7.
28778
28847
  """
28779
28848
  return pulumi.get(self, "soft_limit")
28780
28849
 
@@ -28787,9 +28856,7 @@ if not MYPY:
28787
28856
  class OpenSearchOpensearchUserConfigOpensearchShardIndexingPressurePrimaryParameterShardArgsDict(TypedDict):
28788
28857
  min_limit: NotRequired[pulumi.Input[builtins.float]]
28789
28858
  """
28790
- Specify the minimum assigned quota for a new shard in any role (coordinator, primary, or replica).
28791
- Shard indexing backpressure increases or decreases this allocated quota based on the inflow of traffic for the shard.
28792
- Default is 0.001.
28859
+ 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.
28793
28860
  """
28794
28861
  elif False:
28795
28862
  OpenSearchOpensearchUserConfigOpensearchShardIndexingPressurePrimaryParameterShardArgsDict: TypeAlias = Mapping[str, Any]
@@ -28799,9 +28866,7 @@ class OpenSearchOpensearchUserConfigOpensearchShardIndexingPressurePrimaryParame
28799
28866
  def __init__(__self__, *,
28800
28867
  min_limit: Optional[pulumi.Input[builtins.float]] = None):
28801
28868
  """
28802
- :param pulumi.Input[builtins.float] min_limit: Specify the minimum assigned quota for a new shard in any role (coordinator, primary, or replica).
28803
- Shard indexing backpressure increases or decreases this allocated quota based on the inflow of traffic for the shard.
28804
- Default is 0.001.
28869
+ :param pulumi.Input[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.
28805
28870
  """
28806
28871
  if min_limit is not None:
28807
28872
  pulumi.set(__self__, "min_limit", min_limit)
@@ -28810,9 +28875,7 @@ class OpenSearchOpensearchUserConfigOpensearchShardIndexingPressurePrimaryParame
28810
28875
  @pulumi.getter(name="minLimit")
28811
28876
  def min_limit(self) -> Optional[pulumi.Input[builtins.float]]:
28812
28877
  """
28813
- Specify the minimum assigned quota for a new shard in any role (coordinator, primary, or replica).
28814
- Shard indexing backpressure increases or decreases this allocated quota based on the inflow of traffic for the shard.
28815
- Default is 0.001.
28878
+ 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.
28816
28879
  """
28817
28880
  return pulumi.get(self, "min_limit")
28818
28881
 
@@ -29890,7 +29953,7 @@ if not MYPY:
29890
29953
  class OrganizationPermissionPermissionArgsDict(TypedDict):
29891
29954
  permissions: pulumi.Input[Sequence[pulumi.Input[builtins.str]]]
29892
29955
  """
29893
- 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`.
29956
+ 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`.
29894
29957
  """
29895
29958
  principal_id: pulumi.Input[builtins.str]
29896
29959
  """
@@ -29920,7 +29983,7 @@ class OrganizationPermissionPermissionArgs:
29920
29983
  create_time: Optional[pulumi.Input[builtins.str]] = None,
29921
29984
  update_time: Optional[pulumi.Input[builtins.str]] = None):
29922
29985
  """
29923
- :param pulumi.Input[Sequence[pulumi.Input[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`.
29986
+ :param pulumi.Input[Sequence[pulumi.Input[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`.
29924
29987
  :param pulumi.Input[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.
29925
29988
  :param pulumi.Input[builtins.str] principal_type: The type of principal. The possible values are `user` and `user_group`.
29926
29989
  :param pulumi.Input[builtins.str] create_time: Time created.
@@ -29938,7 +30001,7 @@ class OrganizationPermissionPermissionArgs:
29938
30001
  @pulumi.getter
29939
30002
  def permissions(self) -> pulumi.Input[Sequence[pulumi.Input[builtins.str]]]:
29940
30003
  """
29941
- 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`.
30004
+ 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`.
29942
30005
  """
29943
30006
  return pulumi.get(self, "permissions")
29944
30007
 
@@ -31932,6 +31995,10 @@ if not MYPY:
31932
31995
  """
31933
31996
  Log statements for each temporary file created larger than this number of kilobytes, -1 disables.
31934
31997
  """
31998
+ max_connections: NotRequired[pulumi.Input[builtins.int]]
31999
+ """
32000
+ PostgreSQL maximum number of concurrent connections to the database server. Changing this parameter causes a service restart.
32001
+ """
31935
32002
  max_files_per_process: NotRequired[pulumi.Input[builtins.int]]
31936
32003
  """
31937
32004
  PostgreSQL maximum number of files that can be open per process. The default is `1000` (upstream default). Changing this parameter causes a service restart.
@@ -31980,6 +32047,10 @@ if not MYPY:
31980
32047
  """
31981
32048
  Max standby streaming delay in milliseconds. The default is `30000` (upstream default).
31982
32049
  """
32050
+ max_sync_workers_per_subscription: NotRequired[pulumi.Input[builtins.int]]
32051
+ """
32052
+ Maximum number of synchronization workers per subscription. The default is `2`.
32053
+ """
31983
32054
  max_wal_senders: NotRequired[pulumi.Input[builtins.int]]
31984
32055
  """
31985
32056
  PostgreSQL maximum WAL senders. The default is `20`. Changing this parameter causes a service restart.
@@ -32072,6 +32143,7 @@ class PgPgUserConfigPgArgs:
32072
32143
  log_line_prefix: Optional[pulumi.Input[builtins.str]] = None,
32073
32144
  log_min_duration_statement: Optional[pulumi.Input[builtins.int]] = None,
32074
32145
  log_temp_files: Optional[pulumi.Input[builtins.int]] = None,
32146
+ max_connections: Optional[pulumi.Input[builtins.int]] = None,
32075
32147
  max_files_per_process: Optional[pulumi.Input[builtins.int]] = None,
32076
32148
  max_locks_per_transaction: Optional[pulumi.Input[builtins.int]] = None,
32077
32149
  max_logical_replication_workers: Optional[pulumi.Input[builtins.int]] = None,
@@ -32084,6 +32156,7 @@ class PgPgUserConfigPgArgs:
32084
32156
  max_stack_depth: Optional[pulumi.Input[builtins.int]] = None,
32085
32157
  max_standby_archive_delay: Optional[pulumi.Input[builtins.int]] = None,
32086
32158
  max_standby_streaming_delay: Optional[pulumi.Input[builtins.int]] = None,
32159
+ max_sync_workers_per_subscription: Optional[pulumi.Input[builtins.int]] = None,
32087
32160
  max_wal_senders: Optional[pulumi.Input[builtins.int]] = None,
32088
32161
  max_worker_processes: Optional[pulumi.Input[builtins.int]] = None,
32089
32162
  password_encryption: Optional[pulumi.Input[builtins.str]] = None,
@@ -32123,6 +32196,7 @@ class PgPgUserConfigPgArgs:
32123
32196
  :param pulumi.Input[builtins.str] log_line_prefix: Enum: `'%m [%p] %q[user=%u,db=%d,app=%a] '`, `'%t [%p]: [%l-1] user=%u,db=%d,app=%a,client=%h '`, `'pid=%p,user=%u,db=%d,app=%a,client=%h '`, `'pid=%p,user=%u,db=%d,app=%a,client=%h,txid=%x,qid=%Q '`. Choose from one of the available log formats.
32124
32197
  :param pulumi.Input[builtins.int] log_min_duration_statement: Log statements that take more than this number of milliseconds to run, -1 disables.
32125
32198
  :param pulumi.Input[builtins.int] log_temp_files: Log statements for each temporary file created larger than this number of kilobytes, -1 disables.
32199
+ :param pulumi.Input[builtins.int] max_connections: PostgreSQL maximum number of concurrent connections to the database server. Changing this parameter causes a service restart.
32126
32200
  :param pulumi.Input[builtins.int] max_files_per_process: PostgreSQL maximum number of files that can be open per process. The default is `1000` (upstream default). Changing this parameter causes a service restart.
32127
32201
  :param pulumi.Input[builtins.int] max_locks_per_transaction: PostgreSQL maximum locks per transaction. Changing this parameter causes a service restart.
32128
32202
  :param pulumi.Input[builtins.int] max_logical_replication_workers: PostgreSQL maximum logical replication workers (taken from the pool of max*parallel*workers). The default is `4` (upstream default). Changing this parameter causes a service restart.
@@ -32135,6 +32209,7 @@ class PgPgUserConfigPgArgs:
32135
32209
  :param pulumi.Input[builtins.int] max_stack_depth: Maximum depth of the stack in bytes. The default is `2097152` (upstream default).
32136
32210
  :param pulumi.Input[builtins.int] max_standby_archive_delay: Max standby archive delay in milliseconds. The default is `30000` (upstream default).
32137
32211
  :param pulumi.Input[builtins.int] max_standby_streaming_delay: Max standby streaming delay in milliseconds. The default is `30000` (upstream default).
32212
+ :param pulumi.Input[builtins.int] max_sync_workers_per_subscription: Maximum number of synchronization workers per subscription. The default is `2`.
32138
32213
  :param pulumi.Input[builtins.int] max_wal_senders: PostgreSQL maximum WAL senders. The default is `20`. Changing this parameter causes a service restart.
32139
32214
  :param pulumi.Input[builtins.int] max_worker_processes: Sets the maximum number of background processes that the system can support. The default is `8`. Changing this parameter causes a service restart.
32140
32215
  :param pulumi.Input[builtins.str] password_encryption: Enum: `md5`, `scram-sha-256`. Chooses the algorithm for encrypting passwords. Default: `md5`.
@@ -32196,6 +32271,8 @@ class PgPgUserConfigPgArgs:
32196
32271
  pulumi.set(__self__, "log_min_duration_statement", log_min_duration_statement)
32197
32272
  if log_temp_files is not None:
32198
32273
  pulumi.set(__self__, "log_temp_files", log_temp_files)
32274
+ if max_connections is not None:
32275
+ pulumi.set(__self__, "max_connections", max_connections)
32199
32276
  if max_files_per_process is not None:
32200
32277
  pulumi.set(__self__, "max_files_per_process", max_files_per_process)
32201
32278
  if max_locks_per_transaction is not None:
@@ -32220,6 +32297,8 @@ class PgPgUserConfigPgArgs:
32220
32297
  pulumi.set(__self__, "max_standby_archive_delay", max_standby_archive_delay)
32221
32298
  if max_standby_streaming_delay is not None:
32222
32299
  pulumi.set(__self__, "max_standby_streaming_delay", max_standby_streaming_delay)
32300
+ if max_sync_workers_per_subscription is not None:
32301
+ pulumi.set(__self__, "max_sync_workers_per_subscription", max_sync_workers_per_subscription)
32223
32302
  if max_wal_senders is not None:
32224
32303
  pulumi.set(__self__, "max_wal_senders", max_wal_senders)
32225
32304
  if max_worker_processes is not None:
@@ -32517,6 +32596,18 @@ class PgPgUserConfigPgArgs:
32517
32596
  def log_temp_files(self, value: Optional[pulumi.Input[builtins.int]]):
32518
32597
  pulumi.set(self, "log_temp_files", value)
32519
32598
 
32599
+ @property
32600
+ @pulumi.getter(name="maxConnections")
32601
+ def max_connections(self) -> Optional[pulumi.Input[builtins.int]]:
32602
+ """
32603
+ PostgreSQL maximum number of concurrent connections to the database server. Changing this parameter causes a service restart.
32604
+ """
32605
+ return pulumi.get(self, "max_connections")
32606
+
32607
+ @max_connections.setter
32608
+ def max_connections(self, value: Optional[pulumi.Input[builtins.int]]):
32609
+ pulumi.set(self, "max_connections", value)
32610
+
32520
32611
  @property
32521
32612
  @pulumi.getter(name="maxFilesPerProcess")
32522
32613
  def max_files_per_process(self) -> Optional[pulumi.Input[builtins.int]]:
@@ -32661,6 +32752,18 @@ class PgPgUserConfigPgArgs:
32661
32752
  def max_standby_streaming_delay(self, value: Optional[pulumi.Input[builtins.int]]):
32662
32753
  pulumi.set(self, "max_standby_streaming_delay", value)
32663
32754
 
32755
+ @property
32756
+ @pulumi.getter(name="maxSyncWorkersPerSubscription")
32757
+ def max_sync_workers_per_subscription(self) -> Optional[pulumi.Input[builtins.int]]:
32758
+ """
32759
+ Maximum number of synchronization workers per subscription. The default is `2`.
32760
+ """
32761
+ return pulumi.get(self, "max_sync_workers_per_subscription")
32762
+
32763
+ @max_sync_workers_per_subscription.setter
32764
+ def max_sync_workers_per_subscription(self, value: Optional[pulumi.Input[builtins.int]]):
32765
+ pulumi.set(self, "max_sync_workers_per_subscription", value)
32766
+
32664
32767
  @property
32665
32768
  @pulumi.getter(name="maxWalSenders")
32666
32769
  def max_wal_senders(self) -> Optional[pulumi.Input[builtins.int]]:
@@ -32994,7 +33097,7 @@ if not MYPY:
32994
33097
  """
32995
33098
  log_catalog: NotRequired[pulumi.Input[builtins.bool]]
32996
33099
  """
32997
- Specifies that session logging should be enabled in the casewhere all relations in a statement are in pg_catalog. Default: `true`.
33100
+ Specifies that session logging should be enabled in the case where all relationsin a statement are in pg_catalog. Default: `true`.
32998
33101
  """
32999
33102
  log_client: NotRequired[pulumi.Input[builtins.bool]]
33000
33103
  """
@@ -33006,11 +33109,11 @@ if not MYPY:
33006
33109
  """
33007
33110
  log_max_string_length: NotRequired[pulumi.Input[builtins.int]]
33008
33111
  """
33009
- Crop parameters representation and whole statements if they exceed this threshold. A (default) value of -1 disable the truncation. Default: `-1`.
33112
+ Crop parameters representation and whole statements if they exceed this threshold.A (default) value of -1 disable the truncation. Default: `-1`.
33010
33113
  """
33011
33114
  log_nested_statements: NotRequired[pulumi.Input[builtins.bool]]
33012
33115
  """
33013
- This GUC allows to turn off logging nested statements, that is, statements that are executed as part of another ExecutorRun. Default: `true`.
33116
+ This GUC allows to turn off logging nested statements, that is, statements that areexecuted as part of another ExecutorRun. Default: `true`.
33014
33117
  """
33015
33118
  log_parameter: NotRequired[pulumi.Input[builtins.bool]]
33016
33119
  """
@@ -33018,15 +33121,15 @@ if not MYPY:
33018
33121
  """
33019
33122
  log_parameter_max_size: NotRequired[pulumi.Input[builtins.int]]
33020
33123
  """
33021
- Specifies that parameter values longer than this setting (in bytes) should not be logged, but replaced with \\n\\n. Default: `0`.
33124
+ Specifies that parameter values longer than this setting (in bytes) should not be logged,but replaced with \\n\\n. Default: `0`.
33022
33125
  """
33023
33126
  log_relation: NotRequired[pulumi.Input[builtins.bool]]
33024
33127
  """
33025
- 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`.
33128
+ 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`.
33026
33129
  """
33027
33130
  log_rows: NotRequired[pulumi.Input[builtins.bool]]
33028
33131
  """
33029
- 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`.
33132
+ Log Rows. Default: `false`.
33030
33133
  """
33031
33134
  log_statement: NotRequired[pulumi.Input[builtins.bool]]
33032
33135
  """
@@ -33034,7 +33137,7 @@ if not MYPY:
33034
33137
  """
33035
33138
  log_statement_once: NotRequired[pulumi.Input[builtins.bool]]
33036
33139
  """
33037
- 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`.
33140
+ 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`.
33038
33141
  """
33039
33142
  logs: NotRequired[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]
33040
33143
  """
@@ -33066,17 +33169,17 @@ class PgPgUserConfigPgauditArgs:
33066
33169
  role: Optional[pulumi.Input[builtins.str]] = None):
33067
33170
  """
33068
33171
  :param pulumi.Input[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`.
33069
- :param pulumi.Input[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`.
33172
+ :param pulumi.Input[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`.
33070
33173
  :param pulumi.Input[builtins.bool] log_client: Specifies whether log messages will be visible to a client process such as psql. Default: `false`.
33071
33174
  :param pulumi.Input[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`.
33072
- :param pulumi.Input[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`.
33073
- :param pulumi.Input[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`.
33175
+ :param pulumi.Input[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`.
33176
+ :param pulumi.Input[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`.
33074
33177
  :param pulumi.Input[builtins.bool] log_parameter: Specifies that audit logging should include the parameters that were passed with the statement. Default: `false`.
33075
- :param pulumi.Input[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`.
33076
- :param pulumi.Input[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`.
33077
- :param pulumi.Input[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`.
33178
+ :param pulumi.Input[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`.
33179
+ :param pulumi.Input[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`.
33180
+ :param pulumi.Input[builtins.bool] log_rows: Log Rows. Default: `false`.
33078
33181
  :param pulumi.Input[builtins.bool] log_statement: Specifies whether logging will include the statement text and parameters (if enabled). Default: `true`.
33079
- :param pulumi.Input[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`.
33182
+ :param pulumi.Input[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`.
33080
33183
  :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] logs: Specifies which classes of statements will be logged by session audit logging.
33081
33184
  :param pulumi.Input[builtins.str] role: Specifies the master role to use for object audit logging.
33082
33185
  """
@@ -33125,7 +33228,7 @@ class PgPgUserConfigPgauditArgs:
33125
33228
  @pulumi.getter(name="logCatalog")
33126
33229
  def log_catalog(self) -> Optional[pulumi.Input[builtins.bool]]:
33127
33230
  """
33128
- Specifies that session logging should be enabled in the casewhere all relations in a statement are in pg_catalog. Default: `true`.
33231
+ Specifies that session logging should be enabled in the case where all relationsin a statement are in pg_catalog. Default: `true`.
33129
33232
  """
33130
33233
  return pulumi.get(self, "log_catalog")
33131
33234
 
@@ -33161,7 +33264,7 @@ class PgPgUserConfigPgauditArgs:
33161
33264
  @pulumi.getter(name="logMaxStringLength")
33162
33265
  def log_max_string_length(self) -> Optional[pulumi.Input[builtins.int]]:
33163
33266
  """
33164
- Crop parameters representation and whole statements if they exceed this threshold. A (default) value of -1 disable the truncation. Default: `-1`.
33267
+ Crop parameters representation and whole statements if they exceed this threshold.A (default) value of -1 disable the truncation. Default: `-1`.
33165
33268
  """
33166
33269
  return pulumi.get(self, "log_max_string_length")
33167
33270
 
@@ -33173,7 +33276,7 @@ class PgPgUserConfigPgauditArgs:
33173
33276
  @pulumi.getter(name="logNestedStatements")
33174
33277
  def log_nested_statements(self) -> Optional[pulumi.Input[builtins.bool]]:
33175
33278
  """
33176
- This GUC allows to turn off logging nested statements, that is, statements that are executed as part of another ExecutorRun. Default: `true`.
33279
+ This GUC allows to turn off logging nested statements, that is, statements that areexecuted as part of another ExecutorRun. Default: `true`.
33177
33280
  """
33178
33281
  return pulumi.get(self, "log_nested_statements")
33179
33282
 
@@ -33197,7 +33300,7 @@ class PgPgUserConfigPgauditArgs:
33197
33300
  @pulumi.getter(name="logParameterMaxSize")
33198
33301
  def log_parameter_max_size(self) -> Optional[pulumi.Input[builtins.int]]:
33199
33302
  """
33200
- Specifies that parameter values longer than this setting (in bytes) should not be logged, but replaced with \\n\\n. Default: `0`.
33303
+ Specifies that parameter values longer than this setting (in bytes) should not be logged,but replaced with \\n\\n. Default: `0`.
33201
33304
  """
33202
33305
  return pulumi.get(self, "log_parameter_max_size")
33203
33306
 
@@ -33209,7 +33312,7 @@ class PgPgUserConfigPgauditArgs:
33209
33312
  @pulumi.getter(name="logRelation")
33210
33313
  def log_relation(self) -> Optional[pulumi.Input[builtins.bool]]:
33211
33314
  """
33212
- 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`.
33315
+ 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`.
33213
33316
  """
33214
33317
  return pulumi.get(self, "log_relation")
33215
33318
 
@@ -33221,7 +33324,7 @@ class PgPgUserConfigPgauditArgs:
33221
33324
  @pulumi.getter(name="logRows")
33222
33325
  def log_rows(self) -> Optional[pulumi.Input[builtins.bool]]:
33223
33326
  """
33224
- 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`.
33327
+ Log Rows. Default: `false`.
33225
33328
  """
33226
33329
  return pulumi.get(self, "log_rows")
33227
33330
 
@@ -33245,7 +33348,7 @@ class PgPgUserConfigPgauditArgs:
33245
33348
  @pulumi.getter(name="logStatementOnce")
33246
33349
  def log_statement_once(self) -> Optional[pulumi.Input[builtins.bool]]:
33247
33350
  """
33248
- 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`.
33351
+ 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`.
33249
33352
  """
33250
33353
  return pulumi.get(self, "log_statement_once")
33251
33354
 
@@ -35319,6 +35422,69 @@ class RedisTechEmailArgs:
35319
35422
  pulumi.set(self, "email", value)
35320
35423
 
35321
35424
 
35425
+ if not MYPY:
35426
+ class ServiceIntegrationClickhouseCredentialsUserConfigArgsDict(TypedDict):
35427
+ grants: NotRequired[pulumi.Input[Sequence[pulumi.Input['ServiceIntegrationClickhouseCredentialsUserConfigGrantArgsDict']]]]
35428
+ """
35429
+ Grants to assign
35430
+ """
35431
+ elif False:
35432
+ ServiceIntegrationClickhouseCredentialsUserConfigArgsDict: TypeAlias = Mapping[str, Any]
35433
+
35434
+ @pulumi.input_type
35435
+ class ServiceIntegrationClickhouseCredentialsUserConfigArgs:
35436
+ def __init__(__self__, *,
35437
+ grants: Optional[pulumi.Input[Sequence[pulumi.Input['ServiceIntegrationClickhouseCredentialsUserConfigGrantArgs']]]] = None):
35438
+ """
35439
+ :param pulumi.Input[Sequence[pulumi.Input['ServiceIntegrationClickhouseCredentialsUserConfigGrantArgs']]] grants: Grants to assign
35440
+ """
35441
+ if grants is not None:
35442
+ pulumi.set(__self__, "grants", grants)
35443
+
35444
+ @property
35445
+ @pulumi.getter
35446
+ def grants(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ServiceIntegrationClickhouseCredentialsUserConfigGrantArgs']]]]:
35447
+ """
35448
+ Grants to assign
35449
+ """
35450
+ return pulumi.get(self, "grants")
35451
+
35452
+ @grants.setter
35453
+ def grants(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['ServiceIntegrationClickhouseCredentialsUserConfigGrantArgs']]]]):
35454
+ pulumi.set(self, "grants", value)
35455
+
35456
+
35457
+ if not MYPY:
35458
+ class ServiceIntegrationClickhouseCredentialsUserConfigGrantArgsDict(TypedDict):
35459
+ user: pulumi.Input[builtins.str]
35460
+ """
35461
+ User or role to assign the grant to. Example: `alice`.
35462
+ """
35463
+ elif False:
35464
+ ServiceIntegrationClickhouseCredentialsUserConfigGrantArgsDict: TypeAlias = Mapping[str, Any]
35465
+
35466
+ @pulumi.input_type
35467
+ class ServiceIntegrationClickhouseCredentialsUserConfigGrantArgs:
35468
+ def __init__(__self__, *,
35469
+ user: pulumi.Input[builtins.str]):
35470
+ """
35471
+ :param pulumi.Input[builtins.str] user: User or role to assign the grant to. Example: `alice`.
35472
+ """
35473
+ pulumi.set(__self__, "user", user)
35474
+
35475
+ @property
35476
+ @pulumi.getter
35477
+ def user(self) -> pulumi.Input[builtins.str]:
35478
+ """
35479
+ User or role to assign the grant to. Example: `alice`.
35480
+ """
35481
+ return pulumi.get(self, "user")
35482
+
35483
+ @user.setter
35484
+ def user(self, value: pulumi.Input[builtins.str]):
35485
+ pulumi.set(self, "user", value)
35486
+
35487
+
35322
35488
  if not MYPY:
35323
35489
  class ServiceIntegrationClickhouseKafkaUserConfigArgsDict(TypedDict):
35324
35490
  tables: NotRequired[pulumi.Input[Sequence[pulumi.Input['ServiceIntegrationClickhouseKafkaUserConfigTableArgsDict']]]]