pulumi-aiven 6.18.0a1717650798__py3-none-any.whl → 6.18.0a1718082812__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/get_mirror_maker_replication_flow.py +14 -1
- pulumi_aiven/mirror_maker_replication_flow.py +63 -0
- pulumi_aiven/pulumi-plugin.json +1 -1
- {pulumi_aiven-6.18.0a1717650798.dist-info → pulumi_aiven-6.18.0a1718082812.dist-info}/METADATA +1 -1
- {pulumi_aiven-6.18.0a1717650798.dist-info → pulumi_aiven-6.18.0a1718082812.dist-info}/RECORD +7 -7
- {pulumi_aiven-6.18.0a1717650798.dist-info → pulumi_aiven-6.18.0a1718082812.dist-info}/WHEEL +0 -0
- {pulumi_aiven-6.18.0a1717650798.dist-info → pulumi_aiven-6.18.0a1718082812.dist-info}/top_level.txt +0 -0
|
@@ -21,7 +21,10 @@ class GetMirrorMakerReplicationFlowResult:
|
|
|
21
21
|
"""
|
|
22
22
|
A collection of values returned by getMirrorMakerReplicationFlow.
|
|
23
23
|
"""
|
|
24
|
-
def __init__(__self__, emit_backward_heartbeats_enabled=None, emit_heartbeats_enabled=None, enable=None, id=None, offset_syncs_topic_location=None, project=None, replication_factor=None, replication_policy_class=None, service_name=None, source_cluster=None, sync_group_offsets_enabled=None, sync_group_offsets_interval_seconds=None, target_cluster=None, topics=None, topics_blacklists=None):
|
|
24
|
+
def __init__(__self__, config_properties_excludes=None, emit_backward_heartbeats_enabled=None, emit_heartbeats_enabled=None, enable=None, id=None, offset_syncs_topic_location=None, project=None, replication_factor=None, replication_policy_class=None, service_name=None, source_cluster=None, sync_group_offsets_enabled=None, sync_group_offsets_interval_seconds=None, target_cluster=None, topics=None, topics_blacklists=None):
|
|
25
|
+
if config_properties_excludes and not isinstance(config_properties_excludes, list):
|
|
26
|
+
raise TypeError("Expected argument 'config_properties_excludes' to be a list")
|
|
27
|
+
pulumi.set(__self__, "config_properties_excludes", config_properties_excludes)
|
|
25
28
|
if emit_backward_heartbeats_enabled and not isinstance(emit_backward_heartbeats_enabled, bool):
|
|
26
29
|
raise TypeError("Expected argument 'emit_backward_heartbeats_enabled' to be a bool")
|
|
27
30
|
pulumi.set(__self__, "emit_backward_heartbeats_enabled", emit_backward_heartbeats_enabled)
|
|
@@ -68,6 +71,14 @@ class GetMirrorMakerReplicationFlowResult:
|
|
|
68
71
|
raise TypeError("Expected argument 'topics_blacklists' to be a list")
|
|
69
72
|
pulumi.set(__self__, "topics_blacklists", topics_blacklists)
|
|
70
73
|
|
|
74
|
+
@property
|
|
75
|
+
@pulumi.getter(name="configPropertiesExcludes")
|
|
76
|
+
def config_properties_excludes(self) -> Sequence[str]:
|
|
77
|
+
"""
|
|
78
|
+
List of topic configuration properties and/or regular expressions to not replicate. The properties that are not replicated by default are: `follower.replication.throttled.replicas`, `leader.replication.throttled.replicas`, `message.timestamp.difference.max.ms`, `message.timestamp.type`, `unclean.leader.election.enable`, and `min.insync.replicas`. Setting this overrides the defaults. For example, to enable replication for 'min.insync.replicas' and 'unclean.leader.election.enable' set this to: ["follower\\\\.replication\\\\.throttled\\\\.replicas", "leader\\\\.replication\\\\.throttled\\\\.replicas", "message\\\\.timestamp\\\\.difference\\\\.max\\\\.ms", "message\\\\.timestamp\\\\.type"]
|
|
79
|
+
"""
|
|
80
|
+
return pulumi.get(self, "config_properties_excludes")
|
|
81
|
+
|
|
71
82
|
@property
|
|
72
83
|
@pulumi.getter(name="emitBackwardHeartbeatsEnabled")
|
|
73
84
|
def emit_backward_heartbeats_enabled(self) -> bool:
|
|
@@ -195,6 +206,7 @@ class AwaitableGetMirrorMakerReplicationFlowResult(GetMirrorMakerReplicationFlow
|
|
|
195
206
|
if False:
|
|
196
207
|
yield self
|
|
197
208
|
return GetMirrorMakerReplicationFlowResult(
|
|
209
|
+
config_properties_excludes=self.config_properties_excludes,
|
|
198
210
|
emit_backward_heartbeats_enabled=self.emit_backward_heartbeats_enabled,
|
|
199
211
|
emit_heartbeats_enabled=self.emit_heartbeats_enabled,
|
|
200
212
|
enable=self.enable,
|
|
@@ -247,6 +259,7 @@ def get_mirror_maker_replication_flow(project: Optional[str] = None,
|
|
|
247
259
|
__ret__ = pulumi.runtime.invoke('aiven:index/getMirrorMakerReplicationFlow:getMirrorMakerReplicationFlow', __args__, opts=opts, typ=GetMirrorMakerReplicationFlowResult).value
|
|
248
260
|
|
|
249
261
|
return AwaitableGetMirrorMakerReplicationFlowResult(
|
|
262
|
+
config_properties_excludes=pulumi.get(__ret__, 'config_properties_excludes'),
|
|
250
263
|
emit_backward_heartbeats_enabled=pulumi.get(__ret__, 'emit_backward_heartbeats_enabled'),
|
|
251
264
|
emit_heartbeats_enabled=pulumi.get(__ret__, 'emit_heartbeats_enabled'),
|
|
252
265
|
enable=pulumi.get(__ret__, 'enable'),
|
|
@@ -21,6 +21,7 @@ class MirrorMakerReplicationFlowArgs:
|
|
|
21
21
|
service_name: pulumi.Input[str],
|
|
22
22
|
source_cluster: pulumi.Input[str],
|
|
23
23
|
target_cluster: pulumi.Input[str],
|
|
24
|
+
config_properties_excludes: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
24
25
|
emit_backward_heartbeats_enabled: Optional[pulumi.Input[bool]] = None,
|
|
25
26
|
emit_heartbeats_enabled: Optional[pulumi.Input[bool]] = None,
|
|
26
27
|
replication_factor: Optional[pulumi.Input[int]] = None,
|
|
@@ -37,6 +38,7 @@ class MirrorMakerReplicationFlowArgs:
|
|
|
37
38
|
:param pulumi.Input[str] service_name: 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.
|
|
38
39
|
:param pulumi.Input[str] source_cluster: Source cluster alias. Maximum length: `128`.
|
|
39
40
|
:param pulumi.Input[str] target_cluster: Target cluster alias. Maximum length: `128`.
|
|
41
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] config_properties_excludes: List of topic configuration properties and/or regular expressions to not replicate. The properties that are not replicated by default are: `follower.replication.throttled.replicas`, `leader.replication.throttled.replicas`, `message.timestamp.difference.max.ms`, `message.timestamp.type`, `unclean.leader.election.enable`, and `min.insync.replicas`. Setting this overrides the defaults. For example, to enable replication for 'min.insync.replicas' and 'unclean.leader.election.enable' set this to: ["follower\\\\.replication\\\\.throttled\\\\.replicas", "leader\\\\.replication\\\\.throttled\\\\.replicas", "message\\\\.timestamp\\\\.difference\\\\.max\\\\.ms", "message\\\\.timestamp\\\\.type"]
|
|
40
42
|
:param pulumi.Input[bool] emit_backward_heartbeats_enabled: Whether to emit heartbeats to the direction opposite to the flow, i.e. to the source cluster. The default value is `false`.
|
|
41
43
|
:param pulumi.Input[bool] emit_heartbeats_enabled: Whether to emit heartbeats to the target cluster. The default value is `false`.
|
|
42
44
|
:param pulumi.Input[int] replication_factor: Replication factor, `>= 1`.
|
|
@@ -52,6 +54,8 @@ class MirrorMakerReplicationFlowArgs:
|
|
|
52
54
|
pulumi.set(__self__, "service_name", service_name)
|
|
53
55
|
pulumi.set(__self__, "source_cluster", source_cluster)
|
|
54
56
|
pulumi.set(__self__, "target_cluster", target_cluster)
|
|
57
|
+
if config_properties_excludes is not None:
|
|
58
|
+
pulumi.set(__self__, "config_properties_excludes", config_properties_excludes)
|
|
55
59
|
if emit_backward_heartbeats_enabled is not None:
|
|
56
60
|
pulumi.set(__self__, "emit_backward_heartbeats_enabled", emit_backward_heartbeats_enabled)
|
|
57
61
|
if emit_heartbeats_enabled is not None:
|
|
@@ -151,6 +155,18 @@ class MirrorMakerReplicationFlowArgs:
|
|
|
151
155
|
def target_cluster(self, value: pulumi.Input[str]):
|
|
152
156
|
pulumi.set(self, "target_cluster", value)
|
|
153
157
|
|
|
158
|
+
@property
|
|
159
|
+
@pulumi.getter(name="configPropertiesExcludes")
|
|
160
|
+
def config_properties_excludes(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
161
|
+
"""
|
|
162
|
+
List of topic configuration properties and/or regular expressions to not replicate. The properties that are not replicated by default are: `follower.replication.throttled.replicas`, `leader.replication.throttled.replicas`, `message.timestamp.difference.max.ms`, `message.timestamp.type`, `unclean.leader.election.enable`, and `min.insync.replicas`. Setting this overrides the defaults. For example, to enable replication for 'min.insync.replicas' and 'unclean.leader.election.enable' set this to: ["follower\\\\.replication\\\\.throttled\\\\.replicas", "leader\\\\.replication\\\\.throttled\\\\.replicas", "message\\\\.timestamp\\\\.difference\\\\.max\\\\.ms", "message\\\\.timestamp\\\\.type"]
|
|
163
|
+
"""
|
|
164
|
+
return pulumi.get(self, "config_properties_excludes")
|
|
165
|
+
|
|
166
|
+
@config_properties_excludes.setter
|
|
167
|
+
def config_properties_excludes(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
|
168
|
+
pulumi.set(self, "config_properties_excludes", value)
|
|
169
|
+
|
|
154
170
|
@property
|
|
155
171
|
@pulumi.getter(name="emitBackwardHeartbeatsEnabled")
|
|
156
172
|
def emit_backward_heartbeats_enabled(self) -> Optional[pulumi.Input[bool]]:
|
|
@@ -239,6 +255,7 @@ class MirrorMakerReplicationFlowArgs:
|
|
|
239
255
|
@pulumi.input_type
|
|
240
256
|
class _MirrorMakerReplicationFlowState:
|
|
241
257
|
def __init__(__self__, *,
|
|
258
|
+
config_properties_excludes: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
242
259
|
emit_backward_heartbeats_enabled: Optional[pulumi.Input[bool]] = None,
|
|
243
260
|
emit_heartbeats_enabled: Optional[pulumi.Input[bool]] = None,
|
|
244
261
|
enable: Optional[pulumi.Input[bool]] = None,
|
|
@@ -255,6 +272,7 @@ class _MirrorMakerReplicationFlowState:
|
|
|
255
272
|
topics_blacklists: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
|
|
256
273
|
"""
|
|
257
274
|
Input properties used for looking up and filtering MirrorMakerReplicationFlow resources.
|
|
275
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] config_properties_excludes: List of topic configuration properties and/or regular expressions to not replicate. The properties that are not replicated by default are: `follower.replication.throttled.replicas`, `leader.replication.throttled.replicas`, `message.timestamp.difference.max.ms`, `message.timestamp.type`, `unclean.leader.election.enable`, and `min.insync.replicas`. Setting this overrides the defaults. For example, to enable replication for 'min.insync.replicas' and 'unclean.leader.election.enable' set this to: ["follower\\\\.replication\\\\.throttled\\\\.replicas", "leader\\\\.replication\\\\.throttled\\\\.replicas", "message\\\\.timestamp\\\\.difference\\\\.max\\\\.ms", "message\\\\.timestamp\\\\.type"]
|
|
258
276
|
:param pulumi.Input[bool] emit_backward_heartbeats_enabled: Whether to emit heartbeats to the direction opposite to the flow, i.e. to the source cluster. The default value is `false`.
|
|
259
277
|
:param pulumi.Input[bool] emit_heartbeats_enabled: Whether to emit heartbeats to the target cluster. The default value is `false`.
|
|
260
278
|
:param pulumi.Input[bool] enable: Enable of disable replication flows for a service.
|
|
@@ -270,6 +288,8 @@ class _MirrorMakerReplicationFlowState:
|
|
|
270
288
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] topics: List of topics and/or regular expressions to replicate
|
|
271
289
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] topics_blacklists: List of topics and/or regular expressions to not replicate.
|
|
272
290
|
"""
|
|
291
|
+
if config_properties_excludes is not None:
|
|
292
|
+
pulumi.set(__self__, "config_properties_excludes", config_properties_excludes)
|
|
273
293
|
if emit_backward_heartbeats_enabled is not None:
|
|
274
294
|
pulumi.set(__self__, "emit_backward_heartbeats_enabled", emit_backward_heartbeats_enabled)
|
|
275
295
|
if emit_heartbeats_enabled is not None:
|
|
@@ -299,6 +319,18 @@ class _MirrorMakerReplicationFlowState:
|
|
|
299
319
|
if topics_blacklists is not None:
|
|
300
320
|
pulumi.set(__self__, "topics_blacklists", topics_blacklists)
|
|
301
321
|
|
|
322
|
+
@property
|
|
323
|
+
@pulumi.getter(name="configPropertiesExcludes")
|
|
324
|
+
def config_properties_excludes(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
325
|
+
"""
|
|
326
|
+
List of topic configuration properties and/or regular expressions to not replicate. The properties that are not replicated by default are: `follower.replication.throttled.replicas`, `leader.replication.throttled.replicas`, `message.timestamp.difference.max.ms`, `message.timestamp.type`, `unclean.leader.election.enable`, and `min.insync.replicas`. Setting this overrides the defaults. For example, to enable replication for 'min.insync.replicas' and 'unclean.leader.election.enable' set this to: ["follower\\\\.replication\\\\.throttled\\\\.replicas", "leader\\\\.replication\\\\.throttled\\\\.replicas", "message\\\\.timestamp\\\\.difference\\\\.max\\\\.ms", "message\\\\.timestamp\\\\.type"]
|
|
327
|
+
"""
|
|
328
|
+
return pulumi.get(self, "config_properties_excludes")
|
|
329
|
+
|
|
330
|
+
@config_properties_excludes.setter
|
|
331
|
+
def config_properties_excludes(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
|
332
|
+
pulumi.set(self, "config_properties_excludes", value)
|
|
333
|
+
|
|
302
334
|
@property
|
|
303
335
|
@pulumi.getter(name="emitBackwardHeartbeatsEnabled")
|
|
304
336
|
def emit_backward_heartbeats_enabled(self) -> Optional[pulumi.Input[bool]]:
|
|
@@ -473,6 +505,7 @@ class MirrorMakerReplicationFlow(pulumi.CustomResource):
|
|
|
473
505
|
def __init__(__self__,
|
|
474
506
|
resource_name: str,
|
|
475
507
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
508
|
+
config_properties_excludes: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
476
509
|
emit_backward_heartbeats_enabled: Optional[pulumi.Input[bool]] = None,
|
|
477
510
|
emit_heartbeats_enabled: Optional[pulumi.Input[bool]] = None,
|
|
478
511
|
enable: Optional[pulumi.Input[bool]] = None,
|
|
@@ -508,6 +541,14 @@ class MirrorMakerReplicationFlow(pulumi.CustomResource):
|
|
|
508
541
|
".*[\\\\-\\\\.]internal",
|
|
509
542
|
".*\\\\.replica",
|
|
510
543
|
"__.*",
|
|
544
|
+
],
|
|
545
|
+
config_properties_excludes=[
|
|
546
|
+
"follower\\\\.replication\\\\.throttled\\\\.replicas",
|
|
547
|
+
"leader\\\\.replication\\\\.throttled\\\\.replicas",
|
|
548
|
+
"message\\\\.timestamp\\\\.difference\\\\.max\\\\.ms",
|
|
549
|
+
"message\\\\.timestamp\\\\.type",
|
|
550
|
+
"unclean\\\\.leader\\\\.election\\\\.enable",
|
|
551
|
+
"min\\\\.insync\\\\.replicas",
|
|
511
552
|
])
|
|
512
553
|
```
|
|
513
554
|
|
|
@@ -519,6 +560,7 @@ class MirrorMakerReplicationFlow(pulumi.CustomResource):
|
|
|
519
560
|
|
|
520
561
|
:param str resource_name: The name of the resource.
|
|
521
562
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
563
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] config_properties_excludes: List of topic configuration properties and/or regular expressions to not replicate. The properties that are not replicated by default are: `follower.replication.throttled.replicas`, `leader.replication.throttled.replicas`, `message.timestamp.difference.max.ms`, `message.timestamp.type`, `unclean.leader.election.enable`, and `min.insync.replicas`. Setting this overrides the defaults. For example, to enable replication for 'min.insync.replicas' and 'unclean.leader.election.enable' set this to: ["follower\\\\.replication\\\\.throttled\\\\.replicas", "leader\\\\.replication\\\\.throttled\\\\.replicas", "message\\\\.timestamp\\\\.difference\\\\.max\\\\.ms", "message\\\\.timestamp\\\\.type"]
|
|
522
564
|
:param pulumi.Input[bool] emit_backward_heartbeats_enabled: Whether to emit heartbeats to the direction opposite to the flow, i.e. to the source cluster. The default value is `false`.
|
|
523
565
|
:param pulumi.Input[bool] emit_heartbeats_enabled: Whether to emit heartbeats to the target cluster. The default value is `false`.
|
|
524
566
|
:param pulumi.Input[bool] enable: Enable of disable replication flows for a service.
|
|
@@ -560,6 +602,14 @@ class MirrorMakerReplicationFlow(pulumi.CustomResource):
|
|
|
560
602
|
".*[\\\\-\\\\.]internal",
|
|
561
603
|
".*\\\\.replica",
|
|
562
604
|
"__.*",
|
|
605
|
+
],
|
|
606
|
+
config_properties_excludes=[
|
|
607
|
+
"follower\\\\.replication\\\\.throttled\\\\.replicas",
|
|
608
|
+
"leader\\\\.replication\\\\.throttled\\\\.replicas",
|
|
609
|
+
"message\\\\.timestamp\\\\.difference\\\\.max\\\\.ms",
|
|
610
|
+
"message\\\\.timestamp\\\\.type",
|
|
611
|
+
"unclean\\\\.leader\\\\.election\\\\.enable",
|
|
612
|
+
"min\\\\.insync\\\\.replicas",
|
|
563
613
|
])
|
|
564
614
|
```
|
|
565
615
|
|
|
@@ -584,6 +634,7 @@ class MirrorMakerReplicationFlow(pulumi.CustomResource):
|
|
|
584
634
|
def _internal_init(__self__,
|
|
585
635
|
resource_name: str,
|
|
586
636
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
637
|
+
config_properties_excludes: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
587
638
|
emit_backward_heartbeats_enabled: Optional[pulumi.Input[bool]] = None,
|
|
588
639
|
emit_heartbeats_enabled: Optional[pulumi.Input[bool]] = None,
|
|
589
640
|
enable: Optional[pulumi.Input[bool]] = None,
|
|
@@ -607,6 +658,7 @@ class MirrorMakerReplicationFlow(pulumi.CustomResource):
|
|
|
607
658
|
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
|
608
659
|
__props__ = MirrorMakerReplicationFlowArgs.__new__(MirrorMakerReplicationFlowArgs)
|
|
609
660
|
|
|
661
|
+
__props__.__dict__["config_properties_excludes"] = config_properties_excludes
|
|
610
662
|
__props__.__dict__["emit_backward_heartbeats_enabled"] = emit_backward_heartbeats_enabled
|
|
611
663
|
__props__.__dict__["emit_heartbeats_enabled"] = emit_heartbeats_enabled
|
|
612
664
|
if enable is None and not opts.urn:
|
|
@@ -645,6 +697,7 @@ class MirrorMakerReplicationFlow(pulumi.CustomResource):
|
|
|
645
697
|
def get(resource_name: str,
|
|
646
698
|
id: pulumi.Input[str],
|
|
647
699
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
700
|
+
config_properties_excludes: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
648
701
|
emit_backward_heartbeats_enabled: Optional[pulumi.Input[bool]] = None,
|
|
649
702
|
emit_heartbeats_enabled: Optional[pulumi.Input[bool]] = None,
|
|
650
703
|
enable: Optional[pulumi.Input[bool]] = None,
|
|
@@ -666,6 +719,7 @@ class MirrorMakerReplicationFlow(pulumi.CustomResource):
|
|
|
666
719
|
:param str resource_name: The unique name of the resulting resource.
|
|
667
720
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
668
721
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
722
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] config_properties_excludes: List of topic configuration properties and/or regular expressions to not replicate. The properties that are not replicated by default are: `follower.replication.throttled.replicas`, `leader.replication.throttled.replicas`, `message.timestamp.difference.max.ms`, `message.timestamp.type`, `unclean.leader.election.enable`, and `min.insync.replicas`. Setting this overrides the defaults. For example, to enable replication for 'min.insync.replicas' and 'unclean.leader.election.enable' set this to: ["follower\\\\.replication\\\\.throttled\\\\.replicas", "leader\\\\.replication\\\\.throttled\\\\.replicas", "message\\\\.timestamp\\\\.difference\\\\.max\\\\.ms", "message\\\\.timestamp\\\\.type"]
|
|
669
723
|
:param pulumi.Input[bool] emit_backward_heartbeats_enabled: Whether to emit heartbeats to the direction opposite to the flow, i.e. to the source cluster. The default value is `false`.
|
|
670
724
|
:param pulumi.Input[bool] emit_heartbeats_enabled: Whether to emit heartbeats to the target cluster. The default value is `false`.
|
|
671
725
|
:param pulumi.Input[bool] enable: Enable of disable replication flows for a service.
|
|
@@ -685,6 +739,7 @@ class MirrorMakerReplicationFlow(pulumi.CustomResource):
|
|
|
685
739
|
|
|
686
740
|
__props__ = _MirrorMakerReplicationFlowState.__new__(_MirrorMakerReplicationFlowState)
|
|
687
741
|
|
|
742
|
+
__props__.__dict__["config_properties_excludes"] = config_properties_excludes
|
|
688
743
|
__props__.__dict__["emit_backward_heartbeats_enabled"] = emit_backward_heartbeats_enabled
|
|
689
744
|
__props__.__dict__["emit_heartbeats_enabled"] = emit_heartbeats_enabled
|
|
690
745
|
__props__.__dict__["enable"] = enable
|
|
@@ -701,6 +756,14 @@ class MirrorMakerReplicationFlow(pulumi.CustomResource):
|
|
|
701
756
|
__props__.__dict__["topics_blacklists"] = topics_blacklists
|
|
702
757
|
return MirrorMakerReplicationFlow(resource_name, opts=opts, __props__=__props__)
|
|
703
758
|
|
|
759
|
+
@property
|
|
760
|
+
@pulumi.getter(name="configPropertiesExcludes")
|
|
761
|
+
def config_properties_excludes(self) -> pulumi.Output[Optional[Sequence[str]]]:
|
|
762
|
+
"""
|
|
763
|
+
List of topic configuration properties and/or regular expressions to not replicate. The properties that are not replicated by default are: `follower.replication.throttled.replicas`, `leader.replication.throttled.replicas`, `message.timestamp.difference.max.ms`, `message.timestamp.type`, `unclean.leader.election.enable`, and `min.insync.replicas`. Setting this overrides the defaults. For example, to enable replication for 'min.insync.replicas' and 'unclean.leader.election.enable' set this to: ["follower\\\\.replication\\\\.throttled\\\\.replicas", "leader\\\\.replication\\\\.throttled\\\\.replicas", "message\\\\.timestamp\\\\.difference\\\\.max\\\\.ms", "message\\\\.timestamp\\\\.type"]
|
|
764
|
+
"""
|
|
765
|
+
return pulumi.get(self, "config_properties_excludes")
|
|
766
|
+
|
|
704
767
|
@property
|
|
705
768
|
@pulumi.getter(name="emitBackwardHeartbeatsEnabled")
|
|
706
769
|
def emit_backward_heartbeats_enabled(self) -> pulumi.Output[Optional[bool]]:
|
pulumi_aiven/pulumi-plugin.json
CHANGED
{pulumi_aiven-6.18.0a1717650798.dist-info → pulumi_aiven-6.18.0a1718082812.dist-info}/RECORD
RENAMED
|
@@ -68,7 +68,7 @@ pulumi_aiven/get_kafka_user.py,sha256=clXblAYcGcQO-HhXEE7zacXmo2aK_LLt2E582LKwYY
|
|
|
68
68
|
pulumi_aiven/get_m3_aggregator.py,sha256=TwSZFJeScxrjeRp0okfJA7UwlI08Er0dTioka8bSKAE,22765
|
|
69
69
|
pulumi_aiven/get_m3_db.py,sha256=GD-w-6IaVGYvOtIeiT4f1RhKgm7MpAtVtI0DJ3vcu3E,22272
|
|
70
70
|
pulumi_aiven/get_m3db_user.py,sha256=AX7fioJ-ErVg_qk-kDWlQurD8q5MffNLLhhttmomXac,6865
|
|
71
|
-
pulumi_aiven/get_mirror_maker_replication_flow.py,sha256=
|
|
71
|
+
pulumi_aiven/get_mirror_maker_replication_flow.py,sha256=yMdNw1xcqg0Bie2rR6W21dEGpOQhogwuLtHt7k3jFas,15742
|
|
72
72
|
pulumi_aiven/get_my_sql.py,sha256=RkFkcZDfrWZgiUVzeFfoZwnOZ1EJ3Sc18aHTpxyxqrc,22356
|
|
73
73
|
pulumi_aiven/get_mysql_database.py,sha256=1rryMxbdYRBK3ItPNYKe91eFxUZKxxvHl3LJ7m5_nrw,6647
|
|
74
74
|
pulumi_aiven/get_mysql_user.py,sha256=hSx5QNRf037dgIMg0JceSKQLLJ_M-94KsWRm4mAzUUo,8533
|
|
@@ -111,7 +111,7 @@ pulumi_aiven/kafka_user.py,sha256=EmDWeof7mZkmvaqEUXyX3Movvun9Tjzq3-zyM_qi7C0,18
|
|
|
111
111
|
pulumi_aiven/m3_aggregator.py,sha256=8Nt8WGtRuNHgi00gnh0W9rMqm-_7XvGNBuc-N2qryGg,80625
|
|
112
112
|
pulumi_aiven/m3_db.py,sha256=l1tvPA3pioMkrW7NVlExrwbIUZc_WhvCw8uu35AOpdk,79140
|
|
113
113
|
pulumi_aiven/m3db_user.py,sha256=5svsu5nO-CwdR3Cp-OHej55L19fERWCjMFe3BUi9Zbg,16224
|
|
114
|
-
pulumi_aiven/mirror_maker_replication_flow.py,sha256=
|
|
114
|
+
pulumi_aiven/mirror_maker_replication_flow.py,sha256=v-WC_KemMR7TlHOo_-ibMwP03oLvR4UQXPSHW9Q6UeI,50955
|
|
115
115
|
pulumi_aiven/my_sql.py,sha256=Yc-oZLV1IbFX8YG90POPJgZf0bUVjDZw-pRCySlGIL0,79865
|
|
116
116
|
pulumi_aiven/mysql_database.py,sha256=V-PIDNBgrVHMCko7rVqi57vvoIjL8304E2RgawjrgHE,14754
|
|
117
117
|
pulumi_aiven/mysql_user.py,sha256=oiWZ0B1KJYCSl21uB61I-hB2gdmhzGiXNXx7xqLjs8M,21065
|
|
@@ -136,7 +136,7 @@ pulumi_aiven/project.py,sha256=ArAEa2FDbKM-PkMxzPJascIcYq7BzSs5L0HPjAw7CAw,47105
|
|
|
136
136
|
pulumi_aiven/project_user.py,sha256=CAxxa2QCsyk1Apm-Mf7BZv5YeFbKbx8LxUEjtG5NUJA,13182
|
|
137
137
|
pulumi_aiven/project_vpc.py,sha256=_87HVOeC9IvAmG-fnln5tXW8Z3BdLCA8kER800tp5AE,13908
|
|
138
138
|
pulumi_aiven/provider.py,sha256=8Nv5JAKLMaDCG8iqDCiMTBS5DYK8bh5Fvv0Pl6_5LK0,4881
|
|
139
|
-
pulumi_aiven/pulumi-plugin.json,sha256=
|
|
139
|
+
pulumi_aiven/pulumi-plugin.json,sha256=QU4ULGnEhDU42VAF8NV7nZ-oaocxtIMaMkdsxP0fNZ8,82
|
|
140
140
|
pulumi_aiven/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
141
141
|
pulumi_aiven/redis.py,sha256=PHSRzKj2gEd5S5DW19sFIa5AyqxadfdHC98rh-Ud7T0,79358
|
|
142
142
|
pulumi_aiven/redis_user.py,sha256=jGHT0lw0egvRigZIBlokBIE6-_c8sbjhFM2bJLoaGHg,29184
|
|
@@ -147,7 +147,7 @@ pulumi_aiven/transit_gateway_vpc_attachment.py,sha256=CCP3cTy2oJVGieXjKEXi44-MFF
|
|
|
147
147
|
pulumi_aiven/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030,285
|
|
148
148
|
pulumi_aiven/config/__init__.pyi,sha256=i0kRcMqRhHZqXZfs-7cXU-bEhaP2QAJDGjuUhIMDgqY,465
|
|
149
149
|
pulumi_aiven/config/vars.py,sha256=hQgM94csEU3YnUsOUTPc-JvxssBTpi2DURZx6QWdLUk,658
|
|
150
|
-
pulumi_aiven-6.18.
|
|
151
|
-
pulumi_aiven-6.18.
|
|
152
|
-
pulumi_aiven-6.18.
|
|
153
|
-
pulumi_aiven-6.18.
|
|
150
|
+
pulumi_aiven-6.18.0a1718082812.dist-info/METADATA,sha256=SYgjc_Y1DegSPzKrYkZmw1gNrTHqSYRBBDxZss1bqwg,2532
|
|
151
|
+
pulumi_aiven-6.18.0a1718082812.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
152
|
+
pulumi_aiven-6.18.0a1718082812.dist-info/top_level.txt,sha256=4rjz_Hec4Y2PFX4LhJ-JcnMU5H7z-y7r1yiK_xEduWU,13
|
|
153
|
+
pulumi_aiven-6.18.0a1718082812.dist-info/RECORD,,
|
|
File without changes
|
{pulumi_aiven-6.18.0a1717650798.dist-info → pulumi_aiven-6.18.0a1718082812.dist-info}/top_level.txt
RENAMED
|
File without changes
|