pulumi-aiven 6.24.0a1726291362__py3-none-any.whl → 6.24.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/__init__.py +9 -0
- pulumi_aiven/_inputs.py +524 -4
- 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 +27 -1
- 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 +40 -1
- 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 +95 -1
- 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/organization_permission.py +298 -0
- pulumi_aiven/outputs.py +798 -8
- pulumi_aiven/pg.py +7 -7
- pulumi_aiven/pg_user.py +21 -7
- pulumi_aiven/pulumi-plugin.json +1 -1
- pulumi_aiven/redis.py +7 -7
- pulumi_aiven/service_integration_endpoint.py +141 -0
- pulumi_aiven/thanos.py +7 -7
- pulumi_aiven/valkey.py +7 -7
- {pulumi_aiven-6.24.0a1726291362.dist-info → pulumi_aiven-6.24.1.dist-info}/METADATA +1 -1
- {pulumi_aiven-6.24.0a1726291362.dist-info → pulumi_aiven-6.24.1.dist-info}/RECORD +55 -54
- {pulumi_aiven-6.24.0a1726291362.dist-info → pulumi_aiven-6.24.1.dist-info}/WHEEL +1 -1
- {pulumi_aiven-6.24.0a1726291362.dist-info → pulumi_aiven-6.24.1.dist-info}/top_level.txt +0 -0
pulumi_aiven/kafka_topic.py
CHANGED
|
@@ -22,8 +22,10 @@ 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,
|
|
25
26
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input['KafkaTopicTagArgs']]]] = None,
|
|
26
|
-
termination_protection: Optional[pulumi.Input[bool]] = None
|
|
27
|
+
termination_protection: Optional[pulumi.Input[bool]] = None,
|
|
28
|
+
topic_description: Optional[pulumi.Input[str]] = None):
|
|
27
29
|
"""
|
|
28
30
|
The set of arguments for constructing a KafkaTopic resource.
|
|
29
31
|
:param pulumi.Input[int] partitions: The number of partitions to create in the topic.
|
|
@@ -32,7 +34,9 @@ class KafkaTopicArgs:
|
|
|
32
34
|
: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.
|
|
33
35
|
:param pulumi.Input[str] topic_name: The name of the topic. Changing this property forces recreation of the resource.
|
|
34
36
|
: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
|
|
35
38
|
:param pulumi.Input[Sequence[pulumi.Input['KafkaTopicTagArgs']]] tags: Tags for the topic.
|
|
39
|
+
:param pulumi.Input[str] topic_description: The description of the topic
|
|
36
40
|
"""
|
|
37
41
|
pulumi.set(__self__, "partitions", partitions)
|
|
38
42
|
pulumi.set(__self__, "project", project)
|
|
@@ -41,10 +45,14 @@ class KafkaTopicArgs:
|
|
|
41
45
|
pulumi.set(__self__, "topic_name", topic_name)
|
|
42
46
|
if config is not None:
|
|
43
47
|
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)
|
|
44
50
|
if tags is not None:
|
|
45
51
|
pulumi.set(__self__, "tags", tags)
|
|
46
52
|
if termination_protection is not None:
|
|
47
53
|
pulumi.set(__self__, "termination_protection", termination_protection)
|
|
54
|
+
if topic_description is not None:
|
|
55
|
+
pulumi.set(__self__, "topic_description", topic_description)
|
|
48
56
|
|
|
49
57
|
@property
|
|
50
58
|
@pulumi.getter
|
|
@@ -118,6 +126,18 @@ class KafkaTopicArgs:
|
|
|
118
126
|
def config(self, value: Optional[pulumi.Input['KafkaTopicConfigArgs']]):
|
|
119
127
|
pulumi.set(self, "config", value)
|
|
120
128
|
|
|
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
|
+
|
|
121
141
|
@property
|
|
122
142
|
@pulumi.getter
|
|
123
143
|
def tags(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['KafkaTopicTagArgs']]]]:
|
|
@@ -139,30 +159,48 @@ class KafkaTopicArgs:
|
|
|
139
159
|
def termination_protection(self, value: Optional[pulumi.Input[bool]]):
|
|
140
160
|
pulumi.set(self, "termination_protection", value)
|
|
141
161
|
|
|
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
|
+
|
|
142
174
|
|
|
143
175
|
@pulumi.input_type
|
|
144
176
|
class _KafkaTopicState:
|
|
145
177
|
def __init__(__self__, *,
|
|
146
178
|
config: Optional[pulumi.Input['KafkaTopicConfigArgs']] = None,
|
|
179
|
+
owner_user_group_id: Optional[pulumi.Input[str]] = None,
|
|
147
180
|
partitions: Optional[pulumi.Input[int]] = None,
|
|
148
181
|
project: Optional[pulumi.Input[str]] = None,
|
|
149
182
|
replication: Optional[pulumi.Input[int]] = None,
|
|
150
183
|
service_name: Optional[pulumi.Input[str]] = None,
|
|
151
184
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input['KafkaTopicTagArgs']]]] = None,
|
|
152
185
|
termination_protection: Optional[pulumi.Input[bool]] = None,
|
|
186
|
+
topic_description: Optional[pulumi.Input[str]] = None,
|
|
153
187
|
topic_name: Optional[pulumi.Input[str]] = None):
|
|
154
188
|
"""
|
|
155
189
|
Input properties used for looking up and filtering KafkaTopic resources.
|
|
156
190
|
: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
|
|
157
192
|
:param pulumi.Input[int] partitions: The number of partitions to create in the topic.
|
|
158
193
|
: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.
|
|
159
194
|
:param pulumi.Input[int] replication: The replication factor for the topic.
|
|
160
195
|
: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.
|
|
161
196
|
:param pulumi.Input[Sequence[pulumi.Input['KafkaTopicTagArgs']]] tags: Tags for the topic.
|
|
197
|
+
:param pulumi.Input[str] topic_description: The description of the topic
|
|
162
198
|
:param pulumi.Input[str] topic_name: The name of the topic. Changing this property forces recreation of the resource.
|
|
163
199
|
"""
|
|
164
200
|
if config is not None:
|
|
165
201
|
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)
|
|
166
204
|
if partitions is not None:
|
|
167
205
|
pulumi.set(__self__, "partitions", partitions)
|
|
168
206
|
if project is not None:
|
|
@@ -175,6 +213,8 @@ class _KafkaTopicState:
|
|
|
175
213
|
pulumi.set(__self__, "tags", tags)
|
|
176
214
|
if termination_protection is not None:
|
|
177
215
|
pulumi.set(__self__, "termination_protection", termination_protection)
|
|
216
|
+
if topic_description is not None:
|
|
217
|
+
pulumi.set(__self__, "topic_description", topic_description)
|
|
178
218
|
if topic_name is not None:
|
|
179
219
|
pulumi.set(__self__, "topic_name", topic_name)
|
|
180
220
|
|
|
@@ -190,6 +230,18 @@ class _KafkaTopicState:
|
|
|
190
230
|
def config(self, value: Optional[pulumi.Input['KafkaTopicConfigArgs']]):
|
|
191
231
|
pulumi.set(self, "config", value)
|
|
192
232
|
|
|
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
|
+
|
|
193
245
|
@property
|
|
194
246
|
@pulumi.getter
|
|
195
247
|
def partitions(self) -> Optional[pulumi.Input[int]]:
|
|
@@ -259,6 +311,18 @@ class _KafkaTopicState:
|
|
|
259
311
|
def termination_protection(self, value: Optional[pulumi.Input[bool]]):
|
|
260
312
|
pulumi.set(self, "termination_protection", value)
|
|
261
313
|
|
|
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
|
+
|
|
262
326
|
@property
|
|
263
327
|
@pulumi.getter(name="topicName")
|
|
264
328
|
def topic_name(self) -> Optional[pulumi.Input[str]]:
|
|
@@ -278,12 +342,14 @@ class KafkaTopic(pulumi.CustomResource):
|
|
|
278
342
|
resource_name: str,
|
|
279
343
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
280
344
|
config: Optional[pulumi.Input[Union['KafkaTopicConfigArgs', 'KafkaTopicConfigArgsDict']]] = None,
|
|
345
|
+
owner_user_group_id: Optional[pulumi.Input[str]] = None,
|
|
281
346
|
partitions: Optional[pulumi.Input[int]] = None,
|
|
282
347
|
project: Optional[pulumi.Input[str]] = None,
|
|
283
348
|
replication: Optional[pulumi.Input[int]] = None,
|
|
284
349
|
service_name: Optional[pulumi.Input[str]] = None,
|
|
285
350
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input[Union['KafkaTopicTagArgs', 'KafkaTopicTagArgsDict']]]]] = None,
|
|
286
351
|
termination_protection: Optional[pulumi.Input[bool]] = None,
|
|
352
|
+
topic_description: Optional[pulumi.Input[str]] = None,
|
|
287
353
|
topic_name: Optional[pulumi.Input[str]] = None,
|
|
288
354
|
__props__=None):
|
|
289
355
|
"""
|
|
@@ -317,11 +383,13 @@ class KafkaTopic(pulumi.CustomResource):
|
|
|
317
383
|
:param str resource_name: The name of the resource.
|
|
318
384
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
319
385
|
: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
|
|
320
387
|
:param pulumi.Input[int] partitions: The number of partitions to create in the topic.
|
|
321
388
|
: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.
|
|
322
389
|
:param pulumi.Input[int] replication: The replication factor for the topic.
|
|
323
390
|
: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.
|
|
324
391
|
: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
|
|
325
393
|
:param pulumi.Input[str] topic_name: The name of the topic. Changing this property forces recreation of the resource.
|
|
326
394
|
"""
|
|
327
395
|
...
|
|
@@ -374,12 +442,14 @@ class KafkaTopic(pulumi.CustomResource):
|
|
|
374
442
|
resource_name: str,
|
|
375
443
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
376
444
|
config: Optional[pulumi.Input[Union['KafkaTopicConfigArgs', 'KafkaTopicConfigArgsDict']]] = None,
|
|
445
|
+
owner_user_group_id: Optional[pulumi.Input[str]] = None,
|
|
377
446
|
partitions: Optional[pulumi.Input[int]] = None,
|
|
378
447
|
project: Optional[pulumi.Input[str]] = None,
|
|
379
448
|
replication: Optional[pulumi.Input[int]] = None,
|
|
380
449
|
service_name: Optional[pulumi.Input[str]] = None,
|
|
381
450
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input[Union['KafkaTopicTagArgs', 'KafkaTopicTagArgsDict']]]]] = None,
|
|
382
451
|
termination_protection: Optional[pulumi.Input[bool]] = None,
|
|
452
|
+
topic_description: Optional[pulumi.Input[str]] = None,
|
|
383
453
|
topic_name: Optional[pulumi.Input[str]] = None,
|
|
384
454
|
__props__=None):
|
|
385
455
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
|
@@ -391,6 +461,7 @@ class KafkaTopic(pulumi.CustomResource):
|
|
|
391
461
|
__props__ = KafkaTopicArgs.__new__(KafkaTopicArgs)
|
|
392
462
|
|
|
393
463
|
__props__.__dict__["config"] = config
|
|
464
|
+
__props__.__dict__["owner_user_group_id"] = owner_user_group_id
|
|
394
465
|
if partitions is None and not opts.urn:
|
|
395
466
|
raise TypeError("Missing required property 'partitions'")
|
|
396
467
|
__props__.__dict__["partitions"] = partitions
|
|
@@ -405,6 +476,7 @@ class KafkaTopic(pulumi.CustomResource):
|
|
|
405
476
|
__props__.__dict__["service_name"] = service_name
|
|
406
477
|
__props__.__dict__["tags"] = tags
|
|
407
478
|
__props__.__dict__["termination_protection"] = termination_protection
|
|
479
|
+
__props__.__dict__["topic_description"] = topic_description
|
|
408
480
|
if topic_name is None and not opts.urn:
|
|
409
481
|
raise TypeError("Missing required property 'topic_name'")
|
|
410
482
|
__props__.__dict__["topic_name"] = topic_name
|
|
@@ -419,12 +491,14 @@ class KafkaTopic(pulumi.CustomResource):
|
|
|
419
491
|
id: pulumi.Input[str],
|
|
420
492
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
421
493
|
config: Optional[pulumi.Input[Union['KafkaTopicConfigArgs', 'KafkaTopicConfigArgsDict']]] = None,
|
|
494
|
+
owner_user_group_id: Optional[pulumi.Input[str]] = None,
|
|
422
495
|
partitions: Optional[pulumi.Input[int]] = None,
|
|
423
496
|
project: Optional[pulumi.Input[str]] = None,
|
|
424
497
|
replication: Optional[pulumi.Input[int]] = None,
|
|
425
498
|
service_name: Optional[pulumi.Input[str]] = None,
|
|
426
499
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input[Union['KafkaTopicTagArgs', 'KafkaTopicTagArgsDict']]]]] = None,
|
|
427
500
|
termination_protection: Optional[pulumi.Input[bool]] = None,
|
|
501
|
+
topic_description: Optional[pulumi.Input[str]] = None,
|
|
428
502
|
topic_name: Optional[pulumi.Input[str]] = None) -> 'KafkaTopic':
|
|
429
503
|
"""
|
|
430
504
|
Get an existing KafkaTopic resource's state with the given name, id, and optional extra
|
|
@@ -434,11 +508,13 @@ class KafkaTopic(pulumi.CustomResource):
|
|
|
434
508
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
435
509
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
436
510
|
: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
|
|
437
512
|
:param pulumi.Input[int] partitions: The number of partitions to create in the topic.
|
|
438
513
|
: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.
|
|
439
514
|
:param pulumi.Input[int] replication: The replication factor for the topic.
|
|
440
515
|
: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.
|
|
441
516
|
: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
|
|
442
518
|
:param pulumi.Input[str] topic_name: The name of the topic. Changing this property forces recreation of the resource.
|
|
443
519
|
"""
|
|
444
520
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
@@ -446,12 +522,14 @@ class KafkaTopic(pulumi.CustomResource):
|
|
|
446
522
|
__props__ = _KafkaTopicState.__new__(_KafkaTopicState)
|
|
447
523
|
|
|
448
524
|
__props__.__dict__["config"] = config
|
|
525
|
+
__props__.__dict__["owner_user_group_id"] = owner_user_group_id
|
|
449
526
|
__props__.__dict__["partitions"] = partitions
|
|
450
527
|
__props__.__dict__["project"] = project
|
|
451
528
|
__props__.__dict__["replication"] = replication
|
|
452
529
|
__props__.__dict__["service_name"] = service_name
|
|
453
530
|
__props__.__dict__["tags"] = tags
|
|
454
531
|
__props__.__dict__["termination_protection"] = termination_protection
|
|
532
|
+
__props__.__dict__["topic_description"] = topic_description
|
|
455
533
|
__props__.__dict__["topic_name"] = topic_name
|
|
456
534
|
return KafkaTopic(resource_name, opts=opts, __props__=__props__)
|
|
457
535
|
|
|
@@ -463,6 +541,14 @@ class KafkaTopic(pulumi.CustomResource):
|
|
|
463
541
|
"""
|
|
464
542
|
return pulumi.get(self, "config")
|
|
465
543
|
|
|
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
|
+
|
|
466
552
|
@property
|
|
467
553
|
@pulumi.getter
|
|
468
554
|
def partitions(self) -> pulumi.Output[int]:
|
|
@@ -508,6 +594,14 @@ class KafkaTopic(pulumi.CustomResource):
|
|
|
508
594
|
def termination_protection(self) -> pulumi.Output[Optional[bool]]:
|
|
509
595
|
return pulumi.get(self, "termination_protection")
|
|
510
596
|
|
|
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
|
+
|
|
511
605
|
@property
|
|
512
606
|
@pulumi.getter(name="topicName")
|
|
513
607
|
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 seen 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 seen 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 seen 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 seen 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 seen 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 seen 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 seen 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 seen 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: M3DB server
|
|
43
|
+
:param pulumi.Input['M3DbM3dbArgs'] m3db: Values provided by the M3DB server.
|
|
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 seen 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
|
-
M3DB server
|
|
164
|
+
Values provided by the M3DB server.
|
|
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: M3DB server
|
|
322
|
+
:param pulumi.Input['M3DbM3dbArgs'] m3db: Values provided by the M3DB server.
|
|
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 seen 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
|
-
M3DB server
|
|
504
|
+
Values provided by the M3DB server.
|
|
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 seen 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
|
+
Creates and manages an [Aiven for M3DB](https://aiven.io/docs/products/m3db) service.
|
|
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
|
+
example_m3db = aiven.M3Db("example_m3db",
|
|
773
|
+
project=example_project["project"],
|
|
774
774
|
cloud_name="google-europe-west1",
|
|
775
775
|
plan="business-8",
|
|
776
|
-
service_name="
|
|
776
|
+
service_name="example-m3db-service",
|
|
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": "example-namespace",
|
|
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 example_m3db 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: M3DB server
|
|
799
|
+
:param pulumi.Input[Union['M3DbM3dbArgs', 'M3DbM3dbArgsDict']] m3db: Values provided by the M3DB server.
|
|
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 seen 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
|
+
Creates and manages an [Aiven for M3DB](https://aiven.io/docs/products/m3db) service.
|
|
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
|
+
example_m3db = aiven.M3Db("example_m3db",
|
|
829
|
+
project=example_project["project"],
|
|
830
830
|
cloud_name="google-europe-west1",
|
|
831
831
|
plan="business-8",
|
|
832
|
-
service_name="
|
|
832
|
+
service_name="example-m3db-service",
|
|
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": "example-namespace",
|
|
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 example_m3db 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: M3DB server
|
|
979
|
+
:param pulumi.Input[Union['M3DbM3dbArgs', 'M3DbM3dbArgsDict']] m3db: Values provided by the M3DB server.
|
|
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 seen 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
|
-
M3DB server
|
|
1103
|
+
Values provided by the M3DB server.
|
|
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 seen from the [Aiven pricing page](https://aiven.io/pricing).
|
|
1136
1136
|
"""
|
|
1137
1137
|
return pulumi.get(self, "plan")
|
|
1138
1138
|
|