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
|
@@ -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'),
|
pulumi_aiven/get_my_sql.py
CHANGED
|
@@ -22,7 +22,7 @@ class GetMySqlResult:
|
|
|
22
22
|
"""
|
|
23
23
|
A collection of values returned by getMySql.
|
|
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, maintenance_window_dow=None, maintenance_window_time=None, mysql_user_configs=None, mysqls=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, maintenance_window_dow=None, maintenance_window_time=None, mysql_user_configs=None, mysqls=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 GetMySqlResult:
|
|
|
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 GetMySqlResult:
|
|
|
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.GetMySqlTechEmailResult']:
|
|
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 AwaitableGetMySqlResult(GetMySqlResult):
|
|
|
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_my_sql(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_open_search.py
CHANGED
|
@@ -22,7 +22,7 @@ class GetOpenSearchResult:
|
|
|
22
22
|
"""
|
|
23
23
|
A collection of values returned by getOpenSearch.
|
|
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, maintenance_window_dow=None, maintenance_window_time=None, opensearch_user_configs=None, opensearches=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, maintenance_window_dow=None, maintenance_window_time=None, opensearch_user_configs=None, opensearches=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 GetOpenSearchResult:
|
|
|
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 GetOpenSearchResult:
|
|
|
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.GetOpenSearchTechEmailResult']:
|
|
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 AwaitableGetOpenSearchResult(GetOpenSearchResult):
|
|
|
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_open_search(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
|
|
|
@@ -85,7 +85,7 @@ class GetOrganizationUserResult:
|
|
|
85
85
|
@pulumi.getter(name="userEmail")
|
|
86
86
|
def user_email(self) -> str:
|
|
87
87
|
"""
|
|
88
|
-
This is a user email address that first will be invited, and after accepting an invitation, they become a member of the organization. This property cannot be changed, doing so forces recreation of the resource.
|
|
88
|
+
This is a user email address that first will be invited, and after accepting an invitation, they become a member of the organization. Should be lowercase. This property cannot be changed, doing so forces recreation of the resource.
|
|
89
89
|
"""
|
|
90
90
|
return pulumi.get(self, "user_email")
|
|
91
91
|
|
|
@@ -112,7 +112,7 @@ def get_organization_user(organization_id: Optional[str] = None,
|
|
|
112
112
|
|
|
113
113
|
|
|
114
114
|
:param str organization_id: The unique organization ID. This property cannot be changed, doing so forces recreation of the resource.
|
|
115
|
-
:param str user_email: This is a user email address that first will be invited, and after accepting an invitation, they become a member of the organization. This property cannot be changed, doing so forces recreation of the resource.
|
|
115
|
+
:param str user_email: This is a user email address that first will be invited, and after accepting an invitation, they become a member of the organization. Should be lowercase. This property cannot be changed, doing so forces recreation of the resource.
|
|
116
116
|
"""
|
|
117
117
|
__args__ = dict()
|
|
118
118
|
__args__['organizationId'] = organization_id
|
|
@@ -138,6 +138,6 @@ def get_organization_user_output(organization_id: Optional[pulumi.Input[str]] =
|
|
|
138
138
|
|
|
139
139
|
|
|
140
140
|
:param str organization_id: The unique organization ID. This property cannot be changed, doing so forces recreation of the resource.
|
|
141
|
-
:param str user_email: This is a user email address that first will be invited, and after accepting an invitation, they become a member of the organization. This property cannot be changed, doing so forces recreation of the resource.
|
|
141
|
+
:param str user_email: This is a user email address that first will be invited, and after accepting an invitation, they become a member of the organization. Should be lowercase. This property cannot be changed, doing so forces recreation of the resource.
|
|
142
142
|
"""
|
|
143
143
|
...
|
|
@@ -21,13 +21,16 @@ class GetOrganizationUserGroupResult:
|
|
|
21
21
|
"""
|
|
22
22
|
A collection of values returned by getOrganizationUserGroup.
|
|
23
23
|
"""
|
|
24
|
-
def __init__(__self__, create_time=None, description=None, id=None, name=None, organization_id=None, update_time=None):
|
|
24
|
+
def __init__(__self__, create_time=None, description=None, group_id=None, id=None, name=None, organization_id=None, update_time=None):
|
|
25
25
|
if create_time and not isinstance(create_time, str):
|
|
26
26
|
raise TypeError("Expected argument 'create_time' to be a str")
|
|
27
27
|
pulumi.set(__self__, "create_time", create_time)
|
|
28
28
|
if description and not isinstance(description, str):
|
|
29
29
|
raise TypeError("Expected argument 'description' to be a str")
|
|
30
30
|
pulumi.set(__self__, "description", description)
|
|
31
|
+
if group_id and not isinstance(group_id, str):
|
|
32
|
+
raise TypeError("Expected argument 'group_id' to be a str")
|
|
33
|
+
pulumi.set(__self__, "group_id", group_id)
|
|
31
34
|
if id and not isinstance(id, str):
|
|
32
35
|
raise TypeError("Expected argument 'id' to be a str")
|
|
33
36
|
pulumi.set(__self__, "id", id)
|
|
@@ -57,6 +60,14 @@ class GetOrganizationUserGroupResult:
|
|
|
57
60
|
"""
|
|
58
61
|
return pulumi.get(self, "description")
|
|
59
62
|
|
|
63
|
+
@property
|
|
64
|
+
@pulumi.getter(name="groupId")
|
|
65
|
+
def group_id(self) -> str:
|
|
66
|
+
"""
|
|
67
|
+
The unique organization user group ID
|
|
68
|
+
"""
|
|
69
|
+
return pulumi.get(self, "group_id")
|
|
70
|
+
|
|
60
71
|
@property
|
|
61
72
|
@pulumi.getter
|
|
62
73
|
def id(self) -> str:
|
|
@@ -98,6 +109,7 @@ class AwaitableGetOrganizationUserGroupResult(GetOrganizationUserGroupResult):
|
|
|
98
109
|
return GetOrganizationUserGroupResult(
|
|
99
110
|
create_time=self.create_time,
|
|
100
111
|
description=self.description,
|
|
112
|
+
group_id=self.group_id,
|
|
101
113
|
id=self.id,
|
|
102
114
|
name=self.name,
|
|
103
115
|
organization_id=self.organization_id,
|
|
@@ -123,6 +135,7 @@ def get_organization_user_group(name: Optional[str] = None,
|
|
|
123
135
|
return AwaitableGetOrganizationUserGroupResult(
|
|
124
136
|
create_time=pulumi.get(__ret__, 'create_time'),
|
|
125
137
|
description=pulumi.get(__ret__, 'description'),
|
|
138
|
+
group_id=pulumi.get(__ret__, 'group_id'),
|
|
126
139
|
id=pulumi.get(__ret__, 'id'),
|
|
127
140
|
name=pulumi.get(__ret__, 'name'),
|
|
128
141
|
organization_id=pulumi.get(__ret__, 'organization_id'),
|
pulumi_aiven/get_pg.py
CHANGED
|
@@ -22,7 +22,7 @@ class GetPgResult:
|
|
|
22
22
|
"""
|
|
23
23
|
A collection of values returned by getPg.
|
|
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, maintenance_window_dow=None, maintenance_window_time=None, pg_user_configs=None, pgs=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, maintenance_window_dow=None, maintenance_window_time=None, pg_user_configs=None, pgs=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 GetPgResult:
|
|
|
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 GetPgResult:
|
|
|
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.GetPgTechEmailResult']:
|
|
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 AwaitableGetPgResult(GetPgResult):
|
|
|
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_pg(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_project.py
CHANGED
|
@@ -177,7 +177,7 @@ class GetProjectResult:
|
|
|
177
177
|
@pulumi.getter(name="technicalEmails")
|
|
178
178
|
def technical_emails(self) -> Sequence[str]:
|
|
179
179
|
"""
|
|
180
|
-
Defines the email addresses that will receive alerts about upcoming maintenance updates or warnings about service instability. It is
|
|
180
|
+
Defines the email addresses that will receive alerts about upcoming maintenance updates or warnings about service instability. It is a good practice to keep this up-to-date to be aware of any potential issues with your project.
|
|
181
181
|
"""
|
|
182
182
|
return pulumi.get(self, "technical_emails")
|
|
183
183
|
|
pulumi_aiven/get_project_user.py
CHANGED
|
@@ -50,7 +50,7 @@ class GetProjectUserResult:
|
|
|
50
50
|
@pulumi.getter
|
|
51
51
|
def email(self) -> str:
|
|
52
52
|
"""
|
|
53
|
-
Email address of the user. This property cannot be changed, doing so forces recreation of the resource.
|
|
53
|
+
Email address of the user. Should be lowercase. This property cannot be changed, doing so forces recreation of the resource.
|
|
54
54
|
"""
|
|
55
55
|
return pulumi.get(self, "email")
|
|
56
56
|
|
|
@@ -109,7 +109,7 @@ def get_project_user(email: Optional[str] = None,
|
|
|
109
109
|
```
|
|
110
110
|
|
|
111
111
|
|
|
112
|
-
:param str email: Email address of the user. This property cannot be changed, doing so forces recreation of the resource.
|
|
112
|
+
:param str email: Email address of the user. Should be lowercase. This property cannot be changed, doing so forces recreation of the resource.
|
|
113
113
|
:param str project: Identifies the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. This property cannot be changed, doing so forces recreation of the resource.
|
|
114
114
|
"""
|
|
115
115
|
__args__ = dict()
|
|
@@ -144,7 +144,7 @@ def get_project_user_output(email: Optional[pulumi.Input[str]] = None,
|
|
|
144
144
|
```
|
|
145
145
|
|
|
146
146
|
|
|
147
|
-
:param str email: Email address of the user. This property cannot be changed, doing so forces recreation of the resource.
|
|
147
|
+
:param str email: Email address of the user. Should be lowercase. This property cannot be changed, doing so forces recreation of the resource.
|
|
148
148
|
:param str project: Identifies the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. This property cannot be changed, doing so forces recreation of the resource.
|
|
149
149
|
"""
|
|
150
150
|
...
|
pulumi_aiven/get_redis.py
CHANGED
|
@@ -22,7 +22,7 @@ class GetRedisResult:
|
|
|
22
22
|
"""
|
|
23
23
|
A collection of values returned by getRedis.
|
|
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, maintenance_window_dow=None, maintenance_window_time=None, plan=None, project=None, project_vpc_id=None, redis=None, redis_user_configs=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, maintenance_window_dow=None, maintenance_window_time=None, plan=None, project=None, project_vpc_id=None, redis=None, redis_user_configs=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 GetRedisResult:
|
|
|
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 GetRedisResult:
|
|
|
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.GetRedisTechEmailResult']:
|
|
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 AwaitableGetRedisResult(GetRedisResult):
|
|
|
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_redis(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 GetServiceIntegrationEndpointResult:
|
|
|
22
22
|
"""
|
|
23
23
|
A collection of values returned by getServiceIntegrationEndpoint.
|
|
24
24
|
"""
|
|
25
|
-
def __init__(__self__, datadog_user_configs=None, endpoint_config=None, endpoint_name=None, endpoint_type=None, external_aws_cloudwatch_logs_user_configs=None, external_aws_cloudwatch_metrics_user_configs=None, external_elasticsearch_logs_user_configs=None, external_google_cloud_logging_user_configs=None, external_kafka_user_configs=None, external_opensearch_logs_user_configs=None, external_schema_registry_user_configs=None, id=None, jolokia_user_configs=None, project=None, prometheus_user_configs=None, rsyslog_user_configs=None):
|
|
25
|
+
def __init__(__self__, datadog_user_configs=None, endpoint_config=None, endpoint_name=None, endpoint_type=None, external_aws_cloudwatch_logs_user_configs=None, external_aws_cloudwatch_metrics_user_configs=None, external_elasticsearch_logs_user_configs=None, external_google_cloud_bigqueries=None, external_google_cloud_logging_user_configs=None, external_kafka_user_configs=None, external_opensearch_logs_user_configs=None, external_postgresqls=None, external_schema_registry_user_configs=None, id=None, jolokia_user_configs=None, project=None, prometheus_user_configs=None, rsyslog_user_configs=None):
|
|
26
26
|
if datadog_user_configs and not isinstance(datadog_user_configs, list):
|
|
27
27
|
raise TypeError("Expected argument 'datadog_user_configs' to be a list")
|
|
28
28
|
pulumi.set(__self__, "datadog_user_configs", datadog_user_configs)
|
|
@@ -44,6 +44,9 @@ class GetServiceIntegrationEndpointResult:
|
|
|
44
44
|
if external_elasticsearch_logs_user_configs and not isinstance(external_elasticsearch_logs_user_configs, list):
|
|
45
45
|
raise TypeError("Expected argument 'external_elasticsearch_logs_user_configs' to be a list")
|
|
46
46
|
pulumi.set(__self__, "external_elasticsearch_logs_user_configs", external_elasticsearch_logs_user_configs)
|
|
47
|
+
if external_google_cloud_bigqueries and not isinstance(external_google_cloud_bigqueries, list):
|
|
48
|
+
raise TypeError("Expected argument 'external_google_cloud_bigqueries' to be a list")
|
|
49
|
+
pulumi.set(__self__, "external_google_cloud_bigqueries", external_google_cloud_bigqueries)
|
|
47
50
|
if external_google_cloud_logging_user_configs and not isinstance(external_google_cloud_logging_user_configs, list):
|
|
48
51
|
raise TypeError("Expected argument 'external_google_cloud_logging_user_configs' to be a list")
|
|
49
52
|
pulumi.set(__self__, "external_google_cloud_logging_user_configs", external_google_cloud_logging_user_configs)
|
|
@@ -53,6 +56,9 @@ class GetServiceIntegrationEndpointResult:
|
|
|
53
56
|
if external_opensearch_logs_user_configs and not isinstance(external_opensearch_logs_user_configs, list):
|
|
54
57
|
raise TypeError("Expected argument 'external_opensearch_logs_user_configs' to be a list")
|
|
55
58
|
pulumi.set(__self__, "external_opensearch_logs_user_configs", external_opensearch_logs_user_configs)
|
|
59
|
+
if external_postgresqls and not isinstance(external_postgresqls, list):
|
|
60
|
+
raise TypeError("Expected argument 'external_postgresqls' to be a list")
|
|
61
|
+
pulumi.set(__self__, "external_postgresqls", external_postgresqls)
|
|
56
62
|
if external_schema_registry_user_configs and not isinstance(external_schema_registry_user_configs, list):
|
|
57
63
|
raise TypeError("Expected argument 'external_schema_registry_user_configs' to be a list")
|
|
58
64
|
pulumi.set(__self__, "external_schema_registry_user_configs", external_schema_registry_user_configs)
|
|
@@ -100,7 +106,7 @@ class GetServiceIntegrationEndpointResult:
|
|
|
100
106
|
@pulumi.getter(name="endpointType")
|
|
101
107
|
def endpoint_type(self) -> str:
|
|
102
108
|
"""
|
|
103
|
-
Type of the service integration endpoint. Possible values: `datadog`, `prometheus`, `rsyslog`, `external_elasticsearch_logs`, `external_opensearch_logs`, `external_aws_cloudwatch_logs`, `external_google_cloud_logging`, `external_kafka`, `jolokia`, `external_schema_registry`, `external_aws_cloudwatch_metrics`
|
|
109
|
+
Type of the service integration endpoint. Possible values: `datadog`, `prometheus`, `rsyslog`, `external_elasticsearch_logs`, `external_opensearch_logs`, `external_aws_cloudwatch_logs`, `external_google_cloud_logging`, `external_kafka`, `jolokia`, `external_schema_registry`, `external_aws_cloudwatch_metrics`, `external_google_cloud_bigquery`, `external_postgresql`
|
|
104
110
|
"""
|
|
105
111
|
return pulumi.get(self, "endpoint_type")
|
|
106
112
|
|
|
@@ -128,6 +134,14 @@ class GetServiceIntegrationEndpointResult:
|
|
|
128
134
|
"""
|
|
129
135
|
return pulumi.get(self, "external_elasticsearch_logs_user_configs")
|
|
130
136
|
|
|
137
|
+
@property
|
|
138
|
+
@pulumi.getter(name="externalGoogleCloudBigqueries")
|
|
139
|
+
def external_google_cloud_bigqueries(self) -> Sequence['outputs.GetServiceIntegrationEndpointExternalGoogleCloudBigqueryResult']:
|
|
140
|
+
"""
|
|
141
|
+
ExternalGoogleCloudBigquery user configurable settings
|
|
142
|
+
"""
|
|
143
|
+
return pulumi.get(self, "external_google_cloud_bigqueries")
|
|
144
|
+
|
|
131
145
|
@property
|
|
132
146
|
@pulumi.getter(name="externalGoogleCloudLoggingUserConfigs")
|
|
133
147
|
def external_google_cloud_logging_user_configs(self) -> Sequence['outputs.GetServiceIntegrationEndpointExternalGoogleCloudLoggingUserConfigResult']:
|
|
@@ -152,6 +166,14 @@ class GetServiceIntegrationEndpointResult:
|
|
|
152
166
|
"""
|
|
153
167
|
return pulumi.get(self, "external_opensearch_logs_user_configs")
|
|
154
168
|
|
|
169
|
+
@property
|
|
170
|
+
@pulumi.getter(name="externalPostgresqls")
|
|
171
|
+
def external_postgresqls(self) -> Sequence['outputs.GetServiceIntegrationEndpointExternalPostgresqlResult']:
|
|
172
|
+
"""
|
|
173
|
+
ExternalPostgresql user configurable settings
|
|
174
|
+
"""
|
|
175
|
+
return pulumi.get(self, "external_postgresqls")
|
|
176
|
+
|
|
155
177
|
@property
|
|
156
178
|
@pulumi.getter(name="externalSchemaRegistryUserConfigs")
|
|
157
179
|
def external_schema_registry_user_configs(self) -> Sequence['outputs.GetServiceIntegrationEndpointExternalSchemaRegistryUserConfigResult']:
|
|
@@ -214,9 +236,11 @@ class AwaitableGetServiceIntegrationEndpointResult(GetServiceIntegrationEndpoint
|
|
|
214
236
|
external_aws_cloudwatch_logs_user_configs=self.external_aws_cloudwatch_logs_user_configs,
|
|
215
237
|
external_aws_cloudwatch_metrics_user_configs=self.external_aws_cloudwatch_metrics_user_configs,
|
|
216
238
|
external_elasticsearch_logs_user_configs=self.external_elasticsearch_logs_user_configs,
|
|
239
|
+
external_google_cloud_bigqueries=self.external_google_cloud_bigqueries,
|
|
217
240
|
external_google_cloud_logging_user_configs=self.external_google_cloud_logging_user_configs,
|
|
218
241
|
external_kafka_user_configs=self.external_kafka_user_configs,
|
|
219
242
|
external_opensearch_logs_user_configs=self.external_opensearch_logs_user_configs,
|
|
243
|
+
external_postgresqls=self.external_postgresqls,
|
|
220
244
|
external_schema_registry_user_configs=self.external_schema_registry_user_configs,
|
|
221
245
|
id=self.id,
|
|
222
246
|
jolokia_user_configs=self.jolokia_user_configs,
|
|
@@ -259,9 +283,11 @@ def get_service_integration_endpoint(endpoint_name: Optional[str] = None,
|
|
|
259
283
|
external_aws_cloudwatch_logs_user_configs=pulumi.get(__ret__, 'external_aws_cloudwatch_logs_user_configs'),
|
|
260
284
|
external_aws_cloudwatch_metrics_user_configs=pulumi.get(__ret__, 'external_aws_cloudwatch_metrics_user_configs'),
|
|
261
285
|
external_elasticsearch_logs_user_configs=pulumi.get(__ret__, 'external_elasticsearch_logs_user_configs'),
|
|
286
|
+
external_google_cloud_bigqueries=pulumi.get(__ret__, 'external_google_cloud_bigqueries'),
|
|
262
287
|
external_google_cloud_logging_user_configs=pulumi.get(__ret__, 'external_google_cloud_logging_user_configs'),
|
|
263
288
|
external_kafka_user_configs=pulumi.get(__ret__, 'external_kafka_user_configs'),
|
|
264
289
|
external_opensearch_logs_user_configs=pulumi.get(__ret__, 'external_opensearch_logs_user_configs'),
|
|
290
|
+
external_postgresqls=pulumi.get(__ret__, 'external_postgresqls'),
|
|
265
291
|
external_schema_registry_user_configs=pulumi.get(__ret__, 'external_schema_registry_user_configs'),
|
|
266
292
|
id=pulumi.get(__ret__, 'id'),
|
|
267
293
|
jolokia_user_configs=pulumi.get(__ret__, 'jolokia_user_configs'),
|