pulumi-aiven 6.13.0a1709702245__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 +32826 -13922
- pulumi_aiven/_utilities.py +41 -5
- pulumi_aiven/account.py +34 -43
- pulumi_aiven/account_authentication.py +24 -9
- pulumi_aiven/account_team.py +37 -12
- pulumi_aiven/account_team_member.py +48 -35
- pulumi_aiven/account_team_project.py +42 -25
- 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 -39
- pulumi_aiven/aws_vpc_peering_connection.py +72 -57
- pulumi_aiven/azure_privatelink.py +54 -49
- pulumi_aiven/azure_privatelink_connection_approval.py +136 -33
- pulumi_aiven/azure_vpc_peering_connection.py +86 -73
- pulumi_aiven/billing_group.py +33 -30
- pulumi_aiven/cassandra.py +145 -122
- pulumi_aiven/cassandra_user.py +59 -54
- pulumi_aiven/clickhouse.py +133 -110
- pulumi_aiven/clickhouse_database.py +58 -58
- pulumi_aiven/clickhouse_grant.py +135 -130
- pulumi_aiven/clickhouse_role.py +36 -45
- pulumi_aiven/clickhouse_user.py +50 -45
- pulumi_aiven/config/__init__.pyi +5 -0
- pulumi_aiven/config/vars.py +5 -0
- pulumi_aiven/connection_pool.py +67 -62
- pulumi_aiven/dragonfly.py +1256 -0
- pulumi_aiven/flink.py +104 -100
- pulumi_aiven/flink_application.py +58 -51
- 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 -44
- pulumi_aiven/get_account.py +20 -5
- 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 -20
- pulumi_aiven/get_aws_vpc_peering_connection.py +56 -29
- pulumi_aiven/get_azure_privatelink.py +37 -22
- pulumi_aiven/get_azure_vpc_peering_connection.py +77 -28
- pulumi_aiven/get_billing_group.py +31 -8
- pulumi_aiven/get_cassanda.py +55 -19
- pulumi_aiven/get_cassandra.py +55 -19
- pulumi_aiven/get_cassandra_user.py +42 -26
- pulumi_aiven/get_clickhouse.py +55 -19
- pulumi_aiven/get_clickhouse_database.py +35 -22
- pulumi_aiven/get_clickhouse_user.py +40 -25
- pulumi_aiven/get_connection_pool.py +43 -26
- pulumi_aiven/get_dragonfly.py +499 -0
- pulumi_aiven/get_external_identity.py +160 -0
- pulumi_aiven/get_flink.py +55 -19
- pulumi_aiven/get_flink_application.py +44 -27
- pulumi_aiven/get_flink_application_version.py +55 -33
- pulumi_aiven/get_gcp_privatelink.py +63 -7
- pulumi_aiven/get_gcp_vpc_peering_connection.py +39 -24
- pulumi_aiven/get_grafana.py +55 -19
- 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 -21
- pulumi_aiven/get_kafka_acl.py +50 -33
- pulumi_aiven/get_kafka_connect.py +54 -32
- pulumi_aiven/get_kafka_connector.py +44 -24
- pulumi_aiven/get_kafka_mirror_maker.py +50 -28
- pulumi_aiven/get_kafka_schema.py +35 -19
- pulumi_aiven/get_kafka_schema_configuration.py +32 -17
- pulumi_aiven/get_kafka_schema_registry_acl.py +37 -20
- pulumi_aiven/get_kafka_topic.py +70 -25
- pulumi_aiven/get_kafka_user.py +42 -26
- pulumi_aiven/get_m3_aggregator.py +51 -15
- pulumi_aiven/get_m3_db.py +55 -19
- pulumi_aiven/get_m3db_user.py +38 -24
- pulumi_aiven/get_mirror_maker_replication_flow.py +86 -21
- pulumi_aiven/get_my_sql.py +50 -14
- pulumi_aiven/get_mysql_database.py +31 -18
- pulumi_aiven/get_mysql_user.py +36 -19
- pulumi_aiven/get_open_search.py +50 -14
- pulumi_aiven/get_open_search_acl_config.py +27 -15
- pulumi_aiven/get_open_search_acl_rule.py +37 -21
- pulumi_aiven/get_opensearch_security_plugin_config.py +29 -15
- pulumi_aiven/get_opensearch_user.py +32 -18
- pulumi_aiven/get_organization.py +25 -13
- 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 -19
- pulumi_aiven/get_pg_database.py +39 -24
- pulumi_aiven/get_pg_user.py +44 -27
- pulumi_aiven/get_project.py +43 -22
- pulumi_aiven/get_project_user.py +27 -15
- pulumi_aiven/get_project_vpc.py +31 -19
- pulumi_aiven/get_redis.py +50 -14
- pulumi_aiven/get_redis_user.py +40 -22
- pulumi_aiven/get_service_component.py +40 -18
- pulumi_aiven/get_service_integration.py +163 -49
- pulumi_aiven/get_service_integration_endpoint.py +128 -33
- pulumi_aiven/get_thanos.py +499 -0
- pulumi_aiven/get_transit_gateway_vpc_attachment.py +35 -18
- pulumi_aiven/get_valkey.py +499 -0
- pulumi_aiven/get_valkey_user.py +218 -0
- pulumi_aiven/grafana.py +188 -318
- 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 -140
- pulumi_aiven/kafka_acl.py +64 -53
- pulumi_aiven/kafka_connect.py +201 -328
- pulumi_aiven/kafka_connector.py +67 -56
- pulumi_aiven/kafka_mirror_maker.py +139 -318
- pulumi_aiven/kafka_native_acl.py +588 -0
- pulumi_aiven/kafka_schema.py +65 -56
- pulumi_aiven/kafka_schema_configuration.py +25 -20
- pulumi_aiven/kafka_schema_registry_acl.py +80 -35
- pulumi_aiven/kafka_topic.py +184 -65
- pulumi_aiven/kafka_user.py +59 -54
- pulumi_aiven/m3_aggregator.py +176 -308
- pulumi_aiven/m3_db.py +190 -322
- pulumi_aiven/m3db_user.py +51 -46
- pulumi_aiven/mirror_maker_replication_flow.py +217 -53
- pulumi_aiven/my_sql.py +190 -322
- pulumi_aiven/mysql_database.py +32 -47
- pulumi_aiven/mysql_user.py +37 -32
- pulumi_aiven/open_search.py +128 -105
- pulumi_aiven/open_search_acl_config.py +33 -32
- pulumi_aiven/open_search_acl_rule.py +55 -50
- pulumi_aiven/opensearch_security_plugin_config.py +69 -16
- pulumi_aiven/opensearch_user.py +30 -25
- pulumi_aiven/organization.py +18 -13
- 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 -32
- pulumi_aiven/outputs.py +38509 -21612
- pulumi_aiven/pg.py +92 -88
- pulumi_aiven/pg_database.py +52 -67
- pulumi_aiven/pg_user.py +80 -61
- pulumi_aiven/project.py +111 -102
- pulumi_aiven/project_user.py +44 -31
- pulumi_aiven/project_vpc.py +58 -29
- pulumi_aiven/provider.py +5 -0
- pulumi_aiven/pulumi-plugin.json +2 -1
- pulumi_aiven/redis.py +163 -295
- pulumi_aiven/redis_user.py +58 -53
- pulumi_aiven/service_integration.py +511 -161
- 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 -54
- pulumi_aiven/valkey.py +1256 -0
- pulumi_aiven/valkey_user.py +606 -0
- {pulumi_aiven-6.13.0a1709702245.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.0a1709702245.dist-info → pulumi_aiven-6.31.0a1736831339.dist-info}/WHEEL +1 -1
- pulumi_aiven-6.13.0a1709702245.dist-info/RECORD +0 -146
- {pulumi_aiven-6.13.0a1709702245.dist-info → pulumi_aiven-6.31.0a1736831339.dist-info}/top_level.txt +0 -0
pulumi_aiven/get_my_sql.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 GetMySqlResult:
|
|
|
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
|
|
|
@@ -203,7 +208,7 @@ class GetMySqlResult:
|
|
|
203
208
|
@pulumi.getter(name="mysqlUserConfigs")
|
|
204
209
|
def mysql_user_configs(self) -> Sequence['outputs.GetMySqlMysqlUserConfigResult']:
|
|
205
210
|
"""
|
|
206
|
-
Mysql user configurable settings
|
|
211
|
+
Mysql user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
207
212
|
"""
|
|
208
213
|
return pulumi.get(self, "mysql_user_configs")
|
|
209
214
|
|
|
@@ -219,7 +224,7 @@ class GetMySqlResult:
|
|
|
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 GetMySqlResult:
|
|
|
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 GetMySqlResult:
|
|
|
331
336
|
@pulumi.getter(name="techEmails")
|
|
332
337
|
def tech_emails(self) -> Sequence['outputs.GetMySqlTechEmailResult']:
|
|
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
|
|
|
@@ -393,12 +398,12 @@ def get_my_sql(project: Optional[str] = None,
|
|
|
393
398
|
import pulumi
|
|
394
399
|
import pulumi_aiven as aiven
|
|
395
400
|
|
|
396
|
-
mysql1 = aiven.get_my_sql(project=
|
|
401
|
+
mysql1 = aiven.get_my_sql(project=foo["project"],
|
|
397
402
|
service_name="my-mysql1")
|
|
398
403
|
```
|
|
399
404
|
|
|
400
405
|
|
|
401
|
-
: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.
|
|
402
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.
|
|
403
408
|
"""
|
|
404
409
|
__args__ = dict()
|
|
@@ -437,12 +442,9 @@ def get_my_sql(project: Optional[str] = None,
|
|
|
437
442
|
tags=pulumi.get(__ret__, 'tags'),
|
|
438
443
|
tech_emails=pulumi.get(__ret__, 'tech_emails'),
|
|
439
444
|
termination_protection=pulumi.get(__ret__, 'termination_protection'))
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
@_utilities.lift_output_func(get_my_sql)
|
|
443
445
|
def get_my_sql_output(project: Optional[pulumi.Input[str]] = None,
|
|
444
446
|
service_name: Optional[pulumi.Input[str]] = None,
|
|
445
|
-
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetMySqlResult]:
|
|
447
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetMySqlResult]:
|
|
446
448
|
"""
|
|
447
449
|
The MySQL data source provides information about the existing Aiven MySQL service.
|
|
448
450
|
|
|
@@ -452,12 +454,46 @@ def get_my_sql_output(project: Optional[pulumi.Input[str]] = None,
|
|
|
452
454
|
import pulumi
|
|
453
455
|
import pulumi_aiven as aiven
|
|
454
456
|
|
|
455
|
-
mysql1 = aiven.get_my_sql(project=
|
|
457
|
+
mysql1 = aiven.get_my_sql(project=foo["project"],
|
|
456
458
|
service_name="my-mysql1")
|
|
457
459
|
```
|
|
458
460
|
|
|
459
461
|
|
|
460
|
-
: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.
|
|
461
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.
|
|
462
464
|
"""
|
|
463
|
-
|
|
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/getMySql:getMySql', __args__, opts=opts, typ=GetMySqlResult)
|
|
470
|
+
return __ret__.apply(lambda __response__: GetMySqlResult(
|
|
471
|
+
additional_disk_space=pulumi.get(__response__, 'additional_disk_space'),
|
|
472
|
+
cloud_name=pulumi.get(__response__, 'cloud_name'),
|
|
473
|
+
components=pulumi.get(__response__, 'components'),
|
|
474
|
+
disk_space=pulumi.get(__response__, 'disk_space'),
|
|
475
|
+
disk_space_cap=pulumi.get(__response__, 'disk_space_cap'),
|
|
476
|
+
disk_space_default=pulumi.get(__response__, 'disk_space_default'),
|
|
477
|
+
disk_space_step=pulumi.get(__response__, 'disk_space_step'),
|
|
478
|
+
disk_space_used=pulumi.get(__response__, 'disk_space_used'),
|
|
479
|
+
id=pulumi.get(__response__, 'id'),
|
|
480
|
+
maintenance_window_dow=pulumi.get(__response__, 'maintenance_window_dow'),
|
|
481
|
+
maintenance_window_time=pulumi.get(__response__, 'maintenance_window_time'),
|
|
482
|
+
mysql_user_configs=pulumi.get(__response__, 'mysql_user_configs'),
|
|
483
|
+
mysqls=pulumi.get(__response__, 'mysqls'),
|
|
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__ = [
|
|
@@ -42,7 +47,7 @@ class GetMysqlDatabaseResult:
|
|
|
42
47
|
@pulumi.getter(name="databaseName")
|
|
43
48
|
def database_name(self) -> str:
|
|
44
49
|
"""
|
|
45
|
-
The name of the service database.
|
|
50
|
+
The name of the service database. Changing this property forces recreation of the resource.
|
|
46
51
|
"""
|
|
47
52
|
return pulumi.get(self, "database_name")
|
|
48
53
|
|
|
@@ -58,7 +63,7 @@ class GetMysqlDatabaseResult:
|
|
|
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 GetMysqlDatabaseResult:
|
|
|
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
|
|
|
@@ -102,15 +107,15 @@ def get_mysql_database(database_name: Optional[str] = None,
|
|
|
102
107
|
import pulumi
|
|
103
108
|
import pulumi_aiven as aiven
|
|
104
109
|
|
|
105
|
-
mydatabase = aiven.get_mysql_database(project=
|
|
106
|
-
service_name=
|
|
110
|
+
mydatabase = aiven.get_mysql_database(project=myproject["project"],
|
|
111
|
+
service_name=mymysql["serviceName"],
|
|
107
112
|
database_name="<DATABASE_NAME>")
|
|
108
113
|
```
|
|
109
114
|
|
|
110
115
|
|
|
111
|
-
:param str database_name: The name of the service database.
|
|
112
|
-
:param str project:
|
|
113
|
-
:param str service_name:
|
|
116
|
+
:param str database_name: The name of the service 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.
|
|
114
119
|
"""
|
|
115
120
|
__args__ = dict()
|
|
116
121
|
__args__['databaseName'] = database_name
|
|
@@ -125,13 +130,10 @@ def get_mysql_database(database_name: Optional[str] = None,
|
|
|
125
130
|
project=pulumi.get(__ret__, 'project'),
|
|
126
131
|
service_name=pulumi.get(__ret__, 'service_name'),
|
|
127
132
|
termination_protection=pulumi.get(__ret__, 'termination_protection'))
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
@_utilities.lift_output_func(get_mysql_database)
|
|
131
133
|
def get_mysql_database_output(database_name: Optional[pulumi.Input[str]] = None,
|
|
132
134
|
project: Optional[pulumi.Input[str]] = None,
|
|
133
135
|
service_name: Optional[pulumi.Input[str]] = None,
|
|
134
|
-
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetMysqlDatabaseResult]:
|
|
136
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetMysqlDatabaseResult]:
|
|
135
137
|
"""
|
|
136
138
|
The MySQL Database data source provides information about the existing Aiven MySQL Database.
|
|
137
139
|
|
|
@@ -141,14 +143,25 @@ def get_mysql_database_output(database_name: Optional[pulumi.Input[str]] = None,
|
|
|
141
143
|
import pulumi
|
|
142
144
|
import pulumi_aiven as aiven
|
|
143
145
|
|
|
144
|
-
mydatabase = aiven.get_mysql_database(project=
|
|
145
|
-
service_name=
|
|
146
|
+
mydatabase = aiven.get_mysql_database(project=myproject["project"],
|
|
147
|
+
service_name=mymysql["serviceName"],
|
|
146
148
|
database_name="<DATABASE_NAME>")
|
|
147
149
|
```
|
|
148
150
|
|
|
149
151
|
|
|
150
|
-
:param str database_name: The name of the service database.
|
|
151
|
-
:param str project:
|
|
152
|
-
:param str service_name:
|
|
152
|
+
:param str database_name: The name of the service 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.
|
|
153
155
|
"""
|
|
154
|
-
|
|
156
|
+
__args__ = dict()
|
|
157
|
+
__args__['databaseName'] = database_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/getMysqlDatabase:getMysqlDatabase', __args__, opts=opts, typ=GetMysqlDatabaseResult)
|
|
162
|
+
return __ret__.apply(lambda __response__: GetMysqlDatabaseResult(
|
|
163
|
+
database_name=pulumi.get(__response__, 'database_name'),
|
|
164
|
+
id=pulumi.get(__response__, 'id'),
|
|
165
|
+
project=pulumi.get(__response__, 'project'),
|
|
166
|
+
service_name=pulumi.get(__response__, 'service_name'),
|
|
167
|
+
termination_protection=pulumi.get(__response__, 'termination_protection')))
|
pulumi_aiven/get_mysql_user.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
|
|
|
12
17
|
__all__ = [
|
|
@@ -70,7 +75,7 @@ class GetMysqlUserResult:
|
|
|
70
75
|
@pulumi.getter
|
|
71
76
|
def authentication(self) -> str:
|
|
72
77
|
"""
|
|
73
|
-
Authentication details. The possible values are `caching_sha2_password` and `mysql_native_password`.
|
|
78
|
+
Authentication details. The possible values are `null`, `caching_sha2_password` and `mysql_native_password`.
|
|
74
79
|
"""
|
|
75
80
|
return pulumi.get(self, "authentication")
|
|
76
81
|
|
|
@@ -94,7 +99,7 @@ class GetMysqlUserResult:
|
|
|
94
99
|
@pulumi.getter
|
|
95
100
|
def project(self) -> str:
|
|
96
101
|
"""
|
|
97
|
-
|
|
102
|
+
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.
|
|
98
103
|
"""
|
|
99
104
|
return pulumi.get(self, "project")
|
|
100
105
|
|
|
@@ -102,7 +107,7 @@ class GetMysqlUserResult:
|
|
|
102
107
|
@pulumi.getter(name="serviceName")
|
|
103
108
|
def service_name(self) -> str:
|
|
104
109
|
"""
|
|
105
|
-
|
|
110
|
+
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.
|
|
106
111
|
"""
|
|
107
112
|
return pulumi.get(self, "service_name")
|
|
108
113
|
|
|
@@ -118,7 +123,7 @@ class GetMysqlUserResult:
|
|
|
118
123
|
@pulumi.getter
|
|
119
124
|
def username(self) -> str:
|
|
120
125
|
"""
|
|
121
|
-
The actual name of the MySQL User. To set up proper dependencies please refer to this variable as a reference.
|
|
126
|
+
The actual name of the MySQL User. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
|
|
122
127
|
"""
|
|
123
128
|
return pulumi.get(self, "username")
|
|
124
129
|
|
|
@@ -153,15 +158,15 @@ def get_mysql_user(project: Optional[str] = None,
|
|
|
153
158
|
import pulumi
|
|
154
159
|
import pulumi_aiven as aiven
|
|
155
160
|
|
|
156
|
-
user = aiven.get_mysql_user(
|
|
157
|
-
|
|
161
|
+
user = aiven.get_mysql_user(service_name="my-service",
|
|
162
|
+
project="my-project",
|
|
158
163
|
username="user1")
|
|
159
164
|
```
|
|
160
165
|
|
|
161
166
|
|
|
162
|
-
:param str project:
|
|
163
|
-
:param str service_name:
|
|
164
|
-
:param str username: The actual name of the MySQL User. To set up proper dependencies please refer to this variable as a reference.
|
|
167
|
+
: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.
|
|
168
|
+
: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.
|
|
169
|
+
:param str username: The actual name of the MySQL User. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
|
|
165
170
|
"""
|
|
166
171
|
__args__ = dict()
|
|
167
172
|
__args__['project'] = project
|
|
@@ -180,13 +185,10 @@ def get_mysql_user(project: Optional[str] = None,
|
|
|
180
185
|
service_name=pulumi.get(__ret__, 'service_name'),
|
|
181
186
|
type=pulumi.get(__ret__, 'type'),
|
|
182
187
|
username=pulumi.get(__ret__, 'username'))
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
@_utilities.lift_output_func(get_mysql_user)
|
|
186
188
|
def get_mysql_user_output(project: Optional[pulumi.Input[str]] = None,
|
|
187
189
|
service_name: Optional[pulumi.Input[str]] = None,
|
|
188
190
|
username: Optional[pulumi.Input[str]] = None,
|
|
189
|
-
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetMysqlUserResult]:
|
|
191
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetMysqlUserResult]:
|
|
190
192
|
"""
|
|
191
193
|
The MySQL User data source provides information about the existing Aiven MySQL User.
|
|
192
194
|
|
|
@@ -196,14 +198,29 @@ def get_mysql_user_output(project: Optional[pulumi.Input[str]] = None,
|
|
|
196
198
|
import pulumi
|
|
197
199
|
import pulumi_aiven as aiven
|
|
198
200
|
|
|
199
|
-
user = aiven.get_mysql_user(
|
|
200
|
-
|
|
201
|
+
user = aiven.get_mysql_user(service_name="my-service",
|
|
202
|
+
project="my-project",
|
|
201
203
|
username="user1")
|
|
202
204
|
```
|
|
203
205
|
|
|
204
206
|
|
|
205
|
-
:param str project:
|
|
206
|
-
:param str service_name:
|
|
207
|
-
:param str username: The actual name of the MySQL User. To set up proper dependencies please refer to this variable as a reference.
|
|
207
|
+
: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.
|
|
208
|
+
: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.
|
|
209
|
+
:param str username: The actual name of the MySQL User. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
|
|
208
210
|
"""
|
|
209
|
-
|
|
211
|
+
__args__ = dict()
|
|
212
|
+
__args__['project'] = project
|
|
213
|
+
__args__['serviceName'] = service_name
|
|
214
|
+
__args__['username'] = username
|
|
215
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
216
|
+
__ret__ = pulumi.runtime.invoke_output('aiven:index/getMysqlUser:getMysqlUser', __args__, opts=opts, typ=GetMysqlUserResult)
|
|
217
|
+
return __ret__.apply(lambda __response__: GetMysqlUserResult(
|
|
218
|
+
access_cert=pulumi.get(__response__, 'access_cert'),
|
|
219
|
+
access_key=pulumi.get(__response__, 'access_key'),
|
|
220
|
+
authentication=pulumi.get(__response__, 'authentication'),
|
|
221
|
+
id=pulumi.get(__response__, 'id'),
|
|
222
|
+
password=pulumi.get(__response__, 'password'),
|
|
223
|
+
project=pulumi.get(__response__, 'project'),
|
|
224
|
+
service_name=pulumi.get(__response__, 'service_name'),
|
|
225
|
+
type=pulumi.get(__response__, 'type'),
|
|
226
|
+
username=pulumi.get(__response__, 'username')))
|
pulumi_aiven/get_open_search.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 GetOpenSearchResult:
|
|
|
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
|
|
|
@@ -203,7 +208,7 @@ class GetOpenSearchResult:
|
|
|
203
208
|
@pulumi.getter(name="opensearchUserConfigs")
|
|
204
209
|
def opensearch_user_configs(self) -> Sequence['outputs.GetOpenSearchOpensearchUserConfigResult']:
|
|
205
210
|
"""
|
|
206
|
-
Opensearch user configurable settings
|
|
211
|
+
Opensearch user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
207
212
|
"""
|
|
208
213
|
return pulumi.get(self, "opensearch_user_configs")
|
|
209
214
|
|
|
@@ -219,7 +224,7 @@ class GetOpenSearchResult:
|
|
|
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 GetOpenSearchResult:
|
|
|
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 GetOpenSearchResult:
|
|
|
331
336
|
@pulumi.getter(name="techEmails")
|
|
332
337
|
def tech_emails(self) -> Sequence['outputs.GetOpenSearchTechEmailResult']:
|
|
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
|
|
|
@@ -393,12 +398,12 @@ def get_open_search(project: Optional[str] = None,
|
|
|
393
398
|
import pulumi
|
|
394
399
|
import pulumi_aiven as aiven
|
|
395
400
|
|
|
396
|
-
os1 = aiven.get_open_search(project=
|
|
401
|
+
os1 = aiven.get_open_search(project=pr1["project"],
|
|
397
402
|
service_name="my-os1")
|
|
398
403
|
```
|
|
399
404
|
|
|
400
405
|
|
|
401
|
-
: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.
|
|
402
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.
|
|
403
408
|
"""
|
|
404
409
|
__args__ = dict()
|
|
@@ -437,12 +442,9 @@ def get_open_search(project: Optional[str] = None,
|
|
|
437
442
|
tags=pulumi.get(__ret__, 'tags'),
|
|
438
443
|
tech_emails=pulumi.get(__ret__, 'tech_emails'),
|
|
439
444
|
termination_protection=pulumi.get(__ret__, 'termination_protection'))
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
@_utilities.lift_output_func(get_open_search)
|
|
443
445
|
def get_open_search_output(project: Optional[pulumi.Input[str]] = None,
|
|
444
446
|
service_name: Optional[pulumi.Input[str]] = None,
|
|
445
|
-
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetOpenSearchResult]:
|
|
447
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetOpenSearchResult]:
|
|
446
448
|
"""
|
|
447
449
|
The OpenSearch data source provides information about the existing Aiven OpenSearch service.
|
|
448
450
|
|
|
@@ -452,12 +454,46 @@ def get_open_search_output(project: Optional[pulumi.Input[str]] = None,
|
|
|
452
454
|
import pulumi
|
|
453
455
|
import pulumi_aiven as aiven
|
|
454
456
|
|
|
455
|
-
os1 = aiven.get_open_search(project=
|
|
457
|
+
os1 = aiven.get_open_search(project=pr1["project"],
|
|
456
458
|
service_name="my-os1")
|
|
457
459
|
```
|
|
458
460
|
|
|
459
461
|
|
|
460
|
-
: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.
|
|
461
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.
|
|
462
464
|
"""
|
|
463
|
-
|
|
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/getOpenSearch:getOpenSearch', __args__, opts=opts, typ=GetOpenSearchResult)
|
|
470
|
+
return __ret__.apply(lambda __response__: GetOpenSearchResult(
|
|
471
|
+
additional_disk_space=pulumi.get(__response__, 'additional_disk_space'),
|
|
472
|
+
cloud_name=pulumi.get(__response__, 'cloud_name'),
|
|
473
|
+
components=pulumi.get(__response__, 'components'),
|
|
474
|
+
disk_space=pulumi.get(__response__, 'disk_space'),
|
|
475
|
+
disk_space_cap=pulumi.get(__response__, 'disk_space_cap'),
|
|
476
|
+
disk_space_default=pulumi.get(__response__, 'disk_space_default'),
|
|
477
|
+
disk_space_step=pulumi.get(__response__, 'disk_space_step'),
|
|
478
|
+
disk_space_used=pulumi.get(__response__, 'disk_space_used'),
|
|
479
|
+
id=pulumi.get(__response__, 'id'),
|
|
480
|
+
maintenance_window_dow=pulumi.get(__response__, 'maintenance_window_dow'),
|
|
481
|
+
maintenance_window_time=pulumi.get(__response__, 'maintenance_window_time'),
|
|
482
|
+
opensearch_user_configs=pulumi.get(__response__, 'opensearch_user_configs'),
|
|
483
|
+
opensearches=pulumi.get(__response__, 'opensearches'),
|
|
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__ = [
|
|
@@ -66,7 +71,7 @@ class GetOpenSearchAclConfigResult:
|
|
|
66
71
|
@pulumi.getter
|
|
67
72
|
def project(self) -> str:
|
|
68
73
|
"""
|
|
69
|
-
|
|
74
|
+
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.
|
|
70
75
|
"""
|
|
71
76
|
return pulumi.get(self, "project")
|
|
72
77
|
|
|
@@ -74,7 +79,7 @@ class GetOpenSearchAclConfigResult:
|
|
|
74
79
|
@pulumi.getter(name="serviceName")
|
|
75
80
|
def service_name(self) -> str:
|
|
76
81
|
"""
|
|
77
|
-
|
|
82
|
+
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
83
|
"""
|
|
79
84
|
return pulumi.get(self, "service_name")
|
|
80
85
|
|
|
@@ -104,13 +109,13 @@ def get_open_search_acl_config(project: Optional[str] = None,
|
|
|
104
109
|
import pulumi
|
|
105
110
|
import pulumi_aiven as aiven
|
|
106
111
|
|
|
107
|
-
os_acl_config = aiven.get_open_search_acl_config(project=
|
|
108
|
-
service_name=
|
|
112
|
+
os_acl_config = aiven.get_open_search_acl_config(project=os_project["project"],
|
|
113
|
+
service_name=os["serviceName"])
|
|
109
114
|
```
|
|
110
115
|
|
|
111
116
|
|
|
112
|
-
:param str project:
|
|
113
|
-
:param str service_name:
|
|
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.
|
|
114
119
|
"""
|
|
115
120
|
__args__ = dict()
|
|
116
121
|
__args__['project'] = project
|
|
@@ -124,12 +129,9 @@ def get_open_search_acl_config(project: Optional[str] = None,
|
|
|
124
129
|
id=pulumi.get(__ret__, 'id'),
|
|
125
130
|
project=pulumi.get(__ret__, 'project'),
|
|
126
131
|
service_name=pulumi.get(__ret__, 'service_name'))
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
@_utilities.lift_output_func(get_open_search_acl_config)
|
|
130
132
|
def get_open_search_acl_config_output(project: Optional[pulumi.Input[str]] = None,
|
|
131
133
|
service_name: Optional[pulumi.Input[str]] = None,
|
|
132
|
-
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetOpenSearchAclConfigResult]:
|
|
134
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetOpenSearchAclConfigResult]:
|
|
133
135
|
"""
|
|
134
136
|
The OpenSearch ACL Config data source provides information about an existing Aiven OpenSearch ACL Config.
|
|
135
137
|
|
|
@@ -139,12 +141,22 @@ def get_open_search_acl_config_output(project: Optional[pulumi.Input[str]] = Non
|
|
|
139
141
|
import pulumi
|
|
140
142
|
import pulumi_aiven as aiven
|
|
141
143
|
|
|
142
|
-
os_acl_config = aiven.get_open_search_acl_config(project=
|
|
143
|
-
service_name=
|
|
144
|
+
os_acl_config = aiven.get_open_search_acl_config(project=os_project["project"],
|
|
145
|
+
service_name=os["serviceName"])
|
|
144
146
|
```
|
|
145
147
|
|
|
146
148
|
|
|
147
|
-
:param str project:
|
|
148
|
-
:param str service_name:
|
|
149
|
+
: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.
|
|
150
|
+
: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.
|
|
149
151
|
"""
|
|
150
|
-
|
|
152
|
+
__args__ = dict()
|
|
153
|
+
__args__['project'] = project
|
|
154
|
+
__args__['serviceName'] = service_name
|
|
155
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
156
|
+
__ret__ = pulumi.runtime.invoke_output('aiven:index/getOpenSearchAclConfig:getOpenSearchAclConfig', __args__, opts=opts, typ=GetOpenSearchAclConfigResult)
|
|
157
|
+
return __ret__.apply(lambda __response__: GetOpenSearchAclConfigResult(
|
|
158
|
+
enabled=pulumi.get(__response__, 'enabled'),
|
|
159
|
+
extended_acl=pulumi.get(__response__, 'extended_acl'),
|
|
160
|
+
id=pulumi.get(__response__, 'id'),
|
|
161
|
+
project=pulumi.get(__response__, 'project'),
|
|
162
|
+
service_name=pulumi.get(__response__, 'service_name')))
|