pulumi-aiven 6.37.0a1744182902__py3-none-any.whl → 6.38.0a1744261676__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 (62) hide show
  1. pulumi_aiven/__init__.py +21 -0
  2. pulumi_aiven/_inputs.py +603 -15
  3. pulumi_aiven/alloydbomni.py +7 -15
  4. pulumi_aiven/cassandra.py +7 -15
  5. pulumi_aiven/clickhouse.py +7 -15
  6. pulumi_aiven/dragonfly.py +7 -15
  7. pulumi_aiven/flink.py +7 -15
  8. pulumi_aiven/get_alloydbomni.py +1 -4
  9. pulumi_aiven/get_cassanda.py +1 -4
  10. pulumi_aiven/get_cassandra.py +1 -4
  11. pulumi_aiven/get_clickhouse.py +1 -4
  12. pulumi_aiven/get_dragonfly.py +1 -4
  13. pulumi_aiven/get_flink.py +1 -4
  14. pulumi_aiven/get_grafana.py +1 -4
  15. pulumi_aiven/get_kafka.py +1 -4
  16. pulumi_aiven/get_kafka_connect.py +1 -4
  17. pulumi_aiven/get_kafka_mirror_maker.py +1 -4
  18. pulumi_aiven/get_m3_aggregator.py +1 -4
  19. pulumi_aiven/get_m3_db.py +1 -4
  20. pulumi_aiven/get_my_sql.py +1 -4
  21. pulumi_aiven/get_open_search.py +1 -4
  22. pulumi_aiven/get_organization.py +2 -2
  23. pulumi_aiven/get_organization_address.py +227 -0
  24. pulumi_aiven/get_organization_application_user.py +0 -20
  25. pulumi_aiven/get_organization_billing_group.py +241 -0
  26. pulumi_aiven/get_organization_billing_group_list.py +110 -0
  27. pulumi_aiven/get_organization_project.py +15 -1
  28. pulumi_aiven/get_organization_user_list.py +25 -13
  29. pulumi_aiven/get_pg.py +1 -4
  30. pulumi_aiven/get_redis.py +1 -4
  31. pulumi_aiven/get_service_component.py +15 -1
  32. pulumi_aiven/get_service_integration.py +2 -2
  33. pulumi_aiven/get_thanos.py +1 -4
  34. pulumi_aiven/get_valkey.py +1 -4
  35. pulumi_aiven/grafana.py +7 -15
  36. pulumi_aiven/influx_db.py +21 -15
  37. pulumi_aiven/kafka.py +7 -15
  38. pulumi_aiven/kafka_connect.py +7 -15
  39. pulumi_aiven/kafka_mirror_maker.py +7 -15
  40. pulumi_aiven/kafka_native_acl.py +1 -1
  41. pulumi_aiven/m3_aggregator.py +7 -15
  42. pulumi_aiven/m3_db.py +7 -15
  43. pulumi_aiven/my_sql.py +7 -15
  44. pulumi_aiven/open_search.py +7 -15
  45. pulumi_aiven/organization.py +2 -2
  46. pulumi_aiven/organization_address.py +557 -0
  47. pulumi_aiven/organization_application_user.py +4 -4
  48. pulumi_aiven/organization_billing_group.py +645 -0
  49. pulumi_aiven/organization_permission.py +2 -2
  50. pulumi_aiven/organization_project.py +47 -16
  51. pulumi_aiven/organization_user_group_member.py +0 -32
  52. pulumi_aiven/outputs.py +807 -42
  53. pulumi_aiven/pg.py +7 -15
  54. pulumi_aiven/pulumi-plugin.json +1 -1
  55. pulumi_aiven/redis.py +7 -15
  56. pulumi_aiven/service_integration.py +4 -4
  57. pulumi_aiven/thanos.py +7 -15
  58. pulumi_aiven/valkey.py +7 -15
  59. {pulumi_aiven-6.37.0a1744182902.dist-info → pulumi_aiven-6.38.0a1744261676.dist-info}/METADATA +1 -1
  60. {pulumi_aiven-6.37.0a1744182902.dist-info → pulumi_aiven-6.38.0a1744261676.dist-info}/RECORD +62 -57
  61. {pulumi_aiven-6.37.0a1744182902.dist-info → pulumi_aiven-6.38.0a1744261676.dist-info}/WHEEL +0 -0
  62. {pulumi_aiven-6.37.0a1744182902.dist-info → pulumi_aiven-6.38.0a1744261676.dist-info}/top_level.txt +0 -0
pulumi_aiven/outputs.py CHANGED
@@ -235,6 +235,8 @@ __all__ = [
235
235
  'OpenSearchServiceIntegration',
236
236
  'OpenSearchTag',
237
237
  'OpenSearchTechEmail',
238
+ 'OrganizationAddressTimeouts',
239
+ 'OrganizationBillingGroupTimeouts',
238
240
  'OrganizationGroupProjectTimeouts',
239
241
  'OrganizationPermissionPermission',
240
242
  'OrganizationProjectTag',
@@ -566,6 +568,7 @@ __all__ = [
566
568
  'GetOpenSearchServiceIntegrationResult',
567
569
  'GetOpenSearchTagResult',
568
570
  'GetOpenSearchTechEmailResult',
571
+ 'GetOrganizationBillingGroupListBillingGroupResult',
569
572
  'GetOrganizationProjectTagResult',
570
573
  'GetOrganizationUserListUserResult',
571
574
  'GetOrganizationUserListUserUserInfoResult',
@@ -2549,6 +2552,8 @@ class AlloydbomniComponent(dict):
2549
2552
  suggest = "connection_uri"
2550
2553
  elif key == "kafkaAuthenticationMethod":
2551
2554
  suggest = "kafka_authentication_method"
2555
+ elif key == "kafkaSslCa":
2556
+ suggest = "kafka_ssl_ca"
2552
2557
 
2553
2558
  if suggest:
2554
2559
  pulumi.log.warn(f"Key '{key}' not found in AlloydbomniComponent. Access the value via the '{suggest}' property getter instead.")
@@ -2566,6 +2571,7 @@ class AlloydbomniComponent(dict):
2566
2571
  connection_uri: Optional[builtins.str] = None,
2567
2572
  host: Optional[builtins.str] = None,
2568
2573
  kafka_authentication_method: Optional[builtins.str] = None,
2574
+ kafka_ssl_ca: Optional[builtins.str] = None,
2569
2575
  port: Optional[builtins.int] = None,
2570
2576
  route: Optional[builtins.str] = None,
2571
2577
  ssl: Optional[builtins.bool] = None,
@@ -2575,6 +2581,7 @@ class AlloydbomniComponent(dict):
2575
2581
  :param builtins.str connection_uri: Connection info for connecting to the service component. This is a combination of host and port.
2576
2582
  :param builtins.str host: Host name for connecting to the service component
2577
2583
  :param builtins.str kafka_authentication_method: Kafka authentication method. This is a value specific to the 'kafka' service component
2584
+ :param builtins.str kafka_ssl_ca: Kafka certificate used. The possible values are `letsencrypt` and `project_ca`.
2578
2585
  :param builtins.int port: Port number for connecting to the service component
2579
2586
  :param builtins.str route: Network access route
2580
2587
  :param builtins.bool ssl: Whether the endpoint is encrypted or accepts plaintext. By default endpoints are always encrypted and this property is only included for service components they may disable encryption
@@ -2588,6 +2595,8 @@ class AlloydbomniComponent(dict):
2588
2595
  pulumi.set(__self__, "host", host)
2589
2596
  if kafka_authentication_method is not None:
2590
2597
  pulumi.set(__self__, "kafka_authentication_method", kafka_authentication_method)
2598
+ if kafka_ssl_ca is not None:
2599
+ pulumi.set(__self__, "kafka_ssl_ca", kafka_ssl_ca)
2591
2600
  if port is not None:
2592
2601
  pulumi.set(__self__, "port", port)
2593
2602
  if route is not None:
@@ -2629,6 +2638,14 @@ class AlloydbomniComponent(dict):
2629
2638
  """
2630
2639
  return pulumi.get(self, "kafka_authentication_method")
2631
2640
 
2641
+ @property
2642
+ @pulumi.getter(name="kafkaSslCa")
2643
+ def kafka_ssl_ca(self) -> Optional[builtins.str]:
2644
+ """
2645
+ Kafka certificate used. The possible values are `letsencrypt` and `project_ca`.
2646
+ """
2647
+ return pulumi.get(self, "kafka_ssl_ca")
2648
+
2632
2649
  @property
2633
2650
  @pulumi.getter
2634
2651
  def port(self) -> Optional[builtins.int]:
@@ -3188,6 +3205,8 @@ class CassandraComponent(dict):
3188
3205
  suggest = "connection_uri"
3189
3206
  elif key == "kafkaAuthenticationMethod":
3190
3207
  suggest = "kafka_authentication_method"
3208
+ elif key == "kafkaSslCa":
3209
+ suggest = "kafka_ssl_ca"
3191
3210
 
3192
3211
  if suggest:
3193
3212
  pulumi.log.warn(f"Key '{key}' not found in CassandraComponent. Access the value via the '{suggest}' property getter instead.")
@@ -3205,6 +3224,7 @@ class CassandraComponent(dict):
3205
3224
  connection_uri: Optional[builtins.str] = None,
3206
3225
  host: Optional[builtins.str] = None,
3207
3226
  kafka_authentication_method: Optional[builtins.str] = None,
3227
+ kafka_ssl_ca: Optional[builtins.str] = None,
3208
3228
  port: Optional[builtins.int] = None,
3209
3229
  route: Optional[builtins.str] = None,
3210
3230
  ssl: Optional[builtins.bool] = None,
@@ -3214,6 +3234,7 @@ class CassandraComponent(dict):
3214
3234
  :param builtins.str connection_uri: Connection info for connecting to the service component. This is a combination of host and port.
3215
3235
  :param builtins.str host: Host name for connecting to the service component
3216
3236
  :param builtins.str kafka_authentication_method: Kafka authentication method. This is a value specific to the 'kafka' service component
3237
+ :param builtins.str kafka_ssl_ca: Kafka certificate used. The possible values are `letsencrypt` and `project_ca`.
3217
3238
  :param builtins.int port: Port number for connecting to the service component
3218
3239
  :param builtins.str route: Network access route
3219
3240
  :param builtins.bool ssl: Whether the endpoint is encrypted or accepts plaintext. By default endpoints are always encrypted and this property is only included for service components they may disable encryption
@@ -3227,6 +3248,8 @@ class CassandraComponent(dict):
3227
3248
  pulumi.set(__self__, "host", host)
3228
3249
  if kafka_authentication_method is not None:
3229
3250
  pulumi.set(__self__, "kafka_authentication_method", kafka_authentication_method)
3251
+ if kafka_ssl_ca is not None:
3252
+ pulumi.set(__self__, "kafka_ssl_ca", kafka_ssl_ca)
3230
3253
  if port is not None:
3231
3254
  pulumi.set(__self__, "port", port)
3232
3255
  if route is not None:
@@ -3268,6 +3291,14 @@ class CassandraComponent(dict):
3268
3291
  """
3269
3292
  return pulumi.get(self, "kafka_authentication_method")
3270
3293
 
3294
+ @property
3295
+ @pulumi.getter(name="kafkaSslCa")
3296
+ def kafka_ssl_ca(self) -> Optional[builtins.str]:
3297
+ """
3298
+ Kafka certificate used. The possible values are `letsencrypt` and `project_ca`.
3299
+ """
3300
+ return pulumi.get(self, "kafka_ssl_ca")
3301
+
3271
3302
  @property
3272
3303
  @pulumi.getter
3273
3304
  def port(self) -> Optional[builtins.int]:
@@ -3422,6 +3453,10 @@ class ClickhouseClickhouseUserConfig(dict):
3422
3453
  suggest = None
3423
3454
  if key == "additionalBackupRegions":
3424
3455
  suggest = "additional_backup_regions"
3456
+ elif key == "backupHour":
3457
+ suggest = "backup_hour"
3458
+ elif key == "backupMinute":
3459
+ suggest = "backup_minute"
3425
3460
  elif key == "ipFilterObjects":
3426
3461
  suggest = "ip_filter_objects"
3427
3462
  elif key == "ipFilterStrings":
@@ -3458,6 +3493,8 @@ class ClickhouseClickhouseUserConfig(dict):
3458
3493
 
3459
3494
  def __init__(__self__, *,
3460
3495
  additional_backup_regions: Optional[builtins.str] = None,
3496
+ backup_hour: Optional[builtins.int] = None,
3497
+ backup_minute: Optional[builtins.int] = None,
3461
3498
  ip_filter_objects: Optional[Sequence['outputs.ClickhouseClickhouseUserConfigIpFilterObject']] = None,
3462
3499
  ip_filter_strings: Optional[Sequence[builtins.str]] = None,
3463
3500
  ip_filters: Optional[Sequence[builtins.str]] = None,
@@ -3471,6 +3508,8 @@ class ClickhouseClickhouseUserConfig(dict):
3471
3508
  static_ips: Optional[builtins.bool] = None):
3472
3509
  """
3473
3510
  :param builtins.str additional_backup_regions: Additional Cloud Regions for Backup Replication.
3511
+ :param 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`.
3512
+ :param 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`.
3474
3513
  :param Sequence['ClickhouseClickhouseUserConfigIpFilterObjectArgs'] ip_filter_objects: Allow incoming connections from CIDR address block, e.g. `10.20.0.0/16`
3475
3514
  :param Sequence[builtins.str] ip_filter_strings: Allow incoming connections from CIDR address block, e.g. `10.20.0.0/16`.
3476
3515
  :param Sequence[builtins.str] ip_filters: Allow incoming connections from CIDR address block, e.g. `10.20.0.0/16`.
@@ -3485,6 +3524,10 @@ class ClickhouseClickhouseUserConfig(dict):
3485
3524
  """
3486
3525
  if additional_backup_regions is not None:
3487
3526
  pulumi.set(__self__, "additional_backup_regions", additional_backup_regions)
3527
+ if backup_hour is not None:
3528
+ pulumi.set(__self__, "backup_hour", backup_hour)
3529
+ if backup_minute is not None:
3530
+ pulumi.set(__self__, "backup_minute", backup_minute)
3488
3531
  if ip_filter_objects is not None:
3489
3532
  pulumi.set(__self__, "ip_filter_objects", ip_filter_objects)
3490
3533
  if ip_filter_strings is not None:
@@ -3517,6 +3560,22 @@ class ClickhouseClickhouseUserConfig(dict):
3517
3560
  """
3518
3561
  return pulumi.get(self, "additional_backup_regions")
3519
3562
 
3563
+ @property
3564
+ @pulumi.getter(name="backupHour")
3565
+ def backup_hour(self) -> Optional[builtins.int]:
3566
+ """
3567
+ 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`.
3568
+ """
3569
+ return pulumi.get(self, "backup_hour")
3570
+
3571
+ @property
3572
+ @pulumi.getter(name="backupMinute")
3573
+ def backup_minute(self) -> Optional[builtins.int]:
3574
+ """
3575
+ 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`.
3576
+ """
3577
+ return pulumi.get(self, "backup_minute")
3578
+
3520
3579
  @property
3521
3580
  @pulumi.getter(name="ipFilterObjects")
3522
3581
  def ip_filter_objects(self) -> Optional[Sequence['outputs.ClickhouseClickhouseUserConfigIpFilterObject']]:
@@ -3868,6 +3927,8 @@ class ClickhouseComponent(dict):
3868
3927
  suggest = "connection_uri"
3869
3928
  elif key == "kafkaAuthenticationMethod":
3870
3929
  suggest = "kafka_authentication_method"
3930
+ elif key == "kafkaSslCa":
3931
+ suggest = "kafka_ssl_ca"
3871
3932
 
3872
3933
  if suggest:
3873
3934
  pulumi.log.warn(f"Key '{key}' not found in ClickhouseComponent. Access the value via the '{suggest}' property getter instead.")
@@ -3885,6 +3946,7 @@ class ClickhouseComponent(dict):
3885
3946
  connection_uri: Optional[builtins.str] = None,
3886
3947
  host: Optional[builtins.str] = None,
3887
3948
  kafka_authentication_method: Optional[builtins.str] = None,
3949
+ kafka_ssl_ca: Optional[builtins.str] = None,
3888
3950
  port: Optional[builtins.int] = None,
3889
3951
  route: Optional[builtins.str] = None,
3890
3952
  ssl: Optional[builtins.bool] = None,
@@ -3894,6 +3956,7 @@ class ClickhouseComponent(dict):
3894
3956
  :param builtins.str connection_uri: Connection info for connecting to the service component. This is a combination of host and port.
3895
3957
  :param builtins.str host: Host name for connecting to the service component
3896
3958
  :param builtins.str kafka_authentication_method: Kafka authentication method. This is a value specific to the 'kafka' service component
3959
+ :param builtins.str kafka_ssl_ca: Kafka certificate used. The possible values are `letsencrypt` and `project_ca`.
3897
3960
  :param builtins.int port: Port number for connecting to the service component
3898
3961
  :param builtins.str route: Network access route
3899
3962
  :param builtins.bool ssl: Whether the endpoint is encrypted or accepts plaintext. By default endpoints are always encrypted and this property is only included for service components they may disable encryption
@@ -3907,6 +3970,8 @@ class ClickhouseComponent(dict):
3907
3970
  pulumi.set(__self__, "host", host)
3908
3971
  if kafka_authentication_method is not None:
3909
3972
  pulumi.set(__self__, "kafka_authentication_method", kafka_authentication_method)
3973
+ if kafka_ssl_ca is not None:
3974
+ pulumi.set(__self__, "kafka_ssl_ca", kafka_ssl_ca)
3910
3975
  if port is not None:
3911
3976
  pulumi.set(__self__, "port", port)
3912
3977
  if route is not None:
@@ -3948,6 +4013,14 @@ class ClickhouseComponent(dict):
3948
4013
  """
3949
4014
  return pulumi.get(self, "kafka_authentication_method")
3950
4015
 
4016
+ @property
4017
+ @pulumi.getter(name="kafkaSslCa")
4018
+ def kafka_ssl_ca(self) -> Optional[builtins.str]:
4019
+ """
4020
+ Kafka certificate used. The possible values are `letsencrypt` and `project_ca`.
4021
+ """
4022
+ return pulumi.get(self, "kafka_ssl_ca")
4023
+
3951
4024
  @property
3952
4025
  @pulumi.getter
3953
4026
  def port(self) -> Optional[builtins.int]:
@@ -4187,6 +4260,8 @@ class DragonflyComponent(dict):
4187
4260
  suggest = "connection_uri"
4188
4261
  elif key == "kafkaAuthenticationMethod":
4189
4262
  suggest = "kafka_authentication_method"
4263
+ elif key == "kafkaSslCa":
4264
+ suggest = "kafka_ssl_ca"
4190
4265
 
4191
4266
  if suggest:
4192
4267
  pulumi.log.warn(f"Key '{key}' not found in DragonflyComponent. Access the value via the '{suggest}' property getter instead.")
@@ -4204,6 +4279,7 @@ class DragonflyComponent(dict):
4204
4279
  connection_uri: Optional[builtins.str] = None,
4205
4280
  host: Optional[builtins.str] = None,
4206
4281
  kafka_authentication_method: Optional[builtins.str] = None,
4282
+ kafka_ssl_ca: Optional[builtins.str] = None,
4207
4283
  port: Optional[builtins.int] = None,
4208
4284
  route: Optional[builtins.str] = None,
4209
4285
  ssl: Optional[builtins.bool] = None,
@@ -4213,6 +4289,7 @@ class DragonflyComponent(dict):
4213
4289
  :param builtins.str connection_uri: Connection info for connecting to the service component. This is a combination of host and port.
4214
4290
  :param builtins.str host: Host name for connecting to the service component
4215
4291
  :param builtins.str kafka_authentication_method: Kafka authentication method. This is a value specific to the 'kafka' service component
4292
+ :param builtins.str kafka_ssl_ca: Kafka certificate used. The possible values are `letsencrypt` and `project_ca`.
4216
4293
  :param builtins.int port: Port number for connecting to the service component
4217
4294
  :param builtins.str route: Network access route
4218
4295
  :param builtins.bool ssl: Whether the endpoint is encrypted or accepts plaintext. By default endpoints are always encrypted and this property is only included for service components they may disable encryption
@@ -4226,6 +4303,8 @@ class DragonflyComponent(dict):
4226
4303
  pulumi.set(__self__, "host", host)
4227
4304
  if kafka_authentication_method is not None:
4228
4305
  pulumi.set(__self__, "kafka_authentication_method", kafka_authentication_method)
4306
+ if kafka_ssl_ca is not None:
4307
+ pulumi.set(__self__, "kafka_ssl_ca", kafka_ssl_ca)
4229
4308
  if port is not None:
4230
4309
  pulumi.set(__self__, "port", port)
4231
4310
  if route is not None:
@@ -4267,6 +4346,14 @@ class DragonflyComponent(dict):
4267
4346
  """
4268
4347
  return pulumi.get(self, "kafka_authentication_method")
4269
4348
 
4349
+ @property
4350
+ @pulumi.getter(name="kafkaSslCa")
4351
+ def kafka_ssl_ca(self) -> Optional[builtins.str]:
4352
+ """
4353
+ Kafka certificate used. The possible values are `letsencrypt` and `project_ca`.
4354
+ """
4355
+ return pulumi.get(self, "kafka_ssl_ca")
4356
+
4270
4357
  @property
4271
4358
  @pulumi.getter
4272
4359
  def port(self) -> Optional[builtins.int]:
@@ -5062,6 +5149,8 @@ class FlinkComponent(dict):
5062
5149
  suggest = "connection_uri"
5063
5150
  elif key == "kafkaAuthenticationMethod":
5064
5151
  suggest = "kafka_authentication_method"
5152
+ elif key == "kafkaSslCa":
5153
+ suggest = "kafka_ssl_ca"
5065
5154
 
5066
5155
  if suggest:
5067
5156
  pulumi.log.warn(f"Key '{key}' not found in FlinkComponent. Access the value via the '{suggest}' property getter instead.")
@@ -5079,6 +5168,7 @@ class FlinkComponent(dict):
5079
5168
  connection_uri: Optional[builtins.str] = None,
5080
5169
  host: Optional[builtins.str] = None,
5081
5170
  kafka_authentication_method: Optional[builtins.str] = None,
5171
+ kafka_ssl_ca: Optional[builtins.str] = None,
5082
5172
  port: Optional[builtins.int] = None,
5083
5173
  route: Optional[builtins.str] = None,
5084
5174
  ssl: Optional[builtins.bool] = None,
@@ -5088,6 +5178,7 @@ class FlinkComponent(dict):
5088
5178
  :param builtins.str connection_uri: Connection info for connecting to the service component. This is a combination of host and port.
5089
5179
  :param builtins.str host: Host name for connecting to the service component
5090
5180
  :param builtins.str kafka_authentication_method: Kafka authentication method. This is a value specific to the 'kafka' service component
5181
+ :param builtins.str kafka_ssl_ca: Kafka certificate used. The possible values are `letsencrypt` and `project_ca`.
5091
5182
  :param builtins.int port: Port number for connecting to the service component
5092
5183
  :param builtins.str route: Network access route
5093
5184
  :param builtins.bool ssl: Whether the endpoint is encrypted or accepts plaintext. By default endpoints are always encrypted and this property is only included for service components they may disable encryption
@@ -5101,6 +5192,8 @@ class FlinkComponent(dict):
5101
5192
  pulumi.set(__self__, "host", host)
5102
5193
  if kafka_authentication_method is not None:
5103
5194
  pulumi.set(__self__, "kafka_authentication_method", kafka_authentication_method)
5195
+ if kafka_ssl_ca is not None:
5196
+ pulumi.set(__self__, "kafka_ssl_ca", kafka_ssl_ca)
5104
5197
  if port is not None:
5105
5198
  pulumi.set(__self__, "port", port)
5106
5199
  if route is not None:
@@ -5142,6 +5235,14 @@ class FlinkComponent(dict):
5142
5235
  """
5143
5236
  return pulumi.get(self, "kafka_authentication_method")
5144
5237
 
5238
+ @property
5239
+ @pulumi.getter(name="kafkaSslCa")
5240
+ def kafka_ssl_ca(self) -> Optional[builtins.str]:
5241
+ """
5242
+ Kafka certificate used. The possible values are `letsencrypt` and `project_ca`.
5243
+ """
5244
+ return pulumi.get(self, "kafka_ssl_ca")
5245
+
5145
5246
  @property
5146
5247
  @pulumi.getter
5147
5248
  def port(self) -> Optional[builtins.int]:
@@ -6081,6 +6182,8 @@ class GrafanaComponent(dict):
6081
6182
  suggest = "connection_uri"
6082
6183
  elif key == "kafkaAuthenticationMethod":
6083
6184
  suggest = "kafka_authentication_method"
6185
+ elif key == "kafkaSslCa":
6186
+ suggest = "kafka_ssl_ca"
6084
6187
 
6085
6188
  if suggest:
6086
6189
  pulumi.log.warn(f"Key '{key}' not found in GrafanaComponent. Access the value via the '{suggest}' property getter instead.")
@@ -6098,6 +6201,7 @@ class GrafanaComponent(dict):
6098
6201
  connection_uri: Optional[builtins.str] = None,
6099
6202
  host: Optional[builtins.str] = None,
6100
6203
  kafka_authentication_method: Optional[builtins.str] = None,
6204
+ kafka_ssl_ca: Optional[builtins.str] = None,
6101
6205
  port: Optional[builtins.int] = None,
6102
6206
  route: Optional[builtins.str] = None,
6103
6207
  ssl: Optional[builtins.bool] = None,
@@ -6107,6 +6211,7 @@ class GrafanaComponent(dict):
6107
6211
  :param builtins.str connection_uri: Connection info for connecting to the service component. This is a combination of host and port.
6108
6212
  :param builtins.str host: Host name for connecting to the service component
6109
6213
  :param builtins.str kafka_authentication_method: Kafka authentication method. This is a value specific to the 'kafka' service component
6214
+ :param builtins.str kafka_ssl_ca: Kafka certificate used. The possible values are `letsencrypt` and `project_ca`.
6110
6215
  :param builtins.int port: Port number for connecting to the service component
6111
6216
  :param builtins.str route: Network access route
6112
6217
  :param builtins.bool ssl: Whether the endpoint is encrypted or accepts plaintext. By default endpoints are always encrypted and this property is only included for service components they may disable encryption
@@ -6120,6 +6225,8 @@ class GrafanaComponent(dict):
6120
6225
  pulumi.set(__self__, "host", host)
6121
6226
  if kafka_authentication_method is not None:
6122
6227
  pulumi.set(__self__, "kafka_authentication_method", kafka_authentication_method)
6228
+ if kafka_ssl_ca is not None:
6229
+ pulumi.set(__self__, "kafka_ssl_ca", kafka_ssl_ca)
6123
6230
  if port is not None:
6124
6231
  pulumi.set(__self__, "port", port)
6125
6232
  if route is not None:
@@ -6161,6 +6268,14 @@ class GrafanaComponent(dict):
6161
6268
  """
6162
6269
  return pulumi.get(self, "kafka_authentication_method")
6163
6270
 
6271
+ @property
6272
+ @pulumi.getter(name="kafkaSslCa")
6273
+ def kafka_ssl_ca(self) -> Optional[builtins.str]:
6274
+ """
6275
+ Kafka certificate used. The possible values are `letsencrypt` and `project_ca`.
6276
+ """
6277
+ return pulumi.get(self, "kafka_ssl_ca")
6278
+
6164
6279
  @property
6165
6280
  @pulumi.getter
6166
6281
  def port(self) -> Optional[builtins.int]:
@@ -7977,6 +8092,8 @@ class InfluxDbComponent(dict):
7977
8092
  suggest = "connection_uri"
7978
8093
  elif key == "kafkaAuthenticationMethod":
7979
8094
  suggest = "kafka_authentication_method"
8095
+ elif key == "kafkaSslCa":
8096
+ suggest = "kafka_ssl_ca"
7980
8097
 
7981
8098
  if suggest:
7982
8099
  pulumi.log.warn(f"Key '{key}' not found in InfluxDbComponent. Access the value via the '{suggest}' property getter instead.")
@@ -7994,6 +8111,7 @@ class InfluxDbComponent(dict):
7994
8111
  connection_uri: Optional[builtins.str] = None,
7995
8112
  host: Optional[builtins.str] = None,
7996
8113
  kafka_authentication_method: Optional[builtins.str] = None,
8114
+ kafka_ssl_ca: Optional[builtins.str] = None,
7997
8115
  port: Optional[builtins.int] = None,
7998
8116
  route: Optional[builtins.str] = None,
7999
8117
  ssl: Optional[builtins.bool] = None,
@@ -8003,6 +8121,7 @@ class InfluxDbComponent(dict):
8003
8121
  :param builtins.str connection_uri: Connection info for connecting to the service component. This is a combination of host and port.
8004
8122
  :param builtins.str host: Host name for connecting to the service component
8005
8123
  :param builtins.str kafka_authentication_method: Kafka authentication method. This is a value specific to the 'kafka' service component
8124
+ :param builtins.str kafka_ssl_ca: Kafka certificate used. The possible values are `letsencrypt` and `project_ca`.
8006
8125
  :param builtins.int port: Port number for connecting to the service component
8007
8126
  :param builtins.str route: Network access route
8008
8127
  :param builtins.bool ssl: Whether the endpoint is encrypted or accepts plaintext. By default endpoints are always encrypted and this property is only included for service components they may disable encryption
@@ -8016,6 +8135,8 @@ class InfluxDbComponent(dict):
8016
8135
  pulumi.set(__self__, "host", host)
8017
8136
  if kafka_authentication_method is not None:
8018
8137
  pulumi.set(__self__, "kafka_authentication_method", kafka_authentication_method)
8138
+ if kafka_ssl_ca is not None:
8139
+ pulumi.set(__self__, "kafka_ssl_ca", kafka_ssl_ca)
8019
8140
  if port is not None:
8020
8141
  pulumi.set(__self__, "port", port)
8021
8142
  if route is not None:
@@ -8057,6 +8178,14 @@ class InfluxDbComponent(dict):
8057
8178
  """
8058
8179
  return pulumi.get(self, "kafka_authentication_method")
8059
8180
 
8181
+ @property
8182
+ @pulumi.getter(name="kafkaSslCa")
8183
+ def kafka_ssl_ca(self) -> Optional[builtins.str]:
8184
+ """
8185
+ Kafka certificate used. The possible values are `letsencrypt` and `project_ca`.
8186
+ """
8187
+ return pulumi.get(self, "kafka_ssl_ca")
8188
+
8060
8189
  @property
8061
8190
  @pulumi.getter
8062
8191
  def port(self) -> Optional[builtins.int]:
@@ -8792,6 +8921,8 @@ class KafkaComponent(dict):
8792
8921
  suggest = "connection_uri"
8793
8922
  elif key == "kafkaAuthenticationMethod":
8794
8923
  suggest = "kafka_authentication_method"
8924
+ elif key == "kafkaSslCa":
8925
+ suggest = "kafka_ssl_ca"
8795
8926
 
8796
8927
  if suggest:
8797
8928
  pulumi.log.warn(f"Key '{key}' not found in KafkaComponent. Access the value via the '{suggest}' property getter instead.")
@@ -8809,6 +8940,7 @@ class KafkaComponent(dict):
8809
8940
  connection_uri: Optional[builtins.str] = None,
8810
8941
  host: Optional[builtins.str] = None,
8811
8942
  kafka_authentication_method: Optional[builtins.str] = None,
8943
+ kafka_ssl_ca: Optional[builtins.str] = None,
8812
8944
  port: Optional[builtins.int] = None,
8813
8945
  route: Optional[builtins.str] = None,
8814
8946
  ssl: Optional[builtins.bool] = None,
@@ -8818,6 +8950,7 @@ class KafkaComponent(dict):
8818
8950
  :param builtins.str connection_uri: Connection info for connecting to the service component. This is a combination of host and port.
8819
8951
  :param builtins.str host: Host name for connecting to the service component
8820
8952
  :param builtins.str kafka_authentication_method: Kafka authentication method. This is a value specific to the 'kafka' service component
8953
+ :param builtins.str kafka_ssl_ca: Kafka certificate used. The possible values are `letsencrypt` and `project_ca`.
8821
8954
  :param builtins.int port: Port number for connecting to the service component
8822
8955
  :param builtins.str route: Network access route
8823
8956
  :param builtins.bool ssl: Whether the endpoint is encrypted or accepts plaintext. By default endpoints are always encrypted and this property is only included for service components they may disable encryption
@@ -8831,6 +8964,8 @@ class KafkaComponent(dict):
8831
8964
  pulumi.set(__self__, "host", host)
8832
8965
  if kafka_authentication_method is not None:
8833
8966
  pulumi.set(__self__, "kafka_authentication_method", kafka_authentication_method)
8967
+ if kafka_ssl_ca is not None:
8968
+ pulumi.set(__self__, "kafka_ssl_ca", kafka_ssl_ca)
8834
8969
  if port is not None:
8835
8970
  pulumi.set(__self__, "port", port)
8836
8971
  if route is not None:
@@ -8872,6 +9007,14 @@ class KafkaComponent(dict):
8872
9007
  """
8873
9008
  return pulumi.get(self, "kafka_authentication_method")
8874
9009
 
9010
+ @property
9011
+ @pulumi.getter(name="kafkaSslCa")
9012
+ def kafka_ssl_ca(self) -> Optional[builtins.str]:
9013
+ """
9014
+ Kafka certificate used. The possible values are `letsencrypt` and `project_ca`.
9015
+ """
9016
+ return pulumi.get(self, "kafka_ssl_ca")
9017
+
8875
9018
  @property
8876
9019
  @pulumi.getter
8877
9020
  def port(self) -> Optional[builtins.int]:
@@ -8914,6 +9057,8 @@ class KafkaConnectComponent(dict):
8914
9057
  suggest = "connection_uri"
8915
9058
  elif key == "kafkaAuthenticationMethod":
8916
9059
  suggest = "kafka_authentication_method"
9060
+ elif key == "kafkaSslCa":
9061
+ suggest = "kafka_ssl_ca"
8917
9062
 
8918
9063
  if suggest:
8919
9064
  pulumi.log.warn(f"Key '{key}' not found in KafkaConnectComponent. Access the value via the '{suggest}' property getter instead.")
@@ -8931,6 +9076,7 @@ class KafkaConnectComponent(dict):
8931
9076
  connection_uri: Optional[builtins.str] = None,
8932
9077
  host: Optional[builtins.str] = None,
8933
9078
  kafka_authentication_method: Optional[builtins.str] = None,
9079
+ kafka_ssl_ca: Optional[builtins.str] = None,
8934
9080
  port: Optional[builtins.int] = None,
8935
9081
  route: Optional[builtins.str] = None,
8936
9082
  ssl: Optional[builtins.bool] = None,
@@ -8940,6 +9086,7 @@ class KafkaConnectComponent(dict):
8940
9086
  :param builtins.str connection_uri: Connection info for connecting to the service component. This is a combination of host and port.
8941
9087
  :param builtins.str host: Host name for connecting to the service component
8942
9088
  :param builtins.str kafka_authentication_method: Kafka authentication method. This is a value specific to the 'kafka' service component
9089
+ :param builtins.str kafka_ssl_ca: Kafka certificate used. The possible values are `letsencrypt` and `project_ca`.
8943
9090
  :param builtins.int port: Port number for connecting to the service component
8944
9091
  :param builtins.str route: Network access route
8945
9092
  :param builtins.bool ssl: Whether the endpoint is encrypted or accepts plaintext. By default endpoints are always encrypted and this property is only included for service components they may disable encryption
@@ -8953,6 +9100,8 @@ class KafkaConnectComponent(dict):
8953
9100
  pulumi.set(__self__, "host", host)
8954
9101
  if kafka_authentication_method is not None:
8955
9102
  pulumi.set(__self__, "kafka_authentication_method", kafka_authentication_method)
9103
+ if kafka_ssl_ca is not None:
9104
+ pulumi.set(__self__, "kafka_ssl_ca", kafka_ssl_ca)
8956
9105
  if port is not None:
8957
9106
  pulumi.set(__self__, "port", port)
8958
9107
  if route is not None:
@@ -8994,6 +9143,14 @@ class KafkaConnectComponent(dict):
8994
9143
  """
8995
9144
  return pulumi.get(self, "kafka_authentication_method")
8996
9145
 
9146
+ @property
9147
+ @pulumi.getter(name="kafkaSslCa")
9148
+ def kafka_ssl_ca(self) -> Optional[builtins.str]:
9149
+ """
9150
+ Kafka certificate used. The possible values are `letsencrypt` and `project_ca`.
9151
+ """
9152
+ return pulumi.get(self, "kafka_ssl_ca")
9153
+
8997
9154
  @property
8998
9155
  @pulumi.getter
8999
9156
  def port(self) -> Optional[builtins.int]:
@@ -10238,7 +10395,7 @@ class KafkaKafkaUserConfig(dict):
10238
10395
  :param builtins.bool kafka_rest_authorization: Enable authorization in Kafka-REST service.
10239
10396
  :param 'KafkaKafkaUserConfigKafkaRestConfigArgs' kafka_rest_config: Kafka REST configuration
10240
10397
  :param 'KafkaKafkaUserConfigKafkaSaslMechanismsArgs' kafka_sasl_mechanisms: Kafka SASL mechanisms
10241
- :param builtins.str kafka_version: Enum: `3.1`, `3.2`, `3.3`, `3.4`, `3.5`, `3.6`, `3.7`, `3.8`, and newer. Kafka major version.
10398
+ :param builtins.str kafka_version: Enum: `3.1`, `3.2`, `3.3`, `3.4`, `3.5`, `3.6`, `3.7`, `3.8`, `3.9`, and newer. Kafka major version.
10242
10399
  :param builtins.bool letsencrypt_sasl_privatelink: Use Letsencrypt CA for Kafka SASL via Privatelink.
10243
10400
  :param 'KafkaKafkaUserConfigPrivateAccessArgs' private_access: Allow access to selected service ports from private networks
10244
10401
  :param 'KafkaKafkaUserConfigPrivatelinkAccessArgs' privatelink_access: Allow access to selected service components through Privatelink
@@ -10436,7 +10593,7 @@ class KafkaKafkaUserConfig(dict):
10436
10593
  @pulumi.getter(name="kafkaVersion")
10437
10594
  def kafka_version(self) -> Optional[builtins.str]:
10438
10595
  """
10439
- Enum: `3.1`, `3.2`, `3.3`, `3.4`, `3.5`, `3.6`, `3.7`, `3.8`, and newer. Kafka major version.
10596
+ Enum: `3.1`, `3.2`, `3.3`, `3.4`, `3.5`, `3.6`, `3.7`, `3.8`, `3.9`, and newer. Kafka major version.
10440
10597
  """
10441
10598
  return pulumi.get(self, "kafka_version")
10442
10599
 
@@ -12404,6 +12561,8 @@ class KafkaMirrorMakerComponent(dict):
12404
12561
  suggest = "connection_uri"
12405
12562
  elif key == "kafkaAuthenticationMethod":
12406
12563
  suggest = "kafka_authentication_method"
12564
+ elif key == "kafkaSslCa":
12565
+ suggest = "kafka_ssl_ca"
12407
12566
 
12408
12567
  if suggest:
12409
12568
  pulumi.log.warn(f"Key '{key}' not found in KafkaMirrorMakerComponent. Access the value via the '{suggest}' property getter instead.")
@@ -12421,6 +12580,7 @@ class KafkaMirrorMakerComponent(dict):
12421
12580
  connection_uri: Optional[builtins.str] = None,
12422
12581
  host: Optional[builtins.str] = None,
12423
12582
  kafka_authentication_method: Optional[builtins.str] = None,
12583
+ kafka_ssl_ca: Optional[builtins.str] = None,
12424
12584
  port: Optional[builtins.int] = None,
12425
12585
  route: Optional[builtins.str] = None,
12426
12586
  ssl: Optional[builtins.bool] = None,
@@ -12430,6 +12590,7 @@ class KafkaMirrorMakerComponent(dict):
12430
12590
  :param builtins.str connection_uri: Connection info for connecting to the service component. This is a combination of host and port.
12431
12591
  :param builtins.str host: Host name for connecting to the service component
12432
12592
  :param builtins.str kafka_authentication_method: Kafka authentication method. This is a value specific to the 'kafka' service component
12593
+ :param builtins.str kafka_ssl_ca: Kafka certificate used. The possible values are `letsencrypt` and `project_ca`.
12433
12594
  :param builtins.int port: Port number for connecting to the service component
12434
12595
  :param builtins.str route: Network access route
12435
12596
  :param builtins.bool ssl: Whether the endpoint is encrypted or accepts plaintext. By default endpoints are always encrypted and this property is only included for service components they may disable encryption
@@ -12443,6 +12604,8 @@ class KafkaMirrorMakerComponent(dict):
12443
12604
  pulumi.set(__self__, "host", host)
12444
12605
  if kafka_authentication_method is not None:
12445
12606
  pulumi.set(__self__, "kafka_authentication_method", kafka_authentication_method)
12607
+ if kafka_ssl_ca is not None:
12608
+ pulumi.set(__self__, "kafka_ssl_ca", kafka_ssl_ca)
12446
12609
  if port is not None:
12447
12610
  pulumi.set(__self__, "port", port)
12448
12611
  if route is not None:
@@ -12484,6 +12647,14 @@ class KafkaMirrorMakerComponent(dict):
12484
12647
  """
12485
12648
  return pulumi.get(self, "kafka_authentication_method")
12486
12649
 
12650
+ @property
12651
+ @pulumi.getter(name="kafkaSslCa")
12652
+ def kafka_ssl_ca(self) -> Optional[builtins.str]:
12653
+ """
12654
+ Kafka certificate used. The possible values are `letsencrypt` and `project_ca`.
12655
+ """
12656
+ return pulumi.get(self, "kafka_ssl_ca")
12657
+
12487
12658
  @property
12488
12659
  @pulumi.getter
12489
12660
  def port(self) -> Optional[builtins.int]:
@@ -13185,7 +13356,7 @@ class KafkaTopicConfig(dict):
13185
13356
  :param builtins.str max_compaction_lag_ms: max.compaction.lag.ms value
13186
13357
  :param builtins.str max_message_bytes: max.message.bytes value
13187
13358
  :param builtins.bool message_downconversion_enable: message.downconversion.enable value
13188
- :param builtins.str message_format_version: message.format.version value. The possible values are `0.10.0`, `0.10.0-IV0`, `0.10.0-IV1`, `0.10.1`, `0.10.1-IV0`, `0.10.1-IV1`, `0.10.1-IV2`, `0.10.2`, `0.10.2-IV0`, `0.11.0`, `0.11.0-IV0`, `0.11.0-IV1`, `0.11.0-IV2`, `0.8.0`, `0.8.1`, `0.8.2`, `0.9.0`, `1.0`, `1.0-IV0`, `1.1`, `1.1-IV0`, `2.0`, `2.0-IV0`, `2.0-IV1`, `2.1`, `2.1-IV0`, `2.1-IV1`, `2.1-IV2`, `2.2`, `2.2-IV0`, `2.2-IV1`, `2.3`, `2.3-IV0`, `2.3-IV1`, `2.4`, `2.4-IV0`, `2.4-IV1`, `2.5`, `2.5-IV0`, `2.6`, `2.6-IV0`, `2.7`, `2.7-IV0`, `2.7-IV1`, `2.7-IV2`, `2.8`, `2.8-IV0`, `2.8-IV1`, `3.0`, `3.0-IV0`, `3.0-IV1`, `3.1`, `3.1-IV0`, `3.2`, `3.2-IV0`, `3.3`, `3.3-IV0`, `3.3-IV1`, `3.3-IV2`, `3.3-IV3`, `3.4`, `3.4-IV0`, `3.5`, `3.5-IV0`, `3.5-IV1`, `3.5-IV2`, `3.6`, `3.6-IV0`, `3.6-IV1`, `3.6-IV2`, `3.7`, `3.7-IV0`, `3.7-IV1`, `3.7-IV2`, `3.7-IV3`, `3.7-IV4`, `3.8`, `3.8-IV0`, `3.9`, `3.9-IV0` and `3.9-IV1`.
13359
+ :param builtins.str message_format_version: message.format.version value. The possible values are `0.10.0`, `0.10.0-IV0`, `0.10.0-IV1`, `0.10.1`, `0.10.1-IV0`, `0.10.1-IV1`, `0.10.1-IV2`, `0.10.2`, `0.10.2-IV0`, `0.11.0`, `0.11.0-IV0`, `0.11.0-IV1`, `0.11.0-IV2`, `0.8.0`, `0.8.1`, `0.8.2`, `0.9.0`, `1.0`, `1.0-IV0`, `1.1`, `1.1-IV0`, `2.0`, `2.0-IV0`, `2.0-IV1`, `2.1`, `2.1-IV0`, `2.1-IV1`, `2.1-IV2`, `2.2`, `2.2-IV0`, `2.2-IV1`, `2.3`, `2.3-IV0`, `2.3-IV1`, `2.4`, `2.4-IV0`, `2.4-IV1`, `2.5`, `2.5-IV0`, `2.6`, `2.6-IV0`, `2.7`, `2.7-IV0`, `2.7-IV1`, `2.7-IV2`, `2.8`, `2.8-IV0`, `2.8-IV1`, `3.0`, `3.0-IV0`, `3.0-IV1`, `3.1`, `3.1-IV0`, `3.2`, `3.2-IV0`, `3.3`, `3.3-IV0`, `3.3-IV1`, `3.3-IV2`, `3.3-IV3`, `3.4`, `3.4-IV0`, `3.5`, `3.5-IV0`, `3.5-IV1`, `3.5-IV2`, `3.6`, `3.6-IV0`, `3.6-IV1`, `3.6-IV2`, `3.7`, `3.7-IV0`, `3.7-IV1`, `3.7-IV2`, `3.7-IV3`, `3.7-IV4`, `3.8`, `3.8-IV0`, `3.9`, `3.9-IV0`, `3.9-IV1`, `4.1` and `4.1-IV0`.
13189
13360
  :param builtins.str message_timestamp_difference_max_ms: message.timestamp.difference.max.ms value
13190
13361
  :param builtins.str message_timestamp_type: message.timestamp.type value. The possible values are `CreateTime` and `LogAppendTime`.
13191
13362
  :param builtins.float min_cleanable_dirty_ratio: min.cleanable.dirty.ratio value
@@ -13356,7 +13527,7 @@ class KafkaTopicConfig(dict):
13356
13527
  @pulumi.getter(name="messageFormatVersion")
13357
13528
  def message_format_version(self) -> Optional[builtins.str]:
13358
13529
  """
13359
- message.format.version value. The possible values are `0.10.0`, `0.10.0-IV0`, `0.10.0-IV1`, `0.10.1`, `0.10.1-IV0`, `0.10.1-IV1`, `0.10.1-IV2`, `0.10.2`, `0.10.2-IV0`, `0.11.0`, `0.11.0-IV0`, `0.11.0-IV1`, `0.11.0-IV2`, `0.8.0`, `0.8.1`, `0.8.2`, `0.9.0`, `1.0`, `1.0-IV0`, `1.1`, `1.1-IV0`, `2.0`, `2.0-IV0`, `2.0-IV1`, `2.1`, `2.1-IV0`, `2.1-IV1`, `2.1-IV2`, `2.2`, `2.2-IV0`, `2.2-IV1`, `2.3`, `2.3-IV0`, `2.3-IV1`, `2.4`, `2.4-IV0`, `2.4-IV1`, `2.5`, `2.5-IV0`, `2.6`, `2.6-IV0`, `2.7`, `2.7-IV0`, `2.7-IV1`, `2.7-IV2`, `2.8`, `2.8-IV0`, `2.8-IV1`, `3.0`, `3.0-IV0`, `3.0-IV1`, `3.1`, `3.1-IV0`, `3.2`, `3.2-IV0`, `3.3`, `3.3-IV0`, `3.3-IV1`, `3.3-IV2`, `3.3-IV3`, `3.4`, `3.4-IV0`, `3.5`, `3.5-IV0`, `3.5-IV1`, `3.5-IV2`, `3.6`, `3.6-IV0`, `3.6-IV1`, `3.6-IV2`, `3.7`, `3.7-IV0`, `3.7-IV1`, `3.7-IV2`, `3.7-IV3`, `3.7-IV4`, `3.8`, `3.8-IV0`, `3.9`, `3.9-IV0` and `3.9-IV1`.
13530
+ message.format.version value. The possible values are `0.10.0`, `0.10.0-IV0`, `0.10.0-IV1`, `0.10.1`, `0.10.1-IV0`, `0.10.1-IV1`, `0.10.1-IV2`, `0.10.2`, `0.10.2-IV0`, `0.11.0`, `0.11.0-IV0`, `0.11.0-IV1`, `0.11.0-IV2`, `0.8.0`, `0.8.1`, `0.8.2`, `0.9.0`, `1.0`, `1.0-IV0`, `1.1`, `1.1-IV0`, `2.0`, `2.0-IV0`, `2.0-IV1`, `2.1`, `2.1-IV0`, `2.1-IV1`, `2.1-IV2`, `2.2`, `2.2-IV0`, `2.2-IV1`, `2.3`, `2.3-IV0`, `2.3-IV1`, `2.4`, `2.4-IV0`, `2.4-IV1`, `2.5`, `2.5-IV0`, `2.6`, `2.6-IV0`, `2.7`, `2.7-IV0`, `2.7-IV1`, `2.7-IV2`, `2.8`, `2.8-IV0`, `2.8-IV1`, `3.0`, `3.0-IV0`, `3.0-IV1`, `3.1`, `3.1-IV0`, `3.2`, `3.2-IV0`, `3.3`, `3.3-IV0`, `3.3-IV1`, `3.3-IV2`, `3.3-IV3`, `3.4`, `3.4-IV0`, `3.5`, `3.5-IV0`, `3.5-IV1`, `3.5-IV2`, `3.6`, `3.6-IV0`, `3.6-IV1`, `3.6-IV2`, `3.7`, `3.7-IV0`, `3.7-IV1`, `3.7-IV2`, `3.7-IV3`, `3.7-IV4`, `3.8`, `3.8-IV0`, `3.9`, `3.9-IV0`, `3.9-IV1`, `4.1` and `4.1-IV0`.
13360
13531
  """
13361
13532
  return pulumi.get(self, "message_format_version")
13362
13533
 
@@ -13513,6 +13684,8 @@ class M3AggregatorComponent(dict):
13513
13684
  suggest = "connection_uri"
13514
13685
  elif key == "kafkaAuthenticationMethod":
13515
13686
  suggest = "kafka_authentication_method"
13687
+ elif key == "kafkaSslCa":
13688
+ suggest = "kafka_ssl_ca"
13516
13689
 
13517
13690
  if suggest:
13518
13691
  pulumi.log.warn(f"Key '{key}' not found in M3AggregatorComponent. Access the value via the '{suggest}' property getter instead.")
@@ -13530,6 +13703,7 @@ class M3AggregatorComponent(dict):
13530
13703
  connection_uri: Optional[builtins.str] = None,
13531
13704
  host: Optional[builtins.str] = None,
13532
13705
  kafka_authentication_method: Optional[builtins.str] = None,
13706
+ kafka_ssl_ca: Optional[builtins.str] = None,
13533
13707
  port: Optional[builtins.int] = None,
13534
13708
  route: Optional[builtins.str] = None,
13535
13709
  ssl: Optional[builtins.bool] = None,
@@ -13539,6 +13713,7 @@ class M3AggregatorComponent(dict):
13539
13713
  :param builtins.str connection_uri: Connection info for connecting to the service component. This is a combination of host and port.
13540
13714
  :param builtins.str host: Host name for connecting to the service component
13541
13715
  :param builtins.str kafka_authentication_method: Kafka authentication method. This is a value specific to the 'kafka' service component
13716
+ :param builtins.str kafka_ssl_ca: Kafka certificate used. The possible values are `letsencrypt` and `project_ca`.
13542
13717
  :param builtins.int port: Port number for connecting to the service component
13543
13718
  :param builtins.str route: Network access route
13544
13719
  :param builtins.bool ssl: Whether the endpoint is encrypted or accepts plaintext. By default endpoints are always encrypted and this property is only included for service components they may disable encryption
@@ -13552,6 +13727,8 @@ class M3AggregatorComponent(dict):
13552
13727
  pulumi.set(__self__, "host", host)
13553
13728
  if kafka_authentication_method is not None:
13554
13729
  pulumi.set(__self__, "kafka_authentication_method", kafka_authentication_method)
13730
+ if kafka_ssl_ca is not None:
13731
+ pulumi.set(__self__, "kafka_ssl_ca", kafka_ssl_ca)
13555
13732
  if port is not None:
13556
13733
  pulumi.set(__self__, "port", port)
13557
13734
  if route is not None:
@@ -13593,6 +13770,14 @@ class M3AggregatorComponent(dict):
13593
13770
  """
13594
13771
  return pulumi.get(self, "kafka_authentication_method")
13595
13772
 
13773
+ @property
13774
+ @pulumi.getter(name="kafkaSslCa")
13775
+ def kafka_ssl_ca(self) -> Optional[builtins.str]:
13776
+ """
13777
+ Kafka certificate used. The possible values are `letsencrypt` and `project_ca`.
13778
+ """
13779
+ return pulumi.get(self, "kafka_ssl_ca")
13780
+
13596
13781
  @property
13597
13782
  @pulumi.getter
13598
13783
  def port(self) -> Optional[builtins.int]:
@@ -13943,6 +14128,8 @@ class M3DbComponent(dict):
13943
14128
  suggest = "connection_uri"
13944
14129
  elif key == "kafkaAuthenticationMethod":
13945
14130
  suggest = "kafka_authentication_method"
14131
+ elif key == "kafkaSslCa":
14132
+ suggest = "kafka_ssl_ca"
13946
14133
 
13947
14134
  if suggest:
13948
14135
  pulumi.log.warn(f"Key '{key}' not found in M3DbComponent. Access the value via the '{suggest}' property getter instead.")
@@ -13960,6 +14147,7 @@ class M3DbComponent(dict):
13960
14147
  connection_uri: Optional[builtins.str] = None,
13961
14148
  host: Optional[builtins.str] = None,
13962
14149
  kafka_authentication_method: Optional[builtins.str] = None,
14150
+ kafka_ssl_ca: Optional[builtins.str] = None,
13963
14151
  port: Optional[builtins.int] = None,
13964
14152
  route: Optional[builtins.str] = None,
13965
14153
  ssl: Optional[builtins.bool] = None,
@@ -13969,6 +14157,7 @@ class M3DbComponent(dict):
13969
14157
  :param builtins.str connection_uri: Connection info for connecting to the service component. This is a combination of host and port.
13970
14158
  :param builtins.str host: Host name for connecting to the service component
13971
14159
  :param builtins.str kafka_authentication_method: Kafka authentication method. This is a value specific to the 'kafka' service component
14160
+ :param builtins.str kafka_ssl_ca: Kafka certificate used. The possible values are `letsencrypt` and `project_ca`.
13972
14161
  :param builtins.int port: Port number for connecting to the service component
13973
14162
  :param builtins.str route: Network access route
13974
14163
  :param builtins.bool ssl: Whether the endpoint is encrypted or accepts plaintext. By default endpoints are always encrypted and this property is only included for service components they may disable encryption
@@ -13982,6 +14171,8 @@ class M3DbComponent(dict):
13982
14171
  pulumi.set(__self__, "host", host)
13983
14172
  if kafka_authentication_method is not None:
13984
14173
  pulumi.set(__self__, "kafka_authentication_method", kafka_authentication_method)
14174
+ if kafka_ssl_ca is not None:
14175
+ pulumi.set(__self__, "kafka_ssl_ca", kafka_ssl_ca)
13985
14176
  if port is not None:
13986
14177
  pulumi.set(__self__, "port", port)
13987
14178
  if route is not None:
@@ -14023,6 +14214,14 @@ class M3DbComponent(dict):
14023
14214
  """
14024
14215
  return pulumi.get(self, "kafka_authentication_method")
14025
14216
 
14217
+ @property
14218
+ @pulumi.getter(name="kafkaSslCa")
14219
+ def kafka_ssl_ca(self) -> Optional[builtins.str]:
14220
+ """
14221
+ Kafka certificate used. The possible values are `letsencrypt` and `project_ca`.
14222
+ """
14223
+ return pulumi.get(self, "kafka_ssl_ca")
14224
+
14026
14225
  @property
14027
14226
  @pulumi.getter
14028
14227
  def port(self) -> Optional[builtins.int]:
@@ -15199,6 +15398,8 @@ class MySqlComponent(dict):
15199
15398
  suggest = "connection_uri"
15200
15399
  elif key == "kafkaAuthenticationMethod":
15201
15400
  suggest = "kafka_authentication_method"
15401
+ elif key == "kafkaSslCa":
15402
+ suggest = "kafka_ssl_ca"
15202
15403
 
15203
15404
  if suggest:
15204
15405
  pulumi.log.warn(f"Key '{key}' not found in MySqlComponent. Access the value via the '{suggest}' property getter instead.")
@@ -15216,6 +15417,7 @@ class MySqlComponent(dict):
15216
15417
  connection_uri: Optional[builtins.str] = None,
15217
15418
  host: Optional[builtins.str] = None,
15218
15419
  kafka_authentication_method: Optional[builtins.str] = None,
15420
+ kafka_ssl_ca: Optional[builtins.str] = None,
15219
15421
  port: Optional[builtins.int] = None,
15220
15422
  route: Optional[builtins.str] = None,
15221
15423
  ssl: Optional[builtins.bool] = None,
@@ -15225,6 +15427,7 @@ class MySqlComponent(dict):
15225
15427
  :param builtins.str connection_uri: Connection info for connecting to the service component. This is a combination of host and port.
15226
15428
  :param builtins.str host: Host name for connecting to the service component
15227
15429
  :param builtins.str kafka_authentication_method: Kafka authentication method. This is a value specific to the 'kafka' service component
15430
+ :param builtins.str kafka_ssl_ca: Kafka certificate used. The possible values are `letsencrypt` and `project_ca`.
15228
15431
  :param builtins.int port: Port number for connecting to the service component
15229
15432
  :param builtins.str route: Network access route
15230
15433
  :param builtins.bool ssl: Whether the endpoint is encrypted or accepts plaintext. By default endpoints are always encrypted and this property is only included for service components they may disable encryption
@@ -15238,6 +15441,8 @@ class MySqlComponent(dict):
15238
15441
  pulumi.set(__self__, "host", host)
15239
15442
  if kafka_authentication_method is not None:
15240
15443
  pulumi.set(__self__, "kafka_authentication_method", kafka_authentication_method)
15444
+ if kafka_ssl_ca is not None:
15445
+ pulumi.set(__self__, "kafka_ssl_ca", kafka_ssl_ca)
15241
15446
  if port is not None:
15242
15447
  pulumi.set(__self__, "port", port)
15243
15448
  if route is not None:
@@ -15279,6 +15484,14 @@ class MySqlComponent(dict):
15279
15484
  """
15280
15485
  return pulumi.get(self, "kafka_authentication_method")
15281
15486
 
15487
+ @property
15488
+ @pulumi.getter(name="kafkaSslCa")
15489
+ def kafka_ssl_ca(self) -> Optional[builtins.str]:
15490
+ """
15491
+ Kafka certificate used. The possible values are `letsencrypt` and `project_ca`.
15492
+ """
15493
+ return pulumi.get(self, "kafka_ssl_ca")
15494
+
15282
15495
  @property
15283
15496
  @pulumi.getter
15284
15497
  def port(self) -> Optional[builtins.int]:
@@ -16646,6 +16859,8 @@ class OpenSearchComponent(dict):
16646
16859
  suggest = "connection_uri"
16647
16860
  elif key == "kafkaAuthenticationMethod":
16648
16861
  suggest = "kafka_authentication_method"
16862
+ elif key == "kafkaSslCa":
16863
+ suggest = "kafka_ssl_ca"
16649
16864
 
16650
16865
  if suggest:
16651
16866
  pulumi.log.warn(f"Key '{key}' not found in OpenSearchComponent. Access the value via the '{suggest}' property getter instead.")
@@ -16663,6 +16878,7 @@ class OpenSearchComponent(dict):
16663
16878
  connection_uri: Optional[builtins.str] = None,
16664
16879
  host: Optional[builtins.str] = None,
16665
16880
  kafka_authentication_method: Optional[builtins.str] = None,
16881
+ kafka_ssl_ca: Optional[builtins.str] = None,
16666
16882
  port: Optional[builtins.int] = None,
16667
16883
  route: Optional[builtins.str] = None,
16668
16884
  ssl: Optional[builtins.bool] = None,
@@ -16672,6 +16888,7 @@ class OpenSearchComponent(dict):
16672
16888
  :param builtins.str connection_uri: Connection info for connecting to the service component. This is a combination of host and port.
16673
16889
  :param builtins.str host: Host name for connecting to the service component
16674
16890
  :param builtins.str kafka_authentication_method: Kafka authentication method. This is a value specific to the 'kafka' service component
16891
+ :param builtins.str kafka_ssl_ca: Kafka certificate used. The possible values are `letsencrypt` and `project_ca`.
16675
16892
  :param builtins.int port: Port number for connecting to the service component
16676
16893
  :param builtins.str route: Network access route
16677
16894
  :param builtins.bool ssl: Whether the endpoint is encrypted or accepts plaintext. By default endpoints are always encrypted and this property is only included for service components they may disable encryption
@@ -16685,6 +16902,8 @@ class OpenSearchComponent(dict):
16685
16902
  pulumi.set(__self__, "host", host)
16686
16903
  if kafka_authentication_method is not None:
16687
16904
  pulumi.set(__self__, "kafka_authentication_method", kafka_authentication_method)
16905
+ if kafka_ssl_ca is not None:
16906
+ pulumi.set(__self__, "kafka_ssl_ca", kafka_ssl_ca)
16688
16907
  if port is not None:
16689
16908
  pulumi.set(__self__, "port", port)
16690
16909
  if route is not None:
@@ -16726,6 +16945,14 @@ class OpenSearchComponent(dict):
16726
16945
  """
16727
16946
  return pulumi.get(self, "kafka_authentication_method")
16728
16947
 
16948
+ @property
16949
+ @pulumi.getter(name="kafkaSslCa")
16950
+ def kafka_ssl_ca(self) -> Optional[builtins.str]:
16951
+ """
16952
+ Kafka certificate used. The possible values are `letsencrypt` and `project_ca`.
16953
+ """
16954
+ return pulumi.get(self, "kafka_ssl_ca")
16955
+
16729
16956
  @property
16730
16957
  @pulumi.getter
16731
16958
  def port(self) -> Optional[builtins.int]:
@@ -17297,7 +17524,7 @@ class OpenSearchOpensearchUserConfigAzureMigration(dict):
17297
17524
  :param builtins.str endpoint_suffix: Defines the DNS suffix for Azure Storage endpoints.
17298
17525
  :param builtins.bool include_aliases: Whether to restore aliases alongside their associated indexes. Default is true.
17299
17526
  :param builtins.str key: Azure account secret key. One of key or sas_token should be specified.
17300
- :param builtins.bool readonly: Whether the repository is read-only. Default: `false`.
17527
+ :param builtins.bool readonly: Whether the repository is read-only. Default: `true`.
17301
17528
  :param builtins.bool restore_global_state: If true, restore the cluster state. Defaults to false.
17302
17529
  :param builtins.str sas_token: A shared access signatures (SAS) token. One of key or sas_token should be specified.
17303
17530
  """
@@ -17407,7 +17634,7 @@ class OpenSearchOpensearchUserConfigAzureMigration(dict):
17407
17634
  @pulumi.getter
17408
17635
  def readonly(self) -> Optional[builtins.bool]:
17409
17636
  """
17410
- Whether the repository is read-only. Default: `false`.
17637
+ Whether the repository is read-only. Default: `true`.
17411
17638
  """
17412
17639
  return pulumi.get(self, "readonly")
17413
17640
 
@@ -17475,7 +17702,7 @@ class OpenSearchOpensearchUserConfigGcsMigration(dict):
17475
17702
  :param builtins.str chunk_size: Big files can be broken down into chunks during snapshotting if needed. Should be the same as for the 3rd party repository.
17476
17703
  :param builtins.bool compress: When set to true metadata files are stored in compressed format.
17477
17704
  :param builtins.bool include_aliases: Whether to restore aliases alongside their associated indexes. Default is true.
17478
- :param builtins.bool readonly: Whether the repository is read-only. Default: `false`.
17705
+ :param builtins.bool readonly: Whether the repository is read-only. Default: `true`.
17479
17706
  :param builtins.bool restore_global_state: If true, restore the cluster state. Defaults to false.
17480
17707
  """
17481
17708
  pulumi.set(__self__, "base_path", base_path)
@@ -17562,7 +17789,7 @@ class OpenSearchOpensearchUserConfigGcsMigration(dict):
17562
17789
  @pulumi.getter
17563
17790
  def readonly(self) -> Optional[builtins.bool]:
17564
17791
  """
17565
- Whether the repository is read-only. Default: `false`.
17792
+ Whether the repository is read-only. Default: `true`.
17566
17793
  """
17567
17794
  return pulumi.get(self, "readonly")
17568
17795
 
@@ -20454,7 +20681,7 @@ class OpenSearchOpensearchUserConfigS3Migration(dict):
20454
20681
  :param builtins.bool compress: When set to true metadata files are stored in compressed format.
20455
20682
  :param builtins.str endpoint: The S3 service endpoint to connect to. If you are using an S3-compatible service then you should set this to the service’s endpoint.
20456
20683
  :param builtins.bool include_aliases: Whether to restore aliases alongside their associated indexes. Default is true.
20457
- :param builtins.bool readonly: Whether the repository is read-only. Default: `false`.
20684
+ :param builtins.bool readonly: Whether the repository is read-only. Default: `true`.
20458
20685
  :param builtins.bool restore_global_state: If true, restore the cluster state. Defaults to false.
20459
20686
  :param builtins.bool server_side_encryption: When set to true files are encrypted on server side.
20460
20687
  """
@@ -20572,7 +20799,7 @@ class OpenSearchOpensearchUserConfigS3Migration(dict):
20572
20799
  @pulumi.getter
20573
20800
  def readonly(self) -> Optional[builtins.bool]:
20574
20801
  """
20575
- Whether the repository is read-only. Default: `false`.
20802
+ Whether the repository is read-only. Default: `true`.
20576
20803
  """
20577
20804
  return pulumi.get(self, "readonly")
20578
20805
 
@@ -20808,6 +21035,116 @@ class OpenSearchTechEmail(dict):
20808
21035
  return pulumi.get(self, "email")
20809
21036
 
20810
21037
 
21038
+ @pulumi.output_type
21039
+ class OrganizationAddressTimeouts(dict):
21040
+ def __init__(__self__, *,
21041
+ create: Optional[builtins.str] = None,
21042
+ delete: Optional[builtins.str] = None,
21043
+ read: Optional[builtins.str] = None,
21044
+ update: Optional[builtins.str] = None):
21045
+ """
21046
+ :param builtins.str create: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
21047
+ :param builtins.str delete: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
21048
+ :param builtins.str read: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
21049
+ :param builtins.str update: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
21050
+ """
21051
+ if create is not None:
21052
+ pulumi.set(__self__, "create", create)
21053
+ if delete is not None:
21054
+ pulumi.set(__self__, "delete", delete)
21055
+ if read is not None:
21056
+ pulumi.set(__self__, "read", read)
21057
+ if update is not None:
21058
+ pulumi.set(__self__, "update", update)
21059
+
21060
+ @property
21061
+ @pulumi.getter
21062
+ def create(self) -> Optional[builtins.str]:
21063
+ """
21064
+ A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
21065
+ """
21066
+ return pulumi.get(self, "create")
21067
+
21068
+ @property
21069
+ @pulumi.getter
21070
+ def delete(self) -> Optional[builtins.str]:
21071
+ """
21072
+ A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
21073
+ """
21074
+ return pulumi.get(self, "delete")
21075
+
21076
+ @property
21077
+ @pulumi.getter
21078
+ def read(self) -> Optional[builtins.str]:
21079
+ """
21080
+ A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
21081
+ """
21082
+ return pulumi.get(self, "read")
21083
+
21084
+ @property
21085
+ @pulumi.getter
21086
+ def update(self) -> Optional[builtins.str]:
21087
+ """
21088
+ A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
21089
+ """
21090
+ return pulumi.get(self, "update")
21091
+
21092
+
21093
+ @pulumi.output_type
21094
+ class OrganizationBillingGroupTimeouts(dict):
21095
+ def __init__(__self__, *,
21096
+ create: Optional[builtins.str] = None,
21097
+ delete: Optional[builtins.str] = None,
21098
+ read: Optional[builtins.str] = None,
21099
+ update: Optional[builtins.str] = None):
21100
+ """
21101
+ :param builtins.str create: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
21102
+ :param builtins.str delete: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
21103
+ :param builtins.str read: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
21104
+ :param builtins.str update: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
21105
+ """
21106
+ if create is not None:
21107
+ pulumi.set(__self__, "create", create)
21108
+ if delete is not None:
21109
+ pulumi.set(__self__, "delete", delete)
21110
+ if read is not None:
21111
+ pulumi.set(__self__, "read", read)
21112
+ if update is not None:
21113
+ pulumi.set(__self__, "update", update)
21114
+
21115
+ @property
21116
+ @pulumi.getter
21117
+ def create(self) -> Optional[builtins.str]:
21118
+ """
21119
+ A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
21120
+ """
21121
+ return pulumi.get(self, "create")
21122
+
21123
+ @property
21124
+ @pulumi.getter
21125
+ def delete(self) -> Optional[builtins.str]:
21126
+ """
21127
+ A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
21128
+ """
21129
+ return pulumi.get(self, "delete")
21130
+
21131
+ @property
21132
+ @pulumi.getter
21133
+ def read(self) -> Optional[builtins.str]:
21134
+ """
21135
+ A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
21136
+ """
21137
+ return pulumi.get(self, "read")
21138
+
21139
+ @property
21140
+ @pulumi.getter
21141
+ def update(self) -> Optional[builtins.str]:
21142
+ """
21143
+ A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
21144
+ """
21145
+ return pulumi.get(self, "update")
21146
+
21147
+
20811
21148
  @pulumi.output_type
20812
21149
  class OrganizationGroupProjectTimeouts(dict):
20813
21150
  def __init__(__self__, *,
@@ -21098,6 +21435,8 @@ class PgComponent(dict):
21098
21435
  suggest = "connection_uri"
21099
21436
  elif key == "kafkaAuthenticationMethod":
21100
21437
  suggest = "kafka_authentication_method"
21438
+ elif key == "kafkaSslCa":
21439
+ suggest = "kafka_ssl_ca"
21101
21440
 
21102
21441
  if suggest:
21103
21442
  pulumi.log.warn(f"Key '{key}' not found in PgComponent. Access the value via the '{suggest}' property getter instead.")
@@ -21115,6 +21454,7 @@ class PgComponent(dict):
21115
21454
  connection_uri: Optional[builtins.str] = None,
21116
21455
  host: Optional[builtins.str] = None,
21117
21456
  kafka_authentication_method: Optional[builtins.str] = None,
21457
+ kafka_ssl_ca: Optional[builtins.str] = None,
21118
21458
  port: Optional[builtins.int] = None,
21119
21459
  route: Optional[builtins.str] = None,
21120
21460
  ssl: Optional[builtins.bool] = None,
@@ -21124,6 +21464,7 @@ class PgComponent(dict):
21124
21464
  :param builtins.str connection_uri: Connection info for connecting to the service component. This is a combination of host and port.
21125
21465
  :param builtins.str host: Host name for connecting to the service component
21126
21466
  :param builtins.str kafka_authentication_method: Kafka authentication method. This is a value specific to the 'kafka' service component
21467
+ :param builtins.str kafka_ssl_ca: Kafka certificate used. The possible values are `letsencrypt` and `project_ca`.
21127
21468
  :param builtins.int port: Port number for connecting to the service component
21128
21469
  :param builtins.str route: Network access route
21129
21470
  :param builtins.bool ssl: Whether the endpoint is encrypted or accepts plaintext. By default endpoints are always encrypted and this property is only included for service components they may disable encryption
@@ -21137,6 +21478,8 @@ class PgComponent(dict):
21137
21478
  pulumi.set(__self__, "host", host)
21138
21479
  if kafka_authentication_method is not None:
21139
21480
  pulumi.set(__self__, "kafka_authentication_method", kafka_authentication_method)
21481
+ if kafka_ssl_ca is not None:
21482
+ pulumi.set(__self__, "kafka_ssl_ca", kafka_ssl_ca)
21140
21483
  if port is not None:
21141
21484
  pulumi.set(__self__, "port", port)
21142
21485
  if route is not None:
@@ -21178,6 +21521,14 @@ class PgComponent(dict):
21178
21521
  """
21179
21522
  return pulumi.get(self, "kafka_authentication_method")
21180
21523
 
21524
+ @property
21525
+ @pulumi.getter(name="kafkaSslCa")
21526
+ def kafka_ssl_ca(self) -> Optional[builtins.str]:
21527
+ """
21528
+ Kafka certificate used. The possible values are `letsencrypt` and `project_ca`.
21529
+ """
21530
+ return pulumi.get(self, "kafka_ssl_ca")
21531
+
21181
21532
  @property
21182
21533
  @pulumi.getter
21183
21534
  def port(self) -> Optional[builtins.int]:
@@ -23664,6 +24015,8 @@ class RedisComponent(dict):
23664
24015
  suggest = "connection_uri"
23665
24016
  elif key == "kafkaAuthenticationMethod":
23666
24017
  suggest = "kafka_authentication_method"
24018
+ elif key == "kafkaSslCa":
24019
+ suggest = "kafka_ssl_ca"
23667
24020
 
23668
24021
  if suggest:
23669
24022
  pulumi.log.warn(f"Key '{key}' not found in RedisComponent. Access the value via the '{suggest}' property getter instead.")
@@ -23681,6 +24034,7 @@ class RedisComponent(dict):
23681
24034
  connection_uri: Optional[builtins.str] = None,
23682
24035
  host: Optional[builtins.str] = None,
23683
24036
  kafka_authentication_method: Optional[builtins.str] = None,
24037
+ kafka_ssl_ca: Optional[builtins.str] = None,
23684
24038
  port: Optional[builtins.int] = None,
23685
24039
  route: Optional[builtins.str] = None,
23686
24040
  ssl: Optional[builtins.bool] = None,
@@ -23690,6 +24044,7 @@ class RedisComponent(dict):
23690
24044
  :param builtins.str connection_uri: Connection info for connecting to the service component. This is a combination of host and port.
23691
24045
  :param builtins.str host: Host name for connecting to the service component
23692
24046
  :param builtins.str kafka_authentication_method: Kafka authentication method. This is a value specific to the 'kafka' service component
24047
+ :param builtins.str kafka_ssl_ca: Kafka certificate used. The possible values are `letsencrypt` and `project_ca`.
23693
24048
  :param builtins.int port: Port number for connecting to the service component
23694
24049
  :param builtins.str route: Network access route
23695
24050
  :param builtins.bool ssl: Whether the endpoint is encrypted or accepts plaintext. By default endpoints are always encrypted and this property is only included for service components they may disable encryption
@@ -23703,6 +24058,8 @@ class RedisComponent(dict):
23703
24058
  pulumi.set(__self__, "host", host)
23704
24059
  if kafka_authentication_method is not None:
23705
24060
  pulumi.set(__self__, "kafka_authentication_method", kafka_authentication_method)
24061
+ if kafka_ssl_ca is not None:
24062
+ pulumi.set(__self__, "kafka_ssl_ca", kafka_ssl_ca)
23706
24063
  if port is not None:
23707
24064
  pulumi.set(__self__, "port", port)
23708
24065
  if route is not None:
@@ -23744,6 +24101,14 @@ class RedisComponent(dict):
23744
24101
  """
23745
24102
  return pulumi.get(self, "kafka_authentication_method")
23746
24103
 
24104
+ @property
24105
+ @pulumi.getter(name="kafkaSslCa")
24106
+ def kafka_ssl_ca(self) -> Optional[builtins.str]:
24107
+ """
24108
+ Kafka certificate used. The possible values are `letsencrypt` and `project_ca`.
24109
+ """
24110
+ return pulumi.get(self, "kafka_ssl_ca")
24111
+
23747
24112
  @property
23748
24113
  @pulumi.getter
23749
24114
  def port(self) -> Optional[builtins.int]:
@@ -28158,6 +28523,8 @@ class ThanosComponent(dict):
28158
28523
  suggest = "connection_uri"
28159
28524
  elif key == "kafkaAuthenticationMethod":
28160
28525
  suggest = "kafka_authentication_method"
28526
+ elif key == "kafkaSslCa":
28527
+ suggest = "kafka_ssl_ca"
28161
28528
 
28162
28529
  if suggest:
28163
28530
  pulumi.log.warn(f"Key '{key}' not found in ThanosComponent. Access the value via the '{suggest}' property getter instead.")
@@ -28175,6 +28542,7 @@ class ThanosComponent(dict):
28175
28542
  connection_uri: Optional[builtins.str] = None,
28176
28543
  host: Optional[builtins.str] = None,
28177
28544
  kafka_authentication_method: Optional[builtins.str] = None,
28545
+ kafka_ssl_ca: Optional[builtins.str] = None,
28178
28546
  port: Optional[builtins.int] = None,
28179
28547
  route: Optional[builtins.str] = None,
28180
28548
  ssl: Optional[builtins.bool] = None,
@@ -28184,6 +28552,7 @@ class ThanosComponent(dict):
28184
28552
  :param builtins.str connection_uri: Connection info for connecting to the service component. This is a combination of host and port.
28185
28553
  :param builtins.str host: Host name for connecting to the service component
28186
28554
  :param builtins.str kafka_authentication_method: Kafka authentication method. This is a value specific to the 'kafka' service component
28555
+ :param builtins.str kafka_ssl_ca: Kafka certificate used. The possible values are `letsencrypt` and `project_ca`.
28187
28556
  :param builtins.int port: Port number for connecting to the service component
28188
28557
  :param builtins.str route: Network access route
28189
28558
  :param builtins.bool ssl: Whether the endpoint is encrypted or accepts plaintext. By default endpoints are always encrypted and this property is only included for service components they may disable encryption
@@ -28197,6 +28566,8 @@ class ThanosComponent(dict):
28197
28566
  pulumi.set(__self__, "host", host)
28198
28567
  if kafka_authentication_method is not None:
28199
28568
  pulumi.set(__self__, "kafka_authentication_method", kafka_authentication_method)
28569
+ if kafka_ssl_ca is not None:
28570
+ pulumi.set(__self__, "kafka_ssl_ca", kafka_ssl_ca)
28200
28571
  if port is not None:
28201
28572
  pulumi.set(__self__, "port", port)
28202
28573
  if route is not None:
@@ -28238,6 +28609,14 @@ class ThanosComponent(dict):
28238
28609
  """
28239
28610
  return pulumi.get(self, "kafka_authentication_method")
28240
28611
 
28612
+ @property
28613
+ @pulumi.getter(name="kafkaSslCa")
28614
+ def kafka_ssl_ca(self) -> Optional[builtins.str]:
28615
+ """
28616
+ Kafka certificate used. The possible values are `letsencrypt` and `project_ca`.
28617
+ """
28618
+ return pulumi.get(self, "kafka_ssl_ca")
28619
+
28241
28620
  @property
28242
28621
  @pulumi.getter
28243
28622
  def port(self) -> Optional[builtins.int]:
@@ -29123,6 +29502,8 @@ class ValkeyComponent(dict):
29123
29502
  suggest = "connection_uri"
29124
29503
  elif key == "kafkaAuthenticationMethod":
29125
29504
  suggest = "kafka_authentication_method"
29505
+ elif key == "kafkaSslCa":
29506
+ suggest = "kafka_ssl_ca"
29126
29507
 
29127
29508
  if suggest:
29128
29509
  pulumi.log.warn(f"Key '{key}' not found in ValkeyComponent. Access the value via the '{suggest}' property getter instead.")
@@ -29140,6 +29521,7 @@ class ValkeyComponent(dict):
29140
29521
  connection_uri: Optional[builtins.str] = None,
29141
29522
  host: Optional[builtins.str] = None,
29142
29523
  kafka_authentication_method: Optional[builtins.str] = None,
29524
+ kafka_ssl_ca: Optional[builtins.str] = None,
29143
29525
  port: Optional[builtins.int] = None,
29144
29526
  route: Optional[builtins.str] = None,
29145
29527
  ssl: Optional[builtins.bool] = None,
@@ -29149,6 +29531,7 @@ class ValkeyComponent(dict):
29149
29531
  :param builtins.str connection_uri: Connection info for connecting to the service component. This is a combination of host and port.
29150
29532
  :param builtins.str host: Host name for connecting to the service component
29151
29533
  :param builtins.str kafka_authentication_method: Kafka authentication method. This is a value specific to the 'kafka' service component
29534
+ :param builtins.str kafka_ssl_ca: Kafka certificate used. The possible values are `letsencrypt` and `project_ca`.
29152
29535
  :param builtins.int port: Port number for connecting to the service component
29153
29536
  :param builtins.str route: Network access route
29154
29537
  :param builtins.bool ssl: Whether the endpoint is encrypted or accepts plaintext. By default endpoints are always encrypted and this property is only included for service components they may disable encryption
@@ -29162,6 +29545,8 @@ class ValkeyComponent(dict):
29162
29545
  pulumi.set(__self__, "host", host)
29163
29546
  if kafka_authentication_method is not None:
29164
29547
  pulumi.set(__self__, "kafka_authentication_method", kafka_authentication_method)
29548
+ if kafka_ssl_ca is not None:
29549
+ pulumi.set(__self__, "kafka_ssl_ca", kafka_ssl_ca)
29165
29550
  if port is not None:
29166
29551
  pulumi.set(__self__, "port", port)
29167
29552
  if route is not None:
@@ -29203,6 +29588,14 @@ class ValkeyComponent(dict):
29203
29588
  """
29204
29589
  return pulumi.get(self, "kafka_authentication_method")
29205
29590
 
29591
+ @property
29592
+ @pulumi.getter(name="kafkaSslCa")
29593
+ def kafka_ssl_ca(self) -> Optional[builtins.str]:
29594
+ """
29595
+ Kafka certificate used. The possible values are `letsencrypt` and `project_ca`.
29596
+ """
29597
+ return pulumi.get(self, "kafka_ssl_ca")
29598
+
29206
29599
  @property
29207
29600
  @pulumi.getter
29208
29601
  def port(self) -> Optional[builtins.int]:
@@ -31652,6 +32045,7 @@ class GetAlloydbomniComponentResult(dict):
31652
32045
  connection_uri: builtins.str,
31653
32046
  host: builtins.str,
31654
32047
  kafka_authentication_method: builtins.str,
32048
+ kafka_ssl_ca: builtins.str,
31655
32049
  port: builtins.int,
31656
32050
  route: builtins.str,
31657
32051
  ssl: builtins.bool,
@@ -31661,6 +32055,7 @@ class GetAlloydbomniComponentResult(dict):
31661
32055
  :param builtins.str connection_uri: Connection info for connecting to the service component. This is a combination of host and port.
31662
32056
  :param builtins.str host: Host name for connecting to the service component
31663
32057
  :param builtins.str kafka_authentication_method: Kafka authentication method. This is a value specific to the 'kafka' service component
32058
+ :param builtins.str kafka_ssl_ca: Kafka certificate used. The possible values are `letsencrypt` and `project_ca`.
31664
32059
  :param builtins.int port: Port number for connecting to the service component
31665
32060
  :param builtins.str route: Network access route
31666
32061
  :param builtins.bool ssl: Whether the endpoint is encrypted or accepts plaintext. By default endpoints are always encrypted and this property is only included for service components they may disable encryption
@@ -31670,6 +32065,7 @@ class GetAlloydbomniComponentResult(dict):
31670
32065
  pulumi.set(__self__, "connection_uri", connection_uri)
31671
32066
  pulumi.set(__self__, "host", host)
31672
32067
  pulumi.set(__self__, "kafka_authentication_method", kafka_authentication_method)
32068
+ pulumi.set(__self__, "kafka_ssl_ca", kafka_ssl_ca)
31673
32069
  pulumi.set(__self__, "port", port)
31674
32070
  pulumi.set(__self__, "route", route)
31675
32071
  pulumi.set(__self__, "ssl", ssl)
@@ -31707,6 +32103,14 @@ class GetAlloydbomniComponentResult(dict):
31707
32103
  """
31708
32104
  return pulumi.get(self, "kafka_authentication_method")
31709
32105
 
32106
+ @property
32107
+ @pulumi.getter(name="kafkaSslCa")
32108
+ def kafka_ssl_ca(self) -> builtins.str:
32109
+ """
32110
+ Kafka certificate used. The possible values are `letsencrypt` and `project_ca`.
32111
+ """
32112
+ return pulumi.get(self, "kafka_ssl_ca")
32113
+
31710
32114
  @property
31711
32115
  @pulumi.getter
31712
32116
  def port(self) -> builtins.int:
@@ -32176,6 +32580,7 @@ class GetCassandaComponentResult(dict):
32176
32580
  connection_uri: builtins.str,
32177
32581
  host: builtins.str,
32178
32582
  kafka_authentication_method: builtins.str,
32583
+ kafka_ssl_ca: builtins.str,
32179
32584
  port: builtins.int,
32180
32585
  route: builtins.str,
32181
32586
  ssl: builtins.bool,
@@ -32185,6 +32590,7 @@ class GetCassandaComponentResult(dict):
32185
32590
  :param builtins.str connection_uri: Connection info for connecting to the service component. This is a combination of host and port.
32186
32591
  :param builtins.str host: Host name for connecting to the service component
32187
32592
  :param builtins.str kafka_authentication_method: Kafka authentication method. This is a value specific to the 'kafka' service component
32593
+ :param builtins.str kafka_ssl_ca: Kafka certificate used. The possible values are `letsencrypt` and `project_ca`.
32188
32594
  :param builtins.int port: Port number for connecting to the service component
32189
32595
  :param builtins.str route: Network access route
32190
32596
  :param builtins.bool ssl: Whether the endpoint is encrypted or accepts plaintext. By default endpoints are always encrypted and this property is only included for service components they may disable encryption
@@ -32194,6 +32600,7 @@ class GetCassandaComponentResult(dict):
32194
32600
  pulumi.set(__self__, "connection_uri", connection_uri)
32195
32601
  pulumi.set(__self__, "host", host)
32196
32602
  pulumi.set(__self__, "kafka_authentication_method", kafka_authentication_method)
32603
+ pulumi.set(__self__, "kafka_ssl_ca", kafka_ssl_ca)
32197
32604
  pulumi.set(__self__, "port", port)
32198
32605
  pulumi.set(__self__, "route", route)
32199
32606
  pulumi.set(__self__, "ssl", ssl)
@@ -32231,6 +32638,14 @@ class GetCassandaComponentResult(dict):
32231
32638
  """
32232
32639
  return pulumi.get(self, "kafka_authentication_method")
32233
32640
 
32641
+ @property
32642
+ @pulumi.getter(name="kafkaSslCa")
32643
+ def kafka_ssl_ca(self) -> builtins.str:
32644
+ """
32645
+ Kafka certificate used. The possible values are `letsencrypt` and `project_ca`.
32646
+ """
32647
+ return pulumi.get(self, "kafka_ssl_ca")
32648
+
32234
32649
  @property
32235
32650
  @pulumi.getter
32236
32651
  def port(self) -> builtins.int:
@@ -32700,6 +33115,7 @@ class GetCassandraComponentResult(dict):
32700
33115
  connection_uri: builtins.str,
32701
33116
  host: builtins.str,
32702
33117
  kafka_authentication_method: builtins.str,
33118
+ kafka_ssl_ca: builtins.str,
32703
33119
  port: builtins.int,
32704
33120
  route: builtins.str,
32705
33121
  ssl: builtins.bool,
@@ -32709,6 +33125,7 @@ class GetCassandraComponentResult(dict):
32709
33125
  :param builtins.str connection_uri: Connection info for connecting to the service component. This is a combination of host and port.
32710
33126
  :param builtins.str host: Host name for connecting to the service component
32711
33127
  :param builtins.str kafka_authentication_method: Kafka authentication method. This is a value specific to the 'kafka' service component
33128
+ :param builtins.str kafka_ssl_ca: Kafka certificate used. The possible values are `letsencrypt` and `project_ca`.
32712
33129
  :param builtins.int port: Port number for connecting to the service component
32713
33130
  :param builtins.str route: Network access route
32714
33131
  :param builtins.bool ssl: Whether the endpoint is encrypted or accepts plaintext. By default endpoints are always encrypted and this property is only included for service components they may disable encryption
@@ -32718,6 +33135,7 @@ class GetCassandraComponentResult(dict):
32718
33135
  pulumi.set(__self__, "connection_uri", connection_uri)
32719
33136
  pulumi.set(__self__, "host", host)
32720
33137
  pulumi.set(__self__, "kafka_authentication_method", kafka_authentication_method)
33138
+ pulumi.set(__self__, "kafka_ssl_ca", kafka_ssl_ca)
32721
33139
  pulumi.set(__self__, "port", port)
32722
33140
  pulumi.set(__self__, "route", route)
32723
33141
  pulumi.set(__self__, "ssl", ssl)
@@ -32755,6 +33173,14 @@ class GetCassandraComponentResult(dict):
32755
33173
  """
32756
33174
  return pulumi.get(self, "kafka_authentication_method")
32757
33175
 
33176
+ @property
33177
+ @pulumi.getter(name="kafkaSslCa")
33178
+ def kafka_ssl_ca(self) -> builtins.str:
33179
+ """
33180
+ Kafka certificate used. The possible values are `letsencrypt` and `project_ca`.
33181
+ """
33182
+ return pulumi.get(self, "kafka_ssl_ca")
33183
+
32758
33184
  @property
32759
33185
  @pulumi.getter
32760
33186
  def port(self) -> builtins.int:
@@ -32886,6 +33312,8 @@ class GetClickhouseClickhouseResult(dict):
32886
33312
  class GetClickhouseClickhouseUserConfigResult(dict):
32887
33313
  def __init__(__self__, *,
32888
33314
  additional_backup_regions: Optional[builtins.str] = None,
33315
+ backup_hour: Optional[builtins.int] = None,
33316
+ backup_minute: Optional[builtins.int] = None,
32889
33317
  ip_filter_objects: Optional[Sequence['outputs.GetClickhouseClickhouseUserConfigIpFilterObjectResult']] = None,
32890
33318
  ip_filter_strings: Optional[Sequence[builtins.str]] = None,
32891
33319
  ip_filters: Optional[Sequence[builtins.str]] = None,
@@ -32899,6 +33327,8 @@ class GetClickhouseClickhouseUserConfigResult(dict):
32899
33327
  static_ips: Optional[builtins.bool] = None):
32900
33328
  """
32901
33329
  :param builtins.str additional_backup_regions: Additional Cloud Regions for Backup Replication.
33330
+ :param 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`.
33331
+ :param 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`.
32902
33332
  :param Sequence['GetClickhouseClickhouseUserConfigIpFilterObjectArgs'] ip_filter_objects: Allow incoming connections from CIDR address block, e.g. `10.20.0.0/16`
32903
33333
  :param Sequence[builtins.str] ip_filter_strings: Allow incoming connections from CIDR address block, e.g. `10.20.0.0/16`.
32904
33334
  :param Sequence[builtins.str] ip_filters: Allow incoming connections from CIDR address block, e.g. `10.20.0.0/16`.
@@ -32913,6 +33343,10 @@ class GetClickhouseClickhouseUserConfigResult(dict):
32913
33343
  """
32914
33344
  if additional_backup_regions is not None:
32915
33345
  pulumi.set(__self__, "additional_backup_regions", additional_backup_regions)
33346
+ if backup_hour is not None:
33347
+ pulumi.set(__self__, "backup_hour", backup_hour)
33348
+ if backup_minute is not None:
33349
+ pulumi.set(__self__, "backup_minute", backup_minute)
32916
33350
  if ip_filter_objects is not None:
32917
33351
  pulumi.set(__self__, "ip_filter_objects", ip_filter_objects)
32918
33352
  if ip_filter_strings is not None:
@@ -32945,6 +33379,22 @@ class GetClickhouseClickhouseUserConfigResult(dict):
32945
33379
  """
32946
33380
  return pulumi.get(self, "additional_backup_regions")
32947
33381
 
33382
+ @property
33383
+ @pulumi.getter(name="backupHour")
33384
+ def backup_hour(self) -> Optional[builtins.int]:
33385
+ """
33386
+ 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`.
33387
+ """
33388
+ return pulumi.get(self, "backup_hour")
33389
+
33390
+ @property
33391
+ @pulumi.getter(name="backupMinute")
33392
+ def backup_minute(self) -> Optional[builtins.int]:
33393
+ """
33394
+ 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`.
33395
+ """
33396
+ return pulumi.get(self, "backup_minute")
33397
+
32948
33398
  @property
32949
33399
  @pulumi.getter(name="ipFilterObjects")
32950
33400
  def ip_filter_objects(self) -> Optional[Sequence['outputs.GetClickhouseClickhouseUserConfigIpFilterObjectResult']]:
@@ -33237,6 +33687,7 @@ class GetClickhouseComponentResult(dict):
33237
33687
  connection_uri: builtins.str,
33238
33688
  host: builtins.str,
33239
33689
  kafka_authentication_method: builtins.str,
33690
+ kafka_ssl_ca: builtins.str,
33240
33691
  port: builtins.int,
33241
33692
  route: builtins.str,
33242
33693
  ssl: builtins.bool,
@@ -33246,6 +33697,7 @@ class GetClickhouseComponentResult(dict):
33246
33697
  :param builtins.str connection_uri: Connection info for connecting to the service component. This is a combination of host and port.
33247
33698
  :param builtins.str host: Host name for connecting to the service component
33248
33699
  :param builtins.str kafka_authentication_method: Kafka authentication method. This is a value specific to the 'kafka' service component
33700
+ :param builtins.str kafka_ssl_ca: Kafka certificate used. The possible values are `letsencrypt` and `project_ca`.
33249
33701
  :param builtins.int port: Port number for connecting to the service component
33250
33702
  :param builtins.str route: Network access route
33251
33703
  :param builtins.bool ssl: Whether the endpoint is encrypted or accepts plaintext. By default endpoints are always encrypted and this property is only included for service components they may disable encryption
@@ -33255,6 +33707,7 @@ class GetClickhouseComponentResult(dict):
33255
33707
  pulumi.set(__self__, "connection_uri", connection_uri)
33256
33708
  pulumi.set(__self__, "host", host)
33257
33709
  pulumi.set(__self__, "kafka_authentication_method", kafka_authentication_method)
33710
+ pulumi.set(__self__, "kafka_ssl_ca", kafka_ssl_ca)
33258
33711
  pulumi.set(__self__, "port", port)
33259
33712
  pulumi.set(__self__, "route", route)
33260
33713
  pulumi.set(__self__, "ssl", ssl)
@@ -33292,6 +33745,14 @@ class GetClickhouseComponentResult(dict):
33292
33745
  """
33293
33746
  return pulumi.get(self, "kafka_authentication_method")
33294
33747
 
33748
+ @property
33749
+ @pulumi.getter(name="kafkaSslCa")
33750
+ def kafka_ssl_ca(self) -> builtins.str:
33751
+ """
33752
+ Kafka certificate used. The possible values are `letsencrypt` and `project_ca`.
33753
+ """
33754
+ return pulumi.get(self, "kafka_ssl_ca")
33755
+
33295
33756
  @property
33296
33757
  @pulumi.getter
33297
33758
  def port(self) -> builtins.int:
@@ -33408,6 +33869,7 @@ class GetDragonflyComponentResult(dict):
33408
33869
  connection_uri: builtins.str,
33409
33870
  host: builtins.str,
33410
33871
  kafka_authentication_method: builtins.str,
33872
+ kafka_ssl_ca: builtins.str,
33411
33873
  port: builtins.int,
33412
33874
  route: builtins.str,
33413
33875
  ssl: builtins.bool,
@@ -33417,6 +33879,7 @@ class GetDragonflyComponentResult(dict):
33417
33879
  :param builtins.str connection_uri: Connection info for connecting to the service component. This is a combination of host and port.
33418
33880
  :param builtins.str host: Host name for connecting to the service component
33419
33881
  :param builtins.str kafka_authentication_method: Kafka authentication method. This is a value specific to the 'kafka' service component
33882
+ :param builtins.str kafka_ssl_ca: Kafka certificate used. The possible values are `letsencrypt` and `project_ca`.
33420
33883
  :param builtins.int port: Port number for connecting to the service component
33421
33884
  :param builtins.str route: Network access route
33422
33885
  :param builtins.bool ssl: Whether the endpoint is encrypted or accepts plaintext. By default endpoints are always encrypted and this property is only included for service components they may disable encryption
@@ -33426,6 +33889,7 @@ class GetDragonflyComponentResult(dict):
33426
33889
  pulumi.set(__self__, "connection_uri", connection_uri)
33427
33890
  pulumi.set(__self__, "host", host)
33428
33891
  pulumi.set(__self__, "kafka_authentication_method", kafka_authentication_method)
33892
+ pulumi.set(__self__, "kafka_ssl_ca", kafka_ssl_ca)
33429
33893
  pulumi.set(__self__, "port", port)
33430
33894
  pulumi.set(__self__, "route", route)
33431
33895
  pulumi.set(__self__, "ssl", ssl)
@@ -33463,6 +33927,14 @@ class GetDragonflyComponentResult(dict):
33463
33927
  """
33464
33928
  return pulumi.get(self, "kafka_authentication_method")
33465
33929
 
33930
+ @property
33931
+ @pulumi.getter(name="kafkaSslCa")
33932
+ def kafka_ssl_ca(self) -> builtins.str:
33933
+ """
33934
+ Kafka certificate used. The possible values are `letsencrypt` and `project_ca`.
33935
+ """
33936
+ return pulumi.get(self, "kafka_ssl_ca")
33937
+
33466
33938
  @property
33467
33939
  @pulumi.getter
33468
33940
  def port(self) -> builtins.int:
@@ -34114,6 +34586,7 @@ class GetFlinkComponentResult(dict):
34114
34586
  connection_uri: builtins.str,
34115
34587
  host: builtins.str,
34116
34588
  kafka_authentication_method: builtins.str,
34589
+ kafka_ssl_ca: builtins.str,
34117
34590
  port: builtins.int,
34118
34591
  route: builtins.str,
34119
34592
  ssl: builtins.bool,
@@ -34123,6 +34596,7 @@ class GetFlinkComponentResult(dict):
34123
34596
  :param builtins.str connection_uri: Connection info for connecting to the service component. This is a combination of host and port.
34124
34597
  :param builtins.str host: Host name for connecting to the service component
34125
34598
  :param builtins.str kafka_authentication_method: Kafka authentication method. This is a value specific to the 'kafka' service component
34599
+ :param builtins.str kafka_ssl_ca: Kafka certificate used. The possible values are `letsencrypt` and `project_ca`.
34126
34600
  :param builtins.int port: Port number for connecting to the service component
34127
34601
  :param builtins.str route: Network access route
34128
34602
  :param builtins.bool ssl: Whether the endpoint is encrypted or accepts plaintext. By default endpoints are always encrypted and this property is only included for service components they may disable encryption
@@ -34132,6 +34606,7 @@ class GetFlinkComponentResult(dict):
34132
34606
  pulumi.set(__self__, "connection_uri", connection_uri)
34133
34607
  pulumi.set(__self__, "host", host)
34134
34608
  pulumi.set(__self__, "kafka_authentication_method", kafka_authentication_method)
34609
+ pulumi.set(__self__, "kafka_ssl_ca", kafka_ssl_ca)
34135
34610
  pulumi.set(__self__, "port", port)
34136
34611
  pulumi.set(__self__, "route", route)
34137
34612
  pulumi.set(__self__, "ssl", ssl)
@@ -34169,6 +34644,14 @@ class GetFlinkComponentResult(dict):
34169
34644
  """
34170
34645
  return pulumi.get(self, "kafka_authentication_method")
34171
34646
 
34647
+ @property
34648
+ @pulumi.getter(name="kafkaSslCa")
34649
+ def kafka_ssl_ca(self) -> builtins.str:
34650
+ """
34651
+ Kafka certificate used. The possible values are `letsencrypt` and `project_ca`.
34652
+ """
34653
+ return pulumi.get(self, "kafka_ssl_ca")
34654
+
34172
34655
  @property
34173
34656
  @pulumi.getter
34174
34657
  def port(self) -> builtins.int:
@@ -34548,6 +35031,7 @@ class GetGrafanaComponentResult(dict):
34548
35031
  connection_uri: builtins.str,
34549
35032
  host: builtins.str,
34550
35033
  kafka_authentication_method: builtins.str,
35034
+ kafka_ssl_ca: builtins.str,
34551
35035
  port: builtins.int,
34552
35036
  route: builtins.str,
34553
35037
  ssl: builtins.bool,
@@ -34557,6 +35041,7 @@ class GetGrafanaComponentResult(dict):
34557
35041
  :param builtins.str connection_uri: Connection info for connecting to the service component. This is a combination of host and port.
34558
35042
  :param builtins.str host: Host name for connecting to the service component
34559
35043
  :param builtins.str kafka_authentication_method: Kafka authentication method. This is a value specific to the 'kafka' service component
35044
+ :param builtins.str kafka_ssl_ca: Kafka certificate used. The possible values are `letsencrypt` and `project_ca`.
34560
35045
  :param builtins.int port: Port number for connecting to the service component
34561
35046
  :param builtins.str route: Network access route
34562
35047
  :param builtins.bool ssl: Whether the endpoint is encrypted or accepts plaintext. By default endpoints are always encrypted and this property is only included for service components they may disable encryption
@@ -34566,6 +35051,7 @@ class GetGrafanaComponentResult(dict):
34566
35051
  pulumi.set(__self__, "connection_uri", connection_uri)
34567
35052
  pulumi.set(__self__, "host", host)
34568
35053
  pulumi.set(__self__, "kafka_authentication_method", kafka_authentication_method)
35054
+ pulumi.set(__self__, "kafka_ssl_ca", kafka_ssl_ca)
34569
35055
  pulumi.set(__self__, "port", port)
34570
35056
  pulumi.set(__self__, "route", route)
34571
35057
  pulumi.set(__self__, "ssl", ssl)
@@ -34603,6 +35089,14 @@ class GetGrafanaComponentResult(dict):
34603
35089
  """
34604
35090
  return pulumi.get(self, "kafka_authentication_method")
34605
35091
 
35092
+ @property
35093
+ @pulumi.getter(name="kafkaSslCa")
35094
+ def kafka_ssl_ca(self) -> builtins.str:
35095
+ """
35096
+ Kafka certificate used. The possible values are `letsencrypt` and `project_ca`.
35097
+ """
35098
+ return pulumi.get(self, "kafka_ssl_ca")
35099
+
34606
35100
  @property
34607
35101
  @pulumi.getter
34608
35102
  def port(self) -> builtins.int:
@@ -36076,6 +36570,7 @@ class GetInfluxDbComponentResult(dict):
36076
36570
  connection_uri: builtins.str,
36077
36571
  host: builtins.str,
36078
36572
  kafka_authentication_method: builtins.str,
36573
+ kafka_ssl_ca: builtins.str,
36079
36574
  port: builtins.int,
36080
36575
  route: builtins.str,
36081
36576
  ssl: builtins.bool,
@@ -36085,6 +36580,7 @@ class GetInfluxDbComponentResult(dict):
36085
36580
  :param builtins.str connection_uri: Connection info for connecting to the service component. This is a combination of host and port.
36086
36581
  :param builtins.str host: Host name for connecting to the service component
36087
36582
  :param builtins.str kafka_authentication_method: Kafka authentication method. This is a value specific to the 'kafka' service component
36583
+ :param builtins.str kafka_ssl_ca: Kafka certificate used. The possible values are `letsencrypt` and `project_ca`.
36088
36584
  :param builtins.int port: Port number for connecting to the service component
36089
36585
  :param builtins.str route: Network access route
36090
36586
  :param builtins.bool ssl: Whether the endpoint is encrypted or accepts plaintext. By default endpoints are always encrypted and this property is only included for service components they may disable encryption
@@ -36094,6 +36590,7 @@ class GetInfluxDbComponentResult(dict):
36094
36590
  pulumi.set(__self__, "connection_uri", connection_uri)
36095
36591
  pulumi.set(__self__, "host", host)
36096
36592
  pulumi.set(__self__, "kafka_authentication_method", kafka_authentication_method)
36593
+ pulumi.set(__self__, "kafka_ssl_ca", kafka_ssl_ca)
36097
36594
  pulumi.set(__self__, "port", port)
36098
36595
  pulumi.set(__self__, "route", route)
36099
36596
  pulumi.set(__self__, "ssl", ssl)
@@ -36131,6 +36628,14 @@ class GetInfluxDbComponentResult(dict):
36131
36628
  """
36132
36629
  return pulumi.get(self, "kafka_authentication_method")
36133
36630
 
36631
+ @property
36632
+ @pulumi.getter(name="kafkaSslCa")
36633
+ def kafka_ssl_ca(self) -> builtins.str:
36634
+ """
36635
+ Kafka certificate used. The possible values are `letsencrypt` and `project_ca`.
36636
+ """
36637
+ return pulumi.get(self, "kafka_ssl_ca")
36638
+
36134
36639
  @property
36135
36640
  @pulumi.getter
36136
36641
  def port(self) -> builtins.int:
@@ -36701,6 +37206,7 @@ class GetKafkaComponentResult(dict):
36701
37206
  connection_uri: builtins.str,
36702
37207
  host: builtins.str,
36703
37208
  kafka_authentication_method: builtins.str,
37209
+ kafka_ssl_ca: builtins.str,
36704
37210
  port: builtins.int,
36705
37211
  route: builtins.str,
36706
37212
  ssl: builtins.bool,
@@ -36710,6 +37216,7 @@ class GetKafkaComponentResult(dict):
36710
37216
  :param builtins.str connection_uri: Connection info for connecting to the service component. This is a combination of host and port.
36711
37217
  :param builtins.str host: Host name for connecting to the service component
36712
37218
  :param builtins.str kafka_authentication_method: Kafka authentication method. This is a value specific to the 'kafka' service component
37219
+ :param builtins.str kafka_ssl_ca: Kafka certificate used. The possible values are `letsencrypt` and `project_ca`.
36713
37220
  :param builtins.int port: Port number for connecting to the service component
36714
37221
  :param builtins.str route: Network access route
36715
37222
  :param builtins.bool ssl: Whether the endpoint is encrypted or accepts plaintext. By default endpoints are always encrypted and this property is only included for service components they may disable encryption
@@ -36719,6 +37226,7 @@ class GetKafkaComponentResult(dict):
36719
37226
  pulumi.set(__self__, "connection_uri", connection_uri)
36720
37227
  pulumi.set(__self__, "host", host)
36721
37228
  pulumi.set(__self__, "kafka_authentication_method", kafka_authentication_method)
37229
+ pulumi.set(__self__, "kafka_ssl_ca", kafka_ssl_ca)
36722
37230
  pulumi.set(__self__, "port", port)
36723
37231
  pulumi.set(__self__, "route", route)
36724
37232
  pulumi.set(__self__, "ssl", ssl)
@@ -36756,6 +37264,14 @@ class GetKafkaComponentResult(dict):
36756
37264
  """
36757
37265
  return pulumi.get(self, "kafka_authentication_method")
36758
37266
 
37267
+ @property
37268
+ @pulumi.getter(name="kafkaSslCa")
37269
+ def kafka_ssl_ca(self) -> builtins.str:
37270
+ """
37271
+ Kafka certificate used. The possible values are `letsencrypt` and `project_ca`.
37272
+ """
37273
+ return pulumi.get(self, "kafka_ssl_ca")
37274
+
36759
37275
  @property
36760
37276
  @pulumi.getter
36761
37277
  def port(self) -> builtins.int:
@@ -36796,6 +37312,7 @@ class GetKafkaConnectComponentResult(dict):
36796
37312
  connection_uri: builtins.str,
36797
37313
  host: builtins.str,
36798
37314
  kafka_authentication_method: builtins.str,
37315
+ kafka_ssl_ca: builtins.str,
36799
37316
  port: builtins.int,
36800
37317
  route: builtins.str,
36801
37318
  ssl: builtins.bool,
@@ -36805,6 +37322,7 @@ class GetKafkaConnectComponentResult(dict):
36805
37322
  :param builtins.str connection_uri: Connection info for connecting to the service component. This is a combination of host and port.
36806
37323
  :param builtins.str host: Host name for connecting to the service component
36807
37324
  :param builtins.str kafka_authentication_method: Kafka authentication method. This is a value specific to the 'kafka' service component
37325
+ :param builtins.str kafka_ssl_ca: Kafka certificate used. The possible values are `letsencrypt` and `project_ca`.
36808
37326
  :param builtins.int port: Port number for connecting to the service component
36809
37327
  :param builtins.str route: Network access route
36810
37328
  :param builtins.bool ssl: Whether the endpoint is encrypted or accepts plaintext. By default endpoints are always encrypted and this property is only included for service components they may disable encryption
@@ -36814,6 +37332,7 @@ class GetKafkaConnectComponentResult(dict):
36814
37332
  pulumi.set(__self__, "connection_uri", connection_uri)
36815
37333
  pulumi.set(__self__, "host", host)
36816
37334
  pulumi.set(__self__, "kafka_authentication_method", kafka_authentication_method)
37335
+ pulumi.set(__self__, "kafka_ssl_ca", kafka_ssl_ca)
36817
37336
  pulumi.set(__self__, "port", port)
36818
37337
  pulumi.set(__self__, "route", route)
36819
37338
  pulumi.set(__self__, "ssl", ssl)
@@ -36851,6 +37370,14 @@ class GetKafkaConnectComponentResult(dict):
36851
37370
  """
36852
37371
  return pulumi.get(self, "kafka_authentication_method")
36853
37372
 
37373
+ @property
37374
+ @pulumi.getter(name="kafkaSslCa")
37375
+ def kafka_ssl_ca(self) -> builtins.str:
37376
+ """
37377
+ Kafka certificate used. The possible values are `letsencrypt` and `project_ca`.
37378
+ """
37379
+ return pulumi.get(self, "kafka_ssl_ca")
37380
+
36854
37381
  @property
36855
37382
  @pulumi.getter
36856
37383
  def port(self) -> builtins.int:
@@ -37780,7 +38307,7 @@ class GetKafkaKafkaUserConfigResult(dict):
37780
38307
  :param builtins.bool kafka_rest_authorization: Enable authorization in Kafka-REST service.
37781
38308
  :param 'GetKafkaKafkaUserConfigKafkaRestConfigArgs' kafka_rest_config: Kafka REST configuration
37782
38309
  :param 'GetKafkaKafkaUserConfigKafkaSaslMechanismsArgs' kafka_sasl_mechanisms: Kafka SASL mechanisms
37783
- :param builtins.str kafka_version: Enum: `3.1`, `3.2`, `3.3`, `3.4`, `3.5`, `3.6`, `3.7`, `3.8`, and newer. Kafka major version.
38310
+ :param builtins.str kafka_version: Enum: `3.1`, `3.2`, `3.3`, `3.4`, `3.5`, `3.6`, `3.7`, `3.8`, `3.9`, and newer. Kafka major version.
37784
38311
  :param builtins.bool letsencrypt_sasl_privatelink: Use Letsencrypt CA for Kafka SASL via Privatelink.
37785
38312
  :param 'GetKafkaKafkaUserConfigPrivateAccessArgs' private_access: Allow access to selected service ports from private networks
37786
38313
  :param 'GetKafkaKafkaUserConfigPrivatelinkAccessArgs' privatelink_access: Allow access to selected service components through Privatelink
@@ -37978,7 +38505,7 @@ class GetKafkaKafkaUserConfigResult(dict):
37978
38505
  @pulumi.getter(name="kafkaVersion")
37979
38506
  def kafka_version(self) -> Optional[builtins.str]:
37980
38507
  """
37981
- Enum: `3.1`, `3.2`, `3.3`, `3.4`, `3.5`, `3.6`, `3.7`, `3.8`, and newer. Kafka major version.
38508
+ Enum: `3.1`, `3.2`, `3.3`, `3.4`, `3.5`, `3.6`, `3.7`, `3.8`, `3.9`, and newer. Kafka major version.
37982
38509
  """
37983
38510
  return pulumi.get(self, "kafka_version")
37984
38511
 
@@ -39589,6 +40116,7 @@ class GetKafkaMirrorMakerComponentResult(dict):
39589
40116
  connection_uri: builtins.str,
39590
40117
  host: builtins.str,
39591
40118
  kafka_authentication_method: builtins.str,
40119
+ kafka_ssl_ca: builtins.str,
39592
40120
  port: builtins.int,
39593
40121
  route: builtins.str,
39594
40122
  ssl: builtins.bool,
@@ -39598,6 +40126,7 @@ class GetKafkaMirrorMakerComponentResult(dict):
39598
40126
  :param builtins.str connection_uri: Connection info for connecting to the service component. This is a combination of host and port.
39599
40127
  :param builtins.str host: Host name for connecting to the service component
39600
40128
  :param builtins.str kafka_authentication_method: Kafka authentication method. This is a value specific to the 'kafka' service component
40129
+ :param builtins.str kafka_ssl_ca: Kafka certificate used. The possible values are `letsencrypt` and `project_ca`.
39601
40130
  :param builtins.int port: Port number for connecting to the service component
39602
40131
  :param builtins.str route: Network access route
39603
40132
  :param builtins.bool ssl: Whether the endpoint is encrypted or accepts plaintext. By default endpoints are always encrypted and this property is only included for service components they may disable encryption
@@ -39607,6 +40136,7 @@ class GetKafkaMirrorMakerComponentResult(dict):
39607
40136
  pulumi.set(__self__, "connection_uri", connection_uri)
39608
40137
  pulumi.set(__self__, "host", host)
39609
40138
  pulumi.set(__self__, "kafka_authentication_method", kafka_authentication_method)
40139
+ pulumi.set(__self__, "kafka_ssl_ca", kafka_ssl_ca)
39610
40140
  pulumi.set(__self__, "port", port)
39611
40141
  pulumi.set(__self__, "route", route)
39612
40142
  pulumi.set(__self__, "ssl", ssl)
@@ -39644,6 +40174,14 @@ class GetKafkaMirrorMakerComponentResult(dict):
39644
40174
  """
39645
40175
  return pulumi.get(self, "kafka_authentication_method")
39646
40176
 
40177
+ @property
40178
+ @pulumi.getter(name="kafkaSslCa")
40179
+ def kafka_ssl_ca(self) -> builtins.str:
40180
+ """
40181
+ Kafka certificate used. The possible values are `letsencrypt` and `project_ca`.
40182
+ """
40183
+ return pulumi.get(self, "kafka_ssl_ca")
40184
+
39647
40185
  @property
39648
40186
  @pulumi.getter
39649
40187
  def port(self) -> builtins.int:
@@ -40170,7 +40708,7 @@ class GetKafkaTopicConfigResult(dict):
40170
40708
  :param builtins.str max_compaction_lag_ms: max.compaction.lag.ms value
40171
40709
  :param builtins.str max_message_bytes: max.message.bytes value
40172
40710
  :param builtins.bool message_downconversion_enable: message.downconversion.enable value
40173
- :param builtins.str message_format_version: message.format.version value. The possible values are `0.10.0`, `0.10.0-IV0`, `0.10.0-IV1`, `0.10.1`, `0.10.1-IV0`, `0.10.1-IV1`, `0.10.1-IV2`, `0.10.2`, `0.10.2-IV0`, `0.11.0`, `0.11.0-IV0`, `0.11.0-IV1`, `0.11.0-IV2`, `0.8.0`, `0.8.1`, `0.8.2`, `0.9.0`, `1.0`, `1.0-IV0`, `1.1`, `1.1-IV0`, `2.0`, `2.0-IV0`, `2.0-IV1`, `2.1`, `2.1-IV0`, `2.1-IV1`, `2.1-IV2`, `2.2`, `2.2-IV0`, `2.2-IV1`, `2.3`, `2.3-IV0`, `2.3-IV1`, `2.4`, `2.4-IV0`, `2.4-IV1`, `2.5`, `2.5-IV0`, `2.6`, `2.6-IV0`, `2.7`, `2.7-IV0`, `2.7-IV1`, `2.7-IV2`, `2.8`, `2.8-IV0`, `2.8-IV1`, `3.0`, `3.0-IV0`, `3.0-IV1`, `3.1`, `3.1-IV0`, `3.2`, `3.2-IV0`, `3.3`, `3.3-IV0`, `3.3-IV1`, `3.3-IV2`, `3.3-IV3`, `3.4`, `3.4-IV0`, `3.5`, `3.5-IV0`, `3.5-IV1`, `3.5-IV2`, `3.6`, `3.6-IV0`, `3.6-IV1`, `3.6-IV2`, `3.7`, `3.7-IV0`, `3.7-IV1`, `3.7-IV2`, `3.7-IV3`, `3.7-IV4`, `3.8`, `3.8-IV0`, `3.9`, `3.9-IV0` and `3.9-IV1`.
40711
+ :param builtins.str message_format_version: message.format.version value. The possible values are `0.10.0`, `0.10.0-IV0`, `0.10.0-IV1`, `0.10.1`, `0.10.1-IV0`, `0.10.1-IV1`, `0.10.1-IV2`, `0.10.2`, `0.10.2-IV0`, `0.11.0`, `0.11.0-IV0`, `0.11.0-IV1`, `0.11.0-IV2`, `0.8.0`, `0.8.1`, `0.8.2`, `0.9.0`, `1.0`, `1.0-IV0`, `1.1`, `1.1-IV0`, `2.0`, `2.0-IV0`, `2.0-IV1`, `2.1`, `2.1-IV0`, `2.1-IV1`, `2.1-IV2`, `2.2`, `2.2-IV0`, `2.2-IV1`, `2.3`, `2.3-IV0`, `2.3-IV1`, `2.4`, `2.4-IV0`, `2.4-IV1`, `2.5`, `2.5-IV0`, `2.6`, `2.6-IV0`, `2.7`, `2.7-IV0`, `2.7-IV1`, `2.7-IV2`, `2.8`, `2.8-IV0`, `2.8-IV1`, `3.0`, `3.0-IV0`, `3.0-IV1`, `3.1`, `3.1-IV0`, `3.2`, `3.2-IV0`, `3.3`, `3.3-IV0`, `3.3-IV1`, `3.3-IV2`, `3.3-IV3`, `3.4`, `3.4-IV0`, `3.5`, `3.5-IV0`, `3.5-IV1`, `3.5-IV2`, `3.6`, `3.6-IV0`, `3.6-IV1`, `3.6-IV2`, `3.7`, `3.7-IV0`, `3.7-IV1`, `3.7-IV2`, `3.7-IV3`, `3.7-IV4`, `3.8`, `3.8-IV0`, `3.9`, `3.9-IV0`, `3.9-IV1`, `4.1` and `4.1-IV0`.
40174
40712
  :param builtins.str message_timestamp_difference_max_ms: message.timestamp.difference.max.ms value
40175
40713
  :param builtins.str message_timestamp_type: message.timestamp.type value. The possible values are `CreateTime` and `LogAppendTime`.
40176
40714
  :param builtins.float min_cleanable_dirty_ratio: min.cleanable.dirty.ratio value
@@ -40341,7 +40879,7 @@ class GetKafkaTopicConfigResult(dict):
40341
40879
  @pulumi.getter(name="messageFormatVersion")
40342
40880
  def message_format_version(self) -> Optional[builtins.str]:
40343
40881
  """
40344
- message.format.version value. The possible values are `0.10.0`, `0.10.0-IV0`, `0.10.0-IV1`, `0.10.1`, `0.10.1-IV0`, `0.10.1-IV1`, `0.10.1-IV2`, `0.10.2`, `0.10.2-IV0`, `0.11.0`, `0.11.0-IV0`, `0.11.0-IV1`, `0.11.0-IV2`, `0.8.0`, `0.8.1`, `0.8.2`, `0.9.0`, `1.0`, `1.0-IV0`, `1.1`, `1.1-IV0`, `2.0`, `2.0-IV0`, `2.0-IV1`, `2.1`, `2.1-IV0`, `2.1-IV1`, `2.1-IV2`, `2.2`, `2.2-IV0`, `2.2-IV1`, `2.3`, `2.3-IV0`, `2.3-IV1`, `2.4`, `2.4-IV0`, `2.4-IV1`, `2.5`, `2.5-IV0`, `2.6`, `2.6-IV0`, `2.7`, `2.7-IV0`, `2.7-IV1`, `2.7-IV2`, `2.8`, `2.8-IV0`, `2.8-IV1`, `3.0`, `3.0-IV0`, `3.0-IV1`, `3.1`, `3.1-IV0`, `3.2`, `3.2-IV0`, `3.3`, `3.3-IV0`, `3.3-IV1`, `3.3-IV2`, `3.3-IV3`, `3.4`, `3.4-IV0`, `3.5`, `3.5-IV0`, `3.5-IV1`, `3.5-IV2`, `3.6`, `3.6-IV0`, `3.6-IV1`, `3.6-IV2`, `3.7`, `3.7-IV0`, `3.7-IV1`, `3.7-IV2`, `3.7-IV3`, `3.7-IV4`, `3.8`, `3.8-IV0`, `3.9`, `3.9-IV0` and `3.9-IV1`.
40882
+ message.format.version value. The possible values are `0.10.0`, `0.10.0-IV0`, `0.10.0-IV1`, `0.10.1`, `0.10.1-IV0`, `0.10.1-IV1`, `0.10.1-IV2`, `0.10.2`, `0.10.2-IV0`, `0.11.0`, `0.11.0-IV0`, `0.11.0-IV1`, `0.11.0-IV2`, `0.8.0`, `0.8.1`, `0.8.2`, `0.9.0`, `1.0`, `1.0-IV0`, `1.1`, `1.1-IV0`, `2.0`, `2.0-IV0`, `2.0-IV1`, `2.1`, `2.1-IV0`, `2.1-IV1`, `2.1-IV2`, `2.2`, `2.2-IV0`, `2.2-IV1`, `2.3`, `2.3-IV0`, `2.3-IV1`, `2.4`, `2.4-IV0`, `2.4-IV1`, `2.5`, `2.5-IV0`, `2.6`, `2.6-IV0`, `2.7`, `2.7-IV0`, `2.7-IV1`, `2.7-IV2`, `2.8`, `2.8-IV0`, `2.8-IV1`, `3.0`, `3.0-IV0`, `3.0-IV1`, `3.1`, `3.1-IV0`, `3.2`, `3.2-IV0`, `3.3`, `3.3-IV0`, `3.3-IV1`, `3.3-IV2`, `3.3-IV3`, `3.4`, `3.4-IV0`, `3.5`, `3.5-IV0`, `3.5-IV1`, `3.5-IV2`, `3.6`, `3.6-IV0`, `3.6-IV1`, `3.6-IV2`, `3.7`, `3.7-IV0`, `3.7-IV1`, `3.7-IV2`, `3.7-IV3`, `3.7-IV4`, `3.8`, `3.8-IV0`, `3.9`, `3.9-IV0`, `3.9-IV1`, `4.1` and `4.1-IV0`.
40345
40883
  """
40346
40884
  return pulumi.get(self, "message_format_version")
40347
40885
 
@@ -40496,6 +41034,7 @@ class GetM3AggregatorComponentResult(dict):
40496
41034
  connection_uri: builtins.str,
40497
41035
  host: builtins.str,
40498
41036
  kafka_authentication_method: builtins.str,
41037
+ kafka_ssl_ca: builtins.str,
40499
41038
  port: builtins.int,
40500
41039
  route: builtins.str,
40501
41040
  ssl: builtins.bool,
@@ -40505,6 +41044,7 @@ class GetM3AggregatorComponentResult(dict):
40505
41044
  :param builtins.str connection_uri: Connection info for connecting to the service component. This is a combination of host and port.
40506
41045
  :param builtins.str host: Host name for connecting to the service component
40507
41046
  :param builtins.str kafka_authentication_method: Kafka authentication method. This is a value specific to the 'kafka' service component
41047
+ :param builtins.str kafka_ssl_ca: Kafka certificate used. The possible values are `letsencrypt` and `project_ca`.
40508
41048
  :param builtins.int port: Port number for connecting to the service component
40509
41049
  :param builtins.str route: Network access route
40510
41050
  :param builtins.bool ssl: Whether the endpoint is encrypted or accepts plaintext. By default endpoints are always encrypted and this property is only included for service components they may disable encryption
@@ -40514,6 +41054,7 @@ class GetM3AggregatorComponentResult(dict):
40514
41054
  pulumi.set(__self__, "connection_uri", connection_uri)
40515
41055
  pulumi.set(__self__, "host", host)
40516
41056
  pulumi.set(__self__, "kafka_authentication_method", kafka_authentication_method)
41057
+ pulumi.set(__self__, "kafka_ssl_ca", kafka_ssl_ca)
40517
41058
  pulumi.set(__self__, "port", port)
40518
41059
  pulumi.set(__self__, "route", route)
40519
41060
  pulumi.set(__self__, "ssl", ssl)
@@ -40551,6 +41092,14 @@ class GetM3AggregatorComponentResult(dict):
40551
41092
  """
40552
41093
  return pulumi.get(self, "kafka_authentication_method")
40553
41094
 
41095
+ @property
41096
+ @pulumi.getter(name="kafkaSslCa")
41097
+ def kafka_ssl_ca(self) -> builtins.str:
41098
+ """
41099
+ Kafka certificate used. The possible values are `letsencrypt` and `project_ca`.
41100
+ """
41101
+ return pulumi.get(self, "kafka_ssl_ca")
41102
+
40554
41103
  @property
40555
41104
  @pulumi.getter
40556
41105
  def port(self) -> builtins.int:
@@ -40830,6 +41379,7 @@ class GetM3DbComponentResult(dict):
40830
41379
  connection_uri: builtins.str,
40831
41380
  host: builtins.str,
40832
41381
  kafka_authentication_method: builtins.str,
41382
+ kafka_ssl_ca: builtins.str,
40833
41383
  port: builtins.int,
40834
41384
  route: builtins.str,
40835
41385
  ssl: builtins.bool,
@@ -40839,6 +41389,7 @@ class GetM3DbComponentResult(dict):
40839
41389
  :param builtins.str connection_uri: Connection info for connecting to the service component. This is a combination of host and port.
40840
41390
  :param builtins.str host: Host name for connecting to the service component
40841
41391
  :param builtins.str kafka_authentication_method: Kafka authentication method. This is a value specific to the 'kafka' service component
41392
+ :param builtins.str kafka_ssl_ca: Kafka certificate used. The possible values are `letsencrypt` and `project_ca`.
40842
41393
  :param builtins.int port: Port number for connecting to the service component
40843
41394
  :param builtins.str route: Network access route
40844
41395
  :param builtins.bool ssl: Whether the endpoint is encrypted or accepts plaintext. By default endpoints are always encrypted and this property is only included for service components they may disable encryption
@@ -40848,6 +41399,7 @@ class GetM3DbComponentResult(dict):
40848
41399
  pulumi.set(__self__, "connection_uri", connection_uri)
40849
41400
  pulumi.set(__self__, "host", host)
40850
41401
  pulumi.set(__self__, "kafka_authentication_method", kafka_authentication_method)
41402
+ pulumi.set(__self__, "kafka_ssl_ca", kafka_ssl_ca)
40851
41403
  pulumi.set(__self__, "port", port)
40852
41404
  pulumi.set(__self__, "route", route)
40853
41405
  pulumi.set(__self__, "ssl", ssl)
@@ -40885,6 +41437,14 @@ class GetM3DbComponentResult(dict):
40885
41437
  """
40886
41438
  return pulumi.get(self, "kafka_authentication_method")
40887
41439
 
41440
+ @property
41441
+ @pulumi.getter(name="kafkaSslCa")
41442
+ def kafka_ssl_ca(self) -> builtins.str:
41443
+ """
41444
+ Kafka certificate used. The possible values are `letsencrypt` and `project_ca`.
41445
+ """
41446
+ return pulumi.get(self, "kafka_ssl_ca")
41447
+
40888
41448
  @property
40889
41449
  @pulumi.getter
40890
41450
  def port(self) -> builtins.int:
@@ -41838,6 +42398,7 @@ class GetMySqlComponentResult(dict):
41838
42398
  connection_uri: builtins.str,
41839
42399
  host: builtins.str,
41840
42400
  kafka_authentication_method: builtins.str,
42401
+ kafka_ssl_ca: builtins.str,
41841
42402
  port: builtins.int,
41842
42403
  route: builtins.str,
41843
42404
  ssl: builtins.bool,
@@ -41847,6 +42408,7 @@ class GetMySqlComponentResult(dict):
41847
42408
  :param builtins.str connection_uri: Connection info for connecting to the service component. This is a combination of host and port.
41848
42409
  :param builtins.str host: Host name for connecting to the service component
41849
42410
  :param builtins.str kafka_authentication_method: Kafka authentication method. This is a value specific to the 'kafka' service component
42411
+ :param builtins.str kafka_ssl_ca: Kafka certificate used. The possible values are `letsencrypt` and `project_ca`.
41850
42412
  :param builtins.int port: Port number for connecting to the service component
41851
42413
  :param builtins.str route: Network access route
41852
42414
  :param builtins.bool ssl: Whether the endpoint is encrypted or accepts plaintext. By default endpoints are always encrypted and this property is only included for service components they may disable encryption
@@ -41856,6 +42418,7 @@ class GetMySqlComponentResult(dict):
41856
42418
  pulumi.set(__self__, "connection_uri", connection_uri)
41857
42419
  pulumi.set(__self__, "host", host)
41858
42420
  pulumi.set(__self__, "kafka_authentication_method", kafka_authentication_method)
42421
+ pulumi.set(__self__, "kafka_ssl_ca", kafka_ssl_ca)
41859
42422
  pulumi.set(__self__, "port", port)
41860
42423
  pulumi.set(__self__, "route", route)
41861
42424
  pulumi.set(__self__, "ssl", ssl)
@@ -41893,6 +42456,14 @@ class GetMySqlComponentResult(dict):
41893
42456
  """
41894
42457
  return pulumi.get(self, "kafka_authentication_method")
41895
42458
 
42459
+ @property
42460
+ @pulumi.getter(name="kafkaSslCa")
42461
+ def kafka_ssl_ca(self) -> builtins.str:
42462
+ """
42463
+ Kafka certificate used. The possible values are `letsencrypt` and `project_ca`.
42464
+ """
42465
+ return pulumi.get(self, "kafka_ssl_ca")
42466
+
41896
42467
  @property
41897
42468
  @pulumi.getter
41898
42469
  def port(self) -> builtins.int:
@@ -43043,6 +43614,7 @@ class GetOpenSearchComponentResult(dict):
43043
43614
  connection_uri: builtins.str,
43044
43615
  host: builtins.str,
43045
43616
  kafka_authentication_method: builtins.str,
43617
+ kafka_ssl_ca: builtins.str,
43046
43618
  port: builtins.int,
43047
43619
  route: builtins.str,
43048
43620
  ssl: builtins.bool,
@@ -43052,6 +43624,7 @@ class GetOpenSearchComponentResult(dict):
43052
43624
  :param builtins.str connection_uri: Connection info for connecting to the service component. This is a combination of host and port.
43053
43625
  :param builtins.str host: Host name for connecting to the service component
43054
43626
  :param builtins.str kafka_authentication_method: Kafka authentication method. This is a value specific to the 'kafka' service component
43627
+ :param builtins.str kafka_ssl_ca: Kafka certificate used. The possible values are `letsencrypt` and `project_ca`.
43055
43628
  :param builtins.int port: Port number for connecting to the service component
43056
43629
  :param builtins.str route: Network access route
43057
43630
  :param builtins.bool ssl: Whether the endpoint is encrypted or accepts plaintext. By default endpoints are always encrypted and this property is only included for service components they may disable encryption
@@ -43061,6 +43634,7 @@ class GetOpenSearchComponentResult(dict):
43061
43634
  pulumi.set(__self__, "connection_uri", connection_uri)
43062
43635
  pulumi.set(__self__, "host", host)
43063
43636
  pulumi.set(__self__, "kafka_authentication_method", kafka_authentication_method)
43637
+ pulumi.set(__self__, "kafka_ssl_ca", kafka_ssl_ca)
43064
43638
  pulumi.set(__self__, "port", port)
43065
43639
  pulumi.set(__self__, "route", route)
43066
43640
  pulumi.set(__self__, "ssl", ssl)
@@ -43098,6 +43672,14 @@ class GetOpenSearchComponentResult(dict):
43098
43672
  """
43099
43673
  return pulumi.get(self, "kafka_authentication_method")
43100
43674
 
43675
+ @property
43676
+ @pulumi.getter(name="kafkaSslCa")
43677
+ def kafka_ssl_ca(self) -> builtins.str:
43678
+ """
43679
+ Kafka certificate used. The possible values are `letsencrypt` and `project_ca`.
43680
+ """
43681
+ return pulumi.get(self, "kafka_ssl_ca")
43682
+
43101
43683
  @property
43102
43684
  @pulumi.getter
43103
43685
  def port(self) -> builtins.int:
@@ -43553,7 +44135,7 @@ class GetOpenSearchOpensearchUserConfigAzureMigrationResult(dict):
43553
44135
  :param builtins.str endpoint_suffix: Defines the DNS suffix for Azure Storage endpoints.
43554
44136
  :param builtins.bool include_aliases: Whether to restore aliases alongside their associated indexes. Default is true.
43555
44137
  :param builtins.str key: Azure account secret key. One of key or sas_token should be specified.
43556
- :param builtins.bool readonly: Whether the repository is read-only. Default: `false`.
44138
+ :param builtins.bool readonly: Whether the repository is read-only. Default: `true`.
43557
44139
  :param builtins.bool restore_global_state: If true, restore the cluster state. Defaults to false.
43558
44140
  :param builtins.str sas_token: A shared access signatures (SAS) token. One of key or sas_token should be specified.
43559
44141
  """
@@ -43663,7 +44245,7 @@ class GetOpenSearchOpensearchUserConfigAzureMigrationResult(dict):
43663
44245
  @pulumi.getter
43664
44246
  def readonly(self) -> Optional[builtins.bool]:
43665
44247
  """
43666
- Whether the repository is read-only. Default: `false`.
44248
+ Whether the repository is read-only. Default: `true`.
43667
44249
  """
43668
44250
  return pulumi.get(self, "readonly")
43669
44251
 
@@ -43706,7 +44288,7 @@ class GetOpenSearchOpensearchUserConfigGcsMigrationResult(dict):
43706
44288
  :param builtins.str chunk_size: Big files can be broken down into chunks during snapshotting if needed. Should be the same as for the 3rd party repository.
43707
44289
  :param builtins.bool compress: When set to true metadata files are stored in compressed format.
43708
44290
  :param builtins.bool include_aliases: Whether to restore aliases alongside their associated indexes. Default is true.
43709
- :param builtins.bool readonly: Whether the repository is read-only. Default: `false`.
44291
+ :param builtins.bool readonly: Whether the repository is read-only. Default: `true`.
43710
44292
  :param builtins.bool restore_global_state: If true, restore the cluster state. Defaults to false.
43711
44293
  """
43712
44294
  pulumi.set(__self__, "base_path", base_path)
@@ -43793,7 +44375,7 @@ class GetOpenSearchOpensearchUserConfigGcsMigrationResult(dict):
43793
44375
  @pulumi.getter
43794
44376
  def readonly(self) -> Optional[builtins.bool]:
43795
44377
  """
43796
- Whether the repository is read-only. Default: `false`.
44378
+ Whether the repository is read-only. Default: `true`.
43797
44379
  """
43798
44380
  return pulumi.get(self, "readonly")
43799
44381
 
@@ -46038,7 +46620,7 @@ class GetOpenSearchOpensearchUserConfigS3MigrationResult(dict):
46038
46620
  :param builtins.bool compress: When set to true metadata files are stored in compressed format.
46039
46621
  :param builtins.str endpoint: The S3 service endpoint to connect to. If you are using an S3-compatible service then you should set this to the service’s endpoint.
46040
46622
  :param builtins.bool include_aliases: Whether to restore aliases alongside their associated indexes. Default is true.
46041
- :param builtins.bool readonly: Whether the repository is read-only. Default: `false`.
46623
+ :param builtins.bool readonly: Whether the repository is read-only. Default: `true`.
46042
46624
  :param builtins.bool restore_global_state: If true, restore the cluster state. Defaults to false.
46043
46625
  :param builtins.bool server_side_encryption: When set to true files are encrypted on server side.
46044
46626
  """
@@ -46156,7 +46738,7 @@ class GetOpenSearchOpensearchUserConfigS3MigrationResult(dict):
46156
46738
  @pulumi.getter
46157
46739
  def readonly(self) -> Optional[builtins.bool]:
46158
46740
  """
46159
- Whether the repository is read-only. Default: `false`.
46741
+ Whether the repository is read-only. Default: `true`.
46160
46742
  """
46161
46743
  return pulumi.get(self, "readonly")
46162
46744
 
@@ -46346,6 +46928,145 @@ class GetOpenSearchTechEmailResult(dict):
46346
46928
  return pulumi.get(self, "email")
46347
46929
 
46348
46930
 
46931
+ @pulumi.output_type
46932
+ class GetOrganizationBillingGroupListBillingGroupResult(dict):
46933
+ def __init__(__self__, *,
46934
+ billing_address_id: builtins.str,
46935
+ billing_contact_emails: Sequence[builtins.str],
46936
+ billing_currency: builtins.str,
46937
+ billing_emails: Sequence[builtins.str],
46938
+ billing_group_id: builtins.str,
46939
+ billing_group_name: builtins.str,
46940
+ custom_invoice_text: builtins.str,
46941
+ id: builtins.str,
46942
+ organization_id: builtins.str,
46943
+ payment_method_id: builtins.str,
46944
+ shipping_address_id: builtins.str,
46945
+ vat_id: builtins.str):
46946
+ """
46947
+ :param builtins.str billing_address_id: ID of the billing address.
46948
+ :param Sequence[builtins.str] billing_contact_emails: List of billing contact emails.
46949
+ :param builtins.str billing_currency: Billing currency.
46950
+ :param Sequence[builtins.str] billing_emails: List of billing emails.
46951
+ :param builtins.str billing_group_id: ID of the billing group.
46952
+ :param builtins.str billing_group_name: Name of the billing group.
46953
+ :param builtins.str custom_invoice_text: Custom invoice text.
46954
+ :param builtins.str id: Resource ID, a composite of organization*id and billing*group_id.
46955
+ :param builtins.str organization_id: ID of the organization.
46956
+ :param builtins.str payment_method_id: ID of the payment method.
46957
+ :param builtins.str shipping_address_id: ID of the shipping address.
46958
+ :param builtins.str vat_id: VAT ID.
46959
+ """
46960
+ pulumi.set(__self__, "billing_address_id", billing_address_id)
46961
+ pulumi.set(__self__, "billing_contact_emails", billing_contact_emails)
46962
+ pulumi.set(__self__, "billing_currency", billing_currency)
46963
+ pulumi.set(__self__, "billing_emails", billing_emails)
46964
+ pulumi.set(__self__, "billing_group_id", billing_group_id)
46965
+ pulumi.set(__self__, "billing_group_name", billing_group_name)
46966
+ pulumi.set(__self__, "custom_invoice_text", custom_invoice_text)
46967
+ pulumi.set(__self__, "id", id)
46968
+ pulumi.set(__self__, "organization_id", organization_id)
46969
+ pulumi.set(__self__, "payment_method_id", payment_method_id)
46970
+ pulumi.set(__self__, "shipping_address_id", shipping_address_id)
46971
+ pulumi.set(__self__, "vat_id", vat_id)
46972
+
46973
+ @property
46974
+ @pulumi.getter(name="billingAddressId")
46975
+ def billing_address_id(self) -> builtins.str:
46976
+ """
46977
+ ID of the billing address.
46978
+ """
46979
+ return pulumi.get(self, "billing_address_id")
46980
+
46981
+ @property
46982
+ @pulumi.getter(name="billingContactEmails")
46983
+ def billing_contact_emails(self) -> Sequence[builtins.str]:
46984
+ """
46985
+ List of billing contact emails.
46986
+ """
46987
+ return pulumi.get(self, "billing_contact_emails")
46988
+
46989
+ @property
46990
+ @pulumi.getter(name="billingCurrency")
46991
+ def billing_currency(self) -> builtins.str:
46992
+ """
46993
+ Billing currency.
46994
+ """
46995
+ return pulumi.get(self, "billing_currency")
46996
+
46997
+ @property
46998
+ @pulumi.getter(name="billingEmails")
46999
+ def billing_emails(self) -> Sequence[builtins.str]:
47000
+ """
47001
+ List of billing emails.
47002
+ """
47003
+ return pulumi.get(self, "billing_emails")
47004
+
47005
+ @property
47006
+ @pulumi.getter(name="billingGroupId")
47007
+ def billing_group_id(self) -> builtins.str:
47008
+ """
47009
+ ID of the billing group.
47010
+ """
47011
+ return pulumi.get(self, "billing_group_id")
47012
+
47013
+ @property
47014
+ @pulumi.getter(name="billingGroupName")
47015
+ def billing_group_name(self) -> builtins.str:
47016
+ """
47017
+ Name of the billing group.
47018
+ """
47019
+ return pulumi.get(self, "billing_group_name")
47020
+
47021
+ @property
47022
+ @pulumi.getter(name="customInvoiceText")
47023
+ def custom_invoice_text(self) -> builtins.str:
47024
+ """
47025
+ Custom invoice text.
47026
+ """
47027
+ return pulumi.get(self, "custom_invoice_text")
47028
+
47029
+ @property
47030
+ @pulumi.getter
47031
+ def id(self) -> builtins.str:
47032
+ """
47033
+ Resource ID, a composite of organization*id and billing*group_id.
47034
+ """
47035
+ return pulumi.get(self, "id")
47036
+
47037
+ @property
47038
+ @pulumi.getter(name="organizationId")
47039
+ def organization_id(self) -> builtins.str:
47040
+ """
47041
+ ID of the organization.
47042
+ """
47043
+ return pulumi.get(self, "organization_id")
47044
+
47045
+ @property
47046
+ @pulumi.getter(name="paymentMethodId")
47047
+ def payment_method_id(self) -> builtins.str:
47048
+ """
47049
+ ID of the payment method.
47050
+ """
47051
+ return pulumi.get(self, "payment_method_id")
47052
+
47053
+ @property
47054
+ @pulumi.getter(name="shippingAddressId")
47055
+ def shipping_address_id(self) -> builtins.str:
47056
+ """
47057
+ ID of the shipping address.
47058
+ """
47059
+ return pulumi.get(self, "shipping_address_id")
47060
+
47061
+ @property
47062
+ @pulumi.getter(name="vatId")
47063
+ def vat_id(self) -> builtins.str:
47064
+ """
47065
+ VAT ID.
47066
+ """
47067
+ return pulumi.get(self, "vat_id")
47068
+
47069
+
46349
47070
  @pulumi.output_type
46350
47071
  class GetOrganizationProjectTagResult(dict):
46351
47072
  def __init__(__self__, *,
@@ -46384,10 +47105,10 @@ class GetOrganizationUserListUserResult(dict):
46384
47105
  user_id: builtins.str,
46385
47106
  user_infos: Sequence['outputs.GetOrganizationUserListUserUserInfoResult']):
46386
47107
  """
46387
- :param builtins.bool is_super_admin: Super admin state of the organization user
46388
- :param builtins.str join_time: Join time
46389
- :param builtins.str last_activity_time: Last activity time
46390
- :param builtins.str user_id: User ID
47108
+ :param builtins.bool is_super_admin: Indicates whether the user is a [super admin](https://aiven.io/docs/platform/concepts/permissions).
47109
+ :param builtins.str join_time: Date and time when the user joined the organization.
47110
+ :param builtins.str last_activity_time: Last activity time.
47111
+ :param builtins.str user_id: User ID.
46391
47112
  """
46392
47113
  pulumi.set(__self__, "is_super_admin", is_super_admin)
46393
47114
  pulumi.set(__self__, "join_time", join_time)
@@ -46399,7 +47120,7 @@ class GetOrganizationUserListUserResult(dict):
46399
47120
  @pulumi.getter(name="isSuperAdmin")
46400
47121
  def is_super_admin(self) -> builtins.bool:
46401
47122
  """
46402
- Super admin state of the organization user
47123
+ Indicates whether the user is a [super admin](https://aiven.io/docs/platform/concepts/permissions).
46403
47124
  """
46404
47125
  return pulumi.get(self, "is_super_admin")
46405
47126
 
@@ -46407,7 +47128,7 @@ class GetOrganizationUserListUserResult(dict):
46407
47128
  @pulumi.getter(name="joinTime")
46408
47129
  def join_time(self) -> builtins.str:
46409
47130
  """
46410
- Join time
47131
+ Date and time when the user joined the organization.
46411
47132
  """
46412
47133
  return pulumi.get(self, "join_time")
46413
47134
 
@@ -46415,7 +47136,7 @@ class GetOrganizationUserListUserResult(dict):
46415
47136
  @pulumi.getter(name="lastActivityTime")
46416
47137
  def last_activity_time(self) -> builtins.str:
46417
47138
  """
46418
- Last activity time
47139
+ Last activity time.
46419
47140
  """
46420
47141
  return pulumi.get(self, "last_activity_time")
46421
47142
 
@@ -46423,7 +47144,7 @@ class GetOrganizationUserListUserResult(dict):
46423
47144
  @pulumi.getter(name="userId")
46424
47145
  def user_id(self) -> builtins.str:
46425
47146
  """
46426
- User ID
47147
+ User ID.
46427
47148
  """
46428
47149
  return pulumi.get(self, "user_id")
46429
47150
 
@@ -46450,15 +47171,15 @@ class GetOrganizationUserListUserUserInfoResult(dict):
46450
47171
  """
46451
47172
  :param builtins.str city: City
46452
47173
  :param builtins.str country: Country
46453
- :param builtins.str create_time: Creation time
47174
+ :param builtins.str create_time: Date and time when the user was created.
46454
47175
  :param builtins.str department: Department
46455
- :param builtins.bool is_application_user: Is Application User
46456
- :param builtins.str job_title: Job Title
46457
- :param builtins.bool managed_by_scim: Managed By Scim
46458
- :param builtins.str managing_organization_id: Managing Organization ID
46459
- :param builtins.str real_name: Real Name
47176
+ :param builtins.bool is_application_user: Inidicates whether the user is an [application user](https://aiven.io/docs/platform/concepts/application-users).
47177
+ :param builtins.str job_title: Job title
47178
+ :param builtins.bool managed_by_scim: Indicates whether the user is managed by [System for Cross-domain Identity Management (SCIM)](https://aiven.io/docs/platform/howto/list-identity-providers).
47179
+ :param builtins.str managing_organization_id: The ID of the organization that [manages the user](https://aiven.io/docs/platform/concepts/managed-users).
47180
+ :param builtins.str real_name: Full name of the user.
46460
47181
  :param builtins.str state: State
46461
- :param builtins.str user_email: User Email
47182
+ :param builtins.str user_email: Email address.
46462
47183
  """
46463
47184
  pulumi.set(__self__, "city", city)
46464
47185
  pulumi.set(__self__, "country", country)
@@ -46492,7 +47213,7 @@ class GetOrganizationUserListUserUserInfoResult(dict):
46492
47213
  @pulumi.getter(name="createTime")
46493
47214
  def create_time(self) -> builtins.str:
46494
47215
  """
46495
- Creation time
47216
+ Date and time when the user was created.
46496
47217
  """
46497
47218
  return pulumi.get(self, "create_time")
46498
47219
 
@@ -46508,7 +47229,7 @@ class GetOrganizationUserListUserUserInfoResult(dict):
46508
47229
  @pulumi.getter(name="isApplicationUser")
46509
47230
  def is_application_user(self) -> builtins.bool:
46510
47231
  """
46511
- Is Application User
47232
+ Inidicates whether the user is an [application user](https://aiven.io/docs/platform/concepts/application-users).
46512
47233
  """
46513
47234
  return pulumi.get(self, "is_application_user")
46514
47235
 
@@ -46516,7 +47237,7 @@ class GetOrganizationUserListUserUserInfoResult(dict):
46516
47237
  @pulumi.getter(name="jobTitle")
46517
47238
  def job_title(self) -> builtins.str:
46518
47239
  """
46519
- Job Title
47240
+ Job title
46520
47241
  """
46521
47242
  return pulumi.get(self, "job_title")
46522
47243
 
@@ -46524,7 +47245,7 @@ class GetOrganizationUserListUserUserInfoResult(dict):
46524
47245
  @pulumi.getter(name="managedByScim")
46525
47246
  def managed_by_scim(self) -> builtins.bool:
46526
47247
  """
46527
- Managed By Scim
47248
+ Indicates whether the user is managed by [System for Cross-domain Identity Management (SCIM)](https://aiven.io/docs/platform/howto/list-identity-providers).
46528
47249
  """
46529
47250
  return pulumi.get(self, "managed_by_scim")
46530
47251
 
@@ -46532,7 +47253,7 @@ class GetOrganizationUserListUserUserInfoResult(dict):
46532
47253
  @pulumi.getter(name="managingOrganizationId")
46533
47254
  def managing_organization_id(self) -> builtins.str:
46534
47255
  """
46535
- Managing Organization ID
47256
+ The ID of the organization that [manages the user](https://aiven.io/docs/platform/concepts/managed-users).
46536
47257
  """
46537
47258
  return pulumi.get(self, "managing_organization_id")
46538
47259
 
@@ -46540,7 +47261,7 @@ class GetOrganizationUserListUserUserInfoResult(dict):
46540
47261
  @pulumi.getter(name="realName")
46541
47262
  def real_name(self) -> builtins.str:
46542
47263
  """
46543
- Real Name
47264
+ Full name of the user.
46544
47265
  """
46545
47266
  return pulumi.get(self, "real_name")
46546
47267
 
@@ -46556,7 +47277,7 @@ class GetOrganizationUserListUserUserInfoResult(dict):
46556
47277
  @pulumi.getter(name="userEmail")
46557
47278
  def user_email(self) -> builtins.str:
46558
47279
  """
46559
- User Email
47280
+ Email address.
46560
47281
  """
46561
47282
  return pulumi.get(self, "user_email")
46562
47283
 
@@ -46568,6 +47289,7 @@ class GetPgComponentResult(dict):
46568
47289
  connection_uri: builtins.str,
46569
47290
  host: builtins.str,
46570
47291
  kafka_authentication_method: builtins.str,
47292
+ kafka_ssl_ca: builtins.str,
46571
47293
  port: builtins.int,
46572
47294
  route: builtins.str,
46573
47295
  ssl: builtins.bool,
@@ -46577,6 +47299,7 @@ class GetPgComponentResult(dict):
46577
47299
  :param builtins.str connection_uri: Connection info for connecting to the service component. This is a combination of host and port.
46578
47300
  :param builtins.str host: Host name for connecting to the service component
46579
47301
  :param builtins.str kafka_authentication_method: Kafka authentication method. This is a value specific to the 'kafka' service component
47302
+ :param builtins.str kafka_ssl_ca: Kafka certificate used. The possible values are `letsencrypt` and `project_ca`.
46580
47303
  :param builtins.int port: Port number for connecting to the service component
46581
47304
  :param builtins.str route: Network access route
46582
47305
  :param builtins.bool ssl: Whether the endpoint is encrypted or accepts plaintext. By default endpoints are always encrypted and this property is only included for service components they may disable encryption
@@ -46586,6 +47309,7 @@ class GetPgComponentResult(dict):
46586
47309
  pulumi.set(__self__, "connection_uri", connection_uri)
46587
47310
  pulumi.set(__self__, "host", host)
46588
47311
  pulumi.set(__self__, "kafka_authentication_method", kafka_authentication_method)
47312
+ pulumi.set(__self__, "kafka_ssl_ca", kafka_ssl_ca)
46589
47313
  pulumi.set(__self__, "port", port)
46590
47314
  pulumi.set(__self__, "route", route)
46591
47315
  pulumi.set(__self__, "ssl", ssl)
@@ -46623,6 +47347,14 @@ class GetPgComponentResult(dict):
46623
47347
  """
46624
47348
  return pulumi.get(self, "kafka_authentication_method")
46625
47349
 
47350
+ @property
47351
+ @pulumi.getter(name="kafkaSslCa")
47352
+ def kafka_ssl_ca(self) -> builtins.str:
47353
+ """
47354
+ Kafka certificate used. The possible values are `letsencrypt` and `project_ca`.
47355
+ """
47356
+ return pulumi.get(self, "kafka_ssl_ca")
47357
+
46626
47358
  @property
46627
47359
  @pulumi.getter
46628
47360
  def port(self) -> builtins.int:
@@ -48702,6 +49434,7 @@ class GetRedisComponentResult(dict):
48702
49434
  connection_uri: builtins.str,
48703
49435
  host: builtins.str,
48704
49436
  kafka_authentication_method: builtins.str,
49437
+ kafka_ssl_ca: builtins.str,
48705
49438
  port: builtins.int,
48706
49439
  route: builtins.str,
48707
49440
  ssl: builtins.bool,
@@ -48711,6 +49444,7 @@ class GetRedisComponentResult(dict):
48711
49444
  :param builtins.str connection_uri: Connection info for connecting to the service component. This is a combination of host and port.
48712
49445
  :param builtins.str host: Host name for connecting to the service component
48713
49446
  :param builtins.str kafka_authentication_method: Kafka authentication method. This is a value specific to the 'kafka' service component
49447
+ :param builtins.str kafka_ssl_ca: Kafka certificate used. The possible values are `letsencrypt` and `project_ca`.
48714
49448
  :param builtins.int port: Port number for connecting to the service component
48715
49449
  :param builtins.str route: Network access route
48716
49450
  :param builtins.bool ssl: Whether the endpoint is encrypted or accepts plaintext. By default endpoints are always encrypted and this property is only included for service components they may disable encryption
@@ -48720,6 +49454,7 @@ class GetRedisComponentResult(dict):
48720
49454
  pulumi.set(__self__, "connection_uri", connection_uri)
48721
49455
  pulumi.set(__self__, "host", host)
48722
49456
  pulumi.set(__self__, "kafka_authentication_method", kafka_authentication_method)
49457
+ pulumi.set(__self__, "kafka_ssl_ca", kafka_ssl_ca)
48723
49458
  pulumi.set(__self__, "port", port)
48724
49459
  pulumi.set(__self__, "route", route)
48725
49460
  pulumi.set(__self__, "ssl", ssl)
@@ -48757,6 +49492,14 @@ class GetRedisComponentResult(dict):
48757
49492
  """
48758
49493
  return pulumi.get(self, "kafka_authentication_method")
48759
49494
 
49495
+ @property
49496
+ @pulumi.getter(name="kafkaSslCa")
49497
+ def kafka_ssl_ca(self) -> builtins.str:
49498
+ """
49499
+ Kafka certificate used. The possible values are `letsencrypt` and `project_ca`.
49500
+ """
49501
+ return pulumi.get(self, "kafka_ssl_ca")
49502
+
48760
49503
  @property
48761
49504
  @pulumi.getter
48762
49505
  def port(self) -> builtins.int:
@@ -52229,6 +52972,7 @@ class GetThanosComponentResult(dict):
52229
52972
  connection_uri: builtins.str,
52230
52973
  host: builtins.str,
52231
52974
  kafka_authentication_method: builtins.str,
52975
+ kafka_ssl_ca: builtins.str,
52232
52976
  port: builtins.int,
52233
52977
  route: builtins.str,
52234
52978
  ssl: builtins.bool,
@@ -52238,6 +52982,7 @@ class GetThanosComponentResult(dict):
52238
52982
  :param builtins.str connection_uri: Connection info for connecting to the service component. This is a combination of host and port.
52239
52983
  :param builtins.str host: Host name for connecting to the service component
52240
52984
  :param builtins.str kafka_authentication_method: Kafka authentication method. This is a value specific to the 'kafka' service component
52985
+ :param builtins.str kafka_ssl_ca: Kafka certificate used. The possible values are `letsencrypt` and `project_ca`.
52241
52986
  :param builtins.int port: Port number for connecting to the service component
52242
52987
  :param builtins.str route: Network access route
52243
52988
  :param builtins.bool ssl: Whether the endpoint is encrypted or accepts plaintext. By default endpoints are always encrypted and this property is only included for service components they may disable encryption
@@ -52247,6 +52992,7 @@ class GetThanosComponentResult(dict):
52247
52992
  pulumi.set(__self__, "connection_uri", connection_uri)
52248
52993
  pulumi.set(__self__, "host", host)
52249
52994
  pulumi.set(__self__, "kafka_authentication_method", kafka_authentication_method)
52995
+ pulumi.set(__self__, "kafka_ssl_ca", kafka_ssl_ca)
52250
52996
  pulumi.set(__self__, "port", port)
52251
52997
  pulumi.set(__self__, "route", route)
52252
52998
  pulumi.set(__self__, "ssl", ssl)
@@ -52284,6 +53030,14 @@ class GetThanosComponentResult(dict):
52284
53030
  """
52285
53031
  return pulumi.get(self, "kafka_authentication_method")
52286
53032
 
53033
+ @property
53034
+ @pulumi.getter(name="kafkaSslCa")
53035
+ def kafka_ssl_ca(self) -> builtins.str:
53036
+ """
53037
+ Kafka certificate used. The possible values are `letsencrypt` and `project_ca`.
53038
+ """
53039
+ return pulumi.get(self, "kafka_ssl_ca")
53040
+
52287
53041
  @property
52288
53042
  @pulumi.getter
52289
53043
  def port(self) -> builtins.int:
@@ -52964,6 +53718,7 @@ class GetValkeyComponentResult(dict):
52964
53718
  connection_uri: builtins.str,
52965
53719
  host: builtins.str,
52966
53720
  kafka_authentication_method: builtins.str,
53721
+ kafka_ssl_ca: builtins.str,
52967
53722
  port: builtins.int,
52968
53723
  route: builtins.str,
52969
53724
  ssl: builtins.bool,
@@ -52973,6 +53728,7 @@ class GetValkeyComponentResult(dict):
52973
53728
  :param builtins.str connection_uri: Connection info for connecting to the service component. This is a combination of host and port.
52974
53729
  :param builtins.str host: Host name for connecting to the service component
52975
53730
  :param builtins.str kafka_authentication_method: Kafka authentication method. This is a value specific to the 'kafka' service component
53731
+ :param builtins.str kafka_ssl_ca: Kafka certificate used. The possible values are `letsencrypt` and `project_ca`.
52976
53732
  :param builtins.int port: Port number for connecting to the service component
52977
53733
  :param builtins.str route: Network access route
52978
53734
  :param builtins.bool ssl: Whether the endpoint is encrypted or accepts plaintext. By default endpoints are always encrypted and this property is only included for service components they may disable encryption
@@ -52982,6 +53738,7 @@ class GetValkeyComponentResult(dict):
52982
53738
  pulumi.set(__self__, "connection_uri", connection_uri)
52983
53739
  pulumi.set(__self__, "host", host)
52984
53740
  pulumi.set(__self__, "kafka_authentication_method", kafka_authentication_method)
53741
+ pulumi.set(__self__, "kafka_ssl_ca", kafka_ssl_ca)
52985
53742
  pulumi.set(__self__, "port", port)
52986
53743
  pulumi.set(__self__, "route", route)
52987
53744
  pulumi.set(__self__, "ssl", ssl)
@@ -53019,6 +53776,14 @@ class GetValkeyComponentResult(dict):
53019
53776
  """
53020
53777
  return pulumi.get(self, "kafka_authentication_method")
53021
53778
 
53779
+ @property
53780
+ @pulumi.getter(name="kafkaSslCa")
53781
+ def kafka_ssl_ca(self) -> builtins.str:
53782
+ """
53783
+ Kafka certificate used. The possible values are `letsencrypt` and `project_ca`.
53784
+ """
53785
+ return pulumi.get(self, "kafka_ssl_ca")
53786
+
53022
53787
  @property
53023
53788
  @pulumi.getter
53024
53789
  def port(self) -> builtins.int: