pulumi-aiven 6.28.0a1731647682__py3-none-any.whl → 6.29.0__py3-none-any.whl

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

Potentially problematic release.


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

Files changed (60) hide show
  1. pulumi_aiven/__init__.py +9 -0
  2. pulumi_aiven/_inputs.py +1136 -227
  3. pulumi_aiven/account_team_project.py +7 -7
  4. pulumi_aiven/billing_group.py +7 -7
  5. pulumi_aiven/cassandra.py +8 -8
  6. pulumi_aiven/clickhouse.py +8 -8
  7. pulumi_aiven/dragonfly.py +8 -8
  8. pulumi_aiven/flink.py +8 -8
  9. pulumi_aiven/get_account_team_project.py +1 -1
  10. pulumi_aiven/get_billing_group.py +1 -1
  11. pulumi_aiven/get_cassanda.py +1 -1
  12. pulumi_aiven/get_cassandra.py +1 -1
  13. pulumi_aiven/get_clickhouse.py +1 -1
  14. pulumi_aiven/get_dragonfly.py +1 -1
  15. pulumi_aiven/get_flink.py +1 -1
  16. pulumi_aiven/get_grafana.py +1 -1
  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_m3_aggregator.py +1 -1
  21. pulumi_aiven/get_m3_db.py +1 -1
  22. pulumi_aiven/get_mirror_maker_replication_flow.py +16 -2
  23. pulumi_aiven/get_my_sql.py +1 -1
  24. pulumi_aiven/get_open_search.py +1 -1
  25. pulumi_aiven/get_pg.py +1 -1
  26. pulumi_aiven/get_project_user.py +1 -1
  27. pulumi_aiven/get_redis.py +1 -1
  28. pulumi_aiven/get_service_component.py +9 -9
  29. pulumi_aiven/get_service_integration.py +17 -17
  30. pulumi_aiven/get_service_integration_endpoint.py +59 -31
  31. pulumi_aiven/get_thanos.py +1 -1
  32. pulumi_aiven/get_valkey.py +1 -1
  33. pulumi_aiven/get_valkey_user.py +9 -9
  34. pulumi_aiven/grafana.py +8 -8
  35. pulumi_aiven/influx_db.py +15 -8
  36. pulumi_aiven/kafka.py +8 -8
  37. pulumi_aiven/kafka_connect.py +8 -8
  38. pulumi_aiven/kafka_mirror_maker.py +8 -8
  39. pulumi_aiven/kafka_native_acl.py +534 -0
  40. pulumi_aiven/m3_aggregator.py +8 -8
  41. pulumi_aiven/m3_db.py +8 -8
  42. pulumi_aiven/mirror_maker_replication_flow.py +54 -7
  43. pulumi_aiven/my_sql.py +8 -8
  44. pulumi_aiven/open_search.py +8 -8
  45. pulumi_aiven/organization_group_project.py +17 -9
  46. pulumi_aiven/organization_permission.py +49 -49
  47. pulumi_aiven/outputs.py +1586 -295
  48. pulumi_aiven/pg.py +8 -8
  49. pulumi_aiven/project_user.py +15 -7
  50. pulumi_aiven/pulumi-plugin.json +1 -1
  51. pulumi_aiven/redis.py +8 -8
  52. pulumi_aiven/service_integration.py +139 -123
  53. pulumi_aiven/service_integration_endpoint.py +302 -140
  54. pulumi_aiven/thanos.py +8 -8
  55. pulumi_aiven/valkey.py +10 -10
  56. pulumi_aiven/valkey_user.py +142 -48
  57. {pulumi_aiven-6.28.0a1731647682.dist-info → pulumi_aiven-6.29.0.dist-info}/METADATA +5 -5
  58. {pulumi_aiven-6.28.0a1731647682.dist-info → pulumi_aiven-6.29.0.dist-info}/RECORD +60 -59
  59. {pulumi_aiven-6.28.0a1731647682.dist-info → pulumi_aiven-6.29.0.dist-info}/WHEEL +1 -1
  60. {pulumi_aiven-6.28.0a1731647682.dist-info → pulumi_aiven-6.29.0.dist-info}/top_level.txt +0 -0
pulumi_aiven/thanos.py CHANGED
@@ -54,7 +54,7 @@ class ThanosArgs:
54
54
  :param pulumi.Input[Sequence[pulumi.Input['ThanosTechEmailArgs']]] tech_emails: The email addresses for [service contacts](https://aiven.io/docs/platform/howto/technical-emails), who will receive important alerts and updates about this service. You can also set email contacts at the project level.
55
55
  :param pulumi.Input[bool] termination_protection: Prevents the service from being deleted. It is recommended to set this to `true` for all production services to prevent unintentional service deletion. This does not shield against deleting databases or topics but for services with backups much of the content can at least be restored from backup in case accidental deletion is done.
56
56
  :param pulumi.Input['ThanosThanosArgs'] thanos: Thanos server connection details.
57
- :param pulumi.Input['ThanosThanosUserConfigArgs'] thanos_user_config: Thanos user configurable settings
57
+ :param pulumi.Input['ThanosThanosUserConfigArgs'] thanos_user_config: Thanos user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
58
58
  """
59
59
  pulumi.set(__self__, "plan", plan)
60
60
  pulumi.set(__self__, "project", project)
@@ -274,7 +274,7 @@ class ThanosArgs:
274
274
  @pulumi.getter(name="thanosUserConfig")
275
275
  def thanos_user_config(self) -> Optional[pulumi.Input['ThanosThanosUserConfigArgs']]:
276
276
  """
277
- Thanos user configurable settings
277
+ Thanos user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
278
278
  """
279
279
  return pulumi.get(self, "thanos_user_config")
280
280
 
@@ -343,7 +343,7 @@ class _ThanosState:
343
343
  :param pulumi.Input[Sequence[pulumi.Input['ThanosTechEmailArgs']]] tech_emails: The email addresses for [service contacts](https://aiven.io/docs/platform/howto/technical-emails), who will receive important alerts and updates about this service. You can also set email contacts at the project level.
344
344
  :param pulumi.Input[bool] termination_protection: Prevents the service from being deleted. It is recommended to set this to `true` for all production services to prevent unintentional service deletion. This does not shield against deleting databases or topics but for services with backups much of the content can at least be restored from backup in case accidental deletion is done.
345
345
  :param pulumi.Input['ThanosThanosArgs'] thanos: Thanos server connection details.
346
- :param pulumi.Input['ThanosThanosUserConfigArgs'] thanos_user_config: Thanos user configurable settings
346
+ :param pulumi.Input['ThanosThanosUserConfigArgs'] thanos_user_config: Thanos user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
347
347
  """
348
348
  if additional_disk_space is not None:
349
349
  pulumi.set(__self__, "additional_disk_space", additional_disk_space)
@@ -738,7 +738,7 @@ class _ThanosState:
738
738
  @pulumi.getter(name="thanosUserConfig")
739
739
  def thanos_user_config(self) -> Optional[pulumi.Input['ThanosThanosUserConfigArgs']]:
740
740
  """
741
- Thanos user configurable settings
741
+ Thanos user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
742
742
  """
743
743
  return pulumi.get(self, "thanos_user_config")
744
744
 
@@ -814,7 +814,7 @@ class Thanos(pulumi.CustomResource):
814
814
  :param pulumi.Input[Sequence[pulumi.Input[Union['ThanosTechEmailArgs', 'ThanosTechEmailArgsDict']]]] tech_emails: The email addresses for [service contacts](https://aiven.io/docs/platform/howto/technical-emails), who will receive important alerts and updates about this service. You can also set email contacts at the project level.
815
815
  :param pulumi.Input[bool] termination_protection: Prevents the service from being deleted. It is recommended to set this to `true` for all production services to prevent unintentional service deletion. This does not shield against deleting databases or topics but for services with backups much of the content can at least be restored from backup in case accidental deletion is done.
816
816
  :param pulumi.Input[Union['ThanosThanosArgs', 'ThanosThanosArgsDict']] thanos: Thanos server connection details.
817
- :param pulumi.Input[Union['ThanosThanosUserConfigArgs', 'ThanosThanosUserConfigArgsDict']] thanos_user_config: Thanos user configurable settings
817
+ :param pulumi.Input[Union['ThanosThanosUserConfigArgs', 'ThanosThanosUserConfigArgsDict']] thanos_user_config: Thanos user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
818
818
  """
819
819
  ...
820
820
  @overload
@@ -998,7 +998,7 @@ class Thanos(pulumi.CustomResource):
998
998
  :param pulumi.Input[Sequence[pulumi.Input[Union['ThanosTechEmailArgs', 'ThanosTechEmailArgsDict']]]] tech_emails: The email addresses for [service contacts](https://aiven.io/docs/platform/howto/technical-emails), who will receive important alerts and updates about this service. You can also set email contacts at the project level.
999
999
  :param pulumi.Input[bool] termination_protection: Prevents the service from being deleted. It is recommended to set this to `true` for all production services to prevent unintentional service deletion. This does not shield against deleting databases or topics but for services with backups much of the content can at least be restored from backup in case accidental deletion is done.
1000
1000
  :param pulumi.Input[Union['ThanosThanosArgs', 'ThanosThanosArgsDict']] thanos: Thanos server connection details.
1001
- :param pulumi.Input[Union['ThanosThanosUserConfigArgs', 'ThanosThanosUserConfigArgsDict']] thanos_user_config: Thanos user configurable settings
1001
+ :param pulumi.Input[Union['ThanosThanosUserConfigArgs', 'ThanosThanosUserConfigArgsDict']] thanos_user_config: Thanos user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
1002
1002
  """
1003
1003
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
1004
1004
 
@@ -1036,7 +1036,7 @@ class Thanos(pulumi.CustomResource):
1036
1036
 
1037
1037
  @property
1038
1038
  @pulumi.getter(name="additionalDiskSpace")
1039
- def additional_disk_space(self) -> pulumi.Output[Optional[str]]:
1039
+ def additional_disk_space(self) -> pulumi.Output[str]:
1040
1040
  """
1041
1041
  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.
1042
1042
  """
@@ -1256,7 +1256,7 @@ class Thanos(pulumi.CustomResource):
1256
1256
  @pulumi.getter(name="thanosUserConfig")
1257
1257
  def thanos_user_config(self) -> pulumi.Output[Optional['outputs.ThanosThanosUserConfig']]:
1258
1258
  """
1259
- Thanos user configurable settings
1259
+ Thanos user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
1260
1260
  """
1261
1261
  return pulumi.get(self, "thanos_user_config")
1262
1262
 
pulumi_aiven/valkey.py CHANGED
@@ -54,7 +54,7 @@ class ValkeyArgs:
54
54
  :param pulumi.Input[Sequence[pulumi.Input['ValkeyTechEmailArgs']]] tech_emails: The email addresses for [service contacts](https://aiven.io/docs/platform/howto/technical-emails), who will receive important alerts and updates about this service. You can also set email contacts at the project level.
55
55
  :param pulumi.Input[bool] termination_protection: Prevents the service from being deleted. It is recommended to set this to `true` for all production services to prevent unintentional service deletion. This does not shield against deleting databases or topics but for services with backups much of the content can at least be restored from backup in case accidental deletion is done.
56
56
  :param pulumi.Input['ValkeyValkeyArgs'] valkey: Valkey server provided values
57
- :param pulumi.Input['ValkeyValkeyUserConfigArgs'] valkey_user_config: Valkey user configurable settings
57
+ :param pulumi.Input['ValkeyValkeyUserConfigArgs'] valkey_user_config: Valkey user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
58
58
  """
59
59
  pulumi.set(__self__, "plan", plan)
60
60
  pulumi.set(__self__, "project", project)
@@ -274,7 +274,7 @@ class ValkeyArgs:
274
274
  @pulumi.getter(name="valkeyUserConfig")
275
275
  def valkey_user_config(self) -> Optional[pulumi.Input['ValkeyValkeyUserConfigArgs']]:
276
276
  """
277
- Valkey user configurable settings
277
+ Valkey user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
278
278
  """
279
279
  return pulumi.get(self, "valkey_user_config")
280
280
 
@@ -343,7 +343,7 @@ class _ValkeyState:
343
343
  :param pulumi.Input[Sequence[pulumi.Input['ValkeyTechEmailArgs']]] tech_emails: The email addresses for [service contacts](https://aiven.io/docs/platform/howto/technical-emails), who will receive important alerts and updates about this service. You can also set email contacts at the project level.
344
344
  :param pulumi.Input[bool] termination_protection: Prevents the service from being deleted. It is recommended to set this to `true` for all production services to prevent unintentional service deletion. This does not shield against deleting databases or topics but for services with backups much of the content can at least be restored from backup in case accidental deletion is done.
345
345
  :param pulumi.Input['ValkeyValkeyArgs'] valkey: Valkey server provided values
346
- :param pulumi.Input['ValkeyValkeyUserConfigArgs'] valkey_user_config: Valkey user configurable settings
346
+ :param pulumi.Input['ValkeyValkeyUserConfigArgs'] valkey_user_config: Valkey user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
347
347
  """
348
348
  if additional_disk_space is not None:
349
349
  pulumi.set(__self__, "additional_disk_space", additional_disk_space)
@@ -738,7 +738,7 @@ class _ValkeyState:
738
738
  @pulumi.getter(name="valkeyUserConfig")
739
739
  def valkey_user_config(self) -> Optional[pulumi.Input['ValkeyValkeyUserConfigArgs']]:
740
740
  """
741
- Valkey user configurable settings
741
+ Valkey user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
742
742
  """
743
743
  return pulumi.get(self, "valkey_user_config")
744
744
 
@@ -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](https://aiven.io/docs/products/valkey) service.
773
+ Creates and manages an [Aiven for Valkey](https://aiven.io/docs/products/valkey) service.
774
774
 
775
775
  ## Example Usage
776
776
 
@@ -811,7 +811,7 @@ class Valkey(pulumi.CustomResource):
811
811
  :param pulumi.Input[Sequence[pulumi.Input[Union['ValkeyTechEmailArgs', 'ValkeyTechEmailArgsDict']]]] tech_emails: The email addresses for [service contacts](https://aiven.io/docs/platform/howto/technical-emails), who will receive important alerts and updates about this service. You can also set email contacts at the project level.
812
812
  :param pulumi.Input[bool] termination_protection: Prevents the service from being deleted. It is recommended to set this to `true` for all production services to prevent unintentional service deletion. This does not shield against deleting databases or topics but for services with backups much of the content can at least be restored from backup in case accidental deletion is done.
813
813
  :param pulumi.Input[Union['ValkeyValkeyArgs', 'ValkeyValkeyArgsDict']] valkey: Valkey server provided values
814
- :param pulumi.Input[Union['ValkeyValkeyUserConfigArgs', 'ValkeyValkeyUserConfigArgsDict']] valkey_user_config: Valkey user configurable settings
814
+ :param pulumi.Input[Union['ValkeyValkeyUserConfigArgs', 'ValkeyValkeyUserConfigArgsDict']] valkey_user_config: Valkey user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
815
815
  """
816
816
  ...
817
817
  @overload
@@ -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](https://aiven.io/docs/products/valkey) service.
823
+ Creates and manages an [Aiven for Valkey](https://aiven.io/docs/products/valkey) service.
824
824
 
825
825
  ## Example Usage
826
826
 
@@ -992,7 +992,7 @@ class Valkey(pulumi.CustomResource):
992
992
  :param pulumi.Input[Sequence[pulumi.Input[Union['ValkeyTechEmailArgs', 'ValkeyTechEmailArgsDict']]]] tech_emails: The email addresses for [service contacts](https://aiven.io/docs/platform/howto/technical-emails), who will receive important alerts and updates about this service. You can also set email contacts at the project level.
993
993
  :param pulumi.Input[bool] termination_protection: Prevents the service from being deleted. It is recommended to set this to `true` for all production services to prevent unintentional service deletion. This does not shield against deleting databases or topics but for services with backups much of the content can at least be restored from backup in case accidental deletion is done.
994
994
  :param pulumi.Input[Union['ValkeyValkeyArgs', 'ValkeyValkeyArgsDict']] valkey: Valkey server provided values
995
- :param pulumi.Input[Union['ValkeyValkeyUserConfigArgs', 'ValkeyValkeyUserConfigArgsDict']] valkey_user_config: Valkey user configurable settings
995
+ :param pulumi.Input[Union['ValkeyValkeyUserConfigArgs', 'ValkeyValkeyUserConfigArgsDict']] valkey_user_config: Valkey user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
996
996
  """
997
997
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
998
998
 
@@ -1030,7 +1030,7 @@ class Valkey(pulumi.CustomResource):
1030
1030
 
1031
1031
  @property
1032
1032
  @pulumi.getter(name="additionalDiskSpace")
1033
- def additional_disk_space(self) -> pulumi.Output[Optional[str]]:
1033
+ def additional_disk_space(self) -> pulumi.Output[str]:
1034
1034
  """
1035
1035
  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.
1036
1036
  """
@@ -1250,7 +1250,7 @@ class Valkey(pulumi.CustomResource):
1250
1250
  @pulumi.getter(name="valkeyUserConfig")
1251
1251
  def valkey_user_config(self) -> pulumi.Output[Optional['outputs.ValkeyValkeyUserConfig']]:
1252
1252
  """
1253
- Valkey user configurable settings
1253
+ Valkey user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
1254
1254
  """
1255
1255
  return pulumi.get(self, "valkey_user_config")
1256
1256
 
@@ -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: 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.
34
+ :param pulumi.Input[str] username: Name of the Valkey service 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 Valkey service user's password.
36
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] valkey_acl_categories: Allow or disallow command categories. To allow a category use the prefix `+@` and to disallow use `-@`. See the [Valkey documentation](https://valkey.io/topics/acl/) for details on the ACL feature. 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: Allows and disallows access to pub/sub channels. Entries are defined as standard glob 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. To allow a command use the prefix `+` and to disallow use `-`. 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: Key access rules. Entries are defined as standard glob patterns. 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
- 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.
83
+ Name of the Valkey service 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 password of the Valkey User.
95
+ The Valkey service user's password.
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
- Defines command category rules. The field is required with`valkey_acl_commands` and `valkey_acl_keys`. Changing this property forces recreation of the resource.
107
+ Allow or disallow command categories. To allow a category use the prefix `+@` and to disallow use `-@`. See the [Valkey documentation](https://valkey.io/topics/acl/) for details on the ACL feature. 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
- Defines the permitted pub/sub channel patterns. Changing this property forces recreation of the resource.
119
+ Allows and disallows access to pub/sub channels. Entries are defined as standard glob 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. The field is required with`valkey_acl_categories` and `valkey_acl_keys`. Changing this property forces recreation of the resource.
131
+ Defines rules for individual commands. To allow a command use the prefix `+` and to disallow use `-`. 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
- Defines key access rules. The field is required with`valkey_acl_categories` and `valkey_acl_keys`. Changing this property forces recreation of the resource.
143
+ Key access rules. Entries are defined as standard glob patterns. 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 password of the Valkey User.
166
+ :param pulumi.Input[str] password: The Valkey service user's password.
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: 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.
169
+ :param pulumi.Input[str] type: User account type, such as primary or regular account.
170
+ :param pulumi.Input[str] username: Name of the Valkey service 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: Allow or disallow command categories. To allow a category use the prefix `+@` and to disallow use `-@`. See the [Valkey documentation](https://valkey.io/topics/acl/) for details on the ACL feature. 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: Allows and disallows access to pub/sub channels. Entries are defined as standard glob 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. To allow a command use the prefix `+` and to disallow use `-`. 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: Key access rules. Entries are defined as standard glob patterns. 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 password of the Valkey User.
199
+ The Valkey service user's password.
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
- Type of the user account. Tells whether the user is the primary account or a regular account.
235
+ User account type, such as primary or 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
- 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.
247
+ Name of the Valkey service 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
- Defines command category rules. The field is required with`valkey_acl_commands` and `valkey_acl_keys`. Changing this property forces recreation of the resource.
259
+ Allow or disallow command categories. To allow a category use the prefix `+@` and to disallow use `-@`. See the [Valkey documentation](https://valkey.io/topics/acl/) for details on the ACL feature. 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
- Defines the permitted pub/sub channel patterns. Changing this property forces recreation of the resource.
271
+ Allows and disallows access to pub/sub channels. Entries are defined as standard glob 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. The field is required with`valkey_acl_categories` and `valkey_acl_keys`. Changing this property forces recreation of the resource.
283
+ Defines rules for individual commands. To allow a command use the prefix `+` and to disallow use `-`. 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
- Defines key access rules. The field is required with`valkey_acl_categories` and `valkey_acl_keys`. Changing this property forces recreation of the resource.
295
+ Key access rules. Entries are defined as standard glob patterns. 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,18 +316,65 @@ 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](https://aiven.io/docs/products/valkey) user.
319
+ Creates and manages an [Aiven for Valkey](https://aiven.io/docs/products/valkey) service user.
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
+ ```
320
367
 
321
368
  :param str resource_name: The name of the resource.
322
369
  :param pulumi.ResourceOptions opts: Options for the resource.
323
- :param pulumi.Input[str] password: The password of the Valkey User.
370
+ :param pulumi.Input[str] password: The Valkey service user's password.
324
371
  :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.
325
372
  :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.
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.
373
+ :param pulumi.Input[str] username: Name of the Valkey service user. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
374
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] valkey_acl_categories: Allow or disallow command categories. To allow a category use the prefix `+@` and to disallow use `-@`. See the [Valkey documentation](https://valkey.io/topics/acl/) for details on the ACL feature. The field is required with`valkey_acl_commands` and `valkey_acl_keys`. Changing this property forces recreation of the resource.
375
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] valkey_acl_channels: Allows and disallows access to pub/sub channels. Entries are defined as standard glob patterns. Changing this property forces recreation of the resource.
376
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] valkey_acl_commands: Defines rules for individual commands. To allow a command use the prefix `+` and to disallow use `-`. The field is required with`valkey_acl_categories` and `valkey_acl_keys`. Changing this property forces recreation of the resource.
377
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] valkey_acl_keys: Key access rules. Entries are defined as standard glob patterns. The field is required with`valkey_acl_categories` and `valkey_acl_keys`. Changing this property forces recreation of the resource.
331
378
  """
332
379
  ...
333
380
  @overload
@@ -336,7 +383,54 @@ class ValkeyUser(pulumi.CustomResource):
336
383
  args: ValkeyUserArgs,
337
384
  opts: Optional[pulumi.ResourceOptions] = None):
338
385
  """
339
- Creates and manages an [Aiven for Valkey](https://aiven.io/docs/products/valkey) user.
386
+ Creates and manages an [Aiven for Valkey](https://aiven.io/docs/products/valkey) service user.
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
+ ```
340
434
 
341
435
  :param str resource_name: The name of the resource.
342
436
  :param ValkeyUserArgs args: The arguments to use to populate this resource's properties.
@@ -413,15 +507,15 @@ class ValkeyUser(pulumi.CustomResource):
413
507
  :param str resource_name: The unique name of the resulting resource.
414
508
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
415
509
  :param pulumi.ResourceOptions opts: Options for the resource.
416
- :param pulumi.Input[str] password: The password of the Valkey User.
510
+ :param pulumi.Input[str] password: The Valkey service user's password.
417
511
  :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.
418
512
  :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.
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.
513
+ :param pulumi.Input[str] type: User account type, such as primary or regular account.
514
+ :param pulumi.Input[str] username: Name of the Valkey service user. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
515
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] valkey_acl_categories: Allow or disallow command categories. To allow a category use the prefix `+@` and to disallow use `-@`. See the [Valkey documentation](https://valkey.io/topics/acl/) for details on the ACL feature. The field is required with`valkey_acl_commands` and `valkey_acl_keys`. Changing this property forces recreation of the resource.
516
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] valkey_acl_channels: Allows and disallows access to pub/sub channels. Entries are defined as standard glob patterns. Changing this property forces recreation of the resource.
517
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] valkey_acl_commands: Defines rules for individual commands. To allow a command use the prefix `+` and to disallow use `-`. The field is required with`valkey_acl_categories` and `valkey_acl_keys`. Changing this property forces recreation of the resource.
518
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] valkey_acl_keys: Key access rules. Entries are defined as standard glob patterns. The field is required with`valkey_acl_categories` and `valkey_acl_keys`. Changing this property forces recreation of the resource.
425
519
  """
426
520
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
427
521
 
@@ -442,7 +536,7 @@ class ValkeyUser(pulumi.CustomResource):
442
536
  @pulumi.getter
443
537
  def password(self) -> pulumi.Output[str]:
444
538
  """
445
- The password of the Valkey User.
539
+ The Valkey service user's password.
446
540
  """
447
541
  return pulumi.get(self, "password")
448
542
 
@@ -466,7 +560,7 @@ class ValkeyUser(pulumi.CustomResource):
466
560
  @pulumi.getter
467
561
  def type(self) -> pulumi.Output[str]:
468
562
  """
469
- Type of the user account. Tells whether the user is the primary account or a regular account.
563
+ User account type, such as primary or regular account.
470
564
  """
471
565
  return pulumi.get(self, "type")
472
566
 
@@ -474,7 +568,7 @@ class ValkeyUser(pulumi.CustomResource):
474
568
  @pulumi.getter
475
569
  def username(self) -> pulumi.Output[str]:
476
570
  """
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.
571
+ Name of the Valkey service user. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
478
572
  """
479
573
  return pulumi.get(self, "username")
480
574
 
@@ -482,7 +576,7 @@ class ValkeyUser(pulumi.CustomResource):
482
576
  @pulumi.getter(name="valkeyAclCategories")
483
577
  def valkey_acl_categories(self) -> pulumi.Output[Optional[Sequence[str]]]:
484
578
  """
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.
579
+ Allow or disallow command categories. To allow a category use the prefix `+@` and to disallow use `-@`. See the [Valkey documentation](https://valkey.io/topics/acl/) for details on the ACL feature. The field is required with`valkey_acl_commands` and `valkey_acl_keys`. Changing this property forces recreation of the resource.
486
580
  """
487
581
  return pulumi.get(self, "valkey_acl_categories")
488
582
 
@@ -490,7 +584,7 @@ class ValkeyUser(pulumi.CustomResource):
490
584
  @pulumi.getter(name="valkeyAclChannels")
491
585
  def valkey_acl_channels(self) -> pulumi.Output[Optional[Sequence[str]]]:
492
586
  """
493
- Defines the permitted pub/sub channel patterns. Changing this property forces recreation of the resource.
587
+ Allows and disallows access to pub/sub channels. Entries are defined as standard glob patterns. Changing this property forces recreation of the resource.
494
588
  """
495
589
  return pulumi.get(self, "valkey_acl_channels")
496
590
 
@@ -498,7 +592,7 @@ class ValkeyUser(pulumi.CustomResource):
498
592
  @pulumi.getter(name="valkeyAclCommands")
499
593
  def valkey_acl_commands(self) -> pulumi.Output[Optional[Sequence[str]]]:
500
594
  """
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.
595
+ Defines rules for individual commands. To allow a command use the prefix `+` and to disallow use `-`. The field is required with`valkey_acl_categories` and `valkey_acl_keys`. Changing this property forces recreation of the resource.
502
596
  """
503
597
  return pulumi.get(self, "valkey_acl_commands")
504
598
 
@@ -506,7 +600,7 @@ class ValkeyUser(pulumi.CustomResource):
506
600
  @pulumi.getter(name="valkeyAclKeys")
507
601
  def valkey_acl_keys(self) -> pulumi.Output[Optional[Sequence[str]]]:
508
602
  """
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.
603
+ Key access rules. Entries are defined as standard glob patterns. The field is required with`valkey_acl_categories` and `valkey_acl_keys`. Changing this property forces recreation of the resource.
510
604
  """
511
605
  return pulumi.get(self, "valkey_acl_keys")
512
606
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pulumi_aiven
3
- Version: 6.28.0a1731647682
3
+ Version: 6.29.0
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
  [![Actions Status](https://github.com/pulumi/pulumi-aiven/workflows/master/badge.svg)](https://github.com/pulumi/pulumi-aiven/actions)
17
17
  [![Slack](http://www.pulumi.com/images/docs/badges/slack.svg)](https://slack.pulumi.com)