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
pulumi_aiven/grafana.py CHANGED
@@ -29,6 +29,7 @@ class GrafanaArgs:
29
29
  service_name: Optional[pulumi.Input[str]] = None,
30
30
  static_ips: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
31
31
  tags: Optional[pulumi.Input[Sequence[pulumi.Input['GrafanaTagArgs']]]] = None,
32
+ tech_emails: Optional[pulumi.Input[Sequence[pulumi.Input['GrafanaTechEmailArgs']]]] = None,
32
33
  termination_protection: Optional[pulumi.Input[bool]] = None):
33
34
  """
34
35
  The set of arguments for constructing a Grafana resource.
@@ -63,6 +64,8 @@ class GrafanaArgs:
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['GrafanaTagArgs']]] tags: Tags are key-value pairs that allow you to categorize services.
67
+ :param pulumi.Input[Sequence[pulumi.Input['GrafanaTechEmailArgs']]] 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.
@@ -94,6 +97,8 @@ class GrafanaArgs:
94
97
  pulumi.set(__self__, "static_ips", static_ips)
95
98
  if tags is not None:
96
99
  pulumi.set(__self__, "tags", tags)
100
+ if tech_emails is not None:
101
+ pulumi.set(__self__, "tech_emails", tech_emails)
97
102
  if termination_protection is not None:
98
103
  pulumi.set(__self__, "termination_protection", termination_protection)
99
104
 
@@ -274,6 +279,19 @@ class GrafanaArgs:
274
279
  def tags(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['GrafanaTagArgs']]]]):
275
280
  pulumi.set(self, "tags", value)
276
281
 
282
+ @property
283
+ @pulumi.getter(name="techEmails")
284
+ def tech_emails(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['GrafanaTechEmailArgs']]]]:
285
+ """
286
+ Defines the email addresses that will receive alerts about upcoming maintenance updates or warnings about service
287
+ instability.
288
+ """
289
+ return pulumi.get(self, "tech_emails")
290
+
291
+ @tech_emails.setter
292
+ def tech_emails(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['GrafanaTechEmailArgs']]]]):
293
+ pulumi.set(self, "tech_emails", value)
294
+
277
295
  @property
278
296
  @pulumi.getter(name="terminationProtection")
279
297
  def termination_protection(self) -> Optional[pulumi.Input[bool]]:
@@ -318,6 +336,7 @@ class _GrafanaState:
318
336
  state: Optional[pulumi.Input[str]] = None,
319
337
  static_ips: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
320
338
  tags: Optional[pulumi.Input[Sequence[pulumi.Input['GrafanaTagArgs']]]] = None,
339
+ tech_emails: Optional[pulumi.Input[Sequence[pulumi.Input['GrafanaTechEmailArgs']]]] = None,
321
340
  termination_protection: Optional[pulumi.Input[bool]] = None):
322
341
  """
323
342
  Input properties used for looking up and filtering Grafana resources.
@@ -367,6 +386,8 @@ class _GrafanaState:
367
386
  :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
368
387
  static ip resource is in the 'assigned' state it cannot be unbound from the node again
369
388
  :param pulumi.Input[Sequence[pulumi.Input['GrafanaTagArgs']]] tags: Tags are key-value pairs that allow you to categorize services.
389
+ :param pulumi.Input[Sequence[pulumi.Input['GrafanaTechEmailArgs']]] tech_emails: Defines the email addresses that will receive alerts about upcoming maintenance updates or warnings about service
390
+ instability.
370
391
  :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
371
392
  unintentional service deletion. This does not shield against deleting databases or topics but for services with backups
372
393
  much of the content can at least be restored from backup in case accidental deletion is done.
@@ -426,6 +447,8 @@ class _GrafanaState:
426
447
  pulumi.set(__self__, "static_ips", static_ips)
427
448
  if tags is not None:
428
449
  pulumi.set(__self__, "tags", tags)
450
+ if tech_emails is not None:
451
+ pulumi.set(__self__, "tech_emails", tech_emails)
429
452
  if termination_protection is not None:
430
453
  pulumi.set(__self__, "termination_protection", termination_protection)
431
454
 
@@ -764,6 +787,19 @@ class _GrafanaState:
764
787
  def tags(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['GrafanaTagArgs']]]]):
765
788
  pulumi.set(self, "tags", value)
766
789
 
790
+ @property
791
+ @pulumi.getter(name="techEmails")
792
+ def tech_emails(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['GrafanaTechEmailArgs']]]]:
793
+ """
794
+ Defines the email addresses that will receive alerts about upcoming maintenance updates or warnings about service
795
+ instability.
796
+ """
797
+ return pulumi.get(self, "tech_emails")
798
+
799
+ @tech_emails.setter
800
+ def tech_emails(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['GrafanaTechEmailArgs']]]]):
801
+ pulumi.set(self, "tech_emails", value)
802
+
767
803
  @property
768
804
  @pulumi.getter(name="terminationProtection")
769
805
  def termination_protection(self) -> Optional[pulumi.Input[bool]]:
@@ -797,6 +833,7 @@ class Grafana(pulumi.CustomResource):
797
833
  service_name: Optional[pulumi.Input[str]] = None,
798
834
  static_ips: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
799
835
  tags: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['GrafanaTagArgs']]]]] = None,
836
+ tech_emails: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['GrafanaTechEmailArgs']]]]] = None,
800
837
  termination_protection: Optional[pulumi.Input[bool]] = None,
801
838
  __props__=None):
802
839
  """
@@ -861,6 +898,8 @@ class Grafana(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['GrafanaTagArgs']]]] tags: Tags are key-value pairs that allow you to categorize services.
901
+ :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['GrafanaTechEmailArgs']]]] 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.
@@ -928,6 +967,7 @@ class Grafana(pulumi.CustomResource):
928
967
  service_name: Optional[pulumi.Input[str]] = None,
929
968
  static_ips: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
930
969
  tags: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['GrafanaTagArgs']]]]] = None,
970
+ tech_emails: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['GrafanaTechEmailArgs']]]]] = None,
931
971
  termination_protection: Optional[pulumi.Input[bool]] = None,
932
972
  __props__=None):
933
973
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
@@ -955,6 +995,7 @@ class Grafana(pulumi.CustomResource):
955
995
  __props__.__dict__["service_name"] = service_name
956
996
  __props__.__dict__["static_ips"] = static_ips
957
997
  __props__.__dict__["tags"] = tags
998
+ __props__.__dict__["tech_emails"] = tech_emails
958
999
  __props__.__dict__["termination_protection"] = termination_protection
959
1000
  __props__.__dict__["components"] = None
960
1001
  __props__.__dict__["disk_space_cap"] = None
@@ -1007,6 +1048,7 @@ class Grafana(pulumi.CustomResource):
1007
1048
  state: Optional[pulumi.Input[str]] = None,
1008
1049
  static_ips: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
1009
1050
  tags: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['GrafanaTagArgs']]]]] = None,
1051
+ tech_emails: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['GrafanaTechEmailArgs']]]]] = None,
1010
1052
  termination_protection: Optional[pulumi.Input[bool]] = None) -> 'Grafana':
1011
1053
  """
1012
1054
  Get an existing Grafana resource's state with the given name, id, and optional extra
@@ -1061,6 +1103,8 @@ class Grafana(pulumi.CustomResource):
1061
1103
  :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
1062
1104
  static ip resource is in the 'assigned' state it cannot be unbound from the node again
1063
1105
  :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['GrafanaTagArgs']]]] tags: Tags are key-value pairs that allow you to categorize services.
1106
+ :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['GrafanaTechEmailArgs']]]] tech_emails: Defines the email addresses that will receive alerts about upcoming maintenance updates or warnings about service
1107
+ instability.
1064
1108
  :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
1065
1109
  unintentional service deletion. This does not shield against deleting databases or topics but for services with backups
1066
1110
  much of the content can at least be restored from backup in case accidental deletion is done.
@@ -1095,6 +1139,7 @@ class Grafana(pulumi.CustomResource):
1095
1139
  __props__.__dict__["state"] = state
1096
1140
  __props__.__dict__["static_ips"] = static_ips
1097
1141
  __props__.__dict__["tags"] = tags
1142
+ __props__.__dict__["tech_emails"] = tech_emails
1098
1143
  __props__.__dict__["termination_protection"] = termination_protection
1099
1144
  return Grafana(resource_name, opts=opts, __props__=__props__)
1100
1145
 
@@ -1329,6 +1374,15 @@ class Grafana(pulumi.CustomResource):
1329
1374
  """
1330
1375
  return pulumi.get(self, "tags")
1331
1376
 
1377
+ @property
1378
+ @pulumi.getter(name="techEmails")
1379
+ def tech_emails(self) -> pulumi.Output[Optional[Sequence['outputs.GrafanaTechEmail']]]:
1380
+ """
1381
+ Defines the email addresses that will receive alerts about upcoming maintenance updates or warnings about service
1382
+ instability.
1383
+ """
1384
+ return pulumi.get(self, "tech_emails")
1385
+
1332
1386
  @property
1333
1387
  @pulumi.getter(name="terminationProtection")
1334
1388
  def termination_protection(self) -> pulumi.Output[Optional[bool]]:
pulumi_aiven/influx_db.py CHANGED
@@ -29,6 +29,7 @@ class InfluxDbArgs:
29
29
  service_integrations: Optional[pulumi.Input[Sequence[pulumi.Input['InfluxDbServiceIntegrationArgs']]]] = None,
30
30
  static_ips: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
31
31
  tags: Optional[pulumi.Input[Sequence[pulumi.Input['InfluxDbTagArgs']]]] = None,
32
+ tech_emails: Optional[pulumi.Input[Sequence[pulumi.Input['InfluxDbTechEmailArgs']]]] = None,
32
33
  termination_protection: Optional[pulumi.Input[bool]] = None):
33
34
  """
34
35
  The set of arguments for constructing a InfluxDb resource.
@@ -45,6 +46,7 @@ class InfluxDbArgs:
45
46
  :param pulumi.Input[Sequence[pulumi.Input['InfluxDbServiceIntegrationArgs']]] service_integrations: Service integrations to specify when creating a service. Not applied after initial service creation
46
47
  :param pulumi.Input[Sequence[pulumi.Input[str]]] static_ips: Use static public IP addresses.
47
48
  :param pulumi.Input[Sequence[pulumi.Input['InfluxDbTagArgs']]] tags: Tags are key-value pairs that allow you to categorize services.
49
+ :param pulumi.Input[Sequence[pulumi.Input['InfluxDbTechEmailArgs']]] tech_emails: Defines the email addresses that will receive alerts about upcoming maintenance updates or warnings about service instability.
48
50
  :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.
49
51
  """
50
52
  pulumi.set(__self__, "plan", plan)
@@ -73,6 +75,8 @@ class InfluxDbArgs:
73
75
  pulumi.set(__self__, "static_ips", static_ips)
74
76
  if tags is not None:
75
77
  pulumi.set(__self__, "tags", tags)
78
+ if tech_emails is not None:
79
+ pulumi.set(__self__, "tech_emails", tech_emails)
76
80
  if termination_protection is not None:
77
81
  pulumi.set(__self__, "termination_protection", termination_protection)
78
82
 
@@ -235,6 +239,18 @@ class InfluxDbArgs:
235
239
  def tags(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['InfluxDbTagArgs']]]]):
236
240
  pulumi.set(self, "tags", value)
237
241
 
242
+ @property
243
+ @pulumi.getter(name="techEmails")
244
+ def tech_emails(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['InfluxDbTechEmailArgs']]]]:
245
+ """
246
+ Defines the email addresses that will receive alerts about upcoming maintenance updates or warnings about service instability.
247
+ """
248
+ return pulumi.get(self, "tech_emails")
249
+
250
+ @tech_emails.setter
251
+ def tech_emails(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['InfluxDbTechEmailArgs']]]]):
252
+ pulumi.set(self, "tech_emails", value)
253
+
238
254
  @property
239
255
  @pulumi.getter(name="terminationProtection")
240
256
  def termination_protection(self) -> Optional[pulumi.Input[bool]]:
@@ -277,6 +293,7 @@ class _InfluxDbState:
277
293
  state: Optional[pulumi.Input[str]] = None,
278
294
  static_ips: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
279
295
  tags: Optional[pulumi.Input[Sequence[pulumi.Input['InfluxDbTagArgs']]]] = None,
296
+ tech_emails: Optional[pulumi.Input[Sequence[pulumi.Input['InfluxDbTechEmailArgs']]]] = None,
280
297
  termination_protection: Optional[pulumi.Input[bool]] = None):
281
298
  """
282
299
  Input properties used for looking up and filtering InfluxDb resources.
@@ -306,6 +323,7 @@ class _InfluxDbState:
306
323
  :param pulumi.Input[str] state: Service state. One of `POWEROFF`, `REBALANCING`, `REBUILDING` or `RUNNING`
307
324
  :param pulumi.Input[Sequence[pulumi.Input[str]]] static_ips: Use static public IP addresses.
308
325
  :param pulumi.Input[Sequence[pulumi.Input['InfluxDbTagArgs']]] tags: Tags are key-value pairs that allow you to categorize services.
326
+ :param pulumi.Input[Sequence[pulumi.Input['InfluxDbTechEmailArgs']]] tech_emails: Defines the email addresses that will receive alerts about upcoming maintenance updates or warnings about service instability.
309
327
  :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.
310
328
  """
311
329
  if additional_disk_space is not None:
@@ -363,6 +381,8 @@ class _InfluxDbState:
363
381
  pulumi.set(__self__, "static_ips", static_ips)
364
382
  if tags is not None:
365
383
  pulumi.set(__self__, "tags", tags)
384
+ if tech_emails is not None:
385
+ pulumi.set(__self__, "tech_emails", tech_emails)
366
386
  if termination_protection is not None:
367
387
  pulumi.set(__self__, "termination_protection", termination_protection)
368
388
 
@@ -681,6 +701,18 @@ class _InfluxDbState:
681
701
  def tags(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['InfluxDbTagArgs']]]]):
682
702
  pulumi.set(self, "tags", value)
683
703
 
704
+ @property
705
+ @pulumi.getter(name="techEmails")
706
+ def tech_emails(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['InfluxDbTechEmailArgs']]]]:
707
+ """
708
+ Defines the email addresses that will receive alerts about upcoming maintenance updates or warnings about service instability.
709
+ """
710
+ return pulumi.get(self, "tech_emails")
711
+
712
+ @tech_emails.setter
713
+ def tech_emails(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['InfluxDbTechEmailArgs']]]]):
714
+ pulumi.set(self, "tech_emails", value)
715
+
684
716
  @property
685
717
  @pulumi.getter(name="terminationProtection")
686
718
  def termination_protection(self) -> Optional[pulumi.Input[bool]]:
@@ -712,6 +744,7 @@ class InfluxDb(pulumi.CustomResource):
712
744
  service_name: Optional[pulumi.Input[str]] = None,
713
745
  static_ips: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
714
746
  tags: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['InfluxDbTagArgs']]]]] = None,
747
+ tech_emails: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['InfluxDbTechEmailArgs']]]]] = None,
715
748
  termination_protection: Optional[pulumi.Input[bool]] = None,
716
749
  __props__=None):
717
750
  """
@@ -758,6 +791,7 @@ class InfluxDb(pulumi.CustomResource):
758
791
  :param pulumi.Input[str] service_name: Specifies the actual name of the service. The name cannot be changed later without destroying and re-creating the service so name should be picked based on intended service usage rather than current attributes.
759
792
  :param pulumi.Input[Sequence[pulumi.Input[str]]] static_ips: Use static public IP addresses.
760
793
  :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['InfluxDbTagArgs']]]] tags: Tags are key-value pairs that allow you to categorize services.
794
+ :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['InfluxDbTechEmailArgs']]]] tech_emails: Defines the email addresses that will receive alerts about upcoming maintenance updates or warnings about service instability.
761
795
  :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.
762
796
  """
763
797
  ...
@@ -823,6 +857,7 @@ class InfluxDb(pulumi.CustomResource):
823
857
  service_name: Optional[pulumi.Input[str]] = None,
824
858
  static_ips: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
825
859
  tags: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['InfluxDbTagArgs']]]]] = None,
860
+ tech_emails: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['InfluxDbTechEmailArgs']]]]] = None,
826
861
  termination_protection: Optional[pulumi.Input[bool]] = None,
827
862
  __props__=None):
828
863
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
@@ -852,6 +887,7 @@ class InfluxDb(pulumi.CustomResource):
852
887
  __props__.__dict__["service_name"] = service_name
853
888
  __props__.__dict__["static_ips"] = static_ips
854
889
  __props__.__dict__["tags"] = tags
890
+ __props__.__dict__["tech_emails"] = tech_emails
855
891
  __props__.__dict__["termination_protection"] = termination_protection
856
892
  __props__.__dict__["components"] = None
857
893
  __props__.__dict__["disk_space_cap"] = None
@@ -904,6 +940,7 @@ class InfluxDb(pulumi.CustomResource):
904
940
  state: Optional[pulumi.Input[str]] = None,
905
941
  static_ips: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
906
942
  tags: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['InfluxDbTagArgs']]]]] = None,
943
+ tech_emails: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['InfluxDbTechEmailArgs']]]]] = None,
907
944
  termination_protection: Optional[pulumi.Input[bool]] = None) -> 'InfluxDb':
908
945
  """
909
946
  Get an existing InfluxDb resource's state with the given name, id, and optional extra
@@ -938,6 +975,7 @@ class InfluxDb(pulumi.CustomResource):
938
975
  :param pulumi.Input[str] state: Service state. One of `POWEROFF`, `REBALANCING`, `REBUILDING` or `RUNNING`
939
976
  :param pulumi.Input[Sequence[pulumi.Input[str]]] static_ips: Use static public IP addresses.
940
977
  :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['InfluxDbTagArgs']]]] tags: Tags are key-value pairs that allow you to categorize services.
978
+ :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['InfluxDbTechEmailArgs']]]] tech_emails: Defines the email addresses that will receive alerts about upcoming maintenance updates or warnings about service instability.
941
979
  :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.
942
980
  """
943
981
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
@@ -970,6 +1008,7 @@ class InfluxDb(pulumi.CustomResource):
970
1008
  __props__.__dict__["state"] = state
971
1009
  __props__.__dict__["static_ips"] = static_ips
972
1010
  __props__.__dict__["tags"] = tags
1011
+ __props__.__dict__["tech_emails"] = tech_emails
973
1012
  __props__.__dict__["termination_protection"] = termination_protection
974
1013
  return InfluxDb(resource_name, opts=opts, __props__=__props__)
975
1014
 
@@ -1184,6 +1223,14 @@ class InfluxDb(pulumi.CustomResource):
1184
1223
  """
1185
1224
  return pulumi.get(self, "tags")
1186
1225
 
1226
+ @property
1227
+ @pulumi.getter(name="techEmails")
1228
+ def tech_emails(self) -> pulumi.Output[Optional[Sequence['outputs.InfluxDbTechEmail']]]:
1229
+ """
1230
+ Defines the email addresses that will receive alerts about upcoming maintenance updates or warnings about service instability.
1231
+ """
1232
+ return pulumi.get(self, "tech_emails")
1233
+
1187
1234
  @property
1188
1235
  @pulumi.getter(name="terminationProtection")
1189
1236
  def termination_protection(self) -> pulumi.Output[Optional[bool]]:
pulumi_aiven/kafka.py CHANGED
@@ -31,6 +31,7 @@ class KafkaArgs:
31
31
  service_integrations: Optional[pulumi.Input[Sequence[pulumi.Input['KafkaServiceIntegrationArgs']]]] = None,
32
32
  static_ips: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
33
33
  tags: Optional[pulumi.Input[Sequence[pulumi.Input['KafkaTagArgs']]]] = None,
34
+ tech_emails: Optional[pulumi.Input[Sequence[pulumi.Input['KafkaTechEmailArgs']]]] = None,
34
35
  termination_protection: Optional[pulumi.Input[bool]] = None):
35
36
  """
36
37
  The set of arguments for constructing a Kafka resource.
@@ -49,6 +50,7 @@ class KafkaArgs:
49
50
  :param pulumi.Input[Sequence[pulumi.Input['KafkaServiceIntegrationArgs']]] service_integrations: Service integrations to specify when creating a service. Not applied after initial service creation
50
51
  :param pulumi.Input[Sequence[pulumi.Input[str]]] static_ips: Use static public IP addresses.
51
52
  :param pulumi.Input[Sequence[pulumi.Input['KafkaTagArgs']]] tags: Tags are key-value pairs that allow you to categorize services.
53
+ :param pulumi.Input[Sequence[pulumi.Input['KafkaTechEmailArgs']]] tech_emails: Defines the email addresses that will receive alerts about upcoming maintenance updates or warnings about service instability.
52
54
  :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.
53
55
  """
54
56
  pulumi.set(__self__, "plan", plan)
@@ -84,6 +86,8 @@ class KafkaArgs:
84
86
  pulumi.set(__self__, "static_ips", static_ips)
85
87
  if tags is not None:
86
88
  pulumi.set(__self__, "tags", tags)
89
+ if tech_emails is not None:
90
+ pulumi.set(__self__, "tech_emails", tech_emails)
87
91
  if termination_protection is not None:
88
92
  pulumi.set(__self__, "termination_protection", termination_protection)
89
93
 
@@ -273,6 +277,18 @@ class KafkaArgs:
273
277
  def tags(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['KafkaTagArgs']]]]):
274
278
  pulumi.set(self, "tags", value)
275
279
 
280
+ @property
281
+ @pulumi.getter(name="techEmails")
282
+ def tech_emails(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['KafkaTechEmailArgs']]]]:
283
+ """
284
+ Defines the email addresses that will receive alerts about upcoming maintenance updates or warnings about service instability.
285
+ """
286
+ return pulumi.get(self, "tech_emails")
287
+
288
+ @tech_emails.setter
289
+ def tech_emails(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['KafkaTechEmailArgs']]]]):
290
+ pulumi.set(self, "tech_emails", value)
291
+
276
292
  @property
277
293
  @pulumi.getter(name="terminationProtection")
278
294
  def termination_protection(self) -> Optional[pulumi.Input[bool]]:
@@ -317,6 +333,7 @@ class _KafkaState:
317
333
  state: Optional[pulumi.Input[str]] = None,
318
334
  static_ips: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
319
335
  tags: Optional[pulumi.Input[Sequence[pulumi.Input['KafkaTagArgs']]]] = None,
336
+ tech_emails: Optional[pulumi.Input[Sequence[pulumi.Input['KafkaTechEmailArgs']]]] = None,
320
337
  termination_protection: Optional[pulumi.Input[bool]] = None):
321
338
  """
322
339
  Input properties used for looking up and filtering Kafka resources.
@@ -348,6 +365,7 @@ class _KafkaState:
348
365
  :param pulumi.Input[str] state: Service state. One of `POWEROFF`, `REBALANCING`, `REBUILDING` or `RUNNING`
349
366
  :param pulumi.Input[Sequence[pulumi.Input[str]]] static_ips: Use static public IP addresses.
350
367
  :param pulumi.Input[Sequence[pulumi.Input['KafkaTagArgs']]] tags: Tags are key-value pairs that allow you to categorize services.
368
+ :param pulumi.Input[Sequence[pulumi.Input['KafkaTechEmailArgs']]] tech_emails: Defines the email addresses that will receive alerts about upcoming maintenance updates or warnings about service instability.
351
369
  :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.
352
370
  """
353
371
  if additional_disk_space is not None:
@@ -412,6 +430,8 @@ class _KafkaState:
412
430
  pulumi.set(__self__, "static_ips", static_ips)
413
431
  if tags is not None:
414
432
  pulumi.set(__self__, "tags", tags)
433
+ if tech_emails is not None:
434
+ pulumi.set(__self__, "tech_emails", tech_emails)
415
435
  if termination_protection is not None:
416
436
  pulumi.set(__self__, "termination_protection", termination_protection)
417
437
 
@@ -757,6 +777,18 @@ class _KafkaState:
757
777
  def tags(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['KafkaTagArgs']]]]):
758
778
  pulumi.set(self, "tags", value)
759
779
 
780
+ @property
781
+ @pulumi.getter(name="techEmails")
782
+ def tech_emails(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['KafkaTechEmailArgs']]]]:
783
+ """
784
+ Defines the email addresses that will receive alerts about upcoming maintenance updates or warnings about service instability.
785
+ """
786
+ return pulumi.get(self, "tech_emails")
787
+
788
+ @tech_emails.setter
789
+ def tech_emails(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['KafkaTechEmailArgs']]]]):
790
+ pulumi.set(self, "tech_emails", value)
791
+
760
792
  @property
761
793
  @pulumi.getter(name="terminationProtection")
762
794
  def termination_protection(self) -> Optional[pulumi.Input[bool]]:
@@ -790,6 +822,7 @@ class Kafka(pulumi.CustomResource):
790
822
  service_name: Optional[pulumi.Input[str]] = None,
791
823
  static_ips: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
792
824
  tags: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['KafkaTagArgs']]]]] = None,
825
+ tech_emails: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['KafkaTechEmailArgs']]]]] = None,
793
826
  termination_protection: Optional[pulumi.Input[bool]] = None,
794
827
  __props__=None):
795
828
  """
@@ -847,6 +880,7 @@ class Kafka(pulumi.CustomResource):
847
880
  :param pulumi.Input[str] service_name: Specifies the actual name of the service. The name cannot be changed later without destroying and re-creating the service so name should be picked based on intended service usage rather than current attributes.
848
881
  :param pulumi.Input[Sequence[pulumi.Input[str]]] static_ips: Use static public IP addresses.
849
882
  :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['KafkaTagArgs']]]] tags: Tags are key-value pairs that allow you to categorize services.
883
+ :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['KafkaTechEmailArgs']]]] tech_emails: Defines the email addresses that will receive alerts about upcoming maintenance updates or warnings about service instability.
850
884
  :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.
851
885
  """
852
886
  ...
@@ -923,6 +957,7 @@ class Kafka(pulumi.CustomResource):
923
957
  service_name: Optional[pulumi.Input[str]] = None,
924
958
  static_ips: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
925
959
  tags: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['KafkaTagArgs']]]]] = None,
960
+ tech_emails: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['KafkaTechEmailArgs']]]]] = None,
926
961
  termination_protection: Optional[pulumi.Input[bool]] = None,
927
962
  __props__=None):
928
963
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
@@ -954,6 +989,7 @@ class Kafka(pulumi.CustomResource):
954
989
  __props__.__dict__["service_name"] = service_name
955
990
  __props__.__dict__["static_ips"] = static_ips
956
991
  __props__.__dict__["tags"] = tags
992
+ __props__.__dict__["tech_emails"] = tech_emails
957
993
  __props__.__dict__["termination_protection"] = termination_protection
958
994
  __props__.__dict__["components"] = None
959
995
  __props__.__dict__["disk_space_cap"] = None
@@ -1008,6 +1044,7 @@ class Kafka(pulumi.CustomResource):
1008
1044
  state: Optional[pulumi.Input[str]] = None,
1009
1045
  static_ips: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
1010
1046
  tags: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['KafkaTagArgs']]]]] = None,
1047
+ tech_emails: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['KafkaTechEmailArgs']]]]] = None,
1011
1048
  termination_protection: Optional[pulumi.Input[bool]] = None) -> 'Kafka':
1012
1049
  """
1013
1050
  Get an existing Kafka resource's state with the given name, id, and optional extra
@@ -1044,6 +1081,7 @@ class Kafka(pulumi.CustomResource):
1044
1081
  :param pulumi.Input[str] state: Service state. One of `POWEROFF`, `REBALANCING`, `REBUILDING` or `RUNNING`
1045
1082
  :param pulumi.Input[Sequence[pulumi.Input[str]]] static_ips: Use static public IP addresses.
1046
1083
  :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['KafkaTagArgs']]]] tags: Tags are key-value pairs that allow you to categorize services.
1084
+ :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['KafkaTechEmailArgs']]]] tech_emails: Defines the email addresses that will receive alerts about upcoming maintenance updates or warnings about service instability.
1047
1085
  :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.
1048
1086
  """
1049
1087
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
@@ -1078,6 +1116,7 @@ class Kafka(pulumi.CustomResource):
1078
1116
  __props__.__dict__["state"] = state
1079
1117
  __props__.__dict__["static_ips"] = static_ips
1080
1118
  __props__.__dict__["tags"] = tags
1119
+ __props__.__dict__["tech_emails"] = tech_emails
1081
1120
  __props__.__dict__["termination_protection"] = termination_protection
1082
1121
  return Kafka(resource_name, opts=opts, __props__=__props__)
1083
1122
 
@@ -1311,6 +1350,14 @@ class Kafka(pulumi.CustomResource):
1311
1350
  """
1312
1351
  return pulumi.get(self, "tags")
1313
1352
 
1353
+ @property
1354
+ @pulumi.getter(name="techEmails")
1355
+ def tech_emails(self) -> pulumi.Output[Optional[Sequence['outputs.KafkaTechEmail']]]:
1356
+ """
1357
+ Defines the email addresses that will receive alerts about upcoming maintenance updates or warnings about service instability.
1358
+ """
1359
+ return pulumi.get(self, "tech_emails")
1360
+
1314
1361
  @property
1315
1362
  @pulumi.getter(name="terminationProtection")
1316
1363
  def termination_protection(self) -> pulumi.Output[Optional[bool]]:
@@ -29,6 +29,7 @@ class KafkaConnectArgs:
29
29
  service_integrations: Optional[pulumi.Input[Sequence[pulumi.Input['KafkaConnectServiceIntegrationArgs']]]] = None,
30
30
  static_ips: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
31
31
  tags: Optional[pulumi.Input[Sequence[pulumi.Input['KafkaConnectTagArgs']]]] = None,
32
+ tech_emails: Optional[pulumi.Input[Sequence[pulumi.Input['KafkaConnectTechEmailArgs']]]] = None,
32
33
  termination_protection: Optional[pulumi.Input[bool]] = None):
33
34
  """
34
35
  The set of arguments for constructing a KafkaConnect resource.
@@ -63,6 +64,8 @@ class KafkaConnectArgs:
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['KafkaConnectTagArgs']]] tags: Tags are key-value pairs that allow you to categorize services.
67
+ :param pulumi.Input[Sequence[pulumi.Input['KafkaConnectTechEmailArgs']]] 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 KafkaConnectArgs:
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 KafkaConnectArgs:
273
278
  def tags(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['KafkaConnectTagArgs']]]]):
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['KafkaConnectTechEmailArgs']]]]:
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['KafkaConnectTechEmailArgs']]]]):
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 _KafkaConnectState:
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['KafkaConnectTagArgs']]]] = None,
338
+ tech_emails: Optional[pulumi.Input[Sequence[pulumi.Input['KafkaConnectTechEmailArgs']]]] = None,
320
339
  termination_protection: Optional[pulumi.Input[bool]] = None):
321
340
  """
322
341
  Input properties used for looking up and filtering KafkaConnect resources.
@@ -366,6 +385,8 @@ class _KafkaConnectState:
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['KafkaConnectTagArgs']]] tags: Tags are key-value pairs that allow you to categorize services.
388
+ :param pulumi.Input[Sequence[pulumi.Input['KafkaConnectTechEmailArgs']]] 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 _KafkaConnectState:
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 _KafkaConnectState:
763
786
  def tags(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['KafkaConnectTagArgs']]]]):
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['KafkaConnectTechEmailArgs']]]]:
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['KafkaConnectTechEmailArgs']]]]):
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 KafkaConnect(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['KafkaConnectTagArgs']]]]] = None,
835
+ tech_emails: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['KafkaConnectTechEmailArgs']]]]] = None,
799
836
  termination_protection: Optional[pulumi.Input[bool]] = None,
800
837
  __props__=None):
801
838
  """
@@ -863,6 +900,8 @@ class KafkaConnect(pulumi.CustomResource):
863
900
  :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
864
901
  static ip resource is in the 'assigned' state it cannot be unbound from the node again
865
902
  :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['KafkaConnectTagArgs']]]] tags: Tags are key-value pairs that allow you to categorize services.
903
+ :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['KafkaConnectTechEmailArgs']]]] tech_emails: Defines the email addresses that will receive alerts about upcoming maintenance updates or warnings about service
904
+ instability.
866
905
  :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
867
906
  unintentional service deletion. This does not shield against deleting databases or topics but for services with backups
868
907
  much of the content can at least be restored from backup in case accidental deletion is done.
@@ -933,6 +972,7 @@ class KafkaConnect(pulumi.CustomResource):
933
972
  service_name: Optional[pulumi.Input[str]] = None,
934
973
  static_ips: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
935
974
  tags: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['KafkaConnectTagArgs']]]]] = None,
975
+ tech_emails: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['KafkaConnectTechEmailArgs']]]]] = None,
936
976
  termination_protection: Optional[pulumi.Input[bool]] = None,
937
977
  __props__=None):
938
978
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
@@ -962,6 +1002,7 @@ class KafkaConnect(pulumi.CustomResource):
962
1002
  __props__.__dict__["service_name"] = service_name
963
1003
  __props__.__dict__["static_ips"] = static_ips
964
1004
  __props__.__dict__["tags"] = tags
1005
+ __props__.__dict__["tech_emails"] = tech_emails
965
1006
  __props__.__dict__["termination_protection"] = termination_protection
966
1007
  __props__.__dict__["components"] = None
967
1008
  __props__.__dict__["disk_space_cap"] = None
@@ -1014,6 +1055,7 @@ class KafkaConnect(pulumi.CustomResource):
1014
1055
  state: Optional[pulumi.Input[str]] = None,
1015
1056
  static_ips: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
1016
1057
  tags: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['KafkaConnectTagArgs']]]]] = None,
1058
+ tech_emails: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['KafkaConnectTechEmailArgs']]]]] = None,
1017
1059
  termination_protection: Optional[pulumi.Input[bool]] = None) -> 'KafkaConnect':
1018
1060
  """
1019
1061
  Get an existing KafkaConnect resource's state with the given name, id, and optional extra
@@ -1068,6 +1110,8 @@ class KafkaConnect(pulumi.CustomResource):
1068
1110
  :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
1069
1111
  static ip resource is in the 'assigned' state it cannot be unbound from the node again
1070
1112
  :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['KafkaConnectTagArgs']]]] tags: Tags are key-value pairs that allow you to categorize services.
1113
+ :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['KafkaConnectTechEmailArgs']]]] tech_emails: Defines the email addresses that will receive alerts about upcoming maintenance updates or warnings about service
1114
+ instability.
1071
1115
  :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
1072
1116
  unintentional service deletion. This does not shield against deleting databases or topics but for services with backups
1073
1117
  much of the content can at least be restored from backup in case accidental deletion is done.
@@ -1102,6 +1146,7 @@ class KafkaConnect(pulumi.CustomResource):
1102
1146
  __props__.__dict__["state"] = state
1103
1147
  __props__.__dict__["static_ips"] = static_ips
1104
1148
  __props__.__dict__["tags"] = tags
1149
+ __props__.__dict__["tech_emails"] = tech_emails
1105
1150
  __props__.__dict__["termination_protection"] = termination_protection
1106
1151
  return KafkaConnect(resource_name, opts=opts, __props__=__props__)
1107
1152
 
@@ -1336,6 +1381,15 @@ class KafkaConnect(pulumi.CustomResource):
1336
1381
  """
1337
1382
  return pulumi.get(self, "tags")
1338
1383
 
1384
+ @property
1385
+ @pulumi.getter(name="techEmails")
1386
+ def tech_emails(self) -> pulumi.Output[Optional[Sequence['outputs.KafkaConnectTechEmail']]]:
1387
+ """
1388
+ Defines the email addresses that will receive alerts about upcoming maintenance updates or warnings about service
1389
+ instability.
1390
+ """
1391
+ return pulumi.get(self, "tech_emails")
1392
+
1339
1393
  @property
1340
1394
  @pulumi.getter(name="terminationProtection")
1341
1395
  def termination_protection(self) -> pulumi.Output[Optional[bool]]: