pulumi-aiven 6.34.0a1739377923__py3-none-any.whl → 6.34.0a1739509609__py3-none-any.whl

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

Potentially problematic release.


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

Files changed (39) hide show
  1. pulumi_aiven/_inputs.py +37 -33
  2. pulumi_aiven/account.py +6 -2
  3. pulumi_aiven/account_authentication.py +4 -2
  4. pulumi_aiven/account_team.py +2 -6
  5. pulumi_aiven/account_team_member.py +10 -6
  6. pulumi_aiven/account_team_project.py +10 -6
  7. pulumi_aiven/cassandra.py +14 -0
  8. pulumi_aiven/cassandra_user.py +14 -0
  9. pulumi_aiven/get_account.py +8 -0
  10. pulumi_aiven/get_account_authentication.py +8 -0
  11. pulumi_aiven/get_account_team.py +22 -0
  12. pulumi_aiven/get_account_team_member.py +22 -0
  13. pulumi_aiven/get_account_team_project.py +22 -0
  14. pulumi_aiven/get_cassanda.py +14 -0
  15. pulumi_aiven/get_cassandra.py +14 -0
  16. pulumi_aiven/get_cassandra_user.py +14 -0
  17. pulumi_aiven/get_m3_db.py +12 -0
  18. pulumi_aiven/get_m3db_user.py +12 -0
  19. pulumi_aiven/get_my_sql.py +7 -7
  20. pulumi_aiven/get_mysql_database.py +11 -11
  21. pulumi_aiven/get_mysql_user.py +15 -15
  22. pulumi_aiven/get_organization_user.py +2 -4
  23. pulumi_aiven/get_project_user.py +8 -0
  24. pulumi_aiven/get_redis.py +16 -0
  25. pulumi_aiven/get_redis_user.py +16 -0
  26. pulumi_aiven/m3_db.py +2 -2
  27. pulumi_aiven/m3db_user.py +2 -2
  28. pulumi_aiven/my_sql.py +17 -17
  29. pulumi_aiven/mysql_database.py +19 -19
  30. pulumi_aiven/mysql_user.py +38 -38
  31. pulumi_aiven/outputs.py +46 -44
  32. pulumi_aiven/project_user.py +8 -0
  33. pulumi_aiven/pulumi-plugin.json +1 -1
  34. pulumi_aiven/redis.py +2 -2
  35. pulumi_aiven/redis_user.py +2 -2
  36. {pulumi_aiven-6.34.0a1739377923.dist-info → pulumi_aiven-6.34.0a1739509609.dist-info}/METADATA +1 -1
  37. {pulumi_aiven-6.34.0a1739377923.dist-info → pulumi_aiven-6.34.0a1739509609.dist-info}/RECORD +39 -39
  38. {pulumi_aiven-6.34.0a1739377923.dist-info → pulumi_aiven-6.34.0a1739509609.dist-info}/WHEEL +0 -0
  39. {pulumi_aiven-6.34.0a1739377923.dist-info → pulumi_aiven-6.34.0a1739509609.dist-info}/top_level.txt +0 -0
@@ -25,7 +25,7 @@ class MysqlDatabaseArgs:
25
25
  termination_protection: Optional[pulumi.Input[bool]] = None):
26
26
  """
27
27
  The set of arguments for constructing a MysqlDatabase resource.
28
- :param pulumi.Input[str] database_name: The name of the service database. Changing this property forces recreation of the resource.
28
+ :param pulumi.Input[str] database_name: The name of the database. Changing this property forces recreation of the resource.
29
29
  :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.
30
30
  :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.
31
31
  """
@@ -39,7 +39,7 @@ class MysqlDatabaseArgs:
39
39
  @pulumi.getter(name="databaseName")
40
40
  def database_name(self) -> pulumi.Input[str]:
41
41
  """
42
- The name of the service database. Changing this property forces recreation of the resource.
42
+ The name of the database. Changing this property forces recreation of the resource.
43
43
  """
44
44
  return pulumi.get(self, "database_name")
45
45
 
@@ -90,7 +90,7 @@ class _MysqlDatabaseState:
90
90
  termination_protection: Optional[pulumi.Input[bool]] = None):
91
91
  """
92
92
  Input properties used for looking up and filtering MysqlDatabase resources.
93
- :param pulumi.Input[str] database_name: The name of the service database. Changing this property forces recreation of the resource.
93
+ :param pulumi.Input[str] database_name: The name of the database. Changing this property forces recreation of the resource.
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
96
  """
@@ -107,7 +107,7 @@ class _MysqlDatabaseState:
107
107
  @pulumi.getter(name="databaseName")
108
108
  def database_name(self) -> Optional[pulumi.Input[str]]:
109
109
  """
110
- The name of the service database. Changing this property forces recreation of the resource.
110
+ The name of the database. Changing this property forces recreation of the resource.
111
111
  """
112
112
  return pulumi.get(self, "database_name")
113
113
 
@@ -160,7 +160,7 @@ class MysqlDatabase(pulumi.CustomResource):
160
160
  termination_protection: Optional[pulumi.Input[bool]] = None,
161
161
  __props__=None):
162
162
  """
163
- The MySQL Database resource allows the creation and management of Aiven MySQL Databases.
163
+ Creates and manages an [Aiven for MySQL®](https://aiven.io/docs/products/mysql) database.
164
164
 
165
165
  ## Example Usage
166
166
 
@@ -168,21 +168,21 @@ class MysqlDatabase(pulumi.CustomResource):
168
168
  import pulumi
169
169
  import pulumi_aiven as aiven
170
170
 
171
- mydatabase = aiven.MysqlDatabase("mydatabase",
172
- project=myproject["project"],
173
- service_name=mymysql["serviceName"],
174
- database_name="<DATABASE_NAME>")
171
+ example_mysql_database = aiven.MysqlDatabase("example_mysql_database",
172
+ project=example_project["project"],
173
+ service_name=example_mysql["serviceName"],
174
+ database_name="example-database")
175
175
  ```
176
176
 
177
177
  ## Import
178
178
 
179
179
  ```sh
180
- $ pulumi import aiven:index/mysqlDatabase:MysqlDatabase mydatabase PROJECT/SERVICE_NAME/DATABASE_NAME
180
+ $ pulumi import aiven:index/mysqlDatabase:MysqlDatabase example_database PROJECT/SERVICE_NAME/DATABASE_NAME
181
181
  ```
182
182
 
183
183
  :param str resource_name: The name of the resource.
184
184
  :param pulumi.ResourceOptions opts: Options for the resource.
185
- :param pulumi.Input[str] database_name: The name of the service database. Changing this property forces recreation of the resource.
185
+ :param pulumi.Input[str] database_name: The name of the database. Changing this property forces recreation of the resource.
186
186
  :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.
187
187
  :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.
188
188
  """
@@ -193,7 +193,7 @@ class MysqlDatabase(pulumi.CustomResource):
193
193
  args: MysqlDatabaseArgs,
194
194
  opts: Optional[pulumi.ResourceOptions] = None):
195
195
  """
196
- The MySQL Database resource allows the creation and management of Aiven MySQL Databases.
196
+ Creates and manages an [Aiven for MySQL®](https://aiven.io/docs/products/mysql) database.
197
197
 
198
198
  ## Example Usage
199
199
 
@@ -201,16 +201,16 @@ class MysqlDatabase(pulumi.CustomResource):
201
201
  import pulumi
202
202
  import pulumi_aiven as aiven
203
203
 
204
- mydatabase = aiven.MysqlDatabase("mydatabase",
205
- project=myproject["project"],
206
- service_name=mymysql["serviceName"],
207
- database_name="<DATABASE_NAME>")
204
+ example_mysql_database = aiven.MysqlDatabase("example_mysql_database",
205
+ project=example_project["project"],
206
+ service_name=example_mysql["serviceName"],
207
+ database_name="example-database")
208
208
  ```
209
209
 
210
210
  ## Import
211
211
 
212
212
  ```sh
213
- $ pulumi import aiven:index/mysqlDatabase:MysqlDatabase mydatabase PROJECT/SERVICE_NAME/DATABASE_NAME
213
+ $ pulumi import aiven:index/mysqlDatabase:MysqlDatabase example_database PROJECT/SERVICE_NAME/DATABASE_NAME
214
214
  ```
215
215
 
216
216
  :param str resource_name: The name of the resource.
@@ -272,7 +272,7 @@ class MysqlDatabase(pulumi.CustomResource):
272
272
  :param str resource_name: The unique name of the resulting resource.
273
273
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
274
274
  :param pulumi.ResourceOptions opts: Options for the resource.
275
- :param pulumi.Input[str] database_name: The name of the service database. Changing this property forces recreation of the resource.
275
+ :param pulumi.Input[str] database_name: The name of the database. Changing this property forces recreation of the resource.
276
276
  :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.
277
277
  :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.
278
278
  """
@@ -290,7 +290,7 @@ class MysqlDatabase(pulumi.CustomResource):
290
290
  @pulumi.getter(name="databaseName")
291
291
  def database_name(self) -> pulumi.Output[str]:
292
292
  """
293
- The name of the service database. Changing this property forces recreation of the resource.
293
+ The name of the database. Changing this property forces recreation of the resource.
294
294
  """
295
295
  return pulumi.get(self, "database_name")
296
296
 
@@ -28,9 +28,9 @@ class MysqlUserArgs:
28
28
  The set of arguments for constructing a MysqlUser resource.
29
29
  :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.
30
30
  :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.
31
- :param pulumi.Input[str] username: The actual name of the MySQL User. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
31
+ :param pulumi.Input[str] username: The name of the MySQL service user. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
32
32
  :param pulumi.Input[str] authentication: Authentication details. The possible values are `caching_sha2_password`, `mysql_native_password` and `null`.
33
- :param pulumi.Input[str] password: The password of the MySQL User ( not applicable for all services ).
33
+ :param pulumi.Input[str] password: The password of the MySQL service user.
34
34
  """
35
35
  pulumi.set(__self__, "project", project)
36
36
  pulumi.set(__self__, "service_name", service_name)
@@ -68,7 +68,7 @@ class MysqlUserArgs:
68
68
  @pulumi.getter
69
69
  def username(self) -> pulumi.Input[str]:
70
70
  """
71
- The actual name of the MySQL User. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
71
+ The name of the MySQL service user. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
72
72
  """
73
73
  return pulumi.get(self, "username")
74
74
 
@@ -92,7 +92,7 @@ class MysqlUserArgs:
92
92
  @pulumi.getter
93
93
  def password(self) -> Optional[pulumi.Input[str]]:
94
94
  """
95
- The password of the MySQL User ( not applicable for all services ).
95
+ The password of the MySQL service user.
96
96
  """
97
97
  return pulumi.get(self, "password")
98
98
 
@@ -114,14 +114,14 @@ class _MysqlUserState:
114
114
  username: Optional[pulumi.Input[str]] = None):
115
115
  """
116
116
  Input properties used for looking up and filtering MysqlUser resources.
117
- :param pulumi.Input[str] access_cert: Access certificate for the user
118
- :param pulumi.Input[str] access_key: Access certificate key for the user
117
+ :param pulumi.Input[str] access_cert: Access certificate for the user.
118
+ :param pulumi.Input[str] access_key: Access certificate key for the user.
119
119
  :param pulumi.Input[str] authentication: Authentication details. The possible values are `caching_sha2_password`, `mysql_native_password` and `null`.
120
- :param pulumi.Input[str] password: The password of the MySQL User ( not applicable for all services ).
120
+ :param pulumi.Input[str] password: The password of the MySQL service user.
121
121
  :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.
122
122
  :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.
123
- :param pulumi.Input[str] type: Type of the user account. Tells whether the user is the primary account or a regular account.
124
- :param pulumi.Input[str] username: The actual name of the MySQL User. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
123
+ :param pulumi.Input[str] type: User account type, such as primary or regular account.
124
+ :param pulumi.Input[str] username: The name of the MySQL service user. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
125
125
  """
126
126
  if access_cert is not None:
127
127
  pulumi.set(__self__, "access_cert", access_cert)
@@ -144,7 +144,7 @@ class _MysqlUserState:
144
144
  @pulumi.getter(name="accessCert")
145
145
  def access_cert(self) -> Optional[pulumi.Input[str]]:
146
146
  """
147
- Access certificate for the user
147
+ Access certificate for the user.
148
148
  """
149
149
  return pulumi.get(self, "access_cert")
150
150
 
@@ -156,7 +156,7 @@ class _MysqlUserState:
156
156
  @pulumi.getter(name="accessKey")
157
157
  def access_key(self) -> Optional[pulumi.Input[str]]:
158
158
  """
159
- Access certificate key for the user
159
+ Access certificate key for the user.
160
160
  """
161
161
  return pulumi.get(self, "access_key")
162
162
 
@@ -180,7 +180,7 @@ class _MysqlUserState:
180
180
  @pulumi.getter
181
181
  def password(self) -> Optional[pulumi.Input[str]]:
182
182
  """
183
- The password of the MySQL User ( not applicable for all services ).
183
+ The password of the MySQL service user.
184
184
  """
185
185
  return pulumi.get(self, "password")
186
186
 
@@ -216,7 +216,7 @@ class _MysqlUserState:
216
216
  @pulumi.getter
217
217
  def type(self) -> Optional[pulumi.Input[str]]:
218
218
  """
219
- Type of the user account. Tells whether the user is the primary account or a regular account.
219
+ User account type, such as primary or regular account.
220
220
  """
221
221
  return pulumi.get(self, "type")
222
222
 
@@ -228,7 +228,7 @@ class _MysqlUserState:
228
228
  @pulumi.getter
229
229
  def username(self) -> Optional[pulumi.Input[str]]:
230
230
  """
231
- The actual name of the MySQL User. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
231
+ The name of the MySQL service user. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
232
232
  """
233
233
  return pulumi.get(self, "username")
234
234
 
@@ -249,7 +249,7 @@ class MysqlUser(pulumi.CustomResource):
249
249
  username: Optional[pulumi.Input[str]] = None,
250
250
  __props__=None):
251
251
  """
252
- The MySQL User resource allows the creation and management of Aiven MySQL Users.
252
+ Creates and manages an Aiven for MySQL® service user.
253
253
 
254
254
  ## Example Usage
255
255
 
@@ -257,11 +257,11 @@ class MysqlUser(pulumi.CustomResource):
257
257
  import pulumi
258
258
  import pulumi_aiven as aiven
259
259
 
260
- foo = aiven.MysqlUser("foo",
261
- service_name=bar["serviceName"],
262
- project="my-project",
263
- username="user-1",
264
- password="Test$1234")
260
+ example_mysql_user = aiven.MysqlUser("example_mysql_user",
261
+ service_name=example_mysql["serviceName"],
262
+ project=example_project["project"],
263
+ username="example-mysql-user",
264
+ password=service_user_pw)
265
265
  ```
266
266
 
267
267
  ## Import
@@ -273,10 +273,10 @@ class MysqlUser(pulumi.CustomResource):
273
273
  :param str resource_name: The name of the resource.
274
274
  :param pulumi.ResourceOptions opts: Options for the resource.
275
275
  :param pulumi.Input[str] authentication: Authentication details. The possible values are `caching_sha2_password`, `mysql_native_password` and `null`.
276
- :param pulumi.Input[str] password: The password of the MySQL User ( not applicable for all services ).
276
+ :param pulumi.Input[str] password: The password of the MySQL service user.
277
277
  :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.
278
278
  :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.
279
- :param pulumi.Input[str] username: The actual name of the MySQL User. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
279
+ :param pulumi.Input[str] username: The name of the MySQL service user. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
280
280
  """
281
281
  ...
282
282
  @overload
@@ -285,7 +285,7 @@ class MysqlUser(pulumi.CustomResource):
285
285
  args: MysqlUserArgs,
286
286
  opts: Optional[pulumi.ResourceOptions] = None):
287
287
  """
288
- The MySQL User resource allows the creation and management of Aiven MySQL Users.
288
+ Creates and manages an Aiven for MySQL® service user.
289
289
 
290
290
  ## Example Usage
291
291
 
@@ -293,11 +293,11 @@ class MysqlUser(pulumi.CustomResource):
293
293
  import pulumi
294
294
  import pulumi_aiven as aiven
295
295
 
296
- foo = aiven.MysqlUser("foo",
297
- service_name=bar["serviceName"],
298
- project="my-project",
299
- username="user-1",
300
- password="Test$1234")
296
+ example_mysql_user = aiven.MysqlUser("example_mysql_user",
297
+ service_name=example_mysql["serviceName"],
298
+ project=example_project["project"],
299
+ username="example-mysql-user",
300
+ password=service_user_pw)
301
301
  ```
302
302
 
303
303
  ## Import
@@ -376,14 +376,14 @@ class MysqlUser(pulumi.CustomResource):
376
376
  :param str resource_name: The unique name of the resulting resource.
377
377
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
378
378
  :param pulumi.ResourceOptions opts: Options for the resource.
379
- :param pulumi.Input[str] access_cert: Access certificate for the user
380
- :param pulumi.Input[str] access_key: Access certificate key for the user
379
+ :param pulumi.Input[str] access_cert: Access certificate for the user.
380
+ :param pulumi.Input[str] access_key: Access certificate key for the user.
381
381
  :param pulumi.Input[str] authentication: Authentication details. The possible values are `caching_sha2_password`, `mysql_native_password` and `null`.
382
- :param pulumi.Input[str] password: The password of the MySQL User ( not applicable for all services ).
382
+ :param pulumi.Input[str] password: The password of the MySQL service user.
383
383
  :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.
384
384
  :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.
385
- :param pulumi.Input[str] type: Type of the user account. Tells whether the user is the primary account or a regular account.
386
- :param pulumi.Input[str] username: The actual name of the MySQL User. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
385
+ :param pulumi.Input[str] type: User account type, such as primary or regular account.
386
+ :param pulumi.Input[str] username: The name of the MySQL service user. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
387
387
  """
388
388
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
389
389
 
@@ -403,7 +403,7 @@ class MysqlUser(pulumi.CustomResource):
403
403
  @pulumi.getter(name="accessCert")
404
404
  def access_cert(self) -> pulumi.Output[str]:
405
405
  """
406
- Access certificate for the user
406
+ Access certificate for the user.
407
407
  """
408
408
  return pulumi.get(self, "access_cert")
409
409
 
@@ -411,7 +411,7 @@ class MysqlUser(pulumi.CustomResource):
411
411
  @pulumi.getter(name="accessKey")
412
412
  def access_key(self) -> pulumi.Output[str]:
413
413
  """
414
- Access certificate key for the user
414
+ Access certificate key for the user.
415
415
  """
416
416
  return pulumi.get(self, "access_key")
417
417
 
@@ -427,7 +427,7 @@ class MysqlUser(pulumi.CustomResource):
427
427
  @pulumi.getter
428
428
  def password(self) -> pulumi.Output[str]:
429
429
  """
430
- The password of the MySQL User ( not applicable for all services ).
430
+ The password of the MySQL service user.
431
431
  """
432
432
  return pulumi.get(self, "password")
433
433
 
@@ -451,7 +451,7 @@ class MysqlUser(pulumi.CustomResource):
451
451
  @pulumi.getter
452
452
  def type(self) -> pulumi.Output[str]:
453
453
  """
454
- Type of the user account. Tells whether the user is the primary account or a regular account.
454
+ User account type, such as primary or regular account.
455
455
  """
456
456
  return pulumi.get(self, "type")
457
457
 
@@ -459,7 +459,7 @@ class MysqlUser(pulumi.CustomResource):
459
459
  @pulumi.getter
460
460
  def username(self) -> pulumi.Output[str]:
461
461
  """
462
- The actual name of the MySQL User. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
462
+ The name of the MySQL service user. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
463
463
  """
464
464
  return pulumi.get(self, "username")
465
465
 
pulumi_aiven/outputs.py CHANGED
@@ -15323,11 +15323,11 @@ class MySqlMysql(dict):
15323
15323
  syncing_uris: Optional[Sequence[str]] = None,
15324
15324
  uris: Optional[Sequence[str]] = None):
15325
15325
  """
15326
- :param Sequence['MySqlMysqlParamArgs'] params: MySQL connection parameters
15327
- :param str replica_uri: MySQL replica URI for services with a replica
15328
- :param Sequence[str] standby_uris: MySQL standby connection URIs
15329
- :param Sequence[str] syncing_uris: MySQL syncing connection URIs
15330
- :param Sequence[str] uris: MySQL master connection URIs
15326
+ :param Sequence['MySqlMysqlParamArgs'] params: MySQL connection parameters.
15327
+ :param str replica_uri: MySQL replica URI for services with a replica.
15328
+ :param Sequence[str] standby_uris: MySQL standby connection URIs.
15329
+ :param Sequence[str] syncing_uris: MySQL syncing connection URIs.
15330
+ :param Sequence[str] uris: MySQL connection URIs.
15331
15331
  """
15332
15332
  if params is not None:
15333
15333
  pulumi.set(__self__, "params", params)
@@ -15344,7 +15344,7 @@ class MySqlMysql(dict):
15344
15344
  @pulumi.getter
15345
15345
  def params(self) -> Optional[Sequence['outputs.MySqlMysqlParam']]:
15346
15346
  """
15347
- MySQL connection parameters
15347
+ MySQL connection parameters.
15348
15348
  """
15349
15349
  return pulumi.get(self, "params")
15350
15350
 
@@ -15352,7 +15352,7 @@ class MySqlMysql(dict):
15352
15352
  @pulumi.getter(name="replicaUri")
15353
15353
  def replica_uri(self) -> Optional[str]:
15354
15354
  """
15355
- MySQL replica URI for services with a replica
15355
+ MySQL replica URI for services with a replica.
15356
15356
  """
15357
15357
  return pulumi.get(self, "replica_uri")
15358
15358
 
@@ -15360,7 +15360,7 @@ class MySqlMysql(dict):
15360
15360
  @pulumi.getter(name="standbyUris")
15361
15361
  def standby_uris(self) -> Optional[Sequence[str]]:
15362
15362
  """
15363
- MySQL standby connection URIs
15363
+ MySQL standby connection URIs.
15364
15364
  """
15365
15365
  return pulumi.get(self, "standby_uris")
15366
15366
 
@@ -15368,7 +15368,7 @@ class MySqlMysql(dict):
15368
15368
  @pulumi.getter(name="syncingUris")
15369
15369
  def syncing_uris(self) -> Optional[Sequence[str]]:
15370
15370
  """
15371
- MySQL syncing connection URIs
15371
+ MySQL syncing connection URIs.
15372
15372
  """
15373
15373
  return pulumi.get(self, "syncing_uris")
15374
15374
 
@@ -15376,7 +15376,7 @@ class MySqlMysql(dict):
15376
15376
  @pulumi.getter
15377
15377
  def uris(self) -> Optional[Sequence[str]]:
15378
15378
  """
15379
- MySQL master connection URIs
15379
+ MySQL connection URIs.
15380
15380
  """
15381
15381
  return pulumi.get(self, "uris")
15382
15382
 
@@ -15408,12 +15408,12 @@ class MySqlMysqlParam(dict):
15408
15408
  sslmode: Optional[str] = None,
15409
15409
  user: Optional[str] = None):
15410
15410
  """
15411
- :param str database_name: Primary MySQL database name
15412
- :param str host: MySQL host IP or name
15413
- :param str password: MySQL admin user password
15414
- :param int port: MySQL port
15415
- :param str sslmode: MySQL sslmode setting (currently always "require")
15416
- :param str user: MySQL admin user name
15411
+ :param str database_name: Thr name of the primary MySQL database.
15412
+ :param str host: MySQL host IP or name.
15413
+ :param str password: The password for the admin service user.
15414
+ :param int port: MySQL port.
15415
+ :param str sslmode: MySQL SSL mode setting. Always set to "require".
15416
+ :param str user: The username for the admin service user.
15417
15417
  """
15418
15418
  if database_name is not None:
15419
15419
  pulumi.set(__self__, "database_name", database_name)
@@ -15432,7 +15432,7 @@ class MySqlMysqlParam(dict):
15432
15432
  @pulumi.getter(name="databaseName")
15433
15433
  def database_name(self) -> Optional[str]:
15434
15434
  """
15435
- Primary MySQL database name
15435
+ Thr name of the primary MySQL database.
15436
15436
  """
15437
15437
  return pulumi.get(self, "database_name")
15438
15438
 
@@ -15440,7 +15440,7 @@ class MySqlMysqlParam(dict):
15440
15440
  @pulumi.getter
15441
15441
  def host(self) -> Optional[str]:
15442
15442
  """
15443
- MySQL host IP or name
15443
+ MySQL host IP or name.
15444
15444
  """
15445
15445
  return pulumi.get(self, "host")
15446
15446
 
@@ -15448,7 +15448,7 @@ class MySqlMysqlParam(dict):
15448
15448
  @pulumi.getter
15449
15449
  def password(self) -> Optional[str]:
15450
15450
  """
15451
- MySQL admin user password
15451
+ The password for the admin service user.
15452
15452
  """
15453
15453
  return pulumi.get(self, "password")
15454
15454
 
@@ -15456,7 +15456,7 @@ class MySqlMysqlParam(dict):
15456
15456
  @pulumi.getter
15457
15457
  def port(self) -> Optional[int]:
15458
15458
  """
15459
- MySQL port
15459
+ MySQL port.
15460
15460
  """
15461
15461
  return pulumi.get(self, "port")
15462
15462
 
@@ -15464,7 +15464,7 @@ class MySqlMysqlParam(dict):
15464
15464
  @pulumi.getter
15465
15465
  def sslmode(self) -> Optional[str]:
15466
15466
  """
15467
- MySQL sslmode setting (currently always "require")
15467
+ MySQL SSL mode setting. Always set to "require".
15468
15468
  """
15469
15469
  return pulumi.get(self, "sslmode")
15470
15470
 
@@ -15472,7 +15472,7 @@ class MySqlMysqlParam(dict):
15472
15472
  @pulumi.getter
15473
15473
  def user(self) -> Optional[str]:
15474
15474
  """
15475
- MySQL admin user name
15475
+ The username for the admin service user.
15476
15476
  """
15477
15477
  return pulumi.get(self, "user")
15478
15478
 
@@ -18723,6 +18723,7 @@ class OpenSearchOpensearchUserConfigOpensearchAuthFailureListeners(dict):
18723
18723
 
18724
18724
  @property
18725
18725
  @pulumi.getter(name="ipRateLimiting")
18726
+ @_utilities.deprecated("""This property is deprecated.""")
18726
18727
  def ip_rate_limiting(self) -> Optional['outputs.OpenSearchOpensearchUserConfigOpensearchAuthFailureListenersIpRateLimiting']:
18727
18728
  """
18728
18729
  IP address rate limiting settings
@@ -41739,11 +41740,11 @@ class GetMySqlMysqlResult(dict):
41739
41740
  syncing_uris: Sequence[str],
41740
41741
  uris: Sequence[str]):
41741
41742
  """
41742
- :param Sequence['GetMySqlMysqlParamArgs'] params: MySQL connection parameters
41743
- :param str replica_uri: MySQL replica URI for services with a replica
41744
- :param Sequence[str] standby_uris: MySQL standby connection URIs
41745
- :param Sequence[str] syncing_uris: MySQL syncing connection URIs
41746
- :param Sequence[str] uris: MySQL master connection URIs
41743
+ :param Sequence['GetMySqlMysqlParamArgs'] params: MySQL connection parameters.
41744
+ :param str replica_uri: MySQL replica URI for services with a replica.
41745
+ :param Sequence[str] standby_uris: MySQL standby connection URIs.
41746
+ :param Sequence[str] syncing_uris: MySQL syncing connection URIs.
41747
+ :param Sequence[str] uris: MySQL connection URIs.
41747
41748
  """
41748
41749
  pulumi.set(__self__, "params", params)
41749
41750
  pulumi.set(__self__, "replica_uri", replica_uri)
@@ -41755,7 +41756,7 @@ class GetMySqlMysqlResult(dict):
41755
41756
  @pulumi.getter
41756
41757
  def params(self) -> Sequence['outputs.GetMySqlMysqlParamResult']:
41757
41758
  """
41758
- MySQL connection parameters
41759
+ MySQL connection parameters.
41759
41760
  """
41760
41761
  return pulumi.get(self, "params")
41761
41762
 
@@ -41763,7 +41764,7 @@ class GetMySqlMysqlResult(dict):
41763
41764
  @pulumi.getter(name="replicaUri")
41764
41765
  def replica_uri(self) -> str:
41765
41766
  """
41766
- MySQL replica URI for services with a replica
41767
+ MySQL replica URI for services with a replica.
41767
41768
  """
41768
41769
  return pulumi.get(self, "replica_uri")
41769
41770
 
@@ -41771,7 +41772,7 @@ class GetMySqlMysqlResult(dict):
41771
41772
  @pulumi.getter(name="standbyUris")
41772
41773
  def standby_uris(self) -> Sequence[str]:
41773
41774
  """
41774
- MySQL standby connection URIs
41775
+ MySQL standby connection URIs.
41775
41776
  """
41776
41777
  return pulumi.get(self, "standby_uris")
41777
41778
 
@@ -41779,7 +41780,7 @@ class GetMySqlMysqlResult(dict):
41779
41780
  @pulumi.getter(name="syncingUris")
41780
41781
  def syncing_uris(self) -> Sequence[str]:
41781
41782
  """
41782
- MySQL syncing connection URIs
41783
+ MySQL syncing connection URIs.
41783
41784
  """
41784
41785
  return pulumi.get(self, "syncing_uris")
41785
41786
 
@@ -41787,7 +41788,7 @@ class GetMySqlMysqlResult(dict):
41787
41788
  @pulumi.getter
41788
41789
  def uris(self) -> Sequence[str]:
41789
41790
  """
41790
- MySQL master connection URIs
41791
+ MySQL connection URIs.
41791
41792
  """
41792
41793
  return pulumi.get(self, "uris")
41793
41794
 
@@ -41802,12 +41803,12 @@ class GetMySqlMysqlParamResult(dict):
41802
41803
  sslmode: str,
41803
41804
  user: str):
41804
41805
  """
41805
- :param str database_name: Primary MySQL database name
41806
- :param str host: MySQL host IP or name
41807
- :param str password: MySQL admin user password
41808
- :param int port: MySQL port
41809
- :param str sslmode: MySQL sslmode setting (currently always "require")
41810
- :param str user: MySQL admin user name
41806
+ :param str database_name: Thr name of the primary MySQL database.
41807
+ :param str host: MySQL host IP or name.
41808
+ :param str password: The password for the admin service user.
41809
+ :param int port: MySQL port.
41810
+ :param str sslmode: MySQL SSL mode setting. Always set to "require".
41811
+ :param str user: The username for the admin service user.
41811
41812
  """
41812
41813
  pulumi.set(__self__, "database_name", database_name)
41813
41814
  pulumi.set(__self__, "host", host)
@@ -41820,7 +41821,7 @@ class GetMySqlMysqlParamResult(dict):
41820
41821
  @pulumi.getter(name="databaseName")
41821
41822
  def database_name(self) -> str:
41822
41823
  """
41823
- Primary MySQL database name
41824
+ Thr name of the primary MySQL database.
41824
41825
  """
41825
41826
  return pulumi.get(self, "database_name")
41826
41827
 
@@ -41828,7 +41829,7 @@ class GetMySqlMysqlParamResult(dict):
41828
41829
  @pulumi.getter
41829
41830
  def host(self) -> str:
41830
41831
  """
41831
- MySQL host IP or name
41832
+ MySQL host IP or name.
41832
41833
  """
41833
41834
  return pulumi.get(self, "host")
41834
41835
 
@@ -41836,7 +41837,7 @@ class GetMySqlMysqlParamResult(dict):
41836
41837
  @pulumi.getter
41837
41838
  def password(self) -> str:
41838
41839
  """
41839
- MySQL admin user password
41840
+ The password for the admin service user.
41840
41841
  """
41841
41842
  return pulumi.get(self, "password")
41842
41843
 
@@ -41844,7 +41845,7 @@ class GetMySqlMysqlParamResult(dict):
41844
41845
  @pulumi.getter
41845
41846
  def port(self) -> int:
41846
41847
  """
41847
- MySQL port
41848
+ MySQL port.
41848
41849
  """
41849
41850
  return pulumi.get(self, "port")
41850
41851
 
@@ -41852,7 +41853,7 @@ class GetMySqlMysqlParamResult(dict):
41852
41853
  @pulumi.getter
41853
41854
  def sslmode(self) -> str:
41854
41855
  """
41855
- MySQL sslmode setting (currently always "require")
41856
+ MySQL SSL mode setting. Always set to "require".
41856
41857
  """
41857
41858
  return pulumi.get(self, "sslmode")
41858
41859
 
@@ -41860,7 +41861,7 @@ class GetMySqlMysqlParamResult(dict):
41860
41861
  @pulumi.getter
41861
41862
  def user(self) -> str:
41862
41863
  """
41863
- MySQL admin user name
41864
+ The username for the admin service user.
41864
41865
  """
41865
41866
  return pulumi.get(self, "user")
41866
41867
 
@@ -44545,6 +44546,7 @@ class GetOpenSearchOpensearchUserConfigOpensearchAuthFailureListenersResult(dict
44545
44546
 
44546
44547
  @property
44547
44548
  @pulumi.getter(name="ipRateLimiting")
44549
+ @_utilities.deprecated("""This property is deprecated.""")
44548
44550
  def ip_rate_limiting(self) -> Optional['outputs.GetOpenSearchOpensearchUserConfigOpensearchAuthFailureListenersIpRateLimitingResult']:
44549
44551
  """
44550
44552
  IP address rate limiting settings
@@ -157,6 +157,10 @@ class ProjectUser(pulumi.CustomResource):
157
157
  migrate existing ProjectUser resources
158
158
  to the new resource.
159
159
 
160
+ > **This resource is deprecated**.
161
+
162
+ Use `OrganizationPermission` instead.
163
+
160
164
  ## Example Usage
161
165
 
162
166
  ```python
@@ -194,6 +198,10 @@ class ProjectUser(pulumi.CustomResource):
194
198
  migrate existing ProjectUser resources
195
199
  to the new resource.
196
200
 
201
+ > **This resource is deprecated**.
202
+
203
+ Use `OrganizationPermission` instead.
204
+
197
205
  ## Example Usage
198
206
 
199
207
  ```python
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "resource": true,
3
3
  "name": "aiven",
4
- "version": "6.34.0-alpha.1739377923"
4
+ "version": "6.34.0-alpha.1739509609"
5
5
  }