pulumi-aiven 6.40.0a1750223346__py3-none-any.whl → 6.41.0a1752729091__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.

Files changed (47) hide show
  1. pulumi_aiven/_inputs.py +322 -28
  2. pulumi_aiven/alloydbomni.py +8 -8
  3. pulumi_aiven/cassandra.py +8 -8
  4. pulumi_aiven/clickhouse.py +8 -8
  5. pulumi_aiven/clickhouse_database.py +0 -10
  6. pulumi_aiven/clickhouse_grant.py +0 -16
  7. pulumi_aiven/dragonfly.py +8 -8
  8. pulumi_aiven/flink.py +8 -8
  9. pulumi_aiven/get_alloydbomni.py +1 -1
  10. pulumi_aiven/get_cassanda.py +1 -1
  11. pulumi_aiven/get_cassandra.py +1 -1
  12. pulumi_aiven/get_clickhouse.py +1 -1
  13. pulumi_aiven/get_dragonfly.py +1 -1
  14. pulumi_aiven/get_flink.py +1 -1
  15. pulumi_aiven/get_grafana.py +1 -1
  16. pulumi_aiven/get_kafka.py +1 -1
  17. pulumi_aiven/get_kafka_connect.py +1 -1
  18. pulumi_aiven/get_kafka_mirror_maker.py +1 -1
  19. pulumi_aiven/get_m3_aggregator.py +1 -1
  20. pulumi_aiven/get_m3_db.py +1 -1
  21. pulumi_aiven/get_my_sql.py +1 -1
  22. pulumi_aiven/get_open_search.py +1 -1
  23. pulumi_aiven/get_organization_billing_group.py +15 -15
  24. pulumi_aiven/get_pg.py +1 -1
  25. pulumi_aiven/get_redis.py +1 -1
  26. pulumi_aiven/get_thanos.py +1 -1
  27. pulumi_aiven/get_valkey.py +1 -1
  28. pulumi_aiven/grafana.py +8 -8
  29. pulumi_aiven/influx_db.py +36 -29
  30. pulumi_aiven/kafka.py +8 -8
  31. pulumi_aiven/kafka_connect.py +8 -8
  32. pulumi_aiven/kafka_mirror_maker.py +8 -8
  33. pulumi_aiven/m3_aggregator.py +8 -8
  34. pulumi_aiven/m3_db.py +8 -8
  35. pulumi_aiven/my_sql.py +8 -8
  36. pulumi_aiven/open_search.py +8 -8
  37. pulumi_aiven/organization_billing_group.py +41 -41
  38. pulumi_aiven/outputs.py +433 -23
  39. pulumi_aiven/pg.py +8 -8
  40. pulumi_aiven/pulumi-plugin.json +1 -1
  41. pulumi_aiven/redis.py +8 -8
  42. pulumi_aiven/thanos.py +8 -8
  43. pulumi_aiven/valkey.py +8 -8
  44. {pulumi_aiven-6.40.0a1750223346.dist-info → pulumi_aiven-6.41.0a1752729091.dist-info}/METADATA +1 -1
  45. {pulumi_aiven-6.40.0a1750223346.dist-info → pulumi_aiven-6.41.0a1752729091.dist-info}/RECORD +47 -47
  46. {pulumi_aiven-6.40.0a1750223346.dist-info → pulumi_aiven-6.41.0a1752729091.dist-info}/WHEEL +0 -0
  47. {pulumi_aiven-6.40.0a1750223346.dist-info → pulumi_aiven-6.41.0a1752729091.dist-info}/top_level.txt +0 -0
pulumi_aiven/_inputs.py CHANGED
@@ -410,6 +410,8 @@ __all__ = [
410
410
  'OpenSearchOpensearchUserConfigOpensearchAuthFailureListenersInternalAuthenticationBackendLimitingArgsDict',
411
411
  'OpenSearchOpensearchUserConfigOpensearchAuthFailureListenersIpRateLimitingArgs',
412
412
  'OpenSearchOpensearchUserConfigOpensearchAuthFailureListenersIpRateLimitingArgsDict',
413
+ 'OpenSearchOpensearchUserConfigOpensearchClusterRemoteStoreArgs',
414
+ 'OpenSearchOpensearchUserConfigOpensearchClusterRemoteStoreArgsDict',
413
415
  'OpenSearchOpensearchUserConfigOpensearchClusterSearchRequestSlowlogArgs',
414
416
  'OpenSearchOpensearchUserConfigOpensearchClusterSearchRequestSlowlogArgsDict',
415
417
  'OpenSearchOpensearchUserConfigOpensearchClusterSearchRequestSlowlogThresholdArgs',
@@ -418,6 +420,8 @@ __all__ = [
418
420
  'OpenSearchOpensearchUserConfigOpensearchDashboardsArgsDict',
419
421
  'OpenSearchOpensearchUserConfigOpensearchDiskWatermarksArgs',
420
422
  'OpenSearchOpensearchUserConfigOpensearchDiskWatermarksArgsDict',
423
+ 'OpenSearchOpensearchUserConfigOpensearchRemoteStoreArgs',
424
+ 'OpenSearchOpensearchUserConfigOpensearchRemoteStoreArgsDict',
421
425
  'OpenSearchOpensearchUserConfigOpensearchSearchBackpressureArgs',
422
426
  'OpenSearchOpensearchUserConfigOpensearchSearchBackpressureArgsDict',
423
427
  'OpenSearchOpensearchUserConfigOpensearchSearchBackpressureNodeDuressArgs',
@@ -4942,6 +4946,10 @@ if not MYPY:
4942
4946
  """
4943
4947
  The minute of an hour when backup for the service is started. New backup is only started if previous backup has already completed. Example: `30`.
4944
4948
  """
4949
+ enable_ipv6: NotRequired[pulumi.Input[builtins.bool]]
4950
+ """
4951
+ Register AAAA DNS records for the service, and allow IPv6 packets to service ports.
4952
+ """
4945
4953
  ip_filter_objects: NotRequired[pulumi.Input[Sequence[pulumi.Input['ClickhouseClickhouseUserConfigIpFilterObjectArgsDict']]]]
4946
4954
  """
4947
4955
  Allow incoming connections from CIDR address block, e.g. `10.20.0.0/16`
@@ -4995,6 +5003,7 @@ class ClickhouseClickhouseUserConfigArgs:
4995
5003
  additional_backup_regions: Optional[pulumi.Input[builtins.str]] = None,
4996
5004
  backup_hour: Optional[pulumi.Input[builtins.int]] = None,
4997
5005
  backup_minute: Optional[pulumi.Input[builtins.int]] = None,
5006
+ enable_ipv6: Optional[pulumi.Input[builtins.bool]] = None,
4998
5007
  ip_filter_objects: Optional[pulumi.Input[Sequence[pulumi.Input['ClickhouseClickhouseUserConfigIpFilterObjectArgs']]]] = None,
4999
5008
  ip_filter_strings: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
5000
5009
  ip_filters: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
@@ -5010,6 +5019,7 @@ class ClickhouseClickhouseUserConfigArgs:
5010
5019
  :param pulumi.Input[builtins.str] additional_backup_regions: Additional Cloud Regions for Backup Replication.
5011
5020
  :param pulumi.Input[builtins.int] backup_hour: The hour of day (in UTC) when backup for the service is started. New backup is only started if previous backup has already completed. Example: `3`.
5012
5021
  :param pulumi.Input[builtins.int] backup_minute: The minute of an hour when backup for the service is started. New backup is only started if previous backup has already completed. Example: `30`.
5022
+ :param pulumi.Input[builtins.bool] enable_ipv6: Register AAAA DNS records for the service, and allow IPv6 packets to service ports.
5013
5023
  :param pulumi.Input[Sequence[pulumi.Input['ClickhouseClickhouseUserConfigIpFilterObjectArgs']]] ip_filter_objects: Allow incoming connections from CIDR address block, e.g. `10.20.0.0/16`
5014
5024
  :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] ip_filter_strings: Allow incoming connections from CIDR address block, e.g. `10.20.0.0/16`.
5015
5025
  :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] ip_filters: Allow incoming connections from CIDR address block, e.g. `10.20.0.0/16`.
@@ -5031,6 +5041,8 @@ class ClickhouseClickhouseUserConfigArgs:
5031
5041
  pulumi.set(__self__, "backup_hour", backup_hour)
5032
5042
  if backup_minute is not None:
5033
5043
  pulumi.set(__self__, "backup_minute", backup_minute)
5044
+ if enable_ipv6 is not None:
5045
+ pulumi.set(__self__, "enable_ipv6", enable_ipv6)
5034
5046
  if ip_filter_objects is not None:
5035
5047
  pulumi.set(__self__, "ip_filter_objects", ip_filter_objects)
5036
5048
  if ip_filter_strings is not None:
@@ -5094,6 +5106,18 @@ class ClickhouseClickhouseUserConfigArgs:
5094
5106
  def backup_minute(self, value: Optional[pulumi.Input[builtins.int]]):
5095
5107
  pulumi.set(self, "backup_minute", value)
5096
5108
 
5109
+ @property
5110
+ @pulumi.getter(name="enableIpv6")
5111
+ def enable_ipv6(self) -> Optional[pulumi.Input[builtins.bool]]:
5112
+ """
5113
+ Register AAAA DNS records for the service, and allow IPv6 packets to service ports.
5114
+ """
5115
+ return pulumi.get(self, "enable_ipv6")
5116
+
5117
+ @enable_ipv6.setter
5118
+ def enable_ipv6(self, value: Optional[pulumi.Input[builtins.bool]]):
5119
+ pulumi.set(self, "enable_ipv6", value)
5120
+
5097
5121
  @property
5098
5122
  @pulumi.getter(name="ipFilterObjects")
5099
5123
  def ip_filter_objects(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ClickhouseClickhouseUserConfigIpFilterObjectArgs']]]]:
@@ -9343,7 +9367,7 @@ if not MYPY:
9343
9367
  """
9344
9368
  oauth_allow_insecure_email_lookup: NotRequired[pulumi.Input[builtins.bool]]
9345
9369
  """
9346
- Enforce user lookup based on email instead of the unique ID provided by the IdP.
9370
+ Enforce user lookup based on email instead of the unique ID provided by the IdP. This setup introduces significant security risks, such as potential phishing, spoofing, and other data breaches.
9347
9371
  """
9348
9372
  private_access: NotRequired[pulumi.Input['GrafanaGrafanaUserConfigPrivateAccessArgsDict']]
9349
9373
  """
@@ -9481,7 +9505,7 @@ class GrafanaGrafanaUserConfigArgs:
9481
9505
  :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] ip_filter_strings: Allow incoming connections from CIDR address block, e.g. `10.20.0.0/16`.
9482
9506
  :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] ip_filters: Allow incoming connections from CIDR address block, e.g. `10.20.0.0/16`.
9483
9507
  :param pulumi.Input[builtins.bool] metrics_enabled: Enable Grafana's /metrics endpoint.
9484
- :param pulumi.Input[builtins.bool] oauth_allow_insecure_email_lookup: Enforce user lookup based on email instead of the unique ID provided by the IdP.
9508
+ :param pulumi.Input[builtins.bool] oauth_allow_insecure_email_lookup: Enforce user lookup based on email instead of the unique ID provided by the IdP. This setup introduces significant security risks, such as potential phishing, spoofing, and other data breaches.
9485
9509
  :param pulumi.Input['GrafanaGrafanaUserConfigPrivateAccessArgs'] private_access: Allow access to selected service ports from private networks
9486
9510
  :param pulumi.Input['GrafanaGrafanaUserConfigPrivatelinkAccessArgs'] privatelink_access: Allow access to selected service components through Privatelink
9487
9511
  :param pulumi.Input[builtins.str] project_to_fork_from: Name of another project to fork a service from. This has effect only when a new service is being created. Example: `anotherprojectname`.
@@ -9942,7 +9966,7 @@ class GrafanaGrafanaUserConfigArgs:
9942
9966
  @pulumi.getter(name="oauthAllowInsecureEmailLookup")
9943
9967
  def oauth_allow_insecure_email_lookup(self) -> Optional[pulumi.Input[builtins.bool]]:
9944
9968
  """
9945
- Enforce user lookup based on email instead of the unique ID provided by the IdP.
9969
+ Enforce user lookup based on email instead of the unique ID provided by the IdP. This setup introduces significant security risks, such as potential phishing, spoofing, and other data breaches.
9946
9970
  """
9947
9971
  return pulumi.get(self, "oauth_allow_insecure_email_lookup")
9948
9972
 
@@ -18691,6 +18715,10 @@ if not MYPY:
18691
18715
  """
18692
18716
  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.
18693
18717
  """
18718
+ inkless_enable: NotRequired[pulumi.Input[builtins.bool]]
18719
+ """
18720
+ Indicates whether inkless should be enabled. This is only available for BYOC services with Inkless feature enabled.
18721
+ """
18694
18722
  local_retention_bytes: NotRequired[pulumi.Input[builtins.str]]
18695
18723
  """
18696
18724
  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.
@@ -18784,6 +18812,7 @@ class KafkaTopicConfigArgs:
18784
18812
  flush_messages: Optional[pulumi.Input[builtins.str]] = None,
18785
18813
  flush_ms: Optional[pulumi.Input[builtins.str]] = None,
18786
18814
  index_interval_bytes: Optional[pulumi.Input[builtins.str]] = None,
18815
+ inkless_enable: Optional[pulumi.Input[builtins.bool]] = None,
18787
18816
  local_retention_bytes: Optional[pulumi.Input[builtins.str]] = None,
18788
18817
  local_retention_ms: Optional[pulumi.Input[builtins.str]] = None,
18789
18818
  max_compaction_lag_ms: Optional[pulumi.Input[builtins.str]] = None,
@@ -18812,6 +18841,7 @@ class KafkaTopicConfigArgs:
18812
18841
  :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.
18813
18842
  :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.
18814
18843
  :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.
18815
18845
  :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.
18816
18846
  :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.
18817
18847
  :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.
@@ -18847,6 +18877,8 @@ class KafkaTopicConfigArgs:
18847
18877
  pulumi.set(__self__, "flush_ms", flush_ms)
18848
18878
  if index_interval_bytes is not None:
18849
18879
  pulumi.set(__self__, "index_interval_bytes", index_interval_bytes)
18880
+ if inkless_enable is not None:
18881
+ pulumi.set(__self__, "inkless_enable", inkless_enable)
18850
18882
  if local_retention_bytes is not None:
18851
18883
  pulumi.set(__self__, "local_retention_bytes", local_retention_bytes)
18852
18884
  if local_retention_ms is not None:
@@ -18972,6 +19004,18 @@ class KafkaTopicConfigArgs:
18972
19004
  def index_interval_bytes(self, value: Optional[pulumi.Input[builtins.str]]):
18973
19005
  pulumi.set(self, "index_interval_bytes", value)
18974
19006
 
19007
+ @property
19008
+ @pulumi.getter(name="inklessEnable")
19009
+ def inkless_enable(self) -> Optional[pulumi.Input[builtins.bool]]:
19010
+ """
19011
+ Indicates whether inkless should be enabled. This is only available for BYOC services with Inkless feature enabled.
19012
+ """
19013
+ return pulumi.get(self, "inkless_enable")
19014
+
19015
+ @inkless_enable.setter
19016
+ def inkless_enable(self, value: Optional[pulumi.Input[builtins.bool]]):
19017
+ pulumi.set(self, "inkless_enable", value)
19018
+
18975
19019
  @property
18976
19020
  @pulumi.getter(name="localRetentionBytes")
18977
19021
  def local_retention_bytes(self) -> Optional[pulumi.Input[builtins.str]]:
@@ -25586,13 +25630,18 @@ if not MYPY:
25586
25630
  """
25587
25631
  Opensearch Security Plugin Settings
25588
25632
  """
25633
+ cluster_filecache_remote_data_ratio: NotRequired[pulumi.Input[builtins.float]]
25634
+ """
25635
+ Defines a limit of how much total remote data can be referenced as a ratio of the size of the disk reserved for the file cache. This is designed to be a safeguard to prevent oversubscribing a cluster. Defaults to 0.
25636
+ """
25589
25637
  cluster_max_shards_per_node: NotRequired[pulumi.Input[builtins.int]]
25590
25638
  """
25591
25639
  Controls the number of shards allowed in the cluster per data node. Example: `1000`.
25592
25640
  """
25641
+ cluster_remote_store: NotRequired[pulumi.Input['OpenSearchOpensearchUserConfigOpensearchClusterRemoteStoreArgsDict']]
25593
25642
  cluster_routing_allocation_balance_prefer_primary: NotRequired[pulumi.Input[builtins.bool]]
25594
25643
  """
25595
- When set to true, OpenSearch attempts to evenly distribute the primary shards between the cluster nodes. Enabling this setting does not always guarantee an equal number of primary shards on each node, especially in the event of a failover. Changing this setting to false after it was set to true does not invoke redistribution of primary shards. Default is false. Default: `false`.
25644
+ When set to true, OpenSearch attempts to evenly distribute the primary shards between the cluster nodes. Enabling this setting does not always guarantee an equal number of primary shards on each node, especially in the event of a failover. Changing this setting to false after it was set to true does not invoke redistribution of primary shards. Default is false.
25596
25645
  """
25597
25646
  cluster_routing_allocation_node_concurrent_recoveries: NotRequired[pulumi.Input[builtins.int]]
25598
25647
  """
@@ -25707,6 +25756,10 @@ if not MYPY:
25707
25756
  """
25708
25757
  Maximum amount of memory that can be used for KNN index. Defaults to 50% of the JVM heap size.
25709
25758
  """
25759
+ node_search_cache_size: NotRequired[pulumi.Input[builtins.str]]
25760
+ """
25761
+ Defines a limit of how much total remote data can be referenced as a ratio of the size of the disk reserved for the file cache. This is designed to be a safeguard to prevent oversubscribing a cluster. Defaults to 5gb. Requires restarting all OpenSearch nodes.
25762
+ """
25710
25763
  override_main_response_version: NotRequired[pulumi.Input[builtins.bool]]
25711
25764
  """
25712
25765
  Compatibility mode sets OpenSearch to report its version as 7.10 so clients continue to work. Default is false.
@@ -25719,6 +25772,7 @@ if not MYPY:
25719
25772
  """
25720
25773
  Whitelisted addresses for reindexing. Changing this value will cause all OpenSearch instances to restart.
25721
25774
  """
25775
+ remote_store: NotRequired[pulumi.Input['OpenSearchOpensearchUserConfigOpensearchRemoteStoreArgsDict']]
25722
25776
  script_max_compilations_rate: NotRequired[pulumi.Input[builtins.str]]
25723
25777
  """
25724
25778
  Script compilation circuit breaker limits the number of inline script compilations within a period of time. Default is use-context. Example: `75/5m`.
@@ -25793,7 +25847,9 @@ class OpenSearchOpensearchUserConfigOpensearchArgs:
25793
25847
  action_auto_create_index_enabled: Optional[pulumi.Input[builtins.bool]] = None,
25794
25848
  action_destructive_requires_name: Optional[pulumi.Input[builtins.bool]] = None,
25795
25849
  auth_failure_listeners: Optional[pulumi.Input['OpenSearchOpensearchUserConfigOpensearchAuthFailureListenersArgs']] = None,
25850
+ cluster_filecache_remote_data_ratio: Optional[pulumi.Input[builtins.float]] = None,
25796
25851
  cluster_max_shards_per_node: Optional[pulumi.Input[builtins.int]] = None,
25852
+ cluster_remote_store: Optional[pulumi.Input['OpenSearchOpensearchUserConfigOpensearchClusterRemoteStoreArgs']] = None,
25797
25853
  cluster_routing_allocation_balance_prefer_primary: Optional[pulumi.Input[builtins.bool]] = None,
25798
25854
  cluster_routing_allocation_node_concurrent_recoveries: Optional[pulumi.Input[builtins.int]] = None,
25799
25855
  cluster_search_request_slowlog: Optional[pulumi.Input['OpenSearchOpensearchUserConfigOpensearchClusterSearchRequestSlowlogArgs']] = None,
@@ -25824,9 +25880,11 @@ class OpenSearchOpensearchUserConfigOpensearchArgs:
25824
25880
  ism_history_rollover_retention_period: Optional[pulumi.Input[builtins.int]] = None,
25825
25881
  knn_memory_circuit_breaker_enabled: Optional[pulumi.Input[builtins.bool]] = None,
25826
25882
  knn_memory_circuit_breaker_limit: Optional[pulumi.Input[builtins.int]] = None,
25883
+ node_search_cache_size: Optional[pulumi.Input[builtins.str]] = None,
25827
25884
  override_main_response_version: Optional[pulumi.Input[builtins.bool]] = None,
25828
25885
  plugins_alerting_filter_by_backend_roles: Optional[pulumi.Input[builtins.bool]] = None,
25829
25886
  reindex_remote_whitelists: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
25887
+ remote_store: Optional[pulumi.Input['OpenSearchOpensearchUserConfigOpensearchRemoteStoreArgs']] = None,
25830
25888
  script_max_compilations_rate: Optional[pulumi.Input[builtins.str]] = None,
25831
25889
  search_backpressure: Optional[pulumi.Input['OpenSearchOpensearchUserConfigOpensearchSearchBackpressureArgs']] = None,
25832
25890
  search_insights_top_queries: Optional[pulumi.Input['OpenSearchOpensearchUserConfigOpensearchSearchInsightsTopQueriesArgs']] = None,
@@ -25848,8 +25906,9 @@ class OpenSearchOpensearchUserConfigOpensearchArgs:
25848
25906
  :param pulumi.Input[builtins.bool] action_auto_create_index_enabled: Explicitly allow or block automatic creation of indices. Defaults to true.
25849
25907
  :param pulumi.Input[builtins.bool] action_destructive_requires_name: Require explicit index names when deleting.
25850
25908
  :param pulumi.Input['OpenSearchOpensearchUserConfigOpensearchAuthFailureListenersArgs'] auth_failure_listeners: Opensearch Security Plugin Settings
25909
+ :param pulumi.Input[builtins.float] cluster_filecache_remote_data_ratio: Defines a limit of how much total remote data can be referenced as a ratio of the size of the disk reserved for the file cache. This is designed to be a safeguard to prevent oversubscribing a cluster. Defaults to 0.
25851
25910
  :param pulumi.Input[builtins.int] cluster_max_shards_per_node: Controls the number of shards allowed in the cluster per data node. Example: `1000`.
25852
- :param pulumi.Input[builtins.bool] cluster_routing_allocation_balance_prefer_primary: When set to true, OpenSearch attempts to evenly distribute the primary shards between the cluster nodes. Enabling this setting does not always guarantee an equal number of primary shards on each node, especially in the event of a failover. Changing this setting to false after it was set to true does not invoke redistribution of primary shards. Default is false. Default: `false`.
25911
+ :param pulumi.Input[builtins.bool] cluster_routing_allocation_balance_prefer_primary: When set to true, OpenSearch attempts to evenly distribute the primary shards between the cluster nodes. Enabling this setting does not always guarantee an equal number of primary shards on each node, especially in the event of a failover. Changing this setting to false after it was set to true does not invoke redistribution of primary shards. Default is false.
25853
25912
  :param pulumi.Input[builtins.int] cluster_routing_allocation_node_concurrent_recoveries: How many concurrent incoming/outgoing shard recoveries (normally replicas) are allowed to happen on a node. Defaults to node cpu count * 2.
25854
25913
  :param pulumi.Input['OpenSearchOpensearchUserConfigOpensearchDiskWatermarksArgs'] disk_watermarks: Watermark settings
25855
25914
  :param pulumi.Input[builtins.str] email_sender_name: Sender name placeholder to be used in Opensearch Dashboards and Opensearch keystore. Example: `alert-sender`.
@@ -25878,6 +25937,7 @@ class OpenSearchOpensearchUserConfigOpensearchArgs:
25878
25937
  :param pulumi.Input[builtins.int] ism_history_rollover_retention_period: How long audit history indices are kept in days. Example: `30`.
25879
25938
  :param pulumi.Input[builtins.bool] knn_memory_circuit_breaker_enabled: Enable or disable KNN memory circuit breaker. Defaults to true.
25880
25939
  :param pulumi.Input[builtins.int] knn_memory_circuit_breaker_limit: Maximum amount of memory that can be used for KNN index. Defaults to 50% of the JVM heap size.
25940
+ :param pulumi.Input[builtins.str] node_search_cache_size: Defines a limit of how much total remote data can be referenced as a ratio of the size of the disk reserved for the file cache. This is designed to be a safeguard to prevent oversubscribing a cluster. Defaults to 5gb. Requires restarting all OpenSearch nodes.
25881
25941
  :param pulumi.Input[builtins.bool] override_main_response_version: Compatibility mode sets OpenSearch to report its version as 7.10 so clients continue to work. Default is false.
25882
25942
  :param pulumi.Input[builtins.bool] plugins_alerting_filter_by_backend_roles: Enable or disable filtering of alerting by backend roles. Requires Security plugin. Defaults to false.
25883
25943
  :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] reindex_remote_whitelists: Whitelisted addresses for reindexing. Changing this value will cause all OpenSearch instances to restart.
@@ -25904,8 +25964,12 @@ class OpenSearchOpensearchUserConfigOpensearchArgs:
25904
25964
  pulumi.set(__self__, "action_destructive_requires_name", action_destructive_requires_name)
25905
25965
  if auth_failure_listeners is not None:
25906
25966
  pulumi.set(__self__, "auth_failure_listeners", auth_failure_listeners)
25967
+ if cluster_filecache_remote_data_ratio is not None:
25968
+ pulumi.set(__self__, "cluster_filecache_remote_data_ratio", cluster_filecache_remote_data_ratio)
25907
25969
  if cluster_max_shards_per_node is not None:
25908
25970
  pulumi.set(__self__, "cluster_max_shards_per_node", cluster_max_shards_per_node)
25971
+ if cluster_remote_store is not None:
25972
+ pulumi.set(__self__, "cluster_remote_store", cluster_remote_store)
25909
25973
  if cluster_routing_allocation_balance_prefer_primary is not None:
25910
25974
  pulumi.set(__self__, "cluster_routing_allocation_balance_prefer_primary", cluster_routing_allocation_balance_prefer_primary)
25911
25975
  if cluster_routing_allocation_node_concurrent_recoveries is not None:
@@ -25966,12 +26030,16 @@ class OpenSearchOpensearchUserConfigOpensearchArgs:
25966
26030
  pulumi.set(__self__, "knn_memory_circuit_breaker_enabled", knn_memory_circuit_breaker_enabled)
25967
26031
  if knn_memory_circuit_breaker_limit is not None:
25968
26032
  pulumi.set(__self__, "knn_memory_circuit_breaker_limit", knn_memory_circuit_breaker_limit)
26033
+ if node_search_cache_size is not None:
26034
+ pulumi.set(__self__, "node_search_cache_size", node_search_cache_size)
25969
26035
  if override_main_response_version is not None:
25970
26036
  pulumi.set(__self__, "override_main_response_version", override_main_response_version)
25971
26037
  if plugins_alerting_filter_by_backend_roles is not None:
25972
26038
  pulumi.set(__self__, "plugins_alerting_filter_by_backend_roles", plugins_alerting_filter_by_backend_roles)
25973
26039
  if reindex_remote_whitelists is not None:
25974
26040
  pulumi.set(__self__, "reindex_remote_whitelists", reindex_remote_whitelists)
26041
+ if remote_store is not None:
26042
+ pulumi.set(__self__, "remote_store", remote_store)
25975
26043
  if script_max_compilations_rate is not None:
25976
26044
  pulumi.set(__self__, "script_max_compilations_rate", script_max_compilations_rate)
25977
26045
  if search_backpressure is not None:
@@ -26043,6 +26111,18 @@ class OpenSearchOpensearchUserConfigOpensearchArgs:
26043
26111
  def auth_failure_listeners(self, value: Optional[pulumi.Input['OpenSearchOpensearchUserConfigOpensearchAuthFailureListenersArgs']]):
26044
26112
  pulumi.set(self, "auth_failure_listeners", value)
26045
26113
 
26114
+ @property
26115
+ @pulumi.getter(name="clusterFilecacheRemoteDataRatio")
26116
+ def cluster_filecache_remote_data_ratio(self) -> Optional[pulumi.Input[builtins.float]]:
26117
+ """
26118
+ Defines a limit of how much total remote data can be referenced as a ratio of the size of the disk reserved for the file cache. This is designed to be a safeguard to prevent oversubscribing a cluster. Defaults to 0.
26119
+ """
26120
+ return pulumi.get(self, "cluster_filecache_remote_data_ratio")
26121
+
26122
+ @cluster_filecache_remote_data_ratio.setter
26123
+ def cluster_filecache_remote_data_ratio(self, value: Optional[pulumi.Input[builtins.float]]):
26124
+ pulumi.set(self, "cluster_filecache_remote_data_ratio", value)
26125
+
26046
26126
  @property
26047
26127
  @pulumi.getter(name="clusterMaxShardsPerNode")
26048
26128
  def cluster_max_shards_per_node(self) -> Optional[pulumi.Input[builtins.int]]:
@@ -26055,11 +26135,20 @@ class OpenSearchOpensearchUserConfigOpensearchArgs:
26055
26135
  def cluster_max_shards_per_node(self, value: Optional[pulumi.Input[builtins.int]]):
26056
26136
  pulumi.set(self, "cluster_max_shards_per_node", value)
26057
26137
 
26138
+ @property
26139
+ @pulumi.getter(name="clusterRemoteStore")
26140
+ def cluster_remote_store(self) -> Optional[pulumi.Input['OpenSearchOpensearchUserConfigOpensearchClusterRemoteStoreArgs']]:
26141
+ return pulumi.get(self, "cluster_remote_store")
26142
+
26143
+ @cluster_remote_store.setter
26144
+ def cluster_remote_store(self, value: Optional[pulumi.Input['OpenSearchOpensearchUserConfigOpensearchClusterRemoteStoreArgs']]):
26145
+ pulumi.set(self, "cluster_remote_store", value)
26146
+
26058
26147
  @property
26059
26148
  @pulumi.getter(name="clusterRoutingAllocationBalancePreferPrimary")
26060
26149
  def cluster_routing_allocation_balance_prefer_primary(self) -> Optional[pulumi.Input[builtins.bool]]:
26061
26150
  """
26062
- When set to true, OpenSearch attempts to evenly distribute the primary shards between the cluster nodes. Enabling this setting does not always guarantee an equal number of primary shards on each node, especially in the event of a failover. Changing this setting to false after it was set to true does not invoke redistribution of primary shards. Default is false. Default: `false`.
26151
+ When set to true, OpenSearch attempts to evenly distribute the primary shards between the cluster nodes. Enabling this setting does not always guarantee an equal number of primary shards on each node, especially in the event of a failover. Changing this setting to false after it was set to true does not invoke redistribution of primary shards. Default is false.
26063
26152
  """
26064
26153
  return pulumi.get(self, "cluster_routing_allocation_balance_prefer_primary")
26065
26154
 
@@ -26412,6 +26501,18 @@ class OpenSearchOpensearchUserConfigOpensearchArgs:
26412
26501
  def knn_memory_circuit_breaker_limit(self, value: Optional[pulumi.Input[builtins.int]]):
26413
26502
  pulumi.set(self, "knn_memory_circuit_breaker_limit", value)
26414
26503
 
26504
+ @property
26505
+ @pulumi.getter(name="nodeSearchCacheSize")
26506
+ def node_search_cache_size(self) -> Optional[pulumi.Input[builtins.str]]:
26507
+ """
26508
+ Defines a limit of how much total remote data can be referenced as a ratio of the size of the disk reserved for the file cache. This is designed to be a safeguard to prevent oversubscribing a cluster. Defaults to 5gb. Requires restarting all OpenSearch nodes.
26509
+ """
26510
+ return pulumi.get(self, "node_search_cache_size")
26511
+
26512
+ @node_search_cache_size.setter
26513
+ def node_search_cache_size(self, value: Optional[pulumi.Input[builtins.str]]):
26514
+ pulumi.set(self, "node_search_cache_size", value)
26515
+
26415
26516
  @property
26416
26517
  @pulumi.getter(name="overrideMainResponseVersion")
26417
26518
  def override_main_response_version(self) -> Optional[pulumi.Input[builtins.bool]]:
@@ -26448,6 +26549,15 @@ class OpenSearchOpensearchUserConfigOpensearchArgs:
26448
26549
  def reindex_remote_whitelists(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]):
26449
26550
  pulumi.set(self, "reindex_remote_whitelists", value)
26450
26551
 
26552
+ @property
26553
+ @pulumi.getter(name="remoteStore")
26554
+ def remote_store(self) -> Optional[pulumi.Input['OpenSearchOpensearchUserConfigOpensearchRemoteStoreArgs']]:
26555
+ return pulumi.get(self, "remote_store")
26556
+
26557
+ @remote_store.setter
26558
+ def remote_store(self, value: Optional[pulumi.Input['OpenSearchOpensearchUserConfigOpensearchRemoteStoreArgs']]):
26559
+ pulumi.set(self, "remote_store", value)
26560
+
26451
26561
  @property
26452
26562
  @pulumi.getter(name="scriptMaxCompilationsRate")
26453
26563
  def script_max_compilations_rate(self) -> Optional[pulumi.Input[builtins.str]]:
@@ -26983,6 +27093,98 @@ class OpenSearchOpensearchUserConfigOpensearchAuthFailureListenersIpRateLimiting
26983
27093
  pulumi.set(self, "type", value)
26984
27094
 
26985
27095
 
27096
+ if not MYPY:
27097
+ class OpenSearchOpensearchUserConfigOpensearchClusterRemoteStoreArgsDict(TypedDict):
27098
+ state_global_metadata_upload_timeout: NotRequired[pulumi.Input[builtins.str]]
27099
+ """
27100
+ The amount of time to wait for the cluster state upload to complete. Defaults to 20s.
27101
+ """
27102
+ state_metadata_manifest_upload_timeout: NotRequired[pulumi.Input[builtins.str]]
27103
+ """
27104
+ The amount of time to wait for the manifest file upload to complete. The manifest file contains the details of each of the files uploaded for a single cluster state, both index metadata files and global metadata files. Defaults to 20s.
27105
+ """
27106
+ translog_buffer_interval: NotRequired[pulumi.Input[builtins.str]]
27107
+ """
27108
+ The default value of the translog buffer interval used when performing periodic translog updates. This setting is only effective when the index setting `index.remote_store.translog.buffer_interval` is not present. Defaults to 650ms.
27109
+ """
27110
+ translog_max_readers: NotRequired[pulumi.Input[builtins.int]]
27111
+ """
27112
+ Sets the maximum number of open translog files for remote-backed indexes. This limits the total number of translog files per shard. After reaching this limit, the remote store flushes the translog files. Default is 1000. The minimum required is 100. Example: `1000`.
27113
+ """
27114
+ elif False:
27115
+ OpenSearchOpensearchUserConfigOpensearchClusterRemoteStoreArgsDict: TypeAlias = Mapping[str, Any]
27116
+
27117
+ @pulumi.input_type
27118
+ class OpenSearchOpensearchUserConfigOpensearchClusterRemoteStoreArgs:
27119
+ def __init__(__self__, *,
27120
+ state_global_metadata_upload_timeout: Optional[pulumi.Input[builtins.str]] = None,
27121
+ state_metadata_manifest_upload_timeout: Optional[pulumi.Input[builtins.str]] = None,
27122
+ translog_buffer_interval: Optional[pulumi.Input[builtins.str]] = None,
27123
+ translog_max_readers: Optional[pulumi.Input[builtins.int]] = None):
27124
+ """
27125
+ :param pulumi.Input[builtins.str] state_global_metadata_upload_timeout: The amount of time to wait for the cluster state upload to complete. Defaults to 20s.
27126
+ :param pulumi.Input[builtins.str] state_metadata_manifest_upload_timeout: The amount of time to wait for the manifest file upload to complete. The manifest file contains the details of each of the files uploaded for a single cluster state, both index metadata files and global metadata files. Defaults to 20s.
27127
+ :param pulumi.Input[builtins.str] translog_buffer_interval: The default value of the translog buffer interval used when performing periodic translog updates. This setting is only effective when the index setting `index.remote_store.translog.buffer_interval` is not present. Defaults to 650ms.
27128
+ :param pulumi.Input[builtins.int] translog_max_readers: Sets the maximum number of open translog files for remote-backed indexes. This limits the total number of translog files per shard. After reaching this limit, the remote store flushes the translog files. Default is 1000. The minimum required is 100. Example: `1000`.
27129
+ """
27130
+ if state_global_metadata_upload_timeout is not None:
27131
+ pulumi.set(__self__, "state_global_metadata_upload_timeout", state_global_metadata_upload_timeout)
27132
+ if state_metadata_manifest_upload_timeout is not None:
27133
+ pulumi.set(__self__, "state_metadata_manifest_upload_timeout", state_metadata_manifest_upload_timeout)
27134
+ if translog_buffer_interval is not None:
27135
+ pulumi.set(__self__, "translog_buffer_interval", translog_buffer_interval)
27136
+ if translog_max_readers is not None:
27137
+ pulumi.set(__self__, "translog_max_readers", translog_max_readers)
27138
+
27139
+ @property
27140
+ @pulumi.getter(name="stateGlobalMetadataUploadTimeout")
27141
+ def state_global_metadata_upload_timeout(self) -> Optional[pulumi.Input[builtins.str]]:
27142
+ """
27143
+ The amount of time to wait for the cluster state upload to complete. Defaults to 20s.
27144
+ """
27145
+ return pulumi.get(self, "state_global_metadata_upload_timeout")
27146
+
27147
+ @state_global_metadata_upload_timeout.setter
27148
+ def state_global_metadata_upload_timeout(self, value: Optional[pulumi.Input[builtins.str]]):
27149
+ pulumi.set(self, "state_global_metadata_upload_timeout", value)
27150
+
27151
+ @property
27152
+ @pulumi.getter(name="stateMetadataManifestUploadTimeout")
27153
+ def state_metadata_manifest_upload_timeout(self) -> Optional[pulumi.Input[builtins.str]]:
27154
+ """
27155
+ The amount of time to wait for the manifest file upload to complete. The manifest file contains the details of each of the files uploaded for a single cluster state, both index metadata files and global metadata files. Defaults to 20s.
27156
+ """
27157
+ return pulumi.get(self, "state_metadata_manifest_upload_timeout")
27158
+
27159
+ @state_metadata_manifest_upload_timeout.setter
27160
+ def state_metadata_manifest_upload_timeout(self, value: Optional[pulumi.Input[builtins.str]]):
27161
+ pulumi.set(self, "state_metadata_manifest_upload_timeout", value)
27162
+
27163
+ @property
27164
+ @pulumi.getter(name="translogBufferInterval")
27165
+ def translog_buffer_interval(self) -> Optional[pulumi.Input[builtins.str]]:
27166
+ """
27167
+ The default value of the translog buffer interval used when performing periodic translog updates. This setting is only effective when the index setting `index.remote_store.translog.buffer_interval` is not present. Defaults to 650ms.
27168
+ """
27169
+ return pulumi.get(self, "translog_buffer_interval")
27170
+
27171
+ @translog_buffer_interval.setter
27172
+ def translog_buffer_interval(self, value: Optional[pulumi.Input[builtins.str]]):
27173
+ pulumi.set(self, "translog_buffer_interval", value)
27174
+
27175
+ @property
27176
+ @pulumi.getter(name="translogMaxReaders")
27177
+ def translog_max_readers(self) -> Optional[pulumi.Input[builtins.int]]:
27178
+ """
27179
+ Sets the maximum number of open translog files for remote-backed indexes. This limits the total number of translog files per shard. After reaching this limit, the remote store flushes the translog files. Default is 1000. The minimum required is 100. Example: `1000`.
27180
+ """
27181
+ return pulumi.get(self, "translog_max_readers")
27182
+
27183
+ @translog_max_readers.setter
27184
+ def translog_max_readers(self, value: Optional[pulumi.Input[builtins.int]]):
27185
+ pulumi.set(self, "translog_max_readers", value)
27186
+
27187
+
26986
27188
  if not MYPY:
26987
27189
  class OpenSearchOpensearchUserConfigOpensearchClusterSearchRequestSlowlogArgsDict(TypedDict):
26988
27190
  level: NotRequired[pulumi.Input[builtins.str]]
@@ -27281,6 +27483,98 @@ class OpenSearchOpensearchUserConfigOpensearchDiskWatermarksArgs:
27281
27483
  pulumi.set(self, "low", value)
27282
27484
 
27283
27485
 
27486
+ if not MYPY:
27487
+ class OpenSearchOpensearchUserConfigOpensearchRemoteStoreArgsDict(TypedDict):
27488
+ segment_pressure_bytes_lag_variance_factor: NotRequired[pulumi.Input[builtins.float]]
27489
+ """
27490
+ The variance factor that is used together with the moving average to calculate the dynamic bytes lag threshold for activating remote segment backpressure. Defaults to 10.
27491
+ """
27492
+ segment_pressure_consecutive_failures_limit: NotRequired[pulumi.Input[builtins.int]]
27493
+ """
27494
+ The minimum consecutive failure count for activating remote segment backpressure. Defaults to 5.
27495
+ """
27496
+ segment_pressure_enabled: NotRequired[pulumi.Input[builtins.bool]]
27497
+ """
27498
+ Enables remote segment backpressure. Default is `true`.
27499
+ """
27500
+ segment_pressure_time_lag_variance_factor: NotRequired[pulumi.Input[builtins.float]]
27501
+ """
27502
+ The variance factor that is used together with the moving average to calculate the dynamic time lag threshold for activating remote segment backpressure. Defaults to 10.
27503
+ """
27504
+ elif False:
27505
+ OpenSearchOpensearchUserConfigOpensearchRemoteStoreArgsDict: TypeAlias = Mapping[str, Any]
27506
+
27507
+ @pulumi.input_type
27508
+ class OpenSearchOpensearchUserConfigOpensearchRemoteStoreArgs:
27509
+ def __init__(__self__, *,
27510
+ segment_pressure_bytes_lag_variance_factor: Optional[pulumi.Input[builtins.float]] = None,
27511
+ segment_pressure_consecutive_failures_limit: Optional[pulumi.Input[builtins.int]] = None,
27512
+ segment_pressure_enabled: Optional[pulumi.Input[builtins.bool]] = None,
27513
+ segment_pressure_time_lag_variance_factor: Optional[pulumi.Input[builtins.float]] = None):
27514
+ """
27515
+ :param pulumi.Input[builtins.float] segment_pressure_bytes_lag_variance_factor: The variance factor that is used together with the moving average to calculate the dynamic bytes lag threshold for activating remote segment backpressure. Defaults to 10.
27516
+ :param pulumi.Input[builtins.int] segment_pressure_consecutive_failures_limit: The minimum consecutive failure count for activating remote segment backpressure. Defaults to 5.
27517
+ :param pulumi.Input[builtins.bool] segment_pressure_enabled: Enables remote segment backpressure. Default is `true`.
27518
+ :param pulumi.Input[builtins.float] segment_pressure_time_lag_variance_factor: The variance factor that is used together with the moving average to calculate the dynamic time lag threshold for activating remote segment backpressure. Defaults to 10.
27519
+ """
27520
+ if segment_pressure_bytes_lag_variance_factor is not None:
27521
+ pulumi.set(__self__, "segment_pressure_bytes_lag_variance_factor", segment_pressure_bytes_lag_variance_factor)
27522
+ if segment_pressure_consecutive_failures_limit is not None:
27523
+ pulumi.set(__self__, "segment_pressure_consecutive_failures_limit", segment_pressure_consecutive_failures_limit)
27524
+ if segment_pressure_enabled is not None:
27525
+ pulumi.set(__self__, "segment_pressure_enabled", segment_pressure_enabled)
27526
+ if segment_pressure_time_lag_variance_factor is not None:
27527
+ pulumi.set(__self__, "segment_pressure_time_lag_variance_factor", segment_pressure_time_lag_variance_factor)
27528
+
27529
+ @property
27530
+ @pulumi.getter(name="segmentPressureBytesLagVarianceFactor")
27531
+ def segment_pressure_bytes_lag_variance_factor(self) -> Optional[pulumi.Input[builtins.float]]:
27532
+ """
27533
+ The variance factor that is used together with the moving average to calculate the dynamic bytes lag threshold for activating remote segment backpressure. Defaults to 10.
27534
+ """
27535
+ return pulumi.get(self, "segment_pressure_bytes_lag_variance_factor")
27536
+
27537
+ @segment_pressure_bytes_lag_variance_factor.setter
27538
+ def segment_pressure_bytes_lag_variance_factor(self, value: Optional[pulumi.Input[builtins.float]]):
27539
+ pulumi.set(self, "segment_pressure_bytes_lag_variance_factor", value)
27540
+
27541
+ @property
27542
+ @pulumi.getter(name="segmentPressureConsecutiveFailuresLimit")
27543
+ def segment_pressure_consecutive_failures_limit(self) -> Optional[pulumi.Input[builtins.int]]:
27544
+ """
27545
+ The minimum consecutive failure count for activating remote segment backpressure. Defaults to 5.
27546
+ """
27547
+ return pulumi.get(self, "segment_pressure_consecutive_failures_limit")
27548
+
27549
+ @segment_pressure_consecutive_failures_limit.setter
27550
+ def segment_pressure_consecutive_failures_limit(self, value: Optional[pulumi.Input[builtins.int]]):
27551
+ pulumi.set(self, "segment_pressure_consecutive_failures_limit", value)
27552
+
27553
+ @property
27554
+ @pulumi.getter(name="segmentPressureEnabled")
27555
+ def segment_pressure_enabled(self) -> Optional[pulumi.Input[builtins.bool]]:
27556
+ """
27557
+ Enables remote segment backpressure. Default is `true`.
27558
+ """
27559
+ return pulumi.get(self, "segment_pressure_enabled")
27560
+
27561
+ @segment_pressure_enabled.setter
27562
+ def segment_pressure_enabled(self, value: Optional[pulumi.Input[builtins.bool]]):
27563
+ pulumi.set(self, "segment_pressure_enabled", value)
27564
+
27565
+ @property
27566
+ @pulumi.getter(name="segmentPressureTimeLagVarianceFactor")
27567
+ def segment_pressure_time_lag_variance_factor(self) -> Optional[pulumi.Input[builtins.float]]:
27568
+ """
27569
+ The variance factor that is used together with the moving average to calculate the dynamic time lag threshold for activating remote segment backpressure. Defaults to 10.
27570
+ """
27571
+ return pulumi.get(self, "segment_pressure_time_lag_variance_factor")
27572
+
27573
+ @segment_pressure_time_lag_variance_factor.setter
27574
+ def segment_pressure_time_lag_variance_factor(self, value: Optional[pulumi.Input[builtins.float]]):
27575
+ pulumi.set(self, "segment_pressure_time_lag_variance_factor", value)
27576
+
27577
+
27284
27578
  if not MYPY:
27285
27579
  class OpenSearchOpensearchUserConfigOpensearchSearchBackpressureArgsDict(TypedDict):
27286
27580
  mode: NotRequired[pulumi.Input[builtins.str]]
@@ -33448,7 +33742,7 @@ if not MYPY:
33448
33742
  class PgPgUserConfigTimescaledbArgsDict(TypedDict):
33449
33743
  max_background_workers: NotRequired[pulumi.Input[builtins.int]]
33450
33744
  """
33451
- The number of background workers for timescaledb operations. You should configure this setting to the sum of your number of databases and the total number of concurrent background workers you want running at any given point in time. Default: `16`.
33745
+ The number of background workers for timescaledb operations. You should configure this setting to the sum of your number of databases and the total number of concurrent background workers you want running at any given point in time. Changing this parameter causes a service restart. Default: `16`.
33452
33746
  """
33453
33747
  elif False:
33454
33748
  PgPgUserConfigTimescaledbArgsDict: TypeAlias = Mapping[str, Any]
@@ -33458,7 +33752,7 @@ class PgPgUserConfigTimescaledbArgs:
33458
33752
  def __init__(__self__, *,
33459
33753
  max_background_workers: Optional[pulumi.Input[builtins.int]] = None):
33460
33754
  """
33461
- :param pulumi.Input[builtins.int] max_background_workers: The number of background workers for timescaledb operations. You should configure this setting to the sum of your number of databases and the total number of concurrent background workers you want running at any given point in time. Default: `16`.
33755
+ :param pulumi.Input[builtins.int] max_background_workers: The number of background workers for timescaledb operations. You should configure this setting to the sum of your number of databases and the total number of concurrent background workers you want running at any given point in time. Changing this parameter causes a service restart. Default: `16`.
33462
33756
  """
33463
33757
  if max_background_workers is not None:
33464
33758
  pulumi.set(__self__, "max_background_workers", max_background_workers)
@@ -33467,7 +33761,7 @@ class PgPgUserConfigTimescaledbArgs:
33467
33761
  @pulumi.getter(name="maxBackgroundWorkers")
33468
33762
  def max_background_workers(self) -> Optional[pulumi.Input[builtins.int]]:
33469
33763
  """
33470
- The number of background workers for timescaledb operations. You should configure this setting to the sum of your number of databases and the total number of concurrent background workers you want running at any given point in time. Default: `16`.
33764
+ The number of background workers for timescaledb operations. You should configure this setting to the sum of your number of databases and the total number of concurrent background workers you want running at any given point in time. Changing this parameter causes a service restart. Default: `16`.
33471
33765
  """
33472
33766
  return pulumi.get(self, "max_background_workers")
33473
33767
 
@@ -42359,10 +42653,6 @@ if not MYPY:
42359
42653
  """
42360
42654
  List of billing contact emails.
42361
42655
  """
42362
- billing_currency: builtins.str
42363
- """
42364
- Acceptable currencies for a billing group. The possible values are `AUD`, `CAD`, `CHF`, `DKK`, `EUR`, `GBP`, `JPY`, `NOK`, `NZD`, `SEK`, `SGD` and `USD`.
42365
- """
42366
42656
  billing_emails: Sequence[builtins.str]
42367
42657
  """
42368
42658
  List of billing contact emails.
@@ -42375,6 +42665,10 @@ if not MYPY:
42375
42665
  """
42376
42666
  Billing Group Name.
42377
42667
  """
42668
+ currency: builtins.str
42669
+ """
42670
+ Acceptable currencies for a billing group. The possible values are `AUD`, `CAD`, `CHF`, `DKK`, `EUR`, `GBP`, `JPY`, `NOK`, `NZD`, `SEK`, `SGD` and `USD`.
42671
+ """
42378
42672
  custom_invoice_text: builtins.str
42379
42673
  """
42380
42674
  Extra billing text.
@@ -42403,10 +42697,10 @@ class GetOrganizationBillingGroupListBillingGroupArgs:
42403
42697
  def __init__(__self__, *,
42404
42698
  billing_address_id: builtins.str,
42405
42699
  billing_contact_emails: Sequence[builtins.str],
42406
- billing_currency: builtins.str,
42407
42700
  billing_emails: Sequence[builtins.str],
42408
42701
  billing_group_id: builtins.str,
42409
42702
  billing_group_name: builtins.str,
42703
+ currency: builtins.str,
42410
42704
  custom_invoice_text: builtins.str,
42411
42705
  organization_id: builtins.str,
42412
42706
  payment_method_id: builtins.str,
@@ -42415,10 +42709,10 @@ class GetOrganizationBillingGroupListBillingGroupArgs:
42415
42709
  """
42416
42710
  :param builtins.str billing_address_id: Billing address ID.
42417
42711
  :param Sequence[builtins.str] billing_contact_emails: List of billing contact emails.
42418
- :param builtins.str billing_currency: Acceptable currencies for a billing group. The possible values are `AUD`, `CAD`, `CHF`, `DKK`, `EUR`, `GBP`, `JPY`, `NOK`, `NZD`, `SEK`, `SGD` and `USD`.
42419
42712
  :param Sequence[builtins.str] billing_emails: List of billing contact emails.
42420
42713
  :param builtins.str billing_group_id: Billing group ID.
42421
42714
  :param builtins.str billing_group_name: Billing Group Name.
42715
+ :param builtins.str currency: Acceptable currencies for a billing group. The possible values are `AUD`, `CAD`, `CHF`, `DKK`, `EUR`, `GBP`, `JPY`, `NOK`, `NZD`, `SEK`, `SGD` and `USD`.
42422
42716
  :param builtins.str custom_invoice_text: Extra billing text.
42423
42717
  :param builtins.str organization_id: Organization ID.
42424
42718
  :param builtins.str payment_method_id: Payment method ID.
@@ -42427,10 +42721,10 @@ class GetOrganizationBillingGroupListBillingGroupArgs:
42427
42721
  """
42428
42722
  pulumi.set(__self__, "billing_address_id", billing_address_id)
42429
42723
  pulumi.set(__self__, "billing_contact_emails", billing_contact_emails)
42430
- pulumi.set(__self__, "billing_currency", billing_currency)
42431
42724
  pulumi.set(__self__, "billing_emails", billing_emails)
42432
42725
  pulumi.set(__self__, "billing_group_id", billing_group_id)
42433
42726
  pulumi.set(__self__, "billing_group_name", billing_group_name)
42727
+ pulumi.set(__self__, "currency", currency)
42434
42728
  pulumi.set(__self__, "custom_invoice_text", custom_invoice_text)
42435
42729
  pulumi.set(__self__, "organization_id", organization_id)
42436
42730
  pulumi.set(__self__, "payment_method_id", payment_method_id)
@@ -42461,18 +42755,6 @@ class GetOrganizationBillingGroupListBillingGroupArgs:
42461
42755
  def billing_contact_emails(self, value: Sequence[builtins.str]):
42462
42756
  pulumi.set(self, "billing_contact_emails", value)
42463
42757
 
42464
- @property
42465
- @pulumi.getter(name="billingCurrency")
42466
- def billing_currency(self) -> builtins.str:
42467
- """
42468
- Acceptable currencies for a billing group. The possible values are `AUD`, `CAD`, `CHF`, `DKK`, `EUR`, `GBP`, `JPY`, `NOK`, `NZD`, `SEK`, `SGD` and `USD`.
42469
- """
42470
- return pulumi.get(self, "billing_currency")
42471
-
42472
- @billing_currency.setter
42473
- def billing_currency(self, value: builtins.str):
42474
- pulumi.set(self, "billing_currency", value)
42475
-
42476
42758
  @property
42477
42759
  @pulumi.getter(name="billingEmails")
42478
42760
  def billing_emails(self) -> Sequence[builtins.str]:
@@ -42509,6 +42791,18 @@ class GetOrganizationBillingGroupListBillingGroupArgs:
42509
42791
  def billing_group_name(self, value: builtins.str):
42510
42792
  pulumi.set(self, "billing_group_name", value)
42511
42793
 
42794
+ @property
42795
+ @pulumi.getter
42796
+ def currency(self) -> builtins.str:
42797
+ """
42798
+ Acceptable currencies for a billing group. The possible values are `AUD`, `CAD`, `CHF`, `DKK`, `EUR`, `GBP`, `JPY`, `NOK`, `NZD`, `SEK`, `SGD` and `USD`.
42799
+ """
42800
+ return pulumi.get(self, "currency")
42801
+
42802
+ @currency.setter
42803
+ def currency(self, value: builtins.str):
42804
+ pulumi.set(self, "currency", value)
42805
+
42512
42806
  @property
42513
42807
  @pulumi.getter(name="customInvoiceText")
42514
42808
  def custom_invoice_text(self) -> builtins.str: