pulumi-aiven 6.29.0__py3-none-any.whl → 6.29.0a1731734138__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.
- pulumi_aiven/__init__.py +0 -9
- pulumi_aiven/_inputs.py +36 -513
- pulumi_aiven/billing_group.py +7 -7
- pulumi_aiven/get_billing_group.py +1 -1
- pulumi_aiven/get_mirror_maker_replication_flow.py +1 -15
- pulumi_aiven/get_valkey_user.py +9 -9
- pulumi_aiven/mirror_maker_replication_flow.py +0 -47
- pulumi_aiven/outputs.py +48 -719
- pulumi_aiven/pulumi-plugin.json +1 -1
- pulumi_aiven/valkey.py +2 -2
- pulumi_aiven/valkey_user.py +48 -142
- {pulumi_aiven-6.29.0.dist-info → pulumi_aiven-6.29.0a1731734138.dist-info}/METADATA +5 -5
- {pulumi_aiven-6.29.0.dist-info → pulumi_aiven-6.29.0a1731734138.dist-info}/RECORD +15 -16
- {pulumi_aiven-6.29.0.dist-info → pulumi_aiven-6.29.0a1731734138.dist-info}/WHEEL +1 -1
- pulumi_aiven/kafka_native_acl.py +0 -534
- {pulumi_aiven-6.29.0.dist-info → pulumi_aiven-6.29.0a1731734138.dist-info}/top_level.txt +0 -0
pulumi_aiven/pulumi-plugin.json
CHANGED
pulumi_aiven/valkey.py
CHANGED
|
@@ -770,7 +770,7 @@ class Valkey(pulumi.CustomResource):
|
|
|
770
770
|
valkey_user_config: Optional[pulumi.Input[Union['ValkeyValkeyUserConfigArgs', 'ValkeyValkeyUserConfigArgsDict']]] = None,
|
|
771
771
|
__props__=None):
|
|
772
772
|
"""
|
|
773
|
-
Creates and manages an [Aiven for Valkey
|
|
773
|
+
Creates and manages an [Aiven for Valkey](https://aiven.io/docs/products/valkey) service.
|
|
774
774
|
|
|
775
775
|
## Example Usage
|
|
776
776
|
|
|
@@ -820,7 +820,7 @@ class Valkey(pulumi.CustomResource):
|
|
|
820
820
|
args: ValkeyArgs,
|
|
821
821
|
opts: Optional[pulumi.ResourceOptions] = None):
|
|
822
822
|
"""
|
|
823
|
-
Creates and manages an [Aiven for Valkey
|
|
823
|
+
Creates and manages an [Aiven for Valkey](https://aiven.io/docs/products/valkey) service.
|
|
824
824
|
|
|
825
825
|
## Example Usage
|
|
826
826
|
|
pulumi_aiven/valkey_user.py
CHANGED
|
@@ -31,12 +31,12 @@ class ValkeyUserArgs:
|
|
|
31
31
|
The set of arguments for constructing a ValkeyUser resource.
|
|
32
32
|
: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.
|
|
33
33
|
: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.
|
|
34
|
-
:param pulumi.Input[str] username:
|
|
35
|
-
:param pulumi.Input[str] password: The
|
|
36
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] valkey_acl_categories:
|
|
37
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] valkey_acl_channels:
|
|
38
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] valkey_acl_commands: Defines rules for individual commands.
|
|
39
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] valkey_acl_keys:
|
|
34
|
+
:param pulumi.Input[str] username: The actual name of the Valkey User. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
|
|
35
|
+
:param pulumi.Input[str] password: The password of the Valkey User.
|
|
36
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] valkey_acl_categories: Defines command category rules. The field is required with`valkey_acl_commands` and `valkey_acl_keys`. Changing this property forces recreation of the resource.
|
|
37
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] valkey_acl_channels: Defines the permitted pub/sub channel patterns. Changing this property forces recreation of the resource.
|
|
38
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] valkey_acl_commands: Defines rules for individual commands. The field is required with`valkey_acl_categories` and `valkey_acl_keys`. Changing this property forces recreation of the resource.
|
|
39
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] valkey_acl_keys: Defines key access rules. The field is required with`valkey_acl_categories` and `valkey_acl_keys`. Changing this property forces recreation of the resource.
|
|
40
40
|
"""
|
|
41
41
|
pulumi.set(__self__, "project", project)
|
|
42
42
|
pulumi.set(__self__, "service_name", service_name)
|
|
@@ -80,7 +80,7 @@ class ValkeyUserArgs:
|
|
|
80
80
|
@pulumi.getter
|
|
81
81
|
def username(self) -> pulumi.Input[str]:
|
|
82
82
|
"""
|
|
83
|
-
|
|
83
|
+
The actual name of the Valkey User. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
|
|
84
84
|
"""
|
|
85
85
|
return pulumi.get(self, "username")
|
|
86
86
|
|
|
@@ -92,7 +92,7 @@ class ValkeyUserArgs:
|
|
|
92
92
|
@pulumi.getter
|
|
93
93
|
def password(self) -> Optional[pulumi.Input[str]]:
|
|
94
94
|
"""
|
|
95
|
-
The
|
|
95
|
+
The password of the Valkey User.
|
|
96
96
|
"""
|
|
97
97
|
return pulumi.get(self, "password")
|
|
98
98
|
|
|
@@ -104,7 +104,7 @@ class ValkeyUserArgs:
|
|
|
104
104
|
@pulumi.getter(name="valkeyAclCategories")
|
|
105
105
|
def valkey_acl_categories(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
106
106
|
"""
|
|
107
|
-
|
|
107
|
+
Defines command category rules. The field is required with`valkey_acl_commands` and `valkey_acl_keys`. Changing this property forces recreation of the resource.
|
|
108
108
|
"""
|
|
109
109
|
return pulumi.get(self, "valkey_acl_categories")
|
|
110
110
|
|
|
@@ -116,7 +116,7 @@ class ValkeyUserArgs:
|
|
|
116
116
|
@pulumi.getter(name="valkeyAclChannels")
|
|
117
117
|
def valkey_acl_channels(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
118
118
|
"""
|
|
119
|
-
|
|
119
|
+
Defines the permitted pub/sub channel patterns. Changing this property forces recreation of the resource.
|
|
120
120
|
"""
|
|
121
121
|
return pulumi.get(self, "valkey_acl_channels")
|
|
122
122
|
|
|
@@ -128,7 +128,7 @@ class ValkeyUserArgs:
|
|
|
128
128
|
@pulumi.getter(name="valkeyAclCommands")
|
|
129
129
|
def valkey_acl_commands(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
130
130
|
"""
|
|
131
|
-
Defines rules for individual commands.
|
|
131
|
+
Defines rules for individual commands. The field is required with`valkey_acl_categories` and `valkey_acl_keys`. Changing this property forces recreation of the resource.
|
|
132
132
|
"""
|
|
133
133
|
return pulumi.get(self, "valkey_acl_commands")
|
|
134
134
|
|
|
@@ -140,7 +140,7 @@ class ValkeyUserArgs:
|
|
|
140
140
|
@pulumi.getter(name="valkeyAclKeys")
|
|
141
141
|
def valkey_acl_keys(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
142
142
|
"""
|
|
143
|
-
|
|
143
|
+
Defines key access rules. The field is required with`valkey_acl_categories` and `valkey_acl_keys`. Changing this property forces recreation of the resource.
|
|
144
144
|
"""
|
|
145
145
|
return pulumi.get(self, "valkey_acl_keys")
|
|
146
146
|
|
|
@@ -163,15 +163,15 @@ class _ValkeyUserState:
|
|
|
163
163
|
valkey_acl_keys: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
|
|
164
164
|
"""
|
|
165
165
|
Input properties used for looking up and filtering ValkeyUser resources.
|
|
166
|
-
:param pulumi.Input[str] password: The
|
|
166
|
+
:param pulumi.Input[str] password: The password of the Valkey User.
|
|
167
167
|
: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.
|
|
168
168
|
: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.
|
|
169
|
-
:param pulumi.Input[str] type:
|
|
170
|
-
:param pulumi.Input[str] username:
|
|
171
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] valkey_acl_categories:
|
|
172
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] valkey_acl_channels:
|
|
173
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] valkey_acl_commands: Defines rules for individual commands.
|
|
174
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] valkey_acl_keys:
|
|
169
|
+
:param pulumi.Input[str] type: Type of the user account. Tells whether the user is the primary account or a regular account.
|
|
170
|
+
:param pulumi.Input[str] username: The actual name of the Valkey User. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
|
|
171
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] valkey_acl_categories: Defines command category rules. The field is required with`valkey_acl_commands` and `valkey_acl_keys`. Changing this property forces recreation of the resource.
|
|
172
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] valkey_acl_channels: Defines the permitted pub/sub channel patterns. Changing this property forces recreation of the resource.
|
|
173
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] valkey_acl_commands: Defines rules for individual commands. The field is required with`valkey_acl_categories` and `valkey_acl_keys`. Changing this property forces recreation of the resource.
|
|
174
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] valkey_acl_keys: Defines key access rules. The field is required with`valkey_acl_categories` and `valkey_acl_keys`. Changing this property forces recreation of the resource.
|
|
175
175
|
"""
|
|
176
176
|
if password is not None:
|
|
177
177
|
pulumi.set(__self__, "password", password)
|
|
@@ -196,7 +196,7 @@ class _ValkeyUserState:
|
|
|
196
196
|
@pulumi.getter
|
|
197
197
|
def password(self) -> Optional[pulumi.Input[str]]:
|
|
198
198
|
"""
|
|
199
|
-
The
|
|
199
|
+
The password of the Valkey User.
|
|
200
200
|
"""
|
|
201
201
|
return pulumi.get(self, "password")
|
|
202
202
|
|
|
@@ -232,7 +232,7 @@ class _ValkeyUserState:
|
|
|
232
232
|
@pulumi.getter
|
|
233
233
|
def type(self) -> Optional[pulumi.Input[str]]:
|
|
234
234
|
"""
|
|
235
|
-
|
|
235
|
+
Type of the user account. Tells whether the user is the primary account or a regular account.
|
|
236
236
|
"""
|
|
237
237
|
return pulumi.get(self, "type")
|
|
238
238
|
|
|
@@ -244,7 +244,7 @@ class _ValkeyUserState:
|
|
|
244
244
|
@pulumi.getter
|
|
245
245
|
def username(self) -> Optional[pulumi.Input[str]]:
|
|
246
246
|
"""
|
|
247
|
-
|
|
247
|
+
The actual name of the Valkey User. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
|
|
248
248
|
"""
|
|
249
249
|
return pulumi.get(self, "username")
|
|
250
250
|
|
|
@@ -256,7 +256,7 @@ class _ValkeyUserState:
|
|
|
256
256
|
@pulumi.getter(name="valkeyAclCategories")
|
|
257
257
|
def valkey_acl_categories(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
258
258
|
"""
|
|
259
|
-
|
|
259
|
+
Defines command category rules. The field is required with`valkey_acl_commands` and `valkey_acl_keys`. Changing this property forces recreation of the resource.
|
|
260
260
|
"""
|
|
261
261
|
return pulumi.get(self, "valkey_acl_categories")
|
|
262
262
|
|
|
@@ -268,7 +268,7 @@ class _ValkeyUserState:
|
|
|
268
268
|
@pulumi.getter(name="valkeyAclChannels")
|
|
269
269
|
def valkey_acl_channels(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
270
270
|
"""
|
|
271
|
-
|
|
271
|
+
Defines the permitted pub/sub channel patterns. Changing this property forces recreation of the resource.
|
|
272
272
|
"""
|
|
273
273
|
return pulumi.get(self, "valkey_acl_channels")
|
|
274
274
|
|
|
@@ -280,7 +280,7 @@ class _ValkeyUserState:
|
|
|
280
280
|
@pulumi.getter(name="valkeyAclCommands")
|
|
281
281
|
def valkey_acl_commands(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
282
282
|
"""
|
|
283
|
-
Defines rules for individual commands.
|
|
283
|
+
Defines rules for individual commands. The field is required with`valkey_acl_categories` and `valkey_acl_keys`. Changing this property forces recreation of the resource.
|
|
284
284
|
"""
|
|
285
285
|
return pulumi.get(self, "valkey_acl_commands")
|
|
286
286
|
|
|
@@ -292,7 +292,7 @@ class _ValkeyUserState:
|
|
|
292
292
|
@pulumi.getter(name="valkeyAclKeys")
|
|
293
293
|
def valkey_acl_keys(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
294
294
|
"""
|
|
295
|
-
|
|
295
|
+
Defines key access rules. The field is required with`valkey_acl_categories` and `valkey_acl_keys`. Changing this property forces recreation of the resource.
|
|
296
296
|
"""
|
|
297
297
|
return pulumi.get(self, "valkey_acl_keys")
|
|
298
298
|
|
|
@@ -316,65 +316,18 @@ class ValkeyUser(pulumi.CustomResource):
|
|
|
316
316
|
valkey_acl_keys: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
317
317
|
__props__=None):
|
|
318
318
|
"""
|
|
319
|
-
Creates and manages an [Aiven for Valkey
|
|
320
|
-
|
|
321
|
-
## Example Usage
|
|
322
|
-
|
|
323
|
-
```python
|
|
324
|
-
import pulumi
|
|
325
|
-
import pulumi_aiven as aiven
|
|
326
|
-
|
|
327
|
-
# Example user with read-only access for analytics
|
|
328
|
-
read_analytics = aiven.ValkeyUser("read_analytics",
|
|
329
|
-
project=example_project["project"],
|
|
330
|
-
service_name=example_valkey["serviceName"],
|
|
331
|
-
username="example-analytics-reader",
|
|
332
|
-
password=valkey_user_pw,
|
|
333
|
-
valkey_acl_categories=["+@read"],
|
|
334
|
-
valkey_acl_commands=[
|
|
335
|
-
"+get",
|
|
336
|
-
"+set",
|
|
337
|
-
"+mget",
|
|
338
|
-
"+hget",
|
|
339
|
-
"+zrange",
|
|
340
|
-
],
|
|
341
|
-
valkey_acl_keys=["analytics:*"])
|
|
342
|
-
# Example user with restricted write access for session management
|
|
343
|
-
manage_sessions = aiven.ValkeyUser("manage_sessions",
|
|
344
|
-
project=example_project["project"],
|
|
345
|
-
service_name=example_valkey["serviceName"],
|
|
346
|
-
username="example-session-manager",
|
|
347
|
-
password=valkey_user_pw,
|
|
348
|
-
valkey_acl_categories=[
|
|
349
|
-
"+@write",
|
|
350
|
-
"+@keyspace",
|
|
351
|
-
],
|
|
352
|
-
valkey_acl_commands=[
|
|
353
|
-
"+set",
|
|
354
|
-
"+del",
|
|
355
|
-
"+expire",
|
|
356
|
-
"-flushall",
|
|
357
|
-
"-flushdb",
|
|
358
|
-
],
|
|
359
|
-
valkey_acl_keys=["session:*"])
|
|
360
|
-
```
|
|
361
|
-
|
|
362
|
-
## Import
|
|
363
|
-
|
|
364
|
-
```sh
|
|
365
|
-
$ pulumi import aiven:index/valkeyUser:ValkeyUser example_valkey PROJECT/SERVICE_NAME/USERNAME
|
|
366
|
-
```
|
|
319
|
+
Creates and manages an [Aiven for Valkey](https://aiven.io/docs/products/valkey) user.
|
|
367
320
|
|
|
368
321
|
:param str resource_name: The name of the resource.
|
|
369
322
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
370
|
-
:param pulumi.Input[str] password: The
|
|
323
|
+
:param pulumi.Input[str] password: The password of the Valkey User.
|
|
371
324
|
: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.
|
|
372
325
|
: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.
|
|
373
|
-
:param pulumi.Input[str] username:
|
|
374
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] valkey_acl_categories:
|
|
375
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] valkey_acl_channels:
|
|
376
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] valkey_acl_commands: Defines rules for individual commands.
|
|
377
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] valkey_acl_keys:
|
|
326
|
+
:param pulumi.Input[str] username: The actual name of the Valkey User. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
|
|
327
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] valkey_acl_categories: Defines command category rules. The field is required with`valkey_acl_commands` and `valkey_acl_keys`. Changing this property forces recreation of the resource.
|
|
328
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] valkey_acl_channels: Defines the permitted pub/sub channel patterns. Changing this property forces recreation of the resource.
|
|
329
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] valkey_acl_commands: Defines rules for individual commands. The field is required with`valkey_acl_categories` and `valkey_acl_keys`. Changing this property forces recreation of the resource.
|
|
330
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] valkey_acl_keys: Defines key access rules. The field is required with`valkey_acl_categories` and `valkey_acl_keys`. Changing this property forces recreation of the resource.
|
|
378
331
|
"""
|
|
379
332
|
...
|
|
380
333
|
@overload
|
|
@@ -383,54 +336,7 @@ class ValkeyUser(pulumi.CustomResource):
|
|
|
383
336
|
args: ValkeyUserArgs,
|
|
384
337
|
opts: Optional[pulumi.ResourceOptions] = None):
|
|
385
338
|
"""
|
|
386
|
-
Creates and manages an [Aiven for Valkey
|
|
387
|
-
|
|
388
|
-
## Example Usage
|
|
389
|
-
|
|
390
|
-
```python
|
|
391
|
-
import pulumi
|
|
392
|
-
import pulumi_aiven as aiven
|
|
393
|
-
|
|
394
|
-
# Example user with read-only access for analytics
|
|
395
|
-
read_analytics = aiven.ValkeyUser("read_analytics",
|
|
396
|
-
project=example_project["project"],
|
|
397
|
-
service_name=example_valkey["serviceName"],
|
|
398
|
-
username="example-analytics-reader",
|
|
399
|
-
password=valkey_user_pw,
|
|
400
|
-
valkey_acl_categories=["+@read"],
|
|
401
|
-
valkey_acl_commands=[
|
|
402
|
-
"+get",
|
|
403
|
-
"+set",
|
|
404
|
-
"+mget",
|
|
405
|
-
"+hget",
|
|
406
|
-
"+zrange",
|
|
407
|
-
],
|
|
408
|
-
valkey_acl_keys=["analytics:*"])
|
|
409
|
-
# Example user with restricted write access for session management
|
|
410
|
-
manage_sessions = aiven.ValkeyUser("manage_sessions",
|
|
411
|
-
project=example_project["project"],
|
|
412
|
-
service_name=example_valkey["serviceName"],
|
|
413
|
-
username="example-session-manager",
|
|
414
|
-
password=valkey_user_pw,
|
|
415
|
-
valkey_acl_categories=[
|
|
416
|
-
"+@write",
|
|
417
|
-
"+@keyspace",
|
|
418
|
-
],
|
|
419
|
-
valkey_acl_commands=[
|
|
420
|
-
"+set",
|
|
421
|
-
"+del",
|
|
422
|
-
"+expire",
|
|
423
|
-
"-flushall",
|
|
424
|
-
"-flushdb",
|
|
425
|
-
],
|
|
426
|
-
valkey_acl_keys=["session:*"])
|
|
427
|
-
```
|
|
428
|
-
|
|
429
|
-
## Import
|
|
430
|
-
|
|
431
|
-
```sh
|
|
432
|
-
$ pulumi import aiven:index/valkeyUser:ValkeyUser example_valkey PROJECT/SERVICE_NAME/USERNAME
|
|
433
|
-
```
|
|
339
|
+
Creates and manages an [Aiven for Valkey](https://aiven.io/docs/products/valkey) user.
|
|
434
340
|
|
|
435
341
|
:param str resource_name: The name of the resource.
|
|
436
342
|
:param ValkeyUserArgs args: The arguments to use to populate this resource's properties.
|
|
@@ -507,15 +413,15 @@ class ValkeyUser(pulumi.CustomResource):
|
|
|
507
413
|
:param str resource_name: The unique name of the resulting resource.
|
|
508
414
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
509
415
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
510
|
-
:param pulumi.Input[str] password: The
|
|
416
|
+
:param pulumi.Input[str] password: The password of the Valkey User.
|
|
511
417
|
: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.
|
|
512
418
|
: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.
|
|
513
|
-
:param pulumi.Input[str] type:
|
|
514
|
-
:param pulumi.Input[str] username:
|
|
515
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] valkey_acl_categories:
|
|
516
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] valkey_acl_channels:
|
|
517
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] valkey_acl_commands: Defines rules for individual commands.
|
|
518
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] valkey_acl_keys:
|
|
419
|
+
:param pulumi.Input[str] type: Type of the user account. Tells whether the user is the primary account or a regular account.
|
|
420
|
+
:param pulumi.Input[str] username: The actual name of the Valkey User. 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[Sequence[pulumi.Input[str]]] valkey_acl_categories: Defines command category rules. The field is required with`valkey_acl_commands` and `valkey_acl_keys`. Changing this property forces recreation of the resource.
|
|
422
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] valkey_acl_channels: Defines the permitted pub/sub channel patterns. Changing this property forces recreation of the resource.
|
|
423
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] valkey_acl_commands: Defines rules for individual commands. The field is required with`valkey_acl_categories` and `valkey_acl_keys`. Changing this property forces recreation of the resource.
|
|
424
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] valkey_acl_keys: Defines key access rules. The field is required with`valkey_acl_categories` and `valkey_acl_keys`. Changing this property forces recreation of the resource.
|
|
519
425
|
"""
|
|
520
426
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
521
427
|
|
|
@@ -536,7 +442,7 @@ class ValkeyUser(pulumi.CustomResource):
|
|
|
536
442
|
@pulumi.getter
|
|
537
443
|
def password(self) -> pulumi.Output[str]:
|
|
538
444
|
"""
|
|
539
|
-
The
|
|
445
|
+
The password of the Valkey User.
|
|
540
446
|
"""
|
|
541
447
|
return pulumi.get(self, "password")
|
|
542
448
|
|
|
@@ -560,7 +466,7 @@ class ValkeyUser(pulumi.CustomResource):
|
|
|
560
466
|
@pulumi.getter
|
|
561
467
|
def type(self) -> pulumi.Output[str]:
|
|
562
468
|
"""
|
|
563
|
-
|
|
469
|
+
Type of the user account. Tells whether the user is the primary account or a regular account.
|
|
564
470
|
"""
|
|
565
471
|
return pulumi.get(self, "type")
|
|
566
472
|
|
|
@@ -568,7 +474,7 @@ class ValkeyUser(pulumi.CustomResource):
|
|
|
568
474
|
@pulumi.getter
|
|
569
475
|
def username(self) -> pulumi.Output[str]:
|
|
570
476
|
"""
|
|
571
|
-
|
|
477
|
+
The actual name of the Valkey User. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
|
|
572
478
|
"""
|
|
573
479
|
return pulumi.get(self, "username")
|
|
574
480
|
|
|
@@ -576,7 +482,7 @@ class ValkeyUser(pulumi.CustomResource):
|
|
|
576
482
|
@pulumi.getter(name="valkeyAclCategories")
|
|
577
483
|
def valkey_acl_categories(self) -> pulumi.Output[Optional[Sequence[str]]]:
|
|
578
484
|
"""
|
|
579
|
-
|
|
485
|
+
Defines command category rules. The field is required with`valkey_acl_commands` and `valkey_acl_keys`. Changing this property forces recreation of the resource.
|
|
580
486
|
"""
|
|
581
487
|
return pulumi.get(self, "valkey_acl_categories")
|
|
582
488
|
|
|
@@ -584,7 +490,7 @@ class ValkeyUser(pulumi.CustomResource):
|
|
|
584
490
|
@pulumi.getter(name="valkeyAclChannels")
|
|
585
491
|
def valkey_acl_channels(self) -> pulumi.Output[Optional[Sequence[str]]]:
|
|
586
492
|
"""
|
|
587
|
-
|
|
493
|
+
Defines the permitted pub/sub channel patterns. Changing this property forces recreation of the resource.
|
|
588
494
|
"""
|
|
589
495
|
return pulumi.get(self, "valkey_acl_channels")
|
|
590
496
|
|
|
@@ -592,7 +498,7 @@ class ValkeyUser(pulumi.CustomResource):
|
|
|
592
498
|
@pulumi.getter(name="valkeyAclCommands")
|
|
593
499
|
def valkey_acl_commands(self) -> pulumi.Output[Optional[Sequence[str]]]:
|
|
594
500
|
"""
|
|
595
|
-
Defines rules for individual commands.
|
|
501
|
+
Defines rules for individual commands. The field is required with`valkey_acl_categories` and `valkey_acl_keys`. Changing this property forces recreation of the resource.
|
|
596
502
|
"""
|
|
597
503
|
return pulumi.get(self, "valkey_acl_commands")
|
|
598
504
|
|
|
@@ -600,7 +506,7 @@ class ValkeyUser(pulumi.CustomResource):
|
|
|
600
506
|
@pulumi.getter(name="valkeyAclKeys")
|
|
601
507
|
def valkey_acl_keys(self) -> pulumi.Output[Optional[Sequence[str]]]:
|
|
602
508
|
"""
|
|
603
|
-
|
|
509
|
+
Defines key access rules. The field is required with`valkey_acl_categories` and `valkey_acl_keys`. Changing this property forces recreation of the resource.
|
|
604
510
|
"""
|
|
605
511
|
return pulumi.get(self, "valkey_acl_keys")
|
|
606
512
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: pulumi_aiven
|
|
3
|
-
Version: 6.29.
|
|
3
|
+
Version: 6.29.0a1731734138
|
|
4
4
|
Summary: A Pulumi package for creating and managing Aiven cloud resources.
|
|
5
5
|
License: Apache-2.0
|
|
6
6
|
Project-URL: Homepage, https://pulumi.io
|
|
@@ -8,10 +8,10 @@ Project-URL: Repository, https://github.com/pulumi/pulumi-aiven
|
|
|
8
8
|
Keywords: pulumi,aiven
|
|
9
9
|
Requires-Python: >=3.8
|
|
10
10
|
Description-Content-Type: text/markdown
|
|
11
|
-
Requires-Dist: parver>=0.2.1
|
|
12
|
-
Requires-Dist: pulumi<4.0.0,>=3.136.0
|
|
13
|
-
Requires-Dist: semver>=2.8.1
|
|
14
|
-
Requires-Dist: typing-extensions>=4.11; python_version < "3.11"
|
|
11
|
+
Requires-Dist: parver >=0.2.1
|
|
12
|
+
Requires-Dist: pulumi <4.0.0,>=3.136.0
|
|
13
|
+
Requires-Dist: semver >=2.8.1
|
|
14
|
+
Requires-Dist: typing-extensions >=4.11 ; python_version < "3.11"
|
|
15
15
|
|
|
16
16
|
[](https://github.com/pulumi/pulumi-aiven/actions)
|
|
17
17
|
[](https://slack.pulumi.com)
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
pulumi_aiven/__init__.py,sha256
|
|
2
|
-
pulumi_aiven/_inputs.py,sha256=
|
|
1
|
+
pulumi_aiven/__init__.py,sha256=eR3JQiCumnzipglw9HIrGXT_6mhrWu2wm5WNyKJwwFM,18855
|
|
2
|
+
pulumi_aiven/_inputs.py,sha256=_TXQ-Q_1hWWm80cJydrn_QHnDJaiXhnJBZ1Q2wxr3ik,1642021
|
|
3
3
|
pulumi_aiven/_utilities.py,sha256=-gxwnD6__OYdSf8jJgJijNuu-UHUwi5pJ1H7-eIHDhg,10504
|
|
4
4
|
pulumi_aiven/account.py,sha256=INnmCQlB-rYogssxx8zMP5hrPGS3DAr03GccSR_qSe8,17025
|
|
5
5
|
pulumi_aiven/account_authentication.py,sha256=6YMnR97tSsbDGTeC-4Z0WRG3PyRxeZZyi3o6X1BX3jg,37749
|
|
@@ -11,7 +11,7 @@ pulumi_aiven/aws_vpc_peering_connection.py,sha256=9o17R-3xjvBpT1cWmRl_1itRAaUgUO
|
|
|
11
11
|
pulumi_aiven/azure_privatelink.py,sha256=hCrp07cYMAxJ1Ju8-7GnSI4bNJEm-vvVTT8LtrQZu2A,18156
|
|
12
12
|
pulumi_aiven/azure_privatelink_connection_approval.py,sha256=9CTHF6oSAaSKIJJLSwmnRR_GpONRWfMeo078EfKfKN4,19004
|
|
13
13
|
pulumi_aiven/azure_vpc_peering_connection.py,sha256=oW8uZyvWpEarMy6RjPe1SI53KG2aODLT5Z2TWn7Zx2Y,25382
|
|
14
|
-
pulumi_aiven/billing_group.py,sha256=
|
|
14
|
+
pulumi_aiven/billing_group.py,sha256=aFdlSTLYMJLDJYXYbiqGNadAUCPRcbXfQg9BhPr9QkE,37477
|
|
15
15
|
pulumi_aiven/cassandra.py,sha256=_B45t3eFwHZvxvcSbH8NFd4euBcY8-P2TqoxIEhyRBk,83356
|
|
16
16
|
pulumi_aiven/cassandra_user.py,sha256=zeaHC8vwKH-8y4Es2573azsaLcVlNcwiwxiYVLaZbI8,18764
|
|
17
17
|
pulumi_aiven/clickhouse.py,sha256=XAfnxACn0StNnON40MndeCB3g-tctQ5K0SiFx6IPtW0,83220
|
|
@@ -37,7 +37,7 @@ pulumi_aiven/get_aws_privatelink.py,sha256=rj2JWpNF8Op_LIlJpNIjYBCWb-jPoujtJyW2W
|
|
|
37
37
|
pulumi_aiven/get_aws_vpc_peering_connection.py,sha256=MCsJpTngLawK9grOlrE_QXGDYOIyRditSoUq_KQa8E4,9980
|
|
38
38
|
pulumi_aiven/get_azure_privatelink.py,sha256=XylhGH1AUkltuCsRj9aIzzXuLkD4g1hdN0_JhNTdBMk,8763
|
|
39
39
|
pulumi_aiven/get_azure_vpc_peering_connection.py,sha256=_SyX1QjB99ZiallTffeh5O7GIM1oIpXoCjd2bk43BZ4,13092
|
|
40
|
-
pulumi_aiven/get_billing_group.py,sha256=
|
|
40
|
+
pulumi_aiven/get_billing_group.py,sha256=Pyjs4XIjSca6pOanSTUlVdcSHRUbfvk7xJ6KegTQg0s,12399
|
|
41
41
|
pulumi_aiven/get_cassanda.py,sha256=6UFGiTGVQefGsdvH4_Kc4wvZYOzZujZ9gxUtirYl2og,25648
|
|
42
42
|
pulumi_aiven/get_cassandra.py,sha256=2rEXXKPrJtdJLu8EUehF_hM6TknMW1otyvIEjmyOWis,25320
|
|
43
43
|
pulumi_aiven/get_cassandra_user.py,sha256=l_KAbIjqLR_IlMYAPndnKmDYnTE-3RT0H-pRVa3Ydys,9064
|
|
@@ -69,7 +69,7 @@ pulumi_aiven/get_kafka_user.py,sha256=inTk5YpnVHtgZ74Jn5MHKQSioxSwI7E84I66z7zxgO
|
|
|
69
69
|
pulumi_aiven/get_m3_aggregator.py,sha256=zWQVA64QK6ecxGznoq0rxwsm5EYtp7slobvDasYzPwI,25485
|
|
70
70
|
pulumi_aiven/get_m3_db.py,sha256=sywNUZDnuJ56KcP_maQhmUBbKKUPFhJy0DEBcywTcqQ,24952
|
|
71
71
|
pulumi_aiven/get_m3db_user.py,sha256=yPQUd_xn67OJzRHKdS99WROvoSX9WdSNO90LVh6_TO0,7724
|
|
72
|
-
pulumi_aiven/get_mirror_maker_replication_flow.py,sha256=
|
|
72
|
+
pulumi_aiven/get_mirror_maker_replication_flow.py,sha256=8WZLR8fMHdCisQ7baOJSeYDHQV4EybjO9RP9P6FaLmw,17563
|
|
73
73
|
pulumi_aiven/get_my_sql.py,sha256=jyz5XB1UETneBRpMDCjObXSAFio6Blz-7kXT0xH3EeA,25027
|
|
74
74
|
pulumi_aiven/get_mysql_database.py,sha256=IsNjBMvAWyzLL16ul-dEtZfgjXEID_oJYfnq6B8aSVE,7508
|
|
75
75
|
pulumi_aiven/get_mysql_user.py,sha256=RdzrF3I0cj9dhD17z71zLTIY9XC3SbKbIbIiNqGWwxM,9577
|
|
@@ -98,7 +98,7 @@ pulumi_aiven/get_service_integration_endpoint.py,sha256=UQbDuI_NsXQVAg79TJq6l6kE
|
|
|
98
98
|
pulumi_aiven/get_thanos.py,sha256=sv9Ihs567-__ecGgF69EuAD7qtIKIsZDDDhLyIgt-nM,25071
|
|
99
99
|
pulumi_aiven/get_transit_gateway_vpc_attachment.py,sha256=RDle8fWIB5pZs4KOthnIMN26t5JPX-MToy0cczmpPAc,10298
|
|
100
100
|
pulumi_aiven/get_valkey.py,sha256=9VdVWLA8-jwPzAQUg1FHCOFxs43QJ_FW88wWrfsQbKw,25078
|
|
101
|
-
pulumi_aiven/get_valkey_user.py,sha256=
|
|
101
|
+
pulumi_aiven/get_valkey_user.py,sha256=pGKJ5gIM-rXDEPOdIC6Yffb26XfHcKZcuRGpzUC9kfk,10599
|
|
102
102
|
pulumi_aiven/grafana.py,sha256=k5-dXN7BOpwrCxd-tHWMjCmFgXL0Gd8lwkS8FId6umg,82748
|
|
103
103
|
pulumi_aiven/influx_db.py,sha256=nP49oqt1YGVPOj1SltPBQKI2BApN8oNgW5bepj_AV04,83795
|
|
104
104
|
pulumi_aiven/influxdb_database.py,sha256=R6b3ScHJ7dkjMjhn8o0znzLf51pb1au-a2Wa-HH9L1o,14214
|
|
@@ -108,7 +108,6 @@ pulumi_aiven/kafka_acl.py,sha256=-7UE360QEcPiXUtMfkegqIPVglQkDM2MgkhcuGVCNfM,189
|
|
|
108
108
|
pulumi_aiven/kafka_connect.py,sha256=dVkzYMb-i0bxMxF1tkIrLXUjpbZp4t90_mE9QHgn7nU,84585
|
|
109
109
|
pulumi_aiven/kafka_connector.py,sha256=BwN92oSatmqxaVO_qPymbY-5VNf5rVrxCJQZ66Fwnqk,25050
|
|
110
110
|
pulumi_aiven/kafka_mirror_maker.py,sha256=m22G5cr6p31cYw3ishodvUQAxrBCvrpieHzcUAv-kr0,82169
|
|
111
|
-
pulumi_aiven/kafka_native_acl.py,sha256=t0GmrM3rMpPPA0_E2uiP1y6Fhszx056P4s5x05LUpKk,29067
|
|
112
111
|
pulumi_aiven/kafka_schema.py,sha256=lz5TNa-kwI9c7Mthi_cIqXooMz-HRmI-Kb5vb4KZdak,22834
|
|
113
112
|
pulumi_aiven/kafka_schema_configuration.py,sha256=qXnCuKC8AFa1arFZJ4cg-KQEQs65TOvl6-mhst-KHqU,14200
|
|
114
113
|
pulumi_aiven/kafka_schema_registry_acl.py,sha256=3MseIwSoEn0dYwePspK68rVwnpC2gHItmNgrVv0oohE,19623
|
|
@@ -117,7 +116,7 @@ pulumi_aiven/kafka_user.py,sha256=5tjVeLhqOm-sZwNRnacptp9prEhbubsKVxbZgaQz5jc,18
|
|
|
117
116
|
pulumi_aiven/m3_aggregator.py,sha256=1X0a5vsHJXqtI8iIClSo-ZnRIfrbw90syepwW8yiBXg,83710
|
|
118
117
|
pulumi_aiven/m3_db.py,sha256=eo-nkb6NrBAT49j_EeGdGw6a3zPK_zZo6OPLEOOG2-0,82113
|
|
119
118
|
pulumi_aiven/m3db_user.py,sha256=8Uz7rtZ2ynYHNFejDwGZcHG8Er08Vp0AQa8vrwdR1wk,16366
|
|
120
|
-
pulumi_aiven/mirror_maker_replication_flow.py,sha256=
|
|
119
|
+
pulumi_aiven/mirror_maker_replication_flow.py,sha256=g2LD7FxTaIp-iCdZuf2jsIwdOjO55ZCszUh4mB0B32M,50982
|
|
121
120
|
pulumi_aiven/my_sql.py,sha256=TWXXbzPhyaT2i87iqWjjnD3wib0ybmY0QQCmxHJMfU8,82595
|
|
122
121
|
pulumi_aiven/mysql_database.py,sha256=tBEpJc0BsF36NoU7mUwEVml0b_ePoZpHMAgqYLljFjs,14928
|
|
123
122
|
pulumi_aiven/mysql_user.py,sha256=XPKJZiMzoPn0WQ8xYVRucqpVKoXCx4JnPFCDGLpMTK8,21295
|
|
@@ -135,7 +134,7 @@ pulumi_aiven/organization_user.py,sha256=4FHd1BCXslZnBdd9r_TpVaaLWdzTngJG5wFB695
|
|
|
135
134
|
pulumi_aiven/organization_user_group.py,sha256=133e0-VfMmTnWDZPPnS4xzE-UU6R4PY4am7zMGMUrGo,14832
|
|
136
135
|
pulumi_aiven/organization_user_group_member.py,sha256=5iPu5lCGx5y-utd9w2iCKc2E7PHRTFnVVAF3j23pstc,14784
|
|
137
136
|
pulumi_aiven/organizational_unit.py,sha256=OnowaL-y9MDhQAQeTxuv9gmAC8iau2ZVnKCBdbNJfo8,11639
|
|
138
|
-
pulumi_aiven/outputs.py,sha256=
|
|
137
|
+
pulumi_aiven/outputs.py,sha256=Ti-YH7IQ7yR-S8HDOxb-PAkB1KHqjXbht944S_v6Ii4,2119507
|
|
139
138
|
pulumi_aiven/pg.py,sha256=BxqlB_ztH5jyvRw7QdQWPaxZ6QMnzPsYqBroLXFrAG0,80239
|
|
140
139
|
pulumi_aiven/pg_database.py,sha256=bnts8s-gR6mPTf5fHY3EVPRqiHhze8roG6V16h2-Llc,20153
|
|
141
140
|
pulumi_aiven/pg_user.py,sha256=__gTbX36EdjtCthLm09hZn2PRerlPt7jpRCQuzqJ4k0,22036
|
|
@@ -143,7 +142,7 @@ pulumi_aiven/project.py,sha256=xsogAQa9_PwhfTou7-e8ACsaaTqGmCh_S5rkCVKXNag,45569
|
|
|
143
142
|
pulumi_aiven/project_user.py,sha256=wG1tVybAuh2-2XbvX5eT5XqO-mZL36Lve6Ijj2Oz5k0,19671
|
|
144
143
|
pulumi_aiven/project_vpc.py,sha256=rcWiFl2dHdwrXFTZ2WYLpxiUZX-q9tPPZVUvl2bjWAQ,14082
|
|
145
144
|
pulumi_aiven/provider.py,sha256=N7Y-HFsoDOWeKC6iV1NEkU07Eg9ZV8d4FKFHKu5jHbY,5055
|
|
146
|
-
pulumi_aiven/pulumi-plugin.json,sha256=
|
|
145
|
+
pulumi_aiven/pulumi-plugin.json,sha256=uSgtp6vx4C6QQFy2fhzqXFzavtqHl0fZ5dnFdkaXK4M,82
|
|
147
146
|
pulumi_aiven/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
148
147
|
pulumi_aiven/redis.py,sha256=BlfN_uoyo6neIEaS5gzPiJNkBueu08548uVJ9YimIPA,82140
|
|
149
148
|
pulumi_aiven/redis_user.py,sha256=WHnebXTj2UgkTtZf3I6-zqyNQtla131jHAnUJaF1DUA,29358
|
|
@@ -152,12 +151,12 @@ pulumi_aiven/service_integration_endpoint.py,sha256=XzVlistXtdvl2lkcAUVzctffBwLw
|
|
|
152
151
|
pulumi_aiven/static_ip.py,sha256=gs5Ps9wcnK8ont6Ps0jZTMmkhNBNMXzOt4a3uF98p38,14102
|
|
153
152
|
pulumi_aiven/thanos.py,sha256=3CUGk9YtNfo740bis3bhI7CPyvTKDarqO8M6AS9gGMY,82423
|
|
154
153
|
pulumi_aiven/transit_gateway_vpc_attachment.py,sha256=kM9Z__ia5sxeOhkLMhZVpcDB_QCkaEj-JWxnPL8ov68,22081
|
|
155
|
-
pulumi_aiven/valkey.py,sha256=
|
|
156
|
-
pulumi_aiven/valkey_user.py,sha256=
|
|
154
|
+
pulumi_aiven/valkey.py,sha256=MuVtGeNk5YRrqLH9nHbxgjAPsRmcGGOp7OcSZKPfwWk,82147
|
|
155
|
+
pulumi_aiven/valkey_user.py,sha256=SE-l3-V73UP39vZ8etGuKm_Hk8ROfOLjh-pgEWcrfzY,28714
|
|
157
156
|
pulumi_aiven/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030,285
|
|
158
157
|
pulumi_aiven/config/__init__.pyi,sha256=6XkZH3EU98MVgoMLPFHFfEK17BQQzz0S0QFMh1FZrs0,639
|
|
159
158
|
pulumi_aiven/config/vars.py,sha256=jRqbkEfNSP8ga5cnbMhAzHUUb7ahIUROUqR5_KGkobM,832
|
|
160
|
-
pulumi_aiven-6.29.
|
|
161
|
-
pulumi_aiven-6.29.
|
|
162
|
-
pulumi_aiven-6.29.
|
|
163
|
-
pulumi_aiven-6.29.
|
|
159
|
+
pulumi_aiven-6.29.0a1731734138.dist-info/METADATA,sha256=7MPdwNOM3WhAD1oqHprmz-fv4dMROVk0nrfoR5Ot2Sw,2600
|
|
160
|
+
pulumi_aiven-6.29.0a1731734138.dist-info/WHEEL,sha256=R06PA3UVYHThwHvxuRWMqaGcr-PuniXahwjmQRFMEkY,91
|
|
161
|
+
pulumi_aiven-6.29.0a1731734138.dist-info/top_level.txt,sha256=4rjz_Hec4Y2PFX4LhJ-JcnMU5H7z-y7r1yiK_xEduWU,13
|
|
162
|
+
pulumi_aiven-6.29.0a1731734138.dist-info/RECORD,,
|