pulumi-aiven 6.13.0a1710156545__py3-none-any.whl → 6.31.0a1736831339__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 +127 -0
- pulumi_aiven/_inputs.py +32615 -13711
- pulumi_aiven/_utilities.py +41 -5
- pulumi_aiven/account.py +32 -45
- pulumi_aiven/account_authentication.py +24 -9
- pulumi_aiven/account_team.py +35 -14
- pulumi_aiven/account_team_member.py +48 -39
- pulumi_aiven/account_team_project.py +40 -27
- pulumi_aiven/alloydbomni.py +1335 -0
- pulumi_aiven/alloydbomni_database.py +347 -0
- pulumi_aiven/alloydbomni_user.py +433 -0
- pulumi_aiven/aws_privatelink.py +44 -43
- pulumi_aiven/aws_vpc_peering_connection.py +72 -61
- pulumi_aiven/azure_privatelink.py +54 -53
- pulumi_aiven/azure_privatelink_connection_approval.py +136 -33
- pulumi_aiven/azure_vpc_peering_connection.py +86 -77
- pulumi_aiven/billing_group.py +33 -34
- pulumi_aiven/cassandra.py +145 -126
- pulumi_aiven/cassandra_user.py +59 -58
- pulumi_aiven/clickhouse.py +133 -114
- pulumi_aiven/clickhouse_database.py +58 -62
- pulumi_aiven/clickhouse_grant.py +135 -134
- pulumi_aiven/clickhouse_role.py +36 -49
- pulumi_aiven/clickhouse_user.py +50 -49
- pulumi_aiven/config/__init__.pyi +5 -0
- pulumi_aiven/config/vars.py +5 -0
- pulumi_aiven/connection_pool.py +67 -66
- pulumi_aiven/dragonfly.py +1256 -0
- pulumi_aiven/flink.py +104 -104
- pulumi_aiven/flink_application.py +58 -55
- pulumi_aiven/flink_application_deployment.py +178 -73
- pulumi_aiven/flink_application_version.py +179 -96
- pulumi_aiven/gcp_privatelink.py +69 -42
- pulumi_aiven/gcp_privatelink_connection_approval.py +78 -49
- pulumi_aiven/gcp_vpc_peering_connection.py +49 -48
- pulumi_aiven/get_account.py +20 -9
- pulumi_aiven/get_account_authentication.py +31 -5
- pulumi_aiven/get_account_team.py +18 -5
- pulumi_aiven/get_account_team_member.py +29 -14
- pulumi_aiven/get_account_team_project.py +19 -6
- pulumi_aiven/get_alloydbomni.py +499 -0
- pulumi_aiven/get_alloydbomni_database.py +168 -0
- pulumi_aiven/get_alloydbomni_user.py +210 -0
- pulumi_aiven/get_aws_privatelink.py +33 -24
- pulumi_aiven/get_aws_vpc_peering_connection.py +56 -33
- pulumi_aiven/get_azure_privatelink.py +37 -26
- pulumi_aiven/get_azure_vpc_peering_connection.py +77 -28
- pulumi_aiven/get_billing_group.py +31 -8
- pulumi_aiven/get_cassanda.py +55 -23
- pulumi_aiven/get_cassandra.py +55 -23
- pulumi_aiven/get_cassandra_user.py +42 -30
- pulumi_aiven/get_clickhouse.py +55 -23
- pulumi_aiven/get_clickhouse_database.py +35 -26
- pulumi_aiven/get_clickhouse_user.py +40 -29
- pulumi_aiven/get_connection_pool.py +43 -30
- pulumi_aiven/get_dragonfly.py +499 -0
- pulumi_aiven/get_external_identity.py +160 -0
- pulumi_aiven/get_flink.py +55 -23
- pulumi_aiven/get_flink_application.py +44 -31
- pulumi_aiven/get_flink_application_version.py +55 -37
- pulumi_aiven/get_gcp_privatelink.py +63 -7
- pulumi_aiven/get_gcp_vpc_peering_connection.py +39 -28
- pulumi_aiven/get_grafana.py +55 -23
- pulumi_aiven/get_influx_db.py +41 -5
- pulumi_aiven/get_influxdb_database.py +18 -5
- pulumi_aiven/get_influxdb_user.py +21 -5
- pulumi_aiven/get_kafka.py +59 -25
- pulumi_aiven/get_kafka_acl.py +50 -37
- pulumi_aiven/get_kafka_connect.py +54 -36
- pulumi_aiven/get_kafka_connector.py +44 -28
- pulumi_aiven/get_kafka_mirror_maker.py +50 -32
- pulumi_aiven/get_kafka_schema.py +35 -23
- pulumi_aiven/get_kafka_schema_configuration.py +32 -21
- pulumi_aiven/get_kafka_schema_registry_acl.py +37 -20
- pulumi_aiven/get_kafka_topic.py +70 -29
- pulumi_aiven/get_kafka_user.py +42 -30
- pulumi_aiven/get_m3_aggregator.py +51 -19
- pulumi_aiven/get_m3_db.py +55 -23
- pulumi_aiven/get_m3db_user.py +38 -28
- pulumi_aiven/get_mirror_maker_replication_flow.py +86 -25
- pulumi_aiven/get_my_sql.py +50 -18
- pulumi_aiven/get_mysql_database.py +31 -22
- pulumi_aiven/get_mysql_user.py +36 -23
- pulumi_aiven/get_open_search.py +50 -18
- pulumi_aiven/get_open_search_acl_config.py +27 -19
- pulumi_aiven/get_open_search_acl_rule.py +37 -25
- pulumi_aiven/get_opensearch_security_plugin_config.py +29 -19
- pulumi_aiven/get_opensearch_user.py +32 -22
- pulumi_aiven/get_organization.py +25 -17
- pulumi_aiven/get_organization_application_user.py +176 -0
- pulumi_aiven/get_organization_user.py +18 -5
- pulumi_aiven/get_organization_user_group.py +48 -14
- pulumi_aiven/get_organization_user_list.py +121 -0
- pulumi_aiven/get_organizational_unit.py +26 -14
- pulumi_aiven/get_pg.py +55 -23
- pulumi_aiven/get_pg_database.py +39 -28
- pulumi_aiven/get_pg_user.py +44 -31
- pulumi_aiven/get_project.py +43 -26
- pulumi_aiven/get_project_user.py +27 -19
- pulumi_aiven/get_project_vpc.py +31 -23
- pulumi_aiven/get_redis.py +50 -18
- pulumi_aiven/get_redis_user.py +40 -26
- pulumi_aiven/get_service_component.py +40 -22
- pulumi_aiven/get_service_integration.py +163 -53
- pulumi_aiven/get_service_integration_endpoint.py +128 -37
- pulumi_aiven/get_thanos.py +499 -0
- pulumi_aiven/get_transit_gateway_vpc_attachment.py +35 -22
- pulumi_aiven/get_valkey.py +499 -0
- pulumi_aiven/get_valkey_user.py +218 -0
- pulumi_aiven/grafana.py +188 -322
- pulumi_aiven/influx_db.py +127 -90
- pulumi_aiven/influxdb_database.py +40 -55
- pulumi_aiven/influxdb_user.py +47 -42
- pulumi_aiven/kafka.py +157 -144
- pulumi_aiven/kafka_acl.py +64 -57
- pulumi_aiven/kafka_connect.py +201 -332
- pulumi_aiven/kafka_connector.py +67 -60
- pulumi_aiven/kafka_mirror_maker.py +137 -320
- pulumi_aiven/kafka_native_acl.py +588 -0
- pulumi_aiven/kafka_schema.py +63 -58
- pulumi_aiven/kafka_schema_configuration.py +25 -24
- pulumi_aiven/kafka_schema_registry_acl.py +80 -35
- pulumi_aiven/kafka_topic.py +184 -65
- pulumi_aiven/kafka_user.py +59 -58
- pulumi_aiven/m3_aggregator.py +174 -310
- pulumi_aiven/m3_db.py +190 -326
- pulumi_aiven/m3db_user.py +51 -50
- pulumi_aiven/mirror_maker_replication_flow.py +215 -55
- pulumi_aiven/my_sql.py +188 -324
- pulumi_aiven/mysql_database.py +32 -51
- pulumi_aiven/mysql_user.py +37 -36
- pulumi_aiven/open_search.py +126 -107
- pulumi_aiven/open_search_acl_config.py +33 -36
- pulumi_aiven/open_search_acl_rule.py +55 -54
- pulumi_aiven/opensearch_security_plugin_config.py +69 -16
- pulumi_aiven/opensearch_user.py +30 -29
- pulumi_aiven/organization.py +18 -17
- pulumi_aiven/organization_application_user.py +345 -0
- pulumi_aiven/organization_application_user_token.py +711 -0
- pulumi_aiven/organization_group_project.py +349 -0
- pulumi_aiven/organization_permission.py +421 -0
- pulumi_aiven/organization_user.py +25 -46
- pulumi_aiven/organization_user_group.py +64 -23
- pulumi_aiven/organization_user_group_member.py +359 -0
- pulumi_aiven/organizational_unit.py +41 -36
- pulumi_aiven/outputs.py +38355 -21458
- pulumi_aiven/pg.py +92 -88
- pulumi_aiven/pg_database.py +52 -71
- pulumi_aiven/pg_user.py +80 -65
- pulumi_aiven/project.py +111 -102
- pulumi_aiven/project_user.py +44 -35
- pulumi_aiven/project_vpc.py +58 -29
- pulumi_aiven/provider.py +5 -0
- pulumi_aiven/pulumi-plugin.json +2 -1
- pulumi_aiven/redis.py +161 -297
- pulumi_aiven/redis_user.py +58 -57
- pulumi_aiven/service_integration.py +511 -165
- pulumi_aiven/service_integration_endpoint.py +466 -158
- pulumi_aiven/static_ip.py +21 -16
- pulumi_aiven/thanos.py +1262 -0
- pulumi_aiven/transit_gateway_vpc_attachment.py +44 -58
- pulumi_aiven/valkey.py +1256 -0
- pulumi_aiven/valkey_user.py +606 -0
- {pulumi_aiven-6.13.0a1710156545.dist-info → pulumi_aiven-6.31.0a1736831339.dist-info}/METADATA +7 -6
- pulumi_aiven-6.31.0a1736831339.dist-info/RECORD +169 -0
- {pulumi_aiven-6.13.0a1710156545.dist-info → pulumi_aiven-6.31.0a1736831339.dist-info}/WHEEL +1 -1
- pulumi_aiven-6.13.0a1710156545.dist-info/RECORD +0 -146
- {pulumi_aiven-6.13.0a1710156545.dist-info → pulumi_aiven-6.31.0a1736831339.dist-info}/top_level.txt +0 -0
pulumi_aiven/get_cassandra.py
CHANGED
|
@@ -4,9 +4,14 @@
|
|
|
4
4
|
|
|
5
5
|
import copy
|
|
6
6
|
import warnings
|
|
7
|
+
import sys
|
|
7
8
|
import pulumi
|
|
8
9
|
import pulumi.runtime
|
|
9
10
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
+
if sys.version_info >= (3, 11):
|
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
+
else:
|
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
10
15
|
from . import _utilities
|
|
11
16
|
from . import outputs
|
|
12
17
|
|
|
@@ -115,7 +120,7 @@ class GetCassandraResult:
|
|
|
115
120
|
@pulumi.getter(name="additionalDiskSpace")
|
|
116
121
|
def additional_disk_space(self) -> str:
|
|
117
122
|
"""
|
|
118
|
-
|
|
123
|
+
Add [disk storage](https://aiven.io/docs/platform/howto/add-storage-space) in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart and there might be a short downtime for services with no HA capabilities.
|
|
119
124
|
"""
|
|
120
125
|
return pulumi.get(self, "additional_disk_space")
|
|
121
126
|
|
|
@@ -123,7 +128,7 @@ class GetCassandraResult:
|
|
|
123
128
|
@pulumi.getter(name="cassandraUserConfigs")
|
|
124
129
|
def cassandra_user_configs(self) -> Sequence['outputs.GetCassandraCassandraUserConfigResult']:
|
|
125
130
|
"""
|
|
126
|
-
Cassandra user configurable settings
|
|
131
|
+
Cassandra user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
127
132
|
"""
|
|
128
133
|
return pulumi.get(self, "cassandra_user_configs")
|
|
129
134
|
|
|
@@ -131,7 +136,7 @@ class GetCassandraResult:
|
|
|
131
136
|
@pulumi.getter
|
|
132
137
|
def cassandras(self) -> Sequence['outputs.GetCassandraCassandraResult']:
|
|
133
138
|
"""
|
|
134
|
-
Cassandra server
|
|
139
|
+
Values provided by the Cassandra server.
|
|
135
140
|
"""
|
|
136
141
|
return pulumi.get(self, "cassandras")
|
|
137
142
|
|
|
@@ -219,7 +224,7 @@ class GetCassandraResult:
|
|
|
219
224
|
@pulumi.getter
|
|
220
225
|
def plan(self) -> str:
|
|
221
226
|
"""
|
|
222
|
-
Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be
|
|
227
|
+
Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seen from the [Aiven pricing page](https://aiven.io/pricing).
|
|
223
228
|
"""
|
|
224
229
|
return pulumi.get(self, "plan")
|
|
225
230
|
|
|
@@ -227,7 +232,7 @@ class GetCassandraResult:
|
|
|
227
232
|
@pulumi.getter
|
|
228
233
|
def project(self) -> str:
|
|
229
234
|
"""
|
|
230
|
-
|
|
235
|
+
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.
|
|
231
236
|
"""
|
|
232
237
|
return pulumi.get(self, "project")
|
|
233
238
|
|
|
@@ -331,7 +336,7 @@ class GetCassandraResult:
|
|
|
331
336
|
@pulumi.getter(name="techEmails")
|
|
332
337
|
def tech_emails(self) -> Sequence['outputs.GetCassandraTechEmailResult']:
|
|
333
338
|
"""
|
|
334
|
-
|
|
339
|
+
The email addresses for [service contacts](https://aiven.io/docs/platform/howto/technical-emails), who will receive important alerts and updates about this service. You can also set email contacts at the project level.
|
|
335
340
|
"""
|
|
336
341
|
return pulumi.get(self, "tech_emails")
|
|
337
342
|
|
|
@@ -385,22 +390,20 @@ def get_cassandra(project: Optional[str] = None,
|
|
|
385
390
|
service_name: Optional[str] = None,
|
|
386
391
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetCassandraResult:
|
|
387
392
|
"""
|
|
388
|
-
|
|
393
|
+
Gets information about an Aiven for Apache Cassandra® service.
|
|
389
394
|
|
|
390
395
|
## Example Usage
|
|
391
396
|
|
|
392
|
-
<!--Start PulumiCodeChooser -->
|
|
393
397
|
```python
|
|
394
398
|
import pulumi
|
|
395
399
|
import pulumi_aiven as aiven
|
|
396
400
|
|
|
397
|
-
|
|
398
|
-
service_name="
|
|
401
|
+
example_cassandra = aiven.get_cassandra(project=example_project["project"],
|
|
402
|
+
service_name="example-cassandra-service")
|
|
399
403
|
```
|
|
400
|
-
<!--End PulumiCodeChooser -->
|
|
401
404
|
|
|
402
405
|
|
|
403
|
-
:param str project:
|
|
406
|
+
: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.
|
|
404
407
|
:param str service_name: Specifies the actual name of the service. The name cannot be changed later without destroying and re-creating the service so name should be picked based on intended service usage rather than current attributes.
|
|
405
408
|
"""
|
|
406
409
|
__args__ = dict()
|
|
@@ -439,29 +442,58 @@ def get_cassandra(project: Optional[str] = None,
|
|
|
439
442
|
tags=pulumi.get(__ret__, 'tags'),
|
|
440
443
|
tech_emails=pulumi.get(__ret__, 'tech_emails'),
|
|
441
444
|
termination_protection=pulumi.get(__ret__, 'termination_protection'))
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
@_utilities.lift_output_func(get_cassandra)
|
|
445
445
|
def get_cassandra_output(project: Optional[pulumi.Input[str]] = None,
|
|
446
446
|
service_name: Optional[pulumi.Input[str]] = None,
|
|
447
|
-
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetCassandraResult]:
|
|
447
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetCassandraResult]:
|
|
448
448
|
"""
|
|
449
|
-
|
|
449
|
+
Gets information about an Aiven for Apache Cassandra® service.
|
|
450
450
|
|
|
451
451
|
## Example Usage
|
|
452
452
|
|
|
453
|
-
<!--Start PulumiCodeChooser -->
|
|
454
453
|
```python
|
|
455
454
|
import pulumi
|
|
456
455
|
import pulumi_aiven as aiven
|
|
457
456
|
|
|
458
|
-
|
|
459
|
-
service_name="
|
|
457
|
+
example_cassandra = aiven.get_cassandra(project=example_project["project"],
|
|
458
|
+
service_name="example-cassandra-service")
|
|
460
459
|
```
|
|
461
|
-
<!--End PulumiCodeChooser -->
|
|
462
460
|
|
|
463
461
|
|
|
464
|
-
:param str project:
|
|
462
|
+
: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.
|
|
465
463
|
:param str service_name: Specifies the actual name of the service. The name cannot be changed later without destroying and re-creating the service so name should be picked based on intended service usage rather than current attributes.
|
|
466
464
|
"""
|
|
467
|
-
|
|
465
|
+
__args__ = dict()
|
|
466
|
+
__args__['project'] = project
|
|
467
|
+
__args__['serviceName'] = service_name
|
|
468
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
469
|
+
__ret__ = pulumi.runtime.invoke_output('aiven:index/getCassandra:getCassandra', __args__, opts=opts, typ=GetCassandraResult)
|
|
470
|
+
return __ret__.apply(lambda __response__: GetCassandraResult(
|
|
471
|
+
additional_disk_space=pulumi.get(__response__, 'additional_disk_space'),
|
|
472
|
+
cassandra_user_configs=pulumi.get(__response__, 'cassandra_user_configs'),
|
|
473
|
+
cassandras=pulumi.get(__response__, 'cassandras'),
|
|
474
|
+
cloud_name=pulumi.get(__response__, 'cloud_name'),
|
|
475
|
+
components=pulumi.get(__response__, 'components'),
|
|
476
|
+
disk_space=pulumi.get(__response__, 'disk_space'),
|
|
477
|
+
disk_space_cap=pulumi.get(__response__, 'disk_space_cap'),
|
|
478
|
+
disk_space_default=pulumi.get(__response__, 'disk_space_default'),
|
|
479
|
+
disk_space_step=pulumi.get(__response__, 'disk_space_step'),
|
|
480
|
+
disk_space_used=pulumi.get(__response__, 'disk_space_used'),
|
|
481
|
+
id=pulumi.get(__response__, 'id'),
|
|
482
|
+
maintenance_window_dow=pulumi.get(__response__, 'maintenance_window_dow'),
|
|
483
|
+
maintenance_window_time=pulumi.get(__response__, 'maintenance_window_time'),
|
|
484
|
+
plan=pulumi.get(__response__, 'plan'),
|
|
485
|
+
project=pulumi.get(__response__, 'project'),
|
|
486
|
+
project_vpc_id=pulumi.get(__response__, 'project_vpc_id'),
|
|
487
|
+
service_host=pulumi.get(__response__, 'service_host'),
|
|
488
|
+
service_integrations=pulumi.get(__response__, 'service_integrations'),
|
|
489
|
+
service_name=pulumi.get(__response__, 'service_name'),
|
|
490
|
+
service_password=pulumi.get(__response__, 'service_password'),
|
|
491
|
+
service_port=pulumi.get(__response__, 'service_port'),
|
|
492
|
+
service_type=pulumi.get(__response__, 'service_type'),
|
|
493
|
+
service_uri=pulumi.get(__response__, 'service_uri'),
|
|
494
|
+
service_username=pulumi.get(__response__, 'service_username'),
|
|
495
|
+
state=pulumi.get(__response__, 'state'),
|
|
496
|
+
static_ips=pulumi.get(__response__, 'static_ips'),
|
|
497
|
+
tags=pulumi.get(__response__, 'tags'),
|
|
498
|
+
tech_emails=pulumi.get(__response__, 'tech_emails'),
|
|
499
|
+
termination_protection=pulumi.get(__response__, 'termination_protection')))
|
|
@@ -4,9 +4,14 @@
|
|
|
4
4
|
|
|
5
5
|
import copy
|
|
6
6
|
import warnings
|
|
7
|
+
import sys
|
|
7
8
|
import pulumi
|
|
8
9
|
import pulumi.runtime
|
|
9
10
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
+
if sys.version_info >= (3, 11):
|
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
+
else:
|
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
10
15
|
from . import _utilities
|
|
11
16
|
|
|
12
17
|
__all__ = [
|
|
@@ -51,7 +56,7 @@ class GetCassandraUserResult:
|
|
|
51
56
|
@pulumi.getter(name="accessCert")
|
|
52
57
|
def access_cert(self) -> str:
|
|
53
58
|
"""
|
|
54
|
-
Access certificate for the user
|
|
59
|
+
Access certificate for the user.
|
|
55
60
|
"""
|
|
56
61
|
return pulumi.get(self, "access_cert")
|
|
57
62
|
|
|
@@ -59,7 +64,7 @@ class GetCassandraUserResult:
|
|
|
59
64
|
@pulumi.getter(name="accessKey")
|
|
60
65
|
def access_key(self) -> str:
|
|
61
66
|
"""
|
|
62
|
-
Access certificate key for the user
|
|
67
|
+
Access certificate key for the user.
|
|
63
68
|
"""
|
|
64
69
|
return pulumi.get(self, "access_key")
|
|
65
70
|
|
|
@@ -75,7 +80,7 @@ class GetCassandraUserResult:
|
|
|
75
80
|
@pulumi.getter
|
|
76
81
|
def password(self) -> str:
|
|
77
82
|
"""
|
|
78
|
-
The
|
|
83
|
+
The Cassandra service user's password.
|
|
79
84
|
"""
|
|
80
85
|
return pulumi.get(self, "password")
|
|
81
86
|
|
|
@@ -83,7 +88,7 @@ class GetCassandraUserResult:
|
|
|
83
88
|
@pulumi.getter
|
|
84
89
|
def project(self) -> str:
|
|
85
90
|
"""
|
|
86
|
-
|
|
91
|
+
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.
|
|
87
92
|
"""
|
|
88
93
|
return pulumi.get(self, "project")
|
|
89
94
|
|
|
@@ -91,7 +96,7 @@ class GetCassandraUserResult:
|
|
|
91
96
|
@pulumi.getter(name="serviceName")
|
|
92
97
|
def service_name(self) -> str:
|
|
93
98
|
"""
|
|
94
|
-
|
|
99
|
+
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.
|
|
95
100
|
"""
|
|
96
101
|
return pulumi.get(self, "service_name")
|
|
97
102
|
|
|
@@ -99,7 +104,7 @@ class GetCassandraUserResult:
|
|
|
99
104
|
@pulumi.getter
|
|
100
105
|
def type(self) -> str:
|
|
101
106
|
"""
|
|
102
|
-
|
|
107
|
+
User account type, such as primary or regular account.
|
|
103
108
|
"""
|
|
104
109
|
return pulumi.get(self, "type")
|
|
105
110
|
|
|
@@ -107,7 +112,7 @@ class GetCassandraUserResult:
|
|
|
107
112
|
@pulumi.getter
|
|
108
113
|
def username(self) -> str:
|
|
109
114
|
"""
|
|
110
|
-
|
|
115
|
+
Name of the Cassandra service user. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
|
|
111
116
|
"""
|
|
112
117
|
return pulumi.get(self, "username")
|
|
113
118
|
|
|
@@ -133,25 +138,23 @@ def get_cassandra_user(project: Optional[str] = None,
|
|
|
133
138
|
username: Optional[str] = None,
|
|
134
139
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetCassandraUserResult:
|
|
135
140
|
"""
|
|
136
|
-
|
|
141
|
+
Gets information about an Aiven for Apache Cassandra® service user.
|
|
137
142
|
|
|
138
143
|
## Example Usage
|
|
139
144
|
|
|
140
|
-
<!--Start PulumiCodeChooser -->
|
|
141
145
|
```python
|
|
142
146
|
import pulumi
|
|
143
147
|
import pulumi_aiven as aiven
|
|
144
148
|
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
username="
|
|
149
|
+
example_service_user = aiven.get_cassandra_user(service_name=example_cassandra["serviceName"],
|
|
150
|
+
project=example_project["project"],
|
|
151
|
+
username="example-cassandra-user")
|
|
148
152
|
```
|
|
149
|
-
<!--End PulumiCodeChooser -->
|
|
150
153
|
|
|
151
154
|
|
|
152
|
-
:param str project:
|
|
153
|
-
:param str service_name:
|
|
154
|
-
:param str username:
|
|
155
|
+
: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.
|
|
156
|
+
: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.
|
|
157
|
+
:param str username: Name of the Cassandra service user. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
|
|
155
158
|
"""
|
|
156
159
|
__args__ = dict()
|
|
157
160
|
__args__['project'] = project
|
|
@@ -169,32 +172,41 @@ def get_cassandra_user(project: Optional[str] = None,
|
|
|
169
172
|
service_name=pulumi.get(__ret__, 'service_name'),
|
|
170
173
|
type=pulumi.get(__ret__, 'type'),
|
|
171
174
|
username=pulumi.get(__ret__, 'username'))
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
@_utilities.lift_output_func(get_cassandra_user)
|
|
175
175
|
def get_cassandra_user_output(project: Optional[pulumi.Input[str]] = None,
|
|
176
176
|
service_name: Optional[pulumi.Input[str]] = None,
|
|
177
177
|
username: Optional[pulumi.Input[str]] = None,
|
|
178
|
-
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetCassandraUserResult]:
|
|
178
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetCassandraUserResult]:
|
|
179
179
|
"""
|
|
180
|
-
|
|
180
|
+
Gets information about an Aiven for Apache Cassandra® service user.
|
|
181
181
|
|
|
182
182
|
## Example Usage
|
|
183
183
|
|
|
184
|
-
<!--Start PulumiCodeChooser -->
|
|
185
184
|
```python
|
|
186
185
|
import pulumi
|
|
187
186
|
import pulumi_aiven as aiven
|
|
188
187
|
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
username="
|
|
188
|
+
example_service_user = aiven.get_cassandra_user(service_name=example_cassandra["serviceName"],
|
|
189
|
+
project=example_project["project"],
|
|
190
|
+
username="example-cassandra-user")
|
|
192
191
|
```
|
|
193
|
-
<!--End PulumiCodeChooser -->
|
|
194
192
|
|
|
195
193
|
|
|
196
|
-
:param str project:
|
|
197
|
-
:param str service_name:
|
|
198
|
-
:param str username:
|
|
194
|
+
: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.
|
|
195
|
+
: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.
|
|
196
|
+
:param str username: Name of the Cassandra service user. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
|
|
199
197
|
"""
|
|
200
|
-
|
|
198
|
+
__args__ = dict()
|
|
199
|
+
__args__['project'] = project
|
|
200
|
+
__args__['serviceName'] = service_name
|
|
201
|
+
__args__['username'] = username
|
|
202
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
203
|
+
__ret__ = pulumi.runtime.invoke_output('aiven:index/getCassandraUser:getCassandraUser', __args__, opts=opts, typ=GetCassandraUserResult)
|
|
204
|
+
return __ret__.apply(lambda __response__: GetCassandraUserResult(
|
|
205
|
+
access_cert=pulumi.get(__response__, 'access_cert'),
|
|
206
|
+
access_key=pulumi.get(__response__, 'access_key'),
|
|
207
|
+
id=pulumi.get(__response__, 'id'),
|
|
208
|
+
password=pulumi.get(__response__, 'password'),
|
|
209
|
+
project=pulumi.get(__response__, 'project'),
|
|
210
|
+
service_name=pulumi.get(__response__, 'service_name'),
|
|
211
|
+
type=pulumi.get(__response__, 'type'),
|
|
212
|
+
username=pulumi.get(__response__, 'username')))
|
pulumi_aiven/get_clickhouse.py
CHANGED
|
@@ -4,9 +4,14 @@
|
|
|
4
4
|
|
|
5
5
|
import copy
|
|
6
6
|
import warnings
|
|
7
|
+
import sys
|
|
7
8
|
import pulumi
|
|
8
9
|
import pulumi.runtime
|
|
9
10
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
+
if sys.version_info >= (3, 11):
|
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
+
else:
|
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
10
15
|
from . import _utilities
|
|
11
16
|
from . import outputs
|
|
12
17
|
|
|
@@ -115,7 +120,7 @@ class GetClickhouseResult:
|
|
|
115
120
|
@pulumi.getter(name="additionalDiskSpace")
|
|
116
121
|
def additional_disk_space(self) -> str:
|
|
117
122
|
"""
|
|
118
|
-
|
|
123
|
+
Add [disk storage](https://aiven.io/docs/platform/howto/add-storage-space) in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart and there might be a short downtime for services with no HA capabilities.
|
|
119
124
|
"""
|
|
120
125
|
return pulumi.get(self, "additional_disk_space")
|
|
121
126
|
|
|
@@ -123,7 +128,7 @@ class GetClickhouseResult:
|
|
|
123
128
|
@pulumi.getter(name="clickhouseUserConfigs")
|
|
124
129
|
def clickhouse_user_configs(self) -> Sequence['outputs.GetClickhouseClickhouseUserConfigResult']:
|
|
125
130
|
"""
|
|
126
|
-
Clickhouse user configurable settings
|
|
131
|
+
Clickhouse user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
127
132
|
"""
|
|
128
133
|
return pulumi.get(self, "clickhouse_user_configs")
|
|
129
134
|
|
|
@@ -131,7 +136,7 @@ class GetClickhouseResult:
|
|
|
131
136
|
@pulumi.getter
|
|
132
137
|
def clickhouses(self) -> Sequence['outputs.GetClickhouseClickhouseResult']:
|
|
133
138
|
"""
|
|
134
|
-
|
|
139
|
+
Values provided by the ClickHouse server.
|
|
135
140
|
"""
|
|
136
141
|
return pulumi.get(self, "clickhouses")
|
|
137
142
|
|
|
@@ -219,7 +224,7 @@ class GetClickhouseResult:
|
|
|
219
224
|
@pulumi.getter
|
|
220
225
|
def plan(self) -> str:
|
|
221
226
|
"""
|
|
222
|
-
Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be
|
|
227
|
+
Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seen from the [Aiven pricing page](https://aiven.io/pricing).
|
|
223
228
|
"""
|
|
224
229
|
return pulumi.get(self, "plan")
|
|
225
230
|
|
|
@@ -227,7 +232,7 @@ class GetClickhouseResult:
|
|
|
227
232
|
@pulumi.getter
|
|
228
233
|
def project(self) -> str:
|
|
229
234
|
"""
|
|
230
|
-
|
|
235
|
+
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.
|
|
231
236
|
"""
|
|
232
237
|
return pulumi.get(self, "project")
|
|
233
238
|
|
|
@@ -331,7 +336,7 @@ class GetClickhouseResult:
|
|
|
331
336
|
@pulumi.getter(name="techEmails")
|
|
332
337
|
def tech_emails(self) -> Sequence['outputs.GetClickhouseTechEmailResult']:
|
|
333
338
|
"""
|
|
334
|
-
|
|
339
|
+
The email addresses for [service contacts](https://aiven.io/docs/platform/howto/technical-emails), who will receive important alerts and updates about this service. You can also set email contacts at the project level.
|
|
335
340
|
"""
|
|
336
341
|
return pulumi.get(self, "tech_emails")
|
|
337
342
|
|
|
@@ -385,22 +390,20 @@ def get_clickhouse(project: Optional[str] = None,
|
|
|
385
390
|
service_name: Optional[str] = None,
|
|
386
391
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetClickhouseResult:
|
|
387
392
|
"""
|
|
388
|
-
|
|
393
|
+
Gets information about a ClickHouse service.
|
|
389
394
|
|
|
390
395
|
## Example Usage
|
|
391
396
|
|
|
392
|
-
<!--Start PulumiCodeChooser -->
|
|
393
397
|
```python
|
|
394
398
|
import pulumi
|
|
395
399
|
import pulumi_aiven as aiven
|
|
396
400
|
|
|
397
|
-
|
|
398
|
-
service_name="
|
|
401
|
+
example_clickhouse = aiven.get_clickhouse(project=example_project["project"],
|
|
402
|
+
service_name="example-clickhouse-service")
|
|
399
403
|
```
|
|
400
|
-
<!--End PulumiCodeChooser -->
|
|
401
404
|
|
|
402
405
|
|
|
403
|
-
:param str project:
|
|
406
|
+
: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.
|
|
404
407
|
:param str service_name: Specifies the actual name of the service. The name cannot be changed later without destroying and re-creating the service so name should be picked based on intended service usage rather than current attributes.
|
|
405
408
|
"""
|
|
406
409
|
__args__ = dict()
|
|
@@ -439,29 +442,58 @@ def get_clickhouse(project: Optional[str] = None,
|
|
|
439
442
|
tags=pulumi.get(__ret__, 'tags'),
|
|
440
443
|
tech_emails=pulumi.get(__ret__, 'tech_emails'),
|
|
441
444
|
termination_protection=pulumi.get(__ret__, 'termination_protection'))
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
@_utilities.lift_output_func(get_clickhouse)
|
|
445
445
|
def get_clickhouse_output(project: Optional[pulumi.Input[str]] = None,
|
|
446
446
|
service_name: Optional[pulumi.Input[str]] = None,
|
|
447
|
-
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetClickhouseResult]:
|
|
447
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetClickhouseResult]:
|
|
448
448
|
"""
|
|
449
|
-
|
|
449
|
+
Gets information about a ClickHouse service.
|
|
450
450
|
|
|
451
451
|
## Example Usage
|
|
452
452
|
|
|
453
|
-
<!--Start PulumiCodeChooser -->
|
|
454
453
|
```python
|
|
455
454
|
import pulumi
|
|
456
455
|
import pulumi_aiven as aiven
|
|
457
456
|
|
|
458
|
-
|
|
459
|
-
service_name="
|
|
457
|
+
example_clickhouse = aiven.get_clickhouse(project=example_project["project"],
|
|
458
|
+
service_name="example-clickhouse-service")
|
|
460
459
|
```
|
|
461
|
-
<!--End PulumiCodeChooser -->
|
|
462
460
|
|
|
463
461
|
|
|
464
|
-
:param str project:
|
|
462
|
+
: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.
|
|
465
463
|
:param str service_name: Specifies the actual name of the service. The name cannot be changed later without destroying and re-creating the service so name should be picked based on intended service usage rather than current attributes.
|
|
466
464
|
"""
|
|
467
|
-
|
|
465
|
+
__args__ = dict()
|
|
466
|
+
__args__['project'] = project
|
|
467
|
+
__args__['serviceName'] = service_name
|
|
468
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
469
|
+
__ret__ = pulumi.runtime.invoke_output('aiven:index/getClickhouse:getClickhouse', __args__, opts=opts, typ=GetClickhouseResult)
|
|
470
|
+
return __ret__.apply(lambda __response__: GetClickhouseResult(
|
|
471
|
+
additional_disk_space=pulumi.get(__response__, 'additional_disk_space'),
|
|
472
|
+
clickhouse_user_configs=pulumi.get(__response__, 'clickhouse_user_configs'),
|
|
473
|
+
clickhouses=pulumi.get(__response__, 'clickhouses'),
|
|
474
|
+
cloud_name=pulumi.get(__response__, 'cloud_name'),
|
|
475
|
+
components=pulumi.get(__response__, 'components'),
|
|
476
|
+
disk_space=pulumi.get(__response__, 'disk_space'),
|
|
477
|
+
disk_space_cap=pulumi.get(__response__, 'disk_space_cap'),
|
|
478
|
+
disk_space_default=pulumi.get(__response__, 'disk_space_default'),
|
|
479
|
+
disk_space_step=pulumi.get(__response__, 'disk_space_step'),
|
|
480
|
+
disk_space_used=pulumi.get(__response__, 'disk_space_used'),
|
|
481
|
+
id=pulumi.get(__response__, 'id'),
|
|
482
|
+
maintenance_window_dow=pulumi.get(__response__, 'maintenance_window_dow'),
|
|
483
|
+
maintenance_window_time=pulumi.get(__response__, 'maintenance_window_time'),
|
|
484
|
+
plan=pulumi.get(__response__, 'plan'),
|
|
485
|
+
project=pulumi.get(__response__, 'project'),
|
|
486
|
+
project_vpc_id=pulumi.get(__response__, 'project_vpc_id'),
|
|
487
|
+
service_host=pulumi.get(__response__, 'service_host'),
|
|
488
|
+
service_integrations=pulumi.get(__response__, 'service_integrations'),
|
|
489
|
+
service_name=pulumi.get(__response__, 'service_name'),
|
|
490
|
+
service_password=pulumi.get(__response__, 'service_password'),
|
|
491
|
+
service_port=pulumi.get(__response__, 'service_port'),
|
|
492
|
+
service_type=pulumi.get(__response__, 'service_type'),
|
|
493
|
+
service_uri=pulumi.get(__response__, 'service_uri'),
|
|
494
|
+
service_username=pulumi.get(__response__, 'service_username'),
|
|
495
|
+
state=pulumi.get(__response__, 'state'),
|
|
496
|
+
static_ips=pulumi.get(__response__, 'static_ips'),
|
|
497
|
+
tags=pulumi.get(__response__, 'tags'),
|
|
498
|
+
tech_emails=pulumi.get(__response__, 'tech_emails'),
|
|
499
|
+
termination_protection=pulumi.get(__response__, 'termination_protection')))
|
|
@@ -4,9 +4,14 @@
|
|
|
4
4
|
|
|
5
5
|
import copy
|
|
6
6
|
import warnings
|
|
7
|
+
import sys
|
|
7
8
|
import pulumi
|
|
8
9
|
import pulumi.runtime
|
|
9
10
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
+
if sys.version_info >= (3, 11):
|
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
+
else:
|
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
10
15
|
from . import _utilities
|
|
11
16
|
|
|
12
17
|
__all__ = [
|
|
@@ -50,7 +55,7 @@ class GetClickhouseDatabaseResult:
|
|
|
50
55
|
@pulumi.getter
|
|
51
56
|
def name(self) -> str:
|
|
52
57
|
"""
|
|
53
|
-
The name of the
|
|
58
|
+
The name of the ClickHouse database. Changing this property forces recreation of the resource.
|
|
54
59
|
"""
|
|
55
60
|
return pulumi.get(self, "name")
|
|
56
61
|
|
|
@@ -58,7 +63,7 @@ class GetClickhouseDatabaseResult:
|
|
|
58
63
|
@pulumi.getter
|
|
59
64
|
def project(self) -> str:
|
|
60
65
|
"""
|
|
61
|
-
|
|
66
|
+
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.
|
|
62
67
|
"""
|
|
63
68
|
return pulumi.get(self, "project")
|
|
64
69
|
|
|
@@ -66,7 +71,7 @@ class GetClickhouseDatabaseResult:
|
|
|
66
71
|
@pulumi.getter(name="serviceName")
|
|
67
72
|
def service_name(self) -> str:
|
|
68
73
|
"""
|
|
69
|
-
|
|
74
|
+
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.
|
|
70
75
|
"""
|
|
71
76
|
return pulumi.get(self, "service_name")
|
|
72
77
|
|
|
@@ -94,25 +99,23 @@ def get_clickhouse_database(name: Optional[str] = None,
|
|
|
94
99
|
service_name: Optional[str] = None,
|
|
95
100
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetClickhouseDatabaseResult:
|
|
96
101
|
"""
|
|
97
|
-
|
|
102
|
+
Gets information about a ClickHouse database.
|
|
98
103
|
|
|
99
104
|
## Example Usage
|
|
100
105
|
|
|
101
|
-
<!--Start PulumiCodeChooser -->
|
|
102
106
|
```python
|
|
103
107
|
import pulumi
|
|
104
108
|
import pulumi_aiven as aiven
|
|
105
109
|
|
|
106
|
-
|
|
107
|
-
service_name=
|
|
108
|
-
name="
|
|
110
|
+
example_clickhouse_db = aiven.get_clickhouse_database(project=example_project["project"],
|
|
111
|
+
service_name=example_clickhouse["serviceName"],
|
|
112
|
+
name="example-database")
|
|
109
113
|
```
|
|
110
|
-
<!--End PulumiCodeChooser -->
|
|
111
114
|
|
|
112
115
|
|
|
113
|
-
:param str name: The name of the
|
|
114
|
-
:param str project:
|
|
115
|
-
:param str service_name:
|
|
116
|
+
:param str name: The name of the ClickHouse database. Changing this property forces recreation of the resource.
|
|
117
|
+
: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.
|
|
118
|
+
: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.
|
|
116
119
|
"""
|
|
117
120
|
__args__ = dict()
|
|
118
121
|
__args__['name'] = name
|
|
@@ -127,32 +130,38 @@ def get_clickhouse_database(name: Optional[str] = None,
|
|
|
127
130
|
project=pulumi.get(__ret__, 'project'),
|
|
128
131
|
service_name=pulumi.get(__ret__, 'service_name'),
|
|
129
132
|
termination_protection=pulumi.get(__ret__, 'termination_protection'))
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
@_utilities.lift_output_func(get_clickhouse_database)
|
|
133
133
|
def get_clickhouse_database_output(name: Optional[pulumi.Input[str]] = None,
|
|
134
134
|
project: Optional[pulumi.Input[str]] = None,
|
|
135
135
|
service_name: Optional[pulumi.Input[str]] = None,
|
|
136
|
-
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetClickhouseDatabaseResult]:
|
|
136
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetClickhouseDatabaseResult]:
|
|
137
137
|
"""
|
|
138
|
-
|
|
138
|
+
Gets information about a ClickHouse database.
|
|
139
139
|
|
|
140
140
|
## Example Usage
|
|
141
141
|
|
|
142
|
-
<!--Start PulumiCodeChooser -->
|
|
143
142
|
```python
|
|
144
143
|
import pulumi
|
|
145
144
|
import pulumi_aiven as aiven
|
|
146
145
|
|
|
147
|
-
|
|
148
|
-
service_name=
|
|
149
|
-
name="
|
|
146
|
+
example_clickhouse_db = aiven.get_clickhouse_database(project=example_project["project"],
|
|
147
|
+
service_name=example_clickhouse["serviceName"],
|
|
148
|
+
name="example-database")
|
|
150
149
|
```
|
|
151
|
-
<!--End PulumiCodeChooser -->
|
|
152
150
|
|
|
153
151
|
|
|
154
|
-
:param str name: The name of the
|
|
155
|
-
:param str project:
|
|
156
|
-
:param str service_name:
|
|
152
|
+
:param str name: The name of the ClickHouse database. Changing this property forces recreation of the resource.
|
|
153
|
+
: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.
|
|
154
|
+
: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.
|
|
157
155
|
"""
|
|
158
|
-
|
|
156
|
+
__args__ = dict()
|
|
157
|
+
__args__['name'] = name
|
|
158
|
+
__args__['project'] = project
|
|
159
|
+
__args__['serviceName'] = service_name
|
|
160
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
161
|
+
__ret__ = pulumi.runtime.invoke_output('aiven:index/getClickhouseDatabase:getClickhouseDatabase', __args__, opts=opts, typ=GetClickhouseDatabaseResult)
|
|
162
|
+
return __ret__.apply(lambda __response__: GetClickhouseDatabaseResult(
|
|
163
|
+
id=pulumi.get(__response__, 'id'),
|
|
164
|
+
name=pulumi.get(__response__, 'name'),
|
|
165
|
+
project=pulumi.get(__response__, 'project'),
|
|
166
|
+
service_name=pulumi.get(__response__, 'service_name'),
|
|
167
|
+
termination_protection=pulumi.get(__response__, 'termination_protection')))
|