pulumi-aiven 6.42.0a1755291473__py3-none-any.whl → 6.42.1__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 +235 -75
- pulumi_aiven/influx_db.py +85 -275
- pulumi_aiven/influxdb_database.py +14 -28
- pulumi_aiven/influxdb_user.py +21 -42
- pulumi_aiven/m3_aggregator.py +9 -0
- pulumi_aiven/m3_db.py +9 -0
- pulumi_aiven/outputs.py +270 -62
- pulumi_aiven/pulumi-plugin.json +1 -1
- {pulumi_aiven-6.42.0a1755291473.dist-info → pulumi_aiven-6.42.1.dist-info}/METADATA +1 -1
- {pulumi_aiven-6.42.0a1755291473.dist-info → pulumi_aiven-6.42.1.dist-info}/RECORD +12 -12
- {pulumi_aiven-6.42.0a1755291473.dist-info → pulumi_aiven-6.42.1.dist-info}/WHEEL +0 -0
- {pulumi_aiven-6.42.0a1755291473.dist-info → pulumi_aiven-6.42.1.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/m3_aggregator.py
CHANGED
|
@@ -70,6 +70,9 @@ class M3AggregatorArgs:
|
|
|
70
70
|
pulumi.set(__self__, "disk_space", disk_space)
|
|
71
71
|
if m3aggregator is not None:
|
|
72
72
|
pulumi.set(__self__, "m3aggregator", m3aggregator)
|
|
73
|
+
if m3aggregator_user_config is not None:
|
|
74
|
+
warnings.warn("""This property is deprecated.""", DeprecationWarning)
|
|
75
|
+
pulumi.log.warn("""m3aggregator_user_config is deprecated: This property is deprecated.""")
|
|
73
76
|
if m3aggregator_user_config is not None:
|
|
74
77
|
pulumi.set(__self__, "m3aggregator_user_config", m3aggregator_user_config)
|
|
75
78
|
if maintenance_window_dow is not None:
|
|
@@ -176,6 +179,7 @@ class M3AggregatorArgs:
|
|
|
176
179
|
|
|
177
180
|
@_builtins.property
|
|
178
181
|
@pulumi.getter(name="m3aggregatorUserConfig")
|
|
182
|
+
@_utilities.deprecated("""This property is deprecated.""")
|
|
179
183
|
def m3aggregator_user_config(self) -> Optional[pulumi.Input['M3AggregatorM3aggregatorUserConfigArgs']]:
|
|
180
184
|
"""
|
|
181
185
|
M3aggregator user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
@@ -368,6 +372,9 @@ class _M3AggregatorState:
|
|
|
368
372
|
pulumi.set(__self__, "disk_space_used", disk_space_used)
|
|
369
373
|
if m3aggregator is not None:
|
|
370
374
|
pulumi.set(__self__, "m3aggregator", m3aggregator)
|
|
375
|
+
if m3aggregator_user_config is not None:
|
|
376
|
+
warnings.warn("""This property is deprecated.""", DeprecationWarning)
|
|
377
|
+
pulumi.log.warn("""m3aggregator_user_config is deprecated: This property is deprecated.""")
|
|
371
378
|
if m3aggregator_user_config is not None:
|
|
372
379
|
pulumi.set(__self__, "m3aggregator_user_config", m3aggregator_user_config)
|
|
373
380
|
if maintenance_window_dow is not None:
|
|
@@ -519,6 +526,7 @@ class _M3AggregatorState:
|
|
|
519
526
|
|
|
520
527
|
@_builtins.property
|
|
521
528
|
@pulumi.getter(name="m3aggregatorUserConfig")
|
|
529
|
+
@_utilities.deprecated("""This property is deprecated.""")
|
|
522
530
|
def m3aggregator_user_config(self) -> Optional[pulumi.Input['M3AggregatorM3aggregatorUserConfigArgs']]:
|
|
523
531
|
"""
|
|
524
532
|
M3aggregator user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
@@ -1104,6 +1112,7 @@ class M3Aggregator(pulumi.CustomResource):
|
|
|
1104
1112
|
|
|
1105
1113
|
@_builtins.property
|
|
1106
1114
|
@pulumi.getter(name="m3aggregatorUserConfig")
|
|
1115
|
+
@_utilities.deprecated("""This property is deprecated.""")
|
|
1107
1116
|
def m3aggregator_user_config(self) -> pulumi.Output[Optional['outputs.M3AggregatorM3aggregatorUserConfig']]:
|
|
1108
1117
|
"""
|
|
1109
1118
|
M3aggregator user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
pulumi_aiven/m3_db.py
CHANGED
|
@@ -70,6 +70,9 @@ class M3DbArgs:
|
|
|
70
70
|
pulumi.set(__self__, "disk_space", disk_space)
|
|
71
71
|
if m3db is not None:
|
|
72
72
|
pulumi.set(__self__, "m3db", m3db)
|
|
73
|
+
if m3db_user_config is not None:
|
|
74
|
+
warnings.warn("""This property is deprecated.""", DeprecationWarning)
|
|
75
|
+
pulumi.log.warn("""m3db_user_config is deprecated: This property is deprecated.""")
|
|
73
76
|
if m3db_user_config is not None:
|
|
74
77
|
pulumi.set(__self__, "m3db_user_config", m3db_user_config)
|
|
75
78
|
if maintenance_window_dow is not None:
|
|
@@ -176,6 +179,7 @@ class M3DbArgs:
|
|
|
176
179
|
|
|
177
180
|
@_builtins.property
|
|
178
181
|
@pulumi.getter(name="m3dbUserConfig")
|
|
182
|
+
@_utilities.deprecated("""This property is deprecated.""")
|
|
179
183
|
def m3db_user_config(self) -> Optional[pulumi.Input['M3DbM3dbUserConfigArgs']]:
|
|
180
184
|
"""
|
|
181
185
|
M3db user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
@@ -368,6 +372,9 @@ class _M3DbState:
|
|
|
368
372
|
pulumi.set(__self__, "disk_space_used", disk_space_used)
|
|
369
373
|
if m3db is not None:
|
|
370
374
|
pulumi.set(__self__, "m3db", m3db)
|
|
375
|
+
if m3db_user_config is not None:
|
|
376
|
+
warnings.warn("""This property is deprecated.""", DeprecationWarning)
|
|
377
|
+
pulumi.log.warn("""m3db_user_config is deprecated: This property is deprecated.""")
|
|
371
378
|
if m3db_user_config is not None:
|
|
372
379
|
pulumi.set(__self__, "m3db_user_config", m3db_user_config)
|
|
373
380
|
if maintenance_window_dow is not None:
|
|
@@ -519,6 +526,7 @@ class _M3DbState:
|
|
|
519
526
|
|
|
520
527
|
@_builtins.property
|
|
521
528
|
@pulumi.getter(name="m3dbUserConfig")
|
|
529
|
+
@_utilities.deprecated("""This property is deprecated.""")
|
|
522
530
|
def m3db_user_config(self) -> Optional[pulumi.Input['M3DbM3dbUserConfigArgs']]:
|
|
523
531
|
"""
|
|
524
532
|
M3db user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
@@ -1124,6 +1132,7 @@ class M3Db(pulumi.CustomResource):
|
|
|
1124
1132
|
|
|
1125
1133
|
@_builtins.property
|
|
1126
1134
|
@pulumi.getter(name="m3dbUserConfig")
|
|
1135
|
+
@_utilities.deprecated("""This property is deprecated.""")
|
|
1127
1136
|
def m3db_user_config(self) -> pulumi.Output[Optional['outputs.M3DbM3dbUserConfig']]:
|
|
1128
1137
|
"""
|
|
1129
1138
|
M3db user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|