pulumi-aiven 6.16.0a1716504562__py3-none-any.whl → 6.17.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 +1133 -397
- pulumi_aiven/cassandra.py +48 -1
- pulumi_aiven/clickhouse.py +48 -1
- pulumi_aiven/dragonfly.py +48 -1
- pulumi_aiven/flink.py +2 -2
- pulumi_aiven/flink_application_deployment.py +56 -30
- pulumi_aiven/gcp_privatelink.py +52 -30
- pulumi_aiven/gcp_privatelink_connection_approval.py +54 -30
- pulumi_aiven/get_cassanda.py +14 -1
- pulumi_aiven/get_cassandra.py +14 -1
- pulumi_aiven/get_clickhouse.py +14 -1
- pulumi_aiven/get_dragonfly.py +14 -1
- pulumi_aiven/get_gcp_privatelink.py +45 -2
- pulumi_aiven/get_grafana.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_organization_application_user.py +15 -8
- pulumi_aiven/get_redis.py +14 -1
- pulumi_aiven/get_service_integration.py +3 -3
- pulumi_aiven/get_service_integration_endpoint.py +1 -1
- pulumi_aiven/grafana.py +48 -1
- pulumi_aiven/influx_db.py +21 -2
- pulumi_aiven/kafka.py +20 -1
- pulumi_aiven/m3_aggregator.py +48 -1
- pulumi_aiven/m3_db.py +48 -1
- pulumi_aiven/mirror_maker_replication_flow.py +54 -7
- pulumi_aiven/my_sql.py +48 -1
- pulumi_aiven/open_search.py +21 -2
- pulumi_aiven/organization_application_user.py +52 -45
- pulumi_aiven/organization_application_user_token.py +15 -51
- pulumi_aiven/outputs.py +1758 -397
- pulumi_aiven/pg.py +2 -2
- pulumi_aiven/pulumi-plugin.json +1 -1
- pulumi_aiven/redis.py +48 -1
- pulumi_aiven/service_integration.py +7 -7
- pulumi_aiven/service_integration_endpoint.py +7 -7
- {pulumi_aiven-6.16.0a1716504562.dist-info → pulumi_aiven-6.17.0.dist-info}/METADATA +1 -1
- {pulumi_aiven-6.16.0a1716504562.dist-info → pulumi_aiven-6.17.0.dist-info}/RECORD +42 -42
- {pulumi_aiven-6.16.0a1716504562.dist-info → pulumi_aiven-6.17.0.dist-info}/WHEEL +0 -0
- {pulumi_aiven-6.16.0a1716504562.dist-info → pulumi_aiven-6.17.0.dist-info}/top_level.txt +0 -0
pulumi_aiven/get_dragonfly.py
CHANGED
|
@@ -22,7 +22,7 @@ class GetDragonflyResult:
|
|
|
22
22
|
"""
|
|
23
23
|
A collection of values returned by getDragonfly.
|
|
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, dragonfly_user_configs=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):
|
|
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, dragonflies=None, dragonfly_user_configs=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)
|
|
@@ -47,6 +47,9 @@ class GetDragonflyResult:
|
|
|
47
47
|
if disk_space_used and not isinstance(disk_space_used, str):
|
|
48
48
|
raise TypeError("Expected argument 'disk_space_used' to be a str")
|
|
49
49
|
pulumi.set(__self__, "disk_space_used", disk_space_used)
|
|
50
|
+
if dragonflies and not isinstance(dragonflies, list):
|
|
51
|
+
raise TypeError("Expected argument 'dragonflies' to be a list")
|
|
52
|
+
pulumi.set(__self__, "dragonflies", dragonflies)
|
|
50
53
|
if dragonfly_user_configs and not isinstance(dragonfly_user_configs, list):
|
|
51
54
|
raise TypeError("Expected argument 'dragonfly_user_configs' to be a list")
|
|
52
55
|
pulumi.set(__self__, "dragonfly_user_configs", dragonfly_user_configs)
|
|
@@ -172,6 +175,14 @@ class GetDragonflyResult:
|
|
|
172
175
|
"""
|
|
173
176
|
return pulumi.get(self, "disk_space_used")
|
|
174
177
|
|
|
178
|
+
@property
|
|
179
|
+
@pulumi.getter
|
|
180
|
+
def dragonflies(self) -> Sequence['outputs.GetDragonflyDragonflyResult']:
|
|
181
|
+
"""
|
|
182
|
+
Dragonfly server provided values
|
|
183
|
+
"""
|
|
184
|
+
return pulumi.get(self, "dragonflies")
|
|
185
|
+
|
|
175
186
|
@property
|
|
176
187
|
@pulumi.getter(name="dragonflyUserConfigs")
|
|
177
188
|
def dragonfly_user_configs(self) -> Sequence['outputs.GetDragonflyDragonflyUserConfigResult']:
|
|
@@ -347,6 +358,7 @@ class AwaitableGetDragonflyResult(GetDragonflyResult):
|
|
|
347
358
|
disk_space_default=self.disk_space_default,
|
|
348
359
|
disk_space_step=self.disk_space_step,
|
|
349
360
|
disk_space_used=self.disk_space_used,
|
|
361
|
+
dragonflies=self.dragonflies,
|
|
350
362
|
dragonfly_user_configs=self.dragonfly_user_configs,
|
|
351
363
|
id=self.id,
|
|
352
364
|
maintenance_window_dow=self.maintenance_window_dow,
|
|
@@ -404,6 +416,7 @@ def get_dragonfly(project: Optional[str] = None,
|
|
|
404
416
|
disk_space_default=pulumi.get(__ret__, 'disk_space_default'),
|
|
405
417
|
disk_space_step=pulumi.get(__ret__, 'disk_space_step'),
|
|
406
418
|
disk_space_used=pulumi.get(__ret__, 'disk_space_used'),
|
|
419
|
+
dragonflies=pulumi.get(__ret__, 'dragonflies'),
|
|
407
420
|
dragonfly_user_configs=pulumi.get(__ret__, 'dragonfly_user_configs'),
|
|
408
421
|
id=pulumi.get(__ret__, 'id'),
|
|
409
422
|
maintenance_window_dow=pulumi.get(__ret__, 'maintenance_window_dow'),
|
|
@@ -44,6 +44,9 @@ class GetGcpPrivatelinkResult:
|
|
|
44
44
|
@property
|
|
45
45
|
@pulumi.getter(name="googleServiceAttachment")
|
|
46
46
|
def google_service_attachment(self) -> str:
|
|
47
|
+
"""
|
|
48
|
+
Google Private Service Connect service attachment.
|
|
49
|
+
"""
|
|
47
50
|
return pulumi.get(self, "google_service_attachment")
|
|
48
51
|
|
|
49
52
|
@property
|
|
@@ -57,21 +60,33 @@ class GetGcpPrivatelinkResult:
|
|
|
57
60
|
@property
|
|
58
61
|
@pulumi.getter
|
|
59
62
|
def message(self) -> str:
|
|
63
|
+
"""
|
|
64
|
+
Printable result of the Google Cloud Private Service Connect request.
|
|
65
|
+
"""
|
|
60
66
|
return pulumi.get(self, "message")
|
|
61
67
|
|
|
62
68
|
@property
|
|
63
69
|
@pulumi.getter
|
|
64
70
|
def project(self) -> str:
|
|
71
|
+
"""
|
|
72
|
+
The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
|
|
73
|
+
"""
|
|
65
74
|
return pulumi.get(self, "project")
|
|
66
75
|
|
|
67
76
|
@property
|
|
68
77
|
@pulumi.getter(name="serviceName")
|
|
69
78
|
def service_name(self) -> str:
|
|
79
|
+
"""
|
|
80
|
+
The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
|
|
81
|
+
"""
|
|
70
82
|
return pulumi.get(self, "service_name")
|
|
71
83
|
|
|
72
84
|
@property
|
|
73
85
|
@pulumi.getter
|
|
74
86
|
def state(self) -> str:
|
|
87
|
+
"""
|
|
88
|
+
The state of the Private Service Connect resource.
|
|
89
|
+
"""
|
|
75
90
|
return pulumi.get(self, "state")
|
|
76
91
|
|
|
77
92
|
|
|
@@ -93,7 +108,21 @@ def get_gcp_privatelink(project: Optional[str] = None,
|
|
|
93
108
|
service_name: Optional[str] = None,
|
|
94
109
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetGcpPrivatelinkResult:
|
|
95
110
|
"""
|
|
96
|
-
|
|
111
|
+
Gets information about a Google Private Service Connect connection for an Aiven service.
|
|
112
|
+
|
|
113
|
+
## Example Usage
|
|
114
|
+
|
|
115
|
+
```python
|
|
116
|
+
import pulumi
|
|
117
|
+
import pulumi_aiven as aiven
|
|
118
|
+
|
|
119
|
+
main = aiven.get_gcp_privatelink(project=example_project["project"],
|
|
120
|
+
service_name=example_kafka["serviceName"])
|
|
121
|
+
```
|
|
122
|
+
|
|
123
|
+
|
|
124
|
+
:param str project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
|
|
125
|
+
:param str service_name: The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
|
|
97
126
|
"""
|
|
98
127
|
__args__ = dict()
|
|
99
128
|
__args__['project'] = project
|
|
@@ -115,6 +144,20 @@ def get_gcp_privatelink_output(project: Optional[pulumi.Input[str]] = None,
|
|
|
115
144
|
service_name: Optional[pulumi.Input[str]] = None,
|
|
116
145
|
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetGcpPrivatelinkResult]:
|
|
117
146
|
"""
|
|
118
|
-
|
|
147
|
+
Gets information about a Google Private Service Connect connection for an Aiven service.
|
|
148
|
+
|
|
149
|
+
## Example Usage
|
|
150
|
+
|
|
151
|
+
```python
|
|
152
|
+
import pulumi
|
|
153
|
+
import pulumi_aiven as aiven
|
|
154
|
+
|
|
155
|
+
main = aiven.get_gcp_privatelink(project=example_project["project"],
|
|
156
|
+
service_name=example_kafka["serviceName"])
|
|
157
|
+
```
|
|
158
|
+
|
|
159
|
+
|
|
160
|
+
:param str project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
|
|
161
|
+
:param str service_name: The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
|
|
119
162
|
"""
|
|
120
163
|
...
|
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, 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):
|
|
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)
|
|
@@ -50,6 +50,9 @@ class GetGrafanaResult:
|
|
|
50
50
|
if grafana_user_configs and not isinstance(grafana_user_configs, list):
|
|
51
51
|
raise TypeError("Expected argument 'grafana_user_configs' to be a list")
|
|
52
52
|
pulumi.set(__self__, "grafana_user_configs", grafana_user_configs)
|
|
53
|
+
if grafanas and not isinstance(grafanas, list):
|
|
54
|
+
raise TypeError("Expected argument 'grafanas' to be a list")
|
|
55
|
+
pulumi.set(__self__, "grafanas", grafanas)
|
|
53
56
|
if id and not isinstance(id, str):
|
|
54
57
|
raise TypeError("Expected argument 'id' to be a str")
|
|
55
58
|
pulumi.set(__self__, "id", id)
|
|
@@ -180,6 +183,14 @@ class GetGrafanaResult:
|
|
|
180
183
|
"""
|
|
181
184
|
return pulumi.get(self, "grafana_user_configs")
|
|
182
185
|
|
|
186
|
+
@property
|
|
187
|
+
@pulumi.getter
|
|
188
|
+
def grafanas(self) -> Sequence['outputs.GetGrafanaGrafanaResult']:
|
|
189
|
+
"""
|
|
190
|
+
Grafana server provided values
|
|
191
|
+
"""
|
|
192
|
+
return pulumi.get(self, "grafanas")
|
|
193
|
+
|
|
183
194
|
@property
|
|
184
195
|
@pulumi.getter
|
|
185
196
|
def id(self) -> str:
|
|
@@ -348,6 +359,7 @@ class AwaitableGetGrafanaResult(GetGrafanaResult):
|
|
|
348
359
|
disk_space_step=self.disk_space_step,
|
|
349
360
|
disk_space_used=self.disk_space_used,
|
|
350
361
|
grafana_user_configs=self.grafana_user_configs,
|
|
362
|
+
grafanas=self.grafanas,
|
|
351
363
|
id=self.id,
|
|
352
364
|
maintenance_window_dow=self.maintenance_window_dow,
|
|
353
365
|
maintenance_window_time=self.maintenance_window_time,
|
|
@@ -405,6 +417,7 @@ def get_grafana(project: Optional[str] = None,
|
|
|
405
417
|
disk_space_step=pulumi.get(__ret__, 'disk_space_step'),
|
|
406
418
|
disk_space_used=pulumi.get(__ret__, 'disk_space_used'),
|
|
407
419
|
grafana_user_configs=pulumi.get(__ret__, 'grafana_user_configs'),
|
|
420
|
+
grafanas=pulumi.get(__ret__, 'grafanas'),
|
|
408
421
|
id=pulumi.get(__ret__, 'id'),
|
|
409
422
|
maintenance_window_dow=pulumi.get(__ret__, 'maintenance_window_dow'),
|
|
410
423
|
maintenance_window_time=pulumi.get(__ret__, 'maintenance_window_time'),
|
|
@@ -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, 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):
|
|
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)
|
|
@@ -53,6 +53,9 @@ class GetM3AggregatorResult:
|
|
|
53
53
|
if m3aggregator_user_configs and not isinstance(m3aggregator_user_configs, list):
|
|
54
54
|
raise TypeError("Expected argument 'm3aggregator_user_configs' to be a list")
|
|
55
55
|
pulumi.set(__self__, "m3aggregator_user_configs", m3aggregator_user_configs)
|
|
56
|
+
if m3aggregators and not isinstance(m3aggregators, list):
|
|
57
|
+
raise TypeError("Expected argument 'm3aggregators' to be a list")
|
|
58
|
+
pulumi.set(__self__, "m3aggregators", m3aggregators)
|
|
56
59
|
if maintenance_window_dow and not isinstance(maintenance_window_dow, str):
|
|
57
60
|
raise TypeError("Expected argument 'maintenance_window_dow' to be a str")
|
|
58
61
|
pulumi.set(__self__, "maintenance_window_dow", maintenance_window_dow)
|
|
@@ -188,6 +191,14 @@ class GetM3AggregatorResult:
|
|
|
188
191
|
"""
|
|
189
192
|
return pulumi.get(self, "m3aggregator_user_configs")
|
|
190
193
|
|
|
194
|
+
@property
|
|
195
|
+
@pulumi.getter
|
|
196
|
+
def m3aggregators(self) -> Sequence['outputs.GetM3AggregatorM3aggregatorResult']:
|
|
197
|
+
"""
|
|
198
|
+
M3 Aggregator server provided values
|
|
199
|
+
"""
|
|
200
|
+
return pulumi.get(self, "m3aggregators")
|
|
201
|
+
|
|
191
202
|
@property
|
|
192
203
|
@pulumi.getter(name="maintenanceWindowDow")
|
|
193
204
|
def maintenance_window_dow(self) -> str:
|
|
@@ -349,6 +360,7 @@ class AwaitableGetM3AggregatorResult(GetM3AggregatorResult):
|
|
|
349
360
|
disk_space_used=self.disk_space_used,
|
|
350
361
|
id=self.id,
|
|
351
362
|
m3aggregator_user_configs=self.m3aggregator_user_configs,
|
|
363
|
+
m3aggregators=self.m3aggregators,
|
|
352
364
|
maintenance_window_dow=self.maintenance_window_dow,
|
|
353
365
|
maintenance_window_time=self.maintenance_window_time,
|
|
354
366
|
plan=self.plan,
|
|
@@ -406,6 +418,7 @@ def get_m3_aggregator(project: Optional[str] = None,
|
|
|
406
418
|
disk_space_used=pulumi.get(__ret__, 'disk_space_used'),
|
|
407
419
|
id=pulumi.get(__ret__, 'id'),
|
|
408
420
|
m3aggregator_user_configs=pulumi.get(__ret__, 'm3aggregator_user_configs'),
|
|
421
|
+
m3aggregators=pulumi.get(__ret__, 'm3aggregators'),
|
|
409
422
|
maintenance_window_dow=pulumi.get(__ret__, 'maintenance_window_dow'),
|
|
410
423
|
maintenance_window_time=pulumi.get(__ret__, 'maintenance_window_time'),
|
|
411
424
|
plan=pulumi.get(__ret__, 'plan'),
|
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, 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):
|
|
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)
|
|
@@ -53,6 +53,9 @@ class GetM3DbResult:
|
|
|
53
53
|
if m3db_user_configs and not isinstance(m3db_user_configs, list):
|
|
54
54
|
raise TypeError("Expected argument 'm3db_user_configs' to be a list")
|
|
55
55
|
pulumi.set(__self__, "m3db_user_configs", m3db_user_configs)
|
|
56
|
+
if m3dbs and not isinstance(m3dbs, list):
|
|
57
|
+
raise TypeError("Expected argument 'm3dbs' to be a list")
|
|
58
|
+
pulumi.set(__self__, "m3dbs", m3dbs)
|
|
56
59
|
if maintenance_window_dow and not isinstance(maintenance_window_dow, str):
|
|
57
60
|
raise TypeError("Expected argument 'maintenance_window_dow' to be a str")
|
|
58
61
|
pulumi.set(__self__, "maintenance_window_dow", maintenance_window_dow)
|
|
@@ -188,6 +191,14 @@ class GetM3DbResult:
|
|
|
188
191
|
"""
|
|
189
192
|
return pulumi.get(self, "m3db_user_configs")
|
|
190
193
|
|
|
194
|
+
@property
|
|
195
|
+
@pulumi.getter
|
|
196
|
+
def m3dbs(self) -> Sequence['outputs.GetM3DbM3dbResult']:
|
|
197
|
+
"""
|
|
198
|
+
M3DB server provided values
|
|
199
|
+
"""
|
|
200
|
+
return pulumi.get(self, "m3dbs")
|
|
201
|
+
|
|
191
202
|
@property
|
|
192
203
|
@pulumi.getter(name="maintenanceWindowDow")
|
|
193
204
|
def maintenance_window_dow(self) -> str:
|
|
@@ -349,6 +360,7 @@ class AwaitableGetM3DbResult(GetM3DbResult):
|
|
|
349
360
|
disk_space_used=self.disk_space_used,
|
|
350
361
|
id=self.id,
|
|
351
362
|
m3db_user_configs=self.m3db_user_configs,
|
|
363
|
+
m3dbs=self.m3dbs,
|
|
352
364
|
maintenance_window_dow=self.maintenance_window_dow,
|
|
353
365
|
maintenance_window_time=self.maintenance_window_time,
|
|
354
366
|
plan=self.plan,
|
|
@@ -406,6 +418,7 @@ def get_m3_db(project: Optional[str] = None,
|
|
|
406
418
|
disk_space_used=pulumi.get(__ret__, 'disk_space_used'),
|
|
407
419
|
id=pulumi.get(__ret__, 'id'),
|
|
408
420
|
m3db_user_configs=pulumi.get(__ret__, 'm3db_user_configs'),
|
|
421
|
+
m3dbs=pulumi.get(__ret__, 'm3dbs'),
|
|
409
422
|
maintenance_window_dow=pulumi.get(__ret__, 'maintenance_window_dow'),
|
|
410
423
|
maintenance_window_time=pulumi.get(__ret__, 'maintenance_window_time'),
|
|
411
424
|
plan=pulumi.get(__ret__, 'plan'),
|
|
@@ -21,7 +21,7 @@ class GetMirrorMakerReplicationFlowResult:
|
|
|
21
21
|
"""
|
|
22
22
|
A collection of values returned by getMirrorMakerReplicationFlow.
|
|
23
23
|
"""
|
|
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):
|
|
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_factor=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
25
|
if emit_backward_heartbeats_enabled and not isinstance(emit_backward_heartbeats_enabled, bool):
|
|
26
26
|
raise TypeError("Expected argument 'emit_backward_heartbeats_enabled' to be a bool")
|
|
27
27
|
pulumi.set(__self__, "emit_backward_heartbeats_enabled", emit_backward_heartbeats_enabled)
|
|
@@ -40,6 +40,9 @@ class GetMirrorMakerReplicationFlowResult:
|
|
|
40
40
|
if project and not isinstance(project, str):
|
|
41
41
|
raise TypeError("Expected argument 'project' to be a str")
|
|
42
42
|
pulumi.set(__self__, "project", project)
|
|
43
|
+
if replication_factor and not isinstance(replication_factor, int):
|
|
44
|
+
raise TypeError("Expected argument 'replication_factor' to be a int")
|
|
45
|
+
pulumi.set(__self__, "replication_factor", replication_factor)
|
|
43
46
|
if replication_policy_class and not isinstance(replication_policy_class, str):
|
|
44
47
|
raise TypeError("Expected argument 'replication_policy_class' to be a str")
|
|
45
48
|
pulumi.set(__self__, "replication_policy_class", replication_policy_class)
|
|
@@ -101,7 +104,7 @@ class GetMirrorMakerReplicationFlowResult:
|
|
|
101
104
|
@pulumi.getter(name="offsetSyncsTopicLocation")
|
|
102
105
|
def offset_syncs_topic_location(self) -> str:
|
|
103
106
|
"""
|
|
104
|
-
Offset syncs topic location.
|
|
107
|
+
Offset syncs topic location. Possible values are `source` & `target`. There is no default value.
|
|
105
108
|
"""
|
|
106
109
|
return pulumi.get(self, "offset_syncs_topic_location")
|
|
107
110
|
|
|
@@ -113,6 +116,14 @@ class GetMirrorMakerReplicationFlowResult:
|
|
|
113
116
|
"""
|
|
114
117
|
return pulumi.get(self, "project")
|
|
115
118
|
|
|
119
|
+
@property
|
|
120
|
+
@pulumi.getter(name="replicationFactor")
|
|
121
|
+
def replication_factor(self) -> int:
|
|
122
|
+
"""
|
|
123
|
+
Replication factor, `>= 1`.
|
|
124
|
+
"""
|
|
125
|
+
return pulumi.get(self, "replication_factor")
|
|
126
|
+
|
|
116
127
|
@property
|
|
117
128
|
@pulumi.getter(name="replicationPolicyClass")
|
|
118
129
|
def replication_policy_class(self) -> str:
|
|
@@ -190,6 +201,7 @@ class AwaitableGetMirrorMakerReplicationFlowResult(GetMirrorMakerReplicationFlow
|
|
|
190
201
|
id=self.id,
|
|
191
202
|
offset_syncs_topic_location=self.offset_syncs_topic_location,
|
|
192
203
|
project=self.project,
|
|
204
|
+
replication_factor=self.replication_factor,
|
|
193
205
|
replication_policy_class=self.replication_policy_class,
|
|
194
206
|
service_name=self.service_name,
|
|
195
207
|
source_cluster=self.source_cluster,
|
|
@@ -241,6 +253,7 @@ def get_mirror_maker_replication_flow(project: Optional[str] = None,
|
|
|
241
253
|
id=pulumi.get(__ret__, 'id'),
|
|
242
254
|
offset_syncs_topic_location=pulumi.get(__ret__, 'offset_syncs_topic_location'),
|
|
243
255
|
project=pulumi.get(__ret__, 'project'),
|
|
256
|
+
replication_factor=pulumi.get(__ret__, 'replication_factor'),
|
|
244
257
|
replication_policy_class=pulumi.get(__ret__, 'replication_policy_class'),
|
|
245
258
|
service_name=pulumi.get(__ret__, 'service_name'),
|
|
246
259
|
source_cluster=pulumi.get(__ret__, 'source_cluster'),
|
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, 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):
|
|
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)
|
|
@@ -59,6 +59,9 @@ class GetMySqlResult:
|
|
|
59
59
|
if mysql_user_configs and not isinstance(mysql_user_configs, list):
|
|
60
60
|
raise TypeError("Expected argument 'mysql_user_configs' to be a list")
|
|
61
61
|
pulumi.set(__self__, "mysql_user_configs", mysql_user_configs)
|
|
62
|
+
if mysqls and not isinstance(mysqls, list):
|
|
63
|
+
raise TypeError("Expected argument 'mysqls' to be a list")
|
|
64
|
+
pulumi.set(__self__, "mysqls", mysqls)
|
|
62
65
|
if plan and not isinstance(plan, str):
|
|
63
66
|
raise TypeError("Expected argument 'plan' to be a str")
|
|
64
67
|
pulumi.set(__self__, "plan", plan)
|
|
@@ -204,6 +207,14 @@ class GetMySqlResult:
|
|
|
204
207
|
"""
|
|
205
208
|
return pulumi.get(self, "mysql_user_configs")
|
|
206
209
|
|
|
210
|
+
@property
|
|
211
|
+
@pulumi.getter
|
|
212
|
+
def mysqls(self) -> Sequence['outputs.GetMySqlMysqlResult']:
|
|
213
|
+
"""
|
|
214
|
+
MySQL specific server provided values
|
|
215
|
+
"""
|
|
216
|
+
return pulumi.get(self, "mysqls")
|
|
217
|
+
|
|
207
218
|
@property
|
|
208
219
|
@pulumi.getter
|
|
209
220
|
def plan(self) -> str:
|
|
@@ -351,6 +362,7 @@ class AwaitableGetMySqlResult(GetMySqlResult):
|
|
|
351
362
|
maintenance_window_dow=self.maintenance_window_dow,
|
|
352
363
|
maintenance_window_time=self.maintenance_window_time,
|
|
353
364
|
mysql_user_configs=self.mysql_user_configs,
|
|
365
|
+
mysqls=self.mysqls,
|
|
354
366
|
plan=self.plan,
|
|
355
367
|
project=self.project,
|
|
356
368
|
project_vpc_id=self.project_vpc_id,
|
|
@@ -408,6 +420,7 @@ def get_my_sql(project: Optional[str] = None,
|
|
|
408
420
|
maintenance_window_dow=pulumi.get(__ret__, 'maintenance_window_dow'),
|
|
409
421
|
maintenance_window_time=pulumi.get(__ret__, 'maintenance_window_time'),
|
|
410
422
|
mysql_user_configs=pulumi.get(__ret__, 'mysql_user_configs'),
|
|
423
|
+
mysqls=pulumi.get(__ret__, 'mysqls'),
|
|
411
424
|
plan=pulumi.get(__ret__, 'plan'),
|
|
412
425
|
project=pulumi.get(__ret__, 'project'),
|
|
413
426
|
project_vpc_id=pulumi.get(__ret__, 'project_vpc_id'),
|
|
@@ -21,13 +21,16 @@ class GetOrganizationApplicationUserResult:
|
|
|
21
21
|
"""
|
|
22
22
|
A collection of values returned by getOrganizationApplicationUser.
|
|
23
23
|
"""
|
|
24
|
-
def __init__(__self__, email=None, id=None, name=None, organization_id=None, user_id=None):
|
|
24
|
+
def __init__(__self__, email=None, id=None, is_super_admin=None, name=None, organization_id=None, user_id=None):
|
|
25
25
|
if email and not isinstance(email, str):
|
|
26
26
|
raise TypeError("Expected argument 'email' to be a str")
|
|
27
27
|
pulumi.set(__self__, "email", email)
|
|
28
28
|
if id and not isinstance(id, str):
|
|
29
29
|
raise TypeError("Expected argument 'id' to be a str")
|
|
30
30
|
pulumi.set(__self__, "id", id)
|
|
31
|
+
if is_super_admin and not isinstance(is_super_admin, bool):
|
|
32
|
+
raise TypeError("Expected argument 'is_super_admin' to be a bool")
|
|
33
|
+
pulumi.set(__self__, "is_super_admin", is_super_admin)
|
|
31
34
|
if name and not isinstance(name, str):
|
|
32
35
|
raise TypeError("Expected argument 'name' to be a str")
|
|
33
36
|
pulumi.set(__self__, "name", name)
|
|
@@ -42,7 +45,7 @@ class GetOrganizationApplicationUserResult:
|
|
|
42
45
|
@pulumi.getter
|
|
43
46
|
def email(self) -> str:
|
|
44
47
|
"""
|
|
45
|
-
|
|
48
|
+
An email address automatically generated by Aiven to help identify the application user. No notifications are sent to this email.
|
|
46
49
|
"""
|
|
47
50
|
return pulumi.get(self, "email")
|
|
48
51
|
|
|
@@ -54,6 +57,14 @@ class GetOrganizationApplicationUserResult:
|
|
|
54
57
|
"""
|
|
55
58
|
return pulumi.get(self, "id")
|
|
56
59
|
|
|
60
|
+
@property
|
|
61
|
+
@pulumi.getter(name="isSuperAdmin")
|
|
62
|
+
def is_super_admin(self) -> bool:
|
|
63
|
+
"""
|
|
64
|
+
Makes the application user a super admin. The super admin role has full access to an organization, its billing and settings, and all its organizational units, projects, and services.
|
|
65
|
+
"""
|
|
66
|
+
return pulumi.get(self, "is_super_admin")
|
|
67
|
+
|
|
57
68
|
@property
|
|
58
69
|
@pulumi.getter
|
|
59
70
|
def name(self) -> str:
|
|
@@ -87,6 +98,7 @@ class AwaitableGetOrganizationApplicationUserResult(GetOrganizationApplicationUs
|
|
|
87
98
|
return GetOrganizationApplicationUserResult(
|
|
88
99
|
email=self.email,
|
|
89
100
|
id=self.id,
|
|
101
|
+
is_super_admin=self.is_super_admin,
|
|
90
102
|
name=self.name,
|
|
91
103
|
organization_id=self.organization_id,
|
|
92
104
|
user_id=self.user_id)
|
|
@@ -98,9 +110,6 @@ def get_organization_application_user(organization_id: Optional[str] = None,
|
|
|
98
110
|
"""
|
|
99
111
|
Gets information about an application user.
|
|
100
112
|
|
|
101
|
-
**This data source is in the limited availability stage and may change without notice.** To enable this feature, contact the sales team. After it's enabled, set
|
|
102
|
-
the `PROVIDER_AIVEN_ENABLE_BETA` environment variable to use the data source.
|
|
103
|
-
|
|
104
113
|
## Example Usage
|
|
105
114
|
|
|
106
115
|
```python
|
|
@@ -124,6 +133,7 @@ def get_organization_application_user(organization_id: Optional[str] = None,
|
|
|
124
133
|
return AwaitableGetOrganizationApplicationUserResult(
|
|
125
134
|
email=pulumi.get(__ret__, 'email'),
|
|
126
135
|
id=pulumi.get(__ret__, 'id'),
|
|
136
|
+
is_super_admin=pulumi.get(__ret__, 'is_super_admin'),
|
|
127
137
|
name=pulumi.get(__ret__, 'name'),
|
|
128
138
|
organization_id=pulumi.get(__ret__, 'organization_id'),
|
|
129
139
|
user_id=pulumi.get(__ret__, 'user_id'))
|
|
@@ -136,9 +146,6 @@ def get_organization_application_user_output(organization_id: Optional[pulumi.In
|
|
|
136
146
|
"""
|
|
137
147
|
Gets information about an application user.
|
|
138
148
|
|
|
139
|
-
**This data source is in the limited availability stage and may change without notice.** To enable this feature, contact the sales team. After it's enabled, set
|
|
140
|
-
the `PROVIDER_AIVEN_ENABLE_BETA` environment variable to use the data source.
|
|
141
|
-
|
|
142
149
|
## Example Usage
|
|
143
150
|
|
|
144
151
|
```python
|
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_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):
|
|
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)
|
|
@@ -65,6 +65,9 @@ class GetRedisResult:
|
|
|
65
65
|
if project_vpc_id and not isinstance(project_vpc_id, str):
|
|
66
66
|
raise TypeError("Expected argument 'project_vpc_id' to be a str")
|
|
67
67
|
pulumi.set(__self__, "project_vpc_id", project_vpc_id)
|
|
68
|
+
if redis and not isinstance(redis, list):
|
|
69
|
+
raise TypeError("Expected argument 'redis' to be a list")
|
|
70
|
+
pulumi.set(__self__, "redis", redis)
|
|
68
71
|
if redis_user_configs and not isinstance(redis_user_configs, list):
|
|
69
72
|
raise TypeError("Expected argument 'redis_user_configs' to be a list")
|
|
70
73
|
pulumi.set(__self__, "redis_user_configs", redis_user_configs)
|
|
@@ -220,6 +223,14 @@ class GetRedisResult:
|
|
|
220
223
|
"""
|
|
221
224
|
return pulumi.get(self, "project_vpc_id")
|
|
222
225
|
|
|
226
|
+
@property
|
|
227
|
+
@pulumi.getter
|
|
228
|
+
def redis(self) -> Sequence['outputs.GetRedisRediResult']:
|
|
229
|
+
"""
|
|
230
|
+
Redis server provided values
|
|
231
|
+
"""
|
|
232
|
+
return pulumi.get(self, "redis")
|
|
233
|
+
|
|
223
234
|
@property
|
|
224
235
|
@pulumi.getter(name="redisUserConfigs")
|
|
225
236
|
def redis_user_configs(self) -> Sequence['outputs.GetRedisRedisUserConfigResult']:
|
|
@@ -353,6 +364,7 @@ class AwaitableGetRedisResult(GetRedisResult):
|
|
|
353
364
|
plan=self.plan,
|
|
354
365
|
project=self.project,
|
|
355
366
|
project_vpc_id=self.project_vpc_id,
|
|
367
|
+
redis=self.redis,
|
|
356
368
|
redis_user_configs=self.redis_user_configs,
|
|
357
369
|
service_host=self.service_host,
|
|
358
370
|
service_integrations=self.service_integrations,
|
|
@@ -410,6 +422,7 @@ def get_redis(project: Optional[str] = None,
|
|
|
410
422
|
plan=pulumi.get(__ret__, 'plan'),
|
|
411
423
|
project=pulumi.get(__ret__, 'project'),
|
|
412
424
|
project_vpc_id=pulumi.get(__ret__, 'project_vpc_id'),
|
|
425
|
+
redis=pulumi.get(__ret__, 'redis'),
|
|
413
426
|
redis_user_configs=pulumi.get(__ret__, 'redis_user_configs'),
|
|
414
427
|
service_host=pulumi.get(__ret__, 'service_host'),
|
|
415
428
|
service_integrations=pulumi.get(__ret__, 'service_integrations'),
|
|
@@ -179,7 +179,7 @@ class GetServiceIntegrationResult:
|
|
|
179
179
|
@pulumi.getter(name="integrationType")
|
|
180
180
|
def integration_type(self) -> str:
|
|
181
181
|
"""
|
|
182
|
-
Type of the service integration. Possible values: `alertmanager`, `autoscaler`, `caching`, `cassandra_cross_service_cluster`, `clickhouse_credentials`, `clickhouse_kafka`, `clickhouse_postgresql`, `dashboard`, `datadog`, `datasource`, `external_aws_cloudwatch_logs`, `external_aws_cloudwatch_metrics`, `external_elasticsearch_logs`, `external_google_cloud_logging`, `external_opensearch_logs`, `flink`, `flink_external_bigquery`, `flink_external_kafka`, `internal_connectivity`, `jolokia`, `kafka_connect`, `kafka_connect_postgresql`, `kafka_logs`, `kafka_mirrormaker`, `logs`, `m3aggregator`, `m3coordinator`, `metrics`, `opensearch_cross_cluster_replication`, `opensearch_cross_cluster_search`, `prometheus`, `read_replica`, `rsyslog`, `schema_registry_proxy`, `stresstester`, `thanoscompactor`, `thanosquery`, `thanosstore`, `vector`, `vmalert`
|
|
182
|
+
Type of the service integration. Possible values: `alertmanager`, `autoscaler`, `caching`, `cassandra_cross_service_cluster`, `clickhouse_credentials`, `clickhouse_kafka`, `clickhouse_postgresql`, `dashboard`, `datadog`, `datasource`, `external_aws_cloudwatch_logs`, `external_aws_cloudwatch_metrics`, `external_elasticsearch_logs`, `external_google_cloud_logging`, `external_opensearch_logs`, `flink`, `flink_external_bigquery`, `flink_external_kafka`, `flink_external_postgresql`, `internal_connectivity`, `jolokia`, `kafka_connect`, `kafka_connect_postgresql`, `kafka_logs`, `kafka_mirrormaker`, `logs`, `m3aggregator`, `m3coordinator`, `metrics`, `opensearch_cross_cluster_replication`, `opensearch_cross_cluster_search`, `prometheus`, `read_replica`, `rsyslog`, `schema_registry_proxy`, `stresstester`, `thanos_migrate`, `thanoscompactor`, `thanosquery`, `thanosstore`, `vector`, `vmalert`
|
|
183
183
|
"""
|
|
184
184
|
return pulumi.get(self, "integration_type")
|
|
185
185
|
|
|
@@ -307,7 +307,7 @@ def get_service_integration(destination_service_name: Optional[str] = None,
|
|
|
307
307
|
|
|
308
308
|
|
|
309
309
|
:param str destination_service_name: Destination service for the integration.
|
|
310
|
-
:param str integration_type: Type of the service integration. Possible values: `alertmanager`, `autoscaler`, `caching`, `cassandra_cross_service_cluster`, `clickhouse_credentials`, `clickhouse_kafka`, `clickhouse_postgresql`, `dashboard`, `datadog`, `datasource`, `external_aws_cloudwatch_logs`, `external_aws_cloudwatch_metrics`, `external_elasticsearch_logs`, `external_google_cloud_logging`, `external_opensearch_logs`, `flink`, `flink_external_bigquery`, `flink_external_kafka`, `internal_connectivity`, `jolokia`, `kafka_connect`, `kafka_connect_postgresql`, `kafka_logs`, `kafka_mirrormaker`, `logs`, `m3aggregator`, `m3coordinator`, `metrics`, `opensearch_cross_cluster_replication`, `opensearch_cross_cluster_search`, `prometheus`, `read_replica`, `rsyslog`, `schema_registry_proxy`, `stresstester`, `thanoscompactor`, `thanosquery`, `thanosstore`, `vector`, `vmalert`
|
|
310
|
+
:param str integration_type: Type of the service integration. Possible values: `alertmanager`, `autoscaler`, `caching`, `cassandra_cross_service_cluster`, `clickhouse_credentials`, `clickhouse_kafka`, `clickhouse_postgresql`, `dashboard`, `datadog`, `datasource`, `external_aws_cloudwatch_logs`, `external_aws_cloudwatch_metrics`, `external_elasticsearch_logs`, `external_google_cloud_logging`, `external_opensearch_logs`, `flink`, `flink_external_bigquery`, `flink_external_kafka`, `flink_external_postgresql`, `internal_connectivity`, `jolokia`, `kafka_connect`, `kafka_connect_postgresql`, `kafka_logs`, `kafka_mirrormaker`, `logs`, `m3aggregator`, `m3coordinator`, `metrics`, `opensearch_cross_cluster_replication`, `opensearch_cross_cluster_search`, `prometheus`, `read_replica`, `rsyslog`, `schema_registry_proxy`, `stresstester`, `thanos_migrate`, `thanoscompactor`, `thanosquery`, `thanosstore`, `vector`, `vmalert`
|
|
311
311
|
:param str project: Project the integration belongs to.
|
|
312
312
|
:param str source_service_name: Source service for the integration (if any)
|
|
313
313
|
"""
|
|
@@ -366,7 +366,7 @@ def get_service_integration_output(destination_service_name: Optional[pulumi.Inp
|
|
|
366
366
|
|
|
367
367
|
|
|
368
368
|
:param str destination_service_name: Destination service for the integration.
|
|
369
|
-
:param str integration_type: Type of the service integration. Possible values: `alertmanager`, `autoscaler`, `caching`, `cassandra_cross_service_cluster`, `clickhouse_credentials`, `clickhouse_kafka`, `clickhouse_postgresql`, `dashboard`, `datadog`, `datasource`, `external_aws_cloudwatch_logs`, `external_aws_cloudwatch_metrics`, `external_elasticsearch_logs`, `external_google_cloud_logging`, `external_opensearch_logs`, `flink`, `flink_external_bigquery`, `flink_external_kafka`, `internal_connectivity`, `jolokia`, `kafka_connect`, `kafka_connect_postgresql`, `kafka_logs`, `kafka_mirrormaker`, `logs`, `m3aggregator`, `m3coordinator`, `metrics`, `opensearch_cross_cluster_replication`, `opensearch_cross_cluster_search`, `prometheus`, `read_replica`, `rsyslog`, `schema_registry_proxy`, `stresstester`, `thanoscompactor`, `thanosquery`, `thanosstore`, `vector`, `vmalert`
|
|
369
|
+
:param str integration_type: Type of the service integration. Possible values: `alertmanager`, `autoscaler`, `caching`, `cassandra_cross_service_cluster`, `clickhouse_credentials`, `clickhouse_kafka`, `clickhouse_postgresql`, `dashboard`, `datadog`, `datasource`, `external_aws_cloudwatch_logs`, `external_aws_cloudwatch_metrics`, `external_elasticsearch_logs`, `external_google_cloud_logging`, `external_opensearch_logs`, `flink`, `flink_external_bigquery`, `flink_external_kafka`, `flink_external_postgresql`, `internal_connectivity`, `jolokia`, `kafka_connect`, `kafka_connect_postgresql`, `kafka_logs`, `kafka_mirrormaker`, `logs`, `m3aggregator`, `m3coordinator`, `metrics`, `opensearch_cross_cluster_replication`, `opensearch_cross_cluster_search`, `prometheus`, `read_replica`, `rsyslog`, `schema_registry_proxy`, `stresstester`, `thanos_migrate`, `thanoscompactor`, `thanosquery`, `thanosstore`, `vector`, `vmalert`
|
|
370
370
|
:param str project: Project the integration belongs to.
|
|
371
371
|
:param str source_service_name: Source service for the integration (if any)
|
|
372
372
|
"""
|
|
@@ -106,7 +106,7 @@ class GetServiceIntegrationEndpointResult:
|
|
|
106
106
|
@pulumi.getter(name="endpointType")
|
|
107
107
|
def endpoint_type(self) -> str:
|
|
108
108
|
"""
|
|
109
|
-
Type of the service integration endpoint. Possible values: `autoscaler`, `datadog`, `external_aws_cloudwatch_logs`, `external_aws_cloudwatch_metrics`, `external_aws_s3`, `external_clickhouse`, `external_elasticsearch_logs`, `external_google_cloud_bigquery`, `external_google_cloud_logging`, `external_kafka`, `external_mysql`, `external_opensearch_logs`, `external_postgresql`, `external_redis`, `external_schema_registry`, `jolokia`, `prometheus`, `rsyslog`
|
|
109
|
+
Type of the service integration endpoint. Possible values: `autoscaler`, `datadog`, `external_aws_cloudwatch_logs`, `external_aws_cloudwatch_metrics`, `external_aws_s3`, `external_clickhouse`, `external_elasticsearch_logs`, `external_google_cloud_bigquery`, `external_google_cloud_logging`, `external_kafka`, `external_mysql`, `external_opensearch_logs`, `external_postgresql`, `external_redis`, `external_schema_registry`, `external_sumologic_logs`, `jolokia`, `prometheus`, `rsyslog`
|
|
110
110
|
"""
|
|
111
111
|
return pulumi.get(self, "endpoint_type")
|
|
112
112
|
|