pulumi-aiven 6.15.0a1715335403__py3-none-any.whl → 6.16.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/__init__.py +19 -0
- pulumi_aiven/_inputs.py +1272 -248
- pulumi_aiven/cassandra.py +48 -1
- pulumi_aiven/clickhouse.py +48 -1
- pulumi_aiven/clickhouse_role.py +2 -2
- 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 +1 -1
- pulumi_aiven/get_my_sql.py +14 -1
- pulumi_aiven/get_organization_application_user.py +156 -0
- 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 +7 -7
- pulumi_aiven/my_sql.py +48 -1
- pulumi_aiven/open_search.py +21 -2
- pulumi_aiven/organization_application_user.py +323 -0
- pulumi_aiven/organization_application_user_token.py +742 -0
- pulumi_aiven/outputs.py +1870 -285
- pulumi_aiven/pg.py +2 -2
- pulumi_aiven/pulumi-plugin.json +2 -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.15.0a1715335403.dist-info → pulumi_aiven-6.16.0.dist-info}/METADATA +1 -1
- {pulumi_aiven-6.15.0a1715335403.dist-info → pulumi_aiven-6.16.0.dist-info}/RECORD +44 -41
- {pulumi_aiven-6.15.0a1715335403.dist-info → pulumi_aiven-6.16.0.dist-info}/WHEEL +0 -0
- {pulumi_aiven-6.15.0a1715335403.dist-info → pulumi_aiven-6.16.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'),
|
|
@@ -101,7 +101,7 @@ class GetMirrorMakerReplicationFlowResult:
|
|
|
101
101
|
@pulumi.getter(name="offsetSyncsTopicLocation")
|
|
102
102
|
def offset_syncs_topic_location(self) -> str:
|
|
103
103
|
"""
|
|
104
|
-
Offset syncs topic location.
|
|
104
|
+
Offset syncs topic location. Possible values are `source` & `target`. There is no default value.
|
|
105
105
|
"""
|
|
106
106
|
return pulumi.get(self, "offset_syncs_topic_location")
|
|
107
107
|
|
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'),
|
|
@@ -0,0 +1,156 @@
|
|
|
1
|
+
# coding=utf-8
|
|
2
|
+
# *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
|
|
5
|
+
import copy
|
|
6
|
+
import warnings
|
|
7
|
+
import pulumi
|
|
8
|
+
import pulumi.runtime
|
|
9
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
10
|
+
from . import _utilities
|
|
11
|
+
|
|
12
|
+
__all__ = [
|
|
13
|
+
'GetOrganizationApplicationUserResult',
|
|
14
|
+
'AwaitableGetOrganizationApplicationUserResult',
|
|
15
|
+
'get_organization_application_user',
|
|
16
|
+
'get_organization_application_user_output',
|
|
17
|
+
]
|
|
18
|
+
|
|
19
|
+
@pulumi.output_type
|
|
20
|
+
class GetOrganizationApplicationUserResult:
|
|
21
|
+
"""
|
|
22
|
+
A collection of values returned by getOrganizationApplicationUser.
|
|
23
|
+
"""
|
|
24
|
+
def __init__(__self__, email=None, id=None, name=None, organization_id=None, user_id=None):
|
|
25
|
+
if email and not isinstance(email, str):
|
|
26
|
+
raise TypeError("Expected argument 'email' to be a str")
|
|
27
|
+
pulumi.set(__self__, "email", email)
|
|
28
|
+
if id and not isinstance(id, str):
|
|
29
|
+
raise TypeError("Expected argument 'id' to be a str")
|
|
30
|
+
pulumi.set(__self__, "id", id)
|
|
31
|
+
if name and not isinstance(name, str):
|
|
32
|
+
raise TypeError("Expected argument 'name' to be a str")
|
|
33
|
+
pulumi.set(__self__, "name", name)
|
|
34
|
+
if organization_id and not isinstance(organization_id, str):
|
|
35
|
+
raise TypeError("Expected argument 'organization_id' to be a str")
|
|
36
|
+
pulumi.set(__self__, "organization_id", organization_id)
|
|
37
|
+
if user_id and not isinstance(user_id, str):
|
|
38
|
+
raise TypeError("Expected argument 'user_id' to be a str")
|
|
39
|
+
pulumi.set(__self__, "user_id", user_id)
|
|
40
|
+
|
|
41
|
+
@property
|
|
42
|
+
@pulumi.getter
|
|
43
|
+
def email(self) -> str:
|
|
44
|
+
"""
|
|
45
|
+
The auto-generated email address of the application user.
|
|
46
|
+
"""
|
|
47
|
+
return pulumi.get(self, "email")
|
|
48
|
+
|
|
49
|
+
@property
|
|
50
|
+
@pulumi.getter
|
|
51
|
+
def id(self) -> str:
|
|
52
|
+
"""
|
|
53
|
+
The provider-assigned unique ID for this managed resource.
|
|
54
|
+
"""
|
|
55
|
+
return pulumi.get(self, "id")
|
|
56
|
+
|
|
57
|
+
@property
|
|
58
|
+
@pulumi.getter
|
|
59
|
+
def name(self) -> str:
|
|
60
|
+
"""
|
|
61
|
+
Name of the application user.
|
|
62
|
+
"""
|
|
63
|
+
return pulumi.get(self, "name")
|
|
64
|
+
|
|
65
|
+
@property
|
|
66
|
+
@pulumi.getter(name="organizationId")
|
|
67
|
+
def organization_id(self) -> str:
|
|
68
|
+
"""
|
|
69
|
+
The ID of the organization the application user belongs to.
|
|
70
|
+
"""
|
|
71
|
+
return pulumi.get(self, "organization_id")
|
|
72
|
+
|
|
73
|
+
@property
|
|
74
|
+
@pulumi.getter(name="userId")
|
|
75
|
+
def user_id(self) -> str:
|
|
76
|
+
"""
|
|
77
|
+
The ID of the application user.
|
|
78
|
+
"""
|
|
79
|
+
return pulumi.get(self, "user_id")
|
|
80
|
+
|
|
81
|
+
|
|
82
|
+
class AwaitableGetOrganizationApplicationUserResult(GetOrganizationApplicationUserResult):
|
|
83
|
+
# pylint: disable=using-constant-test
|
|
84
|
+
def __await__(self):
|
|
85
|
+
if False:
|
|
86
|
+
yield self
|
|
87
|
+
return GetOrganizationApplicationUserResult(
|
|
88
|
+
email=self.email,
|
|
89
|
+
id=self.id,
|
|
90
|
+
name=self.name,
|
|
91
|
+
organization_id=self.organization_id,
|
|
92
|
+
user_id=self.user_id)
|
|
93
|
+
|
|
94
|
+
|
|
95
|
+
def get_organization_application_user(organization_id: Optional[str] = None,
|
|
96
|
+
user_id: Optional[str] = None,
|
|
97
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetOrganizationApplicationUserResult:
|
|
98
|
+
"""
|
|
99
|
+
Gets information about an application user.
|
|
100
|
+
|
|
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
|
+
## Example Usage
|
|
105
|
+
|
|
106
|
+
```python
|
|
107
|
+
import pulumi
|
|
108
|
+
import pulumi_aiven as aiven
|
|
109
|
+
|
|
110
|
+
tf_user = aiven.get_organization_application_user(organization_id=main["id"],
|
|
111
|
+
user_id="u123a456b7890c")
|
|
112
|
+
```
|
|
113
|
+
|
|
114
|
+
|
|
115
|
+
:param str organization_id: The ID of the organization the application user belongs to.
|
|
116
|
+
:param str user_id: The ID of the application user.
|
|
117
|
+
"""
|
|
118
|
+
__args__ = dict()
|
|
119
|
+
__args__['organizationId'] = organization_id
|
|
120
|
+
__args__['userId'] = user_id
|
|
121
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
122
|
+
__ret__ = pulumi.runtime.invoke('aiven:index/getOrganizationApplicationUser:getOrganizationApplicationUser', __args__, opts=opts, typ=GetOrganizationApplicationUserResult).value
|
|
123
|
+
|
|
124
|
+
return AwaitableGetOrganizationApplicationUserResult(
|
|
125
|
+
email=pulumi.get(__ret__, 'email'),
|
|
126
|
+
id=pulumi.get(__ret__, 'id'),
|
|
127
|
+
name=pulumi.get(__ret__, 'name'),
|
|
128
|
+
organization_id=pulumi.get(__ret__, 'organization_id'),
|
|
129
|
+
user_id=pulumi.get(__ret__, 'user_id'))
|
|
130
|
+
|
|
131
|
+
|
|
132
|
+
@_utilities.lift_output_func(get_organization_application_user)
|
|
133
|
+
def get_organization_application_user_output(organization_id: Optional[pulumi.Input[str]] = None,
|
|
134
|
+
user_id: Optional[pulumi.Input[str]] = None,
|
|
135
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetOrganizationApplicationUserResult]:
|
|
136
|
+
"""
|
|
137
|
+
Gets information about an application user.
|
|
138
|
+
|
|
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
|
+
## Example Usage
|
|
143
|
+
|
|
144
|
+
```python
|
|
145
|
+
import pulumi
|
|
146
|
+
import pulumi_aiven as aiven
|
|
147
|
+
|
|
148
|
+
tf_user = aiven.get_organization_application_user(organization_id=main["id"],
|
|
149
|
+
user_id="u123a456b7890c")
|
|
150
|
+
```
|
|
151
|
+
|
|
152
|
+
|
|
153
|
+
:param str organization_id: The ID of the organization the application user belongs to.
|
|
154
|
+
:param str user_id: The ID of the application user.
|
|
155
|
+
"""
|
|
156
|
+
...
|
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
|
|