pulumi-aiven 6.24.0a1726291362__py3-none-any.whl → 6.24.1__py3-none-any.whl

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

Potentially problematic release.


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

Files changed (55) hide show
  1. pulumi_aiven/__init__.py +9 -0
  2. pulumi_aiven/_inputs.py +524 -4
  3. pulumi_aiven/cassandra.py +24 -24
  4. pulumi_aiven/cassandra_user.py +40 -40
  5. pulumi_aiven/clickhouse.py +7 -7
  6. pulumi_aiven/connection_pool.py +41 -41
  7. pulumi_aiven/dragonfly.py +7 -7
  8. pulumi_aiven/flink.py +7 -7
  9. pulumi_aiven/get_cassanda.py +8 -8
  10. pulumi_aiven/get_cassandra.py +8 -8
  11. pulumi_aiven/get_cassandra_user.py +15 -15
  12. pulumi_aiven/get_clickhouse.py +1 -1
  13. pulumi_aiven/get_connection_pool.py +14 -14
  14. pulumi_aiven/get_dragonfly.py +1 -1
  15. pulumi_aiven/get_flink.py +1 -1
  16. pulumi_aiven/get_grafana.py +8 -8
  17. pulumi_aiven/get_kafka.py +1 -1
  18. pulumi_aiven/get_kafka_connect.py +1 -1
  19. pulumi_aiven/get_kafka_mirror_maker.py +1 -1
  20. pulumi_aiven/get_kafka_topic.py +27 -1
  21. pulumi_aiven/get_m3_aggregator.py +1 -1
  22. pulumi_aiven/get_m3_db.py +8 -8
  23. pulumi_aiven/get_m3db_user.py +13 -13
  24. pulumi_aiven/get_my_sql.py +1 -1
  25. pulumi_aiven/get_open_search.py +1 -1
  26. pulumi_aiven/get_pg.py +1 -1
  27. pulumi_aiven/get_pg_user.py +1 -1
  28. pulumi_aiven/get_redis.py +1 -1
  29. pulumi_aiven/get_service_integration_endpoint.py +40 -1
  30. pulumi_aiven/get_thanos.py +1 -1
  31. pulumi_aiven/get_valkey.py +1 -1
  32. pulumi_aiven/grafana.py +24 -24
  33. pulumi_aiven/influx_db.py +7 -7
  34. pulumi_aiven/kafka.py +7 -7
  35. pulumi_aiven/kafka_connect.py +7 -7
  36. pulumi_aiven/kafka_mirror_maker.py +7 -7
  37. pulumi_aiven/kafka_topic.py +95 -1
  38. pulumi_aiven/m3_aggregator.py +7 -7
  39. pulumi_aiven/m3_db.py +26 -26
  40. pulumi_aiven/m3db_user.py +32 -32
  41. pulumi_aiven/my_sql.py +7 -7
  42. pulumi_aiven/open_search.py +7 -7
  43. pulumi_aiven/organization_permission.py +298 -0
  44. pulumi_aiven/outputs.py +798 -8
  45. pulumi_aiven/pg.py +7 -7
  46. pulumi_aiven/pg_user.py +21 -7
  47. pulumi_aiven/pulumi-plugin.json +1 -1
  48. pulumi_aiven/redis.py +7 -7
  49. pulumi_aiven/service_integration_endpoint.py +141 -0
  50. pulumi_aiven/thanos.py +7 -7
  51. pulumi_aiven/valkey.py +7 -7
  52. {pulumi_aiven-6.24.0a1726291362.dist-info → pulumi_aiven-6.24.1.dist-info}/METADATA +1 -1
  53. {pulumi_aiven-6.24.0a1726291362.dist-info → pulumi_aiven-6.24.1.dist-info}/RECORD +55 -54
  54. {pulumi_aiven-6.24.0a1726291362.dist-info → pulumi_aiven-6.24.1.dist-info}/WHEEL +1 -1
  55. {pulumi_aiven-6.24.0a1726291362.dist-info → pulumi_aiven-6.24.1.dist-info}/top_level.txt +0 -0
@@ -24,11 +24,11 @@ class ConnectionPoolArgs:
24
24
  """
25
25
  The set of arguments for constructing a ConnectionPool resource.
26
26
  :param pulumi.Input[str] database_name: The name of the database the pool connects to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
27
- :param pulumi.Input[str] pool_name: The name of the created pool. Changing this property forces recreation of the resource.
27
+ :param pulumi.Input[str] pool_name: Name of the pool. Changing this property forces recreation of the resource.
28
28
  :param pulumi.Input[str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
29
29
  :param pulumi.Input[str] service_name: The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
30
- :param pulumi.Input[str] pool_mode: The mode the pool operates in. The possible values are `session`, `transaction` and `statement`. The default value is `transaction`.
31
- :param pulumi.Input[int] pool_size: The number of connections the pool may create towards the backend server. This does not affect the number of incoming connections, which is always a much larger number. The default value is `10`.
30
+ :param pulumi.Input[str] pool_mode: The [operational mode](https://aiven.io/docs/products/postgresql/concepts/pg-connection-pooling#pooling-modes). The possible values are `session`, `transaction` and `statement`. The default value is `transaction`.
31
+ :param pulumi.Input[int] pool_size: The number of PostgreSQL server connections this pool can use at a time. This does not affect the number of incoming connections. Each pool can handle a minimum of 5000 client connections. The default value is `10`.
32
32
  :param pulumi.Input[str] username: The name of the service user used to connect to the database. To set up proper dependencies please refer to this variable as a reference.
33
33
  """
34
34
  pulumi.set(__self__, "database_name", database_name)
@@ -58,7 +58,7 @@ class ConnectionPoolArgs:
58
58
  @pulumi.getter(name="poolName")
59
59
  def pool_name(self) -> pulumi.Input[str]:
60
60
  """
61
- The name of the created pool. Changing this property forces recreation of the resource.
61
+ Name of the pool. Changing this property forces recreation of the resource.
62
62
  """
63
63
  return pulumi.get(self, "pool_name")
64
64
 
@@ -94,7 +94,7 @@ class ConnectionPoolArgs:
94
94
  @pulumi.getter(name="poolMode")
95
95
  def pool_mode(self) -> Optional[pulumi.Input[str]]:
96
96
  """
97
- The mode the pool operates in. The possible values are `session`, `transaction` and `statement`. The default value is `transaction`.
97
+ The [operational mode](https://aiven.io/docs/products/postgresql/concepts/pg-connection-pooling#pooling-modes). The possible values are `session`, `transaction` and `statement`. The default value is `transaction`.
98
98
  """
99
99
  return pulumi.get(self, "pool_mode")
100
100
 
@@ -106,7 +106,7 @@ class ConnectionPoolArgs:
106
106
  @pulumi.getter(name="poolSize")
107
107
  def pool_size(self) -> Optional[pulumi.Input[int]]:
108
108
  """
109
- The number of connections the pool may create towards the backend server. This does not affect the number of incoming connections, which is always a much larger number. The default value is `10`.
109
+ The number of PostgreSQL server connections this pool can use at a time. This does not affect the number of incoming connections. Each pool can handle a minimum of 5000 client connections. The default value is `10`.
110
110
  """
111
111
  return pulumi.get(self, "pool_size")
112
112
 
@@ -140,11 +140,11 @@ class _ConnectionPoolState:
140
140
  username: Optional[pulumi.Input[str]] = None):
141
141
  """
142
142
  Input properties used for looking up and filtering ConnectionPool resources.
143
- :param pulumi.Input[str] connection_uri: The URI for connecting to the pool
143
+ :param pulumi.Input[str] connection_uri: The URI for connecting to the pool.
144
144
  :param pulumi.Input[str] database_name: The name of the database the pool connects to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
145
- :param pulumi.Input[str] pool_mode: The mode the pool operates in. The possible values are `session`, `transaction` and `statement`. The default value is `transaction`.
146
- :param pulumi.Input[str] pool_name: The name of the created pool. Changing this property forces recreation of the resource.
147
- :param pulumi.Input[int] pool_size: The number of connections the pool may create towards the backend server. This does not affect the number of incoming connections, which is always a much larger number. The default value is `10`.
145
+ :param pulumi.Input[str] pool_mode: The [operational mode](https://aiven.io/docs/products/postgresql/concepts/pg-connection-pooling#pooling-modes). The possible values are `session`, `transaction` and `statement`. The default value is `transaction`.
146
+ :param pulumi.Input[str] pool_name: Name of the pool. Changing this property forces recreation of the resource.
147
+ :param pulumi.Input[int] pool_size: The number of PostgreSQL server connections this pool can use at a time. This does not affect the number of incoming connections. Each pool can handle a minimum of 5000 client connections. The default value is `10`.
148
148
  :param pulumi.Input[str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
149
149
  :param pulumi.Input[str] service_name: The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
150
150
  :param pulumi.Input[str] username: The name of the service user used to connect to the database. To set up proper dependencies please refer to this variable as a reference.
@@ -170,7 +170,7 @@ class _ConnectionPoolState:
170
170
  @pulumi.getter(name="connectionUri")
171
171
  def connection_uri(self) -> Optional[pulumi.Input[str]]:
172
172
  """
173
- The URI for connecting to the pool
173
+ The URI for connecting to the pool.
174
174
  """
175
175
  return pulumi.get(self, "connection_uri")
176
176
 
@@ -194,7 +194,7 @@ class _ConnectionPoolState:
194
194
  @pulumi.getter(name="poolMode")
195
195
  def pool_mode(self) -> Optional[pulumi.Input[str]]:
196
196
  """
197
- The mode the pool operates in. The possible values are `session`, `transaction` and `statement`. The default value is `transaction`.
197
+ The [operational mode](https://aiven.io/docs/products/postgresql/concepts/pg-connection-pooling#pooling-modes). The possible values are `session`, `transaction` and `statement`. The default value is `transaction`.
198
198
  """
199
199
  return pulumi.get(self, "pool_mode")
200
200
 
@@ -206,7 +206,7 @@ class _ConnectionPoolState:
206
206
  @pulumi.getter(name="poolName")
207
207
  def pool_name(self) -> Optional[pulumi.Input[str]]:
208
208
  """
209
- The name of the created pool. Changing this property forces recreation of the resource.
209
+ Name of the pool. Changing this property forces recreation of the resource.
210
210
  """
211
211
  return pulumi.get(self, "pool_name")
212
212
 
@@ -218,7 +218,7 @@ class _ConnectionPoolState:
218
218
  @pulumi.getter(name="poolSize")
219
219
  def pool_size(self) -> Optional[pulumi.Input[int]]:
220
220
  """
221
- The number of connections the pool may create towards the backend server. This does not affect the number of incoming connections, which is always a much larger number. The default value is `10`.
221
+ The number of PostgreSQL server connections this pool can use at a time. This does not affect the number of incoming connections. Each pool can handle a minimum of 5000 client connections. The default value is `10`.
222
222
  """
223
223
  return pulumi.get(self, "pool_size")
224
224
 
@@ -277,7 +277,7 @@ class ConnectionPool(pulumi.CustomResource):
277
277
  username: Optional[pulumi.Input[str]] = None,
278
278
  __props__=None):
279
279
  """
280
- The Connection Pool resource allows the creation and management of Aiven Connection Pools.
280
+ Creates and manages a [connection pool](https://aiven.io/docs/products/postgresql/concepts/pg-connection-pooling) in an Aiven for PostgreSQL® service.
281
281
 
282
282
  ## Example Usage
283
283
 
@@ -285,28 +285,28 @@ class ConnectionPool(pulumi.CustomResource):
285
285
  import pulumi
286
286
  import pulumi_aiven as aiven
287
287
 
288
- mytestpool = aiven.ConnectionPool("mytestpool",
289
- project=myproject["project"],
290
- service_name=mypg["serviceName"],
291
- database_name=mypgdatabase["databaseName"],
288
+ main = aiven.ConnectionPool("main",
289
+ project=example_project["project"],
290
+ service_name=example_postgres["serviceName"],
291
+ database_name=main_aiven_pg_database["databaseName"],
292
292
  pool_mode="transaction",
293
- pool_name="mypool",
293
+ pool_name="example-pool",
294
294
  pool_size=10,
295
- username=mypguser["username"])
295
+ username=example_user["username"])
296
296
  ```
297
297
 
298
298
  ## Import
299
299
 
300
300
  ```sh
301
- $ pulumi import aiven:index/connectionPool:ConnectionPool mytestpool PROJECT/SERVICE_NAME/POOL_NAME
301
+ $ pulumi import aiven:index/connectionPool:ConnectionPool main PROJECT/SERVICE_NAME/POOL_NAME
302
302
  ```
303
303
 
304
304
  :param str resource_name: The name of the resource.
305
305
  :param pulumi.ResourceOptions opts: Options for the resource.
306
306
  :param pulumi.Input[str] database_name: The name of the database the pool connects to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
307
- :param pulumi.Input[str] pool_mode: The mode the pool operates in. The possible values are `session`, `transaction` and `statement`. The default value is `transaction`.
308
- :param pulumi.Input[str] pool_name: The name of the created pool. Changing this property forces recreation of the resource.
309
- :param pulumi.Input[int] pool_size: The number of connections the pool may create towards the backend server. This does not affect the number of incoming connections, which is always a much larger number. The default value is `10`.
307
+ :param pulumi.Input[str] pool_mode: The [operational mode](https://aiven.io/docs/products/postgresql/concepts/pg-connection-pooling#pooling-modes). The possible values are `session`, `transaction` and `statement`. The default value is `transaction`.
308
+ :param pulumi.Input[str] pool_name: Name of the pool. Changing this property forces recreation of the resource.
309
+ :param pulumi.Input[int] pool_size: The number of PostgreSQL server connections this pool can use at a time. This does not affect the number of incoming connections. Each pool can handle a minimum of 5000 client connections. The default value is `10`.
310
310
  :param pulumi.Input[str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
311
311
  :param pulumi.Input[str] service_name: The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
312
312
  :param pulumi.Input[str] username: The name of the service user used to connect to the database. To set up proper dependencies please refer to this variable as a reference.
@@ -318,7 +318,7 @@ class ConnectionPool(pulumi.CustomResource):
318
318
  args: ConnectionPoolArgs,
319
319
  opts: Optional[pulumi.ResourceOptions] = None):
320
320
  """
321
- The Connection Pool resource allows the creation and management of Aiven Connection Pools.
321
+ Creates and manages a [connection pool](https://aiven.io/docs/products/postgresql/concepts/pg-connection-pooling) in an Aiven for PostgreSQL® service.
322
322
 
323
323
  ## Example Usage
324
324
 
@@ -326,20 +326,20 @@ class ConnectionPool(pulumi.CustomResource):
326
326
  import pulumi
327
327
  import pulumi_aiven as aiven
328
328
 
329
- mytestpool = aiven.ConnectionPool("mytestpool",
330
- project=myproject["project"],
331
- service_name=mypg["serviceName"],
332
- database_name=mypgdatabase["databaseName"],
329
+ main = aiven.ConnectionPool("main",
330
+ project=example_project["project"],
331
+ service_name=example_postgres["serviceName"],
332
+ database_name=main_aiven_pg_database["databaseName"],
333
333
  pool_mode="transaction",
334
- pool_name="mypool",
334
+ pool_name="example-pool",
335
335
  pool_size=10,
336
- username=mypguser["username"])
336
+ username=example_user["username"])
337
337
  ```
338
338
 
339
339
  ## Import
340
340
 
341
341
  ```sh
342
- $ pulumi import aiven:index/connectionPool:ConnectionPool mytestpool PROJECT/SERVICE_NAME/POOL_NAME
342
+ $ pulumi import aiven:index/connectionPool:ConnectionPool main PROJECT/SERVICE_NAME/POOL_NAME
343
343
  ```
344
344
 
345
345
  :param str resource_name: The name of the resource.
@@ -416,11 +416,11 @@ class ConnectionPool(pulumi.CustomResource):
416
416
  :param str resource_name: The unique name of the resulting resource.
417
417
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
418
418
  :param pulumi.ResourceOptions opts: Options for the resource.
419
- :param pulumi.Input[str] connection_uri: The URI for connecting to the pool
419
+ :param pulumi.Input[str] connection_uri: The URI for connecting to the pool.
420
420
  :param pulumi.Input[str] database_name: The name of the database the pool connects to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
421
- :param pulumi.Input[str] pool_mode: The mode the pool operates in. The possible values are `session`, `transaction` and `statement`. The default value is `transaction`.
422
- :param pulumi.Input[str] pool_name: The name of the created pool. Changing this property forces recreation of the resource.
423
- :param pulumi.Input[int] pool_size: The number of connections the pool may create towards the backend server. This does not affect the number of incoming connections, which is always a much larger number. The default value is `10`.
421
+ :param pulumi.Input[str] pool_mode: The [operational mode](https://aiven.io/docs/products/postgresql/concepts/pg-connection-pooling#pooling-modes). The possible values are `session`, `transaction` and `statement`. The default value is `transaction`.
422
+ :param pulumi.Input[str] pool_name: Name of the pool. Changing this property forces recreation of the resource.
423
+ :param pulumi.Input[int] pool_size: The number of PostgreSQL server connections this pool can use at a time. This does not affect the number of incoming connections. Each pool can handle a minimum of 5000 client connections. The default value is `10`.
424
424
  :param pulumi.Input[str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
425
425
  :param pulumi.Input[str] service_name: The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
426
426
  :param pulumi.Input[str] username: The name of the service user used to connect to the database. To set up proper dependencies please refer to this variable as a reference.
@@ -443,7 +443,7 @@ class ConnectionPool(pulumi.CustomResource):
443
443
  @pulumi.getter(name="connectionUri")
444
444
  def connection_uri(self) -> pulumi.Output[str]:
445
445
  """
446
- The URI for connecting to the pool
446
+ The URI for connecting to the pool.
447
447
  """
448
448
  return pulumi.get(self, "connection_uri")
449
449
 
@@ -459,7 +459,7 @@ class ConnectionPool(pulumi.CustomResource):
459
459
  @pulumi.getter(name="poolMode")
460
460
  def pool_mode(self) -> pulumi.Output[Optional[str]]:
461
461
  """
462
- The mode the pool operates in. The possible values are `session`, `transaction` and `statement`. The default value is `transaction`.
462
+ The [operational mode](https://aiven.io/docs/products/postgresql/concepts/pg-connection-pooling#pooling-modes). The possible values are `session`, `transaction` and `statement`. The default value is `transaction`.
463
463
  """
464
464
  return pulumi.get(self, "pool_mode")
465
465
 
@@ -467,7 +467,7 @@ class ConnectionPool(pulumi.CustomResource):
467
467
  @pulumi.getter(name="poolName")
468
468
  def pool_name(self) -> pulumi.Output[str]:
469
469
  """
470
- The name of the created pool. Changing this property forces recreation of the resource.
470
+ Name of the pool. Changing this property forces recreation of the resource.
471
471
  """
472
472
  return pulumi.get(self, "pool_name")
473
473
 
@@ -475,7 +475,7 @@ class ConnectionPool(pulumi.CustomResource):
475
475
  @pulumi.getter(name="poolSize")
476
476
  def pool_size(self) -> pulumi.Output[Optional[int]]:
477
477
  """
478
- The number of connections the pool may create towards the backend server. This does not affect the number of incoming connections, which is always a much larger number. The default value is `10`.
478
+ The number of PostgreSQL server connections this pool can use at a time. This does not affect the number of incoming connections. Each pool can handle a minimum of 5000 client connections. The default value is `10`.
479
479
  """
480
480
  return pulumi.get(self, "pool_size")
481
481
 
pulumi_aiven/dragonfly.py CHANGED
@@ -34,7 +34,7 @@ class DragonflyArgs:
34
34
  termination_protection: Optional[pulumi.Input[bool]] = None):
35
35
  """
36
36
  The set of arguments for constructing a Dragonfly resource.
37
- :param pulumi.Input[str] plan: Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seem from the [Aiven pricing page](https://aiven.io/pricing).
37
+ :param pulumi.Input[str] plan: Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seen from the [Aiven pricing page](https://aiven.io/pricing).
38
38
  :param pulumi.Input[str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
39
39
  :param pulumi.Input[str] service_name: Specifies the actual name of the service. The name cannot be changed later without destroying and re-creating the service so name should be picked based on intended service usage rather than current attributes.
40
40
  :param pulumi.Input[str] additional_disk_space: Add [disk storage](https://aiven.io/docs/platform/howto/add-storage-space) in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart and there might be a short downtime for services with no HA capabilities.
@@ -88,7 +88,7 @@ class DragonflyArgs:
88
88
  @pulumi.getter
89
89
  def plan(self) -> pulumi.Input[str]:
90
90
  """
91
- Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seem from the [Aiven pricing page](https://aiven.io/pricing).
91
+ Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seen from the [Aiven pricing page](https://aiven.io/pricing).
92
92
  """
93
93
  return pulumi.get(self, "plan")
94
94
 
@@ -323,7 +323,7 @@ class _DragonflyState:
323
323
  :param pulumi.Input['DragonflyDragonflyUserConfigArgs'] dragonfly_user_config: Dragonfly user configurable settings
324
324
  :param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
325
325
  :param pulumi.Input[str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
326
- :param pulumi.Input[str] plan: Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seem from the [Aiven pricing page](https://aiven.io/pricing).
326
+ :param pulumi.Input[str] plan: Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seen from the [Aiven pricing page](https://aiven.io/pricing).
327
327
  :param pulumi.Input[str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
328
328
  :param pulumi.Input[str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service is not run inside a VPC. When set, the value should be given as a reference to set up dependencies correctly and the VPC must be in the same cloud and region as the service itself. Project can be freely moved to and from VPC after creation but doing so triggers migration to new servers so the operation can take significant amount of time to complete if the service has a lot of data.
329
329
  :param pulumi.Input[str] service_host: The hostname of the service.
@@ -549,7 +549,7 @@ class _DragonflyState:
549
549
  @pulumi.getter
550
550
  def plan(self) -> Optional[pulumi.Input[str]]:
551
551
  """
552
- Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seem from the [Aiven pricing page](https://aiven.io/pricing).
552
+ Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seen from the [Aiven pricing page](https://aiven.io/pricing).
553
553
  """
554
554
  return pulumi.get(self, "plan")
555
555
 
@@ -794,7 +794,7 @@ class Dragonfly(pulumi.CustomResource):
794
794
  :param pulumi.Input[Union['DragonflyDragonflyUserConfigArgs', 'DragonflyDragonflyUserConfigArgsDict']] dragonfly_user_config: Dragonfly user configurable settings
795
795
  :param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
796
796
  :param pulumi.Input[str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
797
- :param pulumi.Input[str] plan: Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seem from the [Aiven pricing page](https://aiven.io/pricing).
797
+ :param pulumi.Input[str] plan: Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seen from the [Aiven pricing page](https://aiven.io/pricing).
798
798
  :param pulumi.Input[str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
799
799
  :param pulumi.Input[str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service is not run inside a VPC. When set, the value should be given as a reference to set up dependencies correctly and the VPC must be in the same cloud and region as the service itself. Project can be freely moved to and from VPC after creation but doing so triggers migration to new servers so the operation can take significant amount of time to complete if the service has a lot of data.
800
800
  :param pulumi.Input[Sequence[pulumi.Input[Union['DragonflyServiceIntegrationArgs', 'DragonflyServiceIntegrationArgsDict']]]] service_integrations: Service integrations to specify when creating a service. Not applied after initial service creation
@@ -968,7 +968,7 @@ class Dragonfly(pulumi.CustomResource):
968
968
  :param pulumi.Input[Union['DragonflyDragonflyUserConfigArgs', 'DragonflyDragonflyUserConfigArgsDict']] dragonfly_user_config: Dragonfly user configurable settings
969
969
  :param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
970
970
  :param pulumi.Input[str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
971
- :param pulumi.Input[str] plan: Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seem from the [Aiven pricing page](https://aiven.io/pricing).
971
+ :param pulumi.Input[str] plan: Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seen from the [Aiven pricing page](https://aiven.io/pricing).
972
972
  :param pulumi.Input[str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
973
973
  :param pulumi.Input[str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service is not run inside a VPC. When set, the value should be given as a reference to set up dependencies correctly and the VPC must be in the same cloud and region as the service itself. Project can be freely moved to and from VPC after creation but doing so triggers migration to new servers so the operation can take significant amount of time to complete if the service has a lot of data.
974
974
  :param pulumi.Input[str] service_host: The hostname of the service.
@@ -1120,7 +1120,7 @@ class Dragonfly(pulumi.CustomResource):
1120
1120
  @pulumi.getter
1121
1121
  def plan(self) -> pulumi.Output[str]:
1122
1122
  """
1123
- Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seem from the [Aiven pricing page](https://aiven.io/pricing).
1123
+ 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).
1124
1124
  """
1125
1125
  return pulumi.get(self, "plan")
1126
1126
 
pulumi_aiven/flink.py CHANGED
@@ -34,7 +34,7 @@ class FlinkArgs:
34
34
  termination_protection: Optional[pulumi.Input[bool]] = None):
35
35
  """
36
36
  The set of arguments for constructing a Flink resource.
37
- :param pulumi.Input[str] plan: Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seem from the [Aiven pricing page](https://aiven.io/pricing).
37
+ :param pulumi.Input[str] plan: Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seen from the [Aiven pricing page](https://aiven.io/pricing).
38
38
  :param pulumi.Input[str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
39
39
  :param pulumi.Input[str] service_name: Specifies the actual name of the service. The name cannot be changed later without destroying and re-creating the service so name should be picked based on intended service usage rather than current attributes.
40
40
  :param pulumi.Input[str] additional_disk_space: Add [disk storage](https://aiven.io/docs/platform/howto/add-storage-space) in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart and there might be a short downtime for services with no HA capabilities.
@@ -88,7 +88,7 @@ class FlinkArgs:
88
88
  @pulumi.getter
89
89
  def plan(self) -> pulumi.Input[str]:
90
90
  """
91
- Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seem from the [Aiven pricing page](https://aiven.io/pricing).
91
+ Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seen from the [Aiven pricing page](https://aiven.io/pricing).
92
92
  """
93
93
  return pulumi.get(self, "plan")
94
94
 
@@ -323,7 +323,7 @@ class _FlinkState:
323
323
  :param pulumi.Input['FlinkFlinkUserConfigArgs'] flink_user_config: Flink user configurable settings
324
324
  :param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
325
325
  :param pulumi.Input[str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
326
- :param pulumi.Input[str] plan: Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seem from the [Aiven pricing page](https://aiven.io/pricing).
326
+ :param pulumi.Input[str] plan: Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seen from the [Aiven pricing page](https://aiven.io/pricing).
327
327
  :param pulumi.Input[str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
328
328
  :param pulumi.Input[str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service is not run inside a VPC. When set, the value should be given as a reference to set up dependencies correctly and the VPC must be in the same cloud and region as the service itself. Project can be freely moved to and from VPC after creation but doing so triggers migration to new servers so the operation can take significant amount of time to complete if the service has a lot of data.
329
329
  :param pulumi.Input[str] service_host: The hostname of the service.
@@ -549,7 +549,7 @@ class _FlinkState:
549
549
  @pulumi.getter
550
550
  def plan(self) -> Optional[pulumi.Input[str]]:
551
551
  """
552
- Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seem from the [Aiven pricing page](https://aiven.io/pricing).
552
+ Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seen from the [Aiven pricing page](https://aiven.io/pricing).
553
553
  """
554
554
  return pulumi.get(self, "plan")
555
555
 
@@ -796,7 +796,7 @@ class Flink(pulumi.CustomResource):
796
796
  :param pulumi.Input[Union['FlinkFlinkUserConfigArgs', 'FlinkFlinkUserConfigArgsDict']] flink_user_config: Flink user configurable settings
797
797
  :param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
798
798
  :param pulumi.Input[str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
799
- :param pulumi.Input[str] plan: Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seem from the [Aiven pricing page](https://aiven.io/pricing).
799
+ :param pulumi.Input[str] plan: Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seen from the [Aiven pricing page](https://aiven.io/pricing).
800
800
  :param pulumi.Input[str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
801
801
  :param pulumi.Input[str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service is not run inside a VPC. When set, the value should be given as a reference to set up dependencies correctly and the VPC must be in the same cloud and region as the service itself. Project can be freely moved to and from VPC after creation but doing so triggers migration to new servers so the operation can take significant amount of time to complete if the service has a lot of data.
802
802
  :param pulumi.Input[Sequence[pulumi.Input[Union['FlinkServiceIntegrationArgs', 'FlinkServiceIntegrationArgsDict']]]] service_integrations: Service integrations to specify when creating a service. Not applied after initial service creation
@@ -972,7 +972,7 @@ class Flink(pulumi.CustomResource):
972
972
  :param pulumi.Input[Union['FlinkFlinkUserConfigArgs', 'FlinkFlinkUserConfigArgsDict']] flink_user_config: Flink user configurable settings
973
973
  :param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
974
974
  :param pulumi.Input[str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
975
- :param pulumi.Input[str] plan: Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seem from the [Aiven pricing page](https://aiven.io/pricing).
975
+ :param pulumi.Input[str] plan: Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seen from the [Aiven pricing page](https://aiven.io/pricing).
976
976
  :param pulumi.Input[str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
977
977
  :param pulumi.Input[str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service is not run inside a VPC. When set, the value should be given as a reference to set up dependencies correctly and the VPC must be in the same cloud and region as the service itself. Project can be freely moved to and from VPC after creation but doing so triggers migration to new servers so the operation can take significant amount of time to complete if the service has a lot of data.
978
978
  :param pulumi.Input[str] service_host: The hostname of the service.
@@ -1124,7 +1124,7 @@ class Flink(pulumi.CustomResource):
1124
1124
  @pulumi.getter
1125
1125
  def plan(self) -> pulumi.Output[str]:
1126
1126
  """
1127
- Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seem from the [Aiven pricing page](https://aiven.io/pricing).
1127
+ 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).
1128
1128
  """
1129
1129
  return pulumi.get(self, "plan")
1130
1130
 
@@ -133,7 +133,7 @@ class GetCassandaResult:
133
133
  @pulumi.getter
134
134
  def cassandras(self) -> Sequence['outputs.GetCassandaCassandraResult']:
135
135
  """
136
- Cassandra server provided values
136
+ Values provided by the Cassandra server.
137
137
  """
138
138
  return pulumi.get(self, "cassandras")
139
139
 
@@ -221,7 +221,7 @@ class GetCassandaResult:
221
221
  @pulumi.getter
222
222
  def plan(self) -> str:
223
223
  """
224
- Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seem from the [Aiven pricing page](https://aiven.io/pricing).
224
+ 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).
225
225
  """
226
226
  return pulumi.get(self, "plan")
227
227
 
@@ -387,7 +387,7 @@ def get_cassanda(project: Optional[str] = None,
387
387
  service_name: Optional[str] = None,
388
388
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetCassandaResult:
389
389
  """
390
- The Cassandra data source provides information about the existing Aiven Cassandra service.
390
+ Gets information about an Aiven for Apache Cassandra® service.
391
391
 
392
392
  ## Example Usage
393
393
 
@@ -395,8 +395,8 @@ def get_cassanda(project: Optional[str] = None,
395
395
  import pulumi
396
396
  import pulumi_aiven as aiven
397
397
 
398
- bar = aiven.get_cassandra(project=foo["project"],
399
- service_name="<SERVICE_NAME>")
398
+ example_cassandra = aiven.get_cassandra(project=example_project["project"],
399
+ service_name="example-cassandra-service")
400
400
  ```
401
401
 
402
402
 
@@ -447,7 +447,7 @@ def get_cassanda_output(project: Optional[pulumi.Input[str]] = None,
447
447
  service_name: Optional[pulumi.Input[str]] = None,
448
448
  opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetCassandaResult]:
449
449
  """
450
- The Cassandra data source provides information about the existing Aiven Cassandra service.
450
+ Gets information about an Aiven for Apache Cassandra® service.
451
451
 
452
452
  ## Example Usage
453
453
 
@@ -455,8 +455,8 @@ def get_cassanda_output(project: Optional[pulumi.Input[str]] = None,
455
455
  import pulumi
456
456
  import pulumi_aiven as aiven
457
457
 
458
- bar = aiven.get_cassandra(project=foo["project"],
459
- service_name="<SERVICE_NAME>")
458
+ example_cassandra = aiven.get_cassandra(project=example_project["project"],
459
+ service_name="example-cassandra-service")
460
460
  ```
461
461
 
462
462
 
@@ -131,7 +131,7 @@ class GetCassandraResult:
131
131
  @pulumi.getter
132
132
  def cassandras(self) -> Sequence['outputs.GetCassandraCassandraResult']:
133
133
  """
134
- Cassandra server provided values
134
+ Values provided by the Cassandra server.
135
135
  """
136
136
  return pulumi.get(self, "cassandras")
137
137
 
@@ -219,7 +219,7 @@ class GetCassandraResult:
219
219
  @pulumi.getter
220
220
  def plan(self) -> str:
221
221
  """
222
- Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seem from the [Aiven pricing page](https://aiven.io/pricing).
222
+ 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).
223
223
  """
224
224
  return pulumi.get(self, "plan")
225
225
 
@@ -385,7 +385,7 @@ def get_cassandra(project: Optional[str] = None,
385
385
  service_name: Optional[str] = None,
386
386
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetCassandraResult:
387
387
  """
388
- The Cassandra data source provides information about the existing Aiven Cassandra service.
388
+ Gets information about an Aiven for Apache Cassandra® service.
389
389
 
390
390
  ## Example Usage
391
391
 
@@ -393,8 +393,8 @@ def get_cassandra(project: Optional[str] = None,
393
393
  import pulumi
394
394
  import pulumi_aiven as aiven
395
395
 
396
- bar = aiven.get_cassandra(project=foo["project"],
397
- service_name="<SERVICE_NAME>")
396
+ example_cassandra = aiven.get_cassandra(project=example_project["project"],
397
+ service_name="example-cassandra-service")
398
398
  ```
399
399
 
400
400
 
@@ -444,7 +444,7 @@ def get_cassandra_output(project: Optional[pulumi.Input[str]] = None,
444
444
  service_name: Optional[pulumi.Input[str]] = None,
445
445
  opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetCassandraResult]:
446
446
  """
447
- The Cassandra data source provides information about the existing Aiven Cassandra service.
447
+ Gets information about an Aiven for Apache Cassandra® service.
448
448
 
449
449
  ## Example Usage
450
450
 
@@ -452,8 +452,8 @@ def get_cassandra_output(project: Optional[pulumi.Input[str]] = None,
452
452
  import pulumi
453
453
  import pulumi_aiven as aiven
454
454
 
455
- bar = aiven.get_cassandra(project=foo["project"],
456
- service_name="<SERVICE_NAME>")
455
+ example_cassandra = aiven.get_cassandra(project=example_project["project"],
456
+ service_name="example-cassandra-service")
457
457
  ```
458
458
 
459
459
 
@@ -51,7 +51,7 @@ class GetCassandraUserResult:
51
51
  @pulumi.getter(name="accessCert")
52
52
  def access_cert(self) -> str:
53
53
  """
54
- Access certificate for the user if applicable for the service in question
54
+ Access certificate for the user.
55
55
  """
56
56
  return pulumi.get(self, "access_cert")
57
57
 
@@ -59,7 +59,7 @@ class GetCassandraUserResult:
59
59
  @pulumi.getter(name="accessKey")
60
60
  def access_key(self) -> str:
61
61
  """
62
- Access certificate key for the user if applicable for the service in question
62
+ Access certificate key for the user.
63
63
  """
64
64
  return pulumi.get(self, "access_key")
65
65
 
@@ -75,7 +75,7 @@ class GetCassandraUserResult:
75
75
  @pulumi.getter
76
76
  def password(self) -> str:
77
77
  """
78
- The password of the Cassandra User.
78
+ The Cassandra service user's password.
79
79
  """
80
80
  return pulumi.get(self, "password")
81
81
 
@@ -99,7 +99,7 @@ class GetCassandraUserResult:
99
99
  @pulumi.getter
100
100
  def type(self) -> str:
101
101
  """
102
- Type of the user account. Tells whether the user is the primary account or a regular account.
102
+ User account type, such as primary or regular account.
103
103
  """
104
104
  return pulumi.get(self, "type")
105
105
 
@@ -107,7 +107,7 @@ class GetCassandraUserResult:
107
107
  @pulumi.getter
108
108
  def username(self) -> str:
109
109
  """
110
- The actual name of the Cassandra User. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
110
+ Name of the Cassandra service user. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
111
111
  """
112
112
  return pulumi.get(self, "username")
113
113
 
@@ -133,7 +133,7 @@ def get_cassandra_user(project: Optional[str] = None,
133
133
  username: Optional[str] = None,
134
134
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetCassandraUserResult:
135
135
  """
136
- The Cassandra User data source provides information about the existing Aiven Cassandra User.
136
+ Gets information about an Aiven for Apache Cassandra® service user.
137
137
 
138
138
  ## Example Usage
139
139
 
@@ -141,15 +141,15 @@ def get_cassandra_user(project: Optional[str] = None,
141
141
  import pulumi
142
142
  import pulumi_aiven as aiven
143
143
 
144
- user = aiven.get_cassandra_user(service_name="my-service",
145
- project="my-project",
146
- username="user1")
144
+ example_service_user = aiven.get_cassandra_user(service_name=example_cassandra["serviceName"],
145
+ project=example_project["project"],
146
+ username="example-cassandra-user")
147
147
  ```
148
148
 
149
149
 
150
150
  :param str project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
151
151
  :param str service_name: The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
152
- :param str username: The actual name of the Cassandra User. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
152
+ :param str username: Name of the Cassandra service user. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
153
153
  """
154
154
  __args__ = dict()
155
155
  __args__['project'] = project
@@ -175,7 +175,7 @@ def get_cassandra_user_output(project: Optional[pulumi.Input[str]] = None,
175
175
  username: Optional[pulumi.Input[str]] = None,
176
176
  opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetCassandraUserResult]:
177
177
  """
178
- The Cassandra User data source provides information about the existing Aiven Cassandra User.
178
+ Gets information about an Aiven for Apache Cassandra® service user.
179
179
 
180
180
  ## Example Usage
181
181
 
@@ -183,14 +183,14 @@ def get_cassandra_user_output(project: Optional[pulumi.Input[str]] = None,
183
183
  import pulumi
184
184
  import pulumi_aiven as aiven
185
185
 
186
- user = aiven.get_cassandra_user(service_name="my-service",
187
- project="my-project",
188
- username="user1")
186
+ example_service_user = aiven.get_cassandra_user(service_name=example_cassandra["serviceName"],
187
+ project=example_project["project"],
188
+ username="example-cassandra-user")
189
189
  ```
190
190
 
191
191
 
192
192
  :param str project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
193
193
  :param str service_name: The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
194
- :param str username: The actual name of the Cassandra User. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
194
+ :param str username: Name of the Cassandra service user. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
195
195
  """
196
196
  ...