pulumi-aiven 6.42.0a1755315469__py3-none-any.whl → 6.43.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of pulumi-aiven might be problematic. Click here for more details.
- pulumi_aiven/_inputs.py +657 -183
- pulumi_aiven/account_team.py +6 -12
- pulumi_aiven/account_team_member.py +6 -12
- pulumi_aiven/account_team_project.py +6 -12
- pulumi_aiven/alloydbomni.py +44 -23
- pulumi_aiven/alloydbomni_database.py +26 -0
- pulumi_aiven/alloydbomni_user.py +26 -0
- pulumi_aiven/cassandra.py +18 -23
- pulumi_aiven/clickhouse.py +18 -23
- pulumi_aiven/dragonfly.py +18 -23
- pulumi_aiven/flink.py +18 -23
- pulumi_aiven/get_account_team.py +6 -12
- pulumi_aiven/get_account_team_member.py +6 -12
- pulumi_aiven/get_account_team_project.py +6 -12
- pulumi_aiven/get_alloydbomni.py +28 -2
- pulumi_aiven/get_alloydbomni_database.py +26 -0
- pulumi_aiven/get_alloydbomni_user.py +26 -0
- pulumi_aiven/get_cassanda.py +2 -2
- pulumi_aiven/get_cassandra.py +2 -2
- pulumi_aiven/get_clickhouse.py +2 -2
- pulumi_aiven/get_dragonfly.py +2 -2
- pulumi_aiven/get_flink.py +2 -2
- pulumi_aiven/get_grafana.py +2 -2
- pulumi_aiven/get_kafka.py +2 -2
- pulumi_aiven/get_kafka_connect.py +2 -2
- pulumi_aiven/get_kafka_mirror_maker.py +2 -2
- pulumi_aiven/get_m3_aggregator.py +2 -111
- pulumi_aiven/get_m3_db.py +2 -123
- pulumi_aiven/get_m3db_user.py +2 -61
- pulumi_aiven/get_my_sql.py +2 -2
- pulumi_aiven/get_open_search.py +2 -2
- pulumi_aiven/get_organization_application_user.py +29 -11
- pulumi_aiven/get_organization_project.py +0 -6
- pulumi_aiven/get_pg.py +2 -2
- pulumi_aiven/get_redis.py +2 -2
- pulumi_aiven/get_redis_user.py +3 -3
- pulumi_aiven/get_thanos.py +2 -2
- pulumi_aiven/get_valkey.py +2 -2
- pulumi_aiven/get_valkey_user.py +3 -3
- pulumi_aiven/grafana.py +18 -23
- pulumi_aiven/influx_db.py +96 -291
- pulumi_aiven/influxdb_database.py +14 -28
- pulumi_aiven/influxdb_user.py +21 -42
- pulumi_aiven/kafka.py +18 -23
- pulumi_aiven/kafka_connect.py +18 -23
- pulumi_aiven/kafka_mirror_maker.py +18 -23
- pulumi_aiven/m3_aggregator.py +20 -75
- pulumi_aiven/m3_db.py +20 -95
- pulumi_aiven/m3db_user.py +2 -54
- pulumi_aiven/my_sql.py +18 -23
- pulumi_aiven/open_search.py +18 -23
- pulumi_aiven/organization_application_user.py +69 -41
- pulumi_aiven/organization_application_user_token.py +127 -91
- pulumi_aiven/organization_billing_group.py +7 -7
- pulumi_aiven/organization_permission.py +80 -47
- pulumi_aiven/organization_project.py +0 -6
- pulumi_aiven/organization_user.py +8 -8
- pulumi_aiven/outputs.py +616 -234
- pulumi_aiven/pg.py +18 -23
- pulumi_aiven/project.py +2 -24
- pulumi_aiven/pulumi-plugin.json +1 -1
- pulumi_aiven/redis.py +18 -23
- pulumi_aiven/redis_user.py +21 -21
- pulumi_aiven/thanos.py +18 -23
- pulumi_aiven/valkey.py +18 -23
- pulumi_aiven/valkey_user.py +21 -21
- {pulumi_aiven-6.42.0a1755315469.dist-info → pulumi_aiven-6.43.0.dist-info}/METADATA +1 -1
- {pulumi_aiven-6.42.0a1755315469.dist-info → pulumi_aiven-6.43.0.dist-info}/RECORD +70 -70
- {pulumi_aiven-6.42.0a1755315469.dist-info → pulumi_aiven-6.43.0.dist-info}/WHEEL +0 -0
- {pulumi_aiven-6.42.0a1755315469.dist-info → pulumi_aiven-6.43.0.dist-info}/top_level.txt +0 -0
|
@@ -26,10 +26,8 @@ class InfluxdbDatabaseArgs:
|
|
|
26
26
|
"""
|
|
27
27
|
The set of arguments for constructing a InfluxdbDatabase resource.
|
|
28
28
|
:param pulumi.Input[_builtins.str] database_name: The name of the service database. Changing this property forces recreation of the resource.
|
|
29
|
-
:param pulumi.Input[_builtins.str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a
|
|
30
|
-
|
|
31
|
-
:param pulumi.Input[_builtins.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.
|
|
29
|
+
:param pulumi.Input[_builtins.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.
|
|
30
|
+
:param pulumi.Input[_builtins.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.
|
|
33
31
|
"""
|
|
34
32
|
pulumi.set(__self__, "database_name", database_name)
|
|
35
33
|
pulumi.set(__self__, "project", project)
|
|
@@ -53,8 +51,7 @@ class InfluxdbDatabaseArgs:
|
|
|
53
51
|
@pulumi.getter
|
|
54
52
|
def project(self) -> pulumi.Input[_builtins.str]:
|
|
55
53
|
"""
|
|
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.
|
|
54
|
+
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.
|
|
58
55
|
"""
|
|
59
56
|
return pulumi.get(self, "project")
|
|
60
57
|
|
|
@@ -66,8 +63,7 @@ class InfluxdbDatabaseArgs:
|
|
|
66
63
|
@pulumi.getter(name="serviceName")
|
|
67
64
|
def service_name(self) -> pulumi.Input[_builtins.str]:
|
|
68
65
|
"""
|
|
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.
|
|
66
|
+
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.
|
|
71
67
|
"""
|
|
72
68
|
return pulumi.get(self, "service_name")
|
|
73
69
|
|
|
@@ -95,10 +91,8 @@ class _InfluxdbDatabaseState:
|
|
|
95
91
|
"""
|
|
96
92
|
Input properties used for looking up and filtering InfluxdbDatabase resources.
|
|
97
93
|
:param pulumi.Input[_builtins.str] database_name: The name of the service database. Changing this property forces recreation of the resource.
|
|
98
|
-
:param pulumi.Input[_builtins.str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a
|
|
99
|
-
|
|
100
|
-
:param pulumi.Input[_builtins.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.
|
|
94
|
+
:param pulumi.Input[_builtins.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.
|
|
95
|
+
:param pulumi.Input[_builtins.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.
|
|
102
96
|
"""
|
|
103
97
|
if database_name is not None:
|
|
104
98
|
pulumi.set(__self__, "database_name", database_name)
|
|
@@ -125,8 +119,7 @@ class _InfluxdbDatabaseState:
|
|
|
125
119
|
@pulumi.getter
|
|
126
120
|
def project(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
127
121
|
"""
|
|
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.
|
|
122
|
+
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.
|
|
130
123
|
"""
|
|
131
124
|
return pulumi.get(self, "project")
|
|
132
125
|
|
|
@@ -138,8 +131,7 @@ class _InfluxdbDatabaseState:
|
|
|
138
131
|
@pulumi.getter(name="serviceName")
|
|
139
132
|
def service_name(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
140
133
|
"""
|
|
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.
|
|
134
|
+
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.
|
|
143
135
|
"""
|
|
144
136
|
return pulumi.get(self, "service_name")
|
|
145
137
|
|
|
@@ -173,10 +165,8 @@ class InfluxdbDatabase(pulumi.CustomResource):
|
|
|
173
165
|
:param str resource_name: The name of the resource.
|
|
174
166
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
175
167
|
:param pulumi.Input[_builtins.str] database_name: The name of the service database. Changing this property forces recreation of the resource.
|
|
176
|
-
:param pulumi.Input[_builtins.str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a
|
|
177
|
-
|
|
178
|
-
:param pulumi.Input[_builtins.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
|
|
179
|
-
reference. Changing this property forces recreation of the resource.
|
|
168
|
+
:param pulumi.Input[_builtins.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.
|
|
169
|
+
:param pulumi.Input[_builtins.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.
|
|
180
170
|
"""
|
|
181
171
|
...
|
|
182
172
|
@overload
|
|
@@ -246,10 +236,8 @@ class InfluxdbDatabase(pulumi.CustomResource):
|
|
|
246
236
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
247
237
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
248
238
|
:param pulumi.Input[_builtins.str] database_name: The name of the service database. Changing this property forces recreation of the resource.
|
|
249
|
-
:param pulumi.Input[_builtins.str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a
|
|
250
|
-
|
|
251
|
-
:param pulumi.Input[_builtins.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
|
|
252
|
-
reference. Changing this property forces recreation of the resource.
|
|
239
|
+
:param pulumi.Input[_builtins.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.
|
|
240
|
+
:param pulumi.Input[_builtins.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.
|
|
253
241
|
"""
|
|
254
242
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
255
243
|
|
|
@@ -273,8 +261,7 @@ class InfluxdbDatabase(pulumi.CustomResource):
|
|
|
273
261
|
@pulumi.getter
|
|
274
262
|
def project(self) -> pulumi.Output[_builtins.str]:
|
|
275
263
|
"""
|
|
276
|
-
The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a
|
|
277
|
-
reference. Changing this property forces recreation of the resource.
|
|
264
|
+
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.
|
|
278
265
|
"""
|
|
279
266
|
return pulumi.get(self, "project")
|
|
280
267
|
|
|
@@ -282,8 +269,7 @@ class InfluxdbDatabase(pulumi.CustomResource):
|
|
|
282
269
|
@pulumi.getter(name="serviceName")
|
|
283
270
|
def service_name(self) -> pulumi.Output[_builtins.str]:
|
|
284
271
|
"""
|
|
285
|
-
The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a
|
|
286
|
-
reference. Changing this property forces recreation of the resource.
|
|
272
|
+
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.
|
|
287
273
|
"""
|
|
288
274
|
return pulumi.get(self, "service_name")
|
|
289
275
|
|
pulumi_aiven/influxdb_user.py
CHANGED
|
@@ -25,12 +25,9 @@ class InfluxdbUserArgs:
|
|
|
25
25
|
password: Optional[pulumi.Input[_builtins.str]] = None):
|
|
26
26
|
"""
|
|
27
27
|
The set of arguments for constructing a InfluxdbUser resource.
|
|
28
|
-
:param pulumi.Input[_builtins.str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a
|
|
29
|
-
|
|
30
|
-
:param pulumi.Input[_builtins.str]
|
|
31
|
-
reference. Changing this property forces recreation of the resource.
|
|
32
|
-
:param pulumi.Input[_builtins.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.
|
|
28
|
+
:param pulumi.Input[_builtins.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.
|
|
29
|
+
:param pulumi.Input[_builtins.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.
|
|
30
|
+
:param pulumi.Input[_builtins.str] username: The actual name of the InfluxDB User. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
|
|
34
31
|
:param pulumi.Input[_builtins.str] password: The password of the InfluxDB User.
|
|
35
32
|
"""
|
|
36
33
|
pulumi.set(__self__, "project", project)
|
|
@@ -43,8 +40,7 @@ class InfluxdbUserArgs:
|
|
|
43
40
|
@pulumi.getter
|
|
44
41
|
def project(self) -> pulumi.Input[_builtins.str]:
|
|
45
42
|
"""
|
|
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
|
+
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.
|
|
48
44
|
"""
|
|
49
45
|
return pulumi.get(self, "project")
|
|
50
46
|
|
|
@@ -56,8 +52,7 @@ class InfluxdbUserArgs:
|
|
|
56
52
|
@pulumi.getter(name="serviceName")
|
|
57
53
|
def service_name(self) -> pulumi.Input[_builtins.str]:
|
|
58
54
|
"""
|
|
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.
|
|
55
|
+
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.
|
|
61
56
|
"""
|
|
62
57
|
return pulumi.get(self, "service_name")
|
|
63
58
|
|
|
@@ -69,8 +64,7 @@ class InfluxdbUserArgs:
|
|
|
69
64
|
@pulumi.getter
|
|
70
65
|
def username(self) -> pulumi.Input[_builtins.str]:
|
|
71
66
|
"""
|
|
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.
|
|
67
|
+
The actual name of the InfluxDB User. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
|
|
74
68
|
"""
|
|
75
69
|
return pulumi.get(self, "username")
|
|
76
70
|
|
|
@@ -106,13 +100,10 @@ class _InfluxdbUserState:
|
|
|
106
100
|
:param pulumi.Input[_builtins.str] access_cert: Access certificate for the user if applicable for the service in question
|
|
107
101
|
:param pulumi.Input[_builtins.str] access_key: Access certificate key for the user if applicable for the service in question
|
|
108
102
|
:param pulumi.Input[_builtins.str] password: The password of the InfluxDB User.
|
|
109
|
-
:param pulumi.Input[_builtins.str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a
|
|
110
|
-
|
|
111
|
-
:param pulumi.Input[_builtins.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.
|
|
103
|
+
:param pulumi.Input[_builtins.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.
|
|
104
|
+
:param pulumi.Input[_builtins.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.
|
|
113
105
|
:param pulumi.Input[_builtins.str] type: Type of the user account. Tells whether the user is the primary account or a regular account.
|
|
114
|
-
:param pulumi.Input[_builtins.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.
|
|
106
|
+
:param pulumi.Input[_builtins.str] username: The actual name of the InfluxDB User. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
|
|
116
107
|
"""
|
|
117
108
|
if access_cert is not None:
|
|
118
109
|
pulumi.set(__self__, "access_cert", access_cert)
|
|
@@ -169,8 +160,7 @@ class _InfluxdbUserState:
|
|
|
169
160
|
@pulumi.getter
|
|
170
161
|
def project(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
171
162
|
"""
|
|
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.
|
|
163
|
+
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.
|
|
174
164
|
"""
|
|
175
165
|
return pulumi.get(self, "project")
|
|
176
166
|
|
|
@@ -182,8 +172,7 @@ class _InfluxdbUserState:
|
|
|
182
172
|
@pulumi.getter(name="serviceName")
|
|
183
173
|
def service_name(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
184
174
|
"""
|
|
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.
|
|
175
|
+
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.
|
|
187
176
|
"""
|
|
188
177
|
return pulumi.get(self, "service_name")
|
|
189
178
|
|
|
@@ -207,8 +196,7 @@ class _InfluxdbUserState:
|
|
|
207
196
|
@pulumi.getter
|
|
208
197
|
def username(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
209
198
|
"""
|
|
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.
|
|
199
|
+
The actual name of the InfluxDB User. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
|
|
212
200
|
"""
|
|
213
201
|
return pulumi.get(self, "username")
|
|
214
202
|
|
|
@@ -233,12 +221,9 @@ class InfluxdbUser(pulumi.CustomResource):
|
|
|
233
221
|
:param str resource_name: The name of the resource.
|
|
234
222
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
235
223
|
:param pulumi.Input[_builtins.str] password: The password of the InfluxDB User.
|
|
236
|
-
:param pulumi.Input[_builtins.str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a
|
|
237
|
-
|
|
238
|
-
:param pulumi.Input[_builtins.str]
|
|
239
|
-
reference. Changing this property forces recreation of the resource.
|
|
240
|
-
:param pulumi.Input[_builtins.str] username: The actual name of the InfluxDB User. To set up proper dependencies please refer to this variable as a reference.
|
|
241
|
-
Changing this property forces recreation of the resource.
|
|
224
|
+
:param pulumi.Input[_builtins.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.
|
|
225
|
+
:param pulumi.Input[_builtins.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.
|
|
226
|
+
:param pulumi.Input[_builtins.str] username: The actual name of the InfluxDB User. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
|
|
242
227
|
"""
|
|
243
228
|
...
|
|
244
229
|
@overload
|
|
@@ -318,13 +303,10 @@ class InfluxdbUser(pulumi.CustomResource):
|
|
|
318
303
|
:param pulumi.Input[_builtins.str] access_cert: Access certificate for the user if applicable for the service in question
|
|
319
304
|
:param pulumi.Input[_builtins.str] access_key: Access certificate key for the user if applicable for the service in question
|
|
320
305
|
:param pulumi.Input[_builtins.str] password: The password of the InfluxDB User.
|
|
321
|
-
:param pulumi.Input[_builtins.str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a
|
|
322
|
-
|
|
323
|
-
:param pulumi.Input[_builtins.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
|
|
324
|
-
reference. Changing this property forces recreation of the resource.
|
|
306
|
+
:param pulumi.Input[_builtins.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.
|
|
307
|
+
:param pulumi.Input[_builtins.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.
|
|
325
308
|
:param pulumi.Input[_builtins.str] type: Type of the user account. Tells whether the user is the primary account or a regular account.
|
|
326
|
-
:param pulumi.Input[_builtins.str] username: The actual name of the InfluxDB User. To set up proper dependencies please refer to this variable as a reference.
|
|
327
|
-
Changing this property forces recreation of the resource.
|
|
309
|
+
:param pulumi.Input[_builtins.str] username: The actual name of the InfluxDB User. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
|
|
328
310
|
"""
|
|
329
311
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
330
312
|
|
|
@@ -367,8 +349,7 @@ class InfluxdbUser(pulumi.CustomResource):
|
|
|
367
349
|
@pulumi.getter
|
|
368
350
|
def project(self) -> pulumi.Output[_builtins.str]:
|
|
369
351
|
"""
|
|
370
|
-
The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a
|
|
371
|
-
reference. Changing this property forces recreation of the resource.
|
|
352
|
+
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.
|
|
372
353
|
"""
|
|
373
354
|
return pulumi.get(self, "project")
|
|
374
355
|
|
|
@@ -376,8 +357,7 @@ class InfluxdbUser(pulumi.CustomResource):
|
|
|
376
357
|
@pulumi.getter(name="serviceName")
|
|
377
358
|
def service_name(self) -> pulumi.Output[_builtins.str]:
|
|
378
359
|
"""
|
|
379
|
-
The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a
|
|
380
|
-
reference. Changing this property forces recreation of the resource.
|
|
360
|
+
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.
|
|
381
361
|
"""
|
|
382
362
|
return pulumi.get(self, "service_name")
|
|
383
363
|
|
|
@@ -393,8 +373,7 @@ class InfluxdbUser(pulumi.CustomResource):
|
|
|
393
373
|
@pulumi.getter
|
|
394
374
|
def username(self) -> pulumi.Output[_builtins.str]:
|
|
395
375
|
"""
|
|
396
|
-
The actual name of the InfluxDB User. To set up proper dependencies please refer to this variable as a reference.
|
|
397
|
-
Changing this property forces recreation of the resource.
|
|
376
|
+
The actual name of the InfluxDB User. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
|
|
398
377
|
"""
|
|
399
378
|
return pulumi.get(self, "username")
|
|
400
379
|
|
pulumi_aiven/kafka.py
CHANGED
|
@@ -47,7 +47,7 @@ class KafkaArgs:
|
|
|
47
47
|
:param pulumi.Input[_builtins.str] additional_disk_space: 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 without an autoscaler integration or high availability capabilities. The field can be safely removed when autoscaler is enabled without causing any changes.
|
|
48
48
|
:param pulumi.Input[_builtins.str] cloud_name: The cloud provider and region the service is hosted in. The format is `provider-region`, for example: `google-europe-west1`. The [available cloud regions](https://aiven.io/docs/platform/reference/list_of_clouds) can differ per project and service. Changing this value [migrates the service to another cloud provider or region](https://aiven.io/docs/platform/howto/migrate-services-cloud-region). The migration runs in the background and includes a DNS update to redirect traffic to the new region. Most services experience no downtime, but some databases may have a brief interruption during DNS propagation.
|
|
49
49
|
:param pulumi.Input[_builtins.bool] default_acl: Create a default wildcard Kafka ACL.
|
|
50
|
-
:param pulumi.Input[_builtins.str] disk_space: Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
|
|
50
|
+
:param pulumi.Input[_builtins.str] disk_space: Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing. Please use `additional_disk_space` to specify the space to be added to the default disk space defined by the plan.
|
|
51
51
|
:param pulumi.Input['KafkaKafkaUserConfigArgs'] kafka_user_config: Kafka user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
52
52
|
:param pulumi.Input[Sequence[pulumi.Input['KafkaKafkaArgs']]] kafkas: Kafka server connection details.
|
|
53
53
|
:param pulumi.Input[_builtins.bool] karapace: Switch the service to use [Karapace](https://aiven.io/docs/products/kafka/karapace) for schema registry and REST proxy. This attribute is deprecated, use `schema_registry` and `kafka_rest` instead.
|
|
@@ -70,8 +70,8 @@ class KafkaArgs:
|
|
|
70
70
|
if default_acl is not None:
|
|
71
71
|
pulumi.set(__self__, "default_acl", default_acl)
|
|
72
72
|
if disk_space is not None:
|
|
73
|
-
warnings.warn("""
|
|
74
|
-
pulumi.log.warn("""disk_space is deprecated:
|
|
73
|
+
warnings.warn("""Please use `additional_disk_space` to specify the space to be added to the default disk space defined by the plan.""", DeprecationWarning)
|
|
74
|
+
pulumi.log.warn("""disk_space is deprecated: Please use `additional_disk_space` to specify the space to be added to the default disk space defined by the plan.""")
|
|
75
75
|
if disk_space is not None:
|
|
76
76
|
pulumi.set(__self__, "disk_space", disk_space)
|
|
77
77
|
if kafka_user_config is not None:
|
|
@@ -174,10 +174,10 @@ class KafkaArgs:
|
|
|
174
174
|
|
|
175
175
|
@_builtins.property
|
|
176
176
|
@pulumi.getter(name="diskSpace")
|
|
177
|
-
@_utilities.deprecated("""
|
|
177
|
+
@_utilities.deprecated("""Please use `additional_disk_space` to specify the space to be added to the default disk space defined by the plan.""")
|
|
178
178
|
def disk_space(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
179
179
|
"""
|
|
180
|
-
Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
|
|
180
|
+
Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing. Please use `additional_disk_space` to specify the space to be added to the default disk space defined by the plan.
|
|
181
181
|
"""
|
|
182
182
|
return pulumi.get(self, "disk_space")
|
|
183
183
|
|
|
@@ -358,11 +358,11 @@ class _KafkaState:
|
|
|
358
358
|
:param pulumi.Input[_builtins.str] cloud_name: The cloud provider and region the service is hosted in. The format is `provider-region`, for example: `google-europe-west1`. The [available cloud regions](https://aiven.io/docs/platform/reference/list_of_clouds) can differ per project and service. Changing this value [migrates the service to another cloud provider or region](https://aiven.io/docs/platform/howto/migrate-services-cloud-region). The migration runs in the background and includes a DNS update to redirect traffic to the new region. Most services experience no downtime, but some databases may have a brief interruption during DNS propagation.
|
|
359
359
|
:param pulumi.Input[Sequence[pulumi.Input['KafkaComponentArgs']]] components: Service component information objects
|
|
360
360
|
:param pulumi.Input[_builtins.bool] default_acl: Create a default wildcard Kafka ACL.
|
|
361
|
-
:param pulumi.Input[_builtins.str] disk_space: Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
|
|
361
|
+
:param pulumi.Input[_builtins.str] disk_space: Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing. Please use `additional_disk_space` to specify the space to be added to the default disk space defined by the plan.
|
|
362
362
|
:param pulumi.Input[_builtins.str] disk_space_cap: The maximum disk space of the service, possible values depend on the service type, the cloud provider and the project.
|
|
363
363
|
:param pulumi.Input[_builtins.str] disk_space_default: The default disk space of the service, possible values depend on the service type, the cloud provider and the project. Its also the minimum value for `disk_space`
|
|
364
364
|
:param pulumi.Input[_builtins.str] disk_space_step: The default disk space step of the service, possible values depend on the service type, the cloud provider and the project. `disk_space` needs to increment from `disk_space_default` by increments of this size.
|
|
365
|
-
:param pulumi.Input[_builtins.str] disk_space_used:
|
|
365
|
+
:param pulumi.Input[_builtins.str] disk_space_used: The disk space that the service is currently using. This is the sum of `disk_space` and `additional_disk_space` in human-readable format (for example: `90GiB`).
|
|
366
366
|
:param pulumi.Input['KafkaKafkaUserConfigArgs'] kafka_user_config: Kafka user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
367
367
|
:param pulumi.Input[Sequence[pulumi.Input['KafkaKafkaArgs']]] kafkas: Kafka server connection details.
|
|
368
368
|
:param pulumi.Input[_builtins.bool] karapace: Switch the service to use [Karapace](https://aiven.io/docs/products/kafka/karapace) for schema registry and REST proxy. This attribute is deprecated, use `schema_registry` and `kafka_rest` instead.
|
|
@@ -393,8 +393,8 @@ class _KafkaState:
|
|
|
393
393
|
if default_acl is not None:
|
|
394
394
|
pulumi.set(__self__, "default_acl", default_acl)
|
|
395
395
|
if disk_space is not None:
|
|
396
|
-
warnings.warn("""
|
|
397
|
-
pulumi.log.warn("""disk_space is deprecated:
|
|
396
|
+
warnings.warn("""Please use `additional_disk_space` to specify the space to be added to the default disk space defined by the plan.""", DeprecationWarning)
|
|
397
|
+
pulumi.log.warn("""disk_space is deprecated: Please use `additional_disk_space` to specify the space to be added to the default disk space defined by the plan.""")
|
|
398
398
|
if disk_space is not None:
|
|
399
399
|
pulumi.set(__self__, "disk_space", disk_space)
|
|
400
400
|
if disk_space_cap is not None:
|
|
@@ -403,9 +403,6 @@ class _KafkaState:
|
|
|
403
403
|
pulumi.set(__self__, "disk_space_default", disk_space_default)
|
|
404
404
|
if disk_space_step is not None:
|
|
405
405
|
pulumi.set(__self__, "disk_space_step", disk_space_step)
|
|
406
|
-
if disk_space_used is not None:
|
|
407
|
-
warnings.warn("""This will be removed in v5.0.0. Please use `additional_disk_space` to specify the space to be added to the default `disk_space` defined by the plan.""", DeprecationWarning)
|
|
408
|
-
pulumi.log.warn("""disk_space_used is deprecated: This will be removed in v5.0.0. Please use `additional_disk_space` to specify the space to be added to the default `disk_space` defined by the plan.""")
|
|
409
406
|
if disk_space_used is not None:
|
|
410
407
|
pulumi.set(__self__, "disk_space_used", disk_space_used)
|
|
411
408
|
if kafka_user_config is not None:
|
|
@@ -504,10 +501,10 @@ class _KafkaState:
|
|
|
504
501
|
|
|
505
502
|
@_builtins.property
|
|
506
503
|
@pulumi.getter(name="diskSpace")
|
|
507
|
-
@_utilities.deprecated("""
|
|
504
|
+
@_utilities.deprecated("""Please use `additional_disk_space` to specify the space to be added to the default disk space defined by the plan.""")
|
|
508
505
|
def disk_space(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
509
506
|
"""
|
|
510
|
-
Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
|
|
507
|
+
Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing. Please use `additional_disk_space` to specify the space to be added to the default disk space defined by the plan.
|
|
511
508
|
"""
|
|
512
509
|
return pulumi.get(self, "disk_space")
|
|
513
510
|
|
|
@@ -553,10 +550,9 @@ class _KafkaState:
|
|
|
553
550
|
|
|
554
551
|
@_builtins.property
|
|
555
552
|
@pulumi.getter(name="diskSpaceUsed")
|
|
556
|
-
@_utilities.deprecated("""This will be removed in v5.0.0. Please use `additional_disk_space` to specify the space to be added to the default `disk_space` defined by the plan.""")
|
|
557
553
|
def disk_space_used(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
558
554
|
"""
|
|
559
|
-
|
|
555
|
+
The disk space that the service is currently using. This is the sum of `disk_space` and `additional_disk_space` in human-readable format (for example: `90GiB`).
|
|
560
556
|
"""
|
|
561
557
|
return pulumi.get(self, "disk_space_used")
|
|
562
558
|
|
|
@@ -883,7 +879,7 @@ class Kafka(pulumi.CustomResource):
|
|
|
883
879
|
:param pulumi.Input[_builtins.str] additional_disk_space: 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 without an autoscaler integration or high availability capabilities. The field can be safely removed when autoscaler is enabled without causing any changes.
|
|
884
880
|
:param pulumi.Input[_builtins.str] cloud_name: The cloud provider and region the service is hosted in. The format is `provider-region`, for example: `google-europe-west1`. The [available cloud regions](https://aiven.io/docs/platform/reference/list_of_clouds) can differ per project and service. Changing this value [migrates the service to another cloud provider or region](https://aiven.io/docs/platform/howto/migrate-services-cloud-region). The migration runs in the background and includes a DNS update to redirect traffic to the new region. Most services experience no downtime, but some databases may have a brief interruption during DNS propagation.
|
|
885
881
|
:param pulumi.Input[_builtins.bool] default_acl: Create a default wildcard Kafka ACL.
|
|
886
|
-
:param pulumi.Input[_builtins.str] disk_space: Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
|
|
882
|
+
:param pulumi.Input[_builtins.str] disk_space: Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing. Please use `additional_disk_space` to specify the space to be added to the default disk space defined by the plan.
|
|
887
883
|
:param pulumi.Input[Union['KafkaKafkaUserConfigArgs', 'KafkaKafkaUserConfigArgsDict']] kafka_user_config: Kafka user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
888
884
|
:param pulumi.Input[Sequence[pulumi.Input[Union['KafkaKafkaArgs', 'KafkaKafkaArgsDict']]]] kafkas: Kafka server connection details.
|
|
889
885
|
:param pulumi.Input[_builtins.bool] karapace: Switch the service to use [Karapace](https://aiven.io/docs/products/kafka/karapace) for schema registry and REST proxy. This attribute is deprecated, use `schema_registry` and `kafka_rest` instead.
|
|
@@ -1074,11 +1070,11 @@ class Kafka(pulumi.CustomResource):
|
|
|
1074
1070
|
:param pulumi.Input[_builtins.str] cloud_name: The cloud provider and region the service is hosted in. The format is `provider-region`, for example: `google-europe-west1`. The [available cloud regions](https://aiven.io/docs/platform/reference/list_of_clouds) can differ per project and service. Changing this value [migrates the service to another cloud provider or region](https://aiven.io/docs/platform/howto/migrate-services-cloud-region). The migration runs in the background and includes a DNS update to redirect traffic to the new region. Most services experience no downtime, but some databases may have a brief interruption during DNS propagation.
|
|
1075
1071
|
:param pulumi.Input[Sequence[pulumi.Input[Union['KafkaComponentArgs', 'KafkaComponentArgsDict']]]] components: Service component information objects
|
|
1076
1072
|
:param pulumi.Input[_builtins.bool] default_acl: Create a default wildcard Kafka ACL.
|
|
1077
|
-
:param pulumi.Input[_builtins.str] disk_space: Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
|
|
1073
|
+
:param pulumi.Input[_builtins.str] disk_space: Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing. Please use `additional_disk_space` to specify the space to be added to the default disk space defined by the plan.
|
|
1078
1074
|
:param pulumi.Input[_builtins.str] disk_space_cap: The maximum disk space of the service, possible values depend on the service type, the cloud provider and the project.
|
|
1079
1075
|
:param pulumi.Input[_builtins.str] disk_space_default: The default disk space of the service, possible values depend on the service type, the cloud provider and the project. Its also the minimum value for `disk_space`
|
|
1080
1076
|
:param pulumi.Input[_builtins.str] disk_space_step: The default disk space step of the service, possible values depend on the service type, the cloud provider and the project. `disk_space` needs to increment from `disk_space_default` by increments of this size.
|
|
1081
|
-
:param pulumi.Input[_builtins.str] disk_space_used:
|
|
1077
|
+
:param pulumi.Input[_builtins.str] disk_space_used: The disk space that the service is currently using. This is the sum of `disk_space` and `additional_disk_space` in human-readable format (for example: `90GiB`).
|
|
1082
1078
|
:param pulumi.Input[Union['KafkaKafkaUserConfigArgs', 'KafkaKafkaUserConfigArgsDict']] kafka_user_config: Kafka user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
1083
1079
|
:param pulumi.Input[Sequence[pulumi.Input[Union['KafkaKafkaArgs', 'KafkaKafkaArgsDict']]]] kafkas: Kafka server connection details.
|
|
1084
1080
|
:param pulumi.Input[_builtins.bool] karapace: Switch the service to use [Karapace](https://aiven.io/docs/products/kafka/karapace) for schema registry and REST proxy. This attribute is deprecated, use `schema_registry` and `kafka_rest` instead.
|
|
@@ -1170,10 +1166,10 @@ class Kafka(pulumi.CustomResource):
|
|
|
1170
1166
|
|
|
1171
1167
|
@_builtins.property
|
|
1172
1168
|
@pulumi.getter(name="diskSpace")
|
|
1173
|
-
@_utilities.deprecated("""
|
|
1169
|
+
@_utilities.deprecated("""Please use `additional_disk_space` to specify the space to be added to the default disk space defined by the plan.""")
|
|
1174
1170
|
def disk_space(self) -> pulumi.Output[Optional[_builtins.str]]:
|
|
1175
1171
|
"""
|
|
1176
|
-
Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
|
|
1172
|
+
Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing. Please use `additional_disk_space` to specify the space to be added to the default disk space defined by the plan.
|
|
1177
1173
|
"""
|
|
1178
1174
|
return pulumi.get(self, "disk_space")
|
|
1179
1175
|
|
|
@@ -1203,10 +1199,9 @@ class Kafka(pulumi.CustomResource):
|
|
|
1203
1199
|
|
|
1204
1200
|
@_builtins.property
|
|
1205
1201
|
@pulumi.getter(name="diskSpaceUsed")
|
|
1206
|
-
@_utilities.deprecated("""This will be removed in v5.0.0. Please use `additional_disk_space` to specify the space to be added to the default `disk_space` defined by the plan.""")
|
|
1207
1202
|
def disk_space_used(self) -> pulumi.Output[_builtins.str]:
|
|
1208
1203
|
"""
|
|
1209
|
-
|
|
1204
|
+
The disk space that the service is currently using. This is the sum of `disk_space` and `additional_disk_space` in human-readable format (for example: `90GiB`).
|
|
1210
1205
|
"""
|
|
1211
1206
|
return pulumi.get(self, "disk_space_used")
|
|
1212
1207
|
|
pulumi_aiven/kafka_connect.py
CHANGED
|
@@ -43,7 +43,7 @@ class KafkaConnectArgs:
|
|
|
43
43
|
:param pulumi.Input[_builtins.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.
|
|
44
44
|
:param pulumi.Input[_builtins.str] additional_disk_space: 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 without an autoscaler integration or high availability capabilities. The field can be safely removed when autoscaler is enabled without causing any changes.
|
|
45
45
|
:param pulumi.Input[_builtins.str] cloud_name: The cloud provider and region the service is hosted in. The format is `provider-region`, for example: `google-europe-west1`. The [available cloud regions](https://aiven.io/docs/platform/reference/list_of_clouds) can differ per project and service. Changing this value [migrates the service to another cloud provider or region](https://aiven.io/docs/platform/howto/migrate-services-cloud-region). The migration runs in the background and includes a DNS update to redirect traffic to the new region. Most services experience no downtime, but some databases may have a brief interruption during DNS propagation.
|
|
46
|
-
:param pulumi.Input[_builtins.str] disk_space: Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
|
|
46
|
+
:param pulumi.Input[_builtins.str] disk_space: Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing. Please use `additional_disk_space` to specify the space to be added to the default disk space defined by the plan.
|
|
47
47
|
:param pulumi.Input['KafkaConnectKafkaConnectUserConfigArgs'] kafka_connect_user_config: KafkaConnect user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
48
48
|
:param pulumi.Input[_builtins.str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
|
|
49
49
|
:param pulumi.Input[_builtins.str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
@@ -62,8 +62,8 @@ class KafkaConnectArgs:
|
|
|
62
62
|
if cloud_name is not None:
|
|
63
63
|
pulumi.set(__self__, "cloud_name", cloud_name)
|
|
64
64
|
if disk_space is not None:
|
|
65
|
-
warnings.warn("""
|
|
66
|
-
pulumi.log.warn("""disk_space is deprecated:
|
|
65
|
+
warnings.warn("""Please use `additional_disk_space` to specify the space to be added to the default disk space defined by the plan.""", DeprecationWarning)
|
|
66
|
+
pulumi.log.warn("""disk_space is deprecated: Please use `additional_disk_space` to specify the space to be added to the default disk space defined by the plan.""")
|
|
67
67
|
if disk_space is not None:
|
|
68
68
|
pulumi.set(__self__, "disk_space", disk_space)
|
|
69
69
|
if kafka_connect_user_config is not None:
|
|
@@ -147,10 +147,10 @@ class KafkaConnectArgs:
|
|
|
147
147
|
|
|
148
148
|
@_builtins.property
|
|
149
149
|
@pulumi.getter(name="diskSpace")
|
|
150
|
-
@_utilities.deprecated("""
|
|
150
|
+
@_utilities.deprecated("""Please use `additional_disk_space` to specify the space to be added to the default disk space defined by the plan.""")
|
|
151
151
|
def disk_space(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
152
152
|
"""
|
|
153
|
-
Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
|
|
153
|
+
Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing. Please use `additional_disk_space` to specify the space to be added to the default disk space defined by the plan.
|
|
154
154
|
"""
|
|
155
155
|
return pulumi.get(self, "disk_space")
|
|
156
156
|
|
|
@@ -302,11 +302,11 @@ class _KafkaConnectState:
|
|
|
302
302
|
:param pulumi.Input[_builtins.str] additional_disk_space: 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 without an autoscaler integration or high availability capabilities. The field can be safely removed when autoscaler is enabled without causing any changes.
|
|
303
303
|
:param pulumi.Input[_builtins.str] cloud_name: The cloud provider and region the service is hosted in. The format is `provider-region`, for example: `google-europe-west1`. The [available cloud regions](https://aiven.io/docs/platform/reference/list_of_clouds) can differ per project and service. Changing this value [migrates the service to another cloud provider or region](https://aiven.io/docs/platform/howto/migrate-services-cloud-region). The migration runs in the background and includes a DNS update to redirect traffic to the new region. Most services experience no downtime, but some databases may have a brief interruption during DNS propagation.
|
|
304
304
|
:param pulumi.Input[Sequence[pulumi.Input['KafkaConnectComponentArgs']]] components: Service component information objects
|
|
305
|
-
:param pulumi.Input[_builtins.str] disk_space: Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
|
|
305
|
+
:param pulumi.Input[_builtins.str] disk_space: Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing. Please use `additional_disk_space` to specify the space to be added to the default disk space defined by the plan.
|
|
306
306
|
:param pulumi.Input[_builtins.str] disk_space_cap: The maximum disk space of the service, possible values depend on the service type, the cloud provider and the project.
|
|
307
307
|
:param pulumi.Input[_builtins.str] disk_space_default: The default disk space of the service, possible values depend on the service type, the cloud provider and the project. Its also the minimum value for `disk_space`
|
|
308
308
|
:param pulumi.Input[_builtins.str] disk_space_step: The default disk space step of the service, possible values depend on the service type, the cloud provider and the project. `disk_space` needs to increment from `disk_space_default` by increments of this size.
|
|
309
|
-
:param pulumi.Input[_builtins.str] disk_space_used:
|
|
309
|
+
:param pulumi.Input[_builtins.str] disk_space_used: The disk space that the service is currently using. This is the sum of `disk_space` and `additional_disk_space` in human-readable format (for example: `90GiB`).
|
|
310
310
|
:param pulumi.Input['KafkaConnectKafkaConnectUserConfigArgs'] kafka_connect_user_config: KafkaConnect user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
311
311
|
:param pulumi.Input[_builtins.str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
|
|
312
312
|
:param pulumi.Input[_builtins.str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
@@ -333,8 +333,8 @@ class _KafkaConnectState:
|
|
|
333
333
|
if components is not None:
|
|
334
334
|
pulumi.set(__self__, "components", components)
|
|
335
335
|
if disk_space is not None:
|
|
336
|
-
warnings.warn("""
|
|
337
|
-
pulumi.log.warn("""disk_space is deprecated:
|
|
336
|
+
warnings.warn("""Please use `additional_disk_space` to specify the space to be added to the default disk space defined by the plan.""", DeprecationWarning)
|
|
337
|
+
pulumi.log.warn("""disk_space is deprecated: Please use `additional_disk_space` to specify the space to be added to the default disk space defined by the plan.""")
|
|
338
338
|
if disk_space is not None:
|
|
339
339
|
pulumi.set(__self__, "disk_space", disk_space)
|
|
340
340
|
if disk_space_cap is not None:
|
|
@@ -343,9 +343,6 @@ class _KafkaConnectState:
|
|
|
343
343
|
pulumi.set(__self__, "disk_space_default", disk_space_default)
|
|
344
344
|
if disk_space_step is not None:
|
|
345
345
|
pulumi.set(__self__, "disk_space_step", disk_space_step)
|
|
346
|
-
if disk_space_used is not None:
|
|
347
|
-
warnings.warn("""This will be removed in v5.0.0. Please use `additional_disk_space` to specify the space to be added to the default `disk_space` defined by the plan.""", DeprecationWarning)
|
|
348
|
-
pulumi.log.warn("""disk_space_used is deprecated: This will be removed in v5.0.0. Please use `additional_disk_space` to specify the space to be added to the default `disk_space` defined by the plan.""")
|
|
349
346
|
if disk_space_used is not None:
|
|
350
347
|
pulumi.set(__self__, "disk_space_used", disk_space_used)
|
|
351
348
|
if kafka_connect_user_config is not None:
|
|
@@ -425,10 +422,10 @@ class _KafkaConnectState:
|
|
|
425
422
|
|
|
426
423
|
@_builtins.property
|
|
427
424
|
@pulumi.getter(name="diskSpace")
|
|
428
|
-
@_utilities.deprecated("""
|
|
425
|
+
@_utilities.deprecated("""Please use `additional_disk_space` to specify the space to be added to the default disk space defined by the plan.""")
|
|
429
426
|
def disk_space(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
430
427
|
"""
|
|
431
|
-
Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
|
|
428
|
+
Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing. Please use `additional_disk_space` to specify the space to be added to the default disk space defined by the plan.
|
|
432
429
|
"""
|
|
433
430
|
return pulumi.get(self, "disk_space")
|
|
434
431
|
|
|
@@ -474,10 +471,9 @@ class _KafkaConnectState:
|
|
|
474
471
|
|
|
475
472
|
@_builtins.property
|
|
476
473
|
@pulumi.getter(name="diskSpaceUsed")
|
|
477
|
-
@_utilities.deprecated("""This will be removed in v5.0.0. Please use `additional_disk_space` to specify the space to be added to the default `disk_space` defined by the plan.""")
|
|
478
474
|
def disk_space_used(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
479
475
|
"""
|
|
480
|
-
|
|
476
|
+
The disk space that the service is currently using. This is the sum of `disk_space` and `additional_disk_space` in human-readable format (for example: `90GiB`).
|
|
481
477
|
"""
|
|
482
478
|
return pulumi.get(self, "disk_space_used")
|
|
483
479
|
|
|
@@ -795,7 +791,7 @@ class KafkaConnect(pulumi.CustomResource):
|
|
|
795
791
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
796
792
|
:param pulumi.Input[_builtins.str] additional_disk_space: 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 without an autoscaler integration or high availability capabilities. The field can be safely removed when autoscaler is enabled without causing any changes.
|
|
797
793
|
:param pulumi.Input[_builtins.str] cloud_name: The cloud provider and region the service is hosted in. The format is `provider-region`, for example: `google-europe-west1`. The [available cloud regions](https://aiven.io/docs/platform/reference/list_of_clouds) can differ per project and service. Changing this value [migrates the service to another cloud provider or region](https://aiven.io/docs/platform/howto/migrate-services-cloud-region). The migration runs in the background and includes a DNS update to redirect traffic to the new region. Most services experience no downtime, but some databases may have a brief interruption during DNS propagation.
|
|
798
|
-
:param pulumi.Input[_builtins.str] disk_space: Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
|
|
794
|
+
:param pulumi.Input[_builtins.str] disk_space: Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing. Please use `additional_disk_space` to specify the space to be added to the default disk space defined by the plan.
|
|
799
795
|
:param pulumi.Input[Union['KafkaConnectKafkaConnectUserConfigArgs', 'KafkaConnectKafkaConnectUserConfigArgsDict']] kafka_connect_user_config: KafkaConnect user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
800
796
|
:param pulumi.Input[_builtins.str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
|
|
801
797
|
:param pulumi.Input[_builtins.str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
@@ -994,11 +990,11 @@ class KafkaConnect(pulumi.CustomResource):
|
|
|
994
990
|
:param pulumi.Input[_builtins.str] additional_disk_space: 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 without an autoscaler integration or high availability capabilities. The field can be safely removed when autoscaler is enabled without causing any changes.
|
|
995
991
|
:param pulumi.Input[_builtins.str] cloud_name: The cloud provider and region the service is hosted in. The format is `provider-region`, for example: `google-europe-west1`. The [available cloud regions](https://aiven.io/docs/platform/reference/list_of_clouds) can differ per project and service. Changing this value [migrates the service to another cloud provider or region](https://aiven.io/docs/platform/howto/migrate-services-cloud-region). The migration runs in the background and includes a DNS update to redirect traffic to the new region. Most services experience no downtime, but some databases may have a brief interruption during DNS propagation.
|
|
996
992
|
:param pulumi.Input[Sequence[pulumi.Input[Union['KafkaConnectComponentArgs', 'KafkaConnectComponentArgsDict']]]] components: Service component information objects
|
|
997
|
-
:param pulumi.Input[_builtins.str] disk_space: Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
|
|
993
|
+
:param pulumi.Input[_builtins.str] disk_space: Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing. Please use `additional_disk_space` to specify the space to be added to the default disk space defined by the plan.
|
|
998
994
|
:param pulumi.Input[_builtins.str] disk_space_cap: The maximum disk space of the service, possible values depend on the service type, the cloud provider and the project.
|
|
999
995
|
:param pulumi.Input[_builtins.str] disk_space_default: The default disk space of the service, possible values depend on the service type, the cloud provider and the project. Its also the minimum value for `disk_space`
|
|
1000
996
|
:param pulumi.Input[_builtins.str] disk_space_step: The default disk space step of the service, possible values depend on the service type, the cloud provider and the project. `disk_space` needs to increment from `disk_space_default` by increments of this size.
|
|
1001
|
-
:param pulumi.Input[_builtins.str] disk_space_used:
|
|
997
|
+
:param pulumi.Input[_builtins.str] disk_space_used: The disk space that the service is currently using. This is the sum of `disk_space` and `additional_disk_space` in human-readable format (for example: `90GiB`).
|
|
1002
998
|
:param pulumi.Input[Union['KafkaConnectKafkaConnectUserConfigArgs', 'KafkaConnectKafkaConnectUserConfigArgsDict']] kafka_connect_user_config: KafkaConnect user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
1003
999
|
:param pulumi.Input[_builtins.str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
|
|
1004
1000
|
:param pulumi.Input[_builtins.str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
@@ -1077,10 +1073,10 @@ class KafkaConnect(pulumi.CustomResource):
|
|
|
1077
1073
|
|
|
1078
1074
|
@_builtins.property
|
|
1079
1075
|
@pulumi.getter(name="diskSpace")
|
|
1080
|
-
@_utilities.deprecated("""
|
|
1076
|
+
@_utilities.deprecated("""Please use `additional_disk_space` to specify the space to be added to the default disk space defined by the plan.""")
|
|
1081
1077
|
def disk_space(self) -> pulumi.Output[Optional[_builtins.str]]:
|
|
1082
1078
|
"""
|
|
1083
|
-
Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
|
|
1079
|
+
Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing. Please use `additional_disk_space` to specify the space to be added to the default disk space defined by the plan.
|
|
1084
1080
|
"""
|
|
1085
1081
|
return pulumi.get(self, "disk_space")
|
|
1086
1082
|
|
|
@@ -1110,10 +1106,9 @@ class KafkaConnect(pulumi.CustomResource):
|
|
|
1110
1106
|
|
|
1111
1107
|
@_builtins.property
|
|
1112
1108
|
@pulumi.getter(name="diskSpaceUsed")
|
|
1113
|
-
@_utilities.deprecated("""This will be removed in v5.0.0. Please use `additional_disk_space` to specify the space to be added to the default `disk_space` defined by the plan.""")
|
|
1114
1109
|
def disk_space_used(self) -> pulumi.Output[_builtins.str]:
|
|
1115
1110
|
"""
|
|
1116
|
-
|
|
1111
|
+
The disk space that the service is currently using. This is the sum of `disk_space` and `additional_disk_space` in human-readable format (for example: `90GiB`).
|
|
1117
1112
|
"""
|
|
1118
1113
|
return pulumi.get(self, "disk_space_used")
|
|
1119
1114
|
|