pulumi-aiven 6.34.0a1739423224__py3-none-any.whl → 6.34.0a1739596048__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 (39) hide show
  1. pulumi_aiven/_inputs.py +37 -33
  2. pulumi_aiven/account.py +6 -2
  3. pulumi_aiven/account_authentication.py +4 -2
  4. pulumi_aiven/account_team.py +2 -6
  5. pulumi_aiven/account_team_member.py +10 -6
  6. pulumi_aiven/account_team_project.py +10 -6
  7. pulumi_aiven/cassandra.py +14 -0
  8. pulumi_aiven/cassandra_user.py +14 -0
  9. pulumi_aiven/get_account.py +8 -0
  10. pulumi_aiven/get_account_authentication.py +8 -0
  11. pulumi_aiven/get_account_team.py +22 -0
  12. pulumi_aiven/get_account_team_member.py +22 -0
  13. pulumi_aiven/get_account_team_project.py +22 -0
  14. pulumi_aiven/get_cassanda.py +14 -0
  15. pulumi_aiven/get_cassandra.py +14 -0
  16. pulumi_aiven/get_cassandra_user.py +14 -0
  17. pulumi_aiven/get_m3_db.py +12 -0
  18. pulumi_aiven/get_m3db_user.py +12 -0
  19. pulumi_aiven/get_my_sql.py +7 -7
  20. pulumi_aiven/get_mysql_database.py +11 -11
  21. pulumi_aiven/get_mysql_user.py +15 -15
  22. pulumi_aiven/get_organization_user.py +2 -4
  23. pulumi_aiven/get_project_user.py +8 -0
  24. pulumi_aiven/get_redis.py +16 -0
  25. pulumi_aiven/get_redis_user.py +16 -0
  26. pulumi_aiven/m3_db.py +2 -2
  27. pulumi_aiven/m3db_user.py +2 -2
  28. pulumi_aiven/my_sql.py +17 -17
  29. pulumi_aiven/mysql_database.py +19 -19
  30. pulumi_aiven/mysql_user.py +38 -38
  31. pulumi_aiven/outputs.py +46 -44
  32. pulumi_aiven/project_user.py +8 -0
  33. pulumi_aiven/pulumi-plugin.json +1 -1
  34. pulumi_aiven/redis.py +2 -2
  35. pulumi_aiven/redis_user.py +2 -2
  36. {pulumi_aiven-6.34.0a1739423224.dist-info → pulumi_aiven-6.34.0a1739596048.dist-info}/METADATA +1 -1
  37. {pulumi_aiven-6.34.0a1739423224.dist-info → pulumi_aiven-6.34.0a1739596048.dist-info}/RECORD +39 -39
  38. {pulumi_aiven-6.34.0a1739423224.dist-info → pulumi_aiven-6.34.0a1739596048.dist-info}/WHEEL +0 -0
  39. {pulumi_aiven-6.34.0a1739423224.dist-info → pulumi_aiven-6.34.0a1739596048.dist-info}/top_level.txt +0 -0
pulumi_aiven/_inputs.py CHANGED
@@ -20722,23 +20722,23 @@ if not MYPY:
20722
20722
  class MySqlMysqlArgsDict(TypedDict):
20723
20723
  params: NotRequired[pulumi.Input[Sequence[pulumi.Input['MySqlMysqlParamArgsDict']]]]
20724
20724
  """
20725
- MySQL connection parameters
20725
+ MySQL connection parameters.
20726
20726
  """
20727
20727
  replica_uri: NotRequired[pulumi.Input[str]]
20728
20728
  """
20729
- MySQL replica URI for services with a replica
20729
+ MySQL replica URI for services with a replica.
20730
20730
  """
20731
20731
  standby_uris: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
20732
20732
  """
20733
- MySQL standby connection URIs
20733
+ MySQL standby connection URIs.
20734
20734
  """
20735
20735
  syncing_uris: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
20736
20736
  """
20737
- MySQL syncing connection URIs
20737
+ MySQL syncing connection URIs.
20738
20738
  """
20739
20739
  uris: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
20740
20740
  """
20741
- MySQL master connection URIs
20741
+ MySQL connection URIs.
20742
20742
  """
20743
20743
  elif False:
20744
20744
  MySqlMysqlArgsDict: TypeAlias = Mapping[str, Any]
@@ -20752,11 +20752,11 @@ class MySqlMysqlArgs:
20752
20752
  syncing_uris: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
20753
20753
  uris: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
20754
20754
  """
20755
- :param pulumi.Input[Sequence[pulumi.Input['MySqlMysqlParamArgs']]] params: MySQL connection parameters
20756
- :param pulumi.Input[str] replica_uri: MySQL replica URI for services with a replica
20757
- :param pulumi.Input[Sequence[pulumi.Input[str]]] standby_uris: MySQL standby connection URIs
20758
- :param pulumi.Input[Sequence[pulumi.Input[str]]] syncing_uris: MySQL syncing connection URIs
20759
- :param pulumi.Input[Sequence[pulumi.Input[str]]] uris: MySQL master connection URIs
20755
+ :param pulumi.Input[Sequence[pulumi.Input['MySqlMysqlParamArgs']]] params: MySQL connection parameters.
20756
+ :param pulumi.Input[str] replica_uri: MySQL replica URI for services with a replica.
20757
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] standby_uris: MySQL standby connection URIs.
20758
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] syncing_uris: MySQL syncing connection URIs.
20759
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] uris: MySQL connection URIs.
20760
20760
  """
20761
20761
  if params is not None:
20762
20762
  pulumi.set(__self__, "params", params)
@@ -20773,7 +20773,7 @@ class MySqlMysqlArgs:
20773
20773
  @pulumi.getter
20774
20774
  def params(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['MySqlMysqlParamArgs']]]]:
20775
20775
  """
20776
- MySQL connection parameters
20776
+ MySQL connection parameters.
20777
20777
  """
20778
20778
  return pulumi.get(self, "params")
20779
20779
 
@@ -20785,7 +20785,7 @@ class MySqlMysqlArgs:
20785
20785
  @pulumi.getter(name="replicaUri")
20786
20786
  def replica_uri(self) -> Optional[pulumi.Input[str]]:
20787
20787
  """
20788
- MySQL replica URI for services with a replica
20788
+ MySQL replica URI for services with a replica.
20789
20789
  """
20790
20790
  return pulumi.get(self, "replica_uri")
20791
20791
 
@@ -20797,7 +20797,7 @@ class MySqlMysqlArgs:
20797
20797
  @pulumi.getter(name="standbyUris")
20798
20798
  def standby_uris(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
20799
20799
  """
20800
- MySQL standby connection URIs
20800
+ MySQL standby connection URIs.
20801
20801
  """
20802
20802
  return pulumi.get(self, "standby_uris")
20803
20803
 
@@ -20809,7 +20809,7 @@ class MySqlMysqlArgs:
20809
20809
  @pulumi.getter(name="syncingUris")
20810
20810
  def syncing_uris(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
20811
20811
  """
20812
- MySQL syncing connection URIs
20812
+ MySQL syncing connection URIs.
20813
20813
  """
20814
20814
  return pulumi.get(self, "syncing_uris")
20815
20815
 
@@ -20821,7 +20821,7 @@ class MySqlMysqlArgs:
20821
20821
  @pulumi.getter
20822
20822
  def uris(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
20823
20823
  """
20824
- MySQL master connection URIs
20824
+ MySQL connection URIs.
20825
20825
  """
20826
20826
  return pulumi.get(self, "uris")
20827
20827
 
@@ -20834,27 +20834,27 @@ if not MYPY:
20834
20834
  class MySqlMysqlParamArgsDict(TypedDict):
20835
20835
  database_name: NotRequired[pulumi.Input[str]]
20836
20836
  """
20837
- Primary MySQL database name
20837
+ Thr name of the primary MySQL database.
20838
20838
  """
20839
20839
  host: NotRequired[pulumi.Input[str]]
20840
20840
  """
20841
- MySQL host IP or name
20841
+ MySQL host IP or name.
20842
20842
  """
20843
20843
  password: NotRequired[pulumi.Input[str]]
20844
20844
  """
20845
- MySQL admin user password
20845
+ The password for the admin service user.
20846
20846
  """
20847
20847
  port: NotRequired[pulumi.Input[int]]
20848
20848
  """
20849
- MySQL port
20849
+ MySQL port.
20850
20850
  """
20851
20851
  sslmode: NotRequired[pulumi.Input[str]]
20852
20852
  """
20853
- MySQL sslmode setting (currently always "require")
20853
+ MySQL SSL mode setting. Always set to "require".
20854
20854
  """
20855
20855
  user: NotRequired[pulumi.Input[str]]
20856
20856
  """
20857
- MySQL admin user name
20857
+ The username for the admin service user.
20858
20858
  """
20859
20859
  elif False:
20860
20860
  MySqlMysqlParamArgsDict: TypeAlias = Mapping[str, Any]
@@ -20869,12 +20869,12 @@ class MySqlMysqlParamArgs:
20869
20869
  sslmode: Optional[pulumi.Input[str]] = None,
20870
20870
  user: Optional[pulumi.Input[str]] = None):
20871
20871
  """
20872
- :param pulumi.Input[str] database_name: Primary MySQL database name
20873
- :param pulumi.Input[str] host: MySQL host IP or name
20874
- :param pulumi.Input[str] password: MySQL admin user password
20875
- :param pulumi.Input[int] port: MySQL port
20876
- :param pulumi.Input[str] sslmode: MySQL sslmode setting (currently always "require")
20877
- :param pulumi.Input[str] user: MySQL admin user name
20872
+ :param pulumi.Input[str] database_name: Thr name of the primary MySQL database.
20873
+ :param pulumi.Input[str] host: MySQL host IP or name.
20874
+ :param pulumi.Input[str] password: The password for the admin service user.
20875
+ :param pulumi.Input[int] port: MySQL port.
20876
+ :param pulumi.Input[str] sslmode: MySQL SSL mode setting. Always set to "require".
20877
+ :param pulumi.Input[str] user: The username for the admin service user.
20878
20878
  """
20879
20879
  if database_name is not None:
20880
20880
  pulumi.set(__self__, "database_name", database_name)
@@ -20893,7 +20893,7 @@ class MySqlMysqlParamArgs:
20893
20893
  @pulumi.getter(name="databaseName")
20894
20894
  def database_name(self) -> Optional[pulumi.Input[str]]:
20895
20895
  """
20896
- Primary MySQL database name
20896
+ Thr name of the primary MySQL database.
20897
20897
  """
20898
20898
  return pulumi.get(self, "database_name")
20899
20899
 
@@ -20905,7 +20905,7 @@ class MySqlMysqlParamArgs:
20905
20905
  @pulumi.getter
20906
20906
  def host(self) -> Optional[pulumi.Input[str]]:
20907
20907
  """
20908
- MySQL host IP or name
20908
+ MySQL host IP or name.
20909
20909
  """
20910
20910
  return pulumi.get(self, "host")
20911
20911
 
@@ -20917,7 +20917,7 @@ class MySqlMysqlParamArgs:
20917
20917
  @pulumi.getter
20918
20918
  def password(self) -> Optional[pulumi.Input[str]]:
20919
20919
  """
20920
- MySQL admin user password
20920
+ The password for the admin service user.
20921
20921
  """
20922
20922
  return pulumi.get(self, "password")
20923
20923
 
@@ -20929,7 +20929,7 @@ class MySqlMysqlParamArgs:
20929
20929
  @pulumi.getter
20930
20930
  def port(self) -> Optional[pulumi.Input[int]]:
20931
20931
  """
20932
- MySQL port
20932
+ MySQL port.
20933
20933
  """
20934
20934
  return pulumi.get(self, "port")
20935
20935
 
@@ -20941,7 +20941,7 @@ class MySqlMysqlParamArgs:
20941
20941
  @pulumi.getter
20942
20942
  def sslmode(self) -> Optional[pulumi.Input[str]]:
20943
20943
  """
20944
- MySQL sslmode setting (currently always "require")
20944
+ MySQL SSL mode setting. Always set to "require".
20945
20945
  """
20946
20946
  return pulumi.get(self, "sslmode")
20947
20947
 
@@ -20953,7 +20953,7 @@ class MySqlMysqlParamArgs:
20953
20953
  @pulumi.getter
20954
20954
  def user(self) -> Optional[pulumi.Input[str]]:
20955
20955
  """
20956
- MySQL admin user name
20956
+ The username for the admin service user.
20957
20957
  """
20958
20958
  return pulumi.get(self, "user")
20959
20959
 
@@ -25467,6 +25467,9 @@ class OpenSearchOpensearchUserConfigOpensearchAuthFailureListenersArgs:
25467
25467
  """
25468
25468
  if internal_authentication_backend_limiting is not None:
25469
25469
  pulumi.set(__self__, "internal_authentication_backend_limiting", internal_authentication_backend_limiting)
25470
+ if ip_rate_limiting is not None:
25471
+ warnings.warn("""This property is deprecated.""", DeprecationWarning)
25472
+ pulumi.log.warn("""ip_rate_limiting is deprecated: This property is deprecated.""")
25470
25473
  if ip_rate_limiting is not None:
25471
25474
  pulumi.set(__self__, "ip_rate_limiting", ip_rate_limiting)
25472
25475
 
@@ -25481,6 +25484,7 @@ class OpenSearchOpensearchUserConfigOpensearchAuthFailureListenersArgs:
25481
25484
 
25482
25485
  @property
25483
25486
  @pulumi.getter(name="ipRateLimiting")
25487
+ @_utilities.deprecated("""This property is deprecated.""")
25484
25488
  def ip_rate_limiting(self) -> Optional[pulumi.Input['OpenSearchOpensearchUserConfigOpensearchAuthFailureListenersIpRateLimitingArgs']]:
25485
25489
  """
25486
25490
  IP address rate limiting settings
pulumi_aiven/account.py CHANGED
@@ -223,7 +223,9 @@ class Account(pulumi.CustomResource):
223
223
  """
224
224
  Creates and manages an Aiven account.
225
225
 
226
- **This resource is deprecated.** Use `Organization` instead.
226
+ > **This resource is deprecated**.
227
+
228
+ This resource will be removed in v5.0.0. Use `Organization` instead.
227
229
 
228
230
  ## Example Usage
229
231
 
@@ -254,7 +256,9 @@ class Account(pulumi.CustomResource):
254
256
  """
255
257
  Creates and manages an Aiven account.
256
258
 
257
- **This resource is deprecated.** Use `Organization` instead.
259
+ > **This resource is deprecated**.
260
+
261
+ This resource will be removed in v5.0.0. Use `Organization` instead.
258
262
 
259
263
  ## Example Usage
260
264
 
@@ -550,7 +550,8 @@ class AccountAuthentication(pulumi.CustomResource):
550
550
  """
551
551
  Creates and manages an authentication method.
552
552
 
553
- > **This resource is deprecated**
553
+ > **This resource is deprecated**.
554
+
554
555
  To set up an identity provider as an authentication method for your organization,
555
556
  [use the Aiven Console](https://aiven.io/docs/platform/howto/saml/add-identity-providers).
556
557
  It guides you through the steps and explains the settings.
@@ -586,7 +587,8 @@ class AccountAuthentication(pulumi.CustomResource):
586
587
  """
587
588
  Creates and manages an authentication method.
588
589
 
589
- > **This resource is deprecated**
590
+ > **This resource is deprecated**.
591
+
590
592
  To set up an identity provider as an authentication method for your organization,
591
593
  [use the Aiven Console](https://aiven.io/docs/platform/howto/saml/add-identity-providers).
592
594
  It guides you through the steps and explains the settings.
@@ -152,11 +152,9 @@ class AccountTeam(pulumi.CustomResource):
152
152
  name: Optional[pulumi.Input[str]] = None,
153
153
  __props__=None):
154
154
  """
155
- **This resource is deprecated.** Use `OrganizationUserGroup` instead.
156
-
157
155
  Creates and manages a team.
158
156
 
159
- > **Teams have been deprecated and are being migrated to groups**
157
+ !> **Teams have been deprecated and are being migrated to groups**
160
158
  **On 30 September 2024** the Account Owners team will transition to super admin. Super admin have full access to the organization.
161
159
  The Account Owners and super admin are synced, so the removal of the Account Owners team will have no impact on existing permissions.
162
160
  **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
@@ -196,11 +194,9 @@ class AccountTeam(pulumi.CustomResource):
196
194
  args: AccountTeamArgs,
197
195
  opts: Optional[pulumi.ResourceOptions] = None):
198
196
  """
199
- **This resource is deprecated.** Use `OrganizationUserGroup` instead.
200
-
201
197
  Creates and manages a team.
202
198
 
203
- > **Teams have been deprecated and are being migrated to groups**
199
+ !> **Teams have been deprecated and are being migrated to groups**
204
200
  **On 30 September 2024** the Account Owners team will transition to super admin. Super admin have full access to the organization.
205
201
  The Account Owners and super admin are synced, so the removal of the Account Owners team will have no impact on existing permissions.
206
202
  **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
@@ -183,21 +183,23 @@ class AccountTeamMember(pulumi.CustomResource):
183
183
  user_email: Optional[pulumi.Input[str]] = None,
184
184
  __props__=None):
185
185
  """
186
- **This resource is deprecated.** Use `OrganizationUserGroupMember` instead.
187
-
188
186
  Adds a user as a team member.
189
187
 
190
188
  During the creation of this resource, an invite is sent to the address specified in `user_email`.
191
189
  The user is added to the team after they accept the invite. Deleting `AccountTeamMember`
192
190
  deletes the pending invite if not accepted or removes the user from the team if they already accepted the invite.
193
191
 
194
- > **Teams have been deprecated and are being migrated to groups**
192
+ !> **Teams have been deprecated and are being migrated to groups**
195
193
  **On 30 September 2024** the Account Owners team will transition to super admin. Super admin have full access to the organization.
196
194
  The Account Owners and super admin are synced, so the removal of the Account Owners team will have no impact on existing permissions.
197
195
  **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
198
196
  this date. **On 2 December 2024** all teams will be deleted and the teams feature will be completely removed. View the
199
197
  migration guide for more information on the changes and migrating to groups.
200
198
 
199
+ > **Important**
200
+ You can't delete the Account Owners team. **Deleting all other teams in your organization will disable the teams feature.**
201
+ You won't be able to create new teams or access your Account Owners team.
202
+
201
203
  ## Example Usage
202
204
 
203
205
  ```python
@@ -229,21 +231,23 @@ class AccountTeamMember(pulumi.CustomResource):
229
231
  args: AccountTeamMemberArgs,
230
232
  opts: Optional[pulumi.ResourceOptions] = None):
231
233
  """
232
- **This resource is deprecated.** Use `OrganizationUserGroupMember` instead.
233
-
234
234
  Adds a user as a team member.
235
235
 
236
236
  During the creation of this resource, an invite is sent to the address specified in `user_email`.
237
237
  The user is added to the team after they accept the invite. Deleting `AccountTeamMember`
238
238
  deletes the pending invite if not accepted or removes the user from the team if they already accepted the invite.
239
239
 
240
- > **Teams have been deprecated and are being migrated to groups**
240
+ !> **Teams have been deprecated and are being migrated to groups**
241
241
  **On 30 September 2024** the Account Owners team will transition to super admin. Super admin have full access to the organization.
242
242
  The Account Owners and super admin are synced, so the removal of the Account Owners team will have no impact on existing permissions.
243
243
  **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
244
244
  this date. **On 2 December 2024** all teams will be deleted and the teams feature will be completely removed. View the
245
245
  migration guide for more information on the changes and migrating to groups.
246
246
 
247
+ > **Important**
248
+ You can't delete the Account Owners team. **Deleting all other teams in your organization will disable the teams feature.**
249
+ You won't be able to create new teams or access your Account Owners team.
250
+
247
251
  ## Example Usage
248
252
 
249
253
  ```python
@@ -169,17 +169,19 @@ class AccountTeamProject(pulumi.CustomResource):
169
169
  team_type: Optional[pulumi.Input[str]] = None,
170
170
  __props__=None):
171
171
  """
172
- **This resource is deprecated.** Use `OrganizationGroupProject` instead.
173
-
174
172
  Links an existing project to an existing team. Both the project and team should have the same `account_id`.
175
173
 
176
- > **Teams have been deprecated and are being migrated to groups**
174
+ !> **Teams have been deprecated and are being migrated to groups**
177
175
  **On 30 September 2024** the Account Owners team will transition to super admin. Super admin have full access to the organization.
178
176
  The Account Owners and super admin are synced, so the removal of the Account Owners team will have no impact on existing permissions.
179
177
  **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
180
178
  this date. **On 2 December 2024** all teams will be deleted and the teams feature will be completely removed. View the
181
179
  migration guide for more information on the changes and migrating to groups.
182
180
 
181
+ > **Important**
182
+ You can't delete the Account Owners team. **Deleting all other teams in your organization will disable the teams feature.**
183
+ You won't be able to create new teams or access your Account Owners team.
184
+
183
185
  ## Example Usage
184
186
 
185
187
  ```python
@@ -219,17 +221,19 @@ class AccountTeamProject(pulumi.CustomResource):
219
221
  args: AccountTeamProjectArgs,
220
222
  opts: Optional[pulumi.ResourceOptions] = None):
221
223
  """
222
- **This resource is deprecated.** Use `OrganizationGroupProject` instead.
223
-
224
224
  Links an existing project to an existing team. Both the project and team should have the same `account_id`.
225
225
 
226
- > **Teams have been deprecated and are being migrated to groups**
226
+ !> **Teams have been deprecated and are being migrated to groups**
227
227
  **On 30 September 2024** the Account Owners team will transition to super admin. Super admin have full access to the organization.
228
228
  The Account Owners and super admin are synced, so the removal of the Account Owners team will have no impact on existing permissions.
229
229
  **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
230
230
  this date. **On 2 December 2024** all teams will be deleted and the teams feature will be completely removed. View the
231
231
  migration guide for more information on the changes and migrating to groups.
232
232
 
233
+ > **Important**
234
+ You can't delete the Account Owners team. **Deleting all other teams in your organization will disable the teams feature.**
235
+ You won't be able to create new teams or access your Account Owners team.
236
+
233
237
  ## Example Usage
234
238
 
235
239
  ```python
pulumi_aiven/cassandra.py CHANGED
@@ -772,6 +772,13 @@ class Cassandra(pulumi.CustomResource):
772
772
  """
773
773
  Creates and manages an [Aiven for Apache Cassandra®](https://aiven.io/docs/products/cassandra) service.
774
774
 
775
+ !> **End of life notice**
776
+ Aiven for Apache Cassandra® is entering its [end-of-life cycle](https://aiven.io/docs/platform/reference/end-of-life).
777
+ From **November 30, 2025**, it will not be possible to start a new Cassandra service, but existing services will continue to operate until end of life.
778
+ From **December 31, 2025**, all active Aiven for Apache Cassandra services are powered off and deleted, making data from these services inaccessible.
779
+ To ensure uninterrupted service, complete your migration out of Aiven for Apache Cassandra
780
+ before December 31, 2025. For further assistance, contact your account team.
781
+
775
782
  ## Example Usage
776
783
 
777
784
  ```python
@@ -827,6 +834,13 @@ class Cassandra(pulumi.CustomResource):
827
834
  """
828
835
  Creates and manages an [Aiven for Apache Cassandra®](https://aiven.io/docs/products/cassandra) service.
829
836
 
837
+ !> **End of life notice**
838
+ Aiven for Apache Cassandra® is entering its [end-of-life cycle](https://aiven.io/docs/platform/reference/end-of-life).
839
+ From **November 30, 2025**, it will not be possible to start a new Cassandra service, but existing services will continue to operate until end of life.
840
+ From **December 31, 2025**, all active Aiven for Apache Cassandra services are powered off and deleted, making data from these services inaccessible.
841
+ To ensure uninterrupted service, complete your migration out of Aiven for Apache Cassandra
842
+ before December 31, 2025. For further assistance, contact your account team.
843
+
830
844
  ## Example Usage
831
845
 
832
846
  ```python
@@ -218,6 +218,13 @@ class CassandraUser(pulumi.CustomResource):
218
218
  """
219
219
  Creates and manages an Aiven for Apache Cassandra® service user.
220
220
 
221
+ !> **End of life notice**
222
+ Aiven for Apache Cassandra® is entering its [end-of-life cycle](https://aiven.io/docs/platform/reference/end-of-life).
223
+ From **November 30, 2025**, it will not be possible to start a new Cassandra service, but existing services will continue to operate until end of life.
224
+ From **December 31, 2025**, all active Aiven for Apache Cassandra services are powered off and deleted, making data from these services inaccessible.
225
+ To ensure uninterrupted service, complete your migration out of Aiven for Apache Cassandra
226
+ before December 31, 2025. For further assistance, contact your account team.
227
+
221
228
  ## Example Usage
222
229
 
223
230
  ```python
@@ -253,6 +260,13 @@ class CassandraUser(pulumi.CustomResource):
253
260
  """
254
261
  Creates and manages an Aiven for Apache Cassandra® service user.
255
262
 
263
+ !> **End of life notice**
264
+ Aiven for Apache Cassandra® is entering its [end-of-life cycle](https://aiven.io/docs/platform/reference/end-of-life).
265
+ From **November 30, 2025**, it will not be possible to start a new Cassandra service, but existing services will continue to operate until end of life.
266
+ From **December 31, 2025**, all active Aiven for Apache Cassandra services are powered off and deleted, making data from these services inaccessible.
267
+ To ensure uninterrupted service, complete your migration out of Aiven for Apache Cassandra
268
+ before December 31, 2025. For further assistance, contact your account team.
269
+
256
270
  ## Example Usage
257
271
 
258
272
  ```python
@@ -150,6 +150,10 @@ def get_account(name: Optional[str] = None,
150
150
  """
151
151
  The Account data source provides information about the existing Aiven Account.
152
152
 
153
+ > **This resource is deprecated**.
154
+
155
+ This resource will be removed in v5.0.0. Use `Organization` instead.
156
+
153
157
  ## Example Usage
154
158
 
155
159
  ```python
@@ -182,6 +186,10 @@ def get_account_output(name: Optional[pulumi.Input[str]] = None,
182
186
  """
183
187
  The Account data source provides information about the existing Aiven Account.
184
188
 
189
+ > **This resource is deprecated**.
190
+
191
+ This resource will be removed in v5.0.0. Use `Organization` instead.
192
+
185
193
  ## Example Usage
186
194
 
187
195
  ```python
@@ -272,6 +272,10 @@ def get_account_authentication(account_id: Optional[str] = None,
272
272
  """
273
273
  The Account Authentication data source provides information about the existing Aiven Account Authentication.
274
274
 
275
+ > **This resource is deprecated**.
276
+
277
+ This resource is deprecated
278
+
275
279
 
276
280
  :param str account_id: The unique id of the account.
277
281
  :param str name: The name of the account authentication.
@@ -308,6 +312,10 @@ def get_account_authentication_output(account_id: Optional[pulumi.Input[str]] =
308
312
  """
309
313
  The Account Authentication data source provides information about the existing Aiven Account Authentication.
310
314
 
315
+ > **This resource is deprecated**.
316
+
317
+ This resource is deprecated
318
+
311
319
 
312
320
  :param str account_id: The unique id of the account.
313
321
  :param str name: The name of the account authentication.
@@ -115,6 +115,17 @@ def get_account_team(account_id: Optional[str] = None,
115
115
  """
116
116
  The Account Team data source provides information about the existing Account Team.
117
117
 
118
+ !> **Teams have been deprecated and are being migrated to groups**
119
+ **On 30 September 2024** the Account Owners team will transition to super admin. Super admin have full access to the organization.
120
+ The Account Owners and super admin are synced, so the removal of the Account Owners team will have no impact on existing permissions.
121
+ **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
122
+ this date. **On 2 December 2024** all teams will be deleted and the teams feature will be completely removed. View the
123
+ migration guide for more information on the changes and migrating to groups.
124
+
125
+ > **Important**
126
+ You can't delete the Account Owners team. **Deleting all other teams in your organization will disable the teams feature.**
127
+ You won't be able to create new teams or access your Account Owners team.
128
+
118
129
 
119
130
  :param str account_id: The unique account id
120
131
  :param str name: The account team name
@@ -138,6 +149,17 @@ def get_account_team_output(account_id: Optional[pulumi.Input[str]] = None,
138
149
  """
139
150
  The Account Team data source provides information about the existing Account Team.
140
151
 
152
+ !> **Teams have been deprecated and are being migrated to groups**
153
+ **On 30 September 2024** the Account Owners team will transition to super admin. Super admin have full access to the organization.
154
+ The Account Owners and super admin are synced, so the removal of the Account Owners team will have no impact on existing permissions.
155
+ **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
156
+ this date. **On 2 December 2024** all teams will be deleted and the teams feature will be completely removed. View the
157
+ migration guide for more information on the changes and migrating to groups.
158
+
159
+ > **Important**
160
+ You can't delete the Account Owners team. **Deleting all other teams in your organization will disable the teams feature.**
161
+ You won't be able to create new teams or access your Account Owners team.
162
+
141
163
 
142
164
  :param str account_id: The unique account id
143
165
  :param str name: The account team name
@@ -128,6 +128,17 @@ def get_account_team_member(account_id: Optional[str] = None,
128
128
  """
129
129
  The Account Team Member data source provides information about the existing Aiven Account Team Member.
130
130
 
131
+ !> **Teams have been deprecated and are being migrated to groups**
132
+ **On 30 September 2024** the Account Owners team will transition to super admin. Super admin have full access to the organization.
133
+ The Account Owners and super admin are synced, so the removal of the Account Owners team will have no impact on existing permissions.
134
+ **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
135
+ this date. **On 2 December 2024** all teams will be deleted and the teams feature will be completely removed. View the
136
+ migration guide for more information on the changes and migrating to groups.
137
+
138
+ > **Important**
139
+ You can't delete the Account Owners team. **Deleting all other teams in your organization will disable the teams feature.**
140
+ You won't be able to create new teams or access your Account Owners team.
141
+
131
142
 
132
143
  :param str account_id: The unique account id. Changing this property forces recreation of the resource.
133
144
  :param str team_id: An account team id. Changing this property forces recreation of the resource.
@@ -155,6 +166,17 @@ def get_account_team_member_output(account_id: Optional[pulumi.Input[str]] = Non
155
166
  """
156
167
  The Account Team Member data source provides information about the existing Aiven Account Team Member.
157
168
 
169
+ !> **Teams have been deprecated and are being migrated to groups**
170
+ **On 30 September 2024** the Account Owners team will transition to super admin. Super admin have full access to the organization.
171
+ The Account Owners and super admin are synced, so the removal of the Account Owners team will have no impact on existing permissions.
172
+ **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
173
+ this date. **On 2 December 2024** all teams will be deleted and the teams feature will be completely removed. View the
174
+ migration guide for more information on the changes and migrating to groups.
175
+
176
+ > **Important**
177
+ You can't delete the Account Owners team. **Deleting all other teams in your organization will disable the teams feature.**
178
+ You won't be able to create new teams or access your Account Owners team.
179
+
158
180
 
159
181
  :param str account_id: The unique account id. Changing this property forces recreation of the resource.
160
182
  :param str team_id: An account team id. Changing this property forces recreation of the resource.
@@ -104,6 +104,17 @@ def get_account_team_project(account_id: Optional[str] = None,
104
104
  """
105
105
  The Account Team Project data source provides information about the existing Account Team Project.
106
106
 
107
+ !> **Teams have been deprecated and are being migrated to groups**
108
+ **On 30 September 2024** the Account Owners team will transition to super admin. Super admin have full access to the organization.
109
+ The Account Owners and super admin are synced, so the removal of the Account Owners team will have no impact on existing permissions.
110
+ **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
111
+ this date. **On 2 December 2024** all teams will be deleted and the teams feature will be completely removed. View the
112
+ migration guide for more information on the changes and migrating to groups.
113
+
114
+ > **Important**
115
+ You can't delete the Account Owners team. **Deleting all other teams in your organization will disable the teams feature.**
116
+ You won't be able to create new teams or access your Account Owners team.
117
+
107
118
 
108
119
  :param str account_id: The unique account id
109
120
  :param str project_name: The name of an already existing project
@@ -129,6 +140,17 @@ def get_account_team_project_output(account_id: Optional[pulumi.Input[str]] = No
129
140
  """
130
141
  The Account Team Project data source provides information about the existing Account Team Project.
131
142
 
143
+ !> **Teams have been deprecated and are being migrated to groups**
144
+ **On 30 September 2024** the Account Owners team will transition to super admin. Super admin have full access to the organization.
145
+ The Account Owners and super admin are synced, so the removal of the Account Owners team will have no impact on existing permissions.
146
+ **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
147
+ this date. **On 2 December 2024** all teams will be deleted and the teams feature will be completely removed. View the
148
+ migration guide for more information on the changes and migrating to groups.
149
+
150
+ > **Important**
151
+ You can't delete the Account Owners team. **Deleting all other teams in your organization will disable the teams feature.**
152
+ You won't be able to create new teams or access your Account Owners team.
153
+
132
154
 
133
155
  :param str account_id: The unique account id
134
156
  :param str project_name: The name of an already existing project
@@ -394,6 +394,13 @@ def get_cassanda(project: Optional[str] = None,
394
394
  """
395
395
  Gets information about an Aiven for Apache Cassandra® service.
396
396
 
397
+ !> **End of life notice**
398
+ Aiven for Apache Cassandra® is entering its [end-of-life cycle](https://aiven.io/docs/platform/reference/end-of-life).
399
+ From **November 30, 2025**, it will not be possible to start a new Cassandra service, but existing services will continue to operate until end of life.
400
+ From **December 31, 2025**, all active Aiven for Apache Cassandra services are powered off and deleted, making data from these services inaccessible.
401
+ To ensure uninterrupted service, complete your migration out of Aiven for Apache Cassandra
402
+ before December 31, 2025. For further assistance, contact your account team.
403
+
397
404
  ## Example Usage
398
405
 
399
406
  ```python
@@ -451,6 +458,13 @@ def get_cassanda_output(project: Optional[pulumi.Input[str]] = None,
451
458
  """
452
459
  Gets information about an Aiven for Apache Cassandra® service.
453
460
 
461
+ !> **End of life notice**
462
+ Aiven for Apache Cassandra® is entering its [end-of-life cycle](https://aiven.io/docs/platform/reference/end-of-life).
463
+ From **November 30, 2025**, it will not be possible to start a new Cassandra service, but existing services will continue to operate until end of life.
464
+ From **December 31, 2025**, all active Aiven for Apache Cassandra services are powered off and deleted, making data from these services inaccessible.
465
+ To ensure uninterrupted service, complete your migration out of Aiven for Apache Cassandra
466
+ before December 31, 2025. For further assistance, contact your account team.
467
+
454
468
  ## Example Usage
455
469
 
456
470
  ```python