pulumi-aiven 6.22.0a1724217730__py3-none-any.whl → 6.23.0__py3-none-any.whl

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

Potentially problematic release.


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

Files changed (55) hide show
  1. pulumi_aiven/_inputs.py +721 -67
  2. pulumi_aiven/account_team_project.py +7 -7
  3. pulumi_aiven/cassandra.py +7 -7
  4. pulumi_aiven/clickhouse.py +7 -7
  5. pulumi_aiven/dragonfly.py +7 -7
  6. pulumi_aiven/flink.py +7 -7
  7. pulumi_aiven/get_account_team_project.py +1 -1
  8. pulumi_aiven/get_cassanda.py +1 -1
  9. pulumi_aiven/get_cassandra.py +1 -1
  10. pulumi_aiven/get_clickhouse.py +1 -1
  11. pulumi_aiven/get_dragonfly.py +1 -1
  12. pulumi_aiven/get_flink.py +1 -1
  13. pulumi_aiven/get_grafana.py +1 -1
  14. pulumi_aiven/get_kafka.py +1 -1
  15. pulumi_aiven/get_kafka_connect.py +1 -1
  16. pulumi_aiven/get_kafka_mirror_maker.py +1 -1
  17. pulumi_aiven/get_m3_aggregator.py +1 -1
  18. pulumi_aiven/get_m3_db.py +1 -1
  19. pulumi_aiven/get_my_sql.py +1 -1
  20. pulumi_aiven/get_mysql_user.py +1 -1
  21. pulumi_aiven/get_open_search.py +1 -1
  22. pulumi_aiven/get_pg.py +8 -8
  23. pulumi_aiven/get_pg_database.py +8 -8
  24. pulumi_aiven/get_pg_user.py +16 -16
  25. pulumi_aiven/get_project_user.py +1 -1
  26. pulumi_aiven/get_project_vpc.py +1 -1
  27. pulumi_aiven/get_redis.py +1 -1
  28. pulumi_aiven/get_service_integration.py +3 -3
  29. pulumi_aiven/get_thanos.py +1 -1
  30. pulumi_aiven/get_valkey.py +1 -1
  31. pulumi_aiven/grafana.py +7 -7
  32. pulumi_aiven/influx_db.py +21 -14
  33. pulumi_aiven/kafka.py +7 -7
  34. pulumi_aiven/kafka_connect.py +7 -7
  35. pulumi_aiven/kafka_mirror_maker.py +7 -7
  36. pulumi_aiven/m3_aggregator.py +7 -7
  37. pulumi_aiven/m3_db.py +7 -7
  38. pulumi_aiven/my_sql.py +7 -7
  39. pulumi_aiven/mysql_user.py +7 -7
  40. pulumi_aiven/open_search.py +7 -7
  41. pulumi_aiven/outputs.py +1252 -135
  42. pulumi_aiven/pg.py +18 -18
  43. pulumi_aiven/pg_database.py +12 -12
  44. pulumi_aiven/pg_user.py +47 -47
  45. pulumi_aiven/project_user.py +7 -7
  46. pulumi_aiven/project_vpc.py +4 -4
  47. pulumi_aiven/pulumi-plugin.json +1 -1
  48. pulumi_aiven/redis.py +7 -7
  49. pulumi_aiven/service_integration.py +7 -7
  50. pulumi_aiven/thanos.py +7 -7
  51. pulumi_aiven/valkey.py +7 -7
  52. {pulumi_aiven-6.22.0a1724217730.dist-info → pulumi_aiven-6.23.0.dist-info}/METADATA +1 -1
  53. {pulumi_aiven-6.22.0a1724217730.dist-info → pulumi_aiven-6.23.0.dist-info}/RECORD +55 -55
  54. {pulumi_aiven-6.22.0a1724217730.dist-info → pulumi_aiven-6.23.0.dist-info}/WHEEL +0 -0
  55. {pulumi_aiven-6.22.0a1724217730.dist-info → pulumi_aiven-6.23.0.dist-info}/top_level.txt +0 -0
@@ -23,7 +23,7 @@ class AccountTeamProjectArgs:
23
23
  :param pulumi.Input[str] account_id: The unique account id
24
24
  :param pulumi.Input[str] team_id: An account team id
25
25
  :param pulumi.Input[str] project_name: The name of an already existing project
26
- :param pulumi.Input[str] team_type: The Account team project type. The possible values are `admin`, `developer`, `operator` and `read_only`.
26
+ :param pulumi.Input[str] team_type: The Account team project type. The possible values are `admin`, `operator`, `developer` and `read_only`.
27
27
  """
28
28
  pulumi.set(__self__, "account_id", account_id)
29
29
  pulumi.set(__self__, "team_id", team_id)
@@ -72,7 +72,7 @@ class AccountTeamProjectArgs:
72
72
  @pulumi.getter(name="teamType")
73
73
  def team_type(self) -> Optional[pulumi.Input[str]]:
74
74
  """
75
- The Account team project type. The possible values are `admin`, `developer`, `operator` and `read_only`.
75
+ The Account team project type. The possible values are `admin`, `operator`, `developer` and `read_only`.
76
76
  """
77
77
  return pulumi.get(self, "team_type")
78
78
 
@@ -93,7 +93,7 @@ class _AccountTeamProjectState:
93
93
  :param pulumi.Input[str] account_id: The unique account id
94
94
  :param pulumi.Input[str] project_name: The name of an already existing project
95
95
  :param pulumi.Input[str] team_id: An account team id
96
- :param pulumi.Input[str] team_type: The Account team project type. The possible values are `admin`, `developer`, `operator` and `read_only`.
96
+ :param pulumi.Input[str] team_type: The Account team project type. The possible values are `admin`, `operator`, `developer` and `read_only`.
97
97
  """
98
98
  if account_id is not None:
99
99
  pulumi.set(__self__, "account_id", account_id)
@@ -144,7 +144,7 @@ class _AccountTeamProjectState:
144
144
  @pulumi.getter(name="teamType")
145
145
  def team_type(self) -> Optional[pulumi.Input[str]]:
146
146
  """
147
- The Account team project type. The possible values are `admin`, `developer`, `operator` and `read_only`.
147
+ The Account team project type. The possible values are `admin`, `operator`, `developer` and `read_only`.
148
148
  """
149
149
  return pulumi.get(self, "team_type")
150
150
 
@@ -205,7 +205,7 @@ class AccountTeamProject(pulumi.CustomResource):
205
205
  :param pulumi.Input[str] account_id: The unique account id
206
206
  :param pulumi.Input[str] project_name: The name of an already existing project
207
207
  :param pulumi.Input[str] team_id: An account team id
208
- :param pulumi.Input[str] team_type: The Account team project type. The possible values are `admin`, `developer`, `operator` and `read_only`.
208
+ :param pulumi.Input[str] team_type: The Account team project type. The possible values are `admin`, `operator`, `developer` and `read_only`.
209
209
  """
210
210
  ...
211
211
  @overload
@@ -310,7 +310,7 @@ class AccountTeamProject(pulumi.CustomResource):
310
310
  :param pulumi.Input[str] account_id: The unique account id
311
311
  :param pulumi.Input[str] project_name: The name of an already existing project
312
312
  :param pulumi.Input[str] team_id: An account team id
313
- :param pulumi.Input[str] team_type: The Account team project type. The possible values are `admin`, `developer`, `operator` and `read_only`.
313
+ :param pulumi.Input[str] team_type: The Account team project type. The possible values are `admin`, `operator`, `developer` and `read_only`.
314
314
  """
315
315
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
316
316
 
@@ -350,7 +350,7 @@ class AccountTeamProject(pulumi.CustomResource):
350
350
  @pulumi.getter(name="teamType")
351
351
  def team_type(self) -> pulumi.Output[Optional[str]]:
352
352
  """
353
- The Account team project type. The possible values are `admin`, `developer`, `operator` and `read_only`.
353
+ The Account team project type. The possible values are `admin`, `operator`, `developer` and `read_only`.
354
354
  """
355
355
  return pulumi.get(self, "team_type")
356
356
 
pulumi_aiven/cassandra.py CHANGED
@@ -37,7 +37,7 @@ class CassandraArgs:
37
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).
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
- :param pulumi.Input[str] additional_disk_space: Additional disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
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
41
  :param pulumi.Input['CassandraCassandraArgs'] cassandra: Cassandra server provided values
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).
@@ -124,7 +124,7 @@ class CassandraArgs:
124
124
  @pulumi.getter(name="additionalDiskSpace")
125
125
  def additional_disk_space(self) -> Optional[pulumi.Input[str]]:
126
126
  """
127
- Additional disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
127
+ 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.
128
128
  """
129
129
  return pulumi.get(self, "additional_disk_space")
130
130
 
@@ -311,7 +311,7 @@ class _CassandraState:
311
311
  termination_protection: Optional[pulumi.Input[bool]] = None):
312
312
  """
313
313
  Input properties used for looking up and filtering Cassandra resources.
314
- :param pulumi.Input[str] additional_disk_space: Additional disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
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
315
  :param pulumi.Input['CassandraCassandraArgs'] cassandra: Cassandra server provided values
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).
@@ -404,7 +404,7 @@ class _CassandraState:
404
404
  @pulumi.getter(name="additionalDiskSpace")
405
405
  def additional_disk_space(self) -> Optional[pulumi.Input[str]]:
406
406
  """
407
- Additional disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
407
+ 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.
408
408
  """
409
409
  return pulumi.get(self, "additional_disk_space")
410
410
 
@@ -792,7 +792,7 @@ class Cassandra(pulumi.CustomResource):
792
792
 
793
793
  :param str resource_name: The name of the resource.
794
794
  :param pulumi.ResourceOptions opts: Options for the resource.
795
- :param pulumi.Input[str] additional_disk_space: Additional disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
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
796
  :param pulumi.Input[Union['CassandraCassandraArgs', 'CassandraCassandraArgsDict']] cassandra: Cassandra server provided values
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).
@@ -966,7 +966,7 @@ class Cassandra(pulumi.CustomResource):
966
966
  :param str resource_name: The unique name of the resulting resource.
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
- :param pulumi.Input[str] additional_disk_space: Additional disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
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
970
  :param pulumi.Input[Union['CassandraCassandraArgs', 'CassandraCassandraArgsDict']] cassandra: Cassandra server provided values
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).
@@ -1033,7 +1033,7 @@ class Cassandra(pulumi.CustomResource):
1033
1033
  @pulumi.getter(name="additionalDiskSpace")
1034
1034
  def additional_disk_space(self) -> pulumi.Output[Optional[str]]:
1035
1035
  """
1036
- Additional disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
1036
+ 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.
1037
1037
  """
1038
1038
  return pulumi.get(self, "additional_disk_space")
1039
1039
 
@@ -37,7 +37,7 @@ class ClickhouseArgs:
37
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).
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
- :param pulumi.Input[str] additional_disk_space: Additional disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
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
41
  :param pulumi.Input['ClickhouseClickhouseArgs'] clickhouse: Values provided by the ClickHouse server.
42
42
  :param pulumi.Input['ClickhouseClickhouseUserConfigArgs'] clickhouse_user_config: Clickhouse 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).
@@ -124,7 +124,7 @@ class ClickhouseArgs:
124
124
  @pulumi.getter(name="additionalDiskSpace")
125
125
  def additional_disk_space(self) -> Optional[pulumi.Input[str]]:
126
126
  """
127
- Additional disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
127
+ 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.
128
128
  """
129
129
  return pulumi.get(self, "additional_disk_space")
130
130
 
@@ -311,7 +311,7 @@ class _ClickhouseState:
311
311
  termination_protection: Optional[pulumi.Input[bool]] = None):
312
312
  """
313
313
  Input properties used for looking up and filtering Clickhouse resources.
314
- :param pulumi.Input[str] additional_disk_space: Additional disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
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
315
  :param pulumi.Input['ClickhouseClickhouseArgs'] clickhouse: Values provided by the ClickHouse server.
316
316
  :param pulumi.Input['ClickhouseClickhouseUserConfigArgs'] clickhouse_user_config: Clickhouse 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).
@@ -404,7 +404,7 @@ class _ClickhouseState:
404
404
  @pulumi.getter(name="additionalDiskSpace")
405
405
  def additional_disk_space(self) -> Optional[pulumi.Input[str]]:
406
406
  """
407
- Additional disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
407
+ 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.
408
408
  """
409
409
  return pulumi.get(self, "additional_disk_space")
410
410
 
@@ -786,7 +786,7 @@ class Clickhouse(pulumi.CustomResource):
786
786
 
787
787
  :param str resource_name: The name of the resource.
788
788
  :param pulumi.ResourceOptions opts: Options for the resource.
789
- :param pulumi.Input[str] additional_disk_space: Additional disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
789
+ :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.
790
790
  :param pulumi.Input[Union['ClickhouseClickhouseArgs', 'ClickhouseClickhouseArgsDict']] clickhouse: Values provided by the ClickHouse server.
791
791
  :param pulumi.Input[Union['ClickhouseClickhouseUserConfigArgs', 'ClickhouseClickhouseUserConfigArgsDict']] clickhouse_user_config: Clickhouse user configurable settings
792
792
  :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).
@@ -954,7 +954,7 @@ class Clickhouse(pulumi.CustomResource):
954
954
  :param str resource_name: The unique name of the resulting resource.
955
955
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
956
956
  :param pulumi.ResourceOptions opts: Options for the resource.
957
- :param pulumi.Input[str] additional_disk_space: Additional disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
957
+ :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.
958
958
  :param pulumi.Input[Union['ClickhouseClickhouseArgs', 'ClickhouseClickhouseArgsDict']] clickhouse: Values provided by the ClickHouse server.
959
959
  :param pulumi.Input[Union['ClickhouseClickhouseUserConfigArgs', 'ClickhouseClickhouseUserConfigArgsDict']] clickhouse_user_config: Clickhouse user configurable settings
960
960
  :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).
@@ -1021,7 +1021,7 @@ class Clickhouse(pulumi.CustomResource):
1021
1021
  @pulumi.getter(name="additionalDiskSpace")
1022
1022
  def additional_disk_space(self) -> pulumi.Output[Optional[str]]:
1023
1023
  """
1024
- Additional disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
1024
+ 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.
1025
1025
  """
1026
1026
  return pulumi.get(self, "additional_disk_space")
1027
1027
 
pulumi_aiven/dragonfly.py CHANGED
@@ -37,7 +37,7 @@ class DragonflyArgs:
37
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).
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
- :param pulumi.Input[str] additional_disk_space: Additional disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
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
41
  :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).
42
42
  :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.
43
43
  :param pulumi.Input['DragonflyDragonflyArgs'] dragonfly: Dragonfly server provided values
@@ -124,7 +124,7 @@ class DragonflyArgs:
124
124
  @pulumi.getter(name="additionalDiskSpace")
125
125
  def additional_disk_space(self) -> Optional[pulumi.Input[str]]:
126
126
  """
127
- Additional disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
127
+ 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.
128
128
  """
129
129
  return pulumi.get(self, "additional_disk_space")
130
130
 
@@ -311,7 +311,7 @@ class _DragonflyState:
311
311
  termination_protection: Optional[pulumi.Input[bool]] = None):
312
312
  """
313
313
  Input properties used for looking up and filtering Dragonfly resources.
314
- :param pulumi.Input[str] additional_disk_space: Additional disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
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
315
  :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).
316
316
  :param pulumi.Input[Sequence[pulumi.Input['DragonflyComponentArgs']]] components: Service component information objects
317
317
  :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.
@@ -404,7 +404,7 @@ class _DragonflyState:
404
404
  @pulumi.getter(name="additionalDiskSpace")
405
405
  def additional_disk_space(self) -> Optional[pulumi.Input[str]]:
406
406
  """
407
- Additional disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
407
+ 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.
408
408
  """
409
409
  return pulumi.get(self, "additional_disk_space")
410
410
 
@@ -787,7 +787,7 @@ class Dragonfly(pulumi.CustomResource):
787
787
 
788
788
  :param str resource_name: The name of the resource.
789
789
  :param pulumi.ResourceOptions opts: Options for the resource.
790
- :param pulumi.Input[str] additional_disk_space: Additional disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
790
+ :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.
791
791
  :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).
792
792
  :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.
793
793
  :param pulumi.Input[Union['DragonflyDragonflyArgs', 'DragonflyDragonflyArgsDict']] dragonfly: Dragonfly server provided values
@@ -956,7 +956,7 @@ class Dragonfly(pulumi.CustomResource):
956
956
  :param str resource_name: The unique name of the resulting resource.
957
957
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
958
958
  :param pulumi.ResourceOptions opts: Options for the resource.
959
- :param pulumi.Input[str] additional_disk_space: Additional disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
959
+ :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.
960
960
  :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).
961
961
  :param pulumi.Input[Sequence[pulumi.Input[Union['DragonflyComponentArgs', 'DragonflyComponentArgsDict']]]] components: Service component information objects
962
962
  :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.
@@ -1023,7 +1023,7 @@ class Dragonfly(pulumi.CustomResource):
1023
1023
  @pulumi.getter(name="additionalDiskSpace")
1024
1024
  def additional_disk_space(self) -> pulumi.Output[Optional[str]]:
1025
1025
  """
1026
- Additional disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
1026
+ 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.
1027
1027
  """
1028
1028
  return pulumi.get(self, "additional_disk_space")
1029
1029
 
pulumi_aiven/flink.py CHANGED
@@ -37,7 +37,7 @@ class FlinkArgs:
37
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).
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
- :param pulumi.Input[str] additional_disk_space: Additional disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
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
41
  :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).
42
42
  :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.
43
43
  :param pulumi.Input['FlinkFlinkArgs'] flink: Values provided by the Flink server.
@@ -124,7 +124,7 @@ class FlinkArgs:
124
124
  @pulumi.getter(name="additionalDiskSpace")
125
125
  def additional_disk_space(self) -> Optional[pulumi.Input[str]]:
126
126
  """
127
- Additional disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
127
+ 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.
128
128
  """
129
129
  return pulumi.get(self, "additional_disk_space")
130
130
 
@@ -311,7 +311,7 @@ class _FlinkState:
311
311
  termination_protection: Optional[pulumi.Input[bool]] = None):
312
312
  """
313
313
  Input properties used for looking up and filtering Flink resources.
314
- :param pulumi.Input[str] additional_disk_space: Additional disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
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
315
  :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).
316
316
  :param pulumi.Input[Sequence[pulumi.Input['FlinkComponentArgs']]] components: Service component information objects
317
317
  :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.
@@ -404,7 +404,7 @@ class _FlinkState:
404
404
  @pulumi.getter(name="additionalDiskSpace")
405
405
  def additional_disk_space(self) -> Optional[pulumi.Input[str]]:
406
406
  """
407
- Additional disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
407
+ 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.
408
408
  """
409
409
  return pulumi.get(self, "additional_disk_space")
410
410
 
@@ -789,7 +789,7 @@ class Flink(pulumi.CustomResource):
789
789
 
790
790
  :param str resource_name: The name of the resource.
791
791
  :param pulumi.ResourceOptions opts: Options for the resource.
792
- :param pulumi.Input[str] additional_disk_space: Additional disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
792
+ :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.
793
793
  :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).
794
794
  :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.
795
795
  :param pulumi.Input[Union['FlinkFlinkArgs', 'FlinkFlinkArgsDict']] flink: Values provided by the Flink server.
@@ -960,7 +960,7 @@ class Flink(pulumi.CustomResource):
960
960
  :param str resource_name: The unique name of the resulting resource.
961
961
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
962
962
  :param pulumi.ResourceOptions opts: Options for the resource.
963
- :param pulumi.Input[str] additional_disk_space: Additional disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
963
+ :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.
964
964
  :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).
965
965
  :param pulumi.Input[Sequence[pulumi.Input[Union['FlinkComponentArgs', 'FlinkComponentArgsDict']]]] components: Service component information objects
966
966
  :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.
@@ -1027,7 +1027,7 @@ class Flink(pulumi.CustomResource):
1027
1027
  @pulumi.getter(name="additionalDiskSpace")
1028
1028
  def additional_disk_space(self) -> pulumi.Output[Optional[str]]:
1029
1029
  """
1030
- Additional disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
1030
+ 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.
1031
1031
  """
1032
1032
  return pulumi.get(self, "additional_disk_space")
1033
1033
 
@@ -74,7 +74,7 @@ class GetAccountTeamProjectResult:
74
74
  @pulumi.getter(name="teamType")
75
75
  def team_type(self) -> str:
76
76
  """
77
- The Account team project type. The possible values are `admin`, `developer`, `operator` and `read_only`.
77
+ The Account team project type. The possible values are `admin`, `operator`, `developer` and `read_only`.
78
78
  """
79
79
  return pulumi.get(self, "team_type")
80
80
 
@@ -117,7 +117,7 @@ class GetCassandaResult:
117
117
  @pulumi.getter(name="additionalDiskSpace")
118
118
  def additional_disk_space(self) -> str:
119
119
  """
120
- Additional disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
120
+ 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.
121
121
  """
122
122
  return pulumi.get(self, "additional_disk_space")
123
123
 
@@ -115,7 +115,7 @@ class GetCassandraResult:
115
115
  @pulumi.getter(name="additionalDiskSpace")
116
116
  def additional_disk_space(self) -> str:
117
117
  """
118
- Additional disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
118
+ 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.
119
119
  """
120
120
  return pulumi.get(self, "additional_disk_space")
121
121
 
@@ -115,7 +115,7 @@ class GetClickhouseResult:
115
115
  @pulumi.getter(name="additionalDiskSpace")
116
116
  def additional_disk_space(self) -> str:
117
117
  """
118
- Additional disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
118
+ 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.
119
119
  """
120
120
  return pulumi.get(self, "additional_disk_space")
121
121
 
@@ -115,7 +115,7 @@ class GetDragonflyResult:
115
115
  @pulumi.getter(name="additionalDiskSpace")
116
116
  def additional_disk_space(self) -> str:
117
117
  """
118
- Additional disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
118
+ 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.
119
119
  """
120
120
  return pulumi.get(self, "additional_disk_space")
121
121
 
pulumi_aiven/get_flink.py CHANGED
@@ -115,7 +115,7 @@ class GetFlinkResult:
115
115
  @pulumi.getter(name="additionalDiskSpace")
116
116
  def additional_disk_space(self) -> str:
117
117
  """
118
- Additional disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
118
+ 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.
119
119
  """
120
120
  return pulumi.get(self, "additional_disk_space")
121
121
 
@@ -115,7 +115,7 @@ class GetGrafanaResult:
115
115
  @pulumi.getter(name="additionalDiskSpace")
116
116
  def additional_disk_space(self) -> str:
117
117
  """
118
- Additional disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
118
+ 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.
119
119
  """
120
120
  return pulumi.get(self, "additional_disk_space")
121
121
 
pulumi_aiven/get_kafka.py CHANGED
@@ -121,7 +121,7 @@ class GetKafkaResult:
121
121
  @pulumi.getter(name="additionalDiskSpace")
122
122
  def additional_disk_space(self) -> str:
123
123
  """
124
- Additional disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
124
+ 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.
125
125
  """
126
126
  return pulumi.get(self, "additional_disk_space")
127
127
 
@@ -112,7 +112,7 @@ class GetKafkaConnectResult:
112
112
  @pulumi.getter(name="additionalDiskSpace")
113
113
  def additional_disk_space(self) -> str:
114
114
  """
115
- Additional disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
115
+ 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.
116
116
  """
117
117
  return pulumi.get(self, "additional_disk_space")
118
118
 
@@ -112,7 +112,7 @@ class GetKafkaMirrorMakerResult:
112
112
  @pulumi.getter(name="additionalDiskSpace")
113
113
  def additional_disk_space(self) -> str:
114
114
  """
115
- Additional disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
115
+ 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.
116
116
  """
117
117
  return pulumi.get(self, "additional_disk_space")
118
118
 
@@ -115,7 +115,7 @@ class GetM3AggregatorResult:
115
115
  @pulumi.getter(name="additionalDiskSpace")
116
116
  def additional_disk_space(self) -> str:
117
117
  """
118
- Additional disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
118
+ 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.
119
119
  """
120
120
  return pulumi.get(self, "additional_disk_space")
121
121
 
pulumi_aiven/get_m3_db.py CHANGED
@@ -115,7 +115,7 @@ class GetM3DbResult:
115
115
  @pulumi.getter(name="additionalDiskSpace")
116
116
  def additional_disk_space(self) -> str:
117
117
  """
118
- Additional disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
118
+ 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.
119
119
  """
120
120
  return pulumi.get(self, "additional_disk_space")
121
121
 
@@ -115,7 +115,7 @@ class GetMySqlResult:
115
115
  @pulumi.getter(name="additionalDiskSpace")
116
116
  def additional_disk_space(self) -> str:
117
117
  """
118
- Additional disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
118
+ 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.
119
119
  """
120
120
  return pulumi.get(self, "additional_disk_space")
121
121
 
@@ -70,7 +70,7 @@ class GetMysqlUserResult:
70
70
  @pulumi.getter
71
71
  def authentication(self) -> str:
72
72
  """
73
- Authentication details. The possible values are `caching_sha2_password` and `mysql_native_password`.
73
+ Authentication details. The possible values are `null`, `caching_sha2_password` and `mysql_native_password`.
74
74
  """
75
75
  return pulumi.get(self, "authentication")
76
76
 
@@ -115,7 +115,7 @@ class GetOpenSearchResult:
115
115
  @pulumi.getter(name="additionalDiskSpace")
116
116
  def additional_disk_space(self) -> str:
117
117
  """
118
- Additional disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
118
+ 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.
119
119
  """
120
120
  return pulumi.get(self, "additional_disk_space")
121
121