pulumi-aiven 6.7.2__py3-none-any.whl → 6.8.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 (51) hide show
  1. pulumi_aiven/_inputs.py +1660 -35
  2. pulumi_aiven/_utilities.py +41 -0
  3. pulumi_aiven/account_team_member.py +7 -7
  4. pulumi_aiven/cassandra.py +47 -0
  5. pulumi_aiven/clickhouse.py +47 -0
  6. pulumi_aiven/config/__init__.pyi +16 -0
  7. pulumi_aiven/flink.py +54 -7
  8. pulumi_aiven/get_account_team_member.py +3 -3
  9. pulumi_aiven/get_cassanda.py +14 -1
  10. pulumi_aiven/get_cassandra.py +14 -1
  11. pulumi_aiven/get_clickhouse.py +14 -1
  12. pulumi_aiven/get_flink.py +14 -1
  13. pulumi_aiven/get_grafana.py +14 -1
  14. pulumi_aiven/get_influx_db.py +14 -1
  15. pulumi_aiven/get_kafka.py +14 -1
  16. pulumi_aiven/get_kafka_connect.py +14 -1
  17. pulumi_aiven/get_kafka_mirror_maker.py +14 -1
  18. pulumi_aiven/get_m3_aggregator.py +14 -1
  19. pulumi_aiven/get_m3_db.py +14 -1
  20. pulumi_aiven/get_mirror_maker_replication_flow.py +15 -2
  21. pulumi_aiven/get_my_sql.py +14 -1
  22. pulumi_aiven/get_open_search.py +14 -1
  23. pulumi_aiven/get_organization_user.py +3 -3
  24. pulumi_aiven/get_organization_user_group.py +14 -1
  25. pulumi_aiven/get_pg.py +14 -1
  26. pulumi_aiven/get_project.py +1 -1
  27. pulumi_aiven/get_project_user.py +3 -3
  28. pulumi_aiven/get_redis.py +14 -1
  29. pulumi_aiven/get_service_integration_endpoint.py +28 -2
  30. pulumi_aiven/grafana.py +54 -0
  31. pulumi_aiven/influx_db.py +47 -0
  32. pulumi_aiven/kafka.py +47 -0
  33. pulumi_aiven/kafka_connect.py +54 -0
  34. pulumi_aiven/kafka_mirror_maker.py +54 -0
  35. pulumi_aiven/m3_aggregator.py +54 -0
  36. pulumi_aiven/m3_db.py +54 -0
  37. pulumi_aiven/mirror_maker_replication_flow.py +54 -7
  38. pulumi_aiven/my_sql.py +54 -0
  39. pulumi_aiven/open_search.py +47 -0
  40. pulumi_aiven/organization_user.py +7 -7
  41. pulumi_aiven/organization_user_group.py +28 -0
  42. pulumi_aiven/outputs.py +2473 -64
  43. pulumi_aiven/pg.py +47 -0
  44. pulumi_aiven/project.py +7 -7
  45. pulumi_aiven/project_user.py +7 -7
  46. pulumi_aiven/redis.py +54 -0
  47. pulumi_aiven/service_integration_endpoint.py +101 -7
  48. {pulumi_aiven-6.7.2.dist-info → pulumi_aiven-6.8.0.dist-info}/METADATA +2 -2
  49. {pulumi_aiven-6.7.2.dist-info → pulumi_aiven-6.8.0.dist-info}/RECORD +51 -50
  50. {pulumi_aiven-6.7.2.dist-info → pulumi_aiven-6.8.0.dist-info}/WHEEL +1 -1
  51. {pulumi_aiven-6.7.2.dist-info → pulumi_aiven-6.8.0.dist-info}/top_level.txt +0 -0
@@ -29,6 +29,7 @@ class KafkaMirrorMakerArgs:
29
29
  service_integrations: Optional[pulumi.Input[Sequence[pulumi.Input['KafkaMirrorMakerServiceIntegrationArgs']]]] = None,
30
30
  static_ips: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
31
31
  tags: Optional[pulumi.Input[Sequence[pulumi.Input['KafkaMirrorMakerTagArgs']]]] = None,
32
+ tech_emails: Optional[pulumi.Input[Sequence[pulumi.Input['KafkaMirrorMakerTechEmailArgs']]]] = None,
32
33
  termination_protection: Optional[pulumi.Input[bool]] = None):
33
34
  """
34
35
  The set of arguments for constructing a KafkaMirrorMaker resource.
@@ -63,6 +64,8 @@ class KafkaMirrorMakerArgs:
63
64
  :param pulumi.Input[Sequence[pulumi.Input[str]]] static_ips: Static IPs that are going to be associated with this service. Please assign a value using the 'toset' function. Once a
64
65
  static ip resource is in the 'assigned' state it cannot be unbound from the node again
65
66
  :param pulumi.Input[Sequence[pulumi.Input['KafkaMirrorMakerTagArgs']]] tags: Tags are key-value pairs that allow you to categorize services.
67
+ :param pulumi.Input[Sequence[pulumi.Input['KafkaMirrorMakerTechEmailArgs']]] tech_emails: Defines the email addresses that will receive alerts about upcoming maintenance updates or warnings about service
68
+ instability.
66
69
  :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
67
70
  unintentional service deletion. This does not shield against deleting databases or topics but for services with backups
68
71
  much of the content can at least be restored from backup in case accidental deletion is done.
@@ -93,6 +96,8 @@ class KafkaMirrorMakerArgs:
93
96
  pulumi.set(__self__, "static_ips", static_ips)
94
97
  if tags is not None:
95
98
  pulumi.set(__self__, "tags", tags)
99
+ if tech_emails is not None:
100
+ pulumi.set(__self__, "tech_emails", tech_emails)
96
101
  if termination_protection is not None:
97
102
  pulumi.set(__self__, "termination_protection", termination_protection)
98
103
 
@@ -273,6 +278,19 @@ class KafkaMirrorMakerArgs:
273
278
  def tags(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['KafkaMirrorMakerTagArgs']]]]):
274
279
  pulumi.set(self, "tags", value)
275
280
 
281
+ @property
282
+ @pulumi.getter(name="techEmails")
283
+ def tech_emails(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['KafkaMirrorMakerTechEmailArgs']]]]:
284
+ """
285
+ Defines the email addresses that will receive alerts about upcoming maintenance updates or warnings about service
286
+ instability.
287
+ """
288
+ return pulumi.get(self, "tech_emails")
289
+
290
+ @tech_emails.setter
291
+ def tech_emails(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['KafkaMirrorMakerTechEmailArgs']]]]):
292
+ pulumi.set(self, "tech_emails", value)
293
+
276
294
  @property
277
295
  @pulumi.getter(name="terminationProtection")
278
296
  def termination_protection(self) -> Optional[pulumi.Input[bool]]:
@@ -317,6 +335,7 @@ class _KafkaMirrorMakerState:
317
335
  state: Optional[pulumi.Input[str]] = None,
318
336
  static_ips: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
319
337
  tags: Optional[pulumi.Input[Sequence[pulumi.Input['KafkaMirrorMakerTagArgs']]]] = None,
338
+ tech_emails: Optional[pulumi.Input[Sequence[pulumi.Input['KafkaMirrorMakerTechEmailArgs']]]] = None,
320
339
  termination_protection: Optional[pulumi.Input[bool]] = None):
321
340
  """
322
341
  Input properties used for looking up and filtering KafkaMirrorMaker resources.
@@ -366,6 +385,8 @@ class _KafkaMirrorMakerState:
366
385
  :param pulumi.Input[Sequence[pulumi.Input[str]]] static_ips: Static IPs that are going to be associated with this service. Please assign a value using the 'toset' function. Once a
367
386
  static ip resource is in the 'assigned' state it cannot be unbound from the node again
368
387
  :param pulumi.Input[Sequence[pulumi.Input['KafkaMirrorMakerTagArgs']]] tags: Tags are key-value pairs that allow you to categorize services.
388
+ :param pulumi.Input[Sequence[pulumi.Input['KafkaMirrorMakerTechEmailArgs']]] tech_emails: Defines the email addresses that will receive alerts about upcoming maintenance updates or warnings about service
389
+ instability.
369
390
  :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
370
391
  unintentional service deletion. This does not shield against deleting databases or topics but for services with backups
371
392
  much of the content can at least be restored from backup in case accidental deletion is done.
@@ -425,6 +446,8 @@ class _KafkaMirrorMakerState:
425
446
  pulumi.set(__self__, "static_ips", static_ips)
426
447
  if tags is not None:
427
448
  pulumi.set(__self__, "tags", tags)
449
+ if tech_emails is not None:
450
+ pulumi.set(__self__, "tech_emails", tech_emails)
428
451
  if termination_protection is not None:
429
452
  pulumi.set(__self__, "termination_protection", termination_protection)
430
453
 
@@ -763,6 +786,19 @@ class _KafkaMirrorMakerState:
763
786
  def tags(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['KafkaMirrorMakerTagArgs']]]]):
764
787
  pulumi.set(self, "tags", value)
765
788
 
789
+ @property
790
+ @pulumi.getter(name="techEmails")
791
+ def tech_emails(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['KafkaMirrorMakerTechEmailArgs']]]]:
792
+ """
793
+ Defines the email addresses that will receive alerts about upcoming maintenance updates or warnings about service
794
+ instability.
795
+ """
796
+ return pulumi.get(self, "tech_emails")
797
+
798
+ @tech_emails.setter
799
+ def tech_emails(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['KafkaMirrorMakerTechEmailArgs']]]]):
800
+ pulumi.set(self, "tech_emails", value)
801
+
766
802
  @property
767
803
  @pulumi.getter(name="terminationProtection")
768
804
  def termination_protection(self) -> Optional[pulumi.Input[bool]]:
@@ -796,6 +832,7 @@ class KafkaMirrorMaker(pulumi.CustomResource):
796
832
  service_name: Optional[pulumi.Input[str]] = None,
797
833
  static_ips: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
798
834
  tags: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['KafkaMirrorMakerTagArgs']]]]] = None,
835
+ tech_emails: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['KafkaMirrorMakerTechEmailArgs']]]]] = None,
799
836
  termination_protection: Optional[pulumi.Input[bool]] = None,
800
837
  __props__=None):
801
838
  """
@@ -861,6 +898,8 @@ class KafkaMirrorMaker(pulumi.CustomResource):
861
898
  :param pulumi.Input[Sequence[pulumi.Input[str]]] static_ips: Static IPs that are going to be associated with this service. Please assign a value using the 'toset' function. Once a
862
899
  static ip resource is in the 'assigned' state it cannot be unbound from the node again
863
900
  :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['KafkaMirrorMakerTagArgs']]]] tags: Tags are key-value pairs that allow you to categorize services.
901
+ :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['KafkaMirrorMakerTechEmailArgs']]]] tech_emails: Defines the email addresses that will receive alerts about upcoming maintenance updates or warnings about service
902
+ instability.
864
903
  :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
865
904
  unintentional service deletion. This does not shield against deleting databases or topics but for services with backups
866
905
  much of the content can at least be restored from backup in case accidental deletion is done.
@@ -929,6 +968,7 @@ class KafkaMirrorMaker(pulumi.CustomResource):
929
968
  service_name: Optional[pulumi.Input[str]] = None,
930
969
  static_ips: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
931
970
  tags: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['KafkaMirrorMakerTagArgs']]]]] = None,
971
+ tech_emails: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['KafkaMirrorMakerTechEmailArgs']]]]] = None,
932
972
  termination_protection: Optional[pulumi.Input[bool]] = None,
933
973
  __props__=None):
934
974
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
@@ -958,6 +998,7 @@ class KafkaMirrorMaker(pulumi.CustomResource):
958
998
  __props__.__dict__["service_name"] = service_name
959
999
  __props__.__dict__["static_ips"] = static_ips
960
1000
  __props__.__dict__["tags"] = tags
1001
+ __props__.__dict__["tech_emails"] = tech_emails
961
1002
  __props__.__dict__["termination_protection"] = termination_protection
962
1003
  __props__.__dict__["components"] = None
963
1004
  __props__.__dict__["disk_space_cap"] = None
@@ -1010,6 +1051,7 @@ class KafkaMirrorMaker(pulumi.CustomResource):
1010
1051
  state: Optional[pulumi.Input[str]] = None,
1011
1052
  static_ips: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
1012
1053
  tags: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['KafkaMirrorMakerTagArgs']]]]] = None,
1054
+ tech_emails: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['KafkaMirrorMakerTechEmailArgs']]]]] = None,
1013
1055
  termination_protection: Optional[pulumi.Input[bool]] = None) -> 'KafkaMirrorMaker':
1014
1056
  """
1015
1057
  Get an existing KafkaMirrorMaker resource's state with the given name, id, and optional extra
@@ -1064,6 +1106,8 @@ class KafkaMirrorMaker(pulumi.CustomResource):
1064
1106
  :param pulumi.Input[Sequence[pulumi.Input[str]]] static_ips: Static IPs that are going to be associated with this service. Please assign a value using the 'toset' function. Once a
1065
1107
  static ip resource is in the 'assigned' state it cannot be unbound from the node again
1066
1108
  :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['KafkaMirrorMakerTagArgs']]]] tags: Tags are key-value pairs that allow you to categorize services.
1109
+ :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['KafkaMirrorMakerTechEmailArgs']]]] tech_emails: Defines the email addresses that will receive alerts about upcoming maintenance updates or warnings about service
1110
+ instability.
1067
1111
  :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
1068
1112
  unintentional service deletion. This does not shield against deleting databases or topics but for services with backups
1069
1113
  much of the content can at least be restored from backup in case accidental deletion is done.
@@ -1098,6 +1142,7 @@ class KafkaMirrorMaker(pulumi.CustomResource):
1098
1142
  __props__.__dict__["state"] = state
1099
1143
  __props__.__dict__["static_ips"] = static_ips
1100
1144
  __props__.__dict__["tags"] = tags
1145
+ __props__.__dict__["tech_emails"] = tech_emails
1101
1146
  __props__.__dict__["termination_protection"] = termination_protection
1102
1147
  return KafkaMirrorMaker(resource_name, opts=opts, __props__=__props__)
1103
1148
 
@@ -1332,6 +1377,15 @@ class KafkaMirrorMaker(pulumi.CustomResource):
1332
1377
  """
1333
1378
  return pulumi.get(self, "tags")
1334
1379
 
1380
+ @property
1381
+ @pulumi.getter(name="techEmails")
1382
+ def tech_emails(self) -> pulumi.Output[Optional[Sequence['outputs.KafkaMirrorMakerTechEmail']]]:
1383
+ """
1384
+ Defines the email addresses that will receive alerts about upcoming maintenance updates or warnings about service
1385
+ instability.
1386
+ """
1387
+ return pulumi.get(self, "tech_emails")
1388
+
1335
1389
  @property
1336
1390
  @pulumi.getter(name="terminationProtection")
1337
1391
  def termination_protection(self) -> pulumi.Output[Optional[bool]]:
@@ -29,6 +29,7 @@ class M3AggregatorArgs:
29
29
  service_integrations: Optional[pulumi.Input[Sequence[pulumi.Input['M3AggregatorServiceIntegrationArgs']]]] = None,
30
30
  static_ips: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
31
31
  tags: Optional[pulumi.Input[Sequence[pulumi.Input['M3AggregatorTagArgs']]]] = None,
32
+ tech_emails: Optional[pulumi.Input[Sequence[pulumi.Input['M3AggregatorTechEmailArgs']]]] = None,
32
33
  termination_protection: Optional[pulumi.Input[bool]] = None):
33
34
  """
34
35
  The set of arguments for constructing a M3Aggregator resource.
@@ -63,6 +64,8 @@ class M3AggregatorArgs:
63
64
  :param pulumi.Input[Sequence[pulumi.Input[str]]] static_ips: Static IPs that are going to be associated with this service. Please assign a value using the 'toset' function. Once a
64
65
  static ip resource is in the 'assigned' state it cannot be unbound from the node again
65
66
  :param pulumi.Input[Sequence[pulumi.Input['M3AggregatorTagArgs']]] tags: Tags are key-value pairs that allow you to categorize services.
67
+ :param pulumi.Input[Sequence[pulumi.Input['M3AggregatorTechEmailArgs']]] tech_emails: Defines the email addresses that will receive alerts about upcoming maintenance updates or warnings about service
68
+ instability.
66
69
  :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
67
70
  unintentional service deletion. This does not shield against deleting databases or topics but for services with backups
68
71
  much of the content can at least be restored from backup in case accidental deletion is done.
@@ -93,6 +96,8 @@ class M3AggregatorArgs:
93
96
  pulumi.set(__self__, "static_ips", static_ips)
94
97
  if tags is not None:
95
98
  pulumi.set(__self__, "tags", tags)
99
+ if tech_emails is not None:
100
+ pulumi.set(__self__, "tech_emails", tech_emails)
96
101
  if termination_protection is not None:
97
102
  pulumi.set(__self__, "termination_protection", termination_protection)
98
103
 
@@ -273,6 +278,19 @@ class M3AggregatorArgs:
273
278
  def tags(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['M3AggregatorTagArgs']]]]):
274
279
  pulumi.set(self, "tags", value)
275
280
 
281
+ @property
282
+ @pulumi.getter(name="techEmails")
283
+ def tech_emails(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['M3AggregatorTechEmailArgs']]]]:
284
+ """
285
+ Defines the email addresses that will receive alerts about upcoming maintenance updates or warnings about service
286
+ instability.
287
+ """
288
+ return pulumi.get(self, "tech_emails")
289
+
290
+ @tech_emails.setter
291
+ def tech_emails(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['M3AggregatorTechEmailArgs']]]]):
292
+ pulumi.set(self, "tech_emails", value)
293
+
276
294
  @property
277
295
  @pulumi.getter(name="terminationProtection")
278
296
  def termination_protection(self) -> Optional[pulumi.Input[bool]]:
@@ -317,6 +335,7 @@ class _M3AggregatorState:
317
335
  state: Optional[pulumi.Input[str]] = None,
318
336
  static_ips: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
319
337
  tags: Optional[pulumi.Input[Sequence[pulumi.Input['M3AggregatorTagArgs']]]] = None,
338
+ tech_emails: Optional[pulumi.Input[Sequence[pulumi.Input['M3AggregatorTechEmailArgs']]]] = None,
320
339
  termination_protection: Optional[pulumi.Input[bool]] = None):
321
340
  """
322
341
  Input properties used for looking up and filtering M3Aggregator resources.
@@ -366,6 +385,8 @@ class _M3AggregatorState:
366
385
  :param pulumi.Input[Sequence[pulumi.Input[str]]] static_ips: Static IPs that are going to be associated with this service. Please assign a value using the 'toset' function. Once a
367
386
  static ip resource is in the 'assigned' state it cannot be unbound from the node again
368
387
  :param pulumi.Input[Sequence[pulumi.Input['M3AggregatorTagArgs']]] tags: Tags are key-value pairs that allow you to categorize services.
388
+ :param pulumi.Input[Sequence[pulumi.Input['M3AggregatorTechEmailArgs']]] tech_emails: Defines the email addresses that will receive alerts about upcoming maintenance updates or warnings about service
389
+ instability.
369
390
  :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
370
391
  unintentional service deletion. This does not shield against deleting databases or topics but for services with backups
371
392
  much of the content can at least be restored from backup in case accidental deletion is done.
@@ -425,6 +446,8 @@ class _M3AggregatorState:
425
446
  pulumi.set(__self__, "static_ips", static_ips)
426
447
  if tags is not None:
427
448
  pulumi.set(__self__, "tags", tags)
449
+ if tech_emails is not None:
450
+ pulumi.set(__self__, "tech_emails", tech_emails)
428
451
  if termination_protection is not None:
429
452
  pulumi.set(__self__, "termination_protection", termination_protection)
430
453
 
@@ -763,6 +786,19 @@ class _M3AggregatorState:
763
786
  def tags(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['M3AggregatorTagArgs']]]]):
764
787
  pulumi.set(self, "tags", value)
765
788
 
789
+ @property
790
+ @pulumi.getter(name="techEmails")
791
+ def tech_emails(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['M3AggregatorTechEmailArgs']]]]:
792
+ """
793
+ Defines the email addresses that will receive alerts about upcoming maintenance updates or warnings about service
794
+ instability.
795
+ """
796
+ return pulumi.get(self, "tech_emails")
797
+
798
+ @tech_emails.setter
799
+ def tech_emails(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['M3AggregatorTechEmailArgs']]]]):
800
+ pulumi.set(self, "tech_emails", value)
801
+
766
802
  @property
767
803
  @pulumi.getter(name="terminationProtection")
768
804
  def termination_protection(self) -> Optional[pulumi.Input[bool]]:
@@ -796,6 +832,7 @@ class M3Aggregator(pulumi.CustomResource):
796
832
  service_name: Optional[pulumi.Input[str]] = None,
797
833
  static_ips: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
798
834
  tags: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['M3AggregatorTagArgs']]]]] = None,
835
+ tech_emails: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['M3AggregatorTechEmailArgs']]]]] = None,
799
836
  termination_protection: Optional[pulumi.Input[bool]] = None,
800
837
  __props__=None):
801
838
  """
@@ -858,6 +895,8 @@ class M3Aggregator(pulumi.CustomResource):
858
895
  :param pulumi.Input[Sequence[pulumi.Input[str]]] static_ips: Static IPs that are going to be associated with this service. Please assign a value using the 'toset' function. Once a
859
896
  static ip resource is in the 'assigned' state it cannot be unbound from the node again
860
897
  :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['M3AggregatorTagArgs']]]] tags: Tags are key-value pairs that allow you to categorize services.
898
+ :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['M3AggregatorTechEmailArgs']]]] tech_emails: Defines the email addresses that will receive alerts about upcoming maintenance updates or warnings about service
899
+ instability.
861
900
  :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
862
901
  unintentional service deletion. This does not shield against deleting databases or topics but for services with backups
863
902
  much of the content can at least be restored from backup in case accidental deletion is done.
@@ -923,6 +962,7 @@ class M3Aggregator(pulumi.CustomResource):
923
962
  service_name: Optional[pulumi.Input[str]] = None,
924
963
  static_ips: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
925
964
  tags: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['M3AggregatorTagArgs']]]]] = None,
965
+ tech_emails: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['M3AggregatorTechEmailArgs']]]]] = None,
926
966
  termination_protection: Optional[pulumi.Input[bool]] = None,
927
967
  __props__=None):
928
968
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
@@ -952,6 +992,7 @@ class M3Aggregator(pulumi.CustomResource):
952
992
  __props__.__dict__["service_name"] = service_name
953
993
  __props__.__dict__["static_ips"] = static_ips
954
994
  __props__.__dict__["tags"] = tags
995
+ __props__.__dict__["tech_emails"] = tech_emails
955
996
  __props__.__dict__["termination_protection"] = termination_protection
956
997
  __props__.__dict__["components"] = None
957
998
  __props__.__dict__["disk_space_cap"] = None
@@ -1004,6 +1045,7 @@ class M3Aggregator(pulumi.CustomResource):
1004
1045
  state: Optional[pulumi.Input[str]] = None,
1005
1046
  static_ips: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
1006
1047
  tags: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['M3AggregatorTagArgs']]]]] = None,
1048
+ tech_emails: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['M3AggregatorTechEmailArgs']]]]] = None,
1007
1049
  termination_protection: Optional[pulumi.Input[bool]] = None) -> 'M3Aggregator':
1008
1050
  """
1009
1051
  Get an existing M3Aggregator resource's state with the given name, id, and optional extra
@@ -1058,6 +1100,8 @@ class M3Aggregator(pulumi.CustomResource):
1058
1100
  :param pulumi.Input[Sequence[pulumi.Input[str]]] static_ips: Static IPs that are going to be associated with this service. Please assign a value using the 'toset' function. Once a
1059
1101
  static ip resource is in the 'assigned' state it cannot be unbound from the node again
1060
1102
  :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['M3AggregatorTagArgs']]]] tags: Tags are key-value pairs that allow you to categorize services.
1103
+ :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['M3AggregatorTechEmailArgs']]]] tech_emails: Defines the email addresses that will receive alerts about upcoming maintenance updates or warnings about service
1104
+ instability.
1061
1105
  :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
1062
1106
  unintentional service deletion. This does not shield against deleting databases or topics but for services with backups
1063
1107
  much of the content can at least be restored from backup in case accidental deletion is done.
@@ -1092,6 +1136,7 @@ class M3Aggregator(pulumi.CustomResource):
1092
1136
  __props__.__dict__["state"] = state
1093
1137
  __props__.__dict__["static_ips"] = static_ips
1094
1138
  __props__.__dict__["tags"] = tags
1139
+ __props__.__dict__["tech_emails"] = tech_emails
1095
1140
  __props__.__dict__["termination_protection"] = termination_protection
1096
1141
  return M3Aggregator(resource_name, opts=opts, __props__=__props__)
1097
1142
 
@@ -1326,6 +1371,15 @@ class M3Aggregator(pulumi.CustomResource):
1326
1371
  """
1327
1372
  return pulumi.get(self, "tags")
1328
1373
 
1374
+ @property
1375
+ @pulumi.getter(name="techEmails")
1376
+ def tech_emails(self) -> pulumi.Output[Optional[Sequence['outputs.M3AggregatorTechEmail']]]:
1377
+ """
1378
+ Defines the email addresses that will receive alerts about upcoming maintenance updates or warnings about service
1379
+ instability.
1380
+ """
1381
+ return pulumi.get(self, "tech_emails")
1382
+
1329
1383
  @property
1330
1384
  @pulumi.getter(name="terminationProtection")
1331
1385
  def termination_protection(self) -> pulumi.Output[Optional[bool]]:
pulumi_aiven/m3_db.py CHANGED
@@ -29,6 +29,7 @@ class M3DbArgs:
29
29
  service_integrations: Optional[pulumi.Input[Sequence[pulumi.Input['M3DbServiceIntegrationArgs']]]] = None,
30
30
  static_ips: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
31
31
  tags: Optional[pulumi.Input[Sequence[pulumi.Input['M3DbTagArgs']]]] = None,
32
+ tech_emails: Optional[pulumi.Input[Sequence[pulumi.Input['M3DbTechEmailArgs']]]] = None,
32
33
  termination_protection: Optional[pulumi.Input[bool]] = None):
33
34
  """
34
35
  The set of arguments for constructing a M3Db resource.
@@ -63,6 +64,8 @@ class M3DbArgs:
63
64
  :param pulumi.Input[Sequence[pulumi.Input[str]]] static_ips: Static IPs that are going to be associated with this service. Please assign a value using the 'toset' function. Once a
64
65
  static ip resource is in the 'assigned' state it cannot be unbound from the node again
65
66
  :param pulumi.Input[Sequence[pulumi.Input['M3DbTagArgs']]] tags: Tags are key-value pairs that allow you to categorize services.
67
+ :param pulumi.Input[Sequence[pulumi.Input['M3DbTechEmailArgs']]] tech_emails: Defines the email addresses that will receive alerts about upcoming maintenance updates or warnings about service
68
+ instability.
66
69
  :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
67
70
  unintentional service deletion. This does not shield against deleting databases or topics but for services with backups
68
71
  much of the content can at least be restored from backup in case accidental deletion is done.
@@ -93,6 +96,8 @@ class M3DbArgs:
93
96
  pulumi.set(__self__, "static_ips", static_ips)
94
97
  if tags is not None:
95
98
  pulumi.set(__self__, "tags", tags)
99
+ if tech_emails is not None:
100
+ pulumi.set(__self__, "tech_emails", tech_emails)
96
101
  if termination_protection is not None:
97
102
  pulumi.set(__self__, "termination_protection", termination_protection)
98
103
 
@@ -273,6 +278,19 @@ class M3DbArgs:
273
278
  def tags(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['M3DbTagArgs']]]]):
274
279
  pulumi.set(self, "tags", value)
275
280
 
281
+ @property
282
+ @pulumi.getter(name="techEmails")
283
+ def tech_emails(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['M3DbTechEmailArgs']]]]:
284
+ """
285
+ Defines the email addresses that will receive alerts about upcoming maintenance updates or warnings about service
286
+ instability.
287
+ """
288
+ return pulumi.get(self, "tech_emails")
289
+
290
+ @tech_emails.setter
291
+ def tech_emails(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['M3DbTechEmailArgs']]]]):
292
+ pulumi.set(self, "tech_emails", value)
293
+
276
294
  @property
277
295
  @pulumi.getter(name="terminationProtection")
278
296
  def termination_protection(self) -> Optional[pulumi.Input[bool]]:
@@ -317,6 +335,7 @@ class _M3DbState:
317
335
  state: Optional[pulumi.Input[str]] = None,
318
336
  static_ips: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
319
337
  tags: Optional[pulumi.Input[Sequence[pulumi.Input['M3DbTagArgs']]]] = None,
338
+ tech_emails: Optional[pulumi.Input[Sequence[pulumi.Input['M3DbTechEmailArgs']]]] = None,
320
339
  termination_protection: Optional[pulumi.Input[bool]] = None):
321
340
  """
322
341
  Input properties used for looking up and filtering M3Db resources.
@@ -366,6 +385,8 @@ class _M3DbState:
366
385
  :param pulumi.Input[Sequence[pulumi.Input[str]]] static_ips: Static IPs that are going to be associated with this service. Please assign a value using the 'toset' function. Once a
367
386
  static ip resource is in the 'assigned' state it cannot be unbound from the node again
368
387
  :param pulumi.Input[Sequence[pulumi.Input['M3DbTagArgs']]] tags: Tags are key-value pairs that allow you to categorize services.
388
+ :param pulumi.Input[Sequence[pulumi.Input['M3DbTechEmailArgs']]] tech_emails: Defines the email addresses that will receive alerts about upcoming maintenance updates or warnings about service
389
+ instability.
369
390
  :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
370
391
  unintentional service deletion. This does not shield against deleting databases or topics but for services with backups
371
392
  much of the content can at least be restored from backup in case accidental deletion is done.
@@ -425,6 +446,8 @@ class _M3DbState:
425
446
  pulumi.set(__self__, "static_ips", static_ips)
426
447
  if tags is not None:
427
448
  pulumi.set(__self__, "tags", tags)
449
+ if tech_emails is not None:
450
+ pulumi.set(__self__, "tech_emails", tech_emails)
428
451
  if termination_protection is not None:
429
452
  pulumi.set(__self__, "termination_protection", termination_protection)
430
453
 
@@ -763,6 +786,19 @@ class _M3DbState:
763
786
  def tags(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['M3DbTagArgs']]]]):
764
787
  pulumi.set(self, "tags", value)
765
788
 
789
+ @property
790
+ @pulumi.getter(name="techEmails")
791
+ def tech_emails(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['M3DbTechEmailArgs']]]]:
792
+ """
793
+ Defines the email addresses that will receive alerts about upcoming maintenance updates or warnings about service
794
+ instability.
795
+ """
796
+ return pulumi.get(self, "tech_emails")
797
+
798
+ @tech_emails.setter
799
+ def tech_emails(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['M3DbTechEmailArgs']]]]):
800
+ pulumi.set(self, "tech_emails", value)
801
+
766
802
  @property
767
803
  @pulumi.getter(name="terminationProtection")
768
804
  def termination_protection(self) -> Optional[pulumi.Input[bool]]:
@@ -796,6 +832,7 @@ class M3Db(pulumi.CustomResource):
796
832
  service_name: Optional[pulumi.Input[str]] = None,
797
833
  static_ips: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
798
834
  tags: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['M3DbTagArgs']]]]] = None,
835
+ tech_emails: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['M3DbTechEmailArgs']]]]] = None,
799
836
  termination_protection: Optional[pulumi.Input[bool]] = None,
800
837
  __props__=None):
801
838
  """
@@ -862,6 +899,8 @@ class M3Db(pulumi.CustomResource):
862
899
  :param pulumi.Input[Sequence[pulumi.Input[str]]] static_ips: Static IPs that are going to be associated with this service. Please assign a value using the 'toset' function. Once a
863
900
  static ip resource is in the 'assigned' state it cannot be unbound from the node again
864
901
  :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['M3DbTagArgs']]]] tags: Tags are key-value pairs that allow you to categorize services.
902
+ :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['M3DbTechEmailArgs']]]] tech_emails: Defines the email addresses that will receive alerts about upcoming maintenance updates or warnings about service
903
+ instability.
865
904
  :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
866
905
  unintentional service deletion. This does not shield against deleting databases or topics but for services with backups
867
906
  much of the content can at least be restored from backup in case accidental deletion is done.
@@ -931,6 +970,7 @@ class M3Db(pulumi.CustomResource):
931
970
  service_name: Optional[pulumi.Input[str]] = None,
932
971
  static_ips: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
933
972
  tags: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['M3DbTagArgs']]]]] = None,
973
+ tech_emails: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['M3DbTechEmailArgs']]]]] = None,
934
974
  termination_protection: Optional[pulumi.Input[bool]] = None,
935
975
  __props__=None):
936
976
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
@@ -960,6 +1000,7 @@ class M3Db(pulumi.CustomResource):
960
1000
  __props__.__dict__["service_name"] = service_name
961
1001
  __props__.__dict__["static_ips"] = static_ips
962
1002
  __props__.__dict__["tags"] = tags
1003
+ __props__.__dict__["tech_emails"] = tech_emails
963
1004
  __props__.__dict__["termination_protection"] = termination_protection
964
1005
  __props__.__dict__["components"] = None
965
1006
  __props__.__dict__["disk_space_cap"] = None
@@ -1012,6 +1053,7 @@ class M3Db(pulumi.CustomResource):
1012
1053
  state: Optional[pulumi.Input[str]] = None,
1013
1054
  static_ips: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
1014
1055
  tags: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['M3DbTagArgs']]]]] = None,
1056
+ tech_emails: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['M3DbTechEmailArgs']]]]] = None,
1015
1057
  termination_protection: Optional[pulumi.Input[bool]] = None) -> 'M3Db':
1016
1058
  """
1017
1059
  Get an existing M3Db resource's state with the given name, id, and optional extra
@@ -1066,6 +1108,8 @@ class M3Db(pulumi.CustomResource):
1066
1108
  :param pulumi.Input[Sequence[pulumi.Input[str]]] static_ips: Static IPs that are going to be associated with this service. Please assign a value using the 'toset' function. Once a
1067
1109
  static ip resource is in the 'assigned' state it cannot be unbound from the node again
1068
1110
  :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['M3DbTagArgs']]]] tags: Tags are key-value pairs that allow you to categorize services.
1111
+ :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['M3DbTechEmailArgs']]]] tech_emails: Defines the email addresses that will receive alerts about upcoming maintenance updates or warnings about service
1112
+ instability.
1069
1113
  :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
1070
1114
  unintentional service deletion. This does not shield against deleting databases or topics but for services with backups
1071
1115
  much of the content can at least be restored from backup in case accidental deletion is done.
@@ -1100,6 +1144,7 @@ class M3Db(pulumi.CustomResource):
1100
1144
  __props__.__dict__["state"] = state
1101
1145
  __props__.__dict__["static_ips"] = static_ips
1102
1146
  __props__.__dict__["tags"] = tags
1147
+ __props__.__dict__["tech_emails"] = tech_emails
1103
1148
  __props__.__dict__["termination_protection"] = termination_protection
1104
1149
  return M3Db(resource_name, opts=opts, __props__=__props__)
1105
1150
 
@@ -1334,6 +1379,15 @@ class M3Db(pulumi.CustomResource):
1334
1379
  """
1335
1380
  return pulumi.get(self, "tags")
1336
1381
 
1382
+ @property
1383
+ @pulumi.getter(name="techEmails")
1384
+ def tech_emails(self) -> pulumi.Output[Optional[Sequence['outputs.M3DbTechEmail']]]:
1385
+ """
1386
+ Defines the email addresses that will receive alerts about upcoming maintenance updates or warnings about service
1387
+ instability.
1388
+ """
1389
+ return pulumi.get(self, "tech_emails")
1390
+
1337
1391
  @property
1338
1392
  @pulumi.getter(name="terminationProtection")
1339
1393
  def termination_protection(self) -> pulumi.Output[Optional[bool]]: