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.
- pulumi_aiven/_inputs.py +1660 -35
- pulumi_aiven/_utilities.py +41 -0
- pulumi_aiven/account_team_member.py +7 -7
- pulumi_aiven/cassandra.py +47 -0
- pulumi_aiven/clickhouse.py +47 -0
- pulumi_aiven/config/__init__.pyi +16 -0
- pulumi_aiven/flink.py +54 -7
- pulumi_aiven/get_account_team_member.py +3 -3
- pulumi_aiven/get_cassanda.py +14 -1
- pulumi_aiven/get_cassandra.py +14 -1
- pulumi_aiven/get_clickhouse.py +14 -1
- pulumi_aiven/get_flink.py +14 -1
- pulumi_aiven/get_grafana.py +14 -1
- pulumi_aiven/get_influx_db.py +14 -1
- pulumi_aiven/get_kafka.py +14 -1
- pulumi_aiven/get_kafka_connect.py +14 -1
- pulumi_aiven/get_kafka_mirror_maker.py +14 -1
- pulumi_aiven/get_m3_aggregator.py +14 -1
- pulumi_aiven/get_m3_db.py +14 -1
- pulumi_aiven/get_mirror_maker_replication_flow.py +15 -2
- pulumi_aiven/get_my_sql.py +14 -1
- pulumi_aiven/get_open_search.py +14 -1
- pulumi_aiven/get_organization_user.py +3 -3
- pulumi_aiven/get_organization_user_group.py +14 -1
- pulumi_aiven/get_pg.py +14 -1
- pulumi_aiven/get_project.py +1 -1
- pulumi_aiven/get_project_user.py +3 -3
- pulumi_aiven/get_redis.py +14 -1
- pulumi_aiven/get_service_integration_endpoint.py +28 -2
- pulumi_aiven/grafana.py +54 -0
- pulumi_aiven/influx_db.py +47 -0
- pulumi_aiven/kafka.py +47 -0
- pulumi_aiven/kafka_connect.py +54 -0
- pulumi_aiven/kafka_mirror_maker.py +54 -0
- pulumi_aiven/m3_aggregator.py +54 -0
- pulumi_aiven/m3_db.py +54 -0
- pulumi_aiven/mirror_maker_replication_flow.py +54 -7
- pulumi_aiven/my_sql.py +54 -0
- pulumi_aiven/open_search.py +47 -0
- pulumi_aiven/organization_user.py +7 -7
- pulumi_aiven/organization_user_group.py +28 -0
- pulumi_aiven/outputs.py +2473 -64
- pulumi_aiven/pg.py +47 -0
- pulumi_aiven/project.py +7 -7
- pulumi_aiven/project_user.py +7 -7
- pulumi_aiven/redis.py +54 -0
- pulumi_aiven/service_integration_endpoint.py +101 -7
- {pulumi_aiven-6.7.2.dist-info → pulumi_aiven-6.8.0.dist-info}/METADATA +2 -2
- {pulumi_aiven-6.7.2.dist-info → pulumi_aiven-6.8.0.dist-info}/RECORD +51 -50
- {pulumi_aiven-6.7.2.dist-info → pulumi_aiven-6.8.0.dist-info}/WHEEL +1 -1
- {pulumi_aiven-6.7.2.dist-info → pulumi_aiven-6.8.0.dist-info}/top_level.txt +0 -0
pulumi_aiven/flink.py
CHANGED
|
@@ -30,6 +30,7 @@ class FlinkArgs:
|
|
|
30
30
|
service_integrations: Optional[pulumi.Input[Sequence[pulumi.Input['FlinkServiceIntegrationArgs']]]] = None,
|
|
31
31
|
static_ips: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
32
32
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input['FlinkTagArgs']]]] = None,
|
|
33
|
+
tech_emails: Optional[pulumi.Input[Sequence[pulumi.Input['FlinkTechEmailArgs']]]] = None,
|
|
33
34
|
termination_protection: Optional[pulumi.Input[bool]] = None):
|
|
34
35
|
"""
|
|
35
36
|
The set of arguments for constructing a Flink resource.
|
|
@@ -45,8 +46,9 @@ class FlinkArgs:
|
|
|
45
46
|
:param pulumi.Input[str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
46
47
|
:param pulumi.Input[str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service is not run inside a VPC. When set, the value should be given as a reference to set up dependencies correctly and the VPC must be in the same cloud and region as the service itself. Project can be freely moved to and from VPC after creation but doing so triggers migration to new servers so the operation can take significant amount of time to complete if the service has a lot of data.
|
|
47
48
|
:param pulumi.Input[Sequence[pulumi.Input['FlinkServiceIntegrationArgs']]] service_integrations: Service integrations to specify when creating a service. Not applied after initial service creation
|
|
48
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] static_ips:
|
|
49
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] static_ips: Use static public IP addresses.
|
|
49
50
|
:param pulumi.Input[Sequence[pulumi.Input['FlinkTagArgs']]] tags: Tags are key-value pairs that allow you to categorize services.
|
|
51
|
+
:param pulumi.Input[Sequence[pulumi.Input['FlinkTechEmailArgs']]] tech_emails: Defines the email addresses that will receive alerts about upcoming maintenance updates or warnings about service instability.
|
|
50
52
|
: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.
|
|
51
53
|
"""
|
|
52
54
|
pulumi.set(__self__, "plan", plan)
|
|
@@ -77,6 +79,8 @@ class FlinkArgs:
|
|
|
77
79
|
pulumi.set(__self__, "static_ips", static_ips)
|
|
78
80
|
if tags is not None:
|
|
79
81
|
pulumi.set(__self__, "tags", tags)
|
|
82
|
+
if tech_emails is not None:
|
|
83
|
+
pulumi.set(__self__, "tech_emails", tech_emails)
|
|
80
84
|
if termination_protection is not None:
|
|
81
85
|
pulumi.set(__self__, "termination_protection", termination_protection)
|
|
82
86
|
|
|
@@ -231,7 +235,7 @@ class FlinkArgs:
|
|
|
231
235
|
@pulumi.getter(name="staticIps")
|
|
232
236
|
def static_ips(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
233
237
|
"""
|
|
234
|
-
|
|
238
|
+
Use static public IP addresses.
|
|
235
239
|
"""
|
|
236
240
|
return pulumi.get(self, "static_ips")
|
|
237
241
|
|
|
@@ -251,6 +255,18 @@ class FlinkArgs:
|
|
|
251
255
|
def tags(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['FlinkTagArgs']]]]):
|
|
252
256
|
pulumi.set(self, "tags", value)
|
|
253
257
|
|
|
258
|
+
@property
|
|
259
|
+
@pulumi.getter(name="techEmails")
|
|
260
|
+
def tech_emails(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['FlinkTechEmailArgs']]]]:
|
|
261
|
+
"""
|
|
262
|
+
Defines the email addresses that will receive alerts about upcoming maintenance updates or warnings about service instability.
|
|
263
|
+
"""
|
|
264
|
+
return pulumi.get(self, "tech_emails")
|
|
265
|
+
|
|
266
|
+
@tech_emails.setter
|
|
267
|
+
def tech_emails(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['FlinkTechEmailArgs']]]]):
|
|
268
|
+
pulumi.set(self, "tech_emails", value)
|
|
269
|
+
|
|
254
270
|
@property
|
|
255
271
|
@pulumi.getter(name="terminationProtection")
|
|
256
272
|
def termination_protection(self) -> Optional[pulumi.Input[bool]]:
|
|
@@ -293,6 +309,7 @@ class _FlinkState:
|
|
|
293
309
|
state: Optional[pulumi.Input[str]] = None,
|
|
294
310
|
static_ips: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
295
311
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input['FlinkTagArgs']]]] = None,
|
|
312
|
+
tech_emails: Optional[pulumi.Input[Sequence[pulumi.Input['FlinkTechEmailArgs']]]] = None,
|
|
296
313
|
termination_protection: Optional[pulumi.Input[bool]] = None):
|
|
297
314
|
"""
|
|
298
315
|
Input properties used for looking up and filtering Flink resources.
|
|
@@ -320,8 +337,9 @@ class _FlinkState:
|
|
|
320
337
|
:param pulumi.Input[str] service_uri: URI for connecting to the service. Service specific info is under "kafka", "pg", etc.
|
|
321
338
|
:param pulumi.Input[str] service_username: Username used for connecting to the service, if applicable
|
|
322
339
|
:param pulumi.Input[str] state: Service state. One of `POWEROFF`, `REBALANCING`, `REBUILDING` or `RUNNING`
|
|
323
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] static_ips:
|
|
340
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] static_ips: Use static public IP addresses.
|
|
324
341
|
:param pulumi.Input[Sequence[pulumi.Input['FlinkTagArgs']]] tags: Tags are key-value pairs that allow you to categorize services.
|
|
342
|
+
:param pulumi.Input[Sequence[pulumi.Input['FlinkTechEmailArgs']]] tech_emails: Defines the email addresses that will receive alerts about upcoming maintenance updates or warnings about service instability.
|
|
325
343
|
: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.
|
|
326
344
|
"""
|
|
327
345
|
if additional_disk_space is not None:
|
|
@@ -379,6 +397,8 @@ class _FlinkState:
|
|
|
379
397
|
pulumi.set(__self__, "static_ips", static_ips)
|
|
380
398
|
if tags is not None:
|
|
381
399
|
pulumi.set(__self__, "tags", tags)
|
|
400
|
+
if tech_emails is not None:
|
|
401
|
+
pulumi.set(__self__, "tech_emails", tech_emails)
|
|
382
402
|
if termination_protection is not None:
|
|
383
403
|
pulumi.set(__self__, "termination_protection", termination_protection)
|
|
384
404
|
|
|
@@ -677,7 +697,7 @@ class _FlinkState:
|
|
|
677
697
|
@pulumi.getter(name="staticIps")
|
|
678
698
|
def static_ips(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
679
699
|
"""
|
|
680
|
-
|
|
700
|
+
Use static public IP addresses.
|
|
681
701
|
"""
|
|
682
702
|
return pulumi.get(self, "static_ips")
|
|
683
703
|
|
|
@@ -697,6 +717,18 @@ class _FlinkState:
|
|
|
697
717
|
def tags(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['FlinkTagArgs']]]]):
|
|
698
718
|
pulumi.set(self, "tags", value)
|
|
699
719
|
|
|
720
|
+
@property
|
|
721
|
+
@pulumi.getter(name="techEmails")
|
|
722
|
+
def tech_emails(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['FlinkTechEmailArgs']]]]:
|
|
723
|
+
"""
|
|
724
|
+
Defines the email addresses that will receive alerts about upcoming maintenance updates or warnings about service instability.
|
|
725
|
+
"""
|
|
726
|
+
return pulumi.get(self, "tech_emails")
|
|
727
|
+
|
|
728
|
+
@tech_emails.setter
|
|
729
|
+
def tech_emails(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['FlinkTechEmailArgs']]]]):
|
|
730
|
+
pulumi.set(self, "tech_emails", value)
|
|
731
|
+
|
|
700
732
|
@property
|
|
701
733
|
@pulumi.getter(name="terminationProtection")
|
|
702
734
|
def termination_protection(self) -> Optional[pulumi.Input[bool]]:
|
|
@@ -729,6 +761,7 @@ class Flink(pulumi.CustomResource):
|
|
|
729
761
|
service_name: Optional[pulumi.Input[str]] = None,
|
|
730
762
|
static_ips: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
731
763
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['FlinkTagArgs']]]]] = None,
|
|
764
|
+
tech_emails: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['FlinkTechEmailArgs']]]]] = None,
|
|
732
765
|
termination_protection: Optional[pulumi.Input[bool]] = None,
|
|
733
766
|
__props__=None):
|
|
734
767
|
"""
|
|
@@ -772,8 +805,9 @@ class Flink(pulumi.CustomResource):
|
|
|
772
805
|
:param pulumi.Input[str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service is not run inside a VPC. When set, the value should be given as a reference to set up dependencies correctly and the VPC must be in the same cloud and region as the service itself. Project can be freely moved to and from VPC after creation but doing so triggers migration to new servers so the operation can take significant amount of time to complete if the service has a lot of data.
|
|
773
806
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['FlinkServiceIntegrationArgs']]]] service_integrations: Service integrations to specify when creating a service. Not applied after initial service creation
|
|
774
807
|
: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.
|
|
775
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] static_ips:
|
|
808
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] static_ips: Use static public IP addresses.
|
|
776
809
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['FlinkTagArgs']]]] tags: Tags are key-value pairs that allow you to categorize services.
|
|
810
|
+
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['FlinkTechEmailArgs']]]] tech_emails: Defines the email addresses that will receive alerts about upcoming maintenance updates or warnings about service instability.
|
|
777
811
|
: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.
|
|
778
812
|
"""
|
|
779
813
|
...
|
|
@@ -838,6 +872,7 @@ class Flink(pulumi.CustomResource):
|
|
|
838
872
|
service_name: Optional[pulumi.Input[str]] = None,
|
|
839
873
|
static_ips: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
840
874
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['FlinkTagArgs']]]]] = None,
|
|
875
|
+
tech_emails: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['FlinkTechEmailArgs']]]]] = None,
|
|
841
876
|
termination_protection: Optional[pulumi.Input[bool]] = None,
|
|
842
877
|
__props__=None):
|
|
843
878
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
|
@@ -868,6 +903,7 @@ class Flink(pulumi.CustomResource):
|
|
|
868
903
|
__props__.__dict__["service_name"] = service_name
|
|
869
904
|
__props__.__dict__["static_ips"] = static_ips
|
|
870
905
|
__props__.__dict__["tags"] = tags
|
|
906
|
+
__props__.__dict__["tech_emails"] = tech_emails
|
|
871
907
|
__props__.__dict__["termination_protection"] = termination_protection
|
|
872
908
|
__props__.__dict__["components"] = None
|
|
873
909
|
__props__.__dict__["disk_space_cap"] = None
|
|
@@ -919,6 +955,7 @@ class Flink(pulumi.CustomResource):
|
|
|
919
955
|
state: Optional[pulumi.Input[str]] = None,
|
|
920
956
|
static_ips: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
921
957
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['FlinkTagArgs']]]]] = None,
|
|
958
|
+
tech_emails: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['FlinkTechEmailArgs']]]]] = None,
|
|
922
959
|
termination_protection: Optional[pulumi.Input[bool]] = None) -> 'Flink':
|
|
923
960
|
"""
|
|
924
961
|
Get an existing Flink resource's state with the given name, id, and optional extra
|
|
@@ -951,8 +988,9 @@ class Flink(pulumi.CustomResource):
|
|
|
951
988
|
:param pulumi.Input[str] service_uri: URI for connecting to the service. Service specific info is under "kafka", "pg", etc.
|
|
952
989
|
:param pulumi.Input[str] service_username: Username used for connecting to the service, if applicable
|
|
953
990
|
:param pulumi.Input[str] state: Service state. One of `POWEROFF`, `REBALANCING`, `REBUILDING` or `RUNNING`
|
|
954
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] static_ips:
|
|
991
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] static_ips: Use static public IP addresses.
|
|
955
992
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['FlinkTagArgs']]]] tags: Tags are key-value pairs that allow you to categorize services.
|
|
993
|
+
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['FlinkTechEmailArgs']]]] tech_emails: Defines the email addresses that will receive alerts about upcoming maintenance updates or warnings about service instability.
|
|
956
994
|
: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.
|
|
957
995
|
"""
|
|
958
996
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
@@ -985,6 +1023,7 @@ class Flink(pulumi.CustomResource):
|
|
|
985
1023
|
__props__.__dict__["state"] = state
|
|
986
1024
|
__props__.__dict__["static_ips"] = static_ips
|
|
987
1025
|
__props__.__dict__["tags"] = tags
|
|
1026
|
+
__props__.__dict__["tech_emails"] = tech_emails
|
|
988
1027
|
__props__.__dict__["termination_protection"] = termination_protection
|
|
989
1028
|
return Flink(resource_name, opts=opts, __props__=__props__)
|
|
990
1029
|
|
|
@@ -1187,7 +1226,7 @@ class Flink(pulumi.CustomResource):
|
|
|
1187
1226
|
@pulumi.getter(name="staticIps")
|
|
1188
1227
|
def static_ips(self) -> pulumi.Output[Optional[Sequence[str]]]:
|
|
1189
1228
|
"""
|
|
1190
|
-
|
|
1229
|
+
Use static public IP addresses.
|
|
1191
1230
|
"""
|
|
1192
1231
|
return pulumi.get(self, "static_ips")
|
|
1193
1232
|
|
|
@@ -1199,6 +1238,14 @@ class Flink(pulumi.CustomResource):
|
|
|
1199
1238
|
"""
|
|
1200
1239
|
return pulumi.get(self, "tags")
|
|
1201
1240
|
|
|
1241
|
+
@property
|
|
1242
|
+
@pulumi.getter(name="techEmails")
|
|
1243
|
+
def tech_emails(self) -> pulumi.Output[Optional[Sequence['outputs.FlinkTechEmail']]]:
|
|
1244
|
+
"""
|
|
1245
|
+
Defines the email addresses that will receive alerts about upcoming maintenance updates or warnings about service instability.
|
|
1246
|
+
"""
|
|
1247
|
+
return pulumi.get(self, "tech_emails")
|
|
1248
|
+
|
|
1202
1249
|
@property
|
|
1203
1250
|
@pulumi.getter(name="terminationProtection")
|
|
1204
1251
|
def termination_protection(self) -> pulumi.Output[Optional[bool]]:
|
|
@@ -96,7 +96,7 @@ class GetAccountTeamMemberResult:
|
|
|
96
96
|
@pulumi.getter(name="userEmail")
|
|
97
97
|
def user_email(self) -> str:
|
|
98
98
|
"""
|
|
99
|
-
Is a user email address that first will be invited, and after accepting an invitation, he or she becomes a member of a team. This property cannot be changed, doing so forces recreation of the resource.
|
|
99
|
+
Is a user email address that first will be invited, and after accepting an invitation, he or she becomes a member of a team. Should be lowercase. This property cannot be changed, doing so forces recreation of the resource.
|
|
100
100
|
"""
|
|
101
101
|
return pulumi.get(self, "user_email")
|
|
102
102
|
|
|
@@ -126,7 +126,7 @@ def get_account_team_member(account_id: Optional[str] = None,
|
|
|
126
126
|
|
|
127
127
|
:param str account_id: The unique account id. This property cannot be changed, doing so forces recreation of the resource.
|
|
128
128
|
:param str team_id: An account team id. This property cannot be changed, doing so forces recreation of the resource.
|
|
129
|
-
:param str user_email: Is a user email address that first will be invited, and after accepting an invitation, he or she becomes a member of a team. This property cannot be changed, doing so forces recreation of the resource.
|
|
129
|
+
:param str user_email: Is a user email address that first will be invited, and after accepting an invitation, he or she becomes a member of a team. Should be lowercase. This property cannot be changed, doing so forces recreation of the resource.
|
|
130
130
|
"""
|
|
131
131
|
__args__ = dict()
|
|
132
132
|
__args__['accountId'] = account_id
|
|
@@ -156,6 +156,6 @@ def get_account_team_member_output(account_id: Optional[pulumi.Input[str]] = Non
|
|
|
156
156
|
|
|
157
157
|
:param str account_id: The unique account id. This property cannot be changed, doing so forces recreation of the resource.
|
|
158
158
|
:param str team_id: An account team id. This property cannot be changed, doing so forces recreation of the resource.
|
|
159
|
-
:param str user_email: Is a user email address that first will be invited, and after accepting an invitation, he or she becomes a member of a team. This property cannot be changed, doing so forces recreation of the resource.
|
|
159
|
+
:param str user_email: Is a user email address that first will be invited, and after accepting an invitation, he or she becomes a member of a team. Should be lowercase. This property cannot be changed, doing so forces recreation of the resource.
|
|
160
160
|
"""
|
|
161
161
|
...
|
pulumi_aiven/get_cassanda.py
CHANGED
|
@@ -24,7 +24,7 @@ class GetCassandaResult:
|
|
|
24
24
|
"""
|
|
25
25
|
A collection of values returned by getCassanda.
|
|
26
26
|
"""
|
|
27
|
-
def __init__(__self__, additional_disk_space=None, cassandra_user_configs=None, cassandras=None, cloud_name=None, components=None, disk_space=None, disk_space_cap=None, disk_space_default=None, disk_space_step=None, disk_space_used=None, id=None, maintenance_window_dow=None, maintenance_window_time=None, plan=None, project=None, project_vpc_id=None, service_host=None, service_integrations=None, service_name=None, service_password=None, service_port=None, service_type=None, service_uri=None, service_username=None, state=None, static_ips=None, tags=None, termination_protection=None):
|
|
27
|
+
def __init__(__self__, additional_disk_space=None, cassandra_user_configs=None, cassandras=None, cloud_name=None, components=None, disk_space=None, disk_space_cap=None, disk_space_default=None, disk_space_step=None, disk_space_used=None, id=None, maintenance_window_dow=None, maintenance_window_time=None, plan=None, project=None, project_vpc_id=None, service_host=None, service_integrations=None, service_name=None, service_password=None, service_port=None, service_type=None, service_uri=None, service_username=None, state=None, static_ips=None, tags=None, tech_emails=None, termination_protection=None):
|
|
28
28
|
if additional_disk_space and not isinstance(additional_disk_space, str):
|
|
29
29
|
raise TypeError("Expected argument 'additional_disk_space' to be a str")
|
|
30
30
|
pulumi.set(__self__, "additional_disk_space", additional_disk_space)
|
|
@@ -106,6 +106,9 @@ class GetCassandaResult:
|
|
|
106
106
|
if tags and not isinstance(tags, list):
|
|
107
107
|
raise TypeError("Expected argument 'tags' to be a list")
|
|
108
108
|
pulumi.set(__self__, "tags", tags)
|
|
109
|
+
if tech_emails and not isinstance(tech_emails, list):
|
|
110
|
+
raise TypeError("Expected argument 'tech_emails' to be a list")
|
|
111
|
+
pulumi.set(__self__, "tech_emails", tech_emails)
|
|
109
112
|
if termination_protection and not isinstance(termination_protection, bool):
|
|
110
113
|
raise TypeError("Expected argument 'termination_protection' to be a bool")
|
|
111
114
|
pulumi.set(__self__, "termination_protection", termination_protection)
|
|
@@ -326,6 +329,14 @@ class GetCassandaResult:
|
|
|
326
329
|
"""
|
|
327
330
|
return pulumi.get(self, "tags")
|
|
328
331
|
|
|
332
|
+
@property
|
|
333
|
+
@pulumi.getter(name="techEmails")
|
|
334
|
+
def tech_emails(self) -> Sequence['outputs.GetCassandaTechEmailResult']:
|
|
335
|
+
"""
|
|
336
|
+
Defines the email addresses that will receive alerts about upcoming maintenance updates or warnings about service instability.
|
|
337
|
+
"""
|
|
338
|
+
return pulumi.get(self, "tech_emails")
|
|
339
|
+
|
|
329
340
|
@property
|
|
330
341
|
@pulumi.getter(name="terminationProtection")
|
|
331
342
|
def termination_protection(self) -> bool:
|
|
@@ -368,6 +379,7 @@ class AwaitableGetCassandaResult(GetCassandaResult):
|
|
|
368
379
|
state=self.state,
|
|
369
380
|
static_ips=self.static_ips,
|
|
370
381
|
tags=self.tags,
|
|
382
|
+
tech_emails=self.tech_emails,
|
|
371
383
|
termination_protection=self.termination_protection)
|
|
372
384
|
|
|
373
385
|
|
|
@@ -426,6 +438,7 @@ def get_cassanda(project: Optional[str] = None,
|
|
|
426
438
|
state=pulumi.get(__ret__, 'state'),
|
|
427
439
|
static_ips=pulumi.get(__ret__, 'static_ips'),
|
|
428
440
|
tags=pulumi.get(__ret__, 'tags'),
|
|
441
|
+
tech_emails=pulumi.get(__ret__, 'tech_emails'),
|
|
429
442
|
termination_protection=pulumi.get(__ret__, 'termination_protection'))
|
|
430
443
|
|
|
431
444
|
|
pulumi_aiven/get_cassandra.py
CHANGED
|
@@ -22,7 +22,7 @@ class GetCassandraResult:
|
|
|
22
22
|
"""
|
|
23
23
|
A collection of values returned by getCassandra.
|
|
24
24
|
"""
|
|
25
|
-
def __init__(__self__, additional_disk_space=None, cassandra_user_configs=None, cassandras=None, cloud_name=None, components=None, disk_space=None, disk_space_cap=None, disk_space_default=None, disk_space_step=None, disk_space_used=None, id=None, maintenance_window_dow=None, maintenance_window_time=None, plan=None, project=None, project_vpc_id=None, service_host=None, service_integrations=None, service_name=None, service_password=None, service_port=None, service_type=None, service_uri=None, service_username=None, state=None, static_ips=None, tags=None, termination_protection=None):
|
|
25
|
+
def __init__(__self__, additional_disk_space=None, cassandra_user_configs=None, cassandras=None, cloud_name=None, components=None, disk_space=None, disk_space_cap=None, disk_space_default=None, disk_space_step=None, disk_space_used=None, id=None, maintenance_window_dow=None, maintenance_window_time=None, plan=None, project=None, project_vpc_id=None, service_host=None, service_integrations=None, service_name=None, service_password=None, service_port=None, service_type=None, service_uri=None, service_username=None, state=None, static_ips=None, tags=None, tech_emails=None, termination_protection=None):
|
|
26
26
|
if additional_disk_space and not isinstance(additional_disk_space, str):
|
|
27
27
|
raise TypeError("Expected argument 'additional_disk_space' to be a str")
|
|
28
28
|
pulumi.set(__self__, "additional_disk_space", additional_disk_space)
|
|
@@ -104,6 +104,9 @@ class GetCassandraResult:
|
|
|
104
104
|
if tags and not isinstance(tags, list):
|
|
105
105
|
raise TypeError("Expected argument 'tags' to be a list")
|
|
106
106
|
pulumi.set(__self__, "tags", tags)
|
|
107
|
+
if tech_emails and not isinstance(tech_emails, list):
|
|
108
|
+
raise TypeError("Expected argument 'tech_emails' to be a list")
|
|
109
|
+
pulumi.set(__self__, "tech_emails", tech_emails)
|
|
107
110
|
if termination_protection and not isinstance(termination_protection, bool):
|
|
108
111
|
raise TypeError("Expected argument 'termination_protection' to be a bool")
|
|
109
112
|
pulumi.set(__self__, "termination_protection", termination_protection)
|
|
@@ -324,6 +327,14 @@ class GetCassandraResult:
|
|
|
324
327
|
"""
|
|
325
328
|
return pulumi.get(self, "tags")
|
|
326
329
|
|
|
330
|
+
@property
|
|
331
|
+
@pulumi.getter(name="techEmails")
|
|
332
|
+
def tech_emails(self) -> Sequence['outputs.GetCassandraTechEmailResult']:
|
|
333
|
+
"""
|
|
334
|
+
Defines the email addresses that will receive alerts about upcoming maintenance updates or warnings about service instability.
|
|
335
|
+
"""
|
|
336
|
+
return pulumi.get(self, "tech_emails")
|
|
337
|
+
|
|
327
338
|
@property
|
|
328
339
|
@pulumi.getter(name="terminationProtection")
|
|
329
340
|
def termination_protection(self) -> bool:
|
|
@@ -366,6 +377,7 @@ class AwaitableGetCassandraResult(GetCassandraResult):
|
|
|
366
377
|
state=self.state,
|
|
367
378
|
static_ips=self.static_ips,
|
|
368
379
|
tags=self.tags,
|
|
380
|
+
tech_emails=self.tech_emails,
|
|
369
381
|
termination_protection=self.termination_protection)
|
|
370
382
|
|
|
371
383
|
|
|
@@ -423,6 +435,7 @@ def get_cassandra(project: Optional[str] = None,
|
|
|
423
435
|
state=pulumi.get(__ret__, 'state'),
|
|
424
436
|
static_ips=pulumi.get(__ret__, 'static_ips'),
|
|
425
437
|
tags=pulumi.get(__ret__, 'tags'),
|
|
438
|
+
tech_emails=pulumi.get(__ret__, 'tech_emails'),
|
|
426
439
|
termination_protection=pulumi.get(__ret__, 'termination_protection'))
|
|
427
440
|
|
|
428
441
|
|
pulumi_aiven/get_clickhouse.py
CHANGED
|
@@ -22,7 +22,7 @@ class GetClickhouseResult:
|
|
|
22
22
|
"""
|
|
23
23
|
A collection of values returned by getClickhouse.
|
|
24
24
|
"""
|
|
25
|
-
def __init__(__self__, additional_disk_space=None, clickhouse_user_configs=None, clickhouses=None, cloud_name=None, components=None, disk_space=None, disk_space_cap=None, disk_space_default=None, disk_space_step=None, disk_space_used=None, id=None, maintenance_window_dow=None, maintenance_window_time=None, plan=None, project=None, project_vpc_id=None, service_host=None, service_integrations=None, service_name=None, service_password=None, service_port=None, service_type=None, service_uri=None, service_username=None, state=None, static_ips=None, tags=None, termination_protection=None):
|
|
25
|
+
def __init__(__self__, additional_disk_space=None, clickhouse_user_configs=None, clickhouses=None, cloud_name=None, components=None, disk_space=None, disk_space_cap=None, disk_space_default=None, disk_space_step=None, disk_space_used=None, id=None, maintenance_window_dow=None, maintenance_window_time=None, plan=None, project=None, project_vpc_id=None, service_host=None, service_integrations=None, service_name=None, service_password=None, service_port=None, service_type=None, service_uri=None, service_username=None, state=None, static_ips=None, tags=None, tech_emails=None, termination_protection=None):
|
|
26
26
|
if additional_disk_space and not isinstance(additional_disk_space, str):
|
|
27
27
|
raise TypeError("Expected argument 'additional_disk_space' to be a str")
|
|
28
28
|
pulumi.set(__self__, "additional_disk_space", additional_disk_space)
|
|
@@ -104,6 +104,9 @@ class GetClickhouseResult:
|
|
|
104
104
|
if tags and not isinstance(tags, list):
|
|
105
105
|
raise TypeError("Expected argument 'tags' to be a list")
|
|
106
106
|
pulumi.set(__self__, "tags", tags)
|
|
107
|
+
if tech_emails and not isinstance(tech_emails, list):
|
|
108
|
+
raise TypeError("Expected argument 'tech_emails' to be a list")
|
|
109
|
+
pulumi.set(__self__, "tech_emails", tech_emails)
|
|
107
110
|
if termination_protection and not isinstance(termination_protection, bool):
|
|
108
111
|
raise TypeError("Expected argument 'termination_protection' to be a bool")
|
|
109
112
|
pulumi.set(__self__, "termination_protection", termination_protection)
|
|
@@ -324,6 +327,14 @@ class GetClickhouseResult:
|
|
|
324
327
|
"""
|
|
325
328
|
return pulumi.get(self, "tags")
|
|
326
329
|
|
|
330
|
+
@property
|
|
331
|
+
@pulumi.getter(name="techEmails")
|
|
332
|
+
def tech_emails(self) -> Sequence['outputs.GetClickhouseTechEmailResult']:
|
|
333
|
+
"""
|
|
334
|
+
Defines the email addresses that will receive alerts about upcoming maintenance updates or warnings about service instability.
|
|
335
|
+
"""
|
|
336
|
+
return pulumi.get(self, "tech_emails")
|
|
337
|
+
|
|
327
338
|
@property
|
|
328
339
|
@pulumi.getter(name="terminationProtection")
|
|
329
340
|
def termination_protection(self) -> bool:
|
|
@@ -366,6 +377,7 @@ class AwaitableGetClickhouseResult(GetClickhouseResult):
|
|
|
366
377
|
state=self.state,
|
|
367
378
|
static_ips=self.static_ips,
|
|
368
379
|
tags=self.tags,
|
|
380
|
+
tech_emails=self.tech_emails,
|
|
369
381
|
termination_protection=self.termination_protection)
|
|
370
382
|
|
|
371
383
|
|
|
@@ -423,6 +435,7 @@ def get_clickhouse(project: Optional[str] = None,
|
|
|
423
435
|
state=pulumi.get(__ret__, 'state'),
|
|
424
436
|
static_ips=pulumi.get(__ret__, 'static_ips'),
|
|
425
437
|
tags=pulumi.get(__ret__, 'tags'),
|
|
438
|
+
tech_emails=pulumi.get(__ret__, 'tech_emails'),
|
|
426
439
|
termination_protection=pulumi.get(__ret__, 'termination_protection'))
|
|
427
440
|
|
|
428
441
|
|
pulumi_aiven/get_flink.py
CHANGED
|
@@ -22,7 +22,7 @@ class GetFlinkResult:
|
|
|
22
22
|
"""
|
|
23
23
|
A collection of values returned by getFlink.
|
|
24
24
|
"""
|
|
25
|
-
def __init__(__self__, additional_disk_space=None, cloud_name=None, components=None, disk_space=None, disk_space_cap=None, disk_space_default=None, disk_space_step=None, disk_space_used=None, flink_user_configs=None, flinks=None, id=None, maintenance_window_dow=None, maintenance_window_time=None, plan=None, project=None, project_vpc_id=None, service_host=None, service_integrations=None, service_name=None, service_password=None, service_port=None, service_type=None, service_uri=None, service_username=None, state=None, static_ips=None, tags=None, termination_protection=None):
|
|
25
|
+
def __init__(__self__, additional_disk_space=None, cloud_name=None, components=None, disk_space=None, disk_space_cap=None, disk_space_default=None, disk_space_step=None, disk_space_used=None, flink_user_configs=None, flinks=None, id=None, maintenance_window_dow=None, maintenance_window_time=None, plan=None, project=None, project_vpc_id=None, service_host=None, service_integrations=None, service_name=None, service_password=None, service_port=None, service_type=None, service_uri=None, service_username=None, state=None, static_ips=None, tags=None, tech_emails=None, termination_protection=None):
|
|
26
26
|
if additional_disk_space and not isinstance(additional_disk_space, str):
|
|
27
27
|
raise TypeError("Expected argument 'additional_disk_space' to be a str")
|
|
28
28
|
pulumi.set(__self__, "additional_disk_space", additional_disk_space)
|
|
@@ -104,6 +104,9 @@ class GetFlinkResult:
|
|
|
104
104
|
if tags and not isinstance(tags, list):
|
|
105
105
|
raise TypeError("Expected argument 'tags' to be a list")
|
|
106
106
|
pulumi.set(__self__, "tags", tags)
|
|
107
|
+
if tech_emails and not isinstance(tech_emails, list):
|
|
108
|
+
raise TypeError("Expected argument 'tech_emails' to be a list")
|
|
109
|
+
pulumi.set(__self__, "tech_emails", tech_emails)
|
|
107
110
|
if termination_protection and not isinstance(termination_protection, bool):
|
|
108
111
|
raise TypeError("Expected argument 'termination_protection' to be a bool")
|
|
109
112
|
pulumi.set(__self__, "termination_protection", termination_protection)
|
|
@@ -324,6 +327,14 @@ class GetFlinkResult:
|
|
|
324
327
|
"""
|
|
325
328
|
return pulumi.get(self, "tags")
|
|
326
329
|
|
|
330
|
+
@property
|
|
331
|
+
@pulumi.getter(name="techEmails")
|
|
332
|
+
def tech_emails(self) -> Sequence['outputs.GetFlinkTechEmailResult']:
|
|
333
|
+
"""
|
|
334
|
+
Defines the email addresses that will receive alerts about upcoming maintenance updates or warnings about service instability.
|
|
335
|
+
"""
|
|
336
|
+
return pulumi.get(self, "tech_emails")
|
|
337
|
+
|
|
327
338
|
@property
|
|
328
339
|
@pulumi.getter(name="terminationProtection")
|
|
329
340
|
def termination_protection(self) -> bool:
|
|
@@ -366,6 +377,7 @@ class AwaitableGetFlinkResult(GetFlinkResult):
|
|
|
366
377
|
state=self.state,
|
|
367
378
|
static_ips=self.static_ips,
|
|
368
379
|
tags=self.tags,
|
|
380
|
+
tech_emails=self.tech_emails,
|
|
369
381
|
termination_protection=self.termination_protection)
|
|
370
382
|
|
|
371
383
|
|
|
@@ -423,6 +435,7 @@ def get_flink(project: Optional[str] = None,
|
|
|
423
435
|
state=pulumi.get(__ret__, 'state'),
|
|
424
436
|
static_ips=pulumi.get(__ret__, 'static_ips'),
|
|
425
437
|
tags=pulumi.get(__ret__, 'tags'),
|
|
438
|
+
tech_emails=pulumi.get(__ret__, 'tech_emails'),
|
|
426
439
|
termination_protection=pulumi.get(__ret__, 'termination_protection'))
|
|
427
440
|
|
|
428
441
|
|
pulumi_aiven/get_grafana.py
CHANGED
|
@@ -22,7 +22,7 @@ class GetGrafanaResult:
|
|
|
22
22
|
"""
|
|
23
23
|
A collection of values returned by getGrafana.
|
|
24
24
|
"""
|
|
25
|
-
def __init__(__self__, additional_disk_space=None, cloud_name=None, components=None, disk_space=None, disk_space_cap=None, disk_space_default=None, disk_space_step=None, disk_space_used=None, grafana_user_configs=None, grafanas=None, id=None, maintenance_window_dow=None, maintenance_window_time=None, plan=None, project=None, project_vpc_id=None, service_host=None, service_integrations=None, service_name=None, service_password=None, service_port=None, service_type=None, service_uri=None, service_username=None, state=None, static_ips=None, tags=None, termination_protection=None):
|
|
25
|
+
def __init__(__self__, additional_disk_space=None, cloud_name=None, components=None, disk_space=None, disk_space_cap=None, disk_space_default=None, disk_space_step=None, disk_space_used=None, grafana_user_configs=None, grafanas=None, id=None, maintenance_window_dow=None, maintenance_window_time=None, plan=None, project=None, project_vpc_id=None, service_host=None, service_integrations=None, service_name=None, service_password=None, service_port=None, service_type=None, service_uri=None, service_username=None, state=None, static_ips=None, tags=None, tech_emails=None, termination_protection=None):
|
|
26
26
|
if additional_disk_space and not isinstance(additional_disk_space, str):
|
|
27
27
|
raise TypeError("Expected argument 'additional_disk_space' to be a str")
|
|
28
28
|
pulumi.set(__self__, "additional_disk_space", additional_disk_space)
|
|
@@ -104,6 +104,9 @@ class GetGrafanaResult:
|
|
|
104
104
|
if tags and not isinstance(tags, list):
|
|
105
105
|
raise TypeError("Expected argument 'tags' to be a list")
|
|
106
106
|
pulumi.set(__self__, "tags", tags)
|
|
107
|
+
if tech_emails and not isinstance(tech_emails, list):
|
|
108
|
+
raise TypeError("Expected argument 'tech_emails' to be a list")
|
|
109
|
+
pulumi.set(__self__, "tech_emails", tech_emails)
|
|
107
110
|
if termination_protection and not isinstance(termination_protection, bool):
|
|
108
111
|
raise TypeError("Expected argument 'termination_protection' to be a bool")
|
|
109
112
|
pulumi.set(__self__, "termination_protection", termination_protection)
|
|
@@ -324,6 +327,14 @@ class GetGrafanaResult:
|
|
|
324
327
|
"""
|
|
325
328
|
return pulumi.get(self, "tags")
|
|
326
329
|
|
|
330
|
+
@property
|
|
331
|
+
@pulumi.getter(name="techEmails")
|
|
332
|
+
def tech_emails(self) -> Sequence['outputs.GetGrafanaTechEmailResult']:
|
|
333
|
+
"""
|
|
334
|
+
Defines the email addresses that will receive alerts about upcoming maintenance updates or warnings about service instability.
|
|
335
|
+
"""
|
|
336
|
+
return pulumi.get(self, "tech_emails")
|
|
337
|
+
|
|
327
338
|
@property
|
|
328
339
|
@pulumi.getter(name="terminationProtection")
|
|
329
340
|
def termination_protection(self) -> bool:
|
|
@@ -366,6 +377,7 @@ class AwaitableGetGrafanaResult(GetGrafanaResult):
|
|
|
366
377
|
state=self.state,
|
|
367
378
|
static_ips=self.static_ips,
|
|
368
379
|
tags=self.tags,
|
|
380
|
+
tech_emails=self.tech_emails,
|
|
369
381
|
termination_protection=self.termination_protection)
|
|
370
382
|
|
|
371
383
|
|
|
@@ -423,6 +435,7 @@ def get_grafana(project: Optional[str] = None,
|
|
|
423
435
|
state=pulumi.get(__ret__, 'state'),
|
|
424
436
|
static_ips=pulumi.get(__ret__, 'static_ips'),
|
|
425
437
|
tags=pulumi.get(__ret__, 'tags'),
|
|
438
|
+
tech_emails=pulumi.get(__ret__, 'tech_emails'),
|
|
426
439
|
termination_protection=pulumi.get(__ret__, 'termination_protection'))
|
|
427
440
|
|
|
428
441
|
|
pulumi_aiven/get_influx_db.py
CHANGED
|
@@ -22,7 +22,7 @@ class GetInfluxDbResult:
|
|
|
22
22
|
"""
|
|
23
23
|
A collection of values returned by getInfluxDb.
|
|
24
24
|
"""
|
|
25
|
-
def __init__(__self__, additional_disk_space=None, cloud_name=None, components=None, disk_space=None, disk_space_cap=None, disk_space_default=None, disk_space_step=None, disk_space_used=None, id=None, influxdb_user_configs=None, influxdbs=None, maintenance_window_dow=None, maintenance_window_time=None, plan=None, project=None, project_vpc_id=None, service_host=None, service_integrations=None, service_name=None, service_password=None, service_port=None, service_type=None, service_uri=None, service_username=None, state=None, static_ips=None, tags=None, termination_protection=None):
|
|
25
|
+
def __init__(__self__, additional_disk_space=None, cloud_name=None, components=None, disk_space=None, disk_space_cap=None, disk_space_default=None, disk_space_step=None, disk_space_used=None, id=None, influxdb_user_configs=None, influxdbs=None, maintenance_window_dow=None, maintenance_window_time=None, plan=None, project=None, project_vpc_id=None, service_host=None, service_integrations=None, service_name=None, service_password=None, service_port=None, service_type=None, service_uri=None, service_username=None, state=None, static_ips=None, tags=None, tech_emails=None, termination_protection=None):
|
|
26
26
|
if additional_disk_space and not isinstance(additional_disk_space, str):
|
|
27
27
|
raise TypeError("Expected argument 'additional_disk_space' to be a str")
|
|
28
28
|
pulumi.set(__self__, "additional_disk_space", additional_disk_space)
|
|
@@ -104,6 +104,9 @@ class GetInfluxDbResult:
|
|
|
104
104
|
if tags and not isinstance(tags, list):
|
|
105
105
|
raise TypeError("Expected argument 'tags' to be a list")
|
|
106
106
|
pulumi.set(__self__, "tags", tags)
|
|
107
|
+
if tech_emails and not isinstance(tech_emails, list):
|
|
108
|
+
raise TypeError("Expected argument 'tech_emails' to be a list")
|
|
109
|
+
pulumi.set(__self__, "tech_emails", tech_emails)
|
|
107
110
|
if termination_protection and not isinstance(termination_protection, bool):
|
|
108
111
|
raise TypeError("Expected argument 'termination_protection' to be a bool")
|
|
109
112
|
pulumi.set(__self__, "termination_protection", termination_protection)
|
|
@@ -324,6 +327,14 @@ class GetInfluxDbResult:
|
|
|
324
327
|
"""
|
|
325
328
|
return pulumi.get(self, "tags")
|
|
326
329
|
|
|
330
|
+
@property
|
|
331
|
+
@pulumi.getter(name="techEmails")
|
|
332
|
+
def tech_emails(self) -> Sequence['outputs.GetInfluxDbTechEmailResult']:
|
|
333
|
+
"""
|
|
334
|
+
Defines the email addresses that will receive alerts about upcoming maintenance updates or warnings about service instability.
|
|
335
|
+
"""
|
|
336
|
+
return pulumi.get(self, "tech_emails")
|
|
337
|
+
|
|
327
338
|
@property
|
|
328
339
|
@pulumi.getter(name="terminationProtection")
|
|
329
340
|
def termination_protection(self) -> bool:
|
|
@@ -366,6 +377,7 @@ class AwaitableGetInfluxDbResult(GetInfluxDbResult):
|
|
|
366
377
|
state=self.state,
|
|
367
378
|
static_ips=self.static_ips,
|
|
368
379
|
tags=self.tags,
|
|
380
|
+
tech_emails=self.tech_emails,
|
|
369
381
|
termination_protection=self.termination_protection)
|
|
370
382
|
|
|
371
383
|
|
|
@@ -423,6 +435,7 @@ def get_influx_db(project: Optional[str] = None,
|
|
|
423
435
|
state=pulumi.get(__ret__, 'state'),
|
|
424
436
|
static_ips=pulumi.get(__ret__, 'static_ips'),
|
|
425
437
|
tags=pulumi.get(__ret__, 'tags'),
|
|
438
|
+
tech_emails=pulumi.get(__ret__, 'tech_emails'),
|
|
426
439
|
termination_protection=pulumi.get(__ret__, 'termination_protection'))
|
|
427
440
|
|
|
428
441
|
|
pulumi_aiven/get_kafka.py
CHANGED
|
@@ -22,7 +22,7 @@ class GetKafkaResult:
|
|
|
22
22
|
"""
|
|
23
23
|
A collection of values returned by getKafka.
|
|
24
24
|
"""
|
|
25
|
-
def __init__(__self__, additional_disk_space=None, cloud_name=None, components=None, default_acl=None, disk_space=None, disk_space_cap=None, disk_space_default=None, disk_space_step=None, disk_space_used=None, id=None, kafka_user_configs=None, kafkas=None, karapace=None, maintenance_window_dow=None, maintenance_window_time=None, plan=None, project=None, project_vpc_id=None, service_host=None, service_integrations=None, service_name=None, service_password=None, service_port=None, service_type=None, service_uri=None, service_username=None, state=None, static_ips=None, tags=None, termination_protection=None):
|
|
25
|
+
def __init__(__self__, additional_disk_space=None, cloud_name=None, components=None, default_acl=None, disk_space=None, disk_space_cap=None, disk_space_default=None, disk_space_step=None, disk_space_used=None, id=None, kafka_user_configs=None, kafkas=None, karapace=None, maintenance_window_dow=None, maintenance_window_time=None, plan=None, project=None, project_vpc_id=None, service_host=None, service_integrations=None, service_name=None, service_password=None, service_port=None, service_type=None, service_uri=None, service_username=None, state=None, static_ips=None, tags=None, tech_emails=None, termination_protection=None):
|
|
26
26
|
if additional_disk_space and not isinstance(additional_disk_space, str):
|
|
27
27
|
raise TypeError("Expected argument 'additional_disk_space' to be a str")
|
|
28
28
|
pulumi.set(__self__, "additional_disk_space", additional_disk_space)
|
|
@@ -110,6 +110,9 @@ class GetKafkaResult:
|
|
|
110
110
|
if tags and not isinstance(tags, list):
|
|
111
111
|
raise TypeError("Expected argument 'tags' to be a list")
|
|
112
112
|
pulumi.set(__self__, "tags", tags)
|
|
113
|
+
if tech_emails and not isinstance(tech_emails, list):
|
|
114
|
+
raise TypeError("Expected argument 'tech_emails' to be a list")
|
|
115
|
+
pulumi.set(__self__, "tech_emails", tech_emails)
|
|
113
116
|
if termination_protection and not isinstance(termination_protection, bool):
|
|
114
117
|
raise TypeError("Expected argument 'termination_protection' to be a bool")
|
|
115
118
|
pulumi.set(__self__, "termination_protection", termination_protection)
|
|
@@ -346,6 +349,14 @@ class GetKafkaResult:
|
|
|
346
349
|
"""
|
|
347
350
|
return pulumi.get(self, "tags")
|
|
348
351
|
|
|
352
|
+
@property
|
|
353
|
+
@pulumi.getter(name="techEmails")
|
|
354
|
+
def tech_emails(self) -> Sequence['outputs.GetKafkaTechEmailResult']:
|
|
355
|
+
"""
|
|
356
|
+
Defines the email addresses that will receive alerts about upcoming maintenance updates or warnings about service instability.
|
|
357
|
+
"""
|
|
358
|
+
return pulumi.get(self, "tech_emails")
|
|
359
|
+
|
|
349
360
|
@property
|
|
350
361
|
@pulumi.getter(name="terminationProtection")
|
|
351
362
|
def termination_protection(self) -> bool:
|
|
@@ -390,6 +401,7 @@ class AwaitableGetKafkaResult(GetKafkaResult):
|
|
|
390
401
|
state=self.state,
|
|
391
402
|
static_ips=self.static_ips,
|
|
392
403
|
tags=self.tags,
|
|
404
|
+
tech_emails=self.tech_emails,
|
|
393
405
|
termination_protection=self.termination_protection)
|
|
394
406
|
|
|
395
407
|
|
|
@@ -449,6 +461,7 @@ def get_kafka(project: Optional[str] = None,
|
|
|
449
461
|
state=pulumi.get(__ret__, 'state'),
|
|
450
462
|
static_ips=pulumi.get(__ret__, 'static_ips'),
|
|
451
463
|
tags=pulumi.get(__ret__, 'tags'),
|
|
464
|
+
tech_emails=pulumi.get(__ret__, 'tech_emails'),
|
|
452
465
|
termination_protection=pulumi.get(__ret__, 'termination_protection'))
|
|
453
466
|
|
|
454
467
|
|
|
@@ -22,7 +22,7 @@ class GetKafkaConnectResult:
|
|
|
22
22
|
"""
|
|
23
23
|
A collection of values returned by getKafkaConnect.
|
|
24
24
|
"""
|
|
25
|
-
def __init__(__self__, additional_disk_space=None, cloud_name=None, components=None, disk_space=None, disk_space_cap=None, disk_space_default=None, disk_space_step=None, disk_space_used=None, id=None, kafka_connect_user_configs=None, kafka_connects=None, maintenance_window_dow=None, maintenance_window_time=None, plan=None, project=None, project_vpc_id=None, service_host=None, service_integrations=None, service_name=None, service_password=None, service_port=None, service_type=None, service_uri=None, service_username=None, state=None, static_ips=None, tags=None, termination_protection=None):
|
|
25
|
+
def __init__(__self__, additional_disk_space=None, cloud_name=None, components=None, disk_space=None, disk_space_cap=None, disk_space_default=None, disk_space_step=None, disk_space_used=None, id=None, kafka_connect_user_configs=None, kafka_connects=None, maintenance_window_dow=None, maintenance_window_time=None, plan=None, project=None, project_vpc_id=None, service_host=None, service_integrations=None, service_name=None, service_password=None, service_port=None, service_type=None, service_uri=None, service_username=None, state=None, static_ips=None, tags=None, tech_emails=None, termination_protection=None):
|
|
26
26
|
if additional_disk_space and not isinstance(additional_disk_space, str):
|
|
27
27
|
raise TypeError("Expected argument 'additional_disk_space' to be a str")
|
|
28
28
|
pulumi.set(__self__, "additional_disk_space", additional_disk_space)
|
|
@@ -104,6 +104,9 @@ class GetKafkaConnectResult:
|
|
|
104
104
|
if tags and not isinstance(tags, list):
|
|
105
105
|
raise TypeError("Expected argument 'tags' to be a list")
|
|
106
106
|
pulumi.set(__self__, "tags", tags)
|
|
107
|
+
if tech_emails and not isinstance(tech_emails, list):
|
|
108
|
+
raise TypeError("Expected argument 'tech_emails' to be a list")
|
|
109
|
+
pulumi.set(__self__, "tech_emails", tech_emails)
|
|
107
110
|
if termination_protection and not isinstance(termination_protection, bool):
|
|
108
111
|
raise TypeError("Expected argument 'termination_protection' to be a bool")
|
|
109
112
|
pulumi.set(__self__, "termination_protection", termination_protection)
|
|
@@ -324,6 +327,14 @@ class GetKafkaConnectResult:
|
|
|
324
327
|
"""
|
|
325
328
|
return pulumi.get(self, "tags")
|
|
326
329
|
|
|
330
|
+
@property
|
|
331
|
+
@pulumi.getter(name="techEmails")
|
|
332
|
+
def tech_emails(self) -> Sequence['outputs.GetKafkaConnectTechEmailResult']:
|
|
333
|
+
"""
|
|
334
|
+
Defines the email addresses that will receive alerts about upcoming maintenance updates or warnings about service instability.
|
|
335
|
+
"""
|
|
336
|
+
return pulumi.get(self, "tech_emails")
|
|
337
|
+
|
|
327
338
|
@property
|
|
328
339
|
@pulumi.getter(name="terminationProtection")
|
|
329
340
|
def termination_protection(self) -> bool:
|
|
@@ -366,6 +377,7 @@ class AwaitableGetKafkaConnectResult(GetKafkaConnectResult):
|
|
|
366
377
|
state=self.state,
|
|
367
378
|
static_ips=self.static_ips,
|
|
368
379
|
tags=self.tags,
|
|
380
|
+
tech_emails=self.tech_emails,
|
|
369
381
|
termination_protection=self.termination_protection)
|
|
370
382
|
|
|
371
383
|
|
|
@@ -423,6 +435,7 @@ def get_kafka_connect(project: Optional[str] = None,
|
|
|
423
435
|
state=pulumi.get(__ret__, 'state'),
|
|
424
436
|
static_ips=pulumi.get(__ret__, 'static_ips'),
|
|
425
437
|
tags=pulumi.get(__ret__, 'tags'),
|
|
438
|
+
tech_emails=pulumi.get(__ret__, 'tech_emails'),
|
|
426
439
|
termination_protection=pulumi.get(__ret__, 'termination_protection'))
|
|
427
440
|
|
|
428
441
|
|