pulumi-aiven 6.43.1__py3-none-any.whl → 6.45.0a1762405690__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 (46) hide show
  1. pulumi_aiven/_inputs.py +60 -85
  2. pulumi_aiven/alloydbomni.py +28 -0
  3. pulumi_aiven/cassandra.py +28 -0
  4. pulumi_aiven/clickhouse.py +28 -0
  5. pulumi_aiven/dragonfly.py +28 -0
  6. pulumi_aiven/flink.py +28 -0
  7. pulumi_aiven/get_alloydbomni.py +15 -1
  8. pulumi_aiven/get_cassanda.py +15 -1
  9. pulumi_aiven/get_cassandra.py +15 -1
  10. pulumi_aiven/get_clickhouse.py +15 -1
  11. pulumi_aiven/get_dragonfly.py +15 -1
  12. pulumi_aiven/get_flink.py +15 -1
  13. pulumi_aiven/get_grafana.py +15 -1
  14. pulumi_aiven/get_influx_db.py +12 -1
  15. pulumi_aiven/get_kafka.py +15 -1
  16. pulumi_aiven/get_kafka_connect.py +15 -1
  17. pulumi_aiven/get_kafka_mirror_maker.py +15 -1
  18. pulumi_aiven/get_m3_aggregator.py +12 -1
  19. pulumi_aiven/get_m3_db.py +12 -1
  20. pulumi_aiven/get_my_sql.py +15 -1
  21. pulumi_aiven/get_open_search.py +15 -1
  22. pulumi_aiven/get_organizational_unit.py +4 -0
  23. pulumi_aiven/get_pg.py +15 -1
  24. pulumi_aiven/get_redis.py +15 -1
  25. pulumi_aiven/get_thanos.py +15 -1
  26. pulumi_aiven/get_valkey.py +15 -1
  27. pulumi_aiven/grafana.py +28 -0
  28. pulumi_aiven/influx_db.py +28 -0
  29. pulumi_aiven/kafka.py +28 -0
  30. pulumi_aiven/kafka_connect.py +28 -0
  31. pulumi_aiven/kafka_mirror_maker.py +28 -0
  32. pulumi_aiven/kafka_schema.py +20 -20
  33. pulumi_aiven/m3_aggregator.py +28 -0
  34. pulumi_aiven/m3_db.py +28 -0
  35. pulumi_aiven/my_sql.py +28 -0
  36. pulumi_aiven/open_search.py +28 -0
  37. pulumi_aiven/outputs.py +78 -104
  38. pulumi_aiven/pg.py +28 -0
  39. pulumi_aiven/pulumi-plugin.json +1 -1
  40. pulumi_aiven/redis.py +28 -0
  41. pulumi_aiven/thanos.py +28 -0
  42. pulumi_aiven/valkey.py +28 -0
  43. {pulumi_aiven-6.43.1.dist-info → pulumi_aiven-6.45.0a1762405690.dist-info}/METADATA +1 -1
  44. {pulumi_aiven-6.43.1.dist-info → pulumi_aiven-6.45.0a1762405690.dist-info}/RECORD +46 -46
  45. {pulumi_aiven-6.43.1.dist-info → pulumi_aiven-6.45.0a1762405690.dist-info}/WHEEL +0 -0
  46. {pulumi_aiven-6.43.1.dist-info → pulumi_aiven-6.45.0a1762405690.dist-info}/top_level.txt +0 -0
pulumi_aiven/redis.py CHANGED
@@ -295,6 +295,7 @@ class _RedisState:
295
295
  disk_space_step: Optional[pulumi.Input[_builtins.str]] = None,
296
296
  disk_space_used: Optional[pulumi.Input[_builtins.str]] = None,
297
297
  maintenance_window_dow: Optional[pulumi.Input[_builtins.str]] = None,
298
+ maintenance_window_enabled: Optional[pulumi.Input[_builtins.bool]] = None,
298
299
  maintenance_window_time: Optional[pulumi.Input[_builtins.str]] = None,
299
300
  plan: Optional[pulumi.Input[_builtins.str]] = None,
300
301
  project: Optional[pulumi.Input[_builtins.str]] = None,
@@ -325,6 +326,7 @@ class _RedisState:
325
326
  :param pulumi.Input[_builtins.str] disk_space_step: The default disk space step of the service, possible values depend on the service type, the cloud provider and the project. `disk_space` needs to increment from `disk_space_default` by increments of this size.
326
327
  :param pulumi.Input[_builtins.str] disk_space_used: The disk space that the service is currently using. This is the sum of `disk_space` and `additional_disk_space` in human-readable format (for example: `90GiB`).
327
328
  :param pulumi.Input[_builtins.str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
329
+ :param pulumi.Input[_builtins.bool] maintenance_window_enabled: Indicates whether the maintenance window is currently enabled for this service.
328
330
  :param pulumi.Input[_builtins.str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
329
331
  :param pulumi.Input[_builtins.str] plan: Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seen from the [Aiven pricing page](https://aiven.io/pricing).
330
332
  :param pulumi.Input[_builtins.str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
@@ -365,6 +367,8 @@ class _RedisState:
365
367
  pulumi.set(__self__, "disk_space_used", disk_space_used)
366
368
  if maintenance_window_dow is not None:
367
369
  pulumi.set(__self__, "maintenance_window_dow", maintenance_window_dow)
370
+ if maintenance_window_enabled is not None:
371
+ pulumi.set(__self__, "maintenance_window_enabled", maintenance_window_enabled)
368
372
  if maintenance_window_time is not None:
369
373
  pulumi.set(__self__, "maintenance_window_time", maintenance_window_time)
370
374
  if plan is not None:
@@ -513,6 +517,18 @@ class _RedisState:
513
517
  def maintenance_window_dow(self, value: Optional[pulumi.Input[_builtins.str]]):
514
518
  pulumi.set(self, "maintenance_window_dow", value)
515
519
 
520
+ @_builtins.property
521
+ @pulumi.getter(name="maintenanceWindowEnabled")
522
+ def maintenance_window_enabled(self) -> Optional[pulumi.Input[_builtins.bool]]:
523
+ """
524
+ Indicates whether the maintenance window is currently enabled for this service.
525
+ """
526
+ return pulumi.get(self, "maintenance_window_enabled")
527
+
528
+ @maintenance_window_enabled.setter
529
+ def maintenance_window_enabled(self, value: Optional[pulumi.Input[_builtins.bool]]):
530
+ pulumi.set(self, "maintenance_window_enabled", value)
531
+
516
532
  @_builtins.property
517
533
  @pulumi.getter(name="maintenanceWindowTime")
518
534
  def maintenance_window_time(self) -> Optional[pulumi.Input[_builtins.str]]:
@@ -930,6 +946,7 @@ class Redis(pulumi.CustomResource):
930
946
  __props__.__dict__["disk_space_default"] = None
931
947
  __props__.__dict__["disk_space_step"] = None
932
948
  __props__.__dict__["disk_space_used"] = None
949
+ __props__.__dict__["maintenance_window_enabled"] = None
933
950
  __props__.__dict__["service_host"] = None
934
951
  __props__.__dict__["service_password"] = None
935
952
  __props__.__dict__["service_port"] = None
@@ -958,6 +975,7 @@ class Redis(pulumi.CustomResource):
958
975
  disk_space_step: Optional[pulumi.Input[_builtins.str]] = None,
959
976
  disk_space_used: Optional[pulumi.Input[_builtins.str]] = None,
960
977
  maintenance_window_dow: Optional[pulumi.Input[_builtins.str]] = None,
978
+ maintenance_window_enabled: Optional[pulumi.Input[_builtins.bool]] = None,
961
979
  maintenance_window_time: Optional[pulumi.Input[_builtins.str]] = None,
962
980
  plan: Optional[pulumi.Input[_builtins.str]] = None,
963
981
  project: Optional[pulumi.Input[_builtins.str]] = None,
@@ -993,6 +1011,7 @@ class Redis(pulumi.CustomResource):
993
1011
  :param pulumi.Input[_builtins.str] disk_space_step: The default disk space step of the service, possible values depend on the service type, the cloud provider and the project. `disk_space` needs to increment from `disk_space_default` by increments of this size.
994
1012
  :param pulumi.Input[_builtins.str] disk_space_used: The disk space that the service is currently using. This is the sum of `disk_space` and `additional_disk_space` in human-readable format (for example: `90GiB`).
995
1013
  :param pulumi.Input[_builtins.str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
1014
+ :param pulumi.Input[_builtins.bool] maintenance_window_enabled: Indicates whether the maintenance window is currently enabled for this service.
996
1015
  :param pulumi.Input[_builtins.str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
997
1016
  :param pulumi.Input[_builtins.str] plan: Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seen from the [Aiven pricing page](https://aiven.io/pricing).
998
1017
  :param pulumi.Input[_builtins.str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
@@ -1025,6 +1044,7 @@ class Redis(pulumi.CustomResource):
1025
1044
  __props__.__dict__["disk_space_step"] = disk_space_step
1026
1045
  __props__.__dict__["disk_space_used"] = disk_space_used
1027
1046
  __props__.__dict__["maintenance_window_dow"] = maintenance_window_dow
1047
+ __props__.__dict__["maintenance_window_enabled"] = maintenance_window_enabled
1028
1048
  __props__.__dict__["maintenance_window_time"] = maintenance_window_time
1029
1049
  __props__.__dict__["plan"] = plan
1030
1050
  __props__.__dict__["project"] = project
@@ -1119,6 +1139,14 @@ class Redis(pulumi.CustomResource):
1119
1139
  """
1120
1140
  return pulumi.get(self, "maintenance_window_dow")
1121
1141
 
1142
+ @_builtins.property
1143
+ @pulumi.getter(name="maintenanceWindowEnabled")
1144
+ def maintenance_window_enabled(self) -> pulumi.Output[_builtins.bool]:
1145
+ """
1146
+ Indicates whether the maintenance window is currently enabled for this service.
1147
+ """
1148
+ return pulumi.get(self, "maintenance_window_enabled")
1149
+
1122
1150
  @_builtins.property
1123
1151
  @pulumi.getter(name="maintenanceWindowTime")
1124
1152
  def maintenance_window_time(self) -> pulumi.Output[Optional[_builtins.str]]:
pulumi_aiven/thanos.py CHANGED
@@ -295,6 +295,7 @@ class _ThanosState:
295
295
  disk_space_step: Optional[pulumi.Input[_builtins.str]] = None,
296
296
  disk_space_used: Optional[pulumi.Input[_builtins.str]] = None,
297
297
  maintenance_window_dow: Optional[pulumi.Input[_builtins.str]] = None,
298
+ maintenance_window_enabled: Optional[pulumi.Input[_builtins.bool]] = None,
298
299
  maintenance_window_time: Optional[pulumi.Input[_builtins.str]] = None,
299
300
  plan: Optional[pulumi.Input[_builtins.str]] = None,
300
301
  project: Optional[pulumi.Input[_builtins.str]] = None,
@@ -325,6 +326,7 @@ class _ThanosState:
325
326
  :param pulumi.Input[_builtins.str] disk_space_step: The default disk space step of the service, possible values depend on the service type, the cloud provider and the project. `disk_space` needs to increment from `disk_space_default` by increments of this size.
326
327
  :param pulumi.Input[_builtins.str] disk_space_used: The disk space that the service is currently using. This is the sum of `disk_space` and `additional_disk_space` in human-readable format (for example: `90GiB`).
327
328
  :param pulumi.Input[_builtins.str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
329
+ :param pulumi.Input[_builtins.bool] maintenance_window_enabled: Indicates whether the maintenance window is currently enabled for this service.
328
330
  :param pulumi.Input[_builtins.str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
329
331
  :param pulumi.Input[_builtins.str] plan: Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seen from the [Aiven pricing page](https://aiven.io/pricing).
330
332
  :param pulumi.Input[_builtins.str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
@@ -365,6 +367,8 @@ class _ThanosState:
365
367
  pulumi.set(__self__, "disk_space_used", disk_space_used)
366
368
  if maintenance_window_dow is not None:
367
369
  pulumi.set(__self__, "maintenance_window_dow", maintenance_window_dow)
370
+ if maintenance_window_enabled is not None:
371
+ pulumi.set(__self__, "maintenance_window_enabled", maintenance_window_enabled)
368
372
  if maintenance_window_time is not None:
369
373
  pulumi.set(__self__, "maintenance_window_time", maintenance_window_time)
370
374
  if plan is not None:
@@ -513,6 +517,18 @@ class _ThanosState:
513
517
  def maintenance_window_dow(self, value: Optional[pulumi.Input[_builtins.str]]):
514
518
  pulumi.set(self, "maintenance_window_dow", value)
515
519
 
520
+ @_builtins.property
521
+ @pulumi.getter(name="maintenanceWindowEnabled")
522
+ def maintenance_window_enabled(self) -> Optional[pulumi.Input[_builtins.bool]]:
523
+ """
524
+ Indicates whether the maintenance window is currently enabled for this service.
525
+ """
526
+ return pulumi.get(self, "maintenance_window_enabled")
527
+
528
+ @maintenance_window_enabled.setter
529
+ def maintenance_window_enabled(self, value: Optional[pulumi.Input[_builtins.bool]]):
530
+ pulumi.set(self, "maintenance_window_enabled", value)
531
+
516
532
  @_builtins.property
517
533
  @pulumi.getter(name="maintenanceWindowTime")
518
534
  def maintenance_window_time(self) -> Optional[pulumi.Input[_builtins.str]]:
@@ -910,6 +926,7 @@ class Thanos(pulumi.CustomResource):
910
926
  __props__.__dict__["disk_space_default"] = None
911
927
  __props__.__dict__["disk_space_step"] = None
912
928
  __props__.__dict__["disk_space_used"] = None
929
+ __props__.__dict__["maintenance_window_enabled"] = None
913
930
  __props__.__dict__["service_host"] = None
914
931
  __props__.__dict__["service_password"] = None
915
932
  __props__.__dict__["service_port"] = None
@@ -938,6 +955,7 @@ class Thanos(pulumi.CustomResource):
938
955
  disk_space_step: Optional[pulumi.Input[_builtins.str]] = None,
939
956
  disk_space_used: Optional[pulumi.Input[_builtins.str]] = None,
940
957
  maintenance_window_dow: Optional[pulumi.Input[_builtins.str]] = None,
958
+ maintenance_window_enabled: Optional[pulumi.Input[_builtins.bool]] = None,
941
959
  maintenance_window_time: Optional[pulumi.Input[_builtins.str]] = None,
942
960
  plan: Optional[pulumi.Input[_builtins.str]] = None,
943
961
  project: Optional[pulumi.Input[_builtins.str]] = None,
@@ -973,6 +991,7 @@ class Thanos(pulumi.CustomResource):
973
991
  :param pulumi.Input[_builtins.str] disk_space_step: The default disk space step of the service, possible values depend on the service type, the cloud provider and the project. `disk_space` needs to increment from `disk_space_default` by increments of this size.
974
992
  :param pulumi.Input[_builtins.str] disk_space_used: The disk space that the service is currently using. This is the sum of `disk_space` and `additional_disk_space` in human-readable format (for example: `90GiB`).
975
993
  :param pulumi.Input[_builtins.str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
994
+ :param pulumi.Input[_builtins.bool] maintenance_window_enabled: Indicates whether the maintenance window is currently enabled for this service.
976
995
  :param pulumi.Input[_builtins.str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
977
996
  :param pulumi.Input[_builtins.str] plan: Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seen from the [Aiven pricing page](https://aiven.io/pricing).
978
997
  :param pulumi.Input[_builtins.str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
@@ -1005,6 +1024,7 @@ class Thanos(pulumi.CustomResource):
1005
1024
  __props__.__dict__["disk_space_step"] = disk_space_step
1006
1025
  __props__.__dict__["disk_space_used"] = disk_space_used
1007
1026
  __props__.__dict__["maintenance_window_dow"] = maintenance_window_dow
1027
+ __props__.__dict__["maintenance_window_enabled"] = maintenance_window_enabled
1008
1028
  __props__.__dict__["maintenance_window_time"] = maintenance_window_time
1009
1029
  __props__.__dict__["plan"] = plan
1010
1030
  __props__.__dict__["project"] = project
@@ -1099,6 +1119,14 @@ class Thanos(pulumi.CustomResource):
1099
1119
  """
1100
1120
  return pulumi.get(self, "maintenance_window_dow")
1101
1121
 
1122
+ @_builtins.property
1123
+ @pulumi.getter(name="maintenanceWindowEnabled")
1124
+ def maintenance_window_enabled(self) -> pulumi.Output[_builtins.bool]:
1125
+ """
1126
+ Indicates whether the maintenance window is currently enabled for this service.
1127
+ """
1128
+ return pulumi.get(self, "maintenance_window_enabled")
1129
+
1102
1130
  @_builtins.property
1103
1131
  @pulumi.getter(name="maintenanceWindowTime")
1104
1132
  def maintenance_window_time(self) -> pulumi.Output[Optional[_builtins.str]]:
pulumi_aiven/valkey.py CHANGED
@@ -295,6 +295,7 @@ class _ValkeyState:
295
295
  disk_space_step: Optional[pulumi.Input[_builtins.str]] = None,
296
296
  disk_space_used: Optional[pulumi.Input[_builtins.str]] = None,
297
297
  maintenance_window_dow: Optional[pulumi.Input[_builtins.str]] = None,
298
+ maintenance_window_enabled: Optional[pulumi.Input[_builtins.bool]] = None,
298
299
  maintenance_window_time: Optional[pulumi.Input[_builtins.str]] = None,
299
300
  plan: Optional[pulumi.Input[_builtins.str]] = None,
300
301
  project: Optional[pulumi.Input[_builtins.str]] = None,
@@ -325,6 +326,7 @@ class _ValkeyState:
325
326
  :param pulumi.Input[_builtins.str] disk_space_step: The default disk space step of the service, possible values depend on the service type, the cloud provider and the project. `disk_space` needs to increment from `disk_space_default` by increments of this size.
326
327
  :param pulumi.Input[_builtins.str] disk_space_used: The disk space that the service is currently using. This is the sum of `disk_space` and `additional_disk_space` in human-readable format (for example: `90GiB`).
327
328
  :param pulumi.Input[_builtins.str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
329
+ :param pulumi.Input[_builtins.bool] maintenance_window_enabled: Indicates whether the maintenance window is currently enabled for this service.
328
330
  :param pulumi.Input[_builtins.str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
329
331
  :param pulumi.Input[_builtins.str] plan: Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seen from the [Aiven pricing page](https://aiven.io/pricing).
330
332
  :param pulumi.Input[_builtins.str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
@@ -365,6 +367,8 @@ class _ValkeyState:
365
367
  pulumi.set(__self__, "disk_space_used", disk_space_used)
366
368
  if maintenance_window_dow is not None:
367
369
  pulumi.set(__self__, "maintenance_window_dow", maintenance_window_dow)
370
+ if maintenance_window_enabled is not None:
371
+ pulumi.set(__self__, "maintenance_window_enabled", maintenance_window_enabled)
368
372
  if maintenance_window_time is not None:
369
373
  pulumi.set(__self__, "maintenance_window_time", maintenance_window_time)
370
374
  if plan is not None:
@@ -513,6 +517,18 @@ class _ValkeyState:
513
517
  def maintenance_window_dow(self, value: Optional[pulumi.Input[_builtins.str]]):
514
518
  pulumi.set(self, "maintenance_window_dow", value)
515
519
 
520
+ @_builtins.property
521
+ @pulumi.getter(name="maintenanceWindowEnabled")
522
+ def maintenance_window_enabled(self) -> Optional[pulumi.Input[_builtins.bool]]:
523
+ """
524
+ Indicates whether the maintenance window is currently enabled for this service.
525
+ """
526
+ return pulumi.get(self, "maintenance_window_enabled")
527
+
528
+ @maintenance_window_enabled.setter
529
+ def maintenance_window_enabled(self, value: Optional[pulumi.Input[_builtins.bool]]):
530
+ pulumi.set(self, "maintenance_window_enabled", value)
531
+
516
532
  @_builtins.property
517
533
  @pulumi.getter(name="maintenanceWindowTime")
518
534
  def maintenance_window_time(self) -> Optional[pulumi.Input[_builtins.str]]:
@@ -904,6 +920,7 @@ class Valkey(pulumi.CustomResource):
904
920
  __props__.__dict__["disk_space_default"] = None
905
921
  __props__.__dict__["disk_space_step"] = None
906
922
  __props__.__dict__["disk_space_used"] = None
923
+ __props__.__dict__["maintenance_window_enabled"] = None
907
924
  __props__.__dict__["service_host"] = None
908
925
  __props__.__dict__["service_password"] = None
909
926
  __props__.__dict__["service_port"] = None
@@ -932,6 +949,7 @@ class Valkey(pulumi.CustomResource):
932
949
  disk_space_step: Optional[pulumi.Input[_builtins.str]] = None,
933
950
  disk_space_used: Optional[pulumi.Input[_builtins.str]] = None,
934
951
  maintenance_window_dow: Optional[pulumi.Input[_builtins.str]] = None,
952
+ maintenance_window_enabled: Optional[pulumi.Input[_builtins.bool]] = None,
935
953
  maintenance_window_time: Optional[pulumi.Input[_builtins.str]] = None,
936
954
  plan: Optional[pulumi.Input[_builtins.str]] = None,
937
955
  project: Optional[pulumi.Input[_builtins.str]] = None,
@@ -967,6 +985,7 @@ class Valkey(pulumi.CustomResource):
967
985
  :param pulumi.Input[_builtins.str] disk_space_step: The default disk space step of the service, possible values depend on the service type, the cloud provider and the project. `disk_space` needs to increment from `disk_space_default` by increments of this size.
968
986
  :param pulumi.Input[_builtins.str] disk_space_used: The disk space that the service is currently using. This is the sum of `disk_space` and `additional_disk_space` in human-readable format (for example: `90GiB`).
969
987
  :param pulumi.Input[_builtins.str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
988
+ :param pulumi.Input[_builtins.bool] maintenance_window_enabled: Indicates whether the maintenance window is currently enabled for this service.
970
989
  :param pulumi.Input[_builtins.str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
971
990
  :param pulumi.Input[_builtins.str] plan: Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seen from the [Aiven pricing page](https://aiven.io/pricing).
972
991
  :param pulumi.Input[_builtins.str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
@@ -999,6 +1018,7 @@ class Valkey(pulumi.CustomResource):
999
1018
  __props__.__dict__["disk_space_step"] = disk_space_step
1000
1019
  __props__.__dict__["disk_space_used"] = disk_space_used
1001
1020
  __props__.__dict__["maintenance_window_dow"] = maintenance_window_dow
1021
+ __props__.__dict__["maintenance_window_enabled"] = maintenance_window_enabled
1002
1022
  __props__.__dict__["maintenance_window_time"] = maintenance_window_time
1003
1023
  __props__.__dict__["plan"] = plan
1004
1024
  __props__.__dict__["project"] = project
@@ -1093,6 +1113,14 @@ class Valkey(pulumi.CustomResource):
1093
1113
  """
1094
1114
  return pulumi.get(self, "maintenance_window_dow")
1095
1115
 
1116
+ @_builtins.property
1117
+ @pulumi.getter(name="maintenanceWindowEnabled")
1118
+ def maintenance_window_enabled(self) -> pulumi.Output[_builtins.bool]:
1119
+ """
1120
+ Indicates whether the maintenance window is currently enabled for this service.
1121
+ """
1122
+ return pulumi.get(self, "maintenance_window_enabled")
1123
+
1096
1124
  @_builtins.property
1097
1125
  @pulumi.getter(name="maintenanceWindowTime")
1098
1126
  def maintenance_window_time(self) -> pulumi.Output[Optional[_builtins.str]]:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pulumi_aiven
3
- Version: 6.43.1
3
+ Version: 6.45.0a1762405690
4
4
  Summary: A Pulumi package for creating and managing Aiven cloud resources.
5
5
  License: Apache-2.0
6
6
  Project-URL: Homepage, https://pulumi.io
@@ -1,12 +1,12 @@
1
1
  pulumi_aiven/__init__.py,sha256=XyhgRW6JHnUTlaVDWgg3mVi3gTrHTQXpZDGLP1fGeOg,22981
2
- pulumi_aiven/_inputs.py,sha256=Yij8DRhZNR7P6cEWqVOd2rYV4WI_sxaei5s8Bu_VfHc,2159235
2
+ pulumi_aiven/_inputs.py,sha256=wHo6cG9en1ByKhq7ginr0pPcPUtwoGcUvGucXcBlHss,2158261
3
3
  pulumi_aiven/_utilities.py,sha256=66uLGQDI1oMFOI3Fe5igAphtexWhcSLDyuVW50jW3ik,10789
4
4
  pulumi_aiven/account.py,sha256=tqpGQBA8XMRIpnZdjqrSMCngF1qWqzx4QWMSMdLIZVU,18054
5
5
  pulumi_aiven/account_authentication.py,sha256=05YXSG3VwecPAp7jQBeSR6AA8IGptUnn_9wULaFW44I,40346
6
6
  pulumi_aiven/account_team.py,sha256=biQ3BYwEbqONiaBTXnFHuJb2IhMIKNx4IPLtjud6gBw,12466
7
7
  pulumi_aiven/account_team_member.py,sha256=aQG8C_jbvoBkbtRj6zAGZTUPIT_i11124HSFrfTFKW4,18786
8
8
  pulumi_aiven/account_team_project.py,sha256=3eLISAx1w1gw62G7hJHrl23KmuxhwBTzvkLmsjODSu4,20282
9
- pulumi_aiven/alloydbomni.py,sha256=1i_3WSA7e2wLgNeU2QyATlRUJNqipin3X1-bN82iIsM,93506
9
+ pulumi_aiven/alloydbomni.py,sha256=wtDx2XhaDFbARcrnQRDWyWsYqKBoJIxJtrhlqeRXsJ4,95137
10
10
  pulumi_aiven/alloydbomni_database.py,sha256=REXL698Q5e_hwwB2jXqdSURImvkzNvhjfzjF50WnLAU,20716
11
11
  pulumi_aiven/alloydbomni_user.py,sha256=zehQL_YdIklyLm256V-L4XGQRJSN37vFz1RUR93uIAg,23789
12
12
  pulumi_aiven/aws_org_vpc_peering_connection.py,sha256=bTJRj-ZST9KgQX6_SXjx-3VZyrCMZIwG2rDsyO4ErLE,22857
@@ -17,16 +17,16 @@ pulumi_aiven/azure_privatelink.py,sha256=kz5QTQlzws5UkPdSQ8EXWGiMc3FKVEqa8BTw_0_
17
17
  pulumi_aiven/azure_privatelink_connection_approval.py,sha256=asjacfMykpYMY9dUSoSu5RCwQBiPIgy7gFduiW1Wy0k,19797
18
18
  pulumi_aiven/azure_vpc_peering_connection.py,sha256=d_ZcoeFTM8qCz_erWEcf7gDb_NJvXwPeLxnPrmapnUc,26757
19
19
  pulumi_aiven/billing_group.py,sha256=PRipP3KMYE0h8DB2msRLGmkrXmzKIMf4NFmA7ZzAwLc,39981
20
- pulumi_aiven/cassandra.py,sha256=9385s0eGvlv0-CeQsSlT4hTY_sQZK80dMyt1BvlxOqo,88539
20
+ pulumi_aiven/cassandra.py,sha256=OmkUEUKDSpiMnls-hzJvf0NYkI11TGEAnvHu39E_otM,90170
21
21
  pulumi_aiven/cassandra_user.py,sha256=djT66tXXtCkW1b4EMccu-EA_PCGC_TQ_4moYgLzANqQ,21105
22
- pulumi_aiven/clickhouse.py,sha256=Y5yM5fWGLrO2Va9dIDohH5vRX78nu6jEb7BoPLvnx6Q,87690
22
+ pulumi_aiven/clickhouse.py,sha256=0wHrzRgNfKrj6Z4jJuc0NmU_5w6_l4lHjAp7RMyWNeU,89321
23
23
  pulumi_aiven/clickhouse_database.py,sha256=23zsHYNYmXz9TimMiMwDuCsZEXf7kopyeYrg4ynfUFo,15895
24
24
  pulumi_aiven/clickhouse_grant.py,sha256=33hDvg4Q5e0L3kkZg-tvKqNFZD8vW5hDgT-INvv1HIE,26047
25
25
  pulumi_aiven/clickhouse_role.py,sha256=eiD_6-eZjNtD9VnMUXM7e9mh4khzHqtRKKIPKCGe0mo,13234
26
26
  pulumi_aiven/clickhouse_user.py,sha256=HQOt2GFWfhttL9vH3o486KSD20IbGfEiPUTfn1v2znk,16804
27
27
  pulumi_aiven/connection_pool.py,sha256=2f9Tw4K9fxaxeuwKGwfOAcDXftvj4bz1kUrhpbZoI6E,27768
28
- pulumi_aiven/dragonfly.py,sha256=qHN2jTuTr8uHBegVL1vb5GOnepuJ_RNz9_BRh7vXJ30,86779
29
- pulumi_aiven/flink.py,sha256=nhHucaqxWBUyZoxp0PgJiByquAAYHy_Fo6aw95vQNhY,85999
28
+ pulumi_aiven/dragonfly.py,sha256=Tv_L1OSc60beHKwwZ3mTj6Y054AWRcMA0an9TeuTs3c,88410
29
+ pulumi_aiven/flink.py,sha256=zYZrIdotTS9wnYeW3_qubkFBLSHSOOZJLxxEG8b-zQk,87630
30
30
  pulumi_aiven/flink_application.py,sha256=ESkwErICRqCUF_159NejcplLJm6WnslHgFDcR39LXdY,18801
31
31
  pulumi_aiven/flink_application_deployment.py,sha256=N9dtkLue5SOZ4RaM98ltPFNG0SrHqBokDKYTM7FiluY,27861
32
32
  pulumi_aiven/flink_application_version.py,sha256=-ZkDnrLCrxKUsqe7yT8K5XNnVDg9Oi7xh8GdmvQfHdU,35543
@@ -42,7 +42,7 @@ pulumi_aiven/get_account_authentication.py,sha256=JxweCBu1SIL26HwOSri2gXMw-ekJs8
42
42
  pulumi_aiven/get_account_team.py,sha256=rbamcoI6hi7hAbtUHoR8haW_WGzou5WzCgLgKzDmfB8,6601
43
43
  pulumi_aiven/get_account_team_member.py,sha256=XwzkiVgWM25zZhVVc8tukOpMR8f85BvHzAEy2N9V6-o,9083
44
44
  pulumi_aiven/get_account_team_project.py,sha256=Ei9qIxBSe6W0S8mHHHGJjkc5aTUvKkoyySrgIVmHwqU,7584
45
- pulumi_aiven/get_alloydbomni.py,sha256=soORHox7VKGIaTNb4sCywriJKRpwDhshTUnOG9bNIzc,28779
45
+ pulumi_aiven/get_alloydbomni.py,sha256=T-fFW2r6g0xObGvv1hkQUPRcriiqg9VPmMgYLfMNATQ,29642
46
46
  pulumi_aiven/get_alloydbomni_database.py,sha256=cVkcGV121qRe4Mb4NiKy2VpFERXoMWCT-Zq214QqNBo,10021
47
47
  pulumi_aiven/get_alloydbomni_user.py,sha256=sn02jeuMBp_1rjMeIsdtwFIO6bGUxk1eXQ9kPcGMooc,11680
48
48
  pulumi_aiven/get_aws_org_vpc_peering_connection.py,sha256=EM1Zhy3l22LDsHeNGCIKskVdMYswFm61wVzGcQmuGlA,11114
@@ -52,43 +52,43 @@ pulumi_aiven/get_azure_org_vpc_peering_connection.py,sha256=gk3GP2bN6IUO0wiexb6j
52
52
  pulumi_aiven/get_azure_privatelink.py,sha256=pNlKy3hzFH7HYHiFAgt7CHYztT2v4P4E-TZHk_3H6mY,9043
53
53
  pulumi_aiven/get_azure_vpc_peering_connection.py,sha256=7FyASxoXKxpTdYR1Lbx-MCAkhXjh7DpY02wWGTpSdPo,13572
54
54
  pulumi_aiven/get_billing_group.py,sha256=D907I7kcAgJ7U1U9_qUOUwdgLTaAkeSZkZdbR-96nP4,13468
55
- pulumi_aiven/get_cassanda.py,sha256=FBa20YZ-umWpK5satSksV0SGB4zLqKMuCo3Nw-GEU4w,27840
56
- pulumi_aiven/get_cassandra.py,sha256=VT72xkyvKvbqFuDmzF3EgmhTc6F4053CdlKLSzzi9YE,27512
55
+ pulumi_aiven/get_cassanda.py,sha256=TsOeWHfkqkwPC7OYOZMD-zSzEPReV8Wg9hpsaf3p14A,28703
56
+ pulumi_aiven/get_cassandra.py,sha256=1ZcCaMH5XX4yg3SCSQ9qnebo8QLviHQF7jRlZx6HdMI,28375
57
57
  pulumi_aiven/get_cassandra_user.py,sha256=K-Kb46y4Cth0hiogRLL5SFquzuSD2nvuGQbbU_OU-wU,10666
58
- pulumi_aiven/get_clickhouse.py,sha256=zOIFQ3PhTYO6Si8fJT9TAxJR5BqLcnFJFHeObKYTS4o,26406
58
+ pulumi_aiven/get_clickhouse.py,sha256=uxHYOXnyZwSF9J6axBGZJi0ntpUONaKF_ZWsKOCXq0E,27269
59
59
  pulumi_aiven/get_clickhouse_database.py,sha256=mCniDuVm8rFkUFbQCKb4q4_pdItbxG8jlqiDbtOXglU,7651
60
60
  pulumi_aiven/get_clickhouse_user.py,sha256=izo4k2im0YKlLHEvJjj71bzF3SBzUsD0BS86Ne2FByw,8425
61
61
  pulumi_aiven/get_connection_pool.py,sha256=ZdiJIkjewHAWcuwSW4ijduBZRUg06821jtfUk5cFGGs,10460
62
- pulumi_aiven/get_dragonfly.py,sha256=2uUtc48pJ0ZMem99HivHlTL3Vl2Q1DNDZyTgW2yYWDc,26222
62
+ pulumi_aiven/get_dragonfly.py,sha256=DxAeDjutEeflQzDW7177GoF5YB_DL6WzundfdK0nYbA,27085
63
63
  pulumi_aiven/get_external_identity.py,sha256=2TaWeEyDgwN_8q9iWb1sHxoffy_YrZ0ZOLawFP3ebw0,7846
64
- pulumi_aiven/get_flink.py,sha256=DBaWOCfmQjdTwCkFxk59z-la9uiyks2qusvpASjlDZM,25942
64
+ pulumi_aiven/get_flink.py,sha256=7bmF8oew-Scit8Uw81odtUxF9rNQl6nQoAHI8ZwRCP0,26805
65
65
  pulumi_aiven/get_flink_application.py,sha256=bsSFuoZSaJ69YZQRSRwrCeDeAbsRa9LPQokgry2WVw8,9607
66
66
  pulumi_aiven/get_flink_application_version.py,sha256=aZO5E8CX99jqDZ44kAkpRfk8ApDLtLuprv53Ka7RCDk,12874
67
67
  pulumi_aiven/get_gcp_org_vpc_peering_connection.py,sha256=t37iYYz9uaxIcheWXtZCiCQ0VD_sU7M85ySvbTUdyB0,8893
68
68
  pulumi_aiven/get_gcp_privatelink.py,sha256=F523-f9VgRUahfjeznZyeVk3nq5m2bmquCTyCSs6OuE,7703
69
69
  pulumi_aiven/get_gcp_vpc_peering_connection.py,sha256=q8HO11E8lj9NO-DqUPuN7mDug_80zgc4K2LTIqmOsYc,8375
70
- pulumi_aiven/get_grafana.py,sha256=gxEusYGWaWemnbTy9goiMWKiVGPKkXk7AJLE3FcNBbQ,26072
71
- pulumi_aiven/get_influx_db.py,sha256=Se6qBI-YWallEklmzIAvyNsPJzoyoKWkqt3HOPP-dDY,18737
70
+ pulumi_aiven/get_grafana.py,sha256=7Q366LWAcX_pchFJOJzotijzf34KVm7gCGS16StMR30,26935
71
+ pulumi_aiven/get_influx_db.py,sha256=60zE5Wd5jQci-Vk_su3ZJRFlMpiCwZeqxURki70TeNY,19488
72
72
  pulumi_aiven/get_influxdb_database.py,sha256=1bJa9raWkG3R0Eu6TF8e0yAw8FrE8SqaB9i4L_-AoLA,5574
73
73
  pulumi_aiven/get_influxdb_user.py,sha256=oXykYwx_Q7WP8EA8EC_TQlToM1xvC4FfARXtsuGE1Lk,6558
74
- pulumi_aiven/get_kafka.py,sha256=zY8c7FTax0Yn6g-Mbb2-R7n9o7DeJn6lU-w8eCiB9nc,27214
74
+ pulumi_aiven/get_kafka.py,sha256=mW4Cq11fEaQxRhc6zV-PaNBLqykt9dhyXURgY2Q54HA,28077
75
75
  pulumi_aiven/get_kafka_acl.py,sha256=XefZSwHOEnkphlqw1yyTzAzjBnUPfSyt4B2d-Kvrhgs,9656
76
- pulumi_aiven/get_kafka_connect.py,sha256=bJyBgM32Zkh2VfOX6xq7juXuk1T0o-LO1dTjGWgDsOk,25813
76
+ pulumi_aiven/get_kafka_connect.py,sha256=IMsP628Xs8qfsC5r3psAMU7VmPlhpyAwpoXyoRAUeAw,26676
77
77
  pulumi_aiven/get_kafka_connector.py,sha256=kuoJdjYFt5qlhXkWwCGWPkuHhfe--fPyBAJZChGFp6g,11849
78
- pulumi_aiven/get_kafka_mirror_maker.py,sha256=cCXnMV4BqxV80sKDLTxn171WRlIvsJ8r07_E7D8z9O8,26035
78
+ pulumi_aiven/get_kafka_mirror_maker.py,sha256=cL1VPNtUCcaDgzn6hJySC8-O1MxaB8jF8BZ9rObrLCM,26898
79
79
  pulumi_aiven/get_kafka_schema.py,sha256=Ged0V38YcnWa7Urwkck--54pCFTd16RE3zgQPpJ-dKQ,9551
80
80
  pulumi_aiven/get_kafka_schema_configuration.py,sha256=I2NPs35c3900QoA13zOd77MfkP_kLZ86l3aydD6hIfU,9547
81
81
  pulumi_aiven/get_kafka_schema_registry_acl.py,sha256=OoFzz9AvcxqP4GKDcaRsPgoTEZ_H6JoAenTPk1IDvmg,9864
82
82
  pulumi_aiven/get_kafka_topic.py,sha256=fYToNth_7cn-o8Sz4APNHxr_doPuBGjzBjryTk-HnTo,11375
83
83
  pulumi_aiven/get_kafka_user.py,sha256=erX8sFPUWbGNAAYSUZne9JfEZWuzDKGPaM9bDbNZUYM,9228
84
- pulumi_aiven/get_m3_aggregator.py,sha256=lPDwMFOrRUzOUPLzpUcnEKTQWkpxDPpODrZx0H_paTw,18985
85
- pulumi_aiven/get_m3_db.py,sha256=jRrk-FHjQQZ5aj8RgUN4M1_a8dPxzFryLhCBerrwoXA,18489
84
+ pulumi_aiven/get_m3_aggregator.py,sha256=k_QxwZQ1rPHeLTYomHv94n2Tmr_gTVkGIYyIyOxTuiI,19736
85
+ pulumi_aiven/get_m3_db.py,sha256=UEdz9qz4WtGg57O6EGcXy2ZSQxQJWC7NheoP-4cK388,19240
86
86
  pulumi_aiven/get_m3db_user.py,sha256=UMPgcCpWP6P3SOLxk8L01c-1oc4m8KSRcmSEV1VUl30,5417
87
87
  pulumi_aiven/get_mirror_maker_replication_flow.py,sha256=OnBW432I0Vk5o0tApqvCoQbnJ_xZRBKprWZ8viatRaw,19356
88
- pulumi_aiven/get_my_sql.py,sha256=I6W3f9z35FBoyxJRanqCW8SvlWx3F-EBBRWcMYr0fBY,25915
88
+ pulumi_aiven/get_my_sql.py,sha256=xANntyqjcDeOfpdtHDtgSm_zJSQdgEPesoY5k6N5Atc,26778
89
89
  pulumi_aiven/get_mysql_database.py,sha256=dUO8d5EaLhKeE5bXygJ6BactR6iuEXRs5nsDGbq4ZyQ,7704
90
90
  pulumi_aiven/get_mysql_user.py,sha256=5DCjuGmsNCYan5cgJS9v9FBL_un4S71QOZefM_a4Exw,9915
91
- pulumi_aiven/get_open_search.py,sha256=GDSUiyUwK0-8tYzR6T5cDDOZzG8WEaZ8tVGOXndd14M,26296
91
+ pulumi_aiven/get_open_search.py,sha256=Xg4Y2Xr4aZCrXJPZiG9pQVa44E3xpxjN18nbw7n_XQ4,27159
92
92
  pulumi_aiven/get_open_search_acl_config.py,sha256=iLX37msnFoaNDYC0lwuqktf2POALtIcSBgYjP8K0PCg,7480
93
93
  pulumi_aiven/get_open_search_acl_rule.py,sha256=LNmiWwaRDjQC5w6hk0tLsWDHMcgQj5a6vw2LWQnnkKg,9743
94
94
  pulumi_aiven/get_opensearch_security_plugin_config.py,sha256=bWzVty98UtMXiw9XO8bDK4m2A1B6zigVde67IZNMdlQ,8918
@@ -103,47 +103,47 @@ pulumi_aiven/get_organization_user.py,sha256=aCtv7CkF7-mgoa1jKUYHxZL6KkSRIHOO8XN
103
103
  pulumi_aiven/get_organization_user_group.py,sha256=Bm5KxKgrlyF-jGVnoT1XWhxg8UEIxsaVVthWnbhg5dc,7651
104
104
  pulumi_aiven/get_organization_user_list.py,sha256=x3pY1-ASE9mQGrZaMlte-ac2XEAF9ujJoaKr1bLIVdc,5058
105
105
  pulumi_aiven/get_organization_vpc.py,sha256=Snh8VVitnOkx8oQAJ5hS7DDBFhNwnfOx_9kj8t2yd3Y,8234
106
- pulumi_aiven/get_organizational_unit.py,sha256=13XwI3lBKMZaCeBOyFWeNrXHrpk4t3foCC71pTGSluA,5698
107
- pulumi_aiven/get_pg.py,sha256=Z8UBE0jsPeHpeTqqqwoo7HFsafHzgKej2V31aFW7vKE,25760
106
+ pulumi_aiven/get_organizational_unit.py,sha256=_fF8GlXVgmGZKiMvhK3Y6ScXzTdRaAO_nMrKkfXRJww,5742
107
+ pulumi_aiven/get_pg.py,sha256=wRRhZJZkp7O_ErpEFkxZoIKZ_6TJ0jvMeLhmtFL6zwI,26623
108
108
  pulumi_aiven/get_pg_database.py,sha256=GYMTPrAfIU9OAr0ZtJZlK78lGlRnxFw6tIPn08zysRk,9020
109
109
  pulumi_aiven/get_pg_user.py,sha256=FuBltH-EFuNeUXCrqcVOiKXrms-kgWhiNRaJdyPAdIE,9993
110
110
  pulumi_aiven/get_project.py,sha256=lKTM5b0oseH6XkQEcYRTdnsLZhGpnTaLXoKwoUEhagU,14118
111
111
  pulumi_aiven/get_project_user.py,sha256=9wjfI1gphBI5MK6iLFXGA1UiDk6Jdr5hZTyfPbkqbFU,7771
112
112
  pulumi_aiven/get_project_vpc.py,sha256=gPayypO3bJ-OVp9Q-NwaQczgV-4DnihDbdQhiiZz3sY,7452
113
- pulumi_aiven/get_redis.py,sha256=Ch_2M87TEx0rdSCbM4iwEW8Ql6cVT_H45SRc--Yq_eU,27499
113
+ pulumi_aiven/get_redis.py,sha256=le95VnbKnPpXryDx5UxPyymlrUTV6U6rEhBrDM8lgWs,28362
114
114
  pulumi_aiven/get_redis_user.py,sha256=v_P_n7jB6GwId3RdjHQkLPWqUU7vgaRcNPqEsacaSrg,12873
115
115
  pulumi_aiven/get_service_component.py,sha256=aovZzV2nyFjpScsYFAWdGadzo9ykQTR3pEiVE-sXS4k,13388
116
116
  pulumi_aiven/get_service_integration.py,sha256=GRPX1xV3ThOayi6J4nKOE3OaFLYUAa53dIHgxuA42TM,30486
117
117
  pulumi_aiven/get_service_integration_endpoint.py,sha256=zXmbqwPPgzEIJPEzoPExmCV4z50k1V5YtoZ7yviF5jM,27870
118
- pulumi_aiven/get_thanos.py,sha256=pgB5U8mKTgD0eBH6kEXYeMICpyp-WgFirjpWIRr9vmk,25981
118
+ pulumi_aiven/get_thanos.py,sha256=nboIXpfgilG0ZmvQEFI88P67gA8xp-FQVKnf-K7mswE,26844
119
119
  pulumi_aiven/get_transit_gateway_vpc_attachment.py,sha256=7fgANWD4mWGPl_Oi0dLfpe7zPMj5PtmuAP5i70t8wN0,10638
120
- pulumi_aiven/get_valkey.py,sha256=oNcw5yP77uq43w9U3pmO7jGwQZkZ4L__K3aGaucp3jM,25988
120
+ pulumi_aiven/get_valkey.py,sha256=CmU2uAcakMqFW_Nwu1Z_-I25eDE7xdDu6wzklWFSguY,26851
121
121
  pulumi_aiven/get_valkey_user.py,sha256=FzuWTEuAgrhVzq_U2i4wsZ9Aa3xictbM_sbDAhciYYU,11233
122
122
  pulumi_aiven/governance_access.py,sha256=LcBaKWHK43aeDgV1t7Zyi-kElRXuIYjfpi9XMxn0pHU,22106
123
- pulumi_aiven/grafana.py,sha256=hia6dBnUAO-nPCcvQvSYaykuxZIpAVQckHGjM3-yTSU,86597
124
- pulumi_aiven/influx_db.py,sha256=pp_Qv456KVCNVk8oH5B7MGOVYdqM0m2IwTFqzh6l9jo,85629
123
+ pulumi_aiven/grafana.py,sha256=jnRnI3w6NBjV9WmPztpRl7On0woFmQNw7SZhWr-VZ1c,88228
124
+ pulumi_aiven/influx_db.py,sha256=zHAuj-SEV2F_2VUMpZG3ad05kEbmAaOCr1Sn5AjovDQ,87260
125
125
  pulumi_aiven/influxdb_database.py,sha256=dS8uHoLwr9hqBEyWVBZtH3kckono-0uk3lZv8s20DX0,14753
126
126
  pulumi_aiven/influxdb_user.py,sha256=WB6TVPGkgjzcq_LYrdnqSnQsxSTDt_AkRTR7XfSlOPM,19157
127
- pulumi_aiven/kafka.py,sha256=_3JQfvGnydKpgZxQgMgPv2jur4Y6KfNA1j7iOJWiJEU,92913
127
+ pulumi_aiven/kafka.py,sha256=I96I2lZ76ROmKh72cq2JKqFKeSpyUbxIk_D-sETBiiY,94544
128
128
  pulumi_aiven/kafka_acl.py,sha256=G3rez3l1PYAvhmV7e6STO3IjnYNY4XT-5vkdVuupTFo,20271
129
- pulumi_aiven/kafka_connect.py,sha256=iPvnBlvLUYQ-Pgwwubq6znXNCINgjQaeEd2Rfrzt9sE,88414
129
+ pulumi_aiven/kafka_connect.py,sha256=0fU5aa0UKD72Oo-Or1GxKpxB90YJR0C_51nM4NPS69M,90045
130
130
  pulumi_aiven/kafka_connector.py,sha256=ebDtkV5kQxJtf8-sBjJJVV4UMbn48pwI9UKDpj6txhQ,26353
131
- pulumi_aiven/kafka_mirror_maker.py,sha256=s8J9Ya6UnTQ5e6BgQgGracdwWPYnH1J_BKVoSQ4eCSg,86216
131
+ pulumi_aiven/kafka_mirror_maker.py,sha256=ALS4BSvO4YJ4ITWBoKFiT45-8IRyin3YLqLbHsRXZE8,87847
132
132
  pulumi_aiven/kafka_native_acl.py,sha256=TFcn_8kNH283gEnlX2_Va-v3zwfwxdL1GwR8COdS0pM,35175
133
133
  pulumi_aiven/kafka_quota.py,sha256=jPhVLiTgIgAKTDIkhc9W9QJTroy4fc4TunGWYJOe0MI,33695
134
- pulumi_aiven/kafka_schema.py,sha256=Pe31iG8kujWAnwzt39f7xSq2AFxUSoFUIZ9kpqrxHwM,24001
134
+ pulumi_aiven/kafka_schema.py,sha256=yRoBVCkfvD7KIgwvFmL_uf7iTS8osCekAaodsSX-wl0,24145
135
135
  pulumi_aiven/kafka_schema_configuration.py,sha256=fP9g-379k6837P1-3BU_r62p1Fzi_WXJxisPXX78yww,14793
136
136
  pulumi_aiven/kafka_schema_registry_acl.py,sha256=yCKGbCsoBO-sTqvp6b4LWy1xCp35SOqGBqUQx8rmx9A,20642
137
137
  pulumi_aiven/kafka_topic.py,sha256=DQhFOpF4TLf7YuvGhW5RGaCK76d3eBuFnEQFenla39Y,30988
138
138
  pulumi_aiven/kafka_user.py,sha256=S9YMoZtnniKWdk0NB0cmgIJDQfRCJc9PeFzuVB1A4CI,19567
139
- pulumi_aiven/m3_aggregator.py,sha256=EPHBnNrECVt8g8kpsy0KykyB2_jNRvFzRHUCL5nNZ4c,86928
140
- pulumi_aiven/m3_db.py,sha256=aeQsD3UDvQkzdJYAbc_TkQXG6rCJMDdbb68eExLsPvw,84969
139
+ pulumi_aiven/m3_aggregator.py,sha256=jJYOkDx0UiyeCfDhA5rTSSBoOPhI0DShMxyDBaLrjWQ,88559
140
+ pulumi_aiven/m3_db.py,sha256=jUXH6Ywc5W_7_YxZfopbimFX6-4iAQcfxt1TOzGRJAE,86600
141
141
  pulumi_aiven/m3db_user.py,sha256=NPh79OYIheJlSGTFdKdz_WOZH3QIbGjWqTbstilrY8g,16191
142
142
  pulumi_aiven/mirror_maker_replication_flow.py,sha256=t8k4LANKSBo5SXj1ZewJ80oJnmP9YkHK2ZzHSSYM3zQ,58825
143
- pulumi_aiven/my_sql.py,sha256=V9EIavzjzjBrueJecfByLXJaHO_KDdnLj2JRcsT8OO0,86480
143
+ pulumi_aiven/my_sql.py,sha256=f-nfwKDecVtDtWGRKtf1MK1RtSrE8r5YvKAfOn1PwKs,88111
144
144
  pulumi_aiven/mysql_database.py,sha256=GbgvjmFHyx4OQAcYjOvGMBQWay2SON6D9oFrII8bF2g,15663
145
145
  pulumi_aiven/mysql_user.py,sha256=YRmLFyVBC5RAXLjGxTuZTRGXowgnB-soDLEtRCfoKlc,22219
146
- pulumi_aiven/open_search.py,sha256=staZ9ACWmPmHpwzkDnKt4xj-Ub9v86pfvRNtC_8Tn8c,88152
146
+ pulumi_aiven/open_search.py,sha256=eStgLQKNuPYm65TksgSkY5BphpYtOfrVKvGHDpza_Mw,89783
147
147
  pulumi_aiven/open_search_acl_config.py,sha256=KMHZ6hb2xMU0IkpKIWyZcNhqUF4PPFOow6oJICgxo0g,18508
148
148
  pulumi_aiven/open_search_acl_rule.py,sha256=onLmTExWQcQ46z94MBta_YbNmKvUX3JKw3UNkVofXWE,23592
149
149
  pulumi_aiven/opensearch_security_plugin_config.py,sha256=cf5GITSXoHJ2GYVEDNbOlWFvGE83sZo0_BNrSTB6y4k,18355
@@ -161,29 +161,29 @@ pulumi_aiven/organization_user_group.py,sha256=OlpGFAowiEujR54FgaPhKCs0qKRRgITDp
161
161
  pulumi_aiven/organization_user_group_member.py,sha256=5YYRvnbkaMPKAe9uR50d2FMhEgXv--M1xORZa-qUnLk,14857
162
162
  pulumi_aiven/organization_vpc.py,sha256=e3wJHy1y9y8sSYNYQEzsAuwwBw-aTtUneIjI-fWCeLM,18097
163
163
  pulumi_aiven/organizational_unit.py,sha256=J197wmOgaDp5mad1fh9EZwBreXiUU-yYsi10Ka8_-Sw,12320
164
- pulumi_aiven/outputs.py,sha256=eQMx7h03p_lgBwJ9T4UjZpSX56QzGAcwmFdqZK0Wx7A,2736267
165
- pulumi_aiven/pg.py,sha256=42a5HbRDSL_MfZc14jT5jbkJr3Pm-2ghCpPo3YWy4iE,84078
164
+ pulumi_aiven/outputs.py,sha256=8fs9oX47RexSPo9b9gbdtTjAk0HdQ1c0pTdR2xVy8Is,2735438
165
+ pulumi_aiven/pg.py,sha256=wkiQPMUChKcP_niJ3uX1M4cKSio_dieDgAch36a7KO4,85709
166
166
  pulumi_aiven/pg_database.py,sha256=00e23U13Y8ENAxlj-myIpsilZkdZ3uvOzoc3ZCjd8Fk,21188
167
167
  pulumi_aiven/pg_user.py,sha256=Jqmwt9JreItglEqenNlcHxwjSYbxxHQWNJEkcOMSYrQ,23203
168
168
  pulumi_aiven/project.py,sha256=B-7ywlXs6Au_JAOfJiNF3Q8753t2tOy31tkJsXNFL6Q,47414
169
169
  pulumi_aiven/project_user.py,sha256=Kl-7NStrCsGCiI8LnuUl4hlVrKB5JIjQLrT7frKpEcg,19704
170
170
  pulumi_aiven/project_vpc.py,sha256=BtB9ZIrVAMbvOZIpsQqIivzg8cQ1t4wdP8UoYILoeNg,14737
171
171
  pulumi_aiven/provider.py,sha256=Z8C3vpulfAmh7ESvj_-fJ9cd2BepMA7oCU6owN1oT5w,6077
172
- pulumi_aiven/pulumi-plugin.json,sha256=Yt0ER3Ad42EokbKwu3XLqiP8w0H3GcMvxKfMvQRojq4,65
172
+ pulumi_aiven/pulumi-plugin.json,sha256=hN5S7Lih7PMoTp4HrSta8hi-iLbLAYsNnr82Sb3GFFk,82
173
173
  pulumi_aiven/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
174
- pulumi_aiven/redis.py,sha256=AlzNqd1krgK6kUlDVswYo1cXQFeOtFMMIE9BEZWxC0c,87741
174
+ pulumi_aiven/redis.py,sha256=il9aIbjZnGJ8IxT9X0chk7M4MFKVxb78GJMajwAc0cM,89372
175
175
  pulumi_aiven/redis_user.py,sha256=cXn6LPmwSzBiguvgFYHkXDHb8-sUcxNO2-U--0TvPVs,32642
176
176
  pulumi_aiven/service_integration.py,sha256=pIqW8JUl0tcmla44Be1awsTkXe22jHY_qgzadCX_Qf0,100897
177
177
  pulumi_aiven/service_integration_endpoint.py,sha256=fsYyOiD0I2ZiPk0_H1QdNNnQCLuboPT1pH2fH7PzupQ,106860
178
178
  pulumi_aiven/static_ip.py,sha256=kqvdKmJzl92gSk8w05_jsmlUfeBFMA92YIFN2mhhNKc,14853
179
- pulumi_aiven/thanos.py,sha256=F_-I_5Z4icHwsGqdnqYGczLTYOimpaJU7mk0y3aBKVY,86270
179
+ pulumi_aiven/thanos.py,sha256=O_465a4Z6pG5DYTuYPTwIyjQ6sAXjhyR3LW_Aeh68Zk,87901
180
180
  pulumi_aiven/transit_gateway_vpc_attachment.py,sha256=08Ff9M5WXUB1I4Rj6uO-HZCUsxJcmkk-0FynnK0GFQI,23290
181
- pulumi_aiven/valkey.py,sha256=LMT9qtVwNYJfGgF4gm_et14WwqY_Zi34LYWZCszPI4o,86000
181
+ pulumi_aiven/valkey.py,sha256=AzwyfxkhKINA7mvatsQAeT8x_jlxxZFVvAHxWk1hEd4,87631
182
182
  pulumi_aiven/valkey_user.py,sha256=XXUP2RGP_aBEBc7yJ_87HnsaWgCD1pKAm_yLtd_gEPY,35314
183
183
  pulumi_aiven/config/__init__.py,sha256=XWnQfVtc2oPapjSXXCdORFJvMpXt_SMJQASWdTRoPmc,296
184
184
  pulumi_aiven/config/__init__.pyi,sha256=MjHthPCTAY_6CgDmTSbRcQpaY6ZjslJjur3zVBMoSK0,638
185
185
  pulumi_aiven/config/vars.py,sha256=k42XGzgghSpauy0KGMIVVze1etgqJWBCx1_QvRj1XQ4,841
186
- pulumi_aiven-6.43.1.dist-info/METADATA,sha256=s91uoDPvenszPtCd3O1Ogvm1qRh0eOpbL86cGBgmgpw,2587
187
- pulumi_aiven-6.43.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
188
- pulumi_aiven-6.43.1.dist-info/top_level.txt,sha256=4rjz_Hec4Y2PFX4LhJ-JcnMU5H7z-y7r1yiK_xEduWU,13
189
- pulumi_aiven-6.43.1.dist-info/RECORD,,
186
+ pulumi_aiven-6.45.0a1762405690.dist-info/METADATA,sha256=nv7Ffkxc33Gr5IrfxGFcpwBq4bbJDo_GVHrRUWMzrNo,2598
187
+ pulumi_aiven-6.45.0a1762405690.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
188
+ pulumi_aiven-6.45.0a1762405690.dist-info/top_level.txt,sha256=4rjz_Hec4Y2PFX4LhJ-JcnMU5H7z-y7r1yiK_xEduWU,13
189
+ pulumi_aiven-6.45.0a1762405690.dist-info/RECORD,,