pulumi-aiven 6.24.0__py3-none-any.whl → 6.24.0a1724476498__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of pulumi-aiven might be problematic. Click here for more details.
- pulumi_aiven/__init__.py +0 -9
- pulumi_aiven/_inputs.py +4 -524
- pulumi_aiven/cassandra.py +24 -24
- pulumi_aiven/cassandra_user.py +40 -40
- pulumi_aiven/clickhouse.py +7 -7
- pulumi_aiven/connection_pool.py +41 -41
- pulumi_aiven/dragonfly.py +7 -7
- pulumi_aiven/flink.py +7 -7
- pulumi_aiven/get_cassanda.py +8 -8
- pulumi_aiven/get_cassandra.py +8 -8
- pulumi_aiven/get_cassandra_user.py +15 -15
- pulumi_aiven/get_clickhouse.py +1 -1
- pulumi_aiven/get_connection_pool.py +14 -14
- pulumi_aiven/get_dragonfly.py +1 -1
- pulumi_aiven/get_flink.py +1 -1
- pulumi_aiven/get_grafana.py +8 -8
- pulumi_aiven/get_kafka.py +1 -1
- pulumi_aiven/get_kafka_connect.py +1 -1
- pulumi_aiven/get_kafka_mirror_maker.py +1 -1
- pulumi_aiven/get_kafka_topic.py +1 -27
- pulumi_aiven/get_m3_aggregator.py +1 -1
- pulumi_aiven/get_m3_db.py +8 -8
- pulumi_aiven/get_m3db_user.py +13 -13
- pulumi_aiven/get_my_sql.py +1 -1
- pulumi_aiven/get_open_search.py +1 -1
- pulumi_aiven/get_pg.py +1 -1
- pulumi_aiven/get_pg_user.py +1 -1
- pulumi_aiven/get_redis.py +1 -1
- pulumi_aiven/get_service_integration_endpoint.py +1 -40
- pulumi_aiven/get_thanos.py +1 -1
- pulumi_aiven/get_valkey.py +1 -1
- pulumi_aiven/grafana.py +24 -24
- pulumi_aiven/influx_db.py +7 -7
- pulumi_aiven/kafka.py +7 -7
- pulumi_aiven/kafka_connect.py +7 -7
- pulumi_aiven/kafka_mirror_maker.py +7 -7
- pulumi_aiven/kafka_topic.py +1 -95
- pulumi_aiven/m3_aggregator.py +7 -7
- pulumi_aiven/m3_db.py +26 -26
- pulumi_aiven/m3db_user.py +32 -32
- pulumi_aiven/my_sql.py +7 -7
- pulumi_aiven/open_search.py +7 -7
- pulumi_aiven/outputs.py +8 -798
- pulumi_aiven/pg.py +7 -7
- pulumi_aiven/pg_user.py +7 -21
- pulumi_aiven/pulumi-plugin.json +1 -1
- pulumi_aiven/redis.py +7 -7
- pulumi_aiven/service_integration_endpoint.py +0 -141
- pulumi_aiven/thanos.py +7 -7
- pulumi_aiven/valkey.py +7 -7
- {pulumi_aiven-6.24.0.dist-info → pulumi_aiven-6.24.0a1724476498.dist-info}/METADATA +1 -1
- {pulumi_aiven-6.24.0.dist-info → pulumi_aiven-6.24.0a1724476498.dist-info}/RECORD +54 -55
- {pulumi_aiven-6.24.0.dist-info → pulumi_aiven-6.24.0a1724476498.dist-info}/WHEEL +1 -1
- pulumi_aiven/organization_permission.py +0 -298
- {pulumi_aiven-6.24.0.dist-info → pulumi_aiven-6.24.0a1724476498.dist-info}/top_level.txt +0 -0
pulumi_aiven/kafka_topic.py
CHANGED
|
@@ -22,10 +22,8 @@ class KafkaTopicArgs:
|
|
|
22
22
|
service_name: pulumi.Input[str],
|
|
23
23
|
topic_name: pulumi.Input[str],
|
|
24
24
|
config: Optional[pulumi.Input['KafkaTopicConfigArgs']] = None,
|
|
25
|
-
owner_user_group_id: Optional[pulumi.Input[str]] = None,
|
|
26
25
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input['KafkaTopicTagArgs']]]] = None,
|
|
27
|
-
termination_protection: Optional[pulumi.Input[bool]] = None
|
|
28
|
-
topic_description: Optional[pulumi.Input[str]] = None):
|
|
26
|
+
termination_protection: Optional[pulumi.Input[bool]] = None):
|
|
29
27
|
"""
|
|
30
28
|
The set of arguments for constructing a KafkaTopic resource.
|
|
31
29
|
:param pulumi.Input[int] partitions: The number of partitions to create in the topic.
|
|
@@ -34,9 +32,7 @@ class KafkaTopicArgs:
|
|
|
34
32
|
:param pulumi.Input[str] service_name: The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
|
|
35
33
|
:param pulumi.Input[str] topic_name: The name of the topic. Changing this property forces recreation of the resource.
|
|
36
34
|
:param pulumi.Input['KafkaTopicConfigArgs'] config: [Advanced parameters](https://aiven.io/docs/products/kafka/reference/advanced-params) to configure topics.
|
|
37
|
-
:param pulumi.Input[str] owner_user_group_id: The user group that is the owner of the topic
|
|
38
35
|
:param pulumi.Input[Sequence[pulumi.Input['KafkaTopicTagArgs']]] tags: Tags for the topic.
|
|
39
|
-
:param pulumi.Input[str] topic_description: The description of the topic
|
|
40
36
|
"""
|
|
41
37
|
pulumi.set(__self__, "partitions", partitions)
|
|
42
38
|
pulumi.set(__self__, "project", project)
|
|
@@ -45,14 +41,10 @@ class KafkaTopicArgs:
|
|
|
45
41
|
pulumi.set(__self__, "topic_name", topic_name)
|
|
46
42
|
if config is not None:
|
|
47
43
|
pulumi.set(__self__, "config", config)
|
|
48
|
-
if owner_user_group_id is not None:
|
|
49
|
-
pulumi.set(__self__, "owner_user_group_id", owner_user_group_id)
|
|
50
44
|
if tags is not None:
|
|
51
45
|
pulumi.set(__self__, "tags", tags)
|
|
52
46
|
if termination_protection is not None:
|
|
53
47
|
pulumi.set(__self__, "termination_protection", termination_protection)
|
|
54
|
-
if topic_description is not None:
|
|
55
|
-
pulumi.set(__self__, "topic_description", topic_description)
|
|
56
48
|
|
|
57
49
|
@property
|
|
58
50
|
@pulumi.getter
|
|
@@ -126,18 +118,6 @@ class KafkaTopicArgs:
|
|
|
126
118
|
def config(self, value: Optional[pulumi.Input['KafkaTopicConfigArgs']]):
|
|
127
119
|
pulumi.set(self, "config", value)
|
|
128
120
|
|
|
129
|
-
@property
|
|
130
|
-
@pulumi.getter(name="ownerUserGroupId")
|
|
131
|
-
def owner_user_group_id(self) -> Optional[pulumi.Input[str]]:
|
|
132
|
-
"""
|
|
133
|
-
The user group that is the owner of the topic
|
|
134
|
-
"""
|
|
135
|
-
return pulumi.get(self, "owner_user_group_id")
|
|
136
|
-
|
|
137
|
-
@owner_user_group_id.setter
|
|
138
|
-
def owner_user_group_id(self, value: Optional[pulumi.Input[str]]):
|
|
139
|
-
pulumi.set(self, "owner_user_group_id", value)
|
|
140
|
-
|
|
141
121
|
@property
|
|
142
122
|
@pulumi.getter
|
|
143
123
|
def tags(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['KafkaTopicTagArgs']]]]:
|
|
@@ -159,48 +139,30 @@ class KafkaTopicArgs:
|
|
|
159
139
|
def termination_protection(self, value: Optional[pulumi.Input[bool]]):
|
|
160
140
|
pulumi.set(self, "termination_protection", value)
|
|
161
141
|
|
|
162
|
-
@property
|
|
163
|
-
@pulumi.getter(name="topicDescription")
|
|
164
|
-
def topic_description(self) -> Optional[pulumi.Input[str]]:
|
|
165
|
-
"""
|
|
166
|
-
The description of the topic
|
|
167
|
-
"""
|
|
168
|
-
return pulumi.get(self, "topic_description")
|
|
169
|
-
|
|
170
|
-
@topic_description.setter
|
|
171
|
-
def topic_description(self, value: Optional[pulumi.Input[str]]):
|
|
172
|
-
pulumi.set(self, "topic_description", value)
|
|
173
|
-
|
|
174
142
|
|
|
175
143
|
@pulumi.input_type
|
|
176
144
|
class _KafkaTopicState:
|
|
177
145
|
def __init__(__self__, *,
|
|
178
146
|
config: Optional[pulumi.Input['KafkaTopicConfigArgs']] = None,
|
|
179
|
-
owner_user_group_id: Optional[pulumi.Input[str]] = None,
|
|
180
147
|
partitions: Optional[pulumi.Input[int]] = None,
|
|
181
148
|
project: Optional[pulumi.Input[str]] = None,
|
|
182
149
|
replication: Optional[pulumi.Input[int]] = None,
|
|
183
150
|
service_name: Optional[pulumi.Input[str]] = None,
|
|
184
151
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input['KafkaTopicTagArgs']]]] = None,
|
|
185
152
|
termination_protection: Optional[pulumi.Input[bool]] = None,
|
|
186
|
-
topic_description: Optional[pulumi.Input[str]] = None,
|
|
187
153
|
topic_name: Optional[pulumi.Input[str]] = None):
|
|
188
154
|
"""
|
|
189
155
|
Input properties used for looking up and filtering KafkaTopic resources.
|
|
190
156
|
:param pulumi.Input['KafkaTopicConfigArgs'] config: [Advanced parameters](https://aiven.io/docs/products/kafka/reference/advanced-params) to configure topics.
|
|
191
|
-
:param pulumi.Input[str] owner_user_group_id: The user group that is the owner of the topic
|
|
192
157
|
:param pulumi.Input[int] partitions: The number of partitions to create in the topic.
|
|
193
158
|
:param pulumi.Input[str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
|
|
194
159
|
:param pulumi.Input[int] replication: The replication factor for the topic.
|
|
195
160
|
:param pulumi.Input[str] service_name: The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
|
|
196
161
|
:param pulumi.Input[Sequence[pulumi.Input['KafkaTopicTagArgs']]] tags: Tags for the topic.
|
|
197
|
-
:param pulumi.Input[str] topic_description: The description of the topic
|
|
198
162
|
:param pulumi.Input[str] topic_name: The name of the topic. Changing this property forces recreation of the resource.
|
|
199
163
|
"""
|
|
200
164
|
if config is not None:
|
|
201
165
|
pulumi.set(__self__, "config", config)
|
|
202
|
-
if owner_user_group_id is not None:
|
|
203
|
-
pulumi.set(__self__, "owner_user_group_id", owner_user_group_id)
|
|
204
166
|
if partitions is not None:
|
|
205
167
|
pulumi.set(__self__, "partitions", partitions)
|
|
206
168
|
if project is not None:
|
|
@@ -213,8 +175,6 @@ class _KafkaTopicState:
|
|
|
213
175
|
pulumi.set(__self__, "tags", tags)
|
|
214
176
|
if termination_protection is not None:
|
|
215
177
|
pulumi.set(__self__, "termination_protection", termination_protection)
|
|
216
|
-
if topic_description is not None:
|
|
217
|
-
pulumi.set(__self__, "topic_description", topic_description)
|
|
218
178
|
if topic_name is not None:
|
|
219
179
|
pulumi.set(__self__, "topic_name", topic_name)
|
|
220
180
|
|
|
@@ -230,18 +190,6 @@ class _KafkaTopicState:
|
|
|
230
190
|
def config(self, value: Optional[pulumi.Input['KafkaTopicConfigArgs']]):
|
|
231
191
|
pulumi.set(self, "config", value)
|
|
232
192
|
|
|
233
|
-
@property
|
|
234
|
-
@pulumi.getter(name="ownerUserGroupId")
|
|
235
|
-
def owner_user_group_id(self) -> Optional[pulumi.Input[str]]:
|
|
236
|
-
"""
|
|
237
|
-
The user group that is the owner of the topic
|
|
238
|
-
"""
|
|
239
|
-
return pulumi.get(self, "owner_user_group_id")
|
|
240
|
-
|
|
241
|
-
@owner_user_group_id.setter
|
|
242
|
-
def owner_user_group_id(self, value: Optional[pulumi.Input[str]]):
|
|
243
|
-
pulumi.set(self, "owner_user_group_id", value)
|
|
244
|
-
|
|
245
193
|
@property
|
|
246
194
|
@pulumi.getter
|
|
247
195
|
def partitions(self) -> Optional[pulumi.Input[int]]:
|
|
@@ -311,18 +259,6 @@ class _KafkaTopicState:
|
|
|
311
259
|
def termination_protection(self, value: Optional[pulumi.Input[bool]]):
|
|
312
260
|
pulumi.set(self, "termination_protection", value)
|
|
313
261
|
|
|
314
|
-
@property
|
|
315
|
-
@pulumi.getter(name="topicDescription")
|
|
316
|
-
def topic_description(self) -> Optional[pulumi.Input[str]]:
|
|
317
|
-
"""
|
|
318
|
-
The description of the topic
|
|
319
|
-
"""
|
|
320
|
-
return pulumi.get(self, "topic_description")
|
|
321
|
-
|
|
322
|
-
@topic_description.setter
|
|
323
|
-
def topic_description(self, value: Optional[pulumi.Input[str]]):
|
|
324
|
-
pulumi.set(self, "topic_description", value)
|
|
325
|
-
|
|
326
262
|
@property
|
|
327
263
|
@pulumi.getter(name="topicName")
|
|
328
264
|
def topic_name(self) -> Optional[pulumi.Input[str]]:
|
|
@@ -342,14 +278,12 @@ class KafkaTopic(pulumi.CustomResource):
|
|
|
342
278
|
resource_name: str,
|
|
343
279
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
344
280
|
config: Optional[pulumi.Input[Union['KafkaTopicConfigArgs', 'KafkaTopicConfigArgsDict']]] = None,
|
|
345
|
-
owner_user_group_id: Optional[pulumi.Input[str]] = None,
|
|
346
281
|
partitions: Optional[pulumi.Input[int]] = None,
|
|
347
282
|
project: Optional[pulumi.Input[str]] = None,
|
|
348
283
|
replication: Optional[pulumi.Input[int]] = None,
|
|
349
284
|
service_name: Optional[pulumi.Input[str]] = None,
|
|
350
285
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input[Union['KafkaTopicTagArgs', 'KafkaTopicTagArgsDict']]]]] = None,
|
|
351
286
|
termination_protection: Optional[pulumi.Input[bool]] = None,
|
|
352
|
-
topic_description: Optional[pulumi.Input[str]] = None,
|
|
353
287
|
topic_name: Optional[pulumi.Input[str]] = None,
|
|
354
288
|
__props__=None):
|
|
355
289
|
"""
|
|
@@ -383,13 +317,11 @@ class KafkaTopic(pulumi.CustomResource):
|
|
|
383
317
|
:param str resource_name: The name of the resource.
|
|
384
318
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
385
319
|
:param pulumi.Input[Union['KafkaTopicConfigArgs', 'KafkaTopicConfigArgsDict']] config: [Advanced parameters](https://aiven.io/docs/products/kafka/reference/advanced-params) to configure topics.
|
|
386
|
-
:param pulumi.Input[str] owner_user_group_id: The user group that is the owner of the topic
|
|
387
320
|
:param pulumi.Input[int] partitions: The number of partitions to create in the topic.
|
|
388
321
|
:param pulumi.Input[str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
|
|
389
322
|
:param pulumi.Input[int] replication: The replication factor for the topic.
|
|
390
323
|
:param pulumi.Input[str] service_name: The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
|
|
391
324
|
:param pulumi.Input[Sequence[pulumi.Input[Union['KafkaTopicTagArgs', 'KafkaTopicTagArgsDict']]]] tags: Tags for the topic.
|
|
392
|
-
:param pulumi.Input[str] topic_description: The description of the topic
|
|
393
325
|
:param pulumi.Input[str] topic_name: The name of the topic. Changing this property forces recreation of the resource.
|
|
394
326
|
"""
|
|
395
327
|
...
|
|
@@ -442,14 +374,12 @@ class KafkaTopic(pulumi.CustomResource):
|
|
|
442
374
|
resource_name: str,
|
|
443
375
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
444
376
|
config: Optional[pulumi.Input[Union['KafkaTopicConfigArgs', 'KafkaTopicConfigArgsDict']]] = None,
|
|
445
|
-
owner_user_group_id: Optional[pulumi.Input[str]] = None,
|
|
446
377
|
partitions: Optional[pulumi.Input[int]] = None,
|
|
447
378
|
project: Optional[pulumi.Input[str]] = None,
|
|
448
379
|
replication: Optional[pulumi.Input[int]] = None,
|
|
449
380
|
service_name: Optional[pulumi.Input[str]] = None,
|
|
450
381
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input[Union['KafkaTopicTagArgs', 'KafkaTopicTagArgsDict']]]]] = None,
|
|
451
382
|
termination_protection: Optional[pulumi.Input[bool]] = None,
|
|
452
|
-
topic_description: Optional[pulumi.Input[str]] = None,
|
|
453
383
|
topic_name: Optional[pulumi.Input[str]] = None,
|
|
454
384
|
__props__=None):
|
|
455
385
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
|
@@ -461,7 +391,6 @@ class KafkaTopic(pulumi.CustomResource):
|
|
|
461
391
|
__props__ = KafkaTopicArgs.__new__(KafkaTopicArgs)
|
|
462
392
|
|
|
463
393
|
__props__.__dict__["config"] = config
|
|
464
|
-
__props__.__dict__["owner_user_group_id"] = owner_user_group_id
|
|
465
394
|
if partitions is None and not opts.urn:
|
|
466
395
|
raise TypeError("Missing required property 'partitions'")
|
|
467
396
|
__props__.__dict__["partitions"] = partitions
|
|
@@ -476,7 +405,6 @@ class KafkaTopic(pulumi.CustomResource):
|
|
|
476
405
|
__props__.__dict__["service_name"] = service_name
|
|
477
406
|
__props__.__dict__["tags"] = tags
|
|
478
407
|
__props__.__dict__["termination_protection"] = termination_protection
|
|
479
|
-
__props__.__dict__["topic_description"] = topic_description
|
|
480
408
|
if topic_name is None and not opts.urn:
|
|
481
409
|
raise TypeError("Missing required property 'topic_name'")
|
|
482
410
|
__props__.__dict__["topic_name"] = topic_name
|
|
@@ -491,14 +419,12 @@ class KafkaTopic(pulumi.CustomResource):
|
|
|
491
419
|
id: pulumi.Input[str],
|
|
492
420
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
493
421
|
config: Optional[pulumi.Input[Union['KafkaTopicConfigArgs', 'KafkaTopicConfigArgsDict']]] = None,
|
|
494
|
-
owner_user_group_id: Optional[pulumi.Input[str]] = None,
|
|
495
422
|
partitions: Optional[pulumi.Input[int]] = None,
|
|
496
423
|
project: Optional[pulumi.Input[str]] = None,
|
|
497
424
|
replication: Optional[pulumi.Input[int]] = None,
|
|
498
425
|
service_name: Optional[pulumi.Input[str]] = None,
|
|
499
426
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input[Union['KafkaTopicTagArgs', 'KafkaTopicTagArgsDict']]]]] = None,
|
|
500
427
|
termination_protection: Optional[pulumi.Input[bool]] = None,
|
|
501
|
-
topic_description: Optional[pulumi.Input[str]] = None,
|
|
502
428
|
topic_name: Optional[pulumi.Input[str]] = None) -> 'KafkaTopic':
|
|
503
429
|
"""
|
|
504
430
|
Get an existing KafkaTopic resource's state with the given name, id, and optional extra
|
|
@@ -508,13 +434,11 @@ class KafkaTopic(pulumi.CustomResource):
|
|
|
508
434
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
509
435
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
510
436
|
:param pulumi.Input[Union['KafkaTopicConfigArgs', 'KafkaTopicConfigArgsDict']] config: [Advanced parameters](https://aiven.io/docs/products/kafka/reference/advanced-params) to configure topics.
|
|
511
|
-
:param pulumi.Input[str] owner_user_group_id: The user group that is the owner of the topic
|
|
512
437
|
:param pulumi.Input[int] partitions: The number of partitions to create in the topic.
|
|
513
438
|
:param pulumi.Input[str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
|
|
514
439
|
:param pulumi.Input[int] replication: The replication factor for the topic.
|
|
515
440
|
:param pulumi.Input[str] service_name: The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
|
|
516
441
|
:param pulumi.Input[Sequence[pulumi.Input[Union['KafkaTopicTagArgs', 'KafkaTopicTagArgsDict']]]] tags: Tags for the topic.
|
|
517
|
-
:param pulumi.Input[str] topic_description: The description of the topic
|
|
518
442
|
:param pulumi.Input[str] topic_name: The name of the topic. Changing this property forces recreation of the resource.
|
|
519
443
|
"""
|
|
520
444
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
@@ -522,14 +446,12 @@ class KafkaTopic(pulumi.CustomResource):
|
|
|
522
446
|
__props__ = _KafkaTopicState.__new__(_KafkaTopicState)
|
|
523
447
|
|
|
524
448
|
__props__.__dict__["config"] = config
|
|
525
|
-
__props__.__dict__["owner_user_group_id"] = owner_user_group_id
|
|
526
449
|
__props__.__dict__["partitions"] = partitions
|
|
527
450
|
__props__.__dict__["project"] = project
|
|
528
451
|
__props__.__dict__["replication"] = replication
|
|
529
452
|
__props__.__dict__["service_name"] = service_name
|
|
530
453
|
__props__.__dict__["tags"] = tags
|
|
531
454
|
__props__.__dict__["termination_protection"] = termination_protection
|
|
532
|
-
__props__.__dict__["topic_description"] = topic_description
|
|
533
455
|
__props__.__dict__["topic_name"] = topic_name
|
|
534
456
|
return KafkaTopic(resource_name, opts=opts, __props__=__props__)
|
|
535
457
|
|
|
@@ -541,14 +463,6 @@ class KafkaTopic(pulumi.CustomResource):
|
|
|
541
463
|
"""
|
|
542
464
|
return pulumi.get(self, "config")
|
|
543
465
|
|
|
544
|
-
@property
|
|
545
|
-
@pulumi.getter(name="ownerUserGroupId")
|
|
546
|
-
def owner_user_group_id(self) -> pulumi.Output[Optional[str]]:
|
|
547
|
-
"""
|
|
548
|
-
The user group that is the owner of the topic
|
|
549
|
-
"""
|
|
550
|
-
return pulumi.get(self, "owner_user_group_id")
|
|
551
|
-
|
|
552
466
|
@property
|
|
553
467
|
@pulumi.getter
|
|
554
468
|
def partitions(self) -> pulumi.Output[int]:
|
|
@@ -594,14 +508,6 @@ class KafkaTopic(pulumi.CustomResource):
|
|
|
594
508
|
def termination_protection(self) -> pulumi.Output[Optional[bool]]:
|
|
595
509
|
return pulumi.get(self, "termination_protection")
|
|
596
510
|
|
|
597
|
-
@property
|
|
598
|
-
@pulumi.getter(name="topicDescription")
|
|
599
|
-
def topic_description(self) -> pulumi.Output[Optional[str]]:
|
|
600
|
-
"""
|
|
601
|
-
The description of the topic
|
|
602
|
-
"""
|
|
603
|
-
return pulumi.get(self, "topic_description")
|
|
604
|
-
|
|
605
511
|
@property
|
|
606
512
|
@pulumi.getter(name="topicName")
|
|
607
513
|
def topic_name(self) -> pulumi.Output[str]:
|
pulumi_aiven/m3_aggregator.py
CHANGED
|
@@ -34,7 +34,7 @@ class M3AggregatorArgs:
|
|
|
34
34
|
termination_protection: Optional[pulumi.Input[bool]] = None):
|
|
35
35
|
"""
|
|
36
36
|
The set of arguments for constructing a M3Aggregator resource.
|
|
37
|
-
:param pulumi.Input[str] plan: Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be
|
|
37
|
+
:param pulumi.Input[str] plan: Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seem from the [Aiven pricing page](https://aiven.io/pricing).
|
|
38
38
|
:param pulumi.Input[str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
|
|
39
39
|
:param pulumi.Input[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.
|
|
40
40
|
:param pulumi.Input[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 with no HA capabilities.
|
|
@@ -88,7 +88,7 @@ class M3AggregatorArgs:
|
|
|
88
88
|
@pulumi.getter
|
|
89
89
|
def plan(self) -> pulumi.Input[str]:
|
|
90
90
|
"""
|
|
91
|
-
Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be
|
|
91
|
+
Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seem from the [Aiven pricing page](https://aiven.io/pricing).
|
|
92
92
|
"""
|
|
93
93
|
return pulumi.get(self, "plan")
|
|
94
94
|
|
|
@@ -323,7 +323,7 @@ class _M3AggregatorState:
|
|
|
323
323
|
:param pulumi.Input['M3AggregatorM3aggregatorUserConfigArgs'] m3aggregator_user_config: M3aggregator user configurable settings
|
|
324
324
|
:param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
|
|
325
325
|
:param pulumi.Input[str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
326
|
-
:param pulumi.Input[str] plan: Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be
|
|
326
|
+
:param pulumi.Input[str] plan: Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seem from the [Aiven pricing page](https://aiven.io/pricing).
|
|
327
327
|
:param pulumi.Input[str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
|
|
328
328
|
:param pulumi.Input[str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service is not run inside a VPC. When set, the value should be given as a reference to set up dependencies correctly and the VPC must be in the same cloud and region as the service itself. Project can be freely moved to and from VPC after creation but doing so triggers migration to new servers so the operation can take significant amount of time to complete if the service has a lot of data.
|
|
329
329
|
:param pulumi.Input[str] service_host: The hostname of the service.
|
|
@@ -549,7 +549,7 @@ class _M3AggregatorState:
|
|
|
549
549
|
@pulumi.getter
|
|
550
550
|
def plan(self) -> Optional[pulumi.Input[str]]:
|
|
551
551
|
"""
|
|
552
|
-
Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be
|
|
552
|
+
Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seem from the [Aiven pricing page](https://aiven.io/pricing).
|
|
553
553
|
"""
|
|
554
554
|
return pulumi.get(self, "plan")
|
|
555
555
|
|
|
@@ -796,7 +796,7 @@ class M3Aggregator(pulumi.CustomResource):
|
|
|
796
796
|
:param pulumi.Input[Union['M3AggregatorM3aggregatorUserConfigArgs', 'M3AggregatorM3aggregatorUserConfigArgsDict']] m3aggregator_user_config: M3aggregator user configurable settings
|
|
797
797
|
:param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
|
|
798
798
|
:param pulumi.Input[str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
799
|
-
:param pulumi.Input[str] plan: Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be
|
|
799
|
+
:param pulumi.Input[str] plan: Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seem from the [Aiven pricing page](https://aiven.io/pricing).
|
|
800
800
|
:param pulumi.Input[str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
|
|
801
801
|
:param pulumi.Input[str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service is not run inside a VPC. When set, the value should be given as a reference to set up dependencies correctly and the VPC must be in the same cloud and region as the service itself. Project can be freely moved to and from VPC after creation but doing so triggers migration to new servers so the operation can take significant amount of time to complete if the service has a lot of data.
|
|
802
802
|
:param pulumi.Input[Sequence[pulumi.Input[Union['M3AggregatorServiceIntegrationArgs', 'M3AggregatorServiceIntegrationArgsDict']]]] service_integrations: Service integrations to specify when creating a service. Not applied after initial service creation
|
|
@@ -972,7 +972,7 @@ class M3Aggregator(pulumi.CustomResource):
|
|
|
972
972
|
:param pulumi.Input[Union['M3AggregatorM3aggregatorUserConfigArgs', 'M3AggregatorM3aggregatorUserConfigArgsDict']] m3aggregator_user_config: M3aggregator user configurable settings
|
|
973
973
|
:param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
|
|
974
974
|
:param pulumi.Input[str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
975
|
-
:param pulumi.Input[str] plan: Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be
|
|
975
|
+
:param pulumi.Input[str] plan: Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seem from the [Aiven pricing page](https://aiven.io/pricing).
|
|
976
976
|
:param pulumi.Input[str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
|
|
977
977
|
:param pulumi.Input[str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service is not run inside a VPC. When set, the value should be given as a reference to set up dependencies correctly and the VPC must be in the same cloud and region as the service itself. Project can be freely moved to and from VPC after creation but doing so triggers migration to new servers so the operation can take significant amount of time to complete if the service has a lot of data.
|
|
978
978
|
:param pulumi.Input[str] service_host: The hostname of the service.
|
|
@@ -1124,7 +1124,7 @@ class M3Aggregator(pulumi.CustomResource):
|
|
|
1124
1124
|
@pulumi.getter
|
|
1125
1125
|
def plan(self) -> pulumi.Output[str]:
|
|
1126
1126
|
"""
|
|
1127
|
-
Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be
|
|
1127
|
+
Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seem from the [Aiven pricing page](https://aiven.io/pricing).
|
|
1128
1128
|
"""
|
|
1129
1129
|
return pulumi.get(self, "plan")
|
|
1130
1130
|
|
pulumi_aiven/m3_db.py
CHANGED
|
@@ -34,13 +34,13 @@ class M3DbArgs:
|
|
|
34
34
|
termination_protection: Optional[pulumi.Input[bool]] = None):
|
|
35
35
|
"""
|
|
36
36
|
The set of arguments for constructing a M3Db resource.
|
|
37
|
-
:param pulumi.Input[str] plan: Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be
|
|
37
|
+
:param pulumi.Input[str] plan: Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seem from the [Aiven pricing page](https://aiven.io/pricing).
|
|
38
38
|
:param pulumi.Input[str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
|
|
39
39
|
:param pulumi.Input[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.
|
|
40
40
|
:param pulumi.Input[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 with no HA capabilities.
|
|
41
41
|
:param pulumi.Input[str] cloud_name: Defines where the cloud provider and region where the service is hosted in. This can be changed freely after service is created. Changing the value will trigger a potentially lengthy migration process for the service. Format is cloud provider name (`aws`, `azure`, `do` `google`, `upcloud`, etc.), dash, and the cloud provider specific region name. These are documented on each Cloud provider's own support articles, like [here for Google](https://cloud.google.com/compute/docs/regions-zones/) and [here for AWS](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.RegionsAndAvailabilityZones.html).
|
|
42
42
|
:param pulumi.Input[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.
|
|
43
|
-
:param pulumi.Input['M3DbM3dbArgs'] m3db:
|
|
43
|
+
:param pulumi.Input['M3DbM3dbArgs'] m3db: M3DB server provided values
|
|
44
44
|
:param pulumi.Input['M3DbM3dbUserConfigArgs'] m3db_user_config: M3db user configurable settings
|
|
45
45
|
:param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
|
|
46
46
|
:param pulumi.Input[str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
@@ -88,7 +88,7 @@ class M3DbArgs:
|
|
|
88
88
|
@pulumi.getter
|
|
89
89
|
def plan(self) -> pulumi.Input[str]:
|
|
90
90
|
"""
|
|
91
|
-
Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be
|
|
91
|
+
Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seem from the [Aiven pricing page](https://aiven.io/pricing).
|
|
92
92
|
"""
|
|
93
93
|
return pulumi.get(self, "plan")
|
|
94
94
|
|
|
@@ -161,7 +161,7 @@ class M3DbArgs:
|
|
|
161
161
|
@pulumi.getter
|
|
162
162
|
def m3db(self) -> Optional[pulumi.Input['M3DbM3dbArgs']]:
|
|
163
163
|
"""
|
|
164
|
-
|
|
164
|
+
M3DB server provided values
|
|
165
165
|
"""
|
|
166
166
|
return pulumi.get(self, "m3db")
|
|
167
167
|
|
|
@@ -319,11 +319,11 @@ class _M3DbState:
|
|
|
319
319
|
:param pulumi.Input[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`
|
|
320
320
|
:param pulumi.Input[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.
|
|
321
321
|
:param pulumi.Input[str] disk_space_used: Disk space that service is currently using
|
|
322
|
-
:param pulumi.Input['M3DbM3dbArgs'] m3db:
|
|
322
|
+
:param pulumi.Input['M3DbM3dbArgs'] m3db: M3DB server provided values
|
|
323
323
|
:param pulumi.Input['M3DbM3dbUserConfigArgs'] m3db_user_config: M3db user configurable settings
|
|
324
324
|
:param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
|
|
325
325
|
:param pulumi.Input[str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
326
|
-
:param pulumi.Input[str] plan: Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be
|
|
326
|
+
:param pulumi.Input[str] plan: Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seem from the [Aiven pricing page](https://aiven.io/pricing).
|
|
327
327
|
:param pulumi.Input[str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
|
|
328
328
|
:param pulumi.Input[str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service is not run inside a VPC. When set, the value should be given as a reference to set up dependencies correctly and the VPC must be in the same cloud and region as the service itself. Project can be freely moved to and from VPC after creation but doing so triggers migration to new servers so the operation can take significant amount of time to complete if the service has a lot of data.
|
|
329
329
|
:param pulumi.Input[str] service_host: The hostname of the service.
|
|
@@ -501,7 +501,7 @@ class _M3DbState:
|
|
|
501
501
|
@pulumi.getter
|
|
502
502
|
def m3db(self) -> Optional[pulumi.Input['M3DbM3dbArgs']]:
|
|
503
503
|
"""
|
|
504
|
-
|
|
504
|
+
M3DB server provided values
|
|
505
505
|
"""
|
|
506
506
|
return pulumi.get(self, "m3db")
|
|
507
507
|
|
|
@@ -549,7 +549,7 @@ class _M3DbState:
|
|
|
549
549
|
@pulumi.getter
|
|
550
550
|
def plan(self) -> Optional[pulumi.Input[str]]:
|
|
551
551
|
"""
|
|
552
|
-
Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be
|
|
552
|
+
Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seem from the [Aiven pricing page](https://aiven.io/pricing).
|
|
553
553
|
"""
|
|
554
554
|
return pulumi.get(self, "plan")
|
|
555
555
|
|
|
@@ -761,7 +761,7 @@ class M3Db(pulumi.CustomResource):
|
|
|
761
761
|
termination_protection: Optional[pulumi.Input[bool]] = None,
|
|
762
762
|
__props__=None):
|
|
763
763
|
"""
|
|
764
|
-
|
|
764
|
+
The M3 DB resource allows the creation and management of Aiven M3 services.
|
|
765
765
|
|
|
766
766
|
## Example Usage
|
|
767
767
|
|
|
@@ -769,17 +769,17 @@ class M3Db(pulumi.CustomResource):
|
|
|
769
769
|
import pulumi
|
|
770
770
|
import pulumi_aiven as aiven
|
|
771
771
|
|
|
772
|
-
|
|
773
|
-
project=
|
|
772
|
+
m3 = aiven.M3Db("m3",
|
|
773
|
+
project=foo["project"],
|
|
774
774
|
cloud_name="google-europe-west1",
|
|
775
775
|
plan="business-8",
|
|
776
|
-
service_name="
|
|
776
|
+
service_name="my-m3db",
|
|
777
777
|
maintenance_window_dow="monday",
|
|
778
778
|
maintenance_window_time="10:00:00",
|
|
779
779
|
m3db_user_config={
|
|
780
780
|
"m3db_version": "1.1",
|
|
781
781
|
"namespaces": [{
|
|
782
|
-
"name": "
|
|
782
|
+
"name": "my_ns1",
|
|
783
783
|
"type": "unaggregated",
|
|
784
784
|
}],
|
|
785
785
|
})
|
|
@@ -788,7 +788,7 @@ class M3Db(pulumi.CustomResource):
|
|
|
788
788
|
## Import
|
|
789
789
|
|
|
790
790
|
```sh
|
|
791
|
-
$ pulumi import aiven:index/m3Db:M3Db
|
|
791
|
+
$ pulumi import aiven:index/m3Db:M3Db m3 project/service_name
|
|
792
792
|
```
|
|
793
793
|
|
|
794
794
|
:param str resource_name: The name of the resource.
|
|
@@ -796,11 +796,11 @@ class M3Db(pulumi.CustomResource):
|
|
|
796
796
|
:param pulumi.Input[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 with no HA capabilities.
|
|
797
797
|
:param pulumi.Input[str] cloud_name: Defines where the cloud provider and region where the service is hosted in. This can be changed freely after service is created. Changing the value will trigger a potentially lengthy migration process for the service. Format is cloud provider name (`aws`, `azure`, `do` `google`, `upcloud`, etc.), dash, and the cloud provider specific region name. These are documented on each Cloud provider's own support articles, like [here for Google](https://cloud.google.com/compute/docs/regions-zones/) and [here for AWS](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.RegionsAndAvailabilityZones.html).
|
|
798
798
|
:param pulumi.Input[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.
|
|
799
|
-
:param pulumi.Input[Union['M3DbM3dbArgs', 'M3DbM3dbArgsDict']] m3db:
|
|
799
|
+
:param pulumi.Input[Union['M3DbM3dbArgs', 'M3DbM3dbArgsDict']] m3db: M3DB server provided values
|
|
800
800
|
:param pulumi.Input[Union['M3DbM3dbUserConfigArgs', 'M3DbM3dbUserConfigArgsDict']] m3db_user_config: M3db user configurable settings
|
|
801
801
|
:param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
|
|
802
802
|
:param pulumi.Input[str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
803
|
-
:param pulumi.Input[str] plan: Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be
|
|
803
|
+
:param pulumi.Input[str] plan: Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seem from the [Aiven pricing page](https://aiven.io/pricing).
|
|
804
804
|
:param pulumi.Input[str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
|
|
805
805
|
:param pulumi.Input[str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service is not run inside a VPC. When set, the value should be given as a reference to set up dependencies correctly and the VPC must be in the same cloud and region as the service itself. Project can be freely moved to and from VPC after creation but doing so triggers migration to new servers so the operation can take significant amount of time to complete if the service has a lot of data.
|
|
806
806
|
:param pulumi.Input[Sequence[pulumi.Input[Union['M3DbServiceIntegrationArgs', 'M3DbServiceIntegrationArgsDict']]]] service_integrations: Service integrations to specify when creating a service. Not applied after initial service creation
|
|
@@ -817,7 +817,7 @@ class M3Db(pulumi.CustomResource):
|
|
|
817
817
|
args: M3DbArgs,
|
|
818
818
|
opts: Optional[pulumi.ResourceOptions] = None):
|
|
819
819
|
"""
|
|
820
|
-
|
|
820
|
+
The M3 DB resource allows the creation and management of Aiven M3 services.
|
|
821
821
|
|
|
822
822
|
## Example Usage
|
|
823
823
|
|
|
@@ -825,17 +825,17 @@ class M3Db(pulumi.CustomResource):
|
|
|
825
825
|
import pulumi
|
|
826
826
|
import pulumi_aiven as aiven
|
|
827
827
|
|
|
828
|
-
|
|
829
|
-
project=
|
|
828
|
+
m3 = aiven.M3Db("m3",
|
|
829
|
+
project=foo["project"],
|
|
830
830
|
cloud_name="google-europe-west1",
|
|
831
831
|
plan="business-8",
|
|
832
|
-
service_name="
|
|
832
|
+
service_name="my-m3db",
|
|
833
833
|
maintenance_window_dow="monday",
|
|
834
834
|
maintenance_window_time="10:00:00",
|
|
835
835
|
m3db_user_config={
|
|
836
836
|
"m3db_version": "1.1",
|
|
837
837
|
"namespaces": [{
|
|
838
|
-
"name": "
|
|
838
|
+
"name": "my_ns1",
|
|
839
839
|
"type": "unaggregated",
|
|
840
840
|
}],
|
|
841
841
|
})
|
|
@@ -844,7 +844,7 @@ class M3Db(pulumi.CustomResource):
|
|
|
844
844
|
## Import
|
|
845
845
|
|
|
846
846
|
```sh
|
|
847
|
-
$ pulumi import aiven:index/m3Db:M3Db
|
|
847
|
+
$ pulumi import aiven:index/m3Db:M3Db m3 project/service_name
|
|
848
848
|
```
|
|
849
849
|
|
|
850
850
|
:param str resource_name: The name of the resource.
|
|
@@ -976,11 +976,11 @@ class M3Db(pulumi.CustomResource):
|
|
|
976
976
|
:param pulumi.Input[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`
|
|
977
977
|
:param pulumi.Input[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.
|
|
978
978
|
:param pulumi.Input[str] disk_space_used: Disk space that service is currently using
|
|
979
|
-
:param pulumi.Input[Union['M3DbM3dbArgs', 'M3DbM3dbArgsDict']] m3db:
|
|
979
|
+
:param pulumi.Input[Union['M3DbM3dbArgs', 'M3DbM3dbArgsDict']] m3db: M3DB server provided values
|
|
980
980
|
:param pulumi.Input[Union['M3DbM3dbUserConfigArgs', 'M3DbM3dbUserConfigArgsDict']] m3db_user_config: M3db user configurable settings
|
|
981
981
|
:param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
|
|
982
982
|
:param pulumi.Input[str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
983
|
-
:param pulumi.Input[str] plan: Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be
|
|
983
|
+
:param pulumi.Input[str] plan: Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seem from the [Aiven pricing page](https://aiven.io/pricing).
|
|
984
984
|
:param pulumi.Input[str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
|
|
985
985
|
:param pulumi.Input[str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service is not run inside a VPC. When set, the value should be given as a reference to set up dependencies correctly and the VPC must be in the same cloud and region as the service itself. Project can be freely moved to and from VPC after creation but doing so triggers migration to new servers so the operation can take significant amount of time to complete if the service has a lot of data.
|
|
986
986
|
:param pulumi.Input[str] service_host: The hostname of the service.
|
|
@@ -1100,7 +1100,7 @@ class M3Db(pulumi.CustomResource):
|
|
|
1100
1100
|
@pulumi.getter
|
|
1101
1101
|
def m3db(self) -> pulumi.Output['outputs.M3DbM3db']:
|
|
1102
1102
|
"""
|
|
1103
|
-
|
|
1103
|
+
M3DB server provided values
|
|
1104
1104
|
"""
|
|
1105
1105
|
return pulumi.get(self, "m3db")
|
|
1106
1106
|
|
|
@@ -1132,7 +1132,7 @@ class M3Db(pulumi.CustomResource):
|
|
|
1132
1132
|
@pulumi.getter
|
|
1133
1133
|
def plan(self) -> pulumi.Output[str]:
|
|
1134
1134
|
"""
|
|
1135
|
-
Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be
|
|
1135
|
+
Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seem from the [Aiven pricing page](https://aiven.io/pricing).
|
|
1136
1136
|
"""
|
|
1137
1137
|
return pulumi.get(self, "plan")
|
|
1138
1138
|
|