pulumi-aiven 6.43.0a1758777024__py3-none-any.whl → 6.44.0a1758949869__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 (68) hide show
  1. pulumi_aiven/_inputs.py +657 -183
  2. pulumi_aiven/account_team.py +6 -12
  3. pulumi_aiven/account_team_member.py +6 -12
  4. pulumi_aiven/account_team_project.py +6 -12
  5. pulumi_aiven/alloydbomni.py +44 -23
  6. pulumi_aiven/alloydbomni_database.py +26 -0
  7. pulumi_aiven/alloydbomni_user.py +26 -0
  8. pulumi_aiven/cassandra.py +18 -23
  9. pulumi_aiven/clickhouse.py +18 -23
  10. pulumi_aiven/dragonfly.py +18 -23
  11. pulumi_aiven/flink.py +18 -23
  12. pulumi_aiven/get_account_team.py +6 -12
  13. pulumi_aiven/get_account_team_member.py +6 -12
  14. pulumi_aiven/get_account_team_project.py +6 -12
  15. pulumi_aiven/get_alloydbomni.py +28 -2
  16. pulumi_aiven/get_alloydbomni_database.py +26 -0
  17. pulumi_aiven/get_alloydbomni_user.py +26 -0
  18. pulumi_aiven/get_cassanda.py +2 -2
  19. pulumi_aiven/get_cassandra.py +2 -2
  20. pulumi_aiven/get_clickhouse.py +2 -2
  21. pulumi_aiven/get_dragonfly.py +2 -2
  22. pulumi_aiven/get_flink.py +2 -2
  23. pulumi_aiven/get_grafana.py +2 -2
  24. pulumi_aiven/get_kafka.py +2 -2
  25. pulumi_aiven/get_kafka_connect.py +2 -2
  26. pulumi_aiven/get_kafka_mirror_maker.py +2 -2
  27. pulumi_aiven/get_m3_aggregator.py +2 -111
  28. pulumi_aiven/get_m3_db.py +2 -123
  29. pulumi_aiven/get_m3db_user.py +2 -61
  30. pulumi_aiven/get_my_sql.py +2 -2
  31. pulumi_aiven/get_open_search.py +2 -2
  32. pulumi_aiven/get_organization_application_user.py +29 -11
  33. pulumi_aiven/get_organization_project.py +0 -6
  34. pulumi_aiven/get_pg.py +2 -2
  35. pulumi_aiven/get_redis.py +2 -2
  36. pulumi_aiven/get_redis_user.py +3 -3
  37. pulumi_aiven/get_thanos.py +2 -2
  38. pulumi_aiven/get_valkey.py +2 -2
  39. pulumi_aiven/get_valkey_user.py +3 -3
  40. pulumi_aiven/grafana.py +18 -23
  41. pulumi_aiven/influx_db.py +18 -23
  42. pulumi_aiven/kafka.py +18 -23
  43. pulumi_aiven/kafka_connect.py +18 -23
  44. pulumi_aiven/kafka_mirror_maker.py +18 -23
  45. pulumi_aiven/m3_aggregator.py +20 -75
  46. pulumi_aiven/m3_db.py +20 -95
  47. pulumi_aiven/m3db_user.py +2 -54
  48. pulumi_aiven/my_sql.py +18 -23
  49. pulumi_aiven/open_search.py +18 -23
  50. pulumi_aiven/organization_application_user.py +69 -41
  51. pulumi_aiven/organization_application_user_token.py +127 -91
  52. pulumi_aiven/organization_billing_group.py +7 -7
  53. pulumi_aiven/organization_permission.py +80 -47
  54. pulumi_aiven/organization_project.py +0 -6
  55. pulumi_aiven/organization_user.py +8 -8
  56. pulumi_aiven/outputs.py +616 -234
  57. pulumi_aiven/pg.py +18 -23
  58. pulumi_aiven/project.py +2 -24
  59. pulumi_aiven/pulumi-plugin.json +1 -1
  60. pulumi_aiven/redis.py +18 -23
  61. pulumi_aiven/redis_user.py +21 -21
  62. pulumi_aiven/thanos.py +18 -23
  63. pulumi_aiven/valkey.py +18 -23
  64. pulumi_aiven/valkey_user.py +21 -21
  65. {pulumi_aiven-6.43.0a1758777024.dist-info → pulumi_aiven-6.44.0a1758949869.dist-info}/METADATA +1 -1
  66. {pulumi_aiven-6.43.0a1758777024.dist-info → pulumi_aiven-6.44.0a1758949869.dist-info}/RECORD +68 -68
  67. {pulumi_aiven-6.43.0a1758777024.dist-info → pulumi_aiven-6.44.0a1758949869.dist-info}/WHEEL +0 -0
  68. {pulumi_aiven-6.43.0a1758777024.dist-info → pulumi_aiven-6.44.0a1758949869.dist-info}/top_level.txt +0 -0
@@ -155,12 +155,9 @@ class AccountTeam(pulumi.CustomResource):
155
155
  """
156
156
  Creates and manages a team.
157
157
 
158
- !> **Teams have been deprecated and are being migrated to groups**
159
- **On 30 September 2024** the Account Owners team will transition to super admin. Super admin have full access to the organization.
160
- The Account Owners and super admin are synced, so the removal of the Account Owners team will have no impact on existing permissions.
161
- **From 4 November 2024** you won't be able to create new teams or update existing ones. Existing teams will be migrated to groups after
162
- this date. **On 2 December 2024** all teams will be deleted and the teams feature will be completely removed. View the
163
- migration guide for more information on the changes and migrating to groups.
158
+ !> **Teams have been replaced by groups**
159
+ To make the transition to groups smoother,
160
+ migrate your teams to groups.
164
161
 
165
162
  > **Important**
166
163
  You can't delete the Account Owners team. **Deleting all other teams in your organization will disable the teams feature.**
@@ -197,12 +194,9 @@ class AccountTeam(pulumi.CustomResource):
197
194
  """
198
195
  Creates and manages a team.
199
196
 
200
- !> **Teams have been deprecated and are being migrated to groups**
201
- **On 30 September 2024** the Account Owners team will transition to super admin. Super admin have full access to the organization.
202
- The Account Owners and super admin are synced, so the removal of the Account Owners team will have no impact on existing permissions.
203
- **From 4 November 2024** you won't be able to create new teams or update existing ones. Existing teams will be migrated to groups after
204
- this date. **On 2 December 2024** all teams will be deleted and the teams feature will be completely removed. View the
205
- migration guide for more information on the changes and migrating to groups.
197
+ !> **Teams have been replaced by groups**
198
+ To make the transition to groups smoother,
199
+ migrate your teams to groups.
206
200
 
207
201
  > **Important**
208
202
  You can't delete the Account Owners team. **Deleting all other teams in your organization will disable the teams feature.**
@@ -190,12 +190,9 @@ class AccountTeamMember(pulumi.CustomResource):
190
190
  The user is added to the team after they accept the invite. Deleting `AccountTeamMember`
191
191
  deletes the pending invite if not accepted or removes the user from the team if they already accepted the invite.
192
192
 
193
- !> **Teams have been deprecated and are being migrated to groups**
194
- **On 30 September 2024** the Account Owners team will transition to super admin. Super admin have full access to the organization.
195
- The Account Owners and super admin are synced, so the removal of the Account Owners team will have no impact on existing permissions.
196
- **From 4 November 2024** you won't be able to create new teams or update existing ones. Existing teams will be migrated to groups after
197
- this date. **On 2 December 2024** all teams will be deleted and the teams feature will be completely removed. View the
198
- migration guide for more information on the changes and migrating to groups.
193
+ !> **Teams have been replaced by groups**
194
+ To make the transition to groups smoother,
195
+ migrate your teams to groups.
199
196
 
200
197
  > **Important**
201
198
  You can't delete the Account Owners team. **Deleting all other teams in your organization will disable the teams feature.**
@@ -238,12 +235,9 @@ class AccountTeamMember(pulumi.CustomResource):
238
235
  The user is added to the team after they accept the invite. Deleting `AccountTeamMember`
239
236
  deletes the pending invite if not accepted or removes the user from the team if they already accepted the invite.
240
237
 
241
- !> **Teams have been deprecated and are being migrated to groups**
242
- **On 30 September 2024** the Account Owners team will transition to super admin. Super admin have full access to the organization.
243
- The Account Owners and super admin are synced, so the removal of the Account Owners team will have no impact on existing permissions.
244
- **From 4 November 2024** you won't be able to create new teams or update existing ones. Existing teams will be migrated to groups after
245
- this date. **On 2 December 2024** all teams will be deleted and the teams feature will be completely removed. View the
246
- migration guide for more information on the changes and migrating to groups.
238
+ !> **Teams have been replaced by groups**
239
+ To make the transition to groups smoother,
240
+ migrate your teams to groups.
247
241
 
248
242
  > **Important**
249
243
  You can't delete the Account Owners team. **Deleting all other teams in your organization will disable the teams feature.**
@@ -172,12 +172,9 @@ class AccountTeamProject(pulumi.CustomResource):
172
172
  """
173
173
  Links an existing project to an existing team. Both the project and team should have the same `account_id`.
174
174
 
175
- !> **Teams have been deprecated and are being migrated to groups**
176
- **On 30 September 2024** the Account Owners team will transition to super admin. Super admin have full access to the organization.
177
- The Account Owners and super admin are synced, so the removal of the Account Owners team will have no impact on existing permissions.
178
- **From 4 November 2024** you won't be able to create new teams or update existing ones. Existing teams will be migrated to groups after
179
- this date. **On 2 December 2024** all teams will be deleted and the teams feature will be completely removed. View the
180
- migration guide for more information on the changes and migrating to groups.
175
+ !> **Teams have been replaced by groups**
176
+ To make the transition to groups smoother,
177
+ migrate your teams to groups.
181
178
 
182
179
  > **Important**
183
180
  You can't delete the Account Owners team. **Deleting all other teams in your organization will disable the teams feature.**
@@ -224,12 +221,9 @@ class AccountTeamProject(pulumi.CustomResource):
224
221
  """
225
222
  Links an existing project to an existing team. Both the project and team should have the same `account_id`.
226
223
 
227
- !> **Teams have been deprecated and are being migrated to groups**
228
- **On 30 September 2024** the Account Owners team will transition to super admin. Super admin have full access to the organization.
229
- The Account Owners and super admin are synced, so the removal of the Account Owners team will have no impact on existing permissions.
230
- **From 4 November 2024** you won't be able to create new teams or update existing ones. Existing teams will be migrated to groups after
231
- this date. **On 2 December 2024** all teams will be deleted and the teams feature will be completely removed. View the
232
- migration guide for more information on the changes and migrating to groups.
224
+ !> **Teams have been replaced by groups**
225
+ To make the transition to groups smoother,
226
+ migrate your teams to groups.
233
227
 
234
228
  > **Important**
235
229
  You can't delete the Account Owners team. **Deleting all other teams in your organization will disable the teams feature.**
@@ -47,7 +47,7 @@ class AlloydbomniArgs:
47
47
  :param pulumi.Input['AlloydbomniAlloydbomniArgs'] alloydbomni: Values provided by the AlloyDB Omni server.
48
48
  :param pulumi.Input['AlloydbomniAlloydbomniUserConfigArgs'] alloydbomni_user_config: Alloydbomni user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
49
49
  :param pulumi.Input[_builtins.str] cloud_name: The cloud provider and region the service is hosted in. The format is `provider-region`, for example: `google-europe-west1`. The [available cloud regions](https://aiven.io/docs/platform/reference/list_of_clouds) can differ per project and service. Changing this value [migrates the service to another cloud provider or region](https://aiven.io/docs/platform/howto/migrate-services-cloud-region). The migration runs in the background and includes a DNS update to redirect traffic to the new region. Most services experience no downtime, but some databases may have a brief interruption during DNS propagation.
50
- :param pulumi.Input[_builtins.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.
50
+ :param pulumi.Input[_builtins.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. Please use `additional_disk_space` to specify the space to be added to the default disk space defined by the plan.
51
51
  :param pulumi.Input[_builtins.str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
52
52
  :param pulumi.Input[_builtins.str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
53
53
  :param pulumi.Input[_builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. 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. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
@@ -70,8 +70,8 @@ class AlloydbomniArgs:
70
70
  if cloud_name is not None:
71
71
  pulumi.set(__self__, "cloud_name", cloud_name)
72
72
  if disk_space is not None:
73
- warnings.warn("""This will be removed in v5.0.0. Please use `additional_disk_space` to specify the space to be added to the default `disk_space` defined by the plan.""", DeprecationWarning)
74
- pulumi.log.warn("""disk_space is deprecated: This will be removed in v5.0.0. Please use `additional_disk_space` to specify the space to be added to the default `disk_space` defined by the plan.""")
73
+ warnings.warn("""Please use `additional_disk_space` to specify the space to be added to the default disk space defined by the plan.""", DeprecationWarning)
74
+ pulumi.log.warn("""disk_space is deprecated: Please use `additional_disk_space` to specify the space to be added to the default disk space defined by the plan.""")
75
75
  if disk_space is not None:
76
76
  pulumi.set(__self__, "disk_space", disk_space)
77
77
  if maintenance_window_dow is not None:
@@ -179,10 +179,10 @@ class AlloydbomniArgs:
179
179
 
180
180
  @_builtins.property
181
181
  @pulumi.getter(name="diskSpace")
182
- @_utilities.deprecated("""This will be removed in v5.0.0. Please use `additional_disk_space` to specify the space to be added to the default `disk_space` defined by the plan.""")
182
+ @_utilities.deprecated("""Please use `additional_disk_space` to specify the space to be added to the default disk space defined by the plan.""")
183
183
  def disk_space(self) -> Optional[pulumi.Input[_builtins.str]]:
184
184
  """
185
- Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
185
+ Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing. Please use `additional_disk_space` to specify the space to be added to the default disk space defined by the plan.
186
186
  """
187
187
  return pulumi.get(self, "disk_space")
188
188
 
@@ -338,11 +338,11 @@ class _AlloydbomniState:
338
338
  :param pulumi.Input['AlloydbomniAlloydbomniUserConfigArgs'] alloydbomni_user_config: Alloydbomni user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
339
339
  :param pulumi.Input[_builtins.str] cloud_name: The cloud provider and region the service is hosted in. The format is `provider-region`, for example: `google-europe-west1`. The [available cloud regions](https://aiven.io/docs/platform/reference/list_of_clouds) can differ per project and service. Changing this value [migrates the service to another cloud provider or region](https://aiven.io/docs/platform/howto/migrate-services-cloud-region). The migration runs in the background and includes a DNS update to redirect traffic to the new region. Most services experience no downtime, but some databases may have a brief interruption during DNS propagation.
340
340
  :param pulumi.Input[Sequence[pulumi.Input['AlloydbomniComponentArgs']]] components: Service component information objects
341
- :param pulumi.Input[_builtins.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.
341
+ :param pulumi.Input[_builtins.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. Please use `additional_disk_space` to specify the space to be added to the default disk space defined by the plan.
342
342
  :param pulumi.Input[_builtins.str] disk_space_cap: The maximum disk space of the service, possible values depend on the service type, the cloud provider and the project.
343
343
  :param pulumi.Input[_builtins.str] disk_space_default: The default disk space of the service, possible values depend on the service type, the cloud provider and the project. Its also the minimum value for `disk_space`
344
344
  :param pulumi.Input[_builtins.str] disk_space_step: The default disk space step of the service, possible values depend on the service type, the cloud provider and the project. `disk_space` needs to increment from `disk_space_default` by increments of this size.
345
- :param pulumi.Input[_builtins.str] disk_space_used: Disk space that service is currently using
345
+ :param pulumi.Input[_builtins.str] disk_space_used: The disk space that the service is currently using. This is the sum of `disk_space` and `additional_disk_space` in human-readable format (for example: `90GiB`).
346
346
  :param pulumi.Input[_builtins.str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
347
347
  :param pulumi.Input[_builtins.str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
348
348
  :param pulumi.Input[_builtins.str] plan: Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seen from the [Aiven pricing page](https://aiven.io/pricing).
@@ -373,8 +373,8 @@ class _AlloydbomniState:
373
373
  if components is not None:
374
374
  pulumi.set(__self__, "components", components)
375
375
  if disk_space is not None:
376
- warnings.warn("""This will be removed in v5.0.0. Please use `additional_disk_space` to specify the space to be added to the default `disk_space` defined by the plan.""", DeprecationWarning)
377
- pulumi.log.warn("""disk_space is deprecated: This will be removed in v5.0.0. Please use `additional_disk_space` to specify the space to be added to the default `disk_space` defined by the plan.""")
376
+ warnings.warn("""Please use `additional_disk_space` to specify the space to be added to the default disk space defined by the plan.""", DeprecationWarning)
377
+ pulumi.log.warn("""disk_space is deprecated: Please use `additional_disk_space` to specify the space to be added to the default disk space defined by the plan.""")
378
378
  if disk_space is not None:
379
379
  pulumi.set(__self__, "disk_space", disk_space)
380
380
  if disk_space_cap is not None:
@@ -383,9 +383,6 @@ class _AlloydbomniState:
383
383
  pulumi.set(__self__, "disk_space_default", disk_space_default)
384
384
  if disk_space_step is not None:
385
385
  pulumi.set(__self__, "disk_space_step", disk_space_step)
386
- if disk_space_used is not None:
387
- warnings.warn("""This will be removed in v5.0.0. Please use `additional_disk_space` to specify the space to be added to the default `disk_space` defined by the plan.""", DeprecationWarning)
388
- pulumi.log.warn("""disk_space_used is deprecated: This will be removed in v5.0.0. Please use `additional_disk_space` to specify the space to be added to the default `disk_space` defined by the plan.""")
389
386
  if disk_space_used is not None:
390
387
  pulumi.set(__self__, "disk_space_used", disk_space_used)
391
388
  if maintenance_window_dow is not None:
@@ -489,10 +486,10 @@ class _AlloydbomniState:
489
486
 
490
487
  @_builtins.property
491
488
  @pulumi.getter(name="diskSpace")
492
- @_utilities.deprecated("""This will be removed in v5.0.0. Please use `additional_disk_space` to specify the space to be added to the default `disk_space` defined by the plan.""")
489
+ @_utilities.deprecated("""Please use `additional_disk_space` to specify the space to be added to the default disk space defined by the plan.""")
493
490
  def disk_space(self) -> Optional[pulumi.Input[_builtins.str]]:
494
491
  """
495
- Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
492
+ Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing. Please use `additional_disk_space` to specify the space to be added to the default disk space defined by the plan.
496
493
  """
497
494
  return pulumi.get(self, "disk_space")
498
495
 
@@ -538,10 +535,9 @@ class _AlloydbomniState:
538
535
 
539
536
  @_builtins.property
540
537
  @pulumi.getter(name="diskSpaceUsed")
541
- @_utilities.deprecated("""This will be removed in v5.0.0. Please use `additional_disk_space` to specify the space to be added to the default `disk_space` defined by the plan.""")
542
538
  def disk_space_used(self) -> Optional[pulumi.Input[_builtins.str]]:
543
539
  """
544
- Disk space that service is currently using
540
+ The disk space that the service is currently using. This is the sum of `disk_space` and `additional_disk_space` in human-readable format (for example: `90GiB`).
545
541
  """
546
542
  return pulumi.get(self, "disk_space_used")
547
543
 
@@ -805,6 +801,19 @@ class Alloydbomni(pulumi.CustomResource):
805
801
  **This resource is in the beta stage and may change without notice.** Set
806
802
  the `PROVIDER_AIVEN_ENABLE_BETA` environment variable to use the resource.
807
803
 
804
+ !> **End of life notice**
805
+ Aiven for AlloyDB Omni is entering its [end-of-life cycle](https://aiven.io/docs/platform/reference/end-of-life).
806
+ From **5 September 2025**, you can no longer create new Aiven for AlloyDB Omni services. Existing
807
+ services continue to operate until the end of life (EOL) date but you cannot change plans for these services.
808
+ On **5 December 2025**, all active Aiven for AlloyDB Omni services are powered off and deleted, making data from
809
+ these services inaccessible. The recommended alternatives to Aiven for AlloyDB Omni are:
810
+ Aiven for PostgreSQL®,
811
+ Aiven for ClickHouse®,
812
+ and Aiven for MySQL®.
813
+ To ensure uninterrupted service, complete your migration before December 5, 2025.
814
+ For further assistance, contact the Aiven support team or your
815
+ account team.
816
+
808
817
  ## Example Usage
809
818
 
810
819
  ```python
@@ -846,7 +855,7 @@ class Alloydbomni(pulumi.CustomResource):
846
855
  :param pulumi.Input[Union['AlloydbomniAlloydbomniArgs', 'AlloydbomniAlloydbomniArgsDict']] alloydbomni: Values provided by the AlloyDB Omni server.
847
856
  :param pulumi.Input[Union['AlloydbomniAlloydbomniUserConfigArgs', 'AlloydbomniAlloydbomniUserConfigArgsDict']] alloydbomni_user_config: Alloydbomni user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
848
857
  :param pulumi.Input[_builtins.str] cloud_name: The cloud provider and region the service is hosted in. The format is `provider-region`, for example: `google-europe-west1`. The [available cloud regions](https://aiven.io/docs/platform/reference/list_of_clouds) can differ per project and service. Changing this value [migrates the service to another cloud provider or region](https://aiven.io/docs/platform/howto/migrate-services-cloud-region). The migration runs in the background and includes a DNS update to redirect traffic to the new region. Most services experience no downtime, but some databases may have a brief interruption during DNS propagation.
849
- :param pulumi.Input[_builtins.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.
858
+ :param pulumi.Input[_builtins.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. Please use `additional_disk_space` to specify the space to be added to the default disk space defined by the plan.
850
859
  :param pulumi.Input[_builtins.str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
851
860
  :param pulumi.Input[_builtins.str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
852
861
  :param pulumi.Input[_builtins.str] plan: Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seen from the [Aiven pricing page](https://aiven.io/pricing).
@@ -872,6 +881,19 @@ class Alloydbomni(pulumi.CustomResource):
872
881
  **This resource is in the beta stage and may change without notice.** Set
873
882
  the `PROVIDER_AIVEN_ENABLE_BETA` environment variable to use the resource.
874
883
 
884
+ !> **End of life notice**
885
+ Aiven for AlloyDB Omni is entering its [end-of-life cycle](https://aiven.io/docs/platform/reference/end-of-life).
886
+ From **5 September 2025**, you can no longer create new Aiven for AlloyDB Omni services. Existing
887
+ services continue to operate until the end of life (EOL) date but you cannot change plans for these services.
888
+ On **5 December 2025**, all active Aiven for AlloyDB Omni services are powered off and deleted, making data from
889
+ these services inaccessible. The recommended alternatives to Aiven for AlloyDB Omni are:
890
+ Aiven for PostgreSQL®,
891
+ Aiven for ClickHouse®,
892
+ and Aiven for MySQL®.
893
+ To ensure uninterrupted service, complete your migration before December 5, 2025.
894
+ For further assistance, contact the Aiven support team or your
895
+ account team.
896
+
875
897
  ## Example Usage
876
898
 
877
899
  ```python
@@ -1036,11 +1058,11 @@ class Alloydbomni(pulumi.CustomResource):
1036
1058
  :param pulumi.Input[Union['AlloydbomniAlloydbomniUserConfigArgs', 'AlloydbomniAlloydbomniUserConfigArgsDict']] alloydbomni_user_config: Alloydbomni user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
1037
1059
  :param pulumi.Input[_builtins.str] cloud_name: The cloud provider and region the service is hosted in. The format is `provider-region`, for example: `google-europe-west1`. The [available cloud regions](https://aiven.io/docs/platform/reference/list_of_clouds) can differ per project and service. Changing this value [migrates the service to another cloud provider or region](https://aiven.io/docs/platform/howto/migrate-services-cloud-region). The migration runs in the background and includes a DNS update to redirect traffic to the new region. Most services experience no downtime, but some databases may have a brief interruption during DNS propagation.
1038
1060
  :param pulumi.Input[Sequence[pulumi.Input[Union['AlloydbomniComponentArgs', 'AlloydbomniComponentArgsDict']]]] components: Service component information objects
1039
- :param pulumi.Input[_builtins.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.
1061
+ :param pulumi.Input[_builtins.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. Please use `additional_disk_space` to specify the space to be added to the default disk space defined by the plan.
1040
1062
  :param pulumi.Input[_builtins.str] disk_space_cap: The maximum disk space of the service, possible values depend on the service type, the cloud provider and the project.
1041
1063
  :param pulumi.Input[_builtins.str] disk_space_default: The default disk space of the service, possible values depend on the service type, the cloud provider and the project. Its also the minimum value for `disk_space`
1042
1064
  :param pulumi.Input[_builtins.str] disk_space_step: The default disk space step of the service, possible values depend on the service type, the cloud provider and the project. `disk_space` needs to increment from `disk_space_default` by increments of this size.
1043
- :param pulumi.Input[_builtins.str] disk_space_used: Disk space that service is currently using
1065
+ :param pulumi.Input[_builtins.str] disk_space_used: The disk space that the service is currently using. This is the sum of `disk_space` and `additional_disk_space` in human-readable format (for example: `90GiB`).
1044
1066
  :param pulumi.Input[_builtins.str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
1045
1067
  :param pulumi.Input[_builtins.str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
1046
1068
  :param pulumi.Input[_builtins.str] plan: Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seen from the [Aiven pricing page](https://aiven.io/pricing).
@@ -1137,10 +1159,10 @@ class Alloydbomni(pulumi.CustomResource):
1137
1159
 
1138
1160
  @_builtins.property
1139
1161
  @pulumi.getter(name="diskSpace")
1140
- @_utilities.deprecated("""This will be removed in v5.0.0. Please use `additional_disk_space` to specify the space to be added to the default `disk_space` defined by the plan.""")
1162
+ @_utilities.deprecated("""Please use `additional_disk_space` to specify the space to be added to the default disk space defined by the plan.""")
1141
1163
  def disk_space(self) -> pulumi.Output[Optional[_builtins.str]]:
1142
1164
  """
1143
- Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
1165
+ Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing. Please use `additional_disk_space` to specify the space to be added to the default disk space defined by the plan.
1144
1166
  """
1145
1167
  return pulumi.get(self, "disk_space")
1146
1168
 
@@ -1170,10 +1192,9 @@ class Alloydbomni(pulumi.CustomResource):
1170
1192
 
1171
1193
  @_builtins.property
1172
1194
  @pulumi.getter(name="diskSpaceUsed")
1173
- @_utilities.deprecated("""This will be removed in v5.0.0. Please use `additional_disk_space` to specify the space to be added to the default `disk_space` defined by the plan.""")
1174
1195
  def disk_space_used(self) -> pulumi.Output[_builtins.str]:
1175
1196
  """
1176
- Disk space that service is currently using
1197
+ The disk space that the service is currently using. This is the sum of `disk_space` and `additional_disk_space` in human-readable format (for example: `90GiB`).
1177
1198
  """
1178
1199
  return pulumi.get(self, "disk_space_used")
1179
1200
 
@@ -207,6 +207,19 @@ class AlloydbomniDatabase(pulumi.CustomResource):
207
207
  **This resource is in the beta stage and may change without notice.** Set
208
208
  the `PROVIDER_AIVEN_ENABLE_BETA` environment variable to use the resource.
209
209
 
210
+ !> **End of life notice**
211
+ Aiven for AlloyDB Omni is entering its [end-of-life cycle](https://aiven.io/docs/platform/reference/end-of-life).
212
+ From **5 September 2025**, you can no longer create new Aiven for AlloyDB Omni services. Existing
213
+ services continue to operate until the end of life (EOL) date but you cannot change plans for these services.
214
+ On **5 December 2025**, all active Aiven for AlloyDB Omni services are powered off and deleted, making data from
215
+ these services inaccessible. The recommended alternatives to Aiven for AlloyDB Omni are:
216
+ Aiven for PostgreSQL®,
217
+ Aiven for ClickHouse®,
218
+ and Aiven for MySQL®.
219
+ To ensure uninterrupted service, complete your migration before December 5, 2025.
220
+ For further assistance, contact the Aiven support team or your
221
+ account team.
222
+
210
223
  :param str resource_name: The name of the resource.
211
224
  :param pulumi.ResourceOptions opts: Options for the resource.
212
225
  :param pulumi.Input[_builtins.str] database_name: The name of the service database. Changing this property forces recreation of the resource.
@@ -227,6 +240,19 @@ class AlloydbomniDatabase(pulumi.CustomResource):
227
240
  **This resource is in the beta stage and may change without notice.** Set
228
241
  the `PROVIDER_AIVEN_ENABLE_BETA` environment variable to use the resource.
229
242
 
243
+ !> **End of life notice**
244
+ Aiven for AlloyDB Omni is entering its [end-of-life cycle](https://aiven.io/docs/platform/reference/end-of-life).
245
+ From **5 September 2025**, you can no longer create new Aiven for AlloyDB Omni services. Existing
246
+ services continue to operate until the end of life (EOL) date but you cannot change plans for these services.
247
+ On **5 December 2025**, all active Aiven for AlloyDB Omni services are powered off and deleted, making data from
248
+ these services inaccessible. The recommended alternatives to Aiven for AlloyDB Omni are:
249
+ Aiven for PostgreSQL®,
250
+ Aiven for ClickHouse®,
251
+ and Aiven for MySQL®.
252
+ To ensure uninterrupted service, complete your migration before December 5, 2025.
253
+ For further assistance, contact the Aiven support team or your
254
+ account team.
255
+
230
256
  :param str resource_name: The name of the resource.
231
257
  :param AlloydbomniDatabaseArgs args: The arguments to use to populate this resource's properties.
232
258
  :param pulumi.ResourceOptions opts: Options for the resource.
@@ -255,6 +255,19 @@ class AlloydbomniUser(pulumi.CustomResource):
255
255
  **This resource is in the beta stage and may change without notice.** Set
256
256
  the `PROVIDER_AIVEN_ENABLE_BETA` environment variable to use the resource.
257
257
 
258
+ !> **End of life notice**
259
+ Aiven for AlloyDB Omni is entering its [end-of-life cycle](https://aiven.io/docs/platform/reference/end-of-life).
260
+ From **5 September 2025**, you can no longer create new Aiven for AlloyDB Omni services. Existing
261
+ services continue to operate until the end of life (EOL) date but you cannot change plans for these services.
262
+ On **5 December 2025**, all active Aiven for AlloyDB Omni services are powered off and deleted, making data from
263
+ these services inaccessible. The recommended alternatives to Aiven for AlloyDB Omni are:
264
+ Aiven for PostgreSQL®,
265
+ Aiven for ClickHouse®,
266
+ and Aiven for MySQL®.
267
+ To ensure uninterrupted service, complete your migration before December 5, 2025.
268
+ For further assistance, contact the Aiven support team or your
269
+ account team.
270
+
258
271
  :param str resource_name: The name of the resource.
259
272
  :param pulumi.ResourceOptions opts: Options for the resource.
260
273
  :param pulumi.Input[_builtins.str] password: The password of the service user.
@@ -275,6 +288,19 @@ class AlloydbomniUser(pulumi.CustomResource):
275
288
  **This resource is in the beta stage and may change without notice.** Set
276
289
  the `PROVIDER_AIVEN_ENABLE_BETA` environment variable to use the resource.
277
290
 
291
+ !> **End of life notice**
292
+ Aiven for AlloyDB Omni is entering its [end-of-life cycle](https://aiven.io/docs/platform/reference/end-of-life).
293
+ From **5 September 2025**, you can no longer create new Aiven for AlloyDB Omni services. Existing
294
+ services continue to operate until the end of life (EOL) date but you cannot change plans for these services.
295
+ On **5 December 2025**, all active Aiven for AlloyDB Omni services are powered off and deleted, making data from
296
+ these services inaccessible. The recommended alternatives to Aiven for AlloyDB Omni are:
297
+ Aiven for PostgreSQL®,
298
+ Aiven for ClickHouse®,
299
+ and Aiven for MySQL®.
300
+ To ensure uninterrupted service, complete your migration before December 5, 2025.
301
+ For further assistance, contact the Aiven support team or your
302
+ account team.
303
+
278
304
  :param str resource_name: The name of the resource.
279
305
  :param AlloydbomniUserArgs args: The arguments to use to populate this resource's properties.
280
306
  :param pulumi.ResourceOptions opts: Options for the resource.
pulumi_aiven/cassandra.py CHANGED
@@ -46,7 +46,7 @@ class CassandraArgs:
46
46
  :param pulumi.Input['CassandraCassandraArgs'] cassandra: Values provided by the Cassandra server.
47
47
  :param pulumi.Input['CassandraCassandraUserConfigArgs'] cassandra_user_config: Cassandra user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
48
48
  :param pulumi.Input[_builtins.str] cloud_name: The cloud provider and region the service is hosted in. The format is `provider-region`, for example: `google-europe-west1`. The [available cloud regions](https://aiven.io/docs/platform/reference/list_of_clouds) can differ per project and service. Changing this value [migrates the service to another cloud provider or region](https://aiven.io/docs/platform/howto/migrate-services-cloud-region). The migration runs in the background and includes a DNS update to redirect traffic to the new region. Most services experience no downtime, but some databases may have a brief interruption during DNS propagation.
49
- :param pulumi.Input[_builtins.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.
49
+ :param pulumi.Input[_builtins.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. Please use `additional_disk_space` to specify the space to be added to the default disk space defined by the plan.
50
50
  :param pulumi.Input[_builtins.str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
51
51
  :param pulumi.Input[_builtins.str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
52
52
  :param pulumi.Input[_builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. 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. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
@@ -68,8 +68,8 @@ class CassandraArgs:
68
68
  if cloud_name is not None:
69
69
  pulumi.set(__self__, "cloud_name", cloud_name)
70
70
  if disk_space is not None:
71
- warnings.warn("""This will be removed in v5.0.0. Please use `additional_disk_space` to specify the space to be added to the default `disk_space` defined by the plan.""", DeprecationWarning)
72
- pulumi.log.warn("""disk_space is deprecated: This will be removed in v5.0.0. Please use `additional_disk_space` to specify the space to be added to the default `disk_space` defined by the plan.""")
71
+ warnings.warn("""Please use `additional_disk_space` to specify the space to be added to the default disk space defined by the plan.""", DeprecationWarning)
72
+ pulumi.log.warn("""disk_space is deprecated: Please use `additional_disk_space` to specify the space to be added to the default disk space defined by the plan.""")
73
73
  if disk_space is not None:
74
74
  pulumi.set(__self__, "disk_space", disk_space)
75
75
  if maintenance_window_dow is not None:
@@ -175,10 +175,10 @@ class CassandraArgs:
175
175
 
176
176
  @_builtins.property
177
177
  @pulumi.getter(name="diskSpace")
178
- @_utilities.deprecated("""This will be removed in v5.0.0. Please use `additional_disk_space` to specify the space to be added to the default `disk_space` defined by the plan.""")
178
+ @_utilities.deprecated("""Please use `additional_disk_space` to specify the space to be added to the default disk space defined by the plan.""")
179
179
  def disk_space(self) -> Optional[pulumi.Input[_builtins.str]]:
180
180
  """
181
- Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
181
+ Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing. Please use `additional_disk_space` to specify the space to be added to the default disk space defined by the plan.
182
182
  """
183
183
  return pulumi.get(self, "disk_space")
184
184
 
@@ -321,11 +321,11 @@ class _CassandraState:
321
321
  :param pulumi.Input['CassandraCassandraUserConfigArgs'] cassandra_user_config: Cassandra user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
322
322
  :param pulumi.Input[_builtins.str] cloud_name: The cloud provider and region the service is hosted in. The format is `provider-region`, for example: `google-europe-west1`. The [available cloud regions](https://aiven.io/docs/platform/reference/list_of_clouds) can differ per project and service. Changing this value [migrates the service to another cloud provider or region](https://aiven.io/docs/platform/howto/migrate-services-cloud-region). The migration runs in the background and includes a DNS update to redirect traffic to the new region. Most services experience no downtime, but some databases may have a brief interruption during DNS propagation.
323
323
  :param pulumi.Input[Sequence[pulumi.Input['CassandraComponentArgs']]] components: Service component information objects
324
- :param pulumi.Input[_builtins.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.
324
+ :param pulumi.Input[_builtins.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. Please use `additional_disk_space` to specify the space to be added to the default disk space defined by the plan.
325
325
  :param pulumi.Input[_builtins.str] disk_space_cap: The maximum disk space of the service, possible values depend on the service type, the cloud provider and the project.
326
326
  :param pulumi.Input[_builtins.str] disk_space_default: The default disk space of the service, possible values depend on the service type, the cloud provider and the project. Its also the minimum value for `disk_space`
327
327
  :param pulumi.Input[_builtins.str] disk_space_step: The default disk space step of the service, possible values depend on the service type, the cloud provider and the project. `disk_space` needs to increment from `disk_space_default` by increments of this size.
328
- :param pulumi.Input[_builtins.str] disk_space_used: Disk space that service is currently using
328
+ :param pulumi.Input[_builtins.str] disk_space_used: The disk space that the service is currently using. This is the sum of `disk_space` and `additional_disk_space` in human-readable format (for example: `90GiB`).
329
329
  :param pulumi.Input[_builtins.str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
330
330
  :param pulumi.Input[_builtins.str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
331
331
  :param pulumi.Input[_builtins.str] plan: Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seen from the [Aiven pricing page](https://aiven.io/pricing).
@@ -355,8 +355,8 @@ class _CassandraState:
355
355
  if components is not None:
356
356
  pulumi.set(__self__, "components", components)
357
357
  if disk_space is not None:
358
- warnings.warn("""This will be removed in v5.0.0. Please use `additional_disk_space` to specify the space to be added to the default `disk_space` defined by the plan.""", DeprecationWarning)
359
- pulumi.log.warn("""disk_space is deprecated: This will be removed in v5.0.0. Please use `additional_disk_space` to specify the space to be added to the default `disk_space` defined by the plan.""")
358
+ warnings.warn("""Please use `additional_disk_space` to specify the space to be added to the default disk space defined by the plan.""", DeprecationWarning)
359
+ pulumi.log.warn("""disk_space is deprecated: Please use `additional_disk_space` to specify the space to be added to the default disk space defined by the plan.""")
360
360
  if disk_space is not None:
361
361
  pulumi.set(__self__, "disk_space", disk_space)
362
362
  if disk_space_cap is not None:
@@ -365,9 +365,6 @@ class _CassandraState:
365
365
  pulumi.set(__self__, "disk_space_default", disk_space_default)
366
366
  if disk_space_step is not None:
367
367
  pulumi.set(__self__, "disk_space_step", disk_space_step)
368
- if disk_space_used is not None:
369
- warnings.warn("""This will be removed in v5.0.0. Please use `additional_disk_space` to specify the space to be added to the default `disk_space` defined by the plan.""", DeprecationWarning)
370
- pulumi.log.warn("""disk_space_used is deprecated: This will be removed in v5.0.0. Please use `additional_disk_space` to specify the space to be added to the default `disk_space` defined by the plan.""")
371
368
  if disk_space_used is not None:
372
369
  pulumi.set(__self__, "disk_space_used", disk_space_used)
373
370
  if maintenance_window_dow is not None:
@@ -469,10 +466,10 @@ class _CassandraState:
469
466
 
470
467
  @_builtins.property
471
468
  @pulumi.getter(name="diskSpace")
472
- @_utilities.deprecated("""This will be removed in v5.0.0. Please use `additional_disk_space` to specify the space to be added to the default `disk_space` defined by the plan.""")
469
+ @_utilities.deprecated("""Please use `additional_disk_space` to specify the space to be added to the default disk space defined by the plan.""")
473
470
  def disk_space(self) -> Optional[pulumi.Input[_builtins.str]]:
474
471
  """
475
- Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
472
+ Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing. Please use `additional_disk_space` to specify the space to be added to the default disk space defined by the plan.
476
473
  """
477
474
  return pulumi.get(self, "disk_space")
478
475
 
@@ -518,10 +515,9 @@ class _CassandraState:
518
515
 
519
516
  @_builtins.property
520
517
  @pulumi.getter(name="diskSpaceUsed")
521
- @_utilities.deprecated("""This will be removed in v5.0.0. Please use `additional_disk_space` to specify the space to be added to the default `disk_space` defined by the plan.""")
522
518
  def disk_space_used(self) -> Optional[pulumi.Input[_builtins.str]]:
523
519
  """
524
- Disk space that service is currently using
520
+ The disk space that the service is currently using. This is the sum of `disk_space` and `additional_disk_space` in human-readable format (for example: `90GiB`).
525
521
  """
526
522
  return pulumi.get(self, "disk_space_used")
527
523
 
@@ -809,7 +805,7 @@ class Cassandra(pulumi.CustomResource):
809
805
  :param pulumi.Input[Union['CassandraCassandraArgs', 'CassandraCassandraArgsDict']] cassandra: Values provided by the Cassandra server.
810
806
  :param pulumi.Input[Union['CassandraCassandraUserConfigArgs', 'CassandraCassandraUserConfigArgsDict']] cassandra_user_config: Cassandra user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
811
807
  :param pulumi.Input[_builtins.str] cloud_name: The cloud provider and region the service is hosted in. The format is `provider-region`, for example: `google-europe-west1`. The [available cloud regions](https://aiven.io/docs/platform/reference/list_of_clouds) can differ per project and service. Changing this value [migrates the service to another cloud provider or region](https://aiven.io/docs/platform/howto/migrate-services-cloud-region). The migration runs in the background and includes a DNS update to redirect traffic to the new region. Most services experience no downtime, but some databases may have a brief interruption during DNS propagation.
812
- :param pulumi.Input[_builtins.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.
808
+ :param pulumi.Input[_builtins.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. Please use `additional_disk_space` to specify the space to be added to the default disk space defined by the plan.
813
809
  :param pulumi.Input[_builtins.str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
814
810
  :param pulumi.Input[_builtins.str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
815
811
  :param pulumi.Input[_builtins.str] plan: Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seen from the [Aiven pricing page](https://aiven.io/pricing).
@@ -991,11 +987,11 @@ class Cassandra(pulumi.CustomResource):
991
987
  :param pulumi.Input[Union['CassandraCassandraUserConfigArgs', 'CassandraCassandraUserConfigArgsDict']] cassandra_user_config: Cassandra user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
992
988
  :param pulumi.Input[_builtins.str] cloud_name: The cloud provider and region the service is hosted in. The format is `provider-region`, for example: `google-europe-west1`. The [available cloud regions](https://aiven.io/docs/platform/reference/list_of_clouds) can differ per project and service. Changing this value [migrates the service to another cloud provider or region](https://aiven.io/docs/platform/howto/migrate-services-cloud-region). The migration runs in the background and includes a DNS update to redirect traffic to the new region. Most services experience no downtime, but some databases may have a brief interruption during DNS propagation.
993
989
  :param pulumi.Input[Sequence[pulumi.Input[Union['CassandraComponentArgs', 'CassandraComponentArgsDict']]]] components: Service component information objects
994
- :param pulumi.Input[_builtins.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.
990
+ :param pulumi.Input[_builtins.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. Please use `additional_disk_space` to specify the space to be added to the default disk space defined by the plan.
995
991
  :param pulumi.Input[_builtins.str] disk_space_cap: The maximum disk space of the service, possible values depend on the service type, the cloud provider and the project.
996
992
  :param pulumi.Input[_builtins.str] disk_space_default: The default disk space of the service, possible values depend on the service type, the cloud provider and the project. Its also the minimum value for `disk_space`
997
993
  :param pulumi.Input[_builtins.str] disk_space_step: The default disk space step of the service, possible values depend on the service type, the cloud provider and the project. `disk_space` needs to increment from `disk_space_default` by increments of this size.
998
- :param pulumi.Input[_builtins.str] disk_space_used: Disk space that service is currently using
994
+ :param pulumi.Input[_builtins.str] disk_space_used: The disk space that the service is currently using. This is the sum of `disk_space` and `additional_disk_space` in human-readable format (for example: `90GiB`).
999
995
  :param pulumi.Input[_builtins.str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
1000
996
  :param pulumi.Input[_builtins.str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
1001
997
  :param pulumi.Input[_builtins.str] plan: Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seen from the [Aiven pricing page](https://aiven.io/pricing).
@@ -1090,10 +1086,10 @@ class Cassandra(pulumi.CustomResource):
1090
1086
 
1091
1087
  @_builtins.property
1092
1088
  @pulumi.getter(name="diskSpace")
1093
- @_utilities.deprecated("""This will be removed in v5.0.0. Please use `additional_disk_space` to specify the space to be added to the default `disk_space` defined by the plan.""")
1089
+ @_utilities.deprecated("""Please use `additional_disk_space` to specify the space to be added to the default disk space defined by the plan.""")
1094
1090
  def disk_space(self) -> pulumi.Output[Optional[_builtins.str]]:
1095
1091
  """
1096
- Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
1092
+ Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing. Please use `additional_disk_space` to specify the space to be added to the default disk space defined by the plan.
1097
1093
  """
1098
1094
  return pulumi.get(self, "disk_space")
1099
1095
 
@@ -1123,10 +1119,9 @@ class Cassandra(pulumi.CustomResource):
1123
1119
 
1124
1120
  @_builtins.property
1125
1121
  @pulumi.getter(name="diskSpaceUsed")
1126
- @_utilities.deprecated("""This will be removed in v5.0.0. Please use `additional_disk_space` to specify the space to be added to the default `disk_space` defined by the plan.""")
1127
1122
  def disk_space_used(self) -> pulumi.Output[_builtins.str]:
1128
1123
  """
1129
- Disk space that service is currently using
1124
+ The disk space that the service is currently using. This is the sum of `disk_space` and `additional_disk_space` in human-readable format (for example: `90GiB`).
1130
1125
  """
1131
1126
  return pulumi.get(self, "disk_space_used")
1132
1127