pulumi-aiven 6.17.2__py3-none-any.whl → 6.18.0__py3-none-any.whl

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

Potentially problematic release.


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

Files changed (40) hide show
  1. pulumi_aiven/_inputs.py +1650 -1106
  2. pulumi_aiven/_utilities.py +35 -0
  3. pulumi_aiven/account.py +9 -27
  4. pulumi_aiven/account_authentication.py +10 -4
  5. pulumi_aiven/account_team.py +16 -8
  6. pulumi_aiven/account_team_member.py +16 -8
  7. pulumi_aiven/account_team_project.py +16 -8
  8. pulumi_aiven/azure_privatelink_connection_approval.py +2 -2
  9. pulumi_aiven/billing_group.py +3 -9
  10. pulumi_aiven/cassandra.py +3 -9
  11. pulumi_aiven/clickhouse.py +3 -9
  12. pulumi_aiven/dragonfly.py +3 -9
  13. pulumi_aiven/flink.py +3 -9
  14. pulumi_aiven/flink_application_version.py +6 -18
  15. pulumi_aiven/get_project.py +1 -1
  16. pulumi_aiven/grafana.py +3 -9
  17. pulumi_aiven/influx_db.py +3 -9
  18. pulumi_aiven/kafka.py +6 -18
  19. pulumi_aiven/kafka_connect.py +3 -9
  20. pulumi_aiven/kafka_mirror_maker.py +3 -9
  21. pulumi_aiven/m3_aggregator.py +3 -9
  22. pulumi_aiven/m3_db.py +3 -9
  23. pulumi_aiven/my_sql.py +3 -9
  24. pulumi_aiven/open_search.py +3 -9
  25. pulumi_aiven/organization.py +2 -2
  26. pulumi_aiven/organization_group_project.py +2 -2
  27. pulumi_aiven/organization_user.py +4 -12
  28. pulumi_aiven/organization_user_group.py +2 -2
  29. pulumi_aiven/organization_user_group_member.py +2 -2
  30. pulumi_aiven/organizational_unit.py +2 -2
  31. pulumi_aiven/outputs.py +3107 -2245
  32. pulumi_aiven/pg.py +3 -9
  33. pulumi_aiven/project.py +18 -36
  34. pulumi_aiven/pulumi-plugin.json +1 -1
  35. pulumi_aiven/redis.py +3 -9
  36. pulumi_aiven/transit_gateway_vpc_attachment.py +3 -9
  37. {pulumi_aiven-6.17.2.dist-info → pulumi_aiven-6.18.0.dist-info}/METADATA +1 -1
  38. {pulumi_aiven-6.17.2.dist-info → pulumi_aiven-6.18.0.dist-info}/RECORD +40 -40
  39. {pulumi_aiven-6.17.2.dist-info → pulumi_aiven-6.18.0.dist-info}/WHEEL +1 -1
  40. {pulumi_aiven-6.17.2.dist-info → pulumi_aiven-6.18.0.dist-info}/top_level.txt +0 -0
@@ -116,13 +116,11 @@ class FlinkApplicationVersionArgs:
116
116
 
117
117
  @property
118
118
  @pulumi.getter
119
+ @_utilities.deprecated("""This field is deprecated and will be removed in the next major release. Use `sink` instead.""")
119
120
  def sinks(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['FlinkApplicationVersionSinkArgs']]]]:
120
121
  """
121
122
  Application sinks
122
123
  """
123
- warnings.warn("""This field is deprecated and will be removed in the next major release. Use `sink` instead.""", DeprecationWarning)
124
- pulumi.log.warn("""sinks is deprecated: This field is deprecated and will be removed in the next major release. Use `sink` instead.""")
125
-
126
124
  return pulumi.get(self, "sinks")
127
125
 
128
126
  @sinks.setter
@@ -143,13 +141,11 @@ class FlinkApplicationVersionArgs:
143
141
 
144
142
  @property
145
143
  @pulumi.getter
144
+ @_utilities.deprecated("""This field is deprecated and will be removed in the next major release. Use `source` instead.""")
146
145
  def sources(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['FlinkApplicationVersionSourceArgs']]]]:
147
146
  """
148
147
  Application sources
149
148
  """
150
- warnings.warn("""This field is deprecated and will be removed in the next major release. Use `source` instead.""", DeprecationWarning)
151
- pulumi.log.warn("""sources is deprecated: This field is deprecated and will be removed in the next major release. Use `source` instead.""")
152
-
153
149
  return pulumi.get(self, "sources")
154
150
 
155
151
  @sources.setter
@@ -304,13 +300,11 @@ class _FlinkApplicationVersionState:
304
300
 
305
301
  @property
306
302
  @pulumi.getter
303
+ @_utilities.deprecated("""This field is deprecated and will be removed in the next major release. Use `sink` instead.""")
307
304
  def sinks(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['FlinkApplicationVersionSinkArgs']]]]:
308
305
  """
309
306
  Application sinks
310
307
  """
311
- warnings.warn("""This field is deprecated and will be removed in the next major release. Use `sink` instead.""", DeprecationWarning)
312
- pulumi.log.warn("""sinks is deprecated: This field is deprecated and will be removed in the next major release. Use `sink` instead.""")
313
-
314
308
  return pulumi.get(self, "sinks")
315
309
 
316
310
  @sinks.setter
@@ -331,13 +325,11 @@ class _FlinkApplicationVersionState:
331
325
 
332
326
  @property
333
327
  @pulumi.getter
328
+ @_utilities.deprecated("""This field is deprecated and will be removed in the next major release. Use `source` instead.""")
334
329
  def sources(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['FlinkApplicationVersionSourceArgs']]]]:
335
330
  """
336
331
  Application sources
337
332
  """
338
- warnings.warn("""This field is deprecated and will be removed in the next major release. Use `source` instead.""", DeprecationWarning)
339
- pulumi.log.warn("""sources is deprecated: This field is deprecated and will be removed in the next major release. Use `source` instead.""")
340
-
341
333
  return pulumi.get(self, "sources")
342
334
 
343
335
  @sources.setter
@@ -670,13 +662,11 @@ class FlinkApplicationVersion(pulumi.CustomResource):
670
662
 
671
663
  @property
672
664
  @pulumi.getter
665
+ @_utilities.deprecated("""This field is deprecated and will be removed in the next major release. Use `sink` instead.""")
673
666
  def sinks(self) -> pulumi.Output[Optional[Sequence['outputs.FlinkApplicationVersionSink']]]:
674
667
  """
675
668
  Application sinks
676
669
  """
677
- warnings.warn("""This field is deprecated and will be removed in the next major release. Use `sink` instead.""", DeprecationWarning)
678
- pulumi.log.warn("""sinks is deprecated: This field is deprecated and will be removed in the next major release. Use `sink` instead.""")
679
-
680
670
  return pulumi.get(self, "sinks")
681
671
 
682
672
  @property
@@ -689,13 +679,11 @@ class FlinkApplicationVersion(pulumi.CustomResource):
689
679
 
690
680
  @property
691
681
  @pulumi.getter
682
+ @_utilities.deprecated("""This field is deprecated and will be removed in the next major release. Use `source` instead.""")
692
683
  def sources(self) -> pulumi.Output[Optional[Sequence['outputs.FlinkApplicationVersionSource']]]:
693
684
  """
694
685
  Application sources
695
686
  """
696
- warnings.warn("""This field is deprecated and will be removed in the next major release. Use `source` instead.""", DeprecationWarning)
697
- pulumi.log.warn("""sources is deprecated: This field is deprecated and will be removed in the next major release. Use `source` instead.""")
698
-
699
687
  return pulumi.get(self, "sources")
700
688
 
701
689
  @property
@@ -145,7 +145,7 @@ class GetProjectResult:
145
145
  @pulumi.getter(name="parentId")
146
146
  def parent_id(self) -> str:
147
147
  """
148
- Link a project to an [organization, organizational unit,](https://aiven.io/docs/platform/concepts/projects_accounts_access) or account by using its ID. To set up proper dependencies please refer to this variable as a reference.
148
+ Link a project to an [organization, organizational unit,](https://aiven.io/docs/platform/concepts/orgs-units-projects) or account by using its ID. To set up proper dependencies please refer to this variable as a reference.
149
149
  """
150
150
  return pulumi.get(self, "parent_id")
151
151
 
pulumi_aiven/grafana.py CHANGED
@@ -135,13 +135,11 @@ class GrafanaArgs:
135
135
 
136
136
  @property
137
137
  @pulumi.getter(name="diskSpace")
138
+ @_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.""")
138
139
  def disk_space(self) -> Optional[pulumi.Input[str]]:
139
140
  """
140
141
  Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
141
142
  """
142
- 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)
143
- 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.""")
144
-
145
143
  return pulumi.get(self, "disk_space")
146
144
 
147
145
  @disk_space.setter
@@ -441,13 +439,11 @@ class _GrafanaState:
441
439
 
442
440
  @property
443
441
  @pulumi.getter(name="diskSpace")
442
+ @_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.""")
444
443
  def disk_space(self) -> Optional[pulumi.Input[str]]:
445
444
  """
446
445
  Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
447
446
  """
448
- 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)
449
- 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.""")
450
-
451
447
  return pulumi.get(self, "disk_space")
452
448
 
453
449
  @disk_space.setter
@@ -1058,13 +1054,11 @@ class Grafana(pulumi.CustomResource):
1058
1054
 
1059
1055
  @property
1060
1056
  @pulumi.getter(name="diskSpace")
1057
+ @_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.""")
1061
1058
  def disk_space(self) -> pulumi.Output[Optional[str]]:
1062
1059
  """
1063
1060
  Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
1064
1061
  """
1065
- 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)
1066
- 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.""")
1067
-
1068
1062
  return pulumi.get(self, "disk_space")
1069
1063
 
1070
1064
  @property
pulumi_aiven/influx_db.py CHANGED
@@ -180,14 +180,12 @@ class InfluxDbArgs:
180
180
 
181
181
  @property
182
182
  @pulumi.getter(name="diskSpace")
183
+ @_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.""")
183
184
  def disk_space(self) -> Optional[pulumi.Input[str]]:
184
185
  """
185
186
  Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing
186
187
  will result in the service rebalancing.
187
188
  """
188
- 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)
189
- 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.""")
190
-
191
189
  return pulumi.get(self, "disk_space")
192
190
 
193
191
  @disk_space.setter
@@ -511,14 +509,12 @@ class _InfluxDbState:
511
509
 
512
510
  @property
513
511
  @pulumi.getter(name="diskSpace")
512
+ @_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.""")
514
513
  def disk_space(self) -> Optional[pulumi.Input[str]]:
515
514
  """
516
515
  Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing
517
516
  will result in the service rebalancing.
518
517
  """
519
- 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)
520
- 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.""")
521
-
522
518
  return pulumi.get(self, "disk_space")
523
519
 
524
520
  @disk_space.setter
@@ -1141,14 +1137,12 @@ class InfluxDb(pulumi.CustomResource):
1141
1137
 
1142
1138
  @property
1143
1139
  @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.""")
1144
1141
  def disk_space(self) -> pulumi.Output[Optional[str]]:
1145
1142
  """
1146
1143
  Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing
1147
1144
  will result in the service rebalancing.
1148
1145
  """
1149
- 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)
1150
- 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.""")
1151
-
1152
1146
  return pulumi.get(self, "disk_space")
1153
1147
 
1154
1148
  @property
pulumi_aiven/kafka.py CHANGED
@@ -169,13 +169,11 @@ class KafkaArgs:
169
169
 
170
170
  @property
171
171
  @pulumi.getter(name="diskSpace")
172
+ @_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.""")
172
173
  def disk_space(self) -> Optional[pulumi.Input[str]]:
173
174
  """
174
175
  Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
175
176
  """
176
- 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)
177
- 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.""")
178
-
179
177
  return pulumi.get(self, "disk_space")
180
178
 
181
179
  @disk_space.setter
@@ -208,13 +206,11 @@ class KafkaArgs:
208
206
 
209
207
  @property
210
208
  @pulumi.getter
209
+ @_utilities.deprecated("""Usage of this field is discouraged.""")
211
210
  def karapace(self) -> Optional[pulumi.Input[bool]]:
212
211
  """
213
212
  Switch the service to use [Karapace](https://aiven.io/docs/products/kafka/karapace) for schema registry and REST proxy.
214
213
  """
215
- warnings.warn("""Usage of this field is discouraged.""", DeprecationWarning)
216
- pulumi.log.warn("""karapace is deprecated: Usage of this field is discouraged.""")
217
-
218
214
  return pulumi.get(self, "karapace")
219
215
 
220
216
  @karapace.setter
@@ -501,13 +497,11 @@ class _KafkaState:
501
497
 
502
498
  @property
503
499
  @pulumi.getter(name="diskSpace")
500
+ @_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.""")
504
501
  def disk_space(self) -> Optional[pulumi.Input[str]]:
505
502
  """
506
503
  Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
507
504
  """
508
- 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)
509
- 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.""")
510
-
511
505
  return pulumi.get(self, "disk_space")
512
506
 
513
507
  @disk_space.setter
@@ -588,13 +582,11 @@ class _KafkaState:
588
582
 
589
583
  @property
590
584
  @pulumi.getter
585
+ @_utilities.deprecated("""Usage of this field is discouraged.""")
591
586
  def karapace(self) -> Optional[pulumi.Input[bool]]:
592
587
  """
593
588
  Switch the service to use [Karapace](https://aiven.io/docs/products/kafka/karapace) for schema registry and REST proxy.
594
589
  """
595
- warnings.warn("""Usage of this field is discouraged.""", DeprecationWarning)
596
- pulumi.log.warn("""karapace is deprecated: Usage of this field is discouraged.""")
597
-
598
590
  return pulumi.get(self, "karapace")
599
591
 
600
592
  @karapace.setter
@@ -1173,13 +1165,11 @@ class Kafka(pulumi.CustomResource):
1173
1165
 
1174
1166
  @property
1175
1167
  @pulumi.getter(name="diskSpace")
1168
+ @_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.""")
1176
1169
  def disk_space(self) -> pulumi.Output[Optional[str]]:
1177
1170
  """
1178
1171
  Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
1179
1172
  """
1180
- 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)
1181
- 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.""")
1182
-
1183
1173
  return pulumi.get(self, "disk_space")
1184
1174
 
1185
1175
  @property
@@ -1232,13 +1222,11 @@ class Kafka(pulumi.CustomResource):
1232
1222
 
1233
1223
  @property
1234
1224
  @pulumi.getter
1225
+ @_utilities.deprecated("""Usage of this field is discouraged.""")
1235
1226
  def karapace(self) -> pulumi.Output[Optional[bool]]:
1236
1227
  """
1237
1228
  Switch the service to use [Karapace](https://aiven.io/docs/products/kafka/karapace) for schema registry and REST proxy.
1238
1229
  """
1239
- warnings.warn("""Usage of this field is discouraged.""", DeprecationWarning)
1240
- pulumi.log.warn("""karapace is deprecated: Usage of this field is discouraged.""")
1241
-
1242
1230
  return pulumi.get(self, "karapace")
1243
1231
 
1244
1232
  @property
@@ -142,13 +142,11 @@ class KafkaConnectArgs:
142
142
 
143
143
  @property
144
144
  @pulumi.getter(name="diskSpace")
145
+ @_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.""")
145
146
  def disk_space(self) -> Optional[pulumi.Input[str]]:
146
147
  """
147
148
  Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
148
149
  """
149
- 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)
150
- 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.""")
151
-
152
150
  return pulumi.get(self, "disk_space")
153
151
 
154
152
  @disk_space.setter
@@ -420,13 +418,11 @@ class _KafkaConnectState:
420
418
 
421
419
  @property
422
420
  @pulumi.getter(name="diskSpace")
421
+ @_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.""")
423
422
  def disk_space(self) -> Optional[pulumi.Input[str]]:
424
423
  """
425
424
  Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
426
425
  """
427
- 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)
428
- 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.""")
429
-
430
426
  return pulumi.get(self, "disk_space")
431
427
 
432
428
  @disk_space.setter
@@ -1024,13 +1020,11 @@ class KafkaConnect(pulumi.CustomResource):
1024
1020
 
1025
1021
  @property
1026
1022
  @pulumi.getter(name="diskSpace")
1023
+ @_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.""")
1027
1024
  def disk_space(self) -> pulumi.Output[Optional[str]]:
1028
1025
  """
1029
1026
  Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
1030
1027
  """
1031
- 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)
1032
- 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.""")
1033
-
1034
1028
  return pulumi.get(self, "disk_space")
1035
1029
 
1036
1030
  @property
@@ -142,13 +142,11 @@ class KafkaMirrorMakerArgs:
142
142
 
143
143
  @property
144
144
  @pulumi.getter(name="diskSpace")
145
+ @_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.""")
145
146
  def disk_space(self) -> Optional[pulumi.Input[str]]:
146
147
  """
147
148
  Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
148
149
  """
149
- 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)
150
- 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.""")
151
-
152
150
  return pulumi.get(self, "disk_space")
153
151
 
154
152
  @disk_space.setter
@@ -420,13 +418,11 @@ class _KafkaMirrorMakerState:
420
418
 
421
419
  @property
422
420
  @pulumi.getter(name="diskSpace")
421
+ @_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.""")
423
422
  def disk_space(self) -> Optional[pulumi.Input[str]]:
424
423
  """
425
424
  Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
426
425
  """
427
- 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)
428
- 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.""")
429
-
430
426
  return pulumi.get(self, "disk_space")
431
427
 
432
428
  @disk_space.setter
@@ -1020,13 +1016,11 @@ class KafkaMirrorMaker(pulumi.CustomResource):
1020
1016
 
1021
1017
  @property
1022
1018
  @pulumi.getter(name="diskSpace")
1019
+ @_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.""")
1023
1020
  def disk_space(self) -> pulumi.Output[Optional[str]]:
1024
1021
  """
1025
1022
  Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
1026
1023
  """
1027
- 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)
1028
- 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.""")
1029
-
1030
1024
  return pulumi.get(self, "disk_space")
1031
1025
 
1032
1026
  @property
@@ -146,13 +146,11 @@ class M3AggregatorArgs:
146
146
 
147
147
  @property
148
148
  @pulumi.getter(name="diskSpace")
149
+ @_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.""")
149
150
  def disk_space(self) -> Optional[pulumi.Input[str]]:
150
151
  """
151
152
  Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
152
153
  """
153
- 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)
154
- 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.""")
155
-
156
154
  return pulumi.get(self, "disk_space")
157
155
 
158
156
  @disk_space.setter
@@ -440,13 +438,11 @@ class _M3AggregatorState:
440
438
 
441
439
  @property
442
440
  @pulumi.getter(name="diskSpace")
441
+ @_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.""")
443
442
  def disk_space(self) -> Optional[pulumi.Input[str]]:
444
443
  """
445
444
  Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
446
445
  """
447
- 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)
448
- 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.""")
449
-
450
446
  return pulumi.get(self, "disk_space")
451
447
 
452
448
  @disk_space.setter
@@ -1053,13 +1049,11 @@ class M3Aggregator(pulumi.CustomResource):
1053
1049
 
1054
1050
  @property
1055
1051
  @pulumi.getter(name="diskSpace")
1052
+ @_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.""")
1056
1053
  def disk_space(self) -> pulumi.Output[Optional[str]]:
1057
1054
  """
1058
1055
  Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
1059
1056
  """
1060
- 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)
1061
- 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.""")
1062
-
1063
1057
  return pulumi.get(self, "disk_space")
1064
1058
 
1065
1059
  @property
pulumi_aiven/m3_db.py CHANGED
@@ -146,13 +146,11 @@ class M3DbArgs:
146
146
 
147
147
  @property
148
148
  @pulumi.getter(name="diskSpace")
149
+ @_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.""")
149
150
  def disk_space(self) -> Optional[pulumi.Input[str]]:
150
151
  """
151
152
  Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
152
153
  """
153
- 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)
154
- 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.""")
155
-
156
154
  return pulumi.get(self, "disk_space")
157
155
 
158
156
  @disk_space.setter
@@ -440,13 +438,11 @@ class _M3DbState:
440
438
 
441
439
  @property
442
440
  @pulumi.getter(name="diskSpace")
441
+ @_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.""")
443
442
  def disk_space(self) -> Optional[pulumi.Input[str]]:
444
443
  """
445
444
  Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
446
445
  """
447
- 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)
448
- 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.""")
449
-
450
446
  return pulumi.get(self, "disk_space")
451
447
 
452
448
  @disk_space.setter
@@ -1061,13 +1057,11 @@ class M3Db(pulumi.CustomResource):
1061
1057
 
1062
1058
  @property
1063
1059
  @pulumi.getter(name="diskSpace")
1060
+ @_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.""")
1064
1061
  def disk_space(self) -> pulumi.Output[Optional[str]]:
1065
1062
  """
1066
1063
  Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
1067
1064
  """
1068
- 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)
1069
- 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.""")
1070
-
1071
1065
  return pulumi.get(self, "disk_space")
1072
1066
 
1073
1067
  @property
pulumi_aiven/my_sql.py CHANGED
@@ -146,13 +146,11 @@ class MySqlArgs:
146
146
 
147
147
  @property
148
148
  @pulumi.getter(name="diskSpace")
149
+ @_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.""")
149
150
  def disk_space(self) -> Optional[pulumi.Input[str]]:
150
151
  """
151
152
  Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
152
153
  """
153
- 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)
154
- 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.""")
155
-
156
154
  return pulumi.get(self, "disk_space")
157
155
 
158
156
  @disk_space.setter
@@ -440,13 +438,11 @@ class _MySqlState:
440
438
 
441
439
  @property
442
440
  @pulumi.getter(name="diskSpace")
441
+ @_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.""")
443
442
  def disk_space(self) -> Optional[pulumi.Input[str]]:
444
443
  """
445
444
  Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
446
445
  """
447
- 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)
448
- 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.""")
449
-
450
446
  return pulumi.get(self, "disk_space")
451
447
 
452
448
  @disk_space.setter
@@ -1067,13 +1063,11 @@ class MySql(pulumi.CustomResource):
1067
1063
 
1068
1064
  @property
1069
1065
  @pulumi.getter(name="diskSpace")
1066
+ @_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.""")
1070
1067
  def disk_space(self) -> pulumi.Output[Optional[str]]:
1071
1068
  """
1072
1069
  Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
1073
1070
  """
1074
- 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)
1075
- 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.""")
1076
-
1077
1071
  return pulumi.get(self, "disk_space")
1078
1072
 
1079
1073
  @property
@@ -146,13 +146,11 @@ class OpenSearchArgs:
146
146
 
147
147
  @property
148
148
  @pulumi.getter(name="diskSpace")
149
+ @_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.""")
149
150
  def disk_space(self) -> Optional[pulumi.Input[str]]:
150
151
  """
151
152
  Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
152
153
  """
153
- 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)
154
- 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.""")
155
-
156
154
  return pulumi.get(self, "disk_space")
157
155
 
158
156
  @disk_space.setter
@@ -440,13 +438,11 @@ class _OpenSearchState:
440
438
 
441
439
  @property
442
440
  @pulumi.getter(name="diskSpace")
441
+ @_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.""")
443
442
  def disk_space(self) -> Optional[pulumi.Input[str]]:
444
443
  """
445
444
  Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
446
445
  """
447
- 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)
448
- 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.""")
449
-
450
446
  return pulumi.get(self, "disk_space")
451
447
 
452
448
  @disk_space.setter
@@ -1069,13 +1065,11 @@ class OpenSearch(pulumi.CustomResource):
1069
1065
 
1070
1066
  @property
1071
1067
  @pulumi.getter(name="diskSpace")
1068
+ @_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.""")
1072
1069
  def disk_space(self) -> pulumi.Output[Optional[str]]:
1073
1070
  """
1074
1071
  Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
1075
1072
  """
1076
- 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)
1077
- 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.""")
1078
-
1079
1073
  return pulumi.get(self, "disk_space")
1080
1074
 
1081
1075
  @property
@@ -142,7 +142,7 @@ class Organization(pulumi.CustomResource):
142
142
  timeouts: Optional[pulumi.Input[pulumi.InputType['OrganizationTimeoutsArgs']]] = None,
143
143
  __props__=None):
144
144
  """
145
- Creates and manages an [organization](https://aiven.io/docs/platform/concepts/projects_accounts_access).
145
+ Creates and manages an [organization](https://aiven.io/docs/platform/concepts/orgs-units-projects).
146
146
 
147
147
  ## Example Usage
148
148
 
@@ -170,7 +170,7 @@ class Organization(pulumi.CustomResource):
170
170
  args: Optional[OrganizationArgs] = None,
171
171
  opts: Optional[pulumi.ResourceOptions] = None):
172
172
  """
173
- Creates and manages an [organization](https://aiven.io/docs/platform/concepts/projects_accounts_access).
173
+ Creates and manages an [organization](https://aiven.io/docs/platform/concepts/orgs-units-projects).
174
174
 
175
175
  ## Example Usage
176
176
 
@@ -157,7 +157,7 @@ class OrganizationGroupProject(pulumi.CustomResource):
157
157
  timeouts: Optional[pulumi.Input[pulumi.InputType['OrganizationGroupProjectTimeoutsArgs']]] = None,
158
158
  __props__=None):
159
159
  """
160
- Adds and manages a [group](https://aiven.io/docs/platform/concepts/projects_accounts_access#groups) of users as [members of a project](https://aiven.io/docs/platform/reference/project-member-privileges).
160
+ Adds and manages a [group](https://aiven.io/docs/platform/howto/list-groups) of users as [members of a project](https://aiven.io/docs/platform/reference/project-member-privileges).
161
161
 
162
162
  ## Example Usage
163
163
 
@@ -201,7 +201,7 @@ class OrganizationGroupProject(pulumi.CustomResource):
201
201
  args: OrganizationGroupProjectArgs,
202
202
  opts: Optional[pulumi.ResourceOptions] = None):
203
203
  """
204
- Adds and manages a [group](https://aiven.io/docs/platform/concepts/projects_accounts_access#groups) of users as [members of a project](https://aiven.io/docs/platform/reference/project-member-privileges).
204
+ Adds and manages a [group](https://aiven.io/docs/platform/howto/list-groups) of users as [members of a project](https://aiven.io/docs/platform/reference/project-member-privileges).
205
205
 
206
206
  ## Example Usage
207
207