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
pulumi_aiven/m3db_user.py CHANGED
@@ -22,8 +22,8 @@ class M3dbUserArgs:
22
22
  The set of arguments for constructing a M3dbUser resource.
23
23
  :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.
24
24
  :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.
25
- :param pulumi.Input[str] username: The actual name of the M3DB User. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
26
- :param pulumi.Input[str] password: The password of the M3DB User.
25
+ :param pulumi.Input[str] username: Name of the M3DB service user. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
26
+ :param pulumi.Input[str] password: The M3DB service user's password.
27
27
  """
28
28
  pulumi.set(__self__, "project", project)
29
29
  pulumi.set(__self__, "service_name", service_name)
@@ -59,7 +59,7 @@ class M3dbUserArgs:
59
59
  @pulumi.getter
60
60
  def username(self) -> pulumi.Input[str]:
61
61
  """
62
- The actual name of the M3DB User. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
62
+ Name of the M3DB service user. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
63
63
  """
64
64
  return pulumi.get(self, "username")
65
65
 
@@ -71,7 +71,7 @@ class M3dbUserArgs:
71
71
  @pulumi.getter
72
72
  def password(self) -> Optional[pulumi.Input[str]]:
73
73
  """
74
- The password of the M3DB User.
74
+ The M3DB service user's password.
75
75
  """
76
76
  return pulumi.get(self, "password")
77
77
 
@@ -90,11 +90,11 @@ class _M3dbUserState:
90
90
  username: Optional[pulumi.Input[str]] = None):
91
91
  """
92
92
  Input properties used for looking up and filtering M3dbUser resources.
93
- :param pulumi.Input[str] password: The password of the M3DB User.
93
+ :param pulumi.Input[str] password: The M3DB service user's password.
94
94
  :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.
95
95
  :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.
96
- :param pulumi.Input[str] type: Type of the user account. Tells whether the user is the primary account or a regular account.
97
- :param pulumi.Input[str] username: The actual name of the M3DB User. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
96
+ :param pulumi.Input[str] type: User account type, such as primary or regular account.
97
+ :param pulumi.Input[str] username: Name of the M3DB service user. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
98
98
  """
99
99
  if password is not None:
100
100
  pulumi.set(__self__, "password", password)
@@ -111,7 +111,7 @@ class _M3dbUserState:
111
111
  @pulumi.getter
112
112
  def password(self) -> Optional[pulumi.Input[str]]:
113
113
  """
114
- The password of the M3DB User.
114
+ The M3DB service user's password.
115
115
  """
116
116
  return pulumi.get(self, "password")
117
117
 
@@ -147,7 +147,7 @@ class _M3dbUserState:
147
147
  @pulumi.getter
148
148
  def type(self) -> Optional[pulumi.Input[str]]:
149
149
  """
150
- Type of the user account. Tells whether the user is the primary account or a regular account.
150
+ User account type, such as primary or regular account.
151
151
  """
152
152
  return pulumi.get(self, "type")
153
153
 
@@ -159,7 +159,7 @@ class _M3dbUserState:
159
159
  @pulumi.getter
160
160
  def username(self) -> Optional[pulumi.Input[str]]:
161
161
  """
162
- The actual name of the M3DB User. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
162
+ Name of the M3DB service user. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
163
163
  """
164
164
  return pulumi.get(self, "username")
165
165
 
@@ -179,7 +179,7 @@ class M3dbUser(pulumi.CustomResource):
179
179
  username: Optional[pulumi.Input[str]] = None,
180
180
  __props__=None):
181
181
  """
182
- The M3DB User resource allows the creation and management of Aiven M3DB Users.
182
+ Creates and manages an Aiven for M3DB service user.
183
183
 
184
184
  ## Example Usage
185
185
 
@@ -187,25 +187,25 @@ class M3dbUser(pulumi.CustomResource):
187
187
  import pulumi
188
188
  import pulumi_aiven as aiven
189
189
 
190
- foo = aiven.M3dbUser("foo",
191
- service_name=bar["serviceName"],
192
- project="my-project",
193
- username="user-1",
194
- password="Test$1234")
190
+ example_service_user = aiven.M3dbUser("example_service_user",
191
+ service_name=example_m3db["serviceName"],
192
+ project=example_project["project"],
193
+ username="example-m3db-user",
194
+ password=service_user_pw)
195
195
  ```
196
196
 
197
197
  ## Import
198
198
 
199
199
  ```sh
200
- $ pulumi import aiven:index/m3dbUser:M3dbUser foo project/service_name/username
200
+ $ pulumi import aiven:index/m3dbUser:M3dbUser example_service_user PROJECT/SERVICE_NAME/USERNAME
201
201
  ```
202
202
 
203
203
  :param str resource_name: The name of the resource.
204
204
  :param pulumi.ResourceOptions opts: Options for the resource.
205
- :param pulumi.Input[str] password: The password of the M3DB User.
205
+ :param pulumi.Input[str] password: The M3DB service user's password.
206
206
  :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.
207
207
  :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.
208
- :param pulumi.Input[str] username: The actual name of the M3DB User. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
208
+ :param pulumi.Input[str] username: Name of the M3DB service user. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
209
209
  """
210
210
  ...
211
211
  @overload
@@ -214,7 +214,7 @@ class M3dbUser(pulumi.CustomResource):
214
214
  args: M3dbUserArgs,
215
215
  opts: Optional[pulumi.ResourceOptions] = None):
216
216
  """
217
- The M3DB User resource allows the creation and management of Aiven M3DB Users.
217
+ Creates and manages an Aiven for M3DB service user.
218
218
 
219
219
  ## Example Usage
220
220
 
@@ -222,17 +222,17 @@ class M3dbUser(pulumi.CustomResource):
222
222
  import pulumi
223
223
  import pulumi_aiven as aiven
224
224
 
225
- foo = aiven.M3dbUser("foo",
226
- service_name=bar["serviceName"],
227
- project="my-project",
228
- username="user-1",
229
- password="Test$1234")
225
+ example_service_user = aiven.M3dbUser("example_service_user",
226
+ service_name=example_m3db["serviceName"],
227
+ project=example_project["project"],
228
+ username="example-m3db-user",
229
+ password=service_user_pw)
230
230
  ```
231
231
 
232
232
  ## Import
233
233
 
234
234
  ```sh
235
- $ pulumi import aiven:index/m3dbUser:M3dbUser foo project/service_name/username
235
+ $ pulumi import aiven:index/m3dbUser:M3dbUser example_service_user PROJECT/SERVICE_NAME/USERNAME
236
236
  ```
237
237
 
238
238
  :param str resource_name: The name of the resource.
@@ -298,11 +298,11 @@ class M3dbUser(pulumi.CustomResource):
298
298
  :param str resource_name: The unique name of the resulting resource.
299
299
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
300
300
  :param pulumi.ResourceOptions opts: Options for the resource.
301
- :param pulumi.Input[str] password: The password of the M3DB User.
301
+ :param pulumi.Input[str] password: The M3DB service user's password.
302
302
  :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.
303
303
  :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.
304
- :param pulumi.Input[str] type: Type of the user account. Tells whether the user is the primary account or a regular account.
305
- :param pulumi.Input[str] username: The actual name of the M3DB User. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
304
+ :param pulumi.Input[str] type: User account type, such as primary or regular account.
305
+ :param pulumi.Input[str] username: Name of the M3DB service user. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
306
306
  """
307
307
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
308
308
 
@@ -319,7 +319,7 @@ class M3dbUser(pulumi.CustomResource):
319
319
  @pulumi.getter
320
320
  def password(self) -> pulumi.Output[str]:
321
321
  """
322
- The password of the M3DB User.
322
+ The M3DB service user's password.
323
323
  """
324
324
  return pulumi.get(self, "password")
325
325
 
@@ -343,7 +343,7 @@ class M3dbUser(pulumi.CustomResource):
343
343
  @pulumi.getter
344
344
  def type(self) -> pulumi.Output[str]:
345
345
  """
346
- Type of the user account. Tells whether the user is the primary account or a regular account.
346
+ User account type, such as primary or regular account.
347
347
  """
348
348
  return pulumi.get(self, "type")
349
349
 
@@ -351,7 +351,7 @@ class M3dbUser(pulumi.CustomResource):
351
351
  @pulumi.getter
352
352
  def username(self) -> pulumi.Output[str]:
353
353
  """
354
- The actual name of the M3DB User. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
354
+ Name of the M3DB service user. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
355
355
  """
356
356
  return pulumi.get(self, "username")
357
357
 
pulumi_aiven/my_sql.py CHANGED
@@ -34,7 +34,7 @@ class MySqlArgs:
34
34
  termination_protection: Optional[pulumi.Input[bool]] = None):
35
35
  """
36
36
  The set of arguments for constructing a MySql 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 MySqlArgs:
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 _MySqlState:
323
323
  :param pulumi.Input[str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
324
324
  :param pulumi.Input['MySqlMysqlArgs'] mysql: MySQL specific server provided values
325
325
  :param pulumi.Input['MySqlMysqlUserConfigArgs'] mysql_user_config: Mysql user configurable settings
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 _MySqlState:
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
 
@@ -803,7 +803,7 @@ class MySql(pulumi.CustomResource):
803
803
  :param pulumi.Input[str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
804
804
  :param pulumi.Input[Union['MySqlMysqlArgs', 'MySqlMysqlArgsDict']] mysql: MySQL specific server provided values
805
805
  :param pulumi.Input[Union['MySqlMysqlUserConfigArgs', 'MySqlMysqlUserConfigArgsDict']] mysql_user_config: Mysql user configurable settings
806
- :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).
806
+ :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).
807
807
  :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.
808
808
  :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.
809
809
  :param pulumi.Input[Sequence[pulumi.Input[Union['MySqlServiceIntegrationArgs', 'MySqlServiceIntegrationArgsDict']]]] service_integrations: Service integrations to specify when creating a service. Not applied after initial service creation
@@ -986,7 +986,7 @@ class MySql(pulumi.CustomResource):
986
986
  :param pulumi.Input[str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
987
987
  :param pulumi.Input[Union['MySqlMysqlArgs', 'MySqlMysqlArgsDict']] mysql: MySQL specific server provided values
988
988
  :param pulumi.Input[Union['MySqlMysqlUserConfigArgs', 'MySqlMysqlUserConfigArgsDict']] mysql_user_config: Mysql user configurable settings
989
- :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).
989
+ :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).
990
990
  :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.
991
991
  :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.
992
992
  :param pulumi.Input[str] service_host: The hostname of the service.
@@ -1138,7 +1138,7 @@ class MySql(pulumi.CustomResource):
1138
1138
  @pulumi.getter
1139
1139
  def plan(self) -> pulumi.Output[str]:
1140
1140
  """
1141
- 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).
1141
+ 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).
1142
1142
  """
1143
1143
  return pulumi.get(self, "plan")
1144
1144
 
@@ -34,7 +34,7 @@ class OpenSearchArgs:
34
34
  termination_protection: Optional[pulumi.Input[bool]] = None):
35
35
  """
36
36
  The set of arguments for constructing a OpenSearch 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 OpenSearchArgs:
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 _OpenSearchState:
323
323
  :param pulumi.Input[str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
324
324
  :param pulumi.Input['OpenSearchOpensearchUserConfigArgs'] opensearch_user_config: Opensearch user configurable settings
325
325
  :param pulumi.Input[Sequence[pulumi.Input['OpenSearchOpensearchArgs']]] opensearches: OpenSearch server provided values
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 _OpenSearchState:
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
 
@@ -804,7 +804,7 @@ class OpenSearch(pulumi.CustomResource):
804
804
  :param pulumi.Input[str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
805
805
  :param pulumi.Input[Union['OpenSearchOpensearchUserConfigArgs', 'OpenSearchOpensearchUserConfigArgsDict']] opensearch_user_config: Opensearch user configurable settings
806
806
  :param pulumi.Input[Sequence[pulumi.Input[Union['OpenSearchOpensearchArgs', 'OpenSearchOpensearchArgsDict']]]] opensearches: OpenSearch server provided values
807
- :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).
807
+ :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).
808
808
  :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.
809
809
  :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.
810
810
  :param pulumi.Input[Sequence[pulumi.Input[Union['OpenSearchServiceIntegrationArgs', 'OpenSearchServiceIntegrationArgsDict']]]] service_integrations: Service integrations to specify when creating a service. Not applied after initial service creation
@@ -988,7 +988,7 @@ class OpenSearch(pulumi.CustomResource):
988
988
  :param pulumi.Input[str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
989
989
  :param pulumi.Input[Union['OpenSearchOpensearchUserConfigArgs', 'OpenSearchOpensearchUserConfigArgsDict']] opensearch_user_config: Opensearch user configurable settings
990
990
  :param pulumi.Input[Sequence[pulumi.Input[Union['OpenSearchOpensearchArgs', 'OpenSearchOpensearchArgsDict']]]] opensearches: OpenSearch server provided values
991
- :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).
991
+ :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).
992
992
  :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.
993
993
  :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.
994
994
  :param pulumi.Input[str] service_host: The hostname of the service.
@@ -1140,7 +1140,7 @@ class OpenSearch(pulumi.CustomResource):
1140
1140
  @pulumi.getter
1141
1141
  def plan(self) -> pulumi.Output[str]:
1142
1142
  """
1143
- 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).
1143
+ 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).
1144
1144
  """
1145
1145
  return pulumi.get(self, "plan")
1146
1146