pulumi-aiven 6.25.0a1727423161__py3-none-any.whl → 6.26.0__py3-none-any.whl

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

Potentially problematic release.


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

Files changed (39) hide show
  1. pulumi_aiven/__init__.py +1 -0
  2. pulumi_aiven/_inputs.py +261 -53
  3. pulumi_aiven/account_team_project.py +7 -7
  4. pulumi_aiven/cassandra.py +7 -2
  5. pulumi_aiven/clickhouse.py +6 -1
  6. pulumi_aiven/dragonfly.py +7 -2
  7. pulumi_aiven/flink.py +7 -2
  8. pulumi_aiven/get_account_team_project.py +1 -1
  9. pulumi_aiven/get_external_identity.py +146 -0
  10. pulumi_aiven/get_project_user.py +1 -1
  11. pulumi_aiven/get_service_integration.py +17 -4
  12. pulumi_aiven/get_thanos.py +0 -6
  13. pulumi_aiven/get_valkey.py +0 -6
  14. pulumi_aiven/get_valkey_user.py +0 -6
  15. pulumi_aiven/grafana.py +7 -2
  16. pulumi_aiven/influx_db.py +7 -2
  17. pulumi_aiven/kafka.py +7 -2
  18. pulumi_aiven/kafka_connect.py +7 -2
  19. pulumi_aiven/kafka_mirror_maker.py +7 -2
  20. pulumi_aiven/m3_aggregator.py +7 -2
  21. pulumi_aiven/m3_db.py +7 -2
  22. pulumi_aiven/my_sql.py +7 -2
  23. pulumi_aiven/open_search.py +7 -2
  24. pulumi_aiven/organization_group_project.py +7 -7
  25. pulumi_aiven/organization_permission.py +89 -21
  26. pulumi_aiven/outputs.py +424 -76
  27. pulumi_aiven/pg.py +7 -2
  28. pulumi_aiven/project_user.py +7 -7
  29. pulumi_aiven/pulumi-plugin.json +1 -1
  30. pulumi_aiven/redis.py +7 -2
  31. pulumi_aiven/service_integration.py +54 -7
  32. pulumi_aiven/static_ip.py +2 -2
  33. pulumi_aiven/thanos.py +7 -8
  34. pulumi_aiven/valkey.py +7 -8
  35. pulumi_aiven/valkey_user.py +0 -6
  36. {pulumi_aiven-6.25.0a1727423161.dist-info → pulumi_aiven-6.26.0.dist-info}/METADATA +1 -1
  37. {pulumi_aiven-6.25.0a1727423161.dist-info → pulumi_aiven-6.26.0.dist-info}/RECORD +39 -38
  38. {pulumi_aiven-6.25.0a1727423161.dist-info → pulumi_aiven-6.26.0.dist-info}/WHEEL +0 -0
  39. {pulumi_aiven-6.25.0a1727423161.dist-info → pulumi_aiven-6.26.0.dist-info}/top_level.txt +0 -0
pulumi_aiven/_inputs.py CHANGED
@@ -51,6 +51,7 @@ __all__ = [
51
51
  'FlinkFlinkUserConfigArgs',
52
52
  'FlinkFlinkUserConfigIpFilterObjectArgs',
53
53
  'FlinkFlinkUserConfigPrivatelinkAccessArgs',
54
+ 'FlinkFlinkUserConfigPublicAccessArgs',
54
55
  'FlinkServiceIntegrationArgs',
55
56
  'FlinkTagArgs',
56
57
  'FlinkTechEmailArgs',
@@ -114,6 +115,7 @@ __all__ = [
114
115
  'KafkaKafkaUserConfigPrivatelinkAccessArgs',
115
116
  'KafkaKafkaUserConfigPublicAccessArgs',
116
117
  'KafkaKafkaUserConfigSchemaRegistryConfigArgs',
118
+ 'KafkaKafkaUserConfigSingleZoneArgs',
117
119
  'KafkaKafkaUserConfigTieredStorageArgs',
118
120
  'KafkaKafkaUserConfigTieredStorageLocalCacheArgs',
119
121
  'KafkaMirrorMakerComponentArgs',
@@ -257,6 +259,7 @@ __all__ = [
257
259
  'ServiceIntegrationExternalAwsCloudwatchMetricsUserConfigExtraMetricArgs',
258
260
  'ServiceIntegrationExternalElasticsearchLogsUserConfigArgs',
259
261
  'ServiceIntegrationExternalOpensearchLogsUserConfigArgs',
262
+ 'ServiceIntegrationFlinkExternalPostgresqlUserConfigArgs',
260
263
  'ServiceIntegrationKafkaConnectUserConfigArgs',
261
264
  'ServiceIntegrationKafkaConnectUserConfigKafkaConnectArgs',
262
265
  'ServiceIntegrationKafkaLogsUserConfigArgs',
@@ -1110,6 +1113,7 @@ class ClickhouseClickhouseUserConfigArgs:
1110
1113
  privatelink_access: Optional[pulumi.Input['ClickhouseClickhouseUserConfigPrivatelinkAccessArgs']] = None,
1111
1114
  project_to_fork_from: Optional[pulumi.Input[str]] = None,
1112
1115
  public_access: Optional[pulumi.Input['ClickhouseClickhouseUserConfigPublicAccessArgs']] = None,
1116
+ recovery_basebackup_name: Optional[pulumi.Input[str]] = None,
1113
1117
  service_log: Optional[pulumi.Input[bool]] = None,
1114
1118
  service_to_fork_from: Optional[pulumi.Input[str]] = None,
1115
1119
  static_ips: Optional[pulumi.Input[bool]] = None):
@@ -1122,6 +1126,7 @@ class ClickhouseClickhouseUserConfigArgs:
1122
1126
  :param pulumi.Input['ClickhouseClickhouseUserConfigPrivatelinkAccessArgs'] privatelink_access: Allow access to selected service components through Privatelink
1123
1127
  :param pulumi.Input[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`.
1124
1128
  :param pulumi.Input['ClickhouseClickhouseUserConfigPublicAccessArgs'] public_access: Allow access to selected service ports from the public Internet
1129
+ :param pulumi.Input[str] recovery_basebackup_name: Name of the basebackup to restore in forked service. Example: `backup-20191112t091354293891z`.
1125
1130
  :param pulumi.Input[bool] service_log: Store logs for the service so that they are available in the HTTP API and console.
1126
1131
  :param pulumi.Input[str] service_to_fork_from: Name of another service to fork from. This has effect only when a new service is being created. Example: `anotherservicename`.
1127
1132
  :param pulumi.Input[bool] static_ips: Use static public IP addresses.
@@ -1148,6 +1153,8 @@ class ClickhouseClickhouseUserConfigArgs:
1148
1153
  pulumi.set(__self__, "project_to_fork_from", project_to_fork_from)
1149
1154
  if public_access is not None:
1150
1155
  pulumi.set(__self__, "public_access", public_access)
1156
+ if recovery_basebackup_name is not None:
1157
+ pulumi.set(__self__, "recovery_basebackup_name", recovery_basebackup_name)
1151
1158
  if service_log is not None:
1152
1159
  pulumi.set(__self__, "service_log", service_log)
1153
1160
  if service_to_fork_from is not None:
@@ -1253,6 +1260,18 @@ class ClickhouseClickhouseUserConfigArgs:
1253
1260
  def public_access(self, value: Optional[pulumi.Input['ClickhouseClickhouseUserConfigPublicAccessArgs']]):
1254
1261
  pulumi.set(self, "public_access", value)
1255
1262
 
1263
+ @property
1264
+ @pulumi.getter(name="recoveryBasebackupName")
1265
+ def recovery_basebackup_name(self) -> Optional[pulumi.Input[str]]:
1266
+ """
1267
+ Name of the basebackup to restore in forked service. Example: `backup-20191112t091354293891z`.
1268
+ """
1269
+ return pulumi.get(self, "recovery_basebackup_name")
1270
+
1271
+ @recovery_basebackup_name.setter
1272
+ def recovery_basebackup_name(self, value: Optional[pulumi.Input[str]]):
1273
+ pulumi.set(self, "recovery_basebackup_name", value)
1274
+
1256
1275
  @property
1257
1276
  @pulumi.getter(name="serviceLog")
1258
1277
  def service_log(self) -> Optional[pulumi.Input[bool]]:
@@ -2981,7 +3000,10 @@ class FlinkFlinkUserConfigArgs:
2981
3000
  ip_filter_strings: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
2982
3001
  ip_filters: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
2983
3002
  number_of_task_slots: Optional[pulumi.Input[int]] = None,
3003
+ pekko_ask_timeout_s: Optional[pulumi.Input[int]] = None,
3004
+ pekko_framesize_b: Optional[pulumi.Input[int]] = None,
2984
3005
  privatelink_access: Optional[pulumi.Input['FlinkFlinkUserConfigPrivatelinkAccessArgs']] = None,
3006
+ public_access: Optional[pulumi.Input['FlinkFlinkUserConfigPublicAccessArgs']] = None,
2985
3007
  service_log: Optional[pulumi.Input[bool]] = None,
2986
3008
  static_ips: Optional[pulumi.Input[bool]] = None):
2987
3009
  """
@@ -2991,7 +3013,10 @@ class FlinkFlinkUserConfigArgs:
2991
3013
  :param pulumi.Input[Sequence[pulumi.Input[str]]] ip_filter_strings: Allow incoming connections from CIDR address block, e.g. `10.20.0.0/16`.
2992
3014
  :param pulumi.Input[Sequence[pulumi.Input[str]]] ip_filters: Allow incoming connections from CIDR address block, e.g. `10.20.0.0/16`.
2993
3015
  :param pulumi.Input[int] number_of_task_slots: Task slots per node. For a 3 node plan, total number of task slots is 3x this value. Example: `1`.
3016
+ :param pulumi.Input[int] pekko_ask_timeout_s: Timeout in seconds used for all futures and blocking Pekko requests. Example: `10`.
3017
+ :param pulumi.Input[int] pekko_framesize_b: Maximum size in bytes for messages exchanged between the JobManager and the TaskManagers. Example: `10485760`.
2994
3018
  :param pulumi.Input['FlinkFlinkUserConfigPrivatelinkAccessArgs'] privatelink_access: Allow access to selected service components through Privatelink
3019
+ :param pulumi.Input['FlinkFlinkUserConfigPublicAccessArgs'] public_access: Allow access to selected service ports from the public Internet
2995
3020
  :param pulumi.Input[bool] service_log: Store logs for the service so that they are available in the HTTP API and console.
2996
3021
  :param pulumi.Input[bool] static_ips: Use static public IP addresses.
2997
3022
  """
@@ -3013,8 +3038,14 @@ class FlinkFlinkUserConfigArgs:
3013
3038
  pulumi.set(__self__, "ip_filters", ip_filters)
3014
3039
  if number_of_task_slots is not None:
3015
3040
  pulumi.set(__self__, "number_of_task_slots", number_of_task_slots)
3041
+ if pekko_ask_timeout_s is not None:
3042
+ pulumi.set(__self__, "pekko_ask_timeout_s", pekko_ask_timeout_s)
3043
+ if pekko_framesize_b is not None:
3044
+ pulumi.set(__self__, "pekko_framesize_b", pekko_framesize_b)
3016
3045
  if privatelink_access is not None:
3017
3046
  pulumi.set(__self__, "privatelink_access", privatelink_access)
3047
+ if public_access is not None:
3048
+ pulumi.set(__self__, "public_access", public_access)
3018
3049
  if service_log is not None:
3019
3050
  pulumi.set(__self__, "service_log", service_log)
3020
3051
  if static_ips is not None:
@@ -3094,6 +3125,30 @@ class FlinkFlinkUserConfigArgs:
3094
3125
  def number_of_task_slots(self, value: Optional[pulumi.Input[int]]):
3095
3126
  pulumi.set(self, "number_of_task_slots", value)
3096
3127
 
3128
+ @property
3129
+ @pulumi.getter(name="pekkoAskTimeoutS")
3130
+ def pekko_ask_timeout_s(self) -> Optional[pulumi.Input[int]]:
3131
+ """
3132
+ Timeout in seconds used for all futures and blocking Pekko requests. Example: `10`.
3133
+ """
3134
+ return pulumi.get(self, "pekko_ask_timeout_s")
3135
+
3136
+ @pekko_ask_timeout_s.setter
3137
+ def pekko_ask_timeout_s(self, value: Optional[pulumi.Input[int]]):
3138
+ pulumi.set(self, "pekko_ask_timeout_s", value)
3139
+
3140
+ @property
3141
+ @pulumi.getter(name="pekkoFramesizeB")
3142
+ def pekko_framesize_b(self) -> Optional[pulumi.Input[int]]:
3143
+ """
3144
+ Maximum size in bytes for messages exchanged between the JobManager and the TaskManagers. Example: `10485760`.
3145
+ """
3146
+ return pulumi.get(self, "pekko_framesize_b")
3147
+
3148
+ @pekko_framesize_b.setter
3149
+ def pekko_framesize_b(self, value: Optional[pulumi.Input[int]]):
3150
+ pulumi.set(self, "pekko_framesize_b", value)
3151
+
3097
3152
  @property
3098
3153
  @pulumi.getter(name="privatelinkAccess")
3099
3154
  def privatelink_access(self) -> Optional[pulumi.Input['FlinkFlinkUserConfigPrivatelinkAccessArgs']]:
@@ -3106,6 +3161,18 @@ class FlinkFlinkUserConfigArgs:
3106
3161
  def privatelink_access(self, value: Optional[pulumi.Input['FlinkFlinkUserConfigPrivatelinkAccessArgs']]):
3107
3162
  pulumi.set(self, "privatelink_access", value)
3108
3163
 
3164
+ @property
3165
+ @pulumi.getter(name="publicAccess")
3166
+ def public_access(self) -> Optional[pulumi.Input['FlinkFlinkUserConfigPublicAccessArgs']]:
3167
+ """
3168
+ Allow access to selected service ports from the public Internet
3169
+ """
3170
+ return pulumi.get(self, "public_access")
3171
+
3172
+ @public_access.setter
3173
+ def public_access(self, value: Optional[pulumi.Input['FlinkFlinkUserConfigPublicAccessArgs']]):
3174
+ pulumi.set(self, "public_access", value)
3175
+
3109
3176
  @property
3110
3177
  @pulumi.getter(name="serviceLog")
3111
3178
  def service_log(self) -> Optional[pulumi.Input[bool]]:
@@ -3208,6 +3275,29 @@ class FlinkFlinkUserConfigPrivatelinkAccessArgs:
3208
3275
  pulumi.set(self, "prometheus", value)
3209
3276
 
3210
3277
 
3278
+ @pulumi.input_type
3279
+ class FlinkFlinkUserConfigPublicAccessArgs:
3280
+ def __init__(__self__, *,
3281
+ flink: Optional[pulumi.Input[bool]] = None):
3282
+ """
3283
+ :param pulumi.Input[bool] flink: Allow clients to connect to flink from the public internet for service nodes that are in a project VPC or another type of private network.
3284
+ """
3285
+ if flink is not None:
3286
+ pulumi.set(__self__, "flink", flink)
3287
+
3288
+ @property
3289
+ @pulumi.getter
3290
+ def flink(self) -> Optional[pulumi.Input[bool]]:
3291
+ """
3292
+ Allow clients to connect to flink from the public internet for service nodes that are in a project VPC or another type of private network.
3293
+ """
3294
+ return pulumi.get(self, "flink")
3295
+
3296
+ @flink.setter
3297
+ def flink(self, value: Optional[pulumi.Input[bool]]):
3298
+ pulumi.set(self, "flink", value)
3299
+
3300
+
3211
3301
  @pulumi.input_type
3212
3302
  class FlinkServiceIntegrationArgs:
3213
3303
  def __init__(__self__, *,
@@ -7439,6 +7529,7 @@ class KafkaKafkaUserConfigArgs:
7439
7529
  schema_registry: Optional[pulumi.Input[bool]] = None,
7440
7530
  schema_registry_config: Optional[pulumi.Input['KafkaKafkaUserConfigSchemaRegistryConfigArgs']] = None,
7441
7531
  service_log: Optional[pulumi.Input[bool]] = None,
7532
+ single_zone: Optional[pulumi.Input['KafkaKafkaUserConfigSingleZoneArgs']] = None,
7442
7533
  static_ips: Optional[pulumi.Input[bool]] = None,
7443
7534
  tiered_storage: Optional[pulumi.Input['KafkaKafkaUserConfigTieredStorageArgs']] = None):
7444
7535
  """
@@ -7465,6 +7556,7 @@ class KafkaKafkaUserConfigArgs:
7465
7556
  :param pulumi.Input[bool] schema_registry: Enable Schema-Registry service. Default: `false`.
7466
7557
  :param pulumi.Input['KafkaKafkaUserConfigSchemaRegistryConfigArgs'] schema_registry_config: Schema Registry configuration
7467
7558
  :param pulumi.Input[bool] service_log: Store logs for the service so that they are available in the HTTP API and console.
7559
+ :param pulumi.Input['KafkaKafkaUserConfigSingleZoneArgs'] single_zone: Single-zone configuration
7468
7560
  :param pulumi.Input[bool] static_ips: Use static public IP addresses.
7469
7561
  :param pulumi.Input['KafkaKafkaUserConfigTieredStorageArgs'] tiered_storage: Tiered storage configuration
7470
7562
  """
@@ -7522,6 +7614,8 @@ class KafkaKafkaUserConfigArgs:
7522
7614
  pulumi.set(__self__, "schema_registry_config", schema_registry_config)
7523
7615
  if service_log is not None:
7524
7616
  pulumi.set(__self__, "service_log", service_log)
7617
+ if single_zone is not None:
7618
+ pulumi.set(__self__, "single_zone", single_zone)
7525
7619
  if static_ips is not None:
7526
7620
  pulumi.set(__self__, "static_ips", static_ips)
7527
7621
  if tiered_storage is not None:
@@ -7814,6 +7908,18 @@ class KafkaKafkaUserConfigArgs:
7814
7908
  def service_log(self, value: Optional[pulumi.Input[bool]]):
7815
7909
  pulumi.set(self, "service_log", value)
7816
7910
 
7911
+ @property
7912
+ @pulumi.getter(name="singleZone")
7913
+ def single_zone(self) -> Optional[pulumi.Input['KafkaKafkaUserConfigSingleZoneArgs']]:
7914
+ """
7915
+ Single-zone configuration
7916
+ """
7917
+ return pulumi.get(self, "single_zone")
7918
+
7919
+ @single_zone.setter
7920
+ def single_zone(self, value: Optional[pulumi.Input['KafkaKafkaUserConfigSingleZoneArgs']]):
7921
+ pulumi.set(self, "single_zone", value)
7922
+
7817
7923
  @property
7818
7924
  @pulumi.getter(name="staticIps")
7819
7925
  def static_ips(self) -> Optional[pulumi.Input[bool]]:
@@ -9723,6 +9829,29 @@ class KafkaKafkaUserConfigSchemaRegistryConfigArgs:
9723
9829
  pulumi.set(self, "topic_name", value)
9724
9830
 
9725
9831
 
9832
+ @pulumi.input_type
9833
+ class KafkaKafkaUserConfigSingleZoneArgs:
9834
+ def __init__(__self__, *,
9835
+ enabled: Optional[pulumi.Input[bool]] = None):
9836
+ """
9837
+ :param pulumi.Input[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.
9838
+ """
9839
+ if enabled is not None:
9840
+ pulumi.set(__self__, "enabled", enabled)
9841
+
9842
+ @property
9843
+ @pulumi.getter
9844
+ def enabled(self) -> Optional[pulumi.Input[bool]]:
9845
+ """
9846
+ 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.
9847
+ """
9848
+ return pulumi.get(self, "enabled")
9849
+
9850
+ @enabled.setter
9851
+ def enabled(self, value: Optional[pulumi.Input[bool]]):
9852
+ pulumi.set(self, "enabled", value)
9853
+
9854
+
9726
9855
  @pulumi.input_type
9727
9856
  class KafkaKafkaUserConfigTieredStorageArgs:
9728
9857
  def __init__(__self__, *,
@@ -13636,6 +13765,7 @@ class MySqlMysqlUserConfigMysqlArgs:
13636
13765
  innodb_write_io_threads: Optional[pulumi.Input[int]] = None,
13637
13766
  interactive_timeout: Optional[pulumi.Input[int]] = None,
13638
13767
  internal_tmp_mem_storage_engine: Optional[pulumi.Input[str]] = None,
13768
+ log_output: Optional[pulumi.Input[str]] = None,
13639
13769
  long_query_time: Optional[pulumi.Input[float]] = None,
13640
13770
  max_allowed_packet: Optional[pulumi.Input[int]] = None,
13641
13771
  max_heap_table_size: Optional[pulumi.Input[int]] = None,
@@ -13667,13 +13797,14 @@ class MySqlMysqlUserConfigMysqlArgs:
13667
13797
  :param pulumi.Input[int] innodb_write_io_threads: The number of I/O threads for write operations in InnoDB. Default is 4. Changing this parameter will lead to a restart of the MySQL service. Example: `10`.
13668
13798
  :param pulumi.Input[int] interactive_timeout: The number of seconds the server waits for activity on an interactive connection before closing it. Example: `3600`.
13669
13799
  :param pulumi.Input[str] internal_tmp_mem_storage_engine: Enum: `TempTable`, `MEMORY`. The storage engine for in-memory internal temporary tables.
13670
- :param pulumi.Input[float] long_query_time: The slow*query*logs work as SQL statements that take more than long*query*time seconds to execute. Default is 10s. Example: `10`.
13800
+ :param pulumi.Input[str] log_output: Enum: `INSIGHTS`, `NONE`, `TABLE`, `INSIGHTS,TABLE`. The slow log output destination when slow*query*log is ON. To enable MySQL AI Insights, choose INSIGHTS. To use MySQL AI Insights and the mysql.slow*log table at the same time, choose INSIGHTS,TABLE. To only use the mysql.slow*log table, choose TABLE. To silence slow logs, choose NONE.
13801
+ :param pulumi.Input[float] long_query_time: The slow*query*logs work as SQL statements that take more than long*query*time seconds to execute. Example: `10`.
13671
13802
  :param pulumi.Input[int] max_allowed_packet: Size of the largest message in bytes that can be received by the server. Default is 67108864 (64M). Example: `67108864`.
13672
13803
  :param pulumi.Input[int] max_heap_table_size: Limits the size of internal in-memory tables. Also set tmp*table*size. Default is 16777216 (16M). Example: `16777216`.
13673
13804
  :param pulumi.Input[int] net_buffer_length: Start sizes of connection buffer and result buffer. Default is 16384 (16K). Changing this parameter will lead to a restart of the MySQL service. Example: `16384`.
13674
13805
  :param pulumi.Input[int] net_read_timeout: The number of seconds to wait for more data from a connection before aborting the read. Example: `30`.
13675
13806
  :param pulumi.Input[int] net_write_timeout: The number of seconds to wait for a block to be written to a connection before aborting the write. Example: `30`.
13676
- :param pulumi.Input[bool] slow_query_log: Slow query log enables capturing of slow queries. Setting slow*query*log to false also truncates the mysql.slow_log table. Default is off.
13807
+ :param pulumi.Input[bool] slow_query_log: Slow query log enables capturing of slow queries. Setting slow*query*log to false also truncates the mysql.slow_log table.
13677
13808
  :param pulumi.Input[int] sort_buffer_size: Sort buffer size in bytes for ORDER BY optimization. Default is 262144 (256K). Example: `262144`.
13678
13809
  :param pulumi.Input[str] sql_mode: Global SQL mode. Set to empty to use MySQL server defaults. When creating a new service and not setting this field Aiven default SQL mode (strict, SQL standard compliant) will be assigned. Example: `ANSI,TRADITIONAL`.
13679
13810
  :param pulumi.Input[bool] sql_require_primary_key: Require primary key to be defined for new tables or old tables modified with ALTER TABLE and fail if missing. It is recommended to always have primary keys because various functionality may break if any large table is missing them.
@@ -13716,6 +13847,8 @@ class MySqlMysqlUserConfigMysqlArgs:
13716
13847
  pulumi.set(__self__, "interactive_timeout", interactive_timeout)
13717
13848
  if internal_tmp_mem_storage_engine is not None:
13718
13849
  pulumi.set(__self__, "internal_tmp_mem_storage_engine", internal_tmp_mem_storage_engine)
13850
+ if log_output is not None:
13851
+ pulumi.set(__self__, "log_output", log_output)
13719
13852
  if long_query_time is not None:
13720
13853
  pulumi.set(__self__, "long_query_time", long_query_time)
13721
13854
  if max_allowed_packet is not None:
@@ -13957,11 +14090,23 @@ class MySqlMysqlUserConfigMysqlArgs:
13957
14090
  def internal_tmp_mem_storage_engine(self, value: Optional[pulumi.Input[str]]):
13958
14091
  pulumi.set(self, "internal_tmp_mem_storage_engine", value)
13959
14092
 
14093
+ @property
14094
+ @pulumi.getter(name="logOutput")
14095
+ def log_output(self) -> Optional[pulumi.Input[str]]:
14096
+ """
14097
+ Enum: `INSIGHTS`, `NONE`, `TABLE`, `INSIGHTS,TABLE`. The slow log output destination when slow*query*log is ON. To enable MySQL AI Insights, choose INSIGHTS. To use MySQL AI Insights and the mysql.slow*log table at the same time, choose INSIGHTS,TABLE. To only use the mysql.slow*log table, choose TABLE. To silence slow logs, choose NONE.
14098
+ """
14099
+ return pulumi.get(self, "log_output")
14100
+
14101
+ @log_output.setter
14102
+ def log_output(self, value: Optional[pulumi.Input[str]]):
14103
+ pulumi.set(self, "log_output", value)
14104
+
13960
14105
  @property
13961
14106
  @pulumi.getter(name="longQueryTime")
13962
14107
  def long_query_time(self) -> Optional[pulumi.Input[float]]:
13963
14108
  """
13964
- The slow*query*logs work as SQL statements that take more than long*query*time seconds to execute. Default is 10s. Example: `10`.
14109
+ The slow*query*logs work as SQL statements that take more than long*query*time seconds to execute. Example: `10`.
13965
14110
  """
13966
14111
  return pulumi.get(self, "long_query_time")
13967
14112
 
@@ -14033,7 +14178,7 @@ class MySqlMysqlUserConfigMysqlArgs:
14033
14178
  @pulumi.getter(name="slowQueryLog")
14034
14179
  def slow_query_log(self) -> Optional[pulumi.Input[bool]]:
14035
14180
  """
14036
- Slow query log enables capturing of slow queries. Setting slow*query*log to false also truncates the mysql.slow_log table. Default is off.
14181
+ Slow query log enables capturing of slow queries. Setting slow*query*log to false also truncates the mysql.slow_log table.
14037
14182
  """
14038
14183
  return pulumi.get(self, "slow_query_log")
14039
14184
 
@@ -14621,8 +14766,10 @@ class OpenSearchOpensearchUserConfigArgs:
14621
14766
  static_ips: Optional[pulumi.Input[bool]] = None):
14622
14767
  """
14623
14768
  :param pulumi.Input[str] additional_backup_regions: Additional Cloud Regions for Backup Replication.
14769
+ :param pulumi.Input['OpenSearchOpensearchUserConfigAzureMigrationArgs'] azure_migration: Azure migration settings
14624
14770
  :param pulumi.Input[str] custom_domain: Serve the web frontend using a custom CNAME pointing to the Aiven DNS name. Example: `grafana.example.org`.
14625
14771
  :param pulumi.Input[bool] disable_replication_factor_adjustment: Disable automatic replication factor adjustment for multi-node services. By default, Aiven ensures all indexes are replicated at least to two nodes. Note: Due to potential data loss in case of losing a service node, this setting can no longer be activated.
14772
+ :param pulumi.Input['OpenSearchOpensearchUserConfigGcsMigrationArgs'] gcs_migration: Google Cloud Storage migration settings
14626
14773
  :param pulumi.Input[Sequence[pulumi.Input['OpenSearchOpensearchUserConfigIndexPatternArgs']]] index_patterns: Index patterns
14627
14774
  :param pulumi.Input['OpenSearchOpensearchUserConfigIndexRollupArgs'] index_rollup: Index rollup settings
14628
14775
  :param pulumi.Input['OpenSearchOpensearchUserConfigIndexTemplateArgs'] index_template: Template settings for all new indexes
@@ -14640,6 +14787,7 @@ class OpenSearchOpensearchUserConfigArgs:
14640
14787
  :param pulumi.Input[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`.
14641
14788
  :param pulumi.Input['OpenSearchOpensearchUserConfigPublicAccessArgs'] public_access: Allow access to selected service ports from the public Internet
14642
14789
  :param pulumi.Input[str] recovery_basebackup_name: Name of the basebackup to restore in forked service. Example: `backup-20191112t091354293891z`.
14790
+ :param pulumi.Input['OpenSearchOpensearchUserConfigS3MigrationArgs'] s3_migration: AWS S3 / AWS S3 compatible migration settings
14643
14791
  :param pulumi.Input['OpenSearchOpensearchUserConfigSamlArgs'] saml: OpenSearch SAML configuration
14644
14792
  :param pulumi.Input[bool] service_log: Store logs for the service so that they are available in the HTTP API and console.
14645
14793
  :param pulumi.Input[str] service_to_fork_from: Name of another service to fork from. This has effect only when a new service is being created. Example: `anotherservicename`.
@@ -14718,6 +14866,9 @@ class OpenSearchOpensearchUserConfigArgs:
14718
14866
  @property
14719
14867
  @pulumi.getter(name="azureMigration")
14720
14868
  def azure_migration(self) -> Optional[pulumi.Input['OpenSearchOpensearchUserConfigAzureMigrationArgs']]:
14869
+ """
14870
+ Azure migration settings
14871
+ """
14721
14872
  return pulumi.get(self, "azure_migration")
14722
14873
 
14723
14874
  @azure_migration.setter
@@ -14751,6 +14902,9 @@ class OpenSearchOpensearchUserConfigArgs:
14751
14902
  @property
14752
14903
  @pulumi.getter(name="gcsMigration")
14753
14904
  def gcs_migration(self) -> Optional[pulumi.Input['OpenSearchOpensearchUserConfigGcsMigrationArgs']]:
14905
+ """
14906
+ Google Cloud Storage migration settings
14907
+ """
14754
14908
  return pulumi.get(self, "gcs_migration")
14755
14909
 
14756
14910
  @gcs_migration.setter
@@ -14965,6 +15119,9 @@ class OpenSearchOpensearchUserConfigArgs:
14965
15119
  @property
14966
15120
  @pulumi.getter(name="s3Migration")
14967
15121
  def s3_migration(self) -> Optional[pulumi.Input['OpenSearchOpensearchUserConfigS3MigrationArgs']]:
15122
+ """
15123
+ AWS S3 / AWS S3 compatible migration settings
15124
+ """
14968
15125
  return pulumi.get(self, "s3_migration")
14969
15126
 
14970
15127
  @s3_migration.setter
@@ -15778,7 +15935,7 @@ class OpenSearchOpensearchUserConfigOpensearchArgs:
15778
15935
  :param pulumi.Input[bool] action_destructive_requires_name: Require explicit index names when deleting.
15779
15936
  :param pulumi.Input['OpenSearchOpensearchUserConfigOpensearchAuthFailureListenersArgs'] auth_failure_listeners: Opensearch Security Plugin Settings
15780
15937
  :param pulumi.Input[int] cluster_max_shards_per_node: Controls the number of shards allowed in the cluster per data node. Example: `1000`.
15781
- :param pulumi.Input[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 2.
15938
+ :param pulumi.Input[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.
15782
15939
  :param pulumi.Input[str] email_sender_name: Sender name placeholder to be used in Opensearch Dashboards and Opensearch keystore. Example: `alert-sender`.
15783
15940
  :param pulumi.Input[str] email_sender_password: Sender password for Opensearch alerts to authenticate with SMTP server. Example: `very-secure-mail-password`.
15784
15941
  :param pulumi.Input[str] email_sender_username: Sender username for Opensearch alerts. Example: `jane@example.com`.
@@ -15960,7 +16117,7 @@ class OpenSearchOpensearchUserConfigOpensearchArgs:
15960
16117
  @pulumi.getter(name="clusterRoutingAllocationNodeConcurrentRecoveries")
15961
16118
  def cluster_routing_allocation_node_concurrent_recoveries(self) -> Optional[pulumi.Input[int]]:
15962
16119
  """
15963
- How many concurrent incoming/outgoing shard recoveries (normally replicas) are allowed to happen on a node. Defaults to 2.
16120
+ How many concurrent incoming/outgoing shard recoveries (normally replicas) are allowed to happen on a node. Defaults to node cpu count * 2.
15964
16121
  """
15965
16122
  return pulumi.get(self, "cluster_routing_allocation_node_concurrent_recoveries")
15966
16123
 
@@ -17388,11 +17545,11 @@ class OrganizationPermissionPermissionArgs:
17388
17545
  create_time: Optional[pulumi.Input[str]] = None,
17389
17546
  update_time: Optional[pulumi.Input[str]] = None):
17390
17547
  """
17391
- :param pulumi.Input[Sequence[pulumi.Input[str]]] permissions: List of permissions. The possible values are `admin`, `developer`, `operator` and `read_only`.
17392
- :param pulumi.Input[str] principal_id: ID of the principal.
17393
- :param pulumi.Input[str] principal_type: Type of the principal. The possible values are `user` and `user_group`.
17394
- :param pulumi.Input[str] create_time: Create Time
17395
- :param pulumi.Input[str] update_time: Update Time
17548
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] permissions: List of permissions. The possible values are `admin`, `developer`, `operator`, `project:permissions:read` and `read_only`.
17549
+ :param pulumi.Input[str] principal_id: ID of the user or group.
17550
+ :param pulumi.Input[str] principal_type: The type of principal. The possible values are `user` and `user_group`.
17551
+ :param pulumi.Input[str] create_time: Time created.
17552
+ :param pulumi.Input[str] update_time: Time updated.
17396
17553
  """
17397
17554
  pulumi.set(__self__, "permissions", permissions)
17398
17555
  pulumi.set(__self__, "principal_id", principal_id)
@@ -17406,7 +17563,7 @@ class OrganizationPermissionPermissionArgs:
17406
17563
  @pulumi.getter
17407
17564
  def permissions(self) -> pulumi.Input[Sequence[pulumi.Input[str]]]:
17408
17565
  """
17409
- List of permissions. The possible values are `admin`, `developer`, `operator` and `read_only`.
17566
+ List of permissions. The possible values are `admin`, `developer`, `operator`, `project:permissions:read` and `read_only`.
17410
17567
  """
17411
17568
  return pulumi.get(self, "permissions")
17412
17569
 
@@ -17418,7 +17575,7 @@ class OrganizationPermissionPermissionArgs:
17418
17575
  @pulumi.getter(name="principalId")
17419
17576
  def principal_id(self) -> pulumi.Input[str]:
17420
17577
  """
17421
- ID of the principal.
17578
+ ID of the user or group.
17422
17579
  """
17423
17580
  return pulumi.get(self, "principal_id")
17424
17581
 
@@ -17430,7 +17587,7 @@ class OrganizationPermissionPermissionArgs:
17430
17587
  @pulumi.getter(name="principalType")
17431
17588
  def principal_type(self) -> pulumi.Input[str]:
17432
17589
  """
17433
- Type of the principal. The possible values are `user` and `user_group`.
17590
+ The type of principal. The possible values are `user` and `user_group`.
17434
17591
  """
17435
17592
  return pulumi.get(self, "principal_type")
17436
17593
 
@@ -17442,7 +17599,7 @@ class OrganizationPermissionPermissionArgs:
17442
17599
  @pulumi.getter(name="createTime")
17443
17600
  def create_time(self) -> Optional[pulumi.Input[str]]:
17444
17601
  """
17445
- Create Time
17602
+ Time created.
17446
17603
  """
17447
17604
  return pulumi.get(self, "create_time")
17448
17605
 
@@ -17454,7 +17611,7 @@ class OrganizationPermissionPermissionArgs:
17454
17611
  @pulumi.getter(name="updateTime")
17455
17612
  def update_time(self) -> Optional[pulumi.Input[str]]:
17456
17613
  """
17457
- Update Time
17614
+ Time updated.
17458
17615
  """
17459
17616
  return pulumi.get(self, "update_time")
17460
17617
 
@@ -23889,6 +24046,29 @@ class ServiceIntegrationExternalOpensearchLogsUserConfigArgs:
23889
24046
  pulumi.set(self, "selected_log_fields", value)
23890
24047
 
23891
24048
 
24049
+ @pulumi.input_type
24050
+ class ServiceIntegrationFlinkExternalPostgresqlUserConfigArgs:
24051
+ def __init__(__self__, *,
24052
+ stringtype: Optional[pulumi.Input[str]] = None):
24053
+ """
24054
+ :param pulumi.Input[str] stringtype: Enum: `unspecified`. If stringtype is set to unspecified, parameters will be sent to the server as untyped values.
24055
+ """
24056
+ if stringtype is not None:
24057
+ pulumi.set(__self__, "stringtype", stringtype)
24058
+
24059
+ @property
24060
+ @pulumi.getter
24061
+ def stringtype(self) -> Optional[pulumi.Input[str]]:
24062
+ """
24063
+ Enum: `unspecified`. If stringtype is set to unspecified, parameters will be sent to the server as untyped values.
24064
+ """
24065
+ return pulumi.get(self, "stringtype")
24066
+
24067
+ @stringtype.setter
24068
+ def stringtype(self, value: Optional[pulumi.Input[str]]):
24069
+ pulumi.set(self, "stringtype", value)
24070
+
24071
+
23892
24072
  @pulumi.input_type
23893
24073
  class ServiceIntegrationKafkaConnectUserConfigArgs:
23894
24074
  def __init__(__self__, *,
@@ -25104,31 +25284,20 @@ class ThanosThanosArgs:
25104
25284
  def __init__(__self__, *,
25105
25285
  query_frontend_uri: Optional[pulumi.Input[str]] = None,
25106
25286
  query_uri: Optional[pulumi.Input[str]] = None,
25107
- receiver_ingesting_remote_write_uri: Optional[pulumi.Input[str]] = None,
25108
25287
  receiver_remote_write_uri: Optional[pulumi.Input[str]] = None,
25109
- store_uri: Optional[pulumi.Input[str]] = None,
25110
25288
  uris: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
25111
25289
  """
25112
25290
  :param pulumi.Input[str] query_frontend_uri: Query frontend URI.
25113
25291
  :param pulumi.Input[str] query_uri: Query URI.
25114
- :param pulumi.Input[str] receiver_ingesting_remote_write_uri: Receiver ingesting remote write URI.
25115
25292
  :param pulumi.Input[str] receiver_remote_write_uri: Receiver remote write URI.
25116
- :param pulumi.Input[str] store_uri: Store URI.
25117
25293
  :param pulumi.Input[Sequence[pulumi.Input[str]]] uris: Thanos server URIs.
25118
25294
  """
25119
25295
  if query_frontend_uri is not None:
25120
25296
  pulumi.set(__self__, "query_frontend_uri", query_frontend_uri)
25121
25297
  if query_uri is not None:
25122
25298
  pulumi.set(__self__, "query_uri", query_uri)
25123
- if receiver_ingesting_remote_write_uri is not None:
25124
- pulumi.set(__self__, "receiver_ingesting_remote_write_uri", receiver_ingesting_remote_write_uri)
25125
25299
  if receiver_remote_write_uri is not None:
25126
25300
  pulumi.set(__self__, "receiver_remote_write_uri", receiver_remote_write_uri)
25127
- if store_uri is not None:
25128
- warnings.warn("""This field was added by mistake and has never worked. It will be removed in future versions.""", DeprecationWarning)
25129
- pulumi.log.warn("""store_uri is deprecated: This field was added by mistake and has never worked. It will be removed in future versions.""")
25130
- if store_uri is not None:
25131
- pulumi.set(__self__, "store_uri", store_uri)
25132
25301
  if uris is not None:
25133
25302
  pulumi.set(__self__, "uris", uris)
25134
25303
 
@@ -25156,18 +25325,6 @@ class ThanosThanosArgs:
25156
25325
  def query_uri(self, value: Optional[pulumi.Input[str]]):
25157
25326
  pulumi.set(self, "query_uri", value)
25158
25327
 
25159
- @property
25160
- @pulumi.getter(name="receiverIngestingRemoteWriteUri")
25161
- def receiver_ingesting_remote_write_uri(self) -> Optional[pulumi.Input[str]]:
25162
- """
25163
- Receiver ingesting remote write URI.
25164
- """
25165
- return pulumi.get(self, "receiver_ingesting_remote_write_uri")
25166
-
25167
- @receiver_ingesting_remote_write_uri.setter
25168
- def receiver_ingesting_remote_write_uri(self, value: Optional[pulumi.Input[str]]):
25169
- pulumi.set(self, "receiver_ingesting_remote_write_uri", value)
25170
-
25171
25328
  @property
25172
25329
  @pulumi.getter(name="receiverRemoteWriteUri")
25173
25330
  def receiver_remote_write_uri(self) -> Optional[pulumi.Input[str]]:
@@ -25180,19 +25337,6 @@ class ThanosThanosArgs:
25180
25337
  def receiver_remote_write_uri(self, value: Optional[pulumi.Input[str]]):
25181
25338
  pulumi.set(self, "receiver_remote_write_uri", value)
25182
25339
 
25183
- @property
25184
- @pulumi.getter(name="storeUri")
25185
- @_utilities.deprecated("""This field was added by mistake and has never worked. It will be removed in future versions.""")
25186
- def store_uri(self) -> Optional[pulumi.Input[str]]:
25187
- """
25188
- Store URI.
25189
- """
25190
- return pulumi.get(self, "store_uri")
25191
-
25192
- @store_uri.setter
25193
- def store_uri(self, value: Optional[pulumi.Input[str]]):
25194
- pulumi.set(self, "store_uri", value)
25195
-
25196
25340
  @property
25197
25341
  @pulumi.getter
25198
25342
  def uris(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
@@ -25210,6 +25354,7 @@ class ThanosThanosArgs:
25210
25354
  class ThanosThanosUserConfigArgs:
25211
25355
  def __init__(__self__, *,
25212
25356
  compactor: Optional[pulumi.Input['ThanosThanosUserConfigCompactorArgs']] = None,
25357
+ env: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
25213
25358
  ip_filter_objects: Optional[pulumi.Input[Sequence[pulumi.Input['ThanosThanosUserConfigIpFilterObjectArgs']]]] = None,
25214
25359
  ip_filter_strings: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
25215
25360
  ip_filters: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
@@ -25221,6 +25366,7 @@ class ThanosThanosUserConfigArgs:
25221
25366
  static_ips: Optional[pulumi.Input[bool]] = None):
25222
25367
  """
25223
25368
  :param pulumi.Input['ThanosThanosUserConfigCompactorArgs'] compactor: ThanosCompactor
25369
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] env: Environmental variables.
25224
25370
  :param pulumi.Input[Sequence[pulumi.Input['ThanosThanosUserConfigIpFilterObjectArgs']]] ip_filter_objects: Allow incoming connections from CIDR address block, e.g. `10.20.0.0/16`
25225
25371
  :param pulumi.Input[Sequence[pulumi.Input[str]]] ip_filter_strings: Allow incoming connections from CIDR address block, e.g. `10.20.0.0/16`.
25226
25372
  :param pulumi.Input[Sequence[pulumi.Input[str]]] ip_filters: Allow incoming connections from CIDR address block, e.g. `10.20.0.0/16`.
@@ -25233,6 +25379,8 @@ class ThanosThanosUserConfigArgs:
25233
25379
  """
25234
25380
  if compactor is not None:
25235
25381
  pulumi.set(__self__, "compactor", compactor)
25382
+ if env is not None:
25383
+ pulumi.set(__self__, "env", env)
25236
25384
  if ip_filter_objects is not None:
25237
25385
  pulumi.set(__self__, "ip_filter_objects", ip_filter_objects)
25238
25386
  if ip_filter_strings is not None:
@@ -25267,6 +25415,18 @@ class ThanosThanosUserConfigArgs:
25267
25415
  def compactor(self, value: Optional[pulumi.Input['ThanosThanosUserConfigCompactorArgs']]):
25268
25416
  pulumi.set(self, "compactor", value)
25269
25417
 
25418
+ @property
25419
+ @pulumi.getter
25420
+ def env(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
25421
+ """
25422
+ Environmental variables.
25423
+ """
25424
+ return pulumi.get(self, "env")
25425
+
25426
+ @env.setter
25427
+ def env(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
25428
+ pulumi.set(self, "env", value)
25429
+
25270
25430
  @property
25271
25431
  @pulumi.getter(name="ipFilterObjects")
25272
25432
  def ip_filter_objects(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ThanosThanosUserConfigIpFilterObjectArgs']]]]:
@@ -25446,6 +25606,7 @@ class ThanosThanosUserConfigPublicAccessArgs:
25446
25606
  query_frontend: Optional[pulumi.Input[bool]] = None,
25447
25607
  receiver_ingesting: Optional[pulumi.Input[bool]] = None,
25448
25608
  receiver_routing: Optional[pulumi.Input[bool]] = None,
25609
+ ruler: Optional[pulumi.Input[bool]] = None,
25449
25610
  store: Optional[pulumi.Input[bool]] = None):
25450
25611
  """
25451
25612
  :param pulumi.Input[bool] compactor: Allow clients to connect to compactor from the public internet for service nodes that are in a project VPC or another type of private network.
@@ -25453,6 +25614,7 @@ class ThanosThanosUserConfigPublicAccessArgs:
25453
25614
  :param pulumi.Input[bool] query_frontend: Allow clients to connect to query_frontend from the public internet for service nodes that are in a project VPC or another type of private network.
25454
25615
  :param pulumi.Input[bool] receiver_ingesting: Allow clients to connect to receiver_ingesting from the public internet for service nodes that are in a project VPC or another type of private network.
25455
25616
  :param pulumi.Input[bool] receiver_routing: Allow clients to connect to receiver_routing from the public internet for service nodes that are in a project VPC or another type of private network.
25617
+ :param pulumi.Input[bool] ruler: Allow clients to connect to ruler from the public internet for service nodes that are in a project VPC or another type of private network.
25456
25618
  :param pulumi.Input[bool] store: Allow clients to connect to store from the public internet for service nodes that are in a project VPC or another type of private network.
25457
25619
  """
25458
25620
  if compactor is not None:
@@ -25465,6 +25627,8 @@ class ThanosThanosUserConfigPublicAccessArgs:
25465
25627
  pulumi.set(__self__, "receiver_ingesting", receiver_ingesting)
25466
25628
  if receiver_routing is not None:
25467
25629
  pulumi.set(__self__, "receiver_routing", receiver_routing)
25630
+ if ruler is not None:
25631
+ pulumi.set(__self__, "ruler", ruler)
25468
25632
  if store is not None:
25469
25633
  pulumi.set(__self__, "store", store)
25470
25634
 
@@ -25528,6 +25692,18 @@ class ThanosThanosUserConfigPublicAccessArgs:
25528
25692
  def receiver_routing(self, value: Optional[pulumi.Input[bool]]):
25529
25693
  pulumi.set(self, "receiver_routing", value)
25530
25694
 
25695
+ @property
25696
+ @pulumi.getter
25697
+ def ruler(self) -> Optional[pulumi.Input[bool]]:
25698
+ """
25699
+ Allow clients to connect to ruler from the public internet for service nodes that are in a project VPC or another type of private network.
25700
+ """
25701
+ return pulumi.get(self, "ruler")
25702
+
25703
+ @ruler.setter
25704
+ def ruler(self, value: Optional[pulumi.Input[bool]]):
25705
+ pulumi.set(self, "ruler", value)
25706
+
25531
25707
  @property
25532
25708
  @pulumi.getter
25533
25709
  def store(self) -> Optional[pulumi.Input[bool]]:
@@ -25547,12 +25723,16 @@ class ThanosThanosUserConfigQueryArgs:
25547
25723
  query_default_evaluation_interval: Optional[pulumi.Input[str]] = None,
25548
25724
  query_lookback_delta: Optional[pulumi.Input[str]] = None,
25549
25725
  query_metadata_default_time_range: Optional[pulumi.Input[str]] = None,
25550
- query_timeout: Optional[pulumi.Input[str]] = None):
25726
+ query_timeout: Optional[pulumi.Input[str]] = None,
25727
+ store_limits_request_samples: Optional[pulumi.Input[int]] = None,
25728
+ store_limits_request_series: Optional[pulumi.Input[int]] = None):
25551
25729
  """
25552
25730
  :param pulumi.Input[str] query_default_evaluation_interval: Set the default evaluation interval for subqueries. Default: `1m`.
25553
25731
  :param pulumi.Input[str] query_lookback_delta: The maximum lookback duration for retrieving metrics during expression evaluations in PromQL. PromQL always evaluates the query for a certain timestamp, and it looks back for the given amount of time to get the latest sample. If it exceeds the maximum lookback delta, it assumes the series is stale and returns none (a gap). The lookback delta should be set to at least 2 times the slowest scrape interval. If unset, it will use the promql default of 5m. Default: `5m`.
25554
25732
  :param pulumi.Input[str] query_metadata_default_time_range: The default metadata time range duration for retrieving labels through Labels and Series API when the range parameters are not specified. The zero value means the range covers the time since the beginning. Default: `0s`.
25555
25733
  :param pulumi.Input[str] query_timeout: Maximum time to process a query by the query node. Default: `2m`.
25734
+ :param pulumi.Input[int] store_limits_request_samples: The maximum samples allowed for a single Series request. The Series call fails if this limit is exceeded. Set to 0 for no limit. NOTE: For efficiency, the limit is internally implemented as 'chunks limit' considering each chunk contains a maximum of 120 samples. The default value is 100 * store.limits.request-series. Default: `0`.
25735
+ :param pulumi.Input[int] store_limits_request_series: The maximum series allowed for a single Series request. The Series call fails if this limit is exceeded. Set to 0 for no limit. The default value is 1000 * cpu_count. Default: `0`.
25556
25736
  """
25557
25737
  if query_default_evaluation_interval is not None:
25558
25738
  pulumi.set(__self__, "query_default_evaluation_interval", query_default_evaluation_interval)
@@ -25562,6 +25742,10 @@ class ThanosThanosUserConfigQueryArgs:
25562
25742
  pulumi.set(__self__, "query_metadata_default_time_range", query_metadata_default_time_range)
25563
25743
  if query_timeout is not None:
25564
25744
  pulumi.set(__self__, "query_timeout", query_timeout)
25745
+ if store_limits_request_samples is not None:
25746
+ pulumi.set(__self__, "store_limits_request_samples", store_limits_request_samples)
25747
+ if store_limits_request_series is not None:
25748
+ pulumi.set(__self__, "store_limits_request_series", store_limits_request_series)
25565
25749
 
25566
25750
  @property
25567
25751
  @pulumi.getter(name="queryDefaultEvaluationInterval")
@@ -25611,6 +25795,30 @@ class ThanosThanosUserConfigQueryArgs:
25611
25795
  def query_timeout(self, value: Optional[pulumi.Input[str]]):
25612
25796
  pulumi.set(self, "query_timeout", value)
25613
25797
 
25798
+ @property
25799
+ @pulumi.getter(name="storeLimitsRequestSamples")
25800
+ def store_limits_request_samples(self) -> Optional[pulumi.Input[int]]:
25801
+ """
25802
+ The maximum samples allowed for a single Series request. The Series call fails if this limit is exceeded. Set to 0 for no limit. NOTE: For efficiency, the limit is internally implemented as 'chunks limit' considering each chunk contains a maximum of 120 samples. The default value is 100 * store.limits.request-series. Default: `0`.
25803
+ """
25804
+ return pulumi.get(self, "store_limits_request_samples")
25805
+
25806
+ @store_limits_request_samples.setter
25807
+ def store_limits_request_samples(self, value: Optional[pulumi.Input[int]]):
25808
+ pulumi.set(self, "store_limits_request_samples", value)
25809
+
25810
+ @property
25811
+ @pulumi.getter(name="storeLimitsRequestSeries")
25812
+ def store_limits_request_series(self) -> Optional[pulumi.Input[int]]:
25813
+ """
25814
+ The maximum series allowed for a single Series request. The Series call fails if this limit is exceeded. Set to 0 for no limit. The default value is 1000 * cpu_count. Default: `0`.
25815
+ """
25816
+ return pulumi.get(self, "store_limits_request_series")
25817
+
25818
+ @store_limits_request_series.setter
25819
+ def store_limits_request_series(self, value: Optional[pulumi.Input[int]]):
25820
+ pulumi.set(self, "store_limits_request_series", value)
25821
+
25614
25822
 
25615
25823
  @pulumi.input_type
25616
25824
  class ThanosThanosUserConfigQueryFrontendArgs: