pulumi-aiven 6.24.0a1726291362__py3-none-any.whl → 6.24.1__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 (55) hide show
  1. pulumi_aiven/__init__.py +9 -0
  2. pulumi_aiven/_inputs.py +524 -4
  3. pulumi_aiven/cassandra.py +24 -24
  4. pulumi_aiven/cassandra_user.py +40 -40
  5. pulumi_aiven/clickhouse.py +7 -7
  6. pulumi_aiven/connection_pool.py +41 -41
  7. pulumi_aiven/dragonfly.py +7 -7
  8. pulumi_aiven/flink.py +7 -7
  9. pulumi_aiven/get_cassanda.py +8 -8
  10. pulumi_aiven/get_cassandra.py +8 -8
  11. pulumi_aiven/get_cassandra_user.py +15 -15
  12. pulumi_aiven/get_clickhouse.py +1 -1
  13. pulumi_aiven/get_connection_pool.py +14 -14
  14. pulumi_aiven/get_dragonfly.py +1 -1
  15. pulumi_aiven/get_flink.py +1 -1
  16. pulumi_aiven/get_grafana.py +8 -8
  17. pulumi_aiven/get_kafka.py +1 -1
  18. pulumi_aiven/get_kafka_connect.py +1 -1
  19. pulumi_aiven/get_kafka_mirror_maker.py +1 -1
  20. pulumi_aiven/get_kafka_topic.py +27 -1
  21. pulumi_aiven/get_m3_aggregator.py +1 -1
  22. pulumi_aiven/get_m3_db.py +8 -8
  23. pulumi_aiven/get_m3db_user.py +13 -13
  24. pulumi_aiven/get_my_sql.py +1 -1
  25. pulumi_aiven/get_open_search.py +1 -1
  26. pulumi_aiven/get_pg.py +1 -1
  27. pulumi_aiven/get_pg_user.py +1 -1
  28. pulumi_aiven/get_redis.py +1 -1
  29. pulumi_aiven/get_service_integration_endpoint.py +40 -1
  30. pulumi_aiven/get_thanos.py +1 -1
  31. pulumi_aiven/get_valkey.py +1 -1
  32. pulumi_aiven/grafana.py +24 -24
  33. pulumi_aiven/influx_db.py +7 -7
  34. pulumi_aiven/kafka.py +7 -7
  35. pulumi_aiven/kafka_connect.py +7 -7
  36. pulumi_aiven/kafka_mirror_maker.py +7 -7
  37. pulumi_aiven/kafka_topic.py +95 -1
  38. pulumi_aiven/m3_aggregator.py +7 -7
  39. pulumi_aiven/m3_db.py +26 -26
  40. pulumi_aiven/m3db_user.py +32 -32
  41. pulumi_aiven/my_sql.py +7 -7
  42. pulumi_aiven/open_search.py +7 -7
  43. pulumi_aiven/organization_permission.py +298 -0
  44. pulumi_aiven/outputs.py +798 -8
  45. pulumi_aiven/pg.py +7 -7
  46. pulumi_aiven/pg_user.py +21 -7
  47. pulumi_aiven/pulumi-plugin.json +1 -1
  48. pulumi_aiven/redis.py +7 -7
  49. pulumi_aiven/service_integration_endpoint.py +141 -0
  50. pulumi_aiven/thanos.py +7 -7
  51. pulumi_aiven/valkey.py +7 -7
  52. {pulumi_aiven-6.24.0a1726291362.dist-info → pulumi_aiven-6.24.1.dist-info}/METADATA +1 -1
  53. {pulumi_aiven-6.24.0a1726291362.dist-info → pulumi_aiven-6.24.1.dist-info}/RECORD +55 -54
  54. {pulumi_aiven-6.24.0a1726291362.dist-info → pulumi_aiven-6.24.1.dist-info}/WHEEL +1 -1
  55. {pulumi_aiven-6.24.0a1726291362.dist-info → pulumi_aiven-6.24.1.dist-info}/top_level.txt +0 -0
pulumi_aiven/thanos.py CHANGED
@@ -34,7 +34,7 @@ class ThanosArgs:
34
34
  thanos_user_config: Optional[pulumi.Input['ThanosThanosUserConfigArgs']] = None):
35
35
  """
36
36
  The set of arguments for constructing a Thanos resource.
37
- :param pulumi.Input[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 seem from the [Aiven pricing page](https://aiven.io/pricing).
37
+ :param pulumi.Input[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).
38
38
  :param pulumi.Input[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.
39
39
  :param pulumi.Input[str] service_name: Specifies the actual name of the service. The name cannot be changed later without destroying and re-creating the service so name should be picked based on intended service usage rather than current attributes.
40
40
  :param pulumi.Input[str] additional_disk_space: Add [disk storage](https://aiven.io/docs/platform/howto/add-storage-space) in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart and there might be a short downtime for services with no HA capabilities.
@@ -88,7 +88,7 @@ class ThanosArgs:
88
88
  @pulumi.getter
89
89
  def plan(self) -> pulumi.Input[str]:
90
90
  """
91
- 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 seem from the [Aiven pricing page](https://aiven.io/pricing).
91
+ 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).
92
92
  """
93
93
  return pulumi.get(self, "plan")
94
94
 
@@ -321,7 +321,7 @@ class _ThanosState:
321
321
  :param pulumi.Input[str] disk_space_used: Disk space that service is currently using
322
322
  :param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
323
323
  :param pulumi.Input[str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
324
- :param pulumi.Input[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 seem from the [Aiven pricing page](https://aiven.io/pricing).
324
+ :param pulumi.Input[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).
325
325
  :param pulumi.Input[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.
326
326
  :param pulumi.Input[str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service is not run inside a VPC. When set, the value should be given as a reference to set up dependencies correctly and the VPC must be in the same cloud and region as the service itself. Project can be freely moved to and from VPC after creation but doing so triggers migration to new servers so the operation can take significant amount of time to complete if the service has a lot of data.
327
327
  :param pulumi.Input[str] service_host: The hostname of the service.
@@ -525,7 +525,7 @@ class _ThanosState:
525
525
  @pulumi.getter
526
526
  def plan(self) -> Optional[pulumi.Input[str]]:
527
527
  """
528
- 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 seem from the [Aiven pricing page](https://aiven.io/pricing).
528
+ 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).
529
529
  """
530
530
  return pulumi.get(self, "plan")
531
531
 
@@ -773,7 +773,7 @@ class Thanos(pulumi.CustomResource):
773
773
  :param pulumi.Input[str] disk_space: Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
774
774
  :param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
775
775
  :param pulumi.Input[str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
776
- :param pulumi.Input[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 seem from the [Aiven pricing page](https://aiven.io/pricing).
776
+ :param pulumi.Input[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).
777
777
  :param pulumi.Input[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.
778
778
  :param pulumi.Input[str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service is not run inside a VPC. When set, the value should be given as a reference to set up dependencies correctly and the VPC must be in the same cloud and region as the service itself. Project can be freely moved to and from VPC after creation but doing so triggers migration to new servers so the operation can take significant amount of time to complete if the service has a lot of data.
779
779
  :param pulumi.Input[Sequence[pulumi.Input[Union['ThanosServiceIntegrationArgs', 'ThanosServiceIntegrationArgsDict']]]] service_integrations: Service integrations to specify when creating a service. Not applied after initial service creation
@@ -928,7 +928,7 @@ class Thanos(pulumi.CustomResource):
928
928
  :param pulumi.Input[str] disk_space_used: Disk space that service is currently using
929
929
  :param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
930
930
  :param pulumi.Input[str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
931
- :param pulumi.Input[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 seem from the [Aiven pricing page](https://aiven.io/pricing).
931
+ :param pulumi.Input[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).
932
932
  :param pulumi.Input[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.
933
933
  :param pulumi.Input[str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service is not run inside a VPC. When set, the value should be given as a reference to set up dependencies correctly and the VPC must be in the same cloud and region as the service itself. Project can be freely moved to and from VPC after creation but doing so triggers migration to new servers so the operation can take significant amount of time to complete if the service has a lot of data.
934
934
  :param pulumi.Input[str] service_host: The hostname of the service.
@@ -1066,7 +1066,7 @@ class Thanos(pulumi.CustomResource):
1066
1066
  @pulumi.getter
1067
1067
  def plan(self) -> pulumi.Output[str]:
1068
1068
  """
1069
- 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 seem from the [Aiven pricing page](https://aiven.io/pricing).
1069
+ 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).
1070
1070
  """
1071
1071
  return pulumi.get(self, "plan")
1072
1072
 
pulumi_aiven/valkey.py CHANGED
@@ -34,7 +34,7 @@ class ValkeyArgs:
34
34
  valkey_user_config: Optional[pulumi.Input['ValkeyValkeyUserConfigArgs']] = None):
35
35
  """
36
36
  The set of arguments for constructing a Valkey resource.
37
- :param pulumi.Input[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 seem from the [Aiven pricing page](https://aiven.io/pricing).
37
+ :param pulumi.Input[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).
38
38
  :param pulumi.Input[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.
39
39
  :param pulumi.Input[str] service_name: Specifies the actual name of the service. The name cannot be changed later without destroying and re-creating the service so name should be picked based on intended service usage rather than current attributes.
40
40
  :param pulumi.Input[str] additional_disk_space: Add [disk storage](https://aiven.io/docs/platform/howto/add-storage-space) in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart and there might be a short downtime for services with no HA capabilities.
@@ -88,7 +88,7 @@ class ValkeyArgs:
88
88
  @pulumi.getter
89
89
  def plan(self) -> pulumi.Input[str]:
90
90
  """
91
- 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 seem from the [Aiven pricing page](https://aiven.io/pricing).
91
+ 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).
92
92
  """
93
93
  return pulumi.get(self, "plan")
94
94
 
@@ -321,7 +321,7 @@ class _ValkeyState:
321
321
  :param pulumi.Input[str] disk_space_used: Disk space that service is currently using
322
322
  :param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
323
323
  :param pulumi.Input[str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
324
- :param pulumi.Input[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 seem from the [Aiven pricing page](https://aiven.io/pricing).
324
+ :param pulumi.Input[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).
325
325
  :param pulumi.Input[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.
326
326
  :param pulumi.Input[str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service is not run inside a VPC. When set, the value should be given as a reference to set up dependencies correctly and the VPC must be in the same cloud and region as the service itself. Project can be freely moved to and from VPC after creation but doing so triggers migration to new servers so the operation can take significant amount of time to complete if the service has a lot of data.
327
327
  :param pulumi.Input[str] service_host: The hostname of the service.
@@ -525,7 +525,7 @@ class _ValkeyState:
525
525
  @pulumi.getter
526
526
  def plan(self) -> Optional[pulumi.Input[str]]:
527
527
  """
528
- 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 seem from the [Aiven pricing page](https://aiven.io/pricing).
528
+ 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).
529
529
  """
530
530
  return pulumi.get(self, "plan")
531
531
 
@@ -795,7 +795,7 @@ class Valkey(pulumi.CustomResource):
795
795
  :param pulumi.Input[str] disk_space: Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
796
796
  :param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
797
797
  :param pulumi.Input[str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
798
- :param pulumi.Input[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 seem from the [Aiven pricing page](https://aiven.io/pricing).
798
+ :param pulumi.Input[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).
799
799
  :param pulumi.Input[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.
800
800
  :param pulumi.Input[str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service is not run inside a VPC. When set, the value should be given as a reference to set up dependencies correctly and the VPC must be in the same cloud and region as the service itself. Project can be freely moved to and from VPC after creation but doing so triggers migration to new servers so the operation can take significant amount of time to complete if the service has a lot of data.
801
801
  :param pulumi.Input[Sequence[pulumi.Input[Union['ValkeyServiceIntegrationArgs', 'ValkeyServiceIntegrationArgsDict']]]] service_integrations: Service integrations to specify when creating a service. Not applied after initial service creation
@@ -972,7 +972,7 @@ class Valkey(pulumi.CustomResource):
972
972
  :param pulumi.Input[str] disk_space_used: Disk space that service is currently using
973
973
  :param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
974
974
  :param pulumi.Input[str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
975
- :param pulumi.Input[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 seem from the [Aiven pricing page](https://aiven.io/pricing).
975
+ :param pulumi.Input[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).
976
976
  :param pulumi.Input[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.
977
977
  :param pulumi.Input[str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service is not run inside a VPC. When set, the value should be given as a reference to set up dependencies correctly and the VPC must be in the same cloud and region as the service itself. Project can be freely moved to and from VPC after creation but doing so triggers migration to new servers so the operation can take significant amount of time to complete if the service has a lot of data.
978
978
  :param pulumi.Input[str] service_host: The hostname of the service.
@@ -1110,7 +1110,7 @@ class Valkey(pulumi.CustomResource):
1110
1110
  @pulumi.getter
1111
1111
  def plan(self) -> pulumi.Output[str]:
1112
1112
  """
1113
- 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 seem from the [Aiven pricing page](https://aiven.io/pricing).
1113
+ 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).
1114
1114
  """
1115
1115
  return pulumi.get(self, "plan")
1116
1116
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pulumi_aiven
3
- Version: 6.24.0a1726291362
3
+ Version: 6.24.1
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,5 +1,5 @@
1
- pulumi_aiven/__init__.py,sha256=PaaxSOu_GAnHh4HRpEShJP9mCMv9wP97wJlMracO_Ko,18538
2
- pulumi_aiven/_inputs.py,sha256=qtQdkp1YDzKlv5fqL-KETeHuIvaoZQmCl3erZ1W6nk0,1193918
1
+ pulumi_aiven/__init__.py,sha256=RCQKvXrGTyOXbhbjexgfkfGkkmdBaKoxnCE1txw1z9M,18776
2
+ pulumi_aiven/_inputs.py,sha256=1WRj-mdjYTtqrboqRSvONLM-5WAON8jmq4ztuX6tAJg,1217866
3
3
  pulumi_aiven/_utilities.py,sha256=aNnnaO6zRha3FhNHonuabR4fJLWGXANtK5dlh1Mz95k,10506
4
4
  pulumi_aiven/account.py,sha256=MlCmPhnrhzt9_f2Elgjvm-4ZVPhFXz6eQ3DMJ5zoQZE,16851
5
5
  pulumi_aiven/account_authentication.py,sha256=f-WGSeET1vkjqDJ56lcmpjqIfbW8-AyajBgiGJF8PZY,37575
@@ -12,16 +12,16 @@ pulumi_aiven/azure_privatelink.py,sha256=fnW3eM-N2Og8IhfOgYbtaeo9PEFtnnoQ4utMEm_
12
12
  pulumi_aiven/azure_privatelink_connection_approval.py,sha256=PypS2BeXPJXkp1L2qjiE70CI55F1RkzfRDl022y-luk,18830
13
13
  pulumi_aiven/azure_vpc_peering_connection.py,sha256=mdpra_XePbvRDNs6A8jI0Gg55ONt3qL2_sZAV0zxqcU,25208
14
14
  pulumi_aiven/billing_group.py,sha256=618QcUhxrSf6eahAcjspSpFYXQgMSCZ5vdXMrXwjNV0,37303
15
- pulumi_aiven/cassandra.py,sha256=v1VyXvFMzZVL5ERwjyPG4osAMN6BlwmbCOveTuvu6iM,81291
16
- pulumi_aiven/cassandra_user.py,sha256=oD7ArA3pybc68ND_tQL4lG3YxVk37OSkpnp-c2-2MCs,18922
17
- pulumi_aiven/clickhouse.py,sha256=1LI2uLAFGt4fYPYlLHt4P3v61CQF_XA1DORCxC1d9Xw,81361
15
+ pulumi_aiven/cassandra.py,sha256=QeZU188IDjknkoi_XYq1jtfl6DdBrY9Kf8oCpvdpYo0,81507
16
+ pulumi_aiven/cassandra_user.py,sha256=Cj0MarnLRywMzKQDLAoCGABmLzh3XJpSVNTDcn0wsVw,18590
17
+ pulumi_aiven/clickhouse.py,sha256=p6zpaGPSvtB6isuTGBA2zDRyP1CMApzXpMTWJ-N95WQ,81361
18
18
  pulumi_aiven/clickhouse_database.py,sha256=UBr3JvlL7z-dzR3SoYgsWnf-Ybdvvj6hxL_ygdOVJoc,15550
19
19
  pulumi_aiven/clickhouse_grant.py,sha256=d_Y0tluiujPl5oM8C_aQK-G9LuqHtHhoHjUr8FAg4do,25348
20
20
  pulumi_aiven/clickhouse_role.py,sha256=i9O92BTA6m1EmuJwSI8mCzyIlSt-xpGBiUzm-Rur9ko,12487
21
21
  pulumi_aiven/clickhouse_user.py,sha256=P1oJSHEcosqc-5dn9yF8ppR-zHLyXQimnawk-iZyRyc,15787
22
- pulumi_aiven/connection_pool.py,sha256=3Vd_cbCNIZSSxP2ztuk_zm4CagEAYudGVKYmqCM6W1o,25462
23
- pulumi_aiven/dragonfly.py,sha256=-HTha9v7d4ZWXd_YP8u2O2uiFg-U7b1RHzGBPPOXeVw,81077
24
- pulumi_aiven/flink.py,sha256=43zth3wBPlMttwmqbM4vOf68JlHSLVJcpU7ylIpnJcE,80305
22
+ pulumi_aiven/connection_pool.py,sha256=46bAb54BIq4yNXnWAqJkZES3iE5wGA6i7XAK0stn_x0,26251
23
+ pulumi_aiven/dragonfly.py,sha256=eyIjIipueXDAtcX1MiZI-MSlRCYD2M2iwkUkLRwVCmU,81077
24
+ pulumi_aiven/flink.py,sha256=aKlwzYFhIY6WiEm5nuPny1y6S4mojkMmu1NPEb0mHOY,80305
25
25
  pulumi_aiven/flink_application.py,sha256=ZMN-NMsCGgx1C-RvwvVybuNu5-k1KLfMZwVg305ZDjY,17604
26
26
  pulumi_aiven/flink_application_deployment.py,sha256=kJtKNGavTqEJQqnGv8PCaY1mDpDCMJKytjUx2HYvST4,26276
27
27
  pulumi_aiven/flink_application_version.py,sha256=nkN6GujMoREZW5IcOTgzS4lZKd89bWis3YlGRE_UghU,34128
@@ -38,41 +38,41 @@ pulumi_aiven/get_aws_vpc_peering_connection.py,sha256=LHtcxLnGhZKhFNRJTZePGplGVp
38
38
  pulumi_aiven/get_azure_privatelink.py,sha256=LQgpG0bCm9jk744TX2n4KS530PW5I9Dh1bmDO3jMgss,7755
39
39
  pulumi_aiven/get_azure_vpc_peering_connection.py,sha256=aWaydHrSr3vjpenWsuHWnsn9neY-EX-C2fxqGAWzcwA,11684
40
40
  pulumi_aiven/get_billing_group.py,sha256=ztNtROFBAjtl-P_7lIF_44ycSSZyfRPN5VTHs9Yb39A,10909
41
- pulumi_aiven/get_cassanda.py,sha256=lhz9TJ44xHneTokL1m-yVJIIJWlMZhhSP2DzQRZ9co8,23108
42
- pulumi_aiven/get_cassandra.py,sha256=xzCMZnJBp56opP9wEul4OgyQPw-jJ1myCRyxtzXixQg,22777
43
- pulumi_aiven/get_cassandra_user.py,sha256=grVk-DzxtyiVj5CneY5mCQ8bB27H4bLAIdUdGwwiVuA,8124
44
- pulumi_aiven/get_clickhouse.py,sha256=JqyLpg4fzt2dOH7rRpxHm7c2sq6gu5UeJJTGB7b6zC0,22823
41
+ pulumi_aiven/get_cassanda.py,sha256=gcPv3Z0DK9dxqzBasK8EOiFSBz69j_QqPhe81FoYegU,23136
42
+ pulumi_aiven/get_cassandra.py,sha256=ql-30r9V9ovY4GEYnkbF2YZ3sTBQ-g6RI2qisMpg3ic,22805
43
+ pulumi_aiven/get_cassandra_user.py,sha256=HZf0TAWgTX21N9ul4z-8D_8XnTPUbxdPes5T95bkPXU,8083
44
+ pulumi_aiven/get_clickhouse.py,sha256=Rp_dkm7TH-z3pspBSDgLQuhAfzhLK48nr5Dcme4ZiTs,22823
45
45
  pulumi_aiven/get_clickhouse_database.py,sha256=3-a7h3JOaIB9FgFU10-2pZTe_Jf79A-S7C3HYuESf6A,6550
46
46
  pulumi_aiven/get_clickhouse_user.py,sha256=Im8GpQBh3yowS3m_ULVc3LnychSG-FXuTSjesRnL_8Q,7206
47
- pulumi_aiven/get_connection_pool.py,sha256=qqx9K8wn74DcWbCPoNZkGVaXSUE9STjNkXP2mEHcvGA,8984
48
- pulumi_aiven/get_dragonfly.py,sha256=-aLNq7rH5Mi2o6lZO_pNBM9jzMJOqhUpT34HlhFK5kA,22795
49
- pulumi_aiven/get_flink.py,sha256=sNqzK-lWl4wRaHwJ1xYyF7rTMR_CF3go7xF0w8ey6m0,22545
47
+ pulumi_aiven/get_connection_pool.py,sha256=pS00Y-MZ4FoRvJPwZtoqUSfU5cF7b4LDuIKQmIeGfW8,9054
48
+ pulumi_aiven/get_dragonfly.py,sha256=P4XTf6q3xyGc5vd6v4FW6wUbf-sx_FvC2c4-gF6p34A,22795
49
+ pulumi_aiven/get_flink.py,sha256=6bW-Xx6UrqgT8P7RheXn4zdlvVUplLHbBtt8U9HyNm8,22545
50
50
  pulumi_aiven/get_flink_application.py,sha256=6DeaE1HQbXHcwt1Rw8I_fBaj6ia1QRo_YBcx3wo_sLM,8212
51
51
  pulumi_aiven/get_flink_application_version.py,sha256=uyGs1YxOBa5T3iM20KjLUe7ceDUHAG2PeNjG_H1r1YM,11070
52
52
  pulumi_aiven/get_gcp_privatelink.py,sha256=B0_jQTTtZNGaJmhdJyUyqvRhuOF2EgUtAivb-yfVD_k,6601
53
53
  pulumi_aiven/get_gcp_vpc_peering_connection.py,sha256=5j195Zriun91TKu4WQCf3WNknWCZ3kkF3GuIf5QpHWk,7122
54
- pulumi_aiven/get_grafana.py,sha256=lL_qPqWFBDhLMkUCnV4xgYj6RJwFFXpHXFmgzT7-Hgs,22635
54
+ pulumi_aiven/get_grafana.py,sha256=OZSjVbH4cXn9tMR_sAGbw2UMwLxQGtnCt24IQfwsl1g,22661
55
55
  pulumi_aiven/get_influx_db.py,sha256=eo_2CHe3FlcRIMfN_xikFxmdPhJuSpgNI6YDxjzp-Fw,15756
56
56
  pulumi_aiven/get_influxdb_database.py,sha256=3fwwAHiy_2s1dmI6BOyFLjz-oBcutoxgXHMYgBfRy_Y,4504
57
57
  pulumi_aiven/get_influxdb_user.py,sha256=3PQ9lTmaIzX9-KduzIGuQKzvF2eSaqYLxEVYhc9dFS0,5320
58
- pulumi_aiven/get_kafka.py,sha256=hJdyIoh3fBrkdWIOop0z0qWofWwmRVk1nM0Dglz9J1M,23583
58
+ pulumi_aiven/get_kafka.py,sha256=F26gapEQ4ARvRqFZYBPfSCOxz8BvOrfw9aupe-S7dJ0,23583
59
59
  pulumi_aiven/get_kafka_acl.py,sha256=lx0RCpBHYhxt3xO2plF1sWVD_YdDCTDfL2AvlT8CFfo,8303
60
- pulumi_aiven/get_kafka_connect.py,sha256=_rEDTgLZnYOz3x9HR0wM-QgWdhgYL1EEJ7EFWUFOf1w,22441
60
+ pulumi_aiven/get_kafka_connect.py,sha256=F0HBqrMZ-I0tJoXSb7WqGc_3GzSsT8BDvmfzQm9l9Z8,22441
61
61
  pulumi_aiven/get_kafka_connector.py,sha256=ni-Yv-iiYZTP4H07V7eAqDsRjg-H_xfsSVxZieVJec0,10188
62
- pulumi_aiven/get_kafka_mirror_maker.py,sha256=G_5BuBpnZ_W3pwRhID6RVcedNt3NrKvkalOQtfzKy8g,22616
62
+ pulumi_aiven/get_kafka_mirror_maker.py,sha256=a8_2SYAXLri4o1ZsrloH7lX6KhgXW1XXd2BApIy_8KE,22616
63
63
  pulumi_aiven/get_kafka_schema.py,sha256=ttWJGihZ6o3SVEUxV1kPyZuQeOhu6YNtVx4wWn6l7BA,8212
64
64
  pulumi_aiven/get_kafka_schema_configuration.py,sha256=dgmGtRQUOUl-hAxn9jJyHvpyeg4-lajbXMCwdElvEAU,8253
65
65
  pulumi_aiven/get_kafka_schema_registry_acl.py,sha256=2HWu-4qpxia3UIizSnVIEE5IJzvszn2JDxsYYy2kM44,8459
66
- pulumi_aiven/get_kafka_topic.py,sha256=xF6_KZIgOKITYizLjqro4-Bpla2FCmIpLFTRA3z5MNI,8430
66
+ pulumi_aiven/get_kafka_topic.py,sha256=ysTH_etu-Th_SJ_a3654TwWWkfFP5g57zWPnNfq7s14,9635
67
67
  pulumi_aiven/get_kafka_user.py,sha256=BhDSOQKkJv_WhEQ5nhVLaFhTzysTUvbZqZmUe6-KXzc,7939
68
- pulumi_aiven/get_m3_aggregator.py,sha256=KFUOOYaYn9Ygby5UXDCoZByHDG9-7izA7q5OmQUeCQE,22950
69
- pulumi_aiven/get_m3_db.py,sha256=vcnoTjK9Ul_VjnYzbeNizP2QmsEkoj3FVZI_izPFOIs,22457
70
- pulumi_aiven/get_m3db_user.py,sha256=AX7fioJ-ErVg_qk-kDWlQurD8q5MffNLLhhttmomXac,6865
68
+ pulumi_aiven/get_m3_aggregator.py,sha256=M81C3Pdc3XYeH8pZgumhtWwmxwbcqReTX527qPP4bjI,22950
69
+ pulumi_aiven/get_m3_db.py,sha256=_whKHFmqNvzN3hE7GY38w-L0jlg43zf7okIfDj6bniE,22473
70
+ pulumi_aiven/get_m3db_user.py,sha256=tux9wZJJviUEFW9vDgLf78L0oY5B2IVwqHGDuihsZ5I,6878
71
71
  pulumi_aiven/get_mirror_maker_replication_flow.py,sha256=yMdNw1xcqg0Bie2rR6W21dEGpOQhogwuLtHt7k3jFas,15742
72
- pulumi_aiven/get_my_sql.py,sha256=YlPaofg_hoUp7J8enTK-ZtLvmHnbIF6OtJ_3v04durk,22541
72
+ pulumi_aiven/get_my_sql.py,sha256=Zpn4t6rP7nHyt5-9yLaWhbD5_6hmcScFo0CKkvyA4Dc,22541
73
73
  pulumi_aiven/get_mysql_database.py,sha256=1rryMxbdYRBK3ItPNYKe91eFxUZKxxvHl3LJ7m5_nrw,6647
74
74
  pulumi_aiven/get_mysql_user.py,sha256=gTTpale8uWigGZvkrfmprvWO7tE6LRBqkncPTFsoaEE,8541
75
- pulumi_aiven/get_open_search.py,sha256=XO48efQPAnMW6X25xHhB9aCxHxuRzSYP7X04_wejnYo,22847
75
+ pulumi_aiven/get_open_search.py,sha256=QRq2QBrfeajAdetWZZTqFTaxYbgVIbVSVCEioWKNu_A,22847
76
76
  pulumi_aiven/get_open_search_acl_config.py,sha256=zsBIEfvwAMukiLjnzsvKaFwSERfwnBgy_l1h1EGeeOo,6475
77
77
  pulumi_aiven/get_open_search_acl_rule.py,sha256=ALOv6HiP9C_pynlN0-kgQPh642HeccfuSES2_DMu5ps,8407
78
78
  pulumi_aiven/get_opensearch_security_plugin_config.py,sha256=FdUNjCJduz412aQE85-cnXU4Ya2NwQOil1hEVThfnxM,7739
@@ -82,43 +82,43 @@ pulumi_aiven/get_organization_application_user.py,sha256=5rcRhoN0MxaH8zgpb42h4nc
82
82
  pulumi_aiven/get_organization_user.py,sha256=1hdtZ9xCzN9ci-yM7xKGiEfEYtgYhxYJuRncX4fxnhM,5050
83
83
  pulumi_aiven/get_organization_user_group.py,sha256=jFvrv0G0CnTENs0YSLFrPotJW-1RQJ0IC5AdTVvNR3E,6462
84
84
  pulumi_aiven/get_organizational_unit.py,sha256=wuiMG9iefxZluA84PqT9iwArghn7JcH1PdF12jei8uE,4697
85
- pulumi_aiven/get_pg.py,sha256=c8dETOVr0Oc64Y4eyMRzFwYzXNaoXsT0A-Oy_mySbQU,22384
85
+ pulumi_aiven/get_pg.py,sha256=siTLY_nrvn1sIDGtGz0QmwhZYMb9CzCaejNoVC_zPGQ,22384
86
86
  pulumi_aiven/get_pg_database.py,sha256=6pn1VfvHydsxDKghxjq6C1_WRAh-IVTsRX_bAvKaikw,7754
87
- pulumi_aiven/get_pg_user.py,sha256=WODxpoaJW-H5EsXL7yLWr8H5W_WlxfJpsXek1xT9edQ,8535
87
+ pulumi_aiven/get_pg_user.py,sha256=EoEfaKzxP6r6Ri-eBexQNmWyP_lhtgCiReAuonv5Bmo,8614
88
88
  pulumi_aiven/get_project.py,sha256=BMI-RAjRUc-KASrMgXxHcdtzGORQy5uxFgedoXD3m_Q,12306
89
89
  pulumi_aiven/get_project_user.py,sha256=QO8JUYTSNHGd-1UUfnFdIC-nlOpkNiZdXuuNlWJ4VXg,5600
90
90
  pulumi_aiven/get_project_vpc.py,sha256=dtBlsCZ9jLw_XkpVkNdrgjakB4pcKrLoz_3Tji-y_go,6327
91
- pulumi_aiven/get_redis.py,sha256=BlRGJe1VxvHHQdHZjw9J8i0zoxEISEXRIv4q9mIZJSI,22508
91
+ pulumi_aiven/get_redis.py,sha256=tBxebE6_5zfF2-gGQ_fOuJEMWClygKLphidikt8HARQ,22508
92
92
  pulumi_aiven/get_redis_user.py,sha256=tSFTVOj-u1uUbNLsw66Bg79_QerWBcWZi3RFiaM91eE,9769
93
93
  pulumi_aiven/get_service_component.py,sha256=ej2tl74FPoQfgdI3KYQABT_b1b9advsU_z23yLpJsto,10367
94
94
  pulumi_aiven/get_service_integration.py,sha256=GxWG1J6xwZ9MZWbO96Eqd9s_XomLqfsGjByJZkZ85-Q,21790
95
- pulumi_aiven/get_service_integration_endpoint.py,sha256=NptyCHZAmQVpUMLFohCXarpM9-pb0-D-_HqTW6rlExs,17283
96
- pulumi_aiven/get_thanos.py,sha256=B9xMA5OHAGq23D3pEuyV447qGetBWnmbQuSjCL-Ph6U,22459
95
+ pulumi_aiven/get_service_integration_endpoint.py,sha256=HPzktKWjDPWlMUP5CdL1V1vGnGr39H-ZNeJ9lb55FIU,19767
96
+ pulumi_aiven/get_thanos.py,sha256=ylRL_Vzn8RHSseYbsDJC5pgUlrpvqFqwWUyGK0-yVgs,22459
97
97
  pulumi_aiven/get_transit_gateway_vpc_attachment.py,sha256=Tck_Lmq87WZOxA2iUt2Iom7lM4lCxYyXipZ34cJ3iZM,9147
98
- pulumi_aiven/get_valkey.py,sha256=jyZ4oFkd-4kEjryawlO6t1U-0to-USt9HxnuglmrO3g,22900
98
+ pulumi_aiven/get_valkey.py,sha256=4OXsrt8vQQYeNI66DA-c8JtXgzvy4HSXVRJ5A7xMeo0,22900
99
99
  pulumi_aiven/get_valkey_user.py,sha256=qthhEULJpTkbtPp4AM7E3qctLwzlewI_LqBuHMuCqVg,9759
100
- pulumi_aiven/grafana.py,sha256=3QOX7bqfjGuD6n_GYite5548qyt8q1ES1B14r__xGsY,80691
101
- pulumi_aiven/influx_db.py,sha256=eJfthY-pgjpjWwXIyUezz-7JYrLGtZBrIwOsmEI3jsA,81862
100
+ pulumi_aiven/grafana.py,sha256=om07I0TW8OvhWEt9uw0g-4o1nCUDv4V8V8i7RtMatXM,80899
101
+ pulumi_aiven/influx_db.py,sha256=etwsrkd_mA_xL_iLn8ljqN6Nu6FJrqIGr15UaUxz6pA,81862
102
102
  pulumi_aiven/influxdb_database.py,sha256=-W78tVLUInwbQS0iHcBC5uToGVOQykTl3WlmO8HAUBQ,14040
103
103
  pulumi_aiven/influxdb_user.py,sha256=SptXu0v0R8S_pFs-veNOZkeIvTrCWnCsAZMHb0Z3rjY,18226
104
- pulumi_aiven/kafka.py,sha256=W1X4IXY_Z_mkL33ESPCrTb_MSG6Z65JV6NpdmvFPFoE,86333
104
+ pulumi_aiven/kafka.py,sha256=r09lHensgztgs8yGWpQqWJoqn7S_LMBLiiXTAfuk0EQ,86333
105
105
  pulumi_aiven/kafka_acl.py,sha256=GAECksDAXZzdBQ7MCk-FIskfUxRSED4mopLocBPJSY8,18756
106
- pulumi_aiven/kafka_connect.py,sha256=qFtxM4hdPqeDCE_qkBlQRiZMhFyifWQ95L32QEGQYEk,82736
106
+ pulumi_aiven/kafka_connect.py,sha256=_okaQRtETMIr6FhkcM4ldwUOegs2Nb59M5POfS1nfzM,82736
107
107
  pulumi_aiven/kafka_connector.py,sha256=JL0PlIr03i0jB9MvIPU8LY2vYYqcJVMMzf0hLFkmwsk,24876
108
- pulumi_aiven/kafka_mirror_maker.py,sha256=x9UXVQpzwOm9m-rpO_P75yzyEGt2rLiDR80D9PIx27c,80320
108
+ pulumi_aiven/kafka_mirror_maker.py,sha256=JyGpvFNV3YXcMWUAj2SqNWU1L92NeKztgEguUFy3hEc,80320
109
109
  pulumi_aiven/kafka_schema.py,sha256=dzVrDdWK7QzIlVTSKrRpemuYo0SmDeuygkiVHRWlnnc,22597
110
110
  pulumi_aiven/kafka_schema_configuration.py,sha256=kJVMjKWs19pf0m16wtUnTboIkHj5-5Mqo7yvD6qHUwk,14026
111
111
  pulumi_aiven/kafka_schema_registry_acl.py,sha256=Odnd3RSN7eXVoKrJ5njdgj-qVF-NlrI1CFmAJE59L0M,19449
112
- pulumi_aiven/kafka_topic.py,sha256=wz-J_oExYO9-NZaE5Edm0yjdwn9p_KuJCuBm7_PhP4g,23770
112
+ pulumi_aiven/kafka_topic.py,sha256=CI4Mwx3z01GqVAX2hMYkFtAzfLapqYT6bvDgolDXj58,28085
113
113
  pulumi_aiven/kafka_user.py,sha256=xWV2GjfyYS1awT_5ujnylgBaMf8zCVioW6Bvs05fVLY,18390
114
- pulumi_aiven/m3_aggregator.py,sha256=gpkk7rYLW_ok6W8tHCLHMAv6NdyyWMtfYJa_nwK4tGk,81861
115
- pulumi_aiven/m3_db.py,sha256=mzsVHY4IygMUB-LrEE_xbtrMjs_qE_foIHDlQTjAORg,80056
116
- pulumi_aiven/m3db_user.py,sha256=5svsu5nO-CwdR3Cp-OHej55L19fERWCjMFe3BUi9Zbg,16224
114
+ pulumi_aiven/m3_aggregator.py,sha256=3ZaxStJSlE8ODaNtcD9LbH80SLYRIbETxfkaOuFF9A4,81861
115
+ pulumi_aiven/m3_db.py,sha256=c3VwQepnT9wptrnnQJG8rl0160eN0gjyx3K3Sp_Rzp8,80264
116
+ pulumi_aiven/m3db_user.py,sha256=uPzddlYZmUF7NEQoq2nl_J9vGG8EROiVA_-zZ0XaGkI,16192
117
117
  pulumi_aiven/mirror_maker_replication_flow.py,sha256=v-WC_KemMR7TlHOo_-ibMwP03oLvR4UQXPSHW9Q6UeI,50955
118
- pulumi_aiven/my_sql.py,sha256=jd--FHpZYKdek0FXa1w8VUYjU4AjrQ2ktKiz9_e_xXM,80746
118
+ pulumi_aiven/my_sql.py,sha256=Jt--v1UQWpyVcs_Jevq7fiZfUnpzOI5kfsZ-IBfbslc,80746
119
119
  pulumi_aiven/mysql_database.py,sha256=V-PIDNBgrVHMCko7rVqi57vvoIjL8304E2RgawjrgHE,14754
120
120
  pulumi_aiven/mysql_user.py,sha256=1SIVVPp_sm-bqi6uJUAkze-HeQUy5d1LjKWU35mVV9w,21121
121
- pulumi_aiven/open_search.py,sha256=nM_5coK4q6VRgSiBq2rfIC5dVBQbGImx1ZmHtEkcYtg,82318
121
+ pulumi_aiven/open_search.py,sha256=I1DjZ9pqciiA3iYgPvh1iqFpCiPq9aFbO8QVZDtjoT0,82318
122
122
  pulumi_aiven/open_search_acl_config.py,sha256=t5lPy7nN2_08a9LK-4H-hwNS1PpS8aRoujLAoEbT_-o,17912
123
123
  pulumi_aiven/open_search_acl_rule.py,sha256=_8D_sLAiM29SNMMjl1fLUzae8tgNQhLPmWaJAX_LwMs,21934
124
124
  pulumi_aiven/opensearch_security_plugin_config.py,sha256=HpnFd2__mtiAwwOh9PFboST9zs8tRWruKvl_PFEaQKs,18636
@@ -127,33 +127,34 @@ pulumi_aiven/organization.py,sha256=awum1ftH-MNLiWaXuhOIfYf7LX3ztjt8yFesRUyQGk8,
127
127
  pulumi_aiven/organization_application_user.py,sha256=T5jW1IU1HIJf6YVpsHxi6KYD-PDYSGvv-aZnJvmLfJU,15019
128
128
  pulumi_aiven/organization_application_user_token.py,sha256=W40T7JYZ2dCqXyNlS7CmlB2sxYByvzWOx8p-jhST28Y,32908
129
129
  pulumi_aiven/organization_group_project.py,sha256=JHF4LDplwKy9iwYWcUWOGXSAE4Cbbj1reerTVAxvB5I,14383
130
+ pulumi_aiven/organization_permission.py,sha256=jOP0Z_8cBOmscYt5HSHZHBxxdj6Gw6XCDKuOr-EOJbQ,13028
130
131
  pulumi_aiven/organization_user.py,sha256=eJ59ukayuIBnmYl08YyF_GJBDC8pjFpuBtsCkw6EXxo,15555
131
132
  pulumi_aiven/organization_user_group.py,sha256=VIG187GzPkUjZpbu42Y1sDNr57KoKMdXr3TeckArwJs,14658
132
133
  pulumi_aiven/organization_user_group_member.py,sha256=Wu0IdVIKC-s-12hqx0vb4_3PhsdHlV6QBLXE3VB-0Jk,14610
133
134
  pulumi_aiven/organizational_unit.py,sha256=HxSsz1TNJvhrtb1NPUfdA_V1fYiWCftoqJakJnBP8uU,11465
134
- pulumi_aiven/outputs.py,sha256=LveMMQOEunXReB0Xh-lltB63UPUveInFrWlKgxJFp_A,1963005
135
- pulumi_aiven/pg.py,sha256=JluviyjnMHIfHYPnkX4m4dR7Jiuc1xvUy0TuX7xlpKM,78390
135
+ pulumi_aiven/outputs.py,sha256=W_VHUxNHjKf-kOfwf9Xp1JQh6eQSpyU1Ck_qMt7Jrp4,1998828
136
+ pulumi_aiven/pg.py,sha256=KdN42PqtrHWyXbCiIXJuSuU6VSHuwfUpUggTrrIVdZU,78390
136
137
  pulumi_aiven/pg_database.py,sha256=L61L8af8YTLIDR23AmtrkZwc0mtrigweRpYvjqJel-Y,19979
137
- pulumi_aiven/pg_user.py,sha256=FoWQkDjKfs_wIpYnx_8ZXuMzJD2RgsewX_OxpOxUxXQ,20617
138
+ pulumi_aiven/pg_user.py,sha256=Mv-Tt6aNjxUT4J4TIemzhh3p5aeLqT6AdSMDG-nkJ3w,21862
138
139
  pulumi_aiven/project.py,sha256=V97vBWX7CScWthB52QruGXXXb8W_bduMhDLSdrPvnGc,45405
139
140
  pulumi_aiven/project_user.py,sha256=JPRFqgng2mQU1fO_1_tcY0MIjd3Yx64FTA48srX-O2U,13273
140
141
  pulumi_aiven/project_vpc.py,sha256=Hsi_hf5hS-mOkE_HIiyV2VU4qhafCcW5kOHvdsMvZH8,13908
141
142
  pulumi_aiven/provider.py,sha256=8Nv5JAKLMaDCG8iqDCiMTBS5DYK8bh5Fvv0Pl6_5LK0,4881
142
- pulumi_aiven/pulumi-plugin.json,sha256=Gn83bgAZNmL4Z2dyuS5MQMC_l-sdElifNOWbfWmcXf0,82
143
+ pulumi_aiven/pulumi-plugin.json,sha256=WS6Y-FWfDeFrxWQdL3KkcxElmhqDeHvohtloFqmw9Tk,65
143
144
  pulumi_aiven/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
144
- pulumi_aiven/redis.py,sha256=yeADGS2jcMOLeZJnMkeQBmUcsY_h3eoLUw4jN4g4nLc,80291
145
+ pulumi_aiven/redis.py,sha256=LRTg43C8XnChzXaAvWr-ffaAQgx-WaVDdUNKwBLGkBE,80291
145
146
  pulumi_aiven/redis_user.py,sha256=jGHT0lw0egvRigZIBlokBIE6-_c8sbjhFM2bJLoaGHg,29184
146
147
  pulumi_aiven/service_integration.py,sha256=gOWahoG21HFs2Fsvn-gG8uTiDcscVXu_ZLYZkoMDWfY,72155
147
- pulumi_aiven/service_integration_endpoint.py,sha256=UAQwjN5zuQzqqwnYS8VsIWLxc-ef3tcBWIL4RxAaTrM,63609
148
+ pulumi_aiven/service_integration_endpoint.py,sha256=tKy9D4HYbrwvw7-WfQ5_xshGDElMEDVo76KaHb_oNp8,74509
148
149
  pulumi_aiven/static_ip.py,sha256=gtPEBjinCRn1W_Eth41uMApeqQ1kN8jQFt9xFmHrcTw,13926
149
- pulumi_aiven/thanos.py,sha256=dffIfLA8g21dxOByzSXs95WPHwK73plUbVMXzBzA-dk,79540
150
+ pulumi_aiven/thanos.py,sha256=KGpLZluHqmdzy-ahBQw1FyLevoTVrnpVkjPudxT3PHY,79540
150
151
  pulumi_aiven/transit_gateway_vpc_attachment.py,sha256=pINRMv0Kd7eLcR81gUZbxp3I5atzGm1EWum36d1jN4s,21907
151
- pulumi_aiven/valkey.py,sha256=bwtLeRJRI4lynn5SYYyKzDWUjRBB-rzsNF8mNvoNrZ8,80630
152
+ pulumi_aiven/valkey.py,sha256=efIFw8w2uW8rbfrrDLmmv62PSYpaginfpOh94-ktLdU,80630
152
153
  pulumi_aiven/valkey_user.py,sha256=smI-xf7tp7fELqzEELJMO8bbmIK7YchTz9j1mLqR0ig,28872
153
154
  pulumi_aiven/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030,285
154
155
  pulumi_aiven/config/__init__.pyi,sha256=i0kRcMqRhHZqXZfs-7cXU-bEhaP2QAJDGjuUhIMDgqY,465
155
156
  pulumi_aiven/config/vars.py,sha256=hQgM94csEU3YnUsOUTPc-JvxssBTpi2DURZx6QWdLUk,658
156
- pulumi_aiven-6.24.0a1726291362.dist-info/METADATA,sha256=GMxfWUcXb8CeOiJZYkvimhe-VRZyihunrDvl0SaPS9g,2532
157
- pulumi_aiven-6.24.0a1726291362.dist-info/WHEEL,sha256=cVxcB9AmuTcXqmwrtPhNK88dr7IR_b6qagTj0UvIEbY,91
158
- pulumi_aiven-6.24.0a1726291362.dist-info/top_level.txt,sha256=4rjz_Hec4Y2PFX4LhJ-JcnMU5H7z-y7r1yiK_xEduWU,13
159
- pulumi_aiven-6.24.0a1726291362.dist-info/RECORD,,
157
+ pulumi_aiven-6.24.1.dist-info/METADATA,sha256=sYai9dxD3GjSOdLaPT1SGSlTg8ttBcNz4_RVD2LOPSk,2521
158
+ pulumi_aiven-6.24.1.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
159
+ pulumi_aiven-6.24.1.dist-info/top_level.txt,sha256=4rjz_Hec4Y2PFX4LhJ-JcnMU5H7z-y7r1yiK_xEduWU,13
160
+ pulumi_aiven-6.24.1.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (74.1.2)
2
+ Generator: setuptools (75.1.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5