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/cassandra.py CHANGED
@@ -34,11 +34,11 @@ class CassandraArgs:
34
34
  termination_protection: Optional[pulumi.Input[bool]] = None):
35
35
  """
36
36
  The set of arguments for constructing a Cassandra 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.
41
- :param pulumi.Input['CassandraCassandraArgs'] cassandra: Cassandra server provided values
41
+ :param pulumi.Input['CassandraCassandraArgs'] cassandra: Values provided by the Cassandra server.
42
42
  :param pulumi.Input['CassandraCassandraUserConfigArgs'] cassandra_user_config: Cassandra user configurable settings
43
43
  :param pulumi.Input[str] cloud_name: Defines where the cloud provider and region where the service is hosted in. This can be changed freely after service is created. Changing the value will trigger a potentially lengthy migration process for the service. Format is cloud provider name (`aws`, `azure`, `do` `google`, `upcloud`, etc.), dash, and the cloud provider specific region name. These are documented on each Cloud provider's own support articles, like [here for Google](https://cloud.google.com/compute/docs/regions-zones/) and [here for AWS](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.RegionsAndAvailabilityZones.html).
44
44
  :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.
@@ -88,7 +88,7 @@ class CassandraArgs:
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
 
@@ -136,7 +136,7 @@ class CassandraArgs:
136
136
  @pulumi.getter
137
137
  def cassandra(self) -> Optional[pulumi.Input['CassandraCassandraArgs']]:
138
138
  """
139
- Cassandra server provided values
139
+ Values provided by the Cassandra server.
140
140
  """
141
141
  return pulumi.get(self, "cassandra")
142
142
 
@@ -312,7 +312,7 @@ class _CassandraState:
312
312
  """
313
313
  Input properties used for looking up and filtering Cassandra resources.
314
314
  :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.
315
- :param pulumi.Input['CassandraCassandraArgs'] cassandra: Cassandra server provided values
315
+ :param pulumi.Input['CassandraCassandraArgs'] cassandra: Values provided by the Cassandra server.
316
316
  :param pulumi.Input['CassandraCassandraUserConfigArgs'] cassandra_user_config: Cassandra user configurable settings
317
317
  :param pulumi.Input[str] cloud_name: Defines where the cloud provider and region where the service is hosted in. This can be changed freely after service is created. Changing the value will trigger a potentially lengthy migration process for the service. Format is cloud provider name (`aws`, `azure`, `do` `google`, `upcloud`, etc.), dash, and the cloud provider specific region name. These are documented on each Cloud provider's own support articles, like [here for Google](https://cloud.google.com/compute/docs/regions-zones/) and [here for AWS](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.RegionsAndAvailabilityZones.html).
318
318
  :param pulumi.Input[Sequence[pulumi.Input['CassandraComponentArgs']]] components: Service component information objects
@@ -323,7 +323,7 @@ class _CassandraState:
323
323
  :param pulumi.Input[str] disk_space_used: Disk space that service is currently using
324
324
  :param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
325
325
  :param pulumi.Input[str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
326
- :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).
326
+ :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).
327
327
  :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.
328
328
  :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.
329
329
  :param pulumi.Input[str] service_host: The hostname of the service.
@@ -416,7 +416,7 @@ class _CassandraState:
416
416
  @pulumi.getter
417
417
  def cassandra(self) -> Optional[pulumi.Input['CassandraCassandraArgs']]:
418
418
  """
419
- Cassandra server provided values
419
+ Values provided by the Cassandra server.
420
420
  """
421
421
  return pulumi.get(self, "cassandra")
422
422
 
@@ -549,7 +549,7 @@ class _CassandraState:
549
549
  @pulumi.getter
550
550
  def plan(self) -> Optional[pulumi.Input[str]]:
551
551
  """
552
- 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).
552
+ 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).
553
553
  """
554
554
  return pulumi.get(self, "plan")
555
555
 
@@ -761,7 +761,7 @@ class Cassandra(pulumi.CustomResource):
761
761
  termination_protection: Optional[pulumi.Input[bool]] = None,
762
762
  __props__=None):
763
763
  """
764
- The Cassandra resource allows the creation and management of Aiven Cassandra services.
764
+ Creates and manages an [Aiven for Apache Cassandra®](https://aiven.io/docs/products/cassandra) service.
765
765
 
766
766
  ## Example Usage
767
767
 
@@ -769,11 +769,11 @@ class Cassandra(pulumi.CustomResource):
769
769
  import pulumi
770
770
  import pulumi_aiven as aiven
771
771
 
772
- bar = aiven.Cassandra("bar",
773
- project=foo["project"],
772
+ example_cassandra = aiven.Cassandra("example_cassandra",
773
+ project=example_project["project"],
774
774
  cloud_name="google-europe-west1",
775
775
  plan="startup-4",
776
- service_name="test-service-name",
776
+ service_name="example-cassandra-service",
777
777
  maintenance_window_dow="monday",
778
778
  maintenance_window_time="10:00:00",
779
779
  cassandra_user_config={
@@ -787,19 +787,19 @@ class Cassandra(pulumi.CustomResource):
787
787
  ## Import
788
788
 
789
789
  ```sh
790
- $ pulumi import aiven:index/cassandra:Cassandra bar PROJECT/SERVICE_NAME
790
+ $ pulumi import aiven:index/cassandra:Cassandra example_cassandra PROJECT/SERVICE_NAME
791
791
  ```
792
792
 
793
793
  :param str resource_name: The name of the resource.
794
794
  :param pulumi.ResourceOptions opts: Options for the resource.
795
795
  :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.
796
- :param pulumi.Input[Union['CassandraCassandraArgs', 'CassandraCassandraArgsDict']] cassandra: Cassandra server provided values
796
+ :param pulumi.Input[Union['CassandraCassandraArgs', 'CassandraCassandraArgsDict']] cassandra: Values provided by the Cassandra server.
797
797
  :param pulumi.Input[Union['CassandraCassandraUserConfigArgs', 'CassandraCassandraUserConfigArgsDict']] cassandra_user_config: Cassandra user configurable settings
798
798
  :param pulumi.Input[str] cloud_name: Defines where the cloud provider and region where the service is hosted in. This can be changed freely after service is created. Changing the value will trigger a potentially lengthy migration process for the service. Format is cloud provider name (`aws`, `azure`, `do` `google`, `upcloud`, etc.), dash, and the cloud provider specific region name. These are documented on each Cloud provider's own support articles, like [here for Google](https://cloud.google.com/compute/docs/regions-zones/) and [here for AWS](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.RegionsAndAvailabilityZones.html).
799
799
  :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.
800
800
  :param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
801
801
  :param pulumi.Input[str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
802
- :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).
802
+ :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).
803
803
  :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.
804
804
  :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.
805
805
  :param pulumi.Input[Sequence[pulumi.Input[Union['CassandraServiceIntegrationArgs', 'CassandraServiceIntegrationArgsDict']]]] service_integrations: Service integrations to specify when creating a service. Not applied after initial service creation
@@ -816,7 +816,7 @@ class Cassandra(pulumi.CustomResource):
816
816
  args: CassandraArgs,
817
817
  opts: Optional[pulumi.ResourceOptions] = None):
818
818
  """
819
- The Cassandra resource allows the creation and management of Aiven Cassandra services.
819
+ Creates and manages an [Aiven for Apache Cassandra®](https://aiven.io/docs/products/cassandra) service.
820
820
 
821
821
  ## Example Usage
822
822
 
@@ -824,11 +824,11 @@ class Cassandra(pulumi.CustomResource):
824
824
  import pulumi
825
825
  import pulumi_aiven as aiven
826
826
 
827
- bar = aiven.Cassandra("bar",
828
- project=foo["project"],
827
+ example_cassandra = aiven.Cassandra("example_cassandra",
828
+ project=example_project["project"],
829
829
  cloud_name="google-europe-west1",
830
830
  plan="startup-4",
831
- service_name="test-service-name",
831
+ service_name="example-cassandra-service",
832
832
  maintenance_window_dow="monday",
833
833
  maintenance_window_time="10:00:00",
834
834
  cassandra_user_config={
@@ -842,7 +842,7 @@ class Cassandra(pulumi.CustomResource):
842
842
  ## Import
843
843
 
844
844
  ```sh
845
- $ pulumi import aiven:index/cassandra:Cassandra bar PROJECT/SERVICE_NAME
845
+ $ pulumi import aiven:index/cassandra:Cassandra example_cassandra PROJECT/SERVICE_NAME
846
846
  ```
847
847
 
848
848
  :param str resource_name: The name of the resource.
@@ -967,7 +967,7 @@ class Cassandra(pulumi.CustomResource):
967
967
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
968
968
  :param pulumi.ResourceOptions opts: Options for the resource.
969
969
  :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.
970
- :param pulumi.Input[Union['CassandraCassandraArgs', 'CassandraCassandraArgsDict']] cassandra: Cassandra server provided values
970
+ :param pulumi.Input[Union['CassandraCassandraArgs', 'CassandraCassandraArgsDict']] cassandra: Values provided by the Cassandra server.
971
971
  :param pulumi.Input[Union['CassandraCassandraUserConfigArgs', 'CassandraCassandraUserConfigArgsDict']] cassandra_user_config: Cassandra user configurable settings
972
972
  :param pulumi.Input[str] cloud_name: Defines where the cloud provider and region where the service is hosted in. This can be changed freely after service is created. Changing the value will trigger a potentially lengthy migration process for the service. Format is cloud provider name (`aws`, `azure`, `do` `google`, `upcloud`, etc.), dash, and the cloud provider specific region name. These are documented on each Cloud provider's own support articles, like [here for Google](https://cloud.google.com/compute/docs/regions-zones/) and [here for AWS](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.RegionsAndAvailabilityZones.html).
973
973
  :param pulumi.Input[Sequence[pulumi.Input[Union['CassandraComponentArgs', 'CassandraComponentArgsDict']]]] components: Service component information objects
@@ -978,7 +978,7 @@ class Cassandra(pulumi.CustomResource):
978
978
  :param pulumi.Input[str] disk_space_used: Disk space that service is currently using
979
979
  :param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
980
980
  :param pulumi.Input[str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
981
- :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).
981
+ :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).
982
982
  :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.
983
983
  :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.
984
984
  :param pulumi.Input[str] service_host: The hostname of the service.
@@ -1041,7 +1041,7 @@ class Cassandra(pulumi.CustomResource):
1041
1041
  @pulumi.getter
1042
1042
  def cassandra(self) -> pulumi.Output['outputs.CassandraCassandra']:
1043
1043
  """
1044
- Cassandra server provided values
1044
+ Values provided by the Cassandra server.
1045
1045
  """
1046
1046
  return pulumi.get(self, "cassandra")
1047
1047
 
@@ -1130,7 +1130,7 @@ class Cassandra(pulumi.CustomResource):
1130
1130
  @pulumi.getter
1131
1131
  def plan(self) -> pulumi.Output[str]:
1132
1132
  """
1133
- 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).
1133
+ 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).
1134
1134
  """
1135
1135
  return pulumi.get(self, "plan")
1136
1136
 
@@ -22,8 +22,8 @@ class CassandraUserArgs:
22
22
  The set of arguments for constructing a CassandraUser resource.
23
23
  :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.
24
24
  :param pulumi.Input[str] service_name: The name of the service that 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.
25
- :param pulumi.Input[str] username: The actual name of the Cassandra User. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
26
- :param pulumi.Input[str] password: The password of the Cassandra User.
25
+ :param pulumi.Input[str] username: Name of the Cassandra service user. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
26
+ :param pulumi.Input[str] password: The Cassandra service user's password.
27
27
  """
28
28
  pulumi.set(__self__, "project", project)
29
29
  pulumi.set(__self__, "service_name", service_name)
@@ -59,7 +59,7 @@ class CassandraUserArgs:
59
59
  @pulumi.getter
60
60
  def username(self) -> pulumi.Input[str]:
61
61
  """
62
- The actual name of the Cassandra User. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
62
+ Name of the Cassandra service user. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
63
63
  """
64
64
  return pulumi.get(self, "username")
65
65
 
@@ -71,7 +71,7 @@ class CassandraUserArgs:
71
71
  @pulumi.getter
72
72
  def password(self) -> Optional[pulumi.Input[str]]:
73
73
  """
74
- The password of the Cassandra User.
74
+ The Cassandra service user's password.
75
75
  """
76
76
  return pulumi.get(self, "password")
77
77
 
@@ -92,13 +92,13 @@ class _CassandraUserState:
92
92
  username: Optional[pulumi.Input[str]] = None):
93
93
  """
94
94
  Input properties used for looking up and filtering CassandraUser resources.
95
- :param pulumi.Input[str] access_cert: Access certificate for the user if applicable for the service in question
96
- :param pulumi.Input[str] access_key: Access certificate key for the user if applicable for the service in question
97
- :param pulumi.Input[str] password: The password of the Cassandra User.
95
+ :param pulumi.Input[str] access_cert: Access certificate for the user.
96
+ :param pulumi.Input[str] access_key: Access certificate key for the user.
97
+ :param pulumi.Input[str] password: The Cassandra service user's password.
98
98
  :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.
99
99
  :param pulumi.Input[str] service_name: The name of the service that 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.
100
- :param pulumi.Input[str] type: Type of the user account. Tells whether the user is the primary account or a regular account.
101
- :param pulumi.Input[str] username: The actual name of the Cassandra User. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
100
+ :param pulumi.Input[str] type: User account type, such as primary or regular account.
101
+ :param pulumi.Input[str] username: Name of the Cassandra service user. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
102
102
  """
103
103
  if access_cert is not None:
104
104
  pulumi.set(__self__, "access_cert", access_cert)
@@ -119,7 +119,7 @@ class _CassandraUserState:
119
119
  @pulumi.getter(name="accessCert")
120
120
  def access_cert(self) -> Optional[pulumi.Input[str]]:
121
121
  """
122
- Access certificate for the user if applicable for the service in question
122
+ Access certificate for the user.
123
123
  """
124
124
  return pulumi.get(self, "access_cert")
125
125
 
@@ -131,7 +131,7 @@ class _CassandraUserState:
131
131
  @pulumi.getter(name="accessKey")
132
132
  def access_key(self) -> Optional[pulumi.Input[str]]:
133
133
  """
134
- Access certificate key for the user if applicable for the service in question
134
+ Access certificate key for the user.
135
135
  """
136
136
  return pulumi.get(self, "access_key")
137
137
 
@@ -143,7 +143,7 @@ class _CassandraUserState:
143
143
  @pulumi.getter
144
144
  def password(self) -> Optional[pulumi.Input[str]]:
145
145
  """
146
- The password of the Cassandra User.
146
+ The Cassandra service user's password.
147
147
  """
148
148
  return pulumi.get(self, "password")
149
149
 
@@ -179,7 +179,7 @@ class _CassandraUserState:
179
179
  @pulumi.getter
180
180
  def type(self) -> Optional[pulumi.Input[str]]:
181
181
  """
182
- Type of the user account. Tells whether the user is the primary account or a regular account.
182
+ User account type, such as primary or regular account.
183
183
  """
184
184
  return pulumi.get(self, "type")
185
185
 
@@ -191,7 +191,7 @@ class _CassandraUserState:
191
191
  @pulumi.getter
192
192
  def username(self) -> Optional[pulumi.Input[str]]:
193
193
  """
194
- The actual name of the Cassandra User. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
194
+ Name of the Cassandra service user. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
195
195
  """
196
196
  return pulumi.get(self, "username")
197
197
 
@@ -211,7 +211,7 @@ class CassandraUser(pulumi.CustomResource):
211
211
  username: Optional[pulumi.Input[str]] = None,
212
212
  __props__=None):
213
213
  """
214
- The Cassandra User resource allows the creation and management of Aiven Cassandra Users.
214
+ Creates and manages an Aiven for Apache Cassandra® service user.
215
215
 
216
216
  ## Example Usage
217
217
 
@@ -219,25 +219,25 @@ class CassandraUser(pulumi.CustomResource):
219
219
  import pulumi
220
220
  import pulumi_aiven as aiven
221
221
 
222
- foo = aiven.CassandraUser("foo",
223
- service_name=bar["serviceName"],
224
- project="my-project",
225
- username="user-1",
226
- password="Test$1234")
222
+ example_service_user = aiven.CassandraUser("example_service_user",
223
+ service_name=example_cassandra["serviceName"],
224
+ project=example_project["project"],
225
+ username="example-cassandra-user",
226
+ password=service_user_pw)
227
227
  ```
228
228
 
229
229
  ## Import
230
230
 
231
231
  ```sh
232
- $ pulumi import aiven:index/cassandraUser:CassandraUser foo PROJECT/SERVICE_NAME/USERNAME
232
+ $ pulumi import aiven:index/cassandraUser:CassandraUser example_service_user PROJECT/SERVICE_NAME/USERNAME
233
233
  ```
234
234
 
235
235
  :param str resource_name: The name of the resource.
236
236
  :param pulumi.ResourceOptions opts: Options for the resource.
237
- :param pulumi.Input[str] password: The password of the Cassandra User.
237
+ :param pulumi.Input[str] password: The Cassandra service user's password.
238
238
  :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.
239
239
  :param pulumi.Input[str] service_name: The name of the service that 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.
240
- :param pulumi.Input[str] username: The actual name of the Cassandra User. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
240
+ :param pulumi.Input[str] username: Name of the Cassandra service user. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
241
241
  """
242
242
  ...
243
243
  @overload
@@ -246,7 +246,7 @@ class CassandraUser(pulumi.CustomResource):
246
246
  args: CassandraUserArgs,
247
247
  opts: Optional[pulumi.ResourceOptions] = None):
248
248
  """
249
- The Cassandra User resource allows the creation and management of Aiven Cassandra Users.
249
+ Creates and manages an Aiven for Apache Cassandra® service user.
250
250
 
251
251
  ## Example Usage
252
252
 
@@ -254,17 +254,17 @@ class CassandraUser(pulumi.CustomResource):
254
254
  import pulumi
255
255
  import pulumi_aiven as aiven
256
256
 
257
- foo = aiven.CassandraUser("foo",
258
- service_name=bar["serviceName"],
259
- project="my-project",
260
- username="user-1",
261
- password="Test$1234")
257
+ example_service_user = aiven.CassandraUser("example_service_user",
258
+ service_name=example_cassandra["serviceName"],
259
+ project=example_project["project"],
260
+ username="example-cassandra-user",
261
+ password=service_user_pw)
262
262
  ```
263
263
 
264
264
  ## Import
265
265
 
266
266
  ```sh
267
- $ pulumi import aiven:index/cassandraUser:CassandraUser foo PROJECT/SERVICE_NAME/USERNAME
267
+ $ pulumi import aiven:index/cassandraUser:CassandraUser example_service_user PROJECT/SERVICE_NAME/USERNAME
268
268
  ```
269
269
 
270
270
  :param str resource_name: The name of the resource.
@@ -334,13 +334,13 @@ class CassandraUser(pulumi.CustomResource):
334
334
  :param str resource_name: The unique name of the resulting resource.
335
335
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
336
336
  :param pulumi.ResourceOptions opts: Options for the resource.
337
- :param pulumi.Input[str] access_cert: Access certificate for the user if applicable for the service in question
338
- :param pulumi.Input[str] access_key: Access certificate key for the user if applicable for the service in question
339
- :param pulumi.Input[str] password: The password of the Cassandra User.
337
+ :param pulumi.Input[str] access_cert: Access certificate for the user.
338
+ :param pulumi.Input[str] access_key: Access certificate key for the user.
339
+ :param pulumi.Input[str] password: The Cassandra service user's password.
340
340
  :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.
341
341
  :param pulumi.Input[str] service_name: The name of the service that 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.
342
- :param pulumi.Input[str] type: Type of the user account. Tells whether the user is the primary account or a regular account.
343
- :param pulumi.Input[str] username: The actual name of the Cassandra User. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
342
+ :param pulumi.Input[str] type: User account type, such as primary or regular account.
343
+ :param pulumi.Input[str] username: Name of the Cassandra service user. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
344
344
  """
345
345
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
346
346
 
@@ -359,7 +359,7 @@ class CassandraUser(pulumi.CustomResource):
359
359
  @pulumi.getter(name="accessCert")
360
360
  def access_cert(self) -> pulumi.Output[str]:
361
361
  """
362
- Access certificate for the user if applicable for the service in question
362
+ Access certificate for the user.
363
363
  """
364
364
  return pulumi.get(self, "access_cert")
365
365
 
@@ -367,7 +367,7 @@ class CassandraUser(pulumi.CustomResource):
367
367
  @pulumi.getter(name="accessKey")
368
368
  def access_key(self) -> pulumi.Output[str]:
369
369
  """
370
- Access certificate key for the user if applicable for the service in question
370
+ Access certificate key for the user.
371
371
  """
372
372
  return pulumi.get(self, "access_key")
373
373
 
@@ -375,7 +375,7 @@ class CassandraUser(pulumi.CustomResource):
375
375
  @pulumi.getter
376
376
  def password(self) -> pulumi.Output[str]:
377
377
  """
378
- The password of the Cassandra User.
378
+ The Cassandra service user's password.
379
379
  """
380
380
  return pulumi.get(self, "password")
381
381
 
@@ -399,7 +399,7 @@ class CassandraUser(pulumi.CustomResource):
399
399
  @pulumi.getter
400
400
  def type(self) -> pulumi.Output[str]:
401
401
  """
402
- Type of the user account. Tells whether the user is the primary account or a regular account.
402
+ User account type, such as primary or regular account.
403
403
  """
404
404
  return pulumi.get(self, "type")
405
405
 
@@ -407,7 +407,7 @@ class CassandraUser(pulumi.CustomResource):
407
407
  @pulumi.getter
408
408
  def username(self) -> pulumi.Output[str]:
409
409
  """
410
- The actual name of the Cassandra User. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
410
+ Name of the Cassandra service user. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
411
411
  """
412
412
  return pulumi.get(self, "username")
413
413
 
@@ -34,7 +34,7 @@ class ClickhouseArgs:
34
34
  termination_protection: Optional[pulumi.Input[bool]] = None):
35
35
  """
36
36
  The set of arguments for constructing a Clickhouse 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 ClickhouseArgs:
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
 
@@ -323,7 +323,7 @@ class _ClickhouseState:
323
323
  :param pulumi.Input[str] disk_space_used: Disk space that service is currently using
324
324
  :param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
325
325
  :param pulumi.Input[str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
326
- :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).
326
+ :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).
327
327
  :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.
328
328
  :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.
329
329
  :param pulumi.Input[str] service_host: The hostname of the service.
@@ -549,7 +549,7 @@ class _ClickhouseState:
549
549
  @pulumi.getter
550
550
  def plan(self) -> Optional[pulumi.Input[str]]:
551
551
  """
552
- 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).
552
+ 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).
553
553
  """
554
554
  return pulumi.get(self, "plan")
555
555
 
@@ -793,7 +793,7 @@ class Clickhouse(pulumi.CustomResource):
793
793
  :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.
794
794
  :param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
795
795
  :param pulumi.Input[str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
796
- :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).
796
+ :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).
797
797
  :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.
798
798
  :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.
799
799
  :param pulumi.Input[Sequence[pulumi.Input[Union['ClickhouseServiceIntegrationArgs', 'ClickhouseServiceIntegrationArgsDict']]]] service_integrations: Integrations with other services. Service integrations are only applied at service creation.
@@ -966,7 +966,7 @@ class Clickhouse(pulumi.CustomResource):
966
966
  :param pulumi.Input[str] disk_space_used: Disk space that service is currently using
967
967
  :param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
968
968
  :param pulumi.Input[str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
969
- :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).
969
+ :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).
970
970
  :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.
971
971
  :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.
972
972
  :param pulumi.Input[str] service_host: The hostname of the service.
@@ -1118,7 +1118,7 @@ class Clickhouse(pulumi.CustomResource):
1118
1118
  @pulumi.getter
1119
1119
  def plan(self) -> pulumi.Output[str]:
1120
1120
  """
1121
- 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).
1121
+ 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).
1122
1122
  """
1123
1123
  return pulumi.get(self, "plan")
1124
1124