pulumi-aiven 6.7.3__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 (49) hide show
  1. pulumi_aiven/_inputs.py +1660 -35
  2. pulumi_aiven/account_team_member.py +7 -7
  3. pulumi_aiven/cassandra.py +47 -0
  4. pulumi_aiven/clickhouse.py +47 -0
  5. pulumi_aiven/flink.py +54 -7
  6. pulumi_aiven/get_account_team_member.py +3 -3
  7. pulumi_aiven/get_cassanda.py +14 -1
  8. pulumi_aiven/get_cassandra.py +14 -1
  9. pulumi_aiven/get_clickhouse.py +14 -1
  10. pulumi_aiven/get_flink.py +14 -1
  11. pulumi_aiven/get_grafana.py +14 -1
  12. pulumi_aiven/get_influx_db.py +14 -1
  13. pulumi_aiven/get_kafka.py +14 -1
  14. pulumi_aiven/get_kafka_connect.py +14 -1
  15. pulumi_aiven/get_kafka_mirror_maker.py +14 -1
  16. pulumi_aiven/get_m3_aggregator.py +14 -1
  17. pulumi_aiven/get_m3_db.py +14 -1
  18. pulumi_aiven/get_mirror_maker_replication_flow.py +15 -2
  19. pulumi_aiven/get_my_sql.py +14 -1
  20. pulumi_aiven/get_open_search.py +14 -1
  21. pulumi_aiven/get_organization_user.py +3 -3
  22. pulumi_aiven/get_organization_user_group.py +14 -1
  23. pulumi_aiven/get_pg.py +14 -1
  24. pulumi_aiven/get_project.py +1 -1
  25. pulumi_aiven/get_project_user.py +3 -3
  26. pulumi_aiven/get_redis.py +14 -1
  27. pulumi_aiven/get_service_integration_endpoint.py +28 -2
  28. pulumi_aiven/grafana.py +54 -0
  29. pulumi_aiven/influx_db.py +47 -0
  30. pulumi_aiven/kafka.py +47 -0
  31. pulumi_aiven/kafka_connect.py +54 -0
  32. pulumi_aiven/kafka_mirror_maker.py +54 -0
  33. pulumi_aiven/m3_aggregator.py +54 -0
  34. pulumi_aiven/m3_db.py +54 -0
  35. pulumi_aiven/mirror_maker_replication_flow.py +54 -7
  36. pulumi_aiven/my_sql.py +54 -0
  37. pulumi_aiven/open_search.py +47 -0
  38. pulumi_aiven/organization_user.py +7 -7
  39. pulumi_aiven/organization_user_group.py +28 -0
  40. pulumi_aiven/outputs.py +2473 -64
  41. pulumi_aiven/pg.py +47 -0
  42. pulumi_aiven/project.py +7 -7
  43. pulumi_aiven/project_user.py +7 -7
  44. pulumi_aiven/redis.py +54 -0
  45. pulumi_aiven/service_integration_endpoint.py +101 -7
  46. {pulumi_aiven-6.7.3.dist-info → pulumi_aiven-6.8.0.dist-info}/METADATA +2 -2
  47. {pulumi_aiven-6.7.3.dist-info → pulumi_aiven-6.8.0.dist-info}/RECORD +49 -49
  48. {pulumi_aiven-6.7.3.dist-info → pulumi_aiven-6.8.0.dist-info}/WHEEL +0 -0
  49. {pulumi_aiven-6.7.3.dist-info → pulumi_aiven-6.8.0.dist-info}/top_level.txt +0 -0
@@ -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]]:
@@ -19,6 +19,7 @@ class MirrorMakerReplicationFlowArgs:
19
19
  service_name: pulumi.Input[str],
20
20
  source_cluster: pulumi.Input[str],
21
21
  target_cluster: pulumi.Input[str],
22
+ emit_backward_heartbeats_enabled: Optional[pulumi.Input[bool]] = None,
22
23
  emit_heartbeats_enabled: Optional[pulumi.Input[bool]] = None,
23
24
  offset_syncs_topic_location: Optional[pulumi.Input[str]] = None,
24
25
  replication_policy_class: Optional[pulumi.Input[str]] = None,
@@ -33,7 +34,8 @@ class MirrorMakerReplicationFlowArgs:
33
34
  :param pulumi.Input[str] service_name: Identifies the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. This property cannot be changed, doing so forces recreation of the resource.
34
35
  :param pulumi.Input[str] source_cluster: Source cluster alias. Maximum length: `128`.
35
36
  :param pulumi.Input[str] target_cluster: Target cluster alias. Maximum length: `128`.
36
- :param pulumi.Input[bool] emit_heartbeats_enabled: Emit heartbeats enabled. The default value is `false`.
37
+ :param pulumi.Input[bool] emit_backward_heartbeats_enabled: Whether to emit heartbeats to the direction opposite to the flow, i.e. to the source cluster. The default value is `false`.
38
+ :param pulumi.Input[bool] emit_heartbeats_enabled: Whether to emit heartbeats to the target cluster. The default value is `false`.
37
39
  :param pulumi.Input[str] offset_syncs_topic_location: Offset syncs topic location.
38
40
  :param pulumi.Input[str] replication_policy_class: Replication policy class. The possible values are `org.apache.kafka.connect.mirror.DefaultReplicationPolicy` and `org.apache.kafka.connect.mirror.IdentityReplicationPolicy`. The default value is `org.apache.kafka.connect.mirror.DefaultReplicationPolicy`.
39
41
  :param pulumi.Input[bool] sync_group_offsets_enabled: Sync consumer group offsets. The default value is `false`.
@@ -46,6 +48,8 @@ class MirrorMakerReplicationFlowArgs:
46
48
  pulumi.set(__self__, "service_name", service_name)
47
49
  pulumi.set(__self__, "source_cluster", source_cluster)
48
50
  pulumi.set(__self__, "target_cluster", target_cluster)
51
+ if emit_backward_heartbeats_enabled is not None:
52
+ pulumi.set(__self__, "emit_backward_heartbeats_enabled", emit_backward_heartbeats_enabled)
49
53
  if emit_heartbeats_enabled is not None:
50
54
  pulumi.set(__self__, "emit_heartbeats_enabled", emit_heartbeats_enabled)
51
55
  if offset_syncs_topic_location is not None:
@@ -121,11 +125,23 @@ class MirrorMakerReplicationFlowArgs:
121
125
  def target_cluster(self, value: pulumi.Input[str]):
122
126
  pulumi.set(self, "target_cluster", value)
123
127
 
128
+ @property
129
+ @pulumi.getter(name="emitBackwardHeartbeatsEnabled")
130
+ def emit_backward_heartbeats_enabled(self) -> Optional[pulumi.Input[bool]]:
131
+ """
132
+ Whether to emit heartbeats to the direction opposite to the flow, i.e. to the source cluster. The default value is `false`.
133
+ """
134
+ return pulumi.get(self, "emit_backward_heartbeats_enabled")
135
+
136
+ @emit_backward_heartbeats_enabled.setter
137
+ def emit_backward_heartbeats_enabled(self, value: Optional[pulumi.Input[bool]]):
138
+ pulumi.set(self, "emit_backward_heartbeats_enabled", value)
139
+
124
140
  @property
125
141
  @pulumi.getter(name="emitHeartbeatsEnabled")
126
142
  def emit_heartbeats_enabled(self) -> Optional[pulumi.Input[bool]]:
127
143
  """
128
- Emit heartbeats enabled. The default value is `false`.
144
+ Whether to emit heartbeats to the target cluster. The default value is `false`.
129
145
  """
130
146
  return pulumi.get(self, "emit_heartbeats_enabled")
131
147
 
@@ -209,6 +225,7 @@ class MirrorMakerReplicationFlowArgs:
209
225
  @pulumi.input_type
210
226
  class _MirrorMakerReplicationFlowState:
211
227
  def __init__(__self__, *,
228
+ emit_backward_heartbeats_enabled: Optional[pulumi.Input[bool]] = None,
212
229
  emit_heartbeats_enabled: Optional[pulumi.Input[bool]] = None,
213
230
  enable: Optional[pulumi.Input[bool]] = None,
214
231
  offset_syncs_topic_location: Optional[pulumi.Input[str]] = None,
@@ -223,7 +240,8 @@ class _MirrorMakerReplicationFlowState:
223
240
  topics_blacklists: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
224
241
  """
225
242
  Input properties used for looking up and filtering MirrorMakerReplicationFlow resources.
226
- :param pulumi.Input[bool] emit_heartbeats_enabled: Emit heartbeats enabled. The default value is `false`.
243
+ :param pulumi.Input[bool] emit_backward_heartbeats_enabled: Whether to emit heartbeats to the direction opposite to the flow, i.e. to the source cluster. The default value is `false`.
244
+ :param pulumi.Input[bool] emit_heartbeats_enabled: Whether to emit heartbeats to the target cluster. The default value is `false`.
227
245
  :param pulumi.Input[bool] enable: Enable of disable replication flows for a service.
228
246
  :param pulumi.Input[str] offset_syncs_topic_location: Offset syncs topic location.
229
247
  :param pulumi.Input[str] project: Identifies the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. This property cannot be changed, doing so forces recreation of the resource.
@@ -236,6 +254,8 @@ class _MirrorMakerReplicationFlowState:
236
254
  :param pulumi.Input[Sequence[pulumi.Input[str]]] topics: List of topics and/or regular expressions to replicate
237
255
  :param pulumi.Input[Sequence[pulumi.Input[str]]] topics_blacklists: List of topics and/or regular expressions to not replicate.
238
256
  """
257
+ if emit_backward_heartbeats_enabled is not None:
258
+ pulumi.set(__self__, "emit_backward_heartbeats_enabled", emit_backward_heartbeats_enabled)
239
259
  if emit_heartbeats_enabled is not None:
240
260
  pulumi.set(__self__, "emit_heartbeats_enabled", emit_heartbeats_enabled)
241
261
  if enable is not None:
@@ -261,11 +281,23 @@ class _MirrorMakerReplicationFlowState:
261
281
  if topics_blacklists is not None:
262
282
  pulumi.set(__self__, "topics_blacklists", topics_blacklists)
263
283
 
284
+ @property
285
+ @pulumi.getter(name="emitBackwardHeartbeatsEnabled")
286
+ def emit_backward_heartbeats_enabled(self) -> Optional[pulumi.Input[bool]]:
287
+ """
288
+ Whether to emit heartbeats to the direction opposite to the flow, i.e. to the source cluster. The default value is `false`.
289
+ """
290
+ return pulumi.get(self, "emit_backward_heartbeats_enabled")
291
+
292
+ @emit_backward_heartbeats_enabled.setter
293
+ def emit_backward_heartbeats_enabled(self, value: Optional[pulumi.Input[bool]]):
294
+ pulumi.set(self, "emit_backward_heartbeats_enabled", value)
295
+
264
296
  @property
265
297
  @pulumi.getter(name="emitHeartbeatsEnabled")
266
298
  def emit_heartbeats_enabled(self) -> Optional[pulumi.Input[bool]]:
267
299
  """
268
- Emit heartbeats enabled. The default value is `false`.
300
+ Whether to emit heartbeats to the target cluster. The default value is `false`.
269
301
  """
270
302
  return pulumi.get(self, "emit_heartbeats_enabled")
271
303
 
@@ -411,6 +443,7 @@ class MirrorMakerReplicationFlow(pulumi.CustomResource):
411
443
  def __init__(__self__,
412
444
  resource_name: str,
413
445
  opts: Optional[pulumi.ResourceOptions] = None,
446
+ emit_backward_heartbeats_enabled: Optional[pulumi.Input[bool]] = None,
414
447
  emit_heartbeats_enabled: Optional[pulumi.Input[bool]] = None,
415
448
  enable: Optional[pulumi.Input[bool]] = None,
416
449
  offset_syncs_topic_location: Optional[pulumi.Input[str]] = None,
@@ -455,7 +488,8 @@ class MirrorMakerReplicationFlow(pulumi.CustomResource):
455
488
 
456
489
  :param str resource_name: The name of the resource.
457
490
  :param pulumi.ResourceOptions opts: Options for the resource.
458
- :param pulumi.Input[bool] emit_heartbeats_enabled: Emit heartbeats enabled. The default value is `false`.
491
+ :param pulumi.Input[bool] emit_backward_heartbeats_enabled: Whether to emit heartbeats to the direction opposite to the flow, i.e. to the source cluster. The default value is `false`.
492
+ :param pulumi.Input[bool] emit_heartbeats_enabled: Whether to emit heartbeats to the target cluster. The default value is `false`.
459
493
  :param pulumi.Input[bool] enable: Enable of disable replication flows for a service.
460
494
  :param pulumi.Input[str] offset_syncs_topic_location: Offset syncs topic location.
461
495
  :param pulumi.Input[str] project: Identifies the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. This property cannot be changed, doing so forces recreation of the resource.
@@ -518,6 +552,7 @@ class MirrorMakerReplicationFlow(pulumi.CustomResource):
518
552
  def _internal_init(__self__,
519
553
  resource_name: str,
520
554
  opts: Optional[pulumi.ResourceOptions] = None,
555
+ emit_backward_heartbeats_enabled: Optional[pulumi.Input[bool]] = None,
521
556
  emit_heartbeats_enabled: Optional[pulumi.Input[bool]] = None,
522
557
  enable: Optional[pulumi.Input[bool]] = None,
523
558
  offset_syncs_topic_location: Optional[pulumi.Input[str]] = None,
@@ -539,6 +574,7 @@ class MirrorMakerReplicationFlow(pulumi.CustomResource):
539
574
  raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
540
575
  __props__ = MirrorMakerReplicationFlowArgs.__new__(MirrorMakerReplicationFlowArgs)
541
576
 
577
+ __props__.__dict__["emit_backward_heartbeats_enabled"] = emit_backward_heartbeats_enabled
542
578
  __props__.__dict__["emit_heartbeats_enabled"] = emit_heartbeats_enabled
543
579
  if enable is None and not opts.urn:
544
580
  raise TypeError("Missing required property 'enable'")
@@ -571,6 +607,7 @@ class MirrorMakerReplicationFlow(pulumi.CustomResource):
571
607
  def get(resource_name: str,
572
608
  id: pulumi.Input[str],
573
609
  opts: Optional[pulumi.ResourceOptions] = None,
610
+ emit_backward_heartbeats_enabled: Optional[pulumi.Input[bool]] = None,
574
611
  emit_heartbeats_enabled: Optional[pulumi.Input[bool]] = None,
575
612
  enable: Optional[pulumi.Input[bool]] = None,
576
613
  offset_syncs_topic_location: Optional[pulumi.Input[str]] = None,
@@ -590,7 +627,8 @@ class MirrorMakerReplicationFlow(pulumi.CustomResource):
590
627
  :param str resource_name: The unique name of the resulting resource.
591
628
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
592
629
  :param pulumi.ResourceOptions opts: Options for the resource.
593
- :param pulumi.Input[bool] emit_heartbeats_enabled: Emit heartbeats enabled. The default value is `false`.
630
+ :param pulumi.Input[bool] emit_backward_heartbeats_enabled: Whether to emit heartbeats to the direction opposite to the flow, i.e. to the source cluster. The default value is `false`.
631
+ :param pulumi.Input[bool] emit_heartbeats_enabled: Whether to emit heartbeats to the target cluster. The default value is `false`.
594
632
  :param pulumi.Input[bool] enable: Enable of disable replication flows for a service.
595
633
  :param pulumi.Input[str] offset_syncs_topic_location: Offset syncs topic location.
596
634
  :param pulumi.Input[str] project: Identifies the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. This property cannot be changed, doing so forces recreation of the resource.
@@ -607,6 +645,7 @@ class MirrorMakerReplicationFlow(pulumi.CustomResource):
607
645
 
608
646
  __props__ = _MirrorMakerReplicationFlowState.__new__(_MirrorMakerReplicationFlowState)
609
647
 
648
+ __props__.__dict__["emit_backward_heartbeats_enabled"] = emit_backward_heartbeats_enabled
610
649
  __props__.__dict__["emit_heartbeats_enabled"] = emit_heartbeats_enabled
611
650
  __props__.__dict__["enable"] = enable
612
651
  __props__.__dict__["offset_syncs_topic_location"] = offset_syncs_topic_location
@@ -621,11 +660,19 @@ class MirrorMakerReplicationFlow(pulumi.CustomResource):
621
660
  __props__.__dict__["topics_blacklists"] = topics_blacklists
622
661
  return MirrorMakerReplicationFlow(resource_name, opts=opts, __props__=__props__)
623
662
 
663
+ @property
664
+ @pulumi.getter(name="emitBackwardHeartbeatsEnabled")
665
+ def emit_backward_heartbeats_enabled(self) -> pulumi.Output[Optional[bool]]:
666
+ """
667
+ Whether to emit heartbeats to the direction opposite to the flow, i.e. to the source cluster. The default value is `false`.
668
+ """
669
+ return pulumi.get(self, "emit_backward_heartbeats_enabled")
670
+
624
671
  @property
625
672
  @pulumi.getter(name="emitHeartbeatsEnabled")
626
673
  def emit_heartbeats_enabled(self) -> pulumi.Output[Optional[bool]]:
627
674
  """
628
- Emit heartbeats enabled. The default value is `false`.
675
+ Whether to emit heartbeats to the target cluster. The default value is `false`.
629
676
  """
630
677
  return pulumi.get(self, "emit_heartbeats_enabled")
631
678