pulumi-aiven 6.16.0a1715922839__py3-none-any.whl → 6.16.0a1716589862__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 +1096 -216
- 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 +1 -1
- pulumi_aiven/get_my_sql.py +14 -1
- 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/outputs.py +1758 -285
- 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.0a1715922839.dist-info → pulumi_aiven-6.16.0a1716589862.dist-info}/METADATA +1 -1
- {pulumi_aiven-6.16.0a1715922839.dist-info → pulumi_aiven-6.16.0a1716589862.dist-info}/RECORD +39 -39
- {pulumi_aiven-6.16.0a1715922839.dist-info → pulumi_aiven-6.16.0a1716589862.dist-info}/WHEEL +0 -0
- {pulumi_aiven-6.16.0a1715922839.dist-info → pulumi_aiven-6.16.0a1716589862.dist-info}/top_level.txt +0 -0
|
@@ -24,10 +24,8 @@ class FlinkApplicationDeploymentArgs:
|
|
|
24
24
|
"""
|
|
25
25
|
The set of arguments for constructing a FlinkApplicationDeployment resource.
|
|
26
26
|
:param pulumi.Input[str] application_id: Application ID
|
|
27
|
-
:param pulumi.Input[str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a
|
|
28
|
-
|
|
29
|
-
:param pulumi.Input[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
|
|
30
|
-
reference. Changing this property forces recreation of the resource.
|
|
27
|
+
:param pulumi.Input[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.
|
|
28
|
+
:param pulumi.Input[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.
|
|
31
29
|
:param pulumi.Input[str] version_id: ApplicationVersion ID
|
|
32
30
|
:param pulumi.Input[int] parallelism: Flink Job parallelism
|
|
33
31
|
:param pulumi.Input[bool] restart_enabled: Specifies whether a Flink Job is restarted in case it fails
|
|
@@ -60,8 +58,7 @@ class FlinkApplicationDeploymentArgs:
|
|
|
60
58
|
@pulumi.getter
|
|
61
59
|
def project(self) -> pulumi.Input[str]:
|
|
62
60
|
"""
|
|
63
|
-
The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a
|
|
64
|
-
reference. Changing this property forces recreation of the resource.
|
|
61
|
+
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.
|
|
65
62
|
"""
|
|
66
63
|
return pulumi.get(self, "project")
|
|
67
64
|
|
|
@@ -73,8 +70,7 @@ class FlinkApplicationDeploymentArgs:
|
|
|
73
70
|
@pulumi.getter(name="serviceName")
|
|
74
71
|
def service_name(self) -> pulumi.Input[str]:
|
|
75
72
|
"""
|
|
76
|
-
The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a
|
|
77
|
-
reference. Changing this property forces recreation of the resource.
|
|
73
|
+
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.
|
|
78
74
|
"""
|
|
79
75
|
return pulumi.get(self, "service_name")
|
|
80
76
|
|
|
@@ -149,11 +145,9 @@ class _FlinkApplicationDeploymentState:
|
|
|
149
145
|
:param pulumi.Input[str] created_at: Application deployment creation time
|
|
150
146
|
:param pulumi.Input[str] created_by: Application deployment creator
|
|
151
147
|
:param pulumi.Input[int] parallelism: Flink Job parallelism
|
|
152
|
-
:param pulumi.Input[str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a
|
|
153
|
-
reference. Changing this property forces recreation of the resource.
|
|
148
|
+
:param pulumi.Input[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.
|
|
154
149
|
:param pulumi.Input[bool] restart_enabled: Specifies whether a Flink Job is restarted in case it fails
|
|
155
|
-
:param pulumi.Input[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
|
|
156
|
-
reference. Changing this property forces recreation of the resource.
|
|
150
|
+
:param pulumi.Input[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.
|
|
157
151
|
:param pulumi.Input[str] starting_savepoint: Job savepoint
|
|
158
152
|
:param pulumi.Input[str] version_id: ApplicationVersion ID
|
|
159
153
|
"""
|
|
@@ -228,8 +222,7 @@ class _FlinkApplicationDeploymentState:
|
|
|
228
222
|
@pulumi.getter
|
|
229
223
|
def project(self) -> Optional[pulumi.Input[str]]:
|
|
230
224
|
"""
|
|
231
|
-
The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a
|
|
232
|
-
reference. Changing this property forces recreation of the resource.
|
|
225
|
+
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.
|
|
233
226
|
"""
|
|
234
227
|
return pulumi.get(self, "project")
|
|
235
228
|
|
|
@@ -253,8 +246,7 @@ class _FlinkApplicationDeploymentState:
|
|
|
253
246
|
@pulumi.getter(name="serviceName")
|
|
254
247
|
def service_name(self) -> Optional[pulumi.Input[str]]:
|
|
255
248
|
"""
|
|
256
|
-
The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a
|
|
257
|
-
reference. Changing this property forces recreation of the resource.
|
|
249
|
+
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.
|
|
258
250
|
"""
|
|
259
251
|
return pulumi.get(self, "service_name")
|
|
260
252
|
|
|
@@ -301,16 +293,34 @@ class FlinkApplicationDeployment(pulumi.CustomResource):
|
|
|
301
293
|
version_id: Optional[pulumi.Input[str]] = None,
|
|
302
294
|
__props__=None):
|
|
303
295
|
"""
|
|
304
|
-
|
|
296
|
+
The Flink Application Deployment resource allows the creation and management of Aiven Flink Application Deployments.
|
|
297
|
+
|
|
298
|
+
## Example Usage
|
|
299
|
+
|
|
300
|
+
```python
|
|
301
|
+
import pulumi
|
|
302
|
+
import pulumi_aiven as aiven
|
|
303
|
+
|
|
304
|
+
deployment = aiven.FlinkApplicationDeployment("deployment",
|
|
305
|
+
project=foo["project"],
|
|
306
|
+
service_name=foo_aiven_flink["serviceName"],
|
|
307
|
+
application_id=foo_app["applicationId"],
|
|
308
|
+
version_id=foo_app_version["applicationVersionId"])
|
|
309
|
+
```
|
|
310
|
+
|
|
311
|
+
## Import
|
|
312
|
+
|
|
313
|
+
```sh
|
|
314
|
+
$ pulumi import aiven:index/flinkApplicationDeployment:FlinkApplicationDeployment foo_deploy PROJECT/SERVICE/APPLICATION_ID/APPLICATION_VERSION_ID/DEPLOYMENT_ID
|
|
315
|
+
```
|
|
316
|
+
|
|
305
317
|
:param str resource_name: The name of the resource.
|
|
306
318
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
307
319
|
:param pulumi.Input[str] application_id: Application ID
|
|
308
320
|
:param pulumi.Input[int] parallelism: Flink Job parallelism
|
|
309
|
-
:param pulumi.Input[str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a
|
|
310
|
-
reference. Changing this property forces recreation of the resource.
|
|
321
|
+
:param pulumi.Input[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.
|
|
311
322
|
:param pulumi.Input[bool] restart_enabled: Specifies whether a Flink Job is restarted in case it fails
|
|
312
|
-
:param pulumi.Input[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
|
|
313
|
-
reference. Changing this property forces recreation of the resource.
|
|
323
|
+
:param pulumi.Input[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.
|
|
314
324
|
:param pulumi.Input[str] starting_savepoint: Job savepoint
|
|
315
325
|
:param pulumi.Input[str] version_id: ApplicationVersion ID
|
|
316
326
|
"""
|
|
@@ -321,7 +331,27 @@ class FlinkApplicationDeployment(pulumi.CustomResource):
|
|
|
321
331
|
args: FlinkApplicationDeploymentArgs,
|
|
322
332
|
opts: Optional[pulumi.ResourceOptions] = None):
|
|
323
333
|
"""
|
|
324
|
-
|
|
334
|
+
The Flink Application Deployment resource allows the creation and management of Aiven Flink Application Deployments.
|
|
335
|
+
|
|
336
|
+
## Example Usage
|
|
337
|
+
|
|
338
|
+
```python
|
|
339
|
+
import pulumi
|
|
340
|
+
import pulumi_aiven as aiven
|
|
341
|
+
|
|
342
|
+
deployment = aiven.FlinkApplicationDeployment("deployment",
|
|
343
|
+
project=foo["project"],
|
|
344
|
+
service_name=foo_aiven_flink["serviceName"],
|
|
345
|
+
application_id=foo_app["applicationId"],
|
|
346
|
+
version_id=foo_app_version["applicationVersionId"])
|
|
347
|
+
```
|
|
348
|
+
|
|
349
|
+
## Import
|
|
350
|
+
|
|
351
|
+
```sh
|
|
352
|
+
$ pulumi import aiven:index/flinkApplicationDeployment:FlinkApplicationDeployment foo_deploy PROJECT/SERVICE/APPLICATION_ID/APPLICATION_VERSION_ID/DEPLOYMENT_ID
|
|
353
|
+
```
|
|
354
|
+
|
|
325
355
|
:param str resource_name: The name of the resource.
|
|
326
356
|
:param FlinkApplicationDeploymentArgs args: The arguments to use to populate this resource's properties.
|
|
327
357
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
@@ -400,11 +430,9 @@ class FlinkApplicationDeployment(pulumi.CustomResource):
|
|
|
400
430
|
:param pulumi.Input[str] created_at: Application deployment creation time
|
|
401
431
|
:param pulumi.Input[str] created_by: Application deployment creator
|
|
402
432
|
:param pulumi.Input[int] parallelism: Flink Job parallelism
|
|
403
|
-
:param pulumi.Input[str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a
|
|
404
|
-
reference. Changing this property forces recreation of the resource.
|
|
433
|
+
:param pulumi.Input[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.
|
|
405
434
|
:param pulumi.Input[bool] restart_enabled: Specifies whether a Flink Job is restarted in case it fails
|
|
406
|
-
:param pulumi.Input[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
|
|
407
|
-
reference. Changing this property forces recreation of the resource.
|
|
435
|
+
:param pulumi.Input[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.
|
|
408
436
|
:param pulumi.Input[str] starting_savepoint: Job savepoint
|
|
409
437
|
:param pulumi.Input[str] version_id: ApplicationVersion ID
|
|
410
438
|
"""
|
|
@@ -459,8 +487,7 @@ class FlinkApplicationDeployment(pulumi.CustomResource):
|
|
|
459
487
|
@pulumi.getter
|
|
460
488
|
def project(self) -> pulumi.Output[str]:
|
|
461
489
|
"""
|
|
462
|
-
The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a
|
|
463
|
-
reference. Changing this property forces recreation of the resource.
|
|
490
|
+
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.
|
|
464
491
|
"""
|
|
465
492
|
return pulumi.get(self, "project")
|
|
466
493
|
|
|
@@ -476,8 +503,7 @@ class FlinkApplicationDeployment(pulumi.CustomResource):
|
|
|
476
503
|
@pulumi.getter(name="serviceName")
|
|
477
504
|
def service_name(self) -> pulumi.Output[str]:
|
|
478
505
|
"""
|
|
479
|
-
The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a
|
|
480
|
-
reference. Changing this property forces recreation of the resource.
|
|
506
|
+
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.
|
|
481
507
|
"""
|
|
482
508
|
return pulumi.get(self, "service_name")
|
|
483
509
|
|
pulumi_aiven/gcp_privatelink.py
CHANGED
|
@@ -18,10 +18,8 @@ class GcpPrivatelinkArgs:
|
|
|
18
18
|
service_name: pulumi.Input[str]):
|
|
19
19
|
"""
|
|
20
20
|
The set of arguments for constructing a GcpPrivatelink resource.
|
|
21
|
-
:param pulumi.Input[str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a
|
|
22
|
-
|
|
23
|
-
:param pulumi.Input[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
|
|
24
|
-
reference. Changing this property forces recreation of the resource.
|
|
21
|
+
:param pulumi.Input[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.
|
|
22
|
+
:param pulumi.Input[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.
|
|
25
23
|
"""
|
|
26
24
|
pulumi.set(__self__, "project", project)
|
|
27
25
|
pulumi.set(__self__, "service_name", service_name)
|
|
@@ -30,8 +28,7 @@ class GcpPrivatelinkArgs:
|
|
|
30
28
|
@pulumi.getter
|
|
31
29
|
def project(self) -> pulumi.Input[str]:
|
|
32
30
|
"""
|
|
33
|
-
The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a
|
|
34
|
-
reference. Changing this property forces recreation of the resource.
|
|
31
|
+
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.
|
|
35
32
|
"""
|
|
36
33
|
return pulumi.get(self, "project")
|
|
37
34
|
|
|
@@ -43,8 +40,7 @@ class GcpPrivatelinkArgs:
|
|
|
43
40
|
@pulumi.getter(name="serviceName")
|
|
44
41
|
def service_name(self) -> pulumi.Input[str]:
|
|
45
42
|
"""
|
|
46
|
-
The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a
|
|
47
|
-
reference. Changing this property forces recreation of the resource.
|
|
43
|
+
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.
|
|
48
44
|
"""
|
|
49
45
|
return pulumi.get(self, "service_name")
|
|
50
46
|
|
|
@@ -65,10 +61,8 @@ class _GcpPrivatelinkState:
|
|
|
65
61
|
Input properties used for looking up and filtering GcpPrivatelink resources.
|
|
66
62
|
:param pulumi.Input[str] google_service_attachment: Google Private Service Connect service attachment.
|
|
67
63
|
:param pulumi.Input[str] message: Printable result of the Google Cloud Private Service Connect request.
|
|
68
|
-
:param pulumi.Input[str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a
|
|
69
|
-
|
|
70
|
-
:param pulumi.Input[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
|
|
71
|
-
reference. Changing this property forces recreation of the resource.
|
|
64
|
+
:param pulumi.Input[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.
|
|
65
|
+
:param pulumi.Input[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.
|
|
72
66
|
:param pulumi.Input[str] state: The state of the Private Service Connect resource.
|
|
73
67
|
"""
|
|
74
68
|
if google_service_attachment is not None:
|
|
@@ -110,8 +104,7 @@ class _GcpPrivatelinkState:
|
|
|
110
104
|
@pulumi.getter
|
|
111
105
|
def project(self) -> Optional[pulumi.Input[str]]:
|
|
112
106
|
"""
|
|
113
|
-
The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a
|
|
114
|
-
reference. Changing this property forces recreation of the resource.
|
|
107
|
+
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.
|
|
115
108
|
"""
|
|
116
109
|
return pulumi.get(self, "project")
|
|
117
110
|
|
|
@@ -123,8 +116,7 @@ class _GcpPrivatelinkState:
|
|
|
123
116
|
@pulumi.getter(name="serviceName")
|
|
124
117
|
def service_name(self) -> Optional[pulumi.Input[str]]:
|
|
125
118
|
"""
|
|
126
|
-
The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a
|
|
127
|
-
reference. Changing this property forces recreation of the resource.
|
|
119
|
+
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.
|
|
128
120
|
"""
|
|
129
121
|
return pulumi.get(self, "service_name")
|
|
130
122
|
|
|
@@ -154,13 +146,29 @@ class GcpPrivatelink(pulumi.CustomResource):
|
|
|
154
146
|
service_name: Optional[pulumi.Input[str]] = None,
|
|
155
147
|
__props__=None):
|
|
156
148
|
"""
|
|
157
|
-
|
|
149
|
+
Creates and manages a Google Private Service Connect for an Aiven service in a VPC.
|
|
150
|
+
|
|
151
|
+
## Example Usage
|
|
152
|
+
|
|
153
|
+
```python
|
|
154
|
+
import pulumi
|
|
155
|
+
import pulumi_aiven as aiven
|
|
156
|
+
|
|
157
|
+
main = aiven.GcpPrivatelink("main",
|
|
158
|
+
project=example_project["project"],
|
|
159
|
+
service_name=example_kafka["serviceName"])
|
|
160
|
+
```
|
|
161
|
+
|
|
162
|
+
## Import
|
|
163
|
+
|
|
164
|
+
```sh
|
|
165
|
+
$ pulumi import aiven:index/gcpPrivatelink:GcpPrivatelink main PROJECT/SERVICE_NAME
|
|
166
|
+
```
|
|
167
|
+
|
|
158
168
|
:param str resource_name: The name of the resource.
|
|
159
169
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
160
|
-
:param pulumi.Input[str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a
|
|
161
|
-
|
|
162
|
-
:param pulumi.Input[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
|
|
163
|
-
reference. Changing this property forces recreation of the resource.
|
|
170
|
+
:param pulumi.Input[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.
|
|
171
|
+
:param pulumi.Input[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.
|
|
164
172
|
"""
|
|
165
173
|
...
|
|
166
174
|
@overload
|
|
@@ -169,7 +177,25 @@ class GcpPrivatelink(pulumi.CustomResource):
|
|
|
169
177
|
args: GcpPrivatelinkArgs,
|
|
170
178
|
opts: Optional[pulumi.ResourceOptions] = None):
|
|
171
179
|
"""
|
|
172
|
-
|
|
180
|
+
Creates and manages a Google Private Service Connect for an Aiven service in a VPC.
|
|
181
|
+
|
|
182
|
+
## Example Usage
|
|
183
|
+
|
|
184
|
+
```python
|
|
185
|
+
import pulumi
|
|
186
|
+
import pulumi_aiven as aiven
|
|
187
|
+
|
|
188
|
+
main = aiven.GcpPrivatelink("main",
|
|
189
|
+
project=example_project["project"],
|
|
190
|
+
service_name=example_kafka["serviceName"])
|
|
191
|
+
```
|
|
192
|
+
|
|
193
|
+
## Import
|
|
194
|
+
|
|
195
|
+
```sh
|
|
196
|
+
$ pulumi import aiven:index/gcpPrivatelink:GcpPrivatelink main PROJECT/SERVICE_NAME
|
|
197
|
+
```
|
|
198
|
+
|
|
173
199
|
:param str resource_name: The name of the resource.
|
|
174
200
|
:param GcpPrivatelinkArgs args: The arguments to use to populate this resource's properties.
|
|
175
201
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
@@ -229,10 +255,8 @@ class GcpPrivatelink(pulumi.CustomResource):
|
|
|
229
255
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
230
256
|
:param pulumi.Input[str] google_service_attachment: Google Private Service Connect service attachment.
|
|
231
257
|
:param pulumi.Input[str] message: Printable result of the Google Cloud Private Service Connect request.
|
|
232
|
-
:param pulumi.Input[str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a
|
|
233
|
-
|
|
234
|
-
:param pulumi.Input[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
|
|
235
|
-
reference. Changing this property forces recreation of the resource.
|
|
258
|
+
:param pulumi.Input[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.
|
|
259
|
+
:param pulumi.Input[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.
|
|
236
260
|
:param pulumi.Input[str] state: The state of the Private Service Connect resource.
|
|
237
261
|
"""
|
|
238
262
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
@@ -266,8 +290,7 @@ class GcpPrivatelink(pulumi.CustomResource):
|
|
|
266
290
|
@pulumi.getter
|
|
267
291
|
def project(self) -> pulumi.Output[str]:
|
|
268
292
|
"""
|
|
269
|
-
The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a
|
|
270
|
-
reference. Changing this property forces recreation of the resource.
|
|
293
|
+
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.
|
|
271
294
|
"""
|
|
272
295
|
return pulumi.get(self, "project")
|
|
273
296
|
|
|
@@ -275,8 +298,7 @@ class GcpPrivatelink(pulumi.CustomResource):
|
|
|
275
298
|
@pulumi.getter(name="serviceName")
|
|
276
299
|
def service_name(self) -> pulumi.Output[str]:
|
|
277
300
|
"""
|
|
278
|
-
The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a
|
|
279
|
-
reference. Changing this property forces recreation of the resource.
|
|
301
|
+
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.
|
|
280
302
|
"""
|
|
281
303
|
return pulumi.get(self, "service_name")
|
|
282
304
|
|
|
@@ -19,10 +19,8 @@ class GcpPrivatelinkConnectionApprovalArgs:
|
|
|
19
19
|
user_ip_address: pulumi.Input[str]):
|
|
20
20
|
"""
|
|
21
21
|
The set of arguments for constructing a GcpPrivatelinkConnectionApproval resource.
|
|
22
|
-
:param pulumi.Input[str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a
|
|
23
|
-
|
|
24
|
-
:param pulumi.Input[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
|
|
25
|
-
reference. Changing this property forces recreation of the resource.
|
|
22
|
+
:param pulumi.Input[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.
|
|
23
|
+
:param pulumi.Input[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.
|
|
26
24
|
:param pulumi.Input[str] user_ip_address: The Private Service Connect connection user IP address.
|
|
27
25
|
"""
|
|
28
26
|
pulumi.set(__self__, "project", project)
|
|
@@ -33,8 +31,7 @@ class GcpPrivatelinkConnectionApprovalArgs:
|
|
|
33
31
|
@pulumi.getter
|
|
34
32
|
def project(self) -> pulumi.Input[str]:
|
|
35
33
|
"""
|
|
36
|
-
The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a
|
|
37
|
-
reference. Changing this property forces recreation of the resource.
|
|
34
|
+
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.
|
|
38
35
|
"""
|
|
39
36
|
return pulumi.get(self, "project")
|
|
40
37
|
|
|
@@ -46,8 +43,7 @@ class GcpPrivatelinkConnectionApprovalArgs:
|
|
|
46
43
|
@pulumi.getter(name="serviceName")
|
|
47
44
|
def service_name(self) -> pulumi.Input[str]:
|
|
48
45
|
"""
|
|
49
|
-
The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a
|
|
50
|
-
reference. Changing this property forces recreation of the resource.
|
|
46
|
+
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.
|
|
51
47
|
"""
|
|
52
48
|
return pulumi.get(self, "service_name")
|
|
53
49
|
|
|
@@ -80,11 +76,9 @@ class _GcpPrivatelinkConnectionApprovalState:
|
|
|
80
76
|
"""
|
|
81
77
|
Input properties used for looking up and filtering GcpPrivatelinkConnectionApproval resources.
|
|
82
78
|
:param pulumi.Input[str] privatelink_connection_id: Aiven internal ID for the private link connection.
|
|
83
|
-
:param pulumi.Input[str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a
|
|
84
|
-
reference. Changing this property forces recreation of the resource.
|
|
79
|
+
:param pulumi.Input[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.
|
|
85
80
|
:param pulumi.Input[str] psc_connection_id: The Google Private Service Connect connection ID.
|
|
86
|
-
:param pulumi.Input[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
|
|
87
|
-
reference. Changing this property forces recreation of the resource.
|
|
81
|
+
:param pulumi.Input[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.
|
|
88
82
|
:param pulumi.Input[str] state: The state of the connection.
|
|
89
83
|
:param pulumi.Input[str] user_ip_address: The Private Service Connect connection user IP address.
|
|
90
84
|
"""
|
|
@@ -117,8 +111,7 @@ class _GcpPrivatelinkConnectionApprovalState:
|
|
|
117
111
|
@pulumi.getter
|
|
118
112
|
def project(self) -> Optional[pulumi.Input[str]]:
|
|
119
113
|
"""
|
|
120
|
-
The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a
|
|
121
|
-
reference. Changing this property forces recreation of the resource.
|
|
114
|
+
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.
|
|
122
115
|
"""
|
|
123
116
|
return pulumi.get(self, "project")
|
|
124
117
|
|
|
@@ -142,8 +135,7 @@ class _GcpPrivatelinkConnectionApprovalState:
|
|
|
142
135
|
@pulumi.getter(name="serviceName")
|
|
143
136
|
def service_name(self) -> Optional[pulumi.Input[str]]:
|
|
144
137
|
"""
|
|
145
|
-
The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a
|
|
146
|
-
reference. Changing this property forces recreation of the resource.
|
|
138
|
+
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.
|
|
147
139
|
"""
|
|
148
140
|
return pulumi.get(self, "service_name")
|
|
149
141
|
|
|
@@ -186,13 +178,30 @@ class GcpPrivatelinkConnectionApproval(pulumi.CustomResource):
|
|
|
186
178
|
user_ip_address: Optional[pulumi.Input[str]] = None,
|
|
187
179
|
__props__=None):
|
|
188
180
|
"""
|
|
189
|
-
|
|
181
|
+
Approves a Google Private Service Connect connection to an Aiven service with an associated endpoint IP.
|
|
182
|
+
|
|
183
|
+
## Example Usage
|
|
184
|
+
|
|
185
|
+
```python
|
|
186
|
+
import pulumi
|
|
187
|
+
import pulumi_aiven as aiven
|
|
188
|
+
|
|
189
|
+
approve = aiven.GcpPrivatelinkConnectionApproval("approve",
|
|
190
|
+
project=example_project["project"],
|
|
191
|
+
service_name=example_kafka["serviceName"],
|
|
192
|
+
user_ip_address="10.0.0.100")
|
|
193
|
+
```
|
|
194
|
+
|
|
195
|
+
## Import
|
|
196
|
+
|
|
197
|
+
```sh
|
|
198
|
+
$ pulumi import aiven:index/gcpPrivatelinkConnectionApproval:GcpPrivatelinkConnectionApproval main PROJECT/SERVICE_NAME
|
|
199
|
+
```
|
|
200
|
+
|
|
190
201
|
:param str resource_name: The name of the resource.
|
|
191
202
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
192
|
-
:param pulumi.Input[str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a
|
|
193
|
-
|
|
194
|
-
:param pulumi.Input[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
|
|
195
|
-
reference. Changing this property forces recreation of the resource.
|
|
203
|
+
:param pulumi.Input[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.
|
|
204
|
+
:param pulumi.Input[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.
|
|
196
205
|
:param pulumi.Input[str] user_ip_address: The Private Service Connect connection user IP address.
|
|
197
206
|
"""
|
|
198
207
|
...
|
|
@@ -202,7 +211,26 @@ class GcpPrivatelinkConnectionApproval(pulumi.CustomResource):
|
|
|
202
211
|
args: GcpPrivatelinkConnectionApprovalArgs,
|
|
203
212
|
opts: Optional[pulumi.ResourceOptions] = None):
|
|
204
213
|
"""
|
|
205
|
-
|
|
214
|
+
Approves a Google Private Service Connect connection to an Aiven service with an associated endpoint IP.
|
|
215
|
+
|
|
216
|
+
## Example Usage
|
|
217
|
+
|
|
218
|
+
```python
|
|
219
|
+
import pulumi
|
|
220
|
+
import pulumi_aiven as aiven
|
|
221
|
+
|
|
222
|
+
approve = aiven.GcpPrivatelinkConnectionApproval("approve",
|
|
223
|
+
project=example_project["project"],
|
|
224
|
+
service_name=example_kafka["serviceName"],
|
|
225
|
+
user_ip_address="10.0.0.100")
|
|
226
|
+
```
|
|
227
|
+
|
|
228
|
+
## Import
|
|
229
|
+
|
|
230
|
+
```sh
|
|
231
|
+
$ pulumi import aiven:index/gcpPrivatelinkConnectionApproval:GcpPrivatelinkConnectionApproval main PROJECT/SERVICE_NAME
|
|
232
|
+
```
|
|
233
|
+
|
|
206
234
|
:param str resource_name: The name of the resource.
|
|
207
235
|
:param GcpPrivatelinkConnectionApprovalArgs args: The arguments to use to populate this resource's properties.
|
|
208
236
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
@@ -266,11 +294,9 @@ class GcpPrivatelinkConnectionApproval(pulumi.CustomResource):
|
|
|
266
294
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
267
295
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
268
296
|
:param pulumi.Input[str] privatelink_connection_id: Aiven internal ID for the private link connection.
|
|
269
|
-
:param pulumi.Input[str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a
|
|
270
|
-
reference. Changing this property forces recreation of the resource.
|
|
297
|
+
:param pulumi.Input[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.
|
|
271
298
|
:param pulumi.Input[str] psc_connection_id: The Google Private Service Connect connection ID.
|
|
272
|
-
:param pulumi.Input[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
|
|
273
|
-
reference. Changing this property forces recreation of the resource.
|
|
299
|
+
:param pulumi.Input[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.
|
|
274
300
|
:param pulumi.Input[str] state: The state of the connection.
|
|
275
301
|
:param pulumi.Input[str] user_ip_address: The Private Service Connect connection user IP address.
|
|
276
302
|
"""
|
|
@@ -298,8 +324,7 @@ class GcpPrivatelinkConnectionApproval(pulumi.CustomResource):
|
|
|
298
324
|
@pulumi.getter
|
|
299
325
|
def project(self) -> pulumi.Output[str]:
|
|
300
326
|
"""
|
|
301
|
-
The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a
|
|
302
|
-
reference. Changing this property forces recreation of the resource.
|
|
327
|
+
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.
|
|
303
328
|
"""
|
|
304
329
|
return pulumi.get(self, "project")
|
|
305
330
|
|
|
@@ -315,8 +340,7 @@ class GcpPrivatelinkConnectionApproval(pulumi.CustomResource):
|
|
|
315
340
|
@pulumi.getter(name="serviceName")
|
|
316
341
|
def service_name(self) -> pulumi.Output[str]:
|
|
317
342
|
"""
|
|
318
|
-
The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a
|
|
319
|
-
reference. Changing this property forces recreation of the resource.
|
|
343
|
+
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.
|
|
320
344
|
"""
|
|
321
345
|
return pulumi.get(self, "service_name")
|
|
322
346
|
|
pulumi_aiven/get_cassanda.py
CHANGED
|
@@ -24,13 +24,16 @@ class GetCassandaResult:
|
|
|
24
24
|
"""
|
|
25
25
|
A collection of values returned by getCassanda.
|
|
26
26
|
"""
|
|
27
|
-
def __init__(__self__, additional_disk_space=None, cassandra_user_configs=None, cloud_name=None, components=None, disk_space=None, disk_space_cap=None, disk_space_default=None, disk_space_step=None, disk_space_used=None, id=None, maintenance_window_dow=None, maintenance_window_time=None, plan=None, project=None, project_vpc_id=None, service_host=None, service_integrations=None, service_name=None, service_password=None, service_port=None, service_type=None, service_uri=None, service_username=None, state=None, static_ips=None, tags=None, tech_emails=None, termination_protection=None):
|
|
27
|
+
def __init__(__self__, additional_disk_space=None, cassandra_user_configs=None, cassandras=None, cloud_name=None, components=None, disk_space=None, disk_space_cap=None, disk_space_default=None, disk_space_step=None, disk_space_used=None, id=None, maintenance_window_dow=None, maintenance_window_time=None, plan=None, project=None, project_vpc_id=None, service_host=None, service_integrations=None, service_name=None, service_password=None, service_port=None, service_type=None, service_uri=None, service_username=None, state=None, static_ips=None, tags=None, tech_emails=None, termination_protection=None):
|
|
28
28
|
if additional_disk_space and not isinstance(additional_disk_space, str):
|
|
29
29
|
raise TypeError("Expected argument 'additional_disk_space' to be a str")
|
|
30
30
|
pulumi.set(__self__, "additional_disk_space", additional_disk_space)
|
|
31
31
|
if cassandra_user_configs and not isinstance(cassandra_user_configs, list):
|
|
32
32
|
raise TypeError("Expected argument 'cassandra_user_configs' to be a list")
|
|
33
33
|
pulumi.set(__self__, "cassandra_user_configs", cassandra_user_configs)
|
|
34
|
+
if cassandras and not isinstance(cassandras, list):
|
|
35
|
+
raise TypeError("Expected argument 'cassandras' to be a list")
|
|
36
|
+
pulumi.set(__self__, "cassandras", cassandras)
|
|
34
37
|
if cloud_name and not isinstance(cloud_name, str):
|
|
35
38
|
raise TypeError("Expected argument 'cloud_name' to be a str")
|
|
36
39
|
pulumi.set(__self__, "cloud_name", cloud_name)
|
|
@@ -126,6 +129,14 @@ class GetCassandaResult:
|
|
|
126
129
|
"""
|
|
127
130
|
return pulumi.get(self, "cassandra_user_configs")
|
|
128
131
|
|
|
132
|
+
@property
|
|
133
|
+
@pulumi.getter
|
|
134
|
+
def cassandras(self) -> Sequence['outputs.GetCassandaCassandraResult']:
|
|
135
|
+
"""
|
|
136
|
+
Cassandra server provided values
|
|
137
|
+
"""
|
|
138
|
+
return pulumi.get(self, "cassandras")
|
|
139
|
+
|
|
129
140
|
@property
|
|
130
141
|
@pulumi.getter(name="cloudName")
|
|
131
142
|
def cloud_name(self) -> str:
|
|
@@ -343,6 +354,7 @@ class AwaitableGetCassandaResult(GetCassandaResult):
|
|
|
343
354
|
return GetCassandaResult(
|
|
344
355
|
additional_disk_space=self.additional_disk_space,
|
|
345
356
|
cassandra_user_configs=self.cassandra_user_configs,
|
|
357
|
+
cassandras=self.cassandras,
|
|
346
358
|
cloud_name=self.cloud_name,
|
|
347
359
|
components=self.components,
|
|
348
360
|
disk_space=self.disk_space,
|
|
@@ -401,6 +413,7 @@ def get_cassanda(project: Optional[str] = None,
|
|
|
401
413
|
return AwaitableGetCassandaResult(
|
|
402
414
|
additional_disk_space=pulumi.get(__ret__, 'additional_disk_space'),
|
|
403
415
|
cassandra_user_configs=pulumi.get(__ret__, 'cassandra_user_configs'),
|
|
416
|
+
cassandras=pulumi.get(__ret__, 'cassandras'),
|
|
404
417
|
cloud_name=pulumi.get(__ret__, 'cloud_name'),
|
|
405
418
|
components=pulumi.get(__ret__, 'components'),
|
|
406
419
|
disk_space=pulumi.get(__ret__, 'disk_space'),
|
pulumi_aiven/get_cassandra.py
CHANGED
|
@@ -22,13 +22,16 @@ class GetCassandraResult:
|
|
|
22
22
|
"""
|
|
23
23
|
A collection of values returned by getCassandra.
|
|
24
24
|
"""
|
|
25
|
-
def __init__(__self__, additional_disk_space=None, cassandra_user_configs=None, cloud_name=None, components=None, disk_space=None, disk_space_cap=None, disk_space_default=None, disk_space_step=None, disk_space_used=None, id=None, maintenance_window_dow=None, maintenance_window_time=None, plan=None, project=None, project_vpc_id=None, service_host=None, service_integrations=None, service_name=None, service_password=None, service_port=None, service_type=None, service_uri=None, service_username=None, state=None, static_ips=None, tags=None, tech_emails=None, termination_protection=None):
|
|
25
|
+
def __init__(__self__, additional_disk_space=None, cassandra_user_configs=None, cassandras=None, cloud_name=None, components=None, disk_space=None, disk_space_cap=None, disk_space_default=None, disk_space_step=None, disk_space_used=None, id=None, maintenance_window_dow=None, maintenance_window_time=None, plan=None, project=None, project_vpc_id=None, service_host=None, service_integrations=None, service_name=None, service_password=None, service_port=None, service_type=None, service_uri=None, service_username=None, state=None, static_ips=None, tags=None, tech_emails=None, termination_protection=None):
|
|
26
26
|
if additional_disk_space and not isinstance(additional_disk_space, str):
|
|
27
27
|
raise TypeError("Expected argument 'additional_disk_space' to be a str")
|
|
28
28
|
pulumi.set(__self__, "additional_disk_space", additional_disk_space)
|
|
29
29
|
if cassandra_user_configs and not isinstance(cassandra_user_configs, list):
|
|
30
30
|
raise TypeError("Expected argument 'cassandra_user_configs' to be a list")
|
|
31
31
|
pulumi.set(__self__, "cassandra_user_configs", cassandra_user_configs)
|
|
32
|
+
if cassandras and not isinstance(cassandras, list):
|
|
33
|
+
raise TypeError("Expected argument 'cassandras' to be a list")
|
|
34
|
+
pulumi.set(__self__, "cassandras", cassandras)
|
|
32
35
|
if cloud_name and not isinstance(cloud_name, str):
|
|
33
36
|
raise TypeError("Expected argument 'cloud_name' to be a str")
|
|
34
37
|
pulumi.set(__self__, "cloud_name", cloud_name)
|
|
@@ -124,6 +127,14 @@ class GetCassandraResult:
|
|
|
124
127
|
"""
|
|
125
128
|
return pulumi.get(self, "cassandra_user_configs")
|
|
126
129
|
|
|
130
|
+
@property
|
|
131
|
+
@pulumi.getter
|
|
132
|
+
def cassandras(self) -> Sequence['outputs.GetCassandraCassandraResult']:
|
|
133
|
+
"""
|
|
134
|
+
Cassandra server provided values
|
|
135
|
+
"""
|
|
136
|
+
return pulumi.get(self, "cassandras")
|
|
137
|
+
|
|
127
138
|
@property
|
|
128
139
|
@pulumi.getter(name="cloudName")
|
|
129
140
|
def cloud_name(self) -> str:
|
|
@@ -341,6 +352,7 @@ class AwaitableGetCassandraResult(GetCassandraResult):
|
|
|
341
352
|
return GetCassandraResult(
|
|
342
353
|
additional_disk_space=self.additional_disk_space,
|
|
343
354
|
cassandra_user_configs=self.cassandra_user_configs,
|
|
355
|
+
cassandras=self.cassandras,
|
|
344
356
|
cloud_name=self.cloud_name,
|
|
345
357
|
components=self.components,
|
|
346
358
|
disk_space=self.disk_space,
|
|
@@ -398,6 +410,7 @@ def get_cassandra(project: Optional[str] = None,
|
|
|
398
410
|
return AwaitableGetCassandraResult(
|
|
399
411
|
additional_disk_space=pulumi.get(__ret__, 'additional_disk_space'),
|
|
400
412
|
cassandra_user_configs=pulumi.get(__ret__, 'cassandra_user_configs'),
|
|
413
|
+
cassandras=pulumi.get(__ret__, 'cassandras'),
|
|
401
414
|
cloud_name=pulumi.get(__ret__, 'cloud_name'),
|
|
402
415
|
components=pulumi.get(__ret__, 'components'),
|
|
403
416
|
disk_space=pulumi.get(__ret__, 'disk_space'),
|
pulumi_aiven/get_clickhouse.py
CHANGED
|
@@ -22,13 +22,16 @@ class GetClickhouseResult:
|
|
|
22
22
|
"""
|
|
23
23
|
A collection of values returned by getClickhouse.
|
|
24
24
|
"""
|
|
25
|
-
def __init__(__self__, additional_disk_space=None, clickhouse_user_configs=None, cloud_name=None, components=None, disk_space=None, disk_space_cap=None, disk_space_default=None, disk_space_step=None, disk_space_used=None, id=None, maintenance_window_dow=None, maintenance_window_time=None, plan=None, project=None, project_vpc_id=None, service_host=None, service_integrations=None, service_name=None, service_password=None, service_port=None, service_type=None, service_uri=None, service_username=None, state=None, static_ips=None, tags=None, tech_emails=None, termination_protection=None):
|
|
25
|
+
def __init__(__self__, additional_disk_space=None, clickhouse_user_configs=None, clickhouses=None, cloud_name=None, components=None, disk_space=None, disk_space_cap=None, disk_space_default=None, disk_space_step=None, disk_space_used=None, id=None, maintenance_window_dow=None, maintenance_window_time=None, plan=None, project=None, project_vpc_id=None, service_host=None, service_integrations=None, service_name=None, service_password=None, service_port=None, service_type=None, service_uri=None, service_username=None, state=None, static_ips=None, tags=None, tech_emails=None, termination_protection=None):
|
|
26
26
|
if additional_disk_space and not isinstance(additional_disk_space, str):
|
|
27
27
|
raise TypeError("Expected argument 'additional_disk_space' to be a str")
|
|
28
28
|
pulumi.set(__self__, "additional_disk_space", additional_disk_space)
|
|
29
29
|
if clickhouse_user_configs and not isinstance(clickhouse_user_configs, list):
|
|
30
30
|
raise TypeError("Expected argument 'clickhouse_user_configs' to be a list")
|
|
31
31
|
pulumi.set(__self__, "clickhouse_user_configs", clickhouse_user_configs)
|
|
32
|
+
if clickhouses and not isinstance(clickhouses, list):
|
|
33
|
+
raise TypeError("Expected argument 'clickhouses' to be a list")
|
|
34
|
+
pulumi.set(__self__, "clickhouses", clickhouses)
|
|
32
35
|
if cloud_name and not isinstance(cloud_name, str):
|
|
33
36
|
raise TypeError("Expected argument 'cloud_name' to be a str")
|
|
34
37
|
pulumi.set(__self__, "cloud_name", cloud_name)
|
|
@@ -124,6 +127,14 @@ class GetClickhouseResult:
|
|
|
124
127
|
"""
|
|
125
128
|
return pulumi.get(self, "clickhouse_user_configs")
|
|
126
129
|
|
|
130
|
+
@property
|
|
131
|
+
@pulumi.getter
|
|
132
|
+
def clickhouses(self) -> Sequence['outputs.GetClickhouseClickhouseResult']:
|
|
133
|
+
"""
|
|
134
|
+
Clickhouse server provided values
|
|
135
|
+
"""
|
|
136
|
+
return pulumi.get(self, "clickhouses")
|
|
137
|
+
|
|
127
138
|
@property
|
|
128
139
|
@pulumi.getter(name="cloudName")
|
|
129
140
|
def cloud_name(self) -> str:
|
|
@@ -341,6 +352,7 @@ class AwaitableGetClickhouseResult(GetClickhouseResult):
|
|
|
341
352
|
return GetClickhouseResult(
|
|
342
353
|
additional_disk_space=self.additional_disk_space,
|
|
343
354
|
clickhouse_user_configs=self.clickhouse_user_configs,
|
|
355
|
+
clickhouses=self.clickhouses,
|
|
344
356
|
cloud_name=self.cloud_name,
|
|
345
357
|
components=self.components,
|
|
346
358
|
disk_space=self.disk_space,
|
|
@@ -398,6 +410,7 @@ def get_clickhouse(project: Optional[str] = None,
|
|
|
398
410
|
return AwaitableGetClickhouseResult(
|
|
399
411
|
additional_disk_space=pulumi.get(__ret__, 'additional_disk_space'),
|
|
400
412
|
clickhouse_user_configs=pulumi.get(__ret__, 'clickhouse_user_configs'),
|
|
413
|
+
clickhouses=pulumi.get(__ret__, 'clickhouses'),
|
|
401
414
|
cloud_name=pulumi.get(__ret__, 'cloud_name'),
|
|
402
415
|
components=pulumi.get(__ret__, 'components'),
|
|
403
416
|
disk_space=pulumi.get(__ret__, 'disk_space'),
|