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.
- pulumi_aiven/_inputs.py +1660 -35
- pulumi_aiven/account_team_member.py +7 -7
- pulumi_aiven/cassandra.py +47 -0
- pulumi_aiven/clickhouse.py +47 -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.3.dist-info → pulumi_aiven-6.8.0.dist-info}/METADATA +2 -2
- {pulumi_aiven-6.7.3.dist-info → pulumi_aiven-6.8.0.dist-info}/RECORD +49 -49
- {pulumi_aiven-6.7.3.dist-info → pulumi_aiven-6.8.0.dist-info}/WHEEL +0 -0
- {pulumi_aiven-6.7.3.dist-info → pulumi_aiven-6.8.0.dist-info}/top_level.txt +0 -0
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
|
|
|
@@ -22,7 +22,7 @@ class GetKafkaMirrorMakerResult:
|
|
|
22
22
|
"""
|
|
23
23
|
A collection of values returned by getKafkaMirrorMaker.
|
|
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_mirrormaker_user_configs=None, kafka_mirrormakers=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_mirrormaker_user_configs=None, kafka_mirrormakers=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 GetKafkaMirrorMakerResult:
|
|
|
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 GetKafkaMirrorMakerResult:
|
|
|
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.GetKafkaMirrorMakerTechEmailResult']:
|
|
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 AwaitableGetKafkaMirrorMakerResult(GetKafkaMirrorMakerResult):
|
|
|
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_mirror_maker(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
|
|
|
@@ -22,7 +22,7 @@ class GetM3AggregatorResult:
|
|
|
22
22
|
"""
|
|
23
23
|
A collection of values returned by getM3Aggregator.
|
|
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, m3aggregator_user_configs=None, m3aggregators=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, m3aggregator_user_configs=None, m3aggregators=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 GetM3AggregatorResult:
|
|
|
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 GetM3AggregatorResult:
|
|
|
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.GetM3AggregatorTechEmailResult']:
|
|
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 AwaitableGetM3AggregatorResult(GetM3AggregatorResult):
|
|
|
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_m3_aggregator(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_m3_db.py
CHANGED
|
@@ -22,7 +22,7 @@ class GetM3DbResult:
|
|
|
22
22
|
"""
|
|
23
23
|
A collection of values returned by getM3Db.
|
|
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, m3db_user_configs=None, m3dbs=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, m3db_user_configs=None, m3dbs=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 GetM3DbResult:
|
|
|
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 GetM3DbResult:
|
|
|
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.GetM3DbTechEmailResult']:
|
|
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 AwaitableGetM3DbResult(GetM3DbResult):
|
|
|
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_m3_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
|
|
|
@@ -21,7 +21,10 @@ class GetMirrorMakerReplicationFlowResult:
|
|
|
21
21
|
"""
|
|
22
22
|
A collection of values returned by getMirrorMakerReplicationFlow.
|
|
23
23
|
"""
|
|
24
|
-
def __init__(__self__, emit_heartbeats_enabled=None, enable=None, id=None, offset_syncs_topic_location=None, project=None, replication_policy_class=None, service_name=None, source_cluster=None, sync_group_offsets_enabled=None, sync_group_offsets_interval_seconds=None, target_cluster=None, topics=None, topics_blacklists=None):
|
|
24
|
+
def __init__(__self__, emit_backward_heartbeats_enabled=None, emit_heartbeats_enabled=None, enable=None, id=None, offset_syncs_topic_location=None, project=None, replication_policy_class=None, service_name=None, source_cluster=None, sync_group_offsets_enabled=None, sync_group_offsets_interval_seconds=None, target_cluster=None, topics=None, topics_blacklists=None):
|
|
25
|
+
if emit_backward_heartbeats_enabled and not isinstance(emit_backward_heartbeats_enabled, bool):
|
|
26
|
+
raise TypeError("Expected argument 'emit_backward_heartbeats_enabled' to be a bool")
|
|
27
|
+
pulumi.set(__self__, "emit_backward_heartbeats_enabled", emit_backward_heartbeats_enabled)
|
|
25
28
|
if emit_heartbeats_enabled and not isinstance(emit_heartbeats_enabled, bool):
|
|
26
29
|
raise TypeError("Expected argument 'emit_heartbeats_enabled' to be a bool")
|
|
27
30
|
pulumi.set(__self__, "emit_heartbeats_enabled", emit_heartbeats_enabled)
|
|
@@ -62,11 +65,19 @@ class GetMirrorMakerReplicationFlowResult:
|
|
|
62
65
|
raise TypeError("Expected argument 'topics_blacklists' to be a list")
|
|
63
66
|
pulumi.set(__self__, "topics_blacklists", topics_blacklists)
|
|
64
67
|
|
|
68
|
+
@property
|
|
69
|
+
@pulumi.getter(name="emitBackwardHeartbeatsEnabled")
|
|
70
|
+
def emit_backward_heartbeats_enabled(self) -> bool:
|
|
71
|
+
"""
|
|
72
|
+
Whether to emit heartbeats to the direction opposite to the flow, i.e. to the source cluster. The default value is `false`.
|
|
73
|
+
"""
|
|
74
|
+
return pulumi.get(self, "emit_backward_heartbeats_enabled")
|
|
75
|
+
|
|
65
76
|
@property
|
|
66
77
|
@pulumi.getter(name="emitHeartbeatsEnabled")
|
|
67
78
|
def emit_heartbeats_enabled(self) -> bool:
|
|
68
79
|
"""
|
|
69
|
-
|
|
80
|
+
Whether to emit heartbeats to the target cluster. The default value is `false`.
|
|
70
81
|
"""
|
|
71
82
|
return pulumi.get(self, "emit_heartbeats_enabled")
|
|
72
83
|
|
|
@@ -173,6 +184,7 @@ class AwaitableGetMirrorMakerReplicationFlowResult(GetMirrorMakerReplicationFlow
|
|
|
173
184
|
if False:
|
|
174
185
|
yield self
|
|
175
186
|
return GetMirrorMakerReplicationFlowResult(
|
|
187
|
+
emit_backward_heartbeats_enabled=self.emit_backward_heartbeats_enabled,
|
|
176
188
|
emit_heartbeats_enabled=self.emit_heartbeats_enabled,
|
|
177
189
|
enable=self.enable,
|
|
178
190
|
id=self.id,
|
|
@@ -223,6 +235,7 @@ def get_mirror_maker_replication_flow(project: Optional[str] = None,
|
|
|
223
235
|
__ret__ = pulumi.runtime.invoke('aiven:index/getMirrorMakerReplicationFlow:getMirrorMakerReplicationFlow', __args__, opts=opts, typ=GetMirrorMakerReplicationFlowResult).value
|
|
224
236
|
|
|
225
237
|
return AwaitableGetMirrorMakerReplicationFlowResult(
|
|
238
|
+
emit_backward_heartbeats_enabled=pulumi.get(__ret__, 'emit_backward_heartbeats_enabled'),
|
|
226
239
|
emit_heartbeats_enabled=pulumi.get(__ret__, 'emit_heartbeats_enabled'),
|
|
227
240
|
enable=pulumi.get(__ret__, 'enable'),
|
|
228
241
|
id=pulumi.get(__ret__, 'id'),
|