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
|
@@ -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__ = ['InfluxdbDatabaseArgs', 'InfluxdbDatabase']
|
|
@@ -20,13 +25,11 @@ class InfluxdbDatabaseArgs:
|
|
|
20
25
|
termination_protection: Optional[pulumi.Input[bool]] = None):
|
|
21
26
|
"""
|
|
22
27
|
The set of arguments for constructing a InfluxdbDatabase resource.
|
|
23
|
-
:param pulumi.Input[str] database_name: The name of the service database.
|
|
24
|
-
:param pulumi.Input[str] project:
|
|
25
|
-
reference.
|
|
26
|
-
:param pulumi.Input[str] service_name:
|
|
27
|
-
|
|
28
|
-
:param pulumi.Input[bool] termination_protection: It is a Terraform client-side deletion protections, which prevents the database from being deleted by Terraform. It is
|
|
29
|
-
recommended to enable this for any production databases containing critical data. The default value is `false`.
|
|
28
|
+
:param pulumi.Input[str] database_name: The name of the service database. Changing this property forces recreation of the resource.
|
|
29
|
+
: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
|
|
30
|
+
reference. Changing this property forces recreation of the resource.
|
|
31
|
+
: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
|
|
32
|
+
reference. Changing this property forces recreation of the resource.
|
|
30
33
|
"""
|
|
31
34
|
pulumi.set(__self__, "database_name", database_name)
|
|
32
35
|
pulumi.set(__self__, "project", project)
|
|
@@ -38,7 +41,7 @@ class InfluxdbDatabaseArgs:
|
|
|
38
41
|
@pulumi.getter(name="databaseName")
|
|
39
42
|
def database_name(self) -> pulumi.Input[str]:
|
|
40
43
|
"""
|
|
41
|
-
The name of the service database.
|
|
44
|
+
The name of the service database. Changing this property forces recreation of the resource.
|
|
42
45
|
"""
|
|
43
46
|
return pulumi.get(self, "database_name")
|
|
44
47
|
|
|
@@ -50,8 +53,8 @@ class InfluxdbDatabaseArgs:
|
|
|
50
53
|
@pulumi.getter
|
|
51
54
|
def project(self) -> pulumi.Input[str]:
|
|
52
55
|
"""
|
|
53
|
-
|
|
54
|
-
reference.
|
|
56
|
+
The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a
|
|
57
|
+
reference. Changing this property forces recreation of the resource.
|
|
55
58
|
"""
|
|
56
59
|
return pulumi.get(self, "project")
|
|
57
60
|
|
|
@@ -63,8 +66,8 @@ class InfluxdbDatabaseArgs:
|
|
|
63
66
|
@pulumi.getter(name="serviceName")
|
|
64
67
|
def service_name(self) -> pulumi.Input[str]:
|
|
65
68
|
"""
|
|
66
|
-
|
|
67
|
-
|
|
69
|
+
The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a
|
|
70
|
+
reference. Changing this property forces recreation of the resource.
|
|
68
71
|
"""
|
|
69
72
|
return pulumi.get(self, "service_name")
|
|
70
73
|
|
|
@@ -75,10 +78,6 @@ class InfluxdbDatabaseArgs:
|
|
|
75
78
|
@property
|
|
76
79
|
@pulumi.getter(name="terminationProtection")
|
|
77
80
|
def termination_protection(self) -> Optional[pulumi.Input[bool]]:
|
|
78
|
-
"""
|
|
79
|
-
It is a Terraform client-side deletion protections, which prevents the database from being deleted by Terraform. It is
|
|
80
|
-
recommended to enable this for any production databases containing critical data. The default value is `false`.
|
|
81
|
-
"""
|
|
82
81
|
return pulumi.get(self, "termination_protection")
|
|
83
82
|
|
|
84
83
|
@termination_protection.setter
|
|
@@ -95,13 +94,11 @@ class _InfluxdbDatabaseState:
|
|
|
95
94
|
termination_protection: Optional[pulumi.Input[bool]] = None):
|
|
96
95
|
"""
|
|
97
96
|
Input properties used for looking up and filtering InfluxdbDatabase resources.
|
|
98
|
-
:param pulumi.Input[str] database_name: The name of the service database.
|
|
99
|
-
:param pulumi.Input[str] project:
|
|
100
|
-
reference.
|
|
101
|
-
:param pulumi.Input[str] service_name:
|
|
102
|
-
|
|
103
|
-
:param pulumi.Input[bool] termination_protection: It is a Terraform client-side deletion protections, which prevents the database from being deleted by Terraform. It is
|
|
104
|
-
recommended to enable this for any production databases containing critical data. The default value is `false`.
|
|
97
|
+
:param pulumi.Input[str] database_name: The name of the service database. Changing this property forces recreation of the resource.
|
|
98
|
+
: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
|
|
99
|
+
reference. Changing this property forces recreation of the resource.
|
|
100
|
+
: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
|
|
101
|
+
reference. Changing this property forces recreation of the resource.
|
|
105
102
|
"""
|
|
106
103
|
if database_name is not None:
|
|
107
104
|
pulumi.set(__self__, "database_name", database_name)
|
|
@@ -116,7 +113,7 @@ class _InfluxdbDatabaseState:
|
|
|
116
113
|
@pulumi.getter(name="databaseName")
|
|
117
114
|
def database_name(self) -> Optional[pulumi.Input[str]]:
|
|
118
115
|
"""
|
|
119
|
-
The name of the service database.
|
|
116
|
+
The name of the service database. Changing this property forces recreation of the resource.
|
|
120
117
|
"""
|
|
121
118
|
return pulumi.get(self, "database_name")
|
|
122
119
|
|
|
@@ -128,8 +125,8 @@ class _InfluxdbDatabaseState:
|
|
|
128
125
|
@pulumi.getter
|
|
129
126
|
def project(self) -> Optional[pulumi.Input[str]]:
|
|
130
127
|
"""
|
|
131
|
-
|
|
132
|
-
reference.
|
|
128
|
+
The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a
|
|
129
|
+
reference. Changing this property forces recreation of the resource.
|
|
133
130
|
"""
|
|
134
131
|
return pulumi.get(self, "project")
|
|
135
132
|
|
|
@@ -141,8 +138,8 @@ class _InfluxdbDatabaseState:
|
|
|
141
138
|
@pulumi.getter(name="serviceName")
|
|
142
139
|
def service_name(self) -> Optional[pulumi.Input[str]]:
|
|
143
140
|
"""
|
|
144
|
-
|
|
145
|
-
|
|
141
|
+
The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a
|
|
142
|
+
reference. Changing this property forces recreation of the resource.
|
|
146
143
|
"""
|
|
147
144
|
return pulumi.get(self, "service_name")
|
|
148
145
|
|
|
@@ -153,10 +150,6 @@ class _InfluxdbDatabaseState:
|
|
|
153
150
|
@property
|
|
154
151
|
@pulumi.getter(name="terminationProtection")
|
|
155
152
|
def termination_protection(self) -> Optional[pulumi.Input[bool]]:
|
|
156
|
-
"""
|
|
157
|
-
It is a Terraform client-side deletion protections, which prevents the database from being deleted by Terraform. It is
|
|
158
|
-
recommended to enable this for any production databases containing critical data. The default value is `false`.
|
|
159
|
-
"""
|
|
160
153
|
return pulumi.get(self, "termination_protection")
|
|
161
154
|
|
|
162
155
|
@termination_protection.setter
|
|
@@ -178,13 +171,11 @@ class InfluxdbDatabase(pulumi.CustomResource):
|
|
|
178
171
|
Create a InfluxdbDatabase resource with the given unique name, props, and options.
|
|
179
172
|
:param str resource_name: The name of the resource.
|
|
180
173
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
181
|
-
:param pulumi.Input[str] database_name: The name of the service database.
|
|
182
|
-
:param pulumi.Input[str] project:
|
|
183
|
-
reference.
|
|
184
|
-
:param pulumi.Input[str] service_name:
|
|
185
|
-
|
|
186
|
-
:param pulumi.Input[bool] termination_protection: It is a Terraform client-side deletion protections, which prevents the database from being deleted by Terraform. It is
|
|
187
|
-
recommended to enable this for any production databases containing critical data. The default value is `false`.
|
|
174
|
+
:param pulumi.Input[str] database_name: The name of the service database. Changing this property forces recreation of the resource.
|
|
175
|
+
: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
|
|
176
|
+
reference. Changing this property forces recreation of the resource.
|
|
177
|
+
: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
|
|
178
|
+
reference. Changing this property forces recreation of the resource.
|
|
188
179
|
"""
|
|
189
180
|
...
|
|
190
181
|
@overload
|
|
@@ -253,13 +244,11 @@ class InfluxdbDatabase(pulumi.CustomResource):
|
|
|
253
244
|
:param str resource_name: The unique name of the resulting resource.
|
|
254
245
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
255
246
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
256
|
-
:param pulumi.Input[str] database_name: The name of the service database.
|
|
257
|
-
:param pulumi.Input[str] project:
|
|
258
|
-
reference.
|
|
259
|
-
:param pulumi.Input[str] service_name:
|
|
260
|
-
|
|
261
|
-
:param pulumi.Input[bool] termination_protection: It is a Terraform client-side deletion protections, which prevents the database from being deleted by Terraform. It is
|
|
262
|
-
recommended to enable this for any production databases containing critical data. The default value is `false`.
|
|
247
|
+
:param pulumi.Input[str] database_name: The name of the service database. Changing this property forces recreation of the resource.
|
|
248
|
+
: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
|
|
249
|
+
reference. Changing this property forces recreation of the resource.
|
|
250
|
+
: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
|
|
251
|
+
reference. Changing this property forces recreation of the resource.
|
|
263
252
|
"""
|
|
264
253
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
265
254
|
|
|
@@ -275,7 +264,7 @@ class InfluxdbDatabase(pulumi.CustomResource):
|
|
|
275
264
|
@pulumi.getter(name="databaseName")
|
|
276
265
|
def database_name(self) -> pulumi.Output[str]:
|
|
277
266
|
"""
|
|
278
|
-
The name of the service database.
|
|
267
|
+
The name of the service database. Changing this property forces recreation of the resource.
|
|
279
268
|
"""
|
|
280
269
|
return pulumi.get(self, "database_name")
|
|
281
270
|
|
|
@@ -283,8 +272,8 @@ class InfluxdbDatabase(pulumi.CustomResource):
|
|
|
283
272
|
@pulumi.getter
|
|
284
273
|
def project(self) -> pulumi.Output[str]:
|
|
285
274
|
"""
|
|
286
|
-
|
|
287
|
-
reference.
|
|
275
|
+
The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a
|
|
276
|
+
reference. Changing this property forces recreation of the resource.
|
|
288
277
|
"""
|
|
289
278
|
return pulumi.get(self, "project")
|
|
290
279
|
|
|
@@ -292,17 +281,13 @@ class InfluxdbDatabase(pulumi.CustomResource):
|
|
|
292
281
|
@pulumi.getter(name="serviceName")
|
|
293
282
|
def service_name(self) -> pulumi.Output[str]:
|
|
294
283
|
"""
|
|
295
|
-
|
|
296
|
-
|
|
284
|
+
The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a
|
|
285
|
+
reference. Changing this property forces recreation of the resource.
|
|
297
286
|
"""
|
|
298
287
|
return pulumi.get(self, "service_name")
|
|
299
288
|
|
|
300
289
|
@property
|
|
301
290
|
@pulumi.getter(name="terminationProtection")
|
|
302
291
|
def termination_protection(self) -> pulumi.Output[Optional[bool]]:
|
|
303
|
-
"""
|
|
304
|
-
It is a Terraform client-side deletion protections, which prevents the database from being deleted by Terraform. It is
|
|
305
|
-
recommended to enable this for any production databases containing critical data. The default value is `false`.
|
|
306
|
-
"""
|
|
307
292
|
return pulumi.get(self, "termination_protection")
|
|
308
293
|
|
pulumi_aiven/influxdb_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__ = ['InfluxdbUserArgs', 'InfluxdbUser']
|
|
@@ -20,12 +25,12 @@ class InfluxdbUserArgs:
|
|
|
20
25
|
password: Optional[pulumi.Input[str]] = None):
|
|
21
26
|
"""
|
|
22
27
|
The set of arguments for constructing a InfluxdbUser resource.
|
|
23
|
-
:param pulumi.Input[str] project:
|
|
24
|
-
reference.
|
|
25
|
-
:param pulumi.Input[str] service_name:
|
|
26
|
-
|
|
27
|
-
:param pulumi.Input[str] username: The actual name of the InfluxDB User. To set up proper dependencies please refer to this variable as a reference.
|
|
28
|
-
|
|
28
|
+
: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
|
|
29
|
+
reference. Changing this property forces recreation of the resource.
|
|
30
|
+
: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
|
|
31
|
+
reference. Changing this property forces recreation of the resource.
|
|
32
|
+
:param pulumi.Input[str] username: The actual name of the InfluxDB User. To set up proper dependencies please refer to this variable as a reference.
|
|
33
|
+
Changing this property forces recreation of the resource.
|
|
29
34
|
:param pulumi.Input[str] password: The password of the InfluxDB User.
|
|
30
35
|
"""
|
|
31
36
|
pulumi.set(__self__, "project", project)
|
|
@@ -38,8 +43,8 @@ class InfluxdbUserArgs:
|
|
|
38
43
|
@pulumi.getter
|
|
39
44
|
def project(self) -> pulumi.Input[str]:
|
|
40
45
|
"""
|
|
41
|
-
|
|
42
|
-
reference.
|
|
46
|
+
The name of the project 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
48
|
"""
|
|
44
49
|
return pulumi.get(self, "project")
|
|
45
50
|
|
|
@@ -51,8 +56,8 @@ class InfluxdbUserArgs:
|
|
|
51
56
|
@pulumi.getter(name="serviceName")
|
|
52
57
|
def service_name(self) -> pulumi.Input[str]:
|
|
53
58
|
"""
|
|
54
|
-
|
|
55
|
-
|
|
59
|
+
The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a
|
|
60
|
+
reference. Changing this property forces recreation of the resource.
|
|
56
61
|
"""
|
|
57
62
|
return pulumi.get(self, "service_name")
|
|
58
63
|
|
|
@@ -64,8 +69,8 @@ class InfluxdbUserArgs:
|
|
|
64
69
|
@pulumi.getter
|
|
65
70
|
def username(self) -> pulumi.Input[str]:
|
|
66
71
|
"""
|
|
67
|
-
The actual name of the InfluxDB User. To set up proper dependencies please refer to this variable as a reference.
|
|
68
|
-
|
|
72
|
+
The actual name of the InfluxDB User. To set up proper dependencies please refer to this variable as a reference.
|
|
73
|
+
Changing this property forces recreation of the resource.
|
|
69
74
|
"""
|
|
70
75
|
return pulumi.get(self, "username")
|
|
71
76
|
|
|
@@ -101,13 +106,13 @@ class _InfluxdbUserState:
|
|
|
101
106
|
:param pulumi.Input[str] access_cert: Access certificate for the user if applicable for the service in question
|
|
102
107
|
:param pulumi.Input[str] access_key: Access certificate key for the user if applicable for the service in question
|
|
103
108
|
:param pulumi.Input[str] password: The password of the InfluxDB User.
|
|
104
|
-
:param pulumi.Input[str] project:
|
|
105
|
-
reference.
|
|
106
|
-
:param pulumi.Input[str] service_name:
|
|
107
|
-
|
|
109
|
+
: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
|
|
110
|
+
reference. Changing this property forces recreation of the resource.
|
|
111
|
+
: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
|
|
112
|
+
reference. Changing this property forces recreation of the resource.
|
|
108
113
|
:param pulumi.Input[str] type: Type of the user account. Tells whether the user is the primary account or a regular account.
|
|
109
|
-
:param pulumi.Input[str] username: The actual name of the InfluxDB User. To set up proper dependencies please refer to this variable as a reference.
|
|
110
|
-
|
|
114
|
+
:param pulumi.Input[str] username: The actual name of the InfluxDB User. To set up proper dependencies please refer to this variable as a reference.
|
|
115
|
+
Changing this property forces recreation of the resource.
|
|
111
116
|
"""
|
|
112
117
|
if access_cert is not None:
|
|
113
118
|
pulumi.set(__self__, "access_cert", access_cert)
|
|
@@ -164,8 +169,8 @@ class _InfluxdbUserState:
|
|
|
164
169
|
@pulumi.getter
|
|
165
170
|
def project(self) -> Optional[pulumi.Input[str]]:
|
|
166
171
|
"""
|
|
167
|
-
|
|
168
|
-
reference.
|
|
172
|
+
The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a
|
|
173
|
+
reference. Changing this property forces recreation of the resource.
|
|
169
174
|
"""
|
|
170
175
|
return pulumi.get(self, "project")
|
|
171
176
|
|
|
@@ -177,8 +182,8 @@ class _InfluxdbUserState:
|
|
|
177
182
|
@pulumi.getter(name="serviceName")
|
|
178
183
|
def service_name(self) -> Optional[pulumi.Input[str]]:
|
|
179
184
|
"""
|
|
180
|
-
|
|
181
|
-
|
|
185
|
+
The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a
|
|
186
|
+
reference. Changing this property forces recreation of the resource.
|
|
182
187
|
"""
|
|
183
188
|
return pulumi.get(self, "service_name")
|
|
184
189
|
|
|
@@ -202,8 +207,8 @@ class _InfluxdbUserState:
|
|
|
202
207
|
@pulumi.getter
|
|
203
208
|
def username(self) -> Optional[pulumi.Input[str]]:
|
|
204
209
|
"""
|
|
205
|
-
The actual name of the InfluxDB User. To set up proper dependencies please refer to this variable as a reference.
|
|
206
|
-
|
|
210
|
+
The actual name of the InfluxDB User. To set up proper dependencies please refer to this variable as a reference.
|
|
211
|
+
Changing this property forces recreation of the resource.
|
|
207
212
|
"""
|
|
208
213
|
return pulumi.get(self, "username")
|
|
209
214
|
|
|
@@ -227,12 +232,12 @@ class InfluxdbUser(pulumi.CustomResource):
|
|
|
227
232
|
:param str resource_name: The name of the resource.
|
|
228
233
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
229
234
|
:param pulumi.Input[str] password: The password of the InfluxDB User.
|
|
230
|
-
:param pulumi.Input[str] project:
|
|
231
|
-
reference.
|
|
232
|
-
:param pulumi.Input[str] service_name:
|
|
233
|
-
|
|
234
|
-
:param pulumi.Input[str] username: The actual name of the InfluxDB User. To set up proper dependencies please refer to this variable as a reference.
|
|
235
|
-
|
|
235
|
+
: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
|
|
236
|
+
reference. Changing this property forces recreation of the resource.
|
|
237
|
+
: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
|
|
238
|
+
reference. Changing this property forces recreation of the resource.
|
|
239
|
+
:param pulumi.Input[str] username: The actual name of the InfluxDB User. To set up proper dependencies please refer to this variable as a reference.
|
|
240
|
+
Changing this property forces recreation of the resource.
|
|
236
241
|
"""
|
|
237
242
|
...
|
|
238
243
|
@overload
|
|
@@ -312,13 +317,13 @@ class InfluxdbUser(pulumi.CustomResource):
|
|
|
312
317
|
:param pulumi.Input[str] access_cert: Access certificate for the user if applicable for the service in question
|
|
313
318
|
:param pulumi.Input[str] access_key: Access certificate key for the user if applicable for the service in question
|
|
314
319
|
:param pulumi.Input[str] password: The password of the InfluxDB User.
|
|
315
|
-
:param pulumi.Input[str] project:
|
|
316
|
-
reference.
|
|
317
|
-
:param pulumi.Input[str] service_name:
|
|
318
|
-
|
|
320
|
+
: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
|
|
321
|
+
reference. Changing this property forces recreation of the resource.
|
|
322
|
+
: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
|
|
323
|
+
reference. Changing this property forces recreation of the resource.
|
|
319
324
|
:param pulumi.Input[str] type: Type of the user account. Tells whether the user is the primary account or a regular account.
|
|
320
|
-
:param pulumi.Input[str] username: The actual name of the InfluxDB User. To set up proper dependencies please refer to this variable as a reference.
|
|
321
|
-
|
|
325
|
+
:param pulumi.Input[str] username: The actual name of the InfluxDB User. To set up proper dependencies please refer to this variable as a reference.
|
|
326
|
+
Changing this property forces recreation of the resource.
|
|
322
327
|
"""
|
|
323
328
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
324
329
|
|
|
@@ -361,8 +366,8 @@ class InfluxdbUser(pulumi.CustomResource):
|
|
|
361
366
|
@pulumi.getter
|
|
362
367
|
def project(self) -> pulumi.Output[str]:
|
|
363
368
|
"""
|
|
364
|
-
|
|
365
|
-
reference.
|
|
369
|
+
The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a
|
|
370
|
+
reference. Changing this property forces recreation of the resource.
|
|
366
371
|
"""
|
|
367
372
|
return pulumi.get(self, "project")
|
|
368
373
|
|
|
@@ -370,8 +375,8 @@ class InfluxdbUser(pulumi.CustomResource):
|
|
|
370
375
|
@pulumi.getter(name="serviceName")
|
|
371
376
|
def service_name(self) -> pulumi.Output[str]:
|
|
372
377
|
"""
|
|
373
|
-
|
|
374
|
-
|
|
378
|
+
The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a
|
|
379
|
+
reference. Changing this property forces recreation of the resource.
|
|
375
380
|
"""
|
|
376
381
|
return pulumi.get(self, "service_name")
|
|
377
382
|
|
|
@@ -387,8 +392,8 @@ class InfluxdbUser(pulumi.CustomResource):
|
|
|
387
392
|
@pulumi.getter
|
|
388
393
|
def username(self) -> pulumi.Output[str]:
|
|
389
394
|
"""
|
|
390
|
-
The actual name of the InfluxDB User. To set up proper dependencies please refer to this variable as a reference.
|
|
391
|
-
|
|
395
|
+
The actual name of the InfluxDB User. To set up proper dependencies please refer to this variable as a reference.
|
|
396
|
+
Changing this property forces recreation of the resource.
|
|
392
397
|
"""
|
|
393
398
|
return pulumi.get(self, "username")
|
|
394
399
|
|