pulumi-aiven 6.33.0a1738213611__py3-none-any.whl → 6.34.0a1738300020__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 +27 -0
- pulumi_aiven/_inputs.py +677 -21
- pulumi_aiven/account_team_project.py +7 -7
- pulumi_aiven/connection_pool.py +7 -7
- pulumi_aiven/flink_application.py +2 -2
- pulumi_aiven/flink_application_deployment.py +2 -2
- pulumi_aiven/flink_jar_application.py +506 -0
- pulumi_aiven/flink_jar_application_deployment.py +808 -0
- pulumi_aiven/flink_jar_application_version.py +537 -0
- pulumi_aiven/get_account_team_project.py +1 -1
- pulumi_aiven/get_connection_pool.py +1 -1
- pulumi_aiven/get_kafka_mirror_maker.py +6 -6
- pulumi_aiven/get_mirror_maker_replication_flow.py +13 -13
- pulumi_aiven/get_mysql_user.py +1 -1
- pulumi_aiven/get_open_search_acl_rule.py +3 -3
- pulumi_aiven/get_project_user.py +1 -1
- pulumi_aiven/get_service_component.py +3 -3
- pulumi_aiven/get_service_integration_endpoint.py +1 -1
- pulumi_aiven/kafka_mirror_maker.py +10 -10
- pulumi_aiven/kafka_native_acl.py +7 -7
- pulumi_aiven/m3_db.py +14 -2
- pulumi_aiven/m3db_user.py +14 -2
- pulumi_aiven/mirror_maker_replication_flow.py +59 -59
- pulumi_aiven/mysql_user.py +7 -7
- pulumi_aiven/open_search_acl_rule.py +7 -7
- pulumi_aiven/organization_application_user_token.py +7 -7
- pulumi_aiven/organization_group_project.py +7 -7
- pulumi_aiven/organization_permission.py +7 -7
- pulumi_aiven/outputs.py +536 -26
- pulumi_aiven/project_user.py +7 -7
- pulumi_aiven/pulumi-plugin.json +1 -1
- pulumi_aiven/redis.py +18 -2
- pulumi_aiven/redis_user.py +18 -2
- pulumi_aiven/service_integration_endpoint.py +7 -7
- {pulumi_aiven-6.33.0a1738213611.dist-info → pulumi_aiven-6.34.0a1738300020.dist-info}/METADATA +1 -1
- {pulumi_aiven-6.33.0a1738213611.dist-info → pulumi_aiven-6.34.0a1738300020.dist-info}/RECORD +38 -35
- {pulumi_aiven-6.33.0a1738213611.dist-info → pulumi_aiven-6.34.0a1738300020.dist-info}/WHEEL +0 -0
- {pulumi_aiven-6.33.0a1738213611.dist-info → pulumi_aiven-6.34.0a1738300020.dist-info}/top_level.txt +0 -0
|
@@ -37,22 +37,22 @@ class MirrorMakerReplicationFlowArgs:
|
|
|
37
37
|
topics_blacklists: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
|
|
38
38
|
"""
|
|
39
39
|
The set of arguments for constructing a MirrorMakerReplicationFlow resource.
|
|
40
|
-
:param pulumi.Input[bool] enable:
|
|
40
|
+
:param pulumi.Input[bool] enable: Enables replication flow for a service.
|
|
41
41
|
:param pulumi.Input[str] offset_syncs_topic_location: Offset syncs topic location. The possible values are `source` and `target`.
|
|
42
42
|
: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.
|
|
43
43
|
:param pulumi.Input[str] replication_policy_class: Replication policy class. The possible values are `org.apache.kafka.connect.mirror.DefaultReplicationPolicy` and `org.apache.kafka.connect.mirror.IdentityReplicationPolicy`. The default value is `org.apache.kafka.connect.mirror.DefaultReplicationPolicy`.
|
|
44
44
|
: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.
|
|
45
45
|
:param pulumi.Input[str] source_cluster: Source cluster alias. Maximum length: `128`.
|
|
46
46
|
:param pulumi.Input[str] target_cluster: Target cluster alias. Maximum length: `128`.
|
|
47
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] config_properties_excludes: List of topic configuration properties and
|
|
48
|
-
:param pulumi.Input[bool] emit_backward_heartbeats_enabled:
|
|
49
|
-
:param pulumi.Input[bool] emit_heartbeats_enabled:
|
|
50
|
-
:param pulumi.Input[bool] exactly_once_delivery_enabled:
|
|
47
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] config_properties_excludes: List of topic configuration properties and 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"]
|
|
48
|
+
:param pulumi.Input[bool] emit_backward_heartbeats_enabled: Enables emitting heartbeats to the direction opposite to the flow, i.e. to the source cluster. The default value is `false`.
|
|
49
|
+
:param pulumi.Input[bool] emit_heartbeats_enabled: Enables emitting heartbeats to the target cluster. The default value is `false`.
|
|
50
|
+
:param pulumi.Input[bool] exactly_once_delivery_enabled: Enables exactly-once message delivery. Set this to `enabled` for new replications. The default value is `false`.
|
|
51
51
|
:param pulumi.Input[int] replication_factor: Replication factor, `>= 1`.
|
|
52
52
|
:param pulumi.Input[bool] sync_group_offsets_enabled: Sync consumer group offsets. The default value is `false`.
|
|
53
53
|
:param pulumi.Input[int] sync_group_offsets_interval_seconds: Frequency of consumer group offset sync. The default value is `1`.
|
|
54
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] topics:
|
|
55
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] topics_blacklists:
|
|
54
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] topics: The topics to include in the replica defined by a [list of regular expressions in Java format](https://aiven.io/docs/products/kafka/kafka-mirrormaker/concepts/replication-flow-topics-regex).
|
|
55
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] topics_blacklists: The topics to exclude from the replica defined by a [list of regular expressions in Java format](https://aiven.io/docs/products/kafka/kafka-mirrormaker/concepts/replication-flow-topics-regex).
|
|
56
56
|
"""
|
|
57
57
|
pulumi.set(__self__, "enable", enable)
|
|
58
58
|
pulumi.set(__self__, "offset_syncs_topic_location", offset_syncs_topic_location)
|
|
@@ -84,7 +84,7 @@ class MirrorMakerReplicationFlowArgs:
|
|
|
84
84
|
@pulumi.getter
|
|
85
85
|
def enable(self) -> pulumi.Input[bool]:
|
|
86
86
|
"""
|
|
87
|
-
|
|
87
|
+
Enables replication flow for a service.
|
|
88
88
|
"""
|
|
89
89
|
return pulumi.get(self, "enable")
|
|
90
90
|
|
|
@@ -168,7 +168,7 @@ class MirrorMakerReplicationFlowArgs:
|
|
|
168
168
|
@pulumi.getter(name="configPropertiesExcludes")
|
|
169
169
|
def config_properties_excludes(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
170
170
|
"""
|
|
171
|
-
List of topic configuration properties and
|
|
171
|
+
List of topic configuration properties and 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"]
|
|
172
172
|
"""
|
|
173
173
|
return pulumi.get(self, "config_properties_excludes")
|
|
174
174
|
|
|
@@ -180,7 +180,7 @@ class MirrorMakerReplicationFlowArgs:
|
|
|
180
180
|
@pulumi.getter(name="emitBackwardHeartbeatsEnabled")
|
|
181
181
|
def emit_backward_heartbeats_enabled(self) -> Optional[pulumi.Input[bool]]:
|
|
182
182
|
"""
|
|
183
|
-
|
|
183
|
+
Enables emitting heartbeats to the direction opposite to the flow, i.e. to the source cluster. The default value is `false`.
|
|
184
184
|
"""
|
|
185
185
|
return pulumi.get(self, "emit_backward_heartbeats_enabled")
|
|
186
186
|
|
|
@@ -192,7 +192,7 @@ class MirrorMakerReplicationFlowArgs:
|
|
|
192
192
|
@pulumi.getter(name="emitHeartbeatsEnabled")
|
|
193
193
|
def emit_heartbeats_enabled(self) -> Optional[pulumi.Input[bool]]:
|
|
194
194
|
"""
|
|
195
|
-
|
|
195
|
+
Enables emitting heartbeats to the target cluster. The default value is `false`.
|
|
196
196
|
"""
|
|
197
197
|
return pulumi.get(self, "emit_heartbeats_enabled")
|
|
198
198
|
|
|
@@ -204,7 +204,7 @@ class MirrorMakerReplicationFlowArgs:
|
|
|
204
204
|
@pulumi.getter(name="exactlyOnceDeliveryEnabled")
|
|
205
205
|
def exactly_once_delivery_enabled(self) -> Optional[pulumi.Input[bool]]:
|
|
206
206
|
"""
|
|
207
|
-
|
|
207
|
+
Enables exactly-once message delivery. Set this to `enabled` for new replications. The default value is `false`.
|
|
208
208
|
"""
|
|
209
209
|
return pulumi.get(self, "exactly_once_delivery_enabled")
|
|
210
210
|
|
|
@@ -252,7 +252,7 @@ class MirrorMakerReplicationFlowArgs:
|
|
|
252
252
|
@pulumi.getter
|
|
253
253
|
def topics(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
254
254
|
"""
|
|
255
|
-
|
|
255
|
+
The topics to include in the replica defined by a [list of regular expressions in Java format](https://aiven.io/docs/products/kafka/kafka-mirrormaker/concepts/replication-flow-topics-regex).
|
|
256
256
|
"""
|
|
257
257
|
return pulumi.get(self, "topics")
|
|
258
258
|
|
|
@@ -264,7 +264,7 @@ class MirrorMakerReplicationFlowArgs:
|
|
|
264
264
|
@pulumi.getter(name="topicsBlacklists")
|
|
265
265
|
def topics_blacklists(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
266
266
|
"""
|
|
267
|
-
|
|
267
|
+
The topics to exclude from the replica defined by a [list of regular expressions in Java format](https://aiven.io/docs/products/kafka/kafka-mirrormaker/concepts/replication-flow-topics-regex).
|
|
268
268
|
"""
|
|
269
269
|
return pulumi.get(self, "topics_blacklists")
|
|
270
270
|
|
|
@@ -294,11 +294,11 @@ class _MirrorMakerReplicationFlowState:
|
|
|
294
294
|
topics_blacklists: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
|
|
295
295
|
"""
|
|
296
296
|
Input properties used for looking up and filtering MirrorMakerReplicationFlow resources.
|
|
297
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] config_properties_excludes: List of topic configuration properties and
|
|
298
|
-
:param pulumi.Input[bool] emit_backward_heartbeats_enabled:
|
|
299
|
-
:param pulumi.Input[bool] emit_heartbeats_enabled:
|
|
300
|
-
:param pulumi.Input[bool] enable:
|
|
301
|
-
:param pulumi.Input[bool] exactly_once_delivery_enabled:
|
|
297
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] config_properties_excludes: List of topic configuration properties and 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"]
|
|
298
|
+
:param pulumi.Input[bool] emit_backward_heartbeats_enabled: Enables emitting heartbeats to the direction opposite to the flow, i.e. to the source cluster. The default value is `false`.
|
|
299
|
+
:param pulumi.Input[bool] emit_heartbeats_enabled: Enables emitting heartbeats to the target cluster. The default value is `false`.
|
|
300
|
+
:param pulumi.Input[bool] enable: Enables replication flow for a service.
|
|
301
|
+
:param pulumi.Input[bool] exactly_once_delivery_enabled: Enables exactly-once message delivery. Set this to `enabled` for new replications. The default value is `false`.
|
|
302
302
|
:param pulumi.Input[str] offset_syncs_topic_location: Offset syncs topic location. The possible values are `source` and `target`.
|
|
303
303
|
: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.
|
|
304
304
|
:param pulumi.Input[int] replication_factor: Replication factor, `>= 1`.
|
|
@@ -308,8 +308,8 @@ class _MirrorMakerReplicationFlowState:
|
|
|
308
308
|
:param pulumi.Input[bool] sync_group_offsets_enabled: Sync consumer group offsets. The default value is `false`.
|
|
309
309
|
:param pulumi.Input[int] sync_group_offsets_interval_seconds: Frequency of consumer group offset sync. The default value is `1`.
|
|
310
310
|
:param pulumi.Input[str] target_cluster: Target cluster alias. Maximum length: `128`.
|
|
311
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] topics:
|
|
312
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] topics_blacklists:
|
|
311
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] topics: The topics to include in the replica defined by a [list of regular expressions in Java format](https://aiven.io/docs/products/kafka/kafka-mirrormaker/concepts/replication-flow-topics-regex).
|
|
312
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] topics_blacklists: The topics to exclude from the replica defined by a [list of regular expressions in Java format](https://aiven.io/docs/products/kafka/kafka-mirrormaker/concepts/replication-flow-topics-regex).
|
|
313
313
|
"""
|
|
314
314
|
if config_properties_excludes is not None:
|
|
315
315
|
pulumi.set(__self__, "config_properties_excludes", config_properties_excludes)
|
|
@@ -348,7 +348,7 @@ class _MirrorMakerReplicationFlowState:
|
|
|
348
348
|
@pulumi.getter(name="configPropertiesExcludes")
|
|
349
349
|
def config_properties_excludes(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
350
350
|
"""
|
|
351
|
-
List of topic configuration properties and
|
|
351
|
+
List of topic configuration properties and 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"]
|
|
352
352
|
"""
|
|
353
353
|
return pulumi.get(self, "config_properties_excludes")
|
|
354
354
|
|
|
@@ -360,7 +360,7 @@ class _MirrorMakerReplicationFlowState:
|
|
|
360
360
|
@pulumi.getter(name="emitBackwardHeartbeatsEnabled")
|
|
361
361
|
def emit_backward_heartbeats_enabled(self) -> Optional[pulumi.Input[bool]]:
|
|
362
362
|
"""
|
|
363
|
-
|
|
363
|
+
Enables emitting heartbeats to the direction opposite to the flow, i.e. to the source cluster. The default value is `false`.
|
|
364
364
|
"""
|
|
365
365
|
return pulumi.get(self, "emit_backward_heartbeats_enabled")
|
|
366
366
|
|
|
@@ -372,7 +372,7 @@ class _MirrorMakerReplicationFlowState:
|
|
|
372
372
|
@pulumi.getter(name="emitHeartbeatsEnabled")
|
|
373
373
|
def emit_heartbeats_enabled(self) -> Optional[pulumi.Input[bool]]:
|
|
374
374
|
"""
|
|
375
|
-
|
|
375
|
+
Enables emitting heartbeats to the target cluster. The default value is `false`.
|
|
376
376
|
"""
|
|
377
377
|
return pulumi.get(self, "emit_heartbeats_enabled")
|
|
378
378
|
|
|
@@ -384,7 +384,7 @@ class _MirrorMakerReplicationFlowState:
|
|
|
384
384
|
@pulumi.getter
|
|
385
385
|
def enable(self) -> Optional[pulumi.Input[bool]]:
|
|
386
386
|
"""
|
|
387
|
-
|
|
387
|
+
Enables replication flow for a service.
|
|
388
388
|
"""
|
|
389
389
|
return pulumi.get(self, "enable")
|
|
390
390
|
|
|
@@ -396,7 +396,7 @@ class _MirrorMakerReplicationFlowState:
|
|
|
396
396
|
@pulumi.getter(name="exactlyOnceDeliveryEnabled")
|
|
397
397
|
def exactly_once_delivery_enabled(self) -> Optional[pulumi.Input[bool]]:
|
|
398
398
|
"""
|
|
399
|
-
|
|
399
|
+
Enables exactly-once message delivery. Set this to `enabled` for new replications. The default value is `false`.
|
|
400
400
|
"""
|
|
401
401
|
return pulumi.get(self, "exactly_once_delivery_enabled")
|
|
402
402
|
|
|
@@ -516,7 +516,7 @@ class _MirrorMakerReplicationFlowState:
|
|
|
516
516
|
@pulumi.getter
|
|
517
517
|
def topics(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
518
518
|
"""
|
|
519
|
-
|
|
519
|
+
The topics to include in the replica defined by a [list of regular expressions in Java format](https://aiven.io/docs/products/kafka/kafka-mirrormaker/concepts/replication-flow-topics-regex).
|
|
520
520
|
"""
|
|
521
521
|
return pulumi.get(self, "topics")
|
|
522
522
|
|
|
@@ -528,7 +528,7 @@ class _MirrorMakerReplicationFlowState:
|
|
|
528
528
|
@pulumi.getter(name="topicsBlacklists")
|
|
529
529
|
def topics_blacklists(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
530
530
|
"""
|
|
531
|
-
|
|
531
|
+
The topics to exclude from the replica defined by a [list of regular expressions in Java format](https://aiven.io/docs/products/kafka/kafka-mirrormaker/concepts/replication-flow-topics-regex).
|
|
532
532
|
"""
|
|
533
533
|
return pulumi.get(self, "topics_blacklists")
|
|
534
534
|
|
|
@@ -560,7 +560,7 @@ class MirrorMakerReplicationFlow(pulumi.CustomResource):
|
|
|
560
560
|
topics_blacklists: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
561
561
|
__props__=None):
|
|
562
562
|
"""
|
|
563
|
-
|
|
563
|
+
Creates and manages an [Aiven for Apache Kafka® MirrorMaker 2](https://aiven.io/docs/products/kafka/kafka-mirrormaker) replication flow.
|
|
564
564
|
|
|
565
565
|
## Example Usage
|
|
566
566
|
|
|
@@ -568,9 +568,9 @@ class MirrorMakerReplicationFlow(pulumi.CustomResource):
|
|
|
568
568
|
import pulumi
|
|
569
569
|
import pulumi_aiven as aiven
|
|
570
570
|
|
|
571
|
-
|
|
572
|
-
project=
|
|
573
|
-
service_name=
|
|
571
|
+
example_replication_flow = aiven.MirrorMakerReplicationFlow("example_replication_flow",
|
|
572
|
+
project=example_project["project"],
|
|
573
|
+
service_name=example_kafka["serviceName"],
|
|
574
574
|
source_cluster=source["serviceName"],
|
|
575
575
|
target_cluster=target["serviceName"],
|
|
576
576
|
enable=True,
|
|
@@ -593,16 +593,16 @@ class MirrorMakerReplicationFlow(pulumi.CustomResource):
|
|
|
593
593
|
## Import
|
|
594
594
|
|
|
595
595
|
```sh
|
|
596
|
-
$ pulumi import aiven:index/mirrorMakerReplicationFlow:MirrorMakerReplicationFlow
|
|
596
|
+
$ pulumi import aiven:index/mirrorMakerReplicationFlow:MirrorMakerReplicationFlow example_replication_flow PROJECT/SERVICE_NAME/SOURCE_CLUSTER/TARGET_CLUSTER
|
|
597
597
|
```
|
|
598
598
|
|
|
599
599
|
:param str resource_name: The name of the resource.
|
|
600
600
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
601
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] config_properties_excludes: List of topic configuration properties and
|
|
602
|
-
:param pulumi.Input[bool] emit_backward_heartbeats_enabled:
|
|
603
|
-
:param pulumi.Input[bool] emit_heartbeats_enabled:
|
|
604
|
-
:param pulumi.Input[bool] enable:
|
|
605
|
-
:param pulumi.Input[bool] exactly_once_delivery_enabled:
|
|
601
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] config_properties_excludes: List of topic configuration properties and 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"]
|
|
602
|
+
:param pulumi.Input[bool] emit_backward_heartbeats_enabled: Enables emitting heartbeats to the direction opposite to the flow, i.e. to the source cluster. The default value is `false`.
|
|
603
|
+
:param pulumi.Input[bool] emit_heartbeats_enabled: Enables emitting heartbeats to the target cluster. The default value is `false`.
|
|
604
|
+
:param pulumi.Input[bool] enable: Enables replication flow for a service.
|
|
605
|
+
:param pulumi.Input[bool] exactly_once_delivery_enabled: Enables exactly-once message delivery. Set this to `enabled` for new replications. The default value is `false`.
|
|
606
606
|
:param pulumi.Input[str] offset_syncs_topic_location: Offset syncs topic location. The possible values are `source` and `target`.
|
|
607
607
|
: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.
|
|
608
608
|
:param pulumi.Input[int] replication_factor: Replication factor, `>= 1`.
|
|
@@ -612,8 +612,8 @@ class MirrorMakerReplicationFlow(pulumi.CustomResource):
|
|
|
612
612
|
:param pulumi.Input[bool] sync_group_offsets_enabled: Sync consumer group offsets. The default value is `false`.
|
|
613
613
|
:param pulumi.Input[int] sync_group_offsets_interval_seconds: Frequency of consumer group offset sync. The default value is `1`.
|
|
614
614
|
:param pulumi.Input[str] target_cluster: Target cluster alias. Maximum length: `128`.
|
|
615
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] topics:
|
|
616
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] topics_blacklists:
|
|
615
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] topics: The topics to include in the replica defined by a [list of regular expressions in Java format](https://aiven.io/docs/products/kafka/kafka-mirrormaker/concepts/replication-flow-topics-regex).
|
|
616
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] topics_blacklists: The topics to exclude from the replica defined by a [list of regular expressions in Java format](https://aiven.io/docs/products/kafka/kafka-mirrormaker/concepts/replication-flow-topics-regex).
|
|
617
617
|
"""
|
|
618
618
|
...
|
|
619
619
|
@overload
|
|
@@ -622,7 +622,7 @@ class MirrorMakerReplicationFlow(pulumi.CustomResource):
|
|
|
622
622
|
args: MirrorMakerReplicationFlowArgs,
|
|
623
623
|
opts: Optional[pulumi.ResourceOptions] = None):
|
|
624
624
|
"""
|
|
625
|
-
|
|
625
|
+
Creates and manages an [Aiven for Apache Kafka® MirrorMaker 2](https://aiven.io/docs/products/kafka/kafka-mirrormaker) replication flow.
|
|
626
626
|
|
|
627
627
|
## Example Usage
|
|
628
628
|
|
|
@@ -630,9 +630,9 @@ class MirrorMakerReplicationFlow(pulumi.CustomResource):
|
|
|
630
630
|
import pulumi
|
|
631
631
|
import pulumi_aiven as aiven
|
|
632
632
|
|
|
633
|
-
|
|
634
|
-
project=
|
|
635
|
-
service_name=
|
|
633
|
+
example_replication_flow = aiven.MirrorMakerReplicationFlow("example_replication_flow",
|
|
634
|
+
project=example_project["project"],
|
|
635
|
+
service_name=example_kafka["serviceName"],
|
|
636
636
|
source_cluster=source["serviceName"],
|
|
637
637
|
target_cluster=target["serviceName"],
|
|
638
638
|
enable=True,
|
|
@@ -655,7 +655,7 @@ class MirrorMakerReplicationFlow(pulumi.CustomResource):
|
|
|
655
655
|
## Import
|
|
656
656
|
|
|
657
657
|
```sh
|
|
658
|
-
$ pulumi import aiven:index/mirrorMakerReplicationFlow:MirrorMakerReplicationFlow
|
|
658
|
+
$ pulumi import aiven:index/mirrorMakerReplicationFlow:MirrorMakerReplicationFlow example_replication_flow PROJECT/SERVICE_NAME/SOURCE_CLUSTER/TARGET_CLUSTER
|
|
659
659
|
```
|
|
660
660
|
|
|
661
661
|
:param str resource_name: The name of the resource.
|
|
@@ -761,11 +761,11 @@ class MirrorMakerReplicationFlow(pulumi.CustomResource):
|
|
|
761
761
|
:param str resource_name: The unique name of the resulting resource.
|
|
762
762
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
763
763
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
764
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] config_properties_excludes: List of topic configuration properties and
|
|
765
|
-
:param pulumi.Input[bool] emit_backward_heartbeats_enabled:
|
|
766
|
-
:param pulumi.Input[bool] emit_heartbeats_enabled:
|
|
767
|
-
:param pulumi.Input[bool] enable:
|
|
768
|
-
:param pulumi.Input[bool] exactly_once_delivery_enabled:
|
|
764
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] config_properties_excludes: List of topic configuration properties and 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"]
|
|
765
|
+
:param pulumi.Input[bool] emit_backward_heartbeats_enabled: Enables emitting heartbeats to the direction opposite to the flow, i.e. to the source cluster. The default value is `false`.
|
|
766
|
+
:param pulumi.Input[bool] emit_heartbeats_enabled: Enables emitting heartbeats to the target cluster. The default value is `false`.
|
|
767
|
+
:param pulumi.Input[bool] enable: Enables replication flow for a service.
|
|
768
|
+
:param pulumi.Input[bool] exactly_once_delivery_enabled: Enables exactly-once message delivery. Set this to `enabled` for new replications. The default value is `false`.
|
|
769
769
|
:param pulumi.Input[str] offset_syncs_topic_location: Offset syncs topic location. The possible values are `source` and `target`.
|
|
770
770
|
: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.
|
|
771
771
|
:param pulumi.Input[int] replication_factor: Replication factor, `>= 1`.
|
|
@@ -775,8 +775,8 @@ class MirrorMakerReplicationFlow(pulumi.CustomResource):
|
|
|
775
775
|
:param pulumi.Input[bool] sync_group_offsets_enabled: Sync consumer group offsets. The default value is `false`.
|
|
776
776
|
:param pulumi.Input[int] sync_group_offsets_interval_seconds: Frequency of consumer group offset sync. The default value is `1`.
|
|
777
777
|
:param pulumi.Input[str] target_cluster: Target cluster alias. Maximum length: `128`.
|
|
778
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] topics:
|
|
779
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] topics_blacklists:
|
|
778
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] topics: The topics to include in the replica defined by a [list of regular expressions in Java format](https://aiven.io/docs/products/kafka/kafka-mirrormaker/concepts/replication-flow-topics-regex).
|
|
779
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] topics_blacklists: The topics to exclude from the replica defined by a [list of regular expressions in Java format](https://aiven.io/docs/products/kafka/kafka-mirrormaker/concepts/replication-flow-topics-regex).
|
|
780
780
|
"""
|
|
781
781
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
782
782
|
|
|
@@ -804,7 +804,7 @@ class MirrorMakerReplicationFlow(pulumi.CustomResource):
|
|
|
804
804
|
@pulumi.getter(name="configPropertiesExcludes")
|
|
805
805
|
def config_properties_excludes(self) -> pulumi.Output[Optional[Sequence[str]]]:
|
|
806
806
|
"""
|
|
807
|
-
List of topic configuration properties and
|
|
807
|
+
List of topic configuration properties and 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"]
|
|
808
808
|
"""
|
|
809
809
|
return pulumi.get(self, "config_properties_excludes")
|
|
810
810
|
|
|
@@ -812,7 +812,7 @@ class MirrorMakerReplicationFlow(pulumi.CustomResource):
|
|
|
812
812
|
@pulumi.getter(name="emitBackwardHeartbeatsEnabled")
|
|
813
813
|
def emit_backward_heartbeats_enabled(self) -> pulumi.Output[Optional[bool]]:
|
|
814
814
|
"""
|
|
815
|
-
|
|
815
|
+
Enables emitting heartbeats to the direction opposite to the flow, i.e. to the source cluster. The default value is `false`.
|
|
816
816
|
"""
|
|
817
817
|
return pulumi.get(self, "emit_backward_heartbeats_enabled")
|
|
818
818
|
|
|
@@ -820,7 +820,7 @@ class MirrorMakerReplicationFlow(pulumi.CustomResource):
|
|
|
820
820
|
@pulumi.getter(name="emitHeartbeatsEnabled")
|
|
821
821
|
def emit_heartbeats_enabled(self) -> pulumi.Output[Optional[bool]]:
|
|
822
822
|
"""
|
|
823
|
-
|
|
823
|
+
Enables emitting heartbeats to the target cluster. The default value is `false`.
|
|
824
824
|
"""
|
|
825
825
|
return pulumi.get(self, "emit_heartbeats_enabled")
|
|
826
826
|
|
|
@@ -828,7 +828,7 @@ class MirrorMakerReplicationFlow(pulumi.CustomResource):
|
|
|
828
828
|
@pulumi.getter
|
|
829
829
|
def enable(self) -> pulumi.Output[bool]:
|
|
830
830
|
"""
|
|
831
|
-
|
|
831
|
+
Enables replication flow for a service.
|
|
832
832
|
"""
|
|
833
833
|
return pulumi.get(self, "enable")
|
|
834
834
|
|
|
@@ -836,7 +836,7 @@ class MirrorMakerReplicationFlow(pulumi.CustomResource):
|
|
|
836
836
|
@pulumi.getter(name="exactlyOnceDeliveryEnabled")
|
|
837
837
|
def exactly_once_delivery_enabled(self) -> pulumi.Output[Optional[bool]]:
|
|
838
838
|
"""
|
|
839
|
-
|
|
839
|
+
Enables exactly-once message delivery. Set this to `enabled` for new replications. The default value is `false`.
|
|
840
840
|
"""
|
|
841
841
|
return pulumi.get(self, "exactly_once_delivery_enabled")
|
|
842
842
|
|
|
@@ -916,7 +916,7 @@ class MirrorMakerReplicationFlow(pulumi.CustomResource):
|
|
|
916
916
|
@pulumi.getter
|
|
917
917
|
def topics(self) -> pulumi.Output[Optional[Sequence[str]]]:
|
|
918
918
|
"""
|
|
919
|
-
|
|
919
|
+
The topics to include in the replica defined by a [list of regular expressions in Java format](https://aiven.io/docs/products/kafka/kafka-mirrormaker/concepts/replication-flow-topics-regex).
|
|
920
920
|
"""
|
|
921
921
|
return pulumi.get(self, "topics")
|
|
922
922
|
|
|
@@ -924,7 +924,7 @@ class MirrorMakerReplicationFlow(pulumi.CustomResource):
|
|
|
924
924
|
@pulumi.getter(name="topicsBlacklists")
|
|
925
925
|
def topics_blacklists(self) -> pulumi.Output[Optional[Sequence[str]]]:
|
|
926
926
|
"""
|
|
927
|
-
|
|
927
|
+
The topics to exclude from the replica defined by a [list of regular expressions in Java format](https://aiven.io/docs/products/kafka/kafka-mirrormaker/concepts/replication-flow-topics-regex).
|
|
928
928
|
"""
|
|
929
929
|
return pulumi.get(self, "topics_blacklists")
|
|
930
930
|
|
pulumi_aiven/mysql_user.py
CHANGED
|
@@ -29,7 +29,7 @@ class MysqlUserArgs:
|
|
|
29
29
|
: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.
|
|
30
30
|
: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.
|
|
31
31
|
:param pulumi.Input[str] username: The actual name of the MySQL User. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
|
|
32
|
-
:param pulumi.Input[str] authentication: Authentication details. The possible values are `
|
|
32
|
+
:param pulumi.Input[str] authentication: Authentication details. The possible values are `caching_sha2_password`, `mysql_native_password` and `null`.
|
|
33
33
|
:param pulumi.Input[str] password: The password of the MySQL User ( not applicable for all services ).
|
|
34
34
|
"""
|
|
35
35
|
pulumi.set(__self__, "project", project)
|
|
@@ -80,7 +80,7 @@ class MysqlUserArgs:
|
|
|
80
80
|
@pulumi.getter
|
|
81
81
|
def authentication(self) -> Optional[pulumi.Input[str]]:
|
|
82
82
|
"""
|
|
83
|
-
Authentication details. The possible values are `
|
|
83
|
+
Authentication details. The possible values are `caching_sha2_password`, `mysql_native_password` and `null`.
|
|
84
84
|
"""
|
|
85
85
|
return pulumi.get(self, "authentication")
|
|
86
86
|
|
|
@@ -116,7 +116,7 @@ class _MysqlUserState:
|
|
|
116
116
|
Input properties used for looking up and filtering MysqlUser resources.
|
|
117
117
|
:param pulumi.Input[str] access_cert: Access certificate for the user
|
|
118
118
|
:param pulumi.Input[str] access_key: Access certificate key for the user
|
|
119
|
-
:param pulumi.Input[str] authentication: Authentication details. The possible values are `
|
|
119
|
+
:param pulumi.Input[str] authentication: Authentication details. The possible values are `caching_sha2_password`, `mysql_native_password` and `null`.
|
|
120
120
|
:param pulumi.Input[str] password: The password of the MySQL User ( not applicable for all services ).
|
|
121
121
|
: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.
|
|
122
122
|
: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.
|
|
@@ -168,7 +168,7 @@ class _MysqlUserState:
|
|
|
168
168
|
@pulumi.getter
|
|
169
169
|
def authentication(self) -> Optional[pulumi.Input[str]]:
|
|
170
170
|
"""
|
|
171
|
-
Authentication details. The possible values are `
|
|
171
|
+
Authentication details. The possible values are `caching_sha2_password`, `mysql_native_password` and `null`.
|
|
172
172
|
"""
|
|
173
173
|
return pulumi.get(self, "authentication")
|
|
174
174
|
|
|
@@ -272,7 +272,7 @@ class MysqlUser(pulumi.CustomResource):
|
|
|
272
272
|
|
|
273
273
|
:param str resource_name: The name of the resource.
|
|
274
274
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
275
|
-
:param pulumi.Input[str] authentication: Authentication details. The possible values are `
|
|
275
|
+
:param pulumi.Input[str] authentication: Authentication details. The possible values are `caching_sha2_password`, `mysql_native_password` and `null`.
|
|
276
276
|
:param pulumi.Input[str] password: The password of the MySQL User ( not applicable for all services ).
|
|
277
277
|
: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.
|
|
278
278
|
: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.
|
|
@@ -378,7 +378,7 @@ class MysqlUser(pulumi.CustomResource):
|
|
|
378
378
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
379
379
|
:param pulumi.Input[str] access_cert: Access certificate for the user
|
|
380
380
|
:param pulumi.Input[str] access_key: Access certificate key for the user
|
|
381
|
-
:param pulumi.Input[str] authentication: Authentication details. The possible values are `
|
|
381
|
+
:param pulumi.Input[str] authentication: Authentication details. The possible values are `caching_sha2_password`, `mysql_native_password` and `null`.
|
|
382
382
|
:param pulumi.Input[str] password: The password of the MySQL User ( not applicable for all services ).
|
|
383
383
|
: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.
|
|
384
384
|
: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.
|
|
@@ -419,7 +419,7 @@ class MysqlUser(pulumi.CustomResource):
|
|
|
419
419
|
@pulumi.getter
|
|
420
420
|
def authentication(self) -> pulumi.Output[Optional[str]]:
|
|
421
421
|
"""
|
|
422
|
-
Authentication details. The possible values are `
|
|
422
|
+
Authentication details. The possible values are `caching_sha2_password`, `mysql_native_password` and `null`.
|
|
423
423
|
"""
|
|
424
424
|
return pulumi.get(self, "authentication")
|
|
425
425
|
|
|
@@ -27,7 +27,7 @@ class OpenSearchAclRuleArgs:
|
|
|
27
27
|
"""
|
|
28
28
|
The set of arguments for constructing a OpenSearchAclRule resource.
|
|
29
29
|
:param pulumi.Input[str] index: The index pattern for this ACL entry. Maximum length: `249`. Changing this property forces recreation of the resource.
|
|
30
|
-
:param pulumi.Input[str] permission: The permissions for this ACL entry. The possible values are `
|
|
30
|
+
:param pulumi.Input[str] permission: The permissions for this ACL entry. The possible values are `admin`, `deny`, `read`, `readwrite` and `write`.
|
|
31
31
|
: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.
|
|
32
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.
|
|
33
33
|
:param pulumi.Input[str] username: The username for the ACL entry. Maximum length: `40`. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
|
|
@@ -54,7 +54,7 @@ class OpenSearchAclRuleArgs:
|
|
|
54
54
|
@pulumi.getter
|
|
55
55
|
def permission(self) -> pulumi.Input[str]:
|
|
56
56
|
"""
|
|
57
|
-
The permissions for this ACL entry. The possible values are `
|
|
57
|
+
The permissions for this ACL entry. The possible values are `admin`, `deny`, `read`, `readwrite` and `write`.
|
|
58
58
|
"""
|
|
59
59
|
return pulumi.get(self, "permission")
|
|
60
60
|
|
|
@@ -110,7 +110,7 @@ class _OpenSearchAclRuleState:
|
|
|
110
110
|
"""
|
|
111
111
|
Input properties used for looking up and filtering OpenSearchAclRule resources.
|
|
112
112
|
:param pulumi.Input[str] index: The index pattern for this ACL entry. Maximum length: `249`. Changing this property forces recreation of the resource.
|
|
113
|
-
:param pulumi.Input[str] permission: The permissions for this ACL entry. The possible values are `
|
|
113
|
+
:param pulumi.Input[str] permission: The permissions for this ACL entry. The possible values are `admin`, `deny`, `read`, `readwrite` and `write`.
|
|
114
114
|
: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.
|
|
115
115
|
: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.
|
|
116
116
|
:param pulumi.Input[str] username: The username for the ACL entry. Maximum length: `40`. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
|
|
@@ -142,7 +142,7 @@ class _OpenSearchAclRuleState:
|
|
|
142
142
|
@pulumi.getter
|
|
143
143
|
def permission(self) -> Optional[pulumi.Input[str]]:
|
|
144
144
|
"""
|
|
145
|
-
The permissions for this ACL entry. The possible values are `
|
|
145
|
+
The permissions for this ACL entry. The possible values are `admin`, `deny`, `read`, `readwrite` and `write`.
|
|
146
146
|
"""
|
|
147
147
|
return pulumi.get(self, "permission")
|
|
148
148
|
|
|
@@ -269,7 +269,7 @@ class OpenSearchAclRule(pulumi.CustomResource):
|
|
|
269
269
|
:param str resource_name: The name of the resource.
|
|
270
270
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
271
271
|
:param pulumi.Input[str] index: The index pattern for this ACL entry. Maximum length: `249`. Changing this property forces recreation of the resource.
|
|
272
|
-
:param pulumi.Input[str] permission: The permissions for this ACL entry. The possible values are `
|
|
272
|
+
:param pulumi.Input[str] permission: The permissions for this ACL entry. The possible values are `admin`, `deny`, `read`, `readwrite` and `write`.
|
|
273
273
|
: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.
|
|
274
274
|
: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.
|
|
275
275
|
:param pulumi.Input[str] username: The username for the ACL entry. Maximum length: `40`. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
|
|
@@ -415,7 +415,7 @@ class OpenSearchAclRule(pulumi.CustomResource):
|
|
|
415
415
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
416
416
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
417
417
|
:param pulumi.Input[str] index: The index pattern for this ACL entry. Maximum length: `249`. Changing this property forces recreation of the resource.
|
|
418
|
-
:param pulumi.Input[str] permission: The permissions for this ACL entry. The possible values are `
|
|
418
|
+
:param pulumi.Input[str] permission: The permissions for this ACL entry. The possible values are `admin`, `deny`, `read`, `readwrite` and `write`.
|
|
419
419
|
: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.
|
|
420
420
|
: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.
|
|
421
421
|
:param pulumi.Input[str] username: The username for the ACL entry. Maximum length: `40`. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
|
|
@@ -443,7 +443,7 @@ class OpenSearchAclRule(pulumi.CustomResource):
|
|
|
443
443
|
@pulumi.getter
|
|
444
444
|
def permission(self) -> pulumi.Output[str]:
|
|
445
445
|
"""
|
|
446
|
-
The permissions for this ACL entry. The possible values are `
|
|
446
|
+
The permissions for this ACL entry. The possible values are `admin`, `deny`, `read`, `readwrite` and `write`.
|
|
447
447
|
"""
|
|
448
448
|
return pulumi.get(self, "permission")
|
|
449
449
|
|
|
@@ -31,7 +31,7 @@ class OrganizationApplicationUserTokenArgs:
|
|
|
31
31
|
:param pulumi.Input[str] user_id: The ID of the application user the token is created for.
|
|
32
32
|
:param pulumi.Input[str] description: Description of the token.
|
|
33
33
|
:param pulumi.Input[bool] extend_when_used: Extends the token session duration when the token is used. Only applicable if a value is set for `max_age_seconds`.
|
|
34
|
-
:param pulumi.Input[int] max_age_seconds: The number of hours after which a token expires.
|
|
34
|
+
:param pulumi.Input[int] max_age_seconds: The number of hours after which a token expires. If not set, it never expires.
|
|
35
35
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] scopes: Limits access to specific resources by granting read or write privileges to them. For example: `billing:read`. Available scopes are: `authentication`, `billing`, `payments` for [payment methods](https://aiven.io/docs/platform/howto/list-billing), `privatelink`, `projects`, `services`, `static_ips`, and `user`.
|
|
36
36
|
"""
|
|
37
37
|
pulumi.set(__self__, "organization_id", organization_id)
|
|
@@ -97,7 +97,7 @@ class OrganizationApplicationUserTokenArgs:
|
|
|
97
97
|
@pulumi.getter(name="maxAgeSeconds")
|
|
98
98
|
def max_age_seconds(self) -> Optional[pulumi.Input[int]]:
|
|
99
99
|
"""
|
|
100
|
-
The number of hours after which a token expires.
|
|
100
|
+
The number of hours after which a token expires. If not set, it never expires.
|
|
101
101
|
"""
|
|
102
102
|
return pulumi.get(self, "max_age_seconds")
|
|
103
103
|
|
|
@@ -150,7 +150,7 @@ class _OrganizationApplicationUserTokenState:
|
|
|
150
150
|
:param pulumi.Input[str] last_used_time: Timestamp when the access token was last used.
|
|
151
151
|
:param pulumi.Input[str] last_user_agent: User agent of the last request made with this token.
|
|
152
152
|
:param pulumi.Input[str] last_user_agent_human_readable: User agent of the last request made with this token in human-readable format.
|
|
153
|
-
:param pulumi.Input[int] max_age_seconds: The number of hours after which a token expires.
|
|
153
|
+
:param pulumi.Input[int] max_age_seconds: The number of hours after which a token expires. If not set, it never expires.
|
|
154
154
|
:param pulumi.Input[str] organization_id: The ID of the organization the application user belongs to.
|
|
155
155
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] scopes: Limits access to specific resources by granting read or write privileges to them. For example: `billing:read`. Available scopes are: `authentication`, `billing`, `payments` for [payment methods](https://aiven.io/docs/platform/howto/list-billing), `privatelink`, `projects`, `services`, `static_ips`, and `user`.
|
|
156
156
|
:param pulumi.Input[str] token_prefix: Prefix of the token.
|
|
@@ -325,7 +325,7 @@ class _OrganizationApplicationUserTokenState:
|
|
|
325
325
|
@pulumi.getter(name="maxAgeSeconds")
|
|
326
326
|
def max_age_seconds(self) -> Optional[pulumi.Input[int]]:
|
|
327
327
|
"""
|
|
328
|
-
The number of hours after which a token expires.
|
|
328
|
+
The number of hours after which a token expires. If not set, it never expires.
|
|
329
329
|
"""
|
|
330
330
|
return pulumi.get(self, "max_age_seconds")
|
|
331
331
|
|
|
@@ -422,7 +422,7 @@ class OrganizationApplicationUserToken(pulumi.CustomResource):
|
|
|
422
422
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
423
423
|
:param pulumi.Input[str] description: Description of the token.
|
|
424
424
|
:param pulumi.Input[bool] extend_when_used: Extends the token session duration when the token is used. Only applicable if a value is set for `max_age_seconds`.
|
|
425
|
-
:param pulumi.Input[int] max_age_seconds: The number of hours after which a token expires.
|
|
425
|
+
:param pulumi.Input[int] max_age_seconds: The number of hours after which a token expires. If not set, it never expires.
|
|
426
426
|
:param pulumi.Input[str] organization_id: The ID of the organization the application user belongs to.
|
|
427
427
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] scopes: Limits access to specific resources by granting read or write privileges to them. For example: `billing:read`. Available scopes are: `authentication`, `billing`, `payments` for [payment methods](https://aiven.io/docs/platform/howto/list-billing), `privatelink`, `projects`, `services`, `static_ips`, and `user`.
|
|
428
428
|
:param pulumi.Input[str] user_id: The ID of the application user the token is created for.
|
|
@@ -553,7 +553,7 @@ class OrganizationApplicationUserToken(pulumi.CustomResource):
|
|
|
553
553
|
:param pulumi.Input[str] last_used_time: Timestamp when the access token was last used.
|
|
554
554
|
:param pulumi.Input[str] last_user_agent: User agent of the last request made with this token.
|
|
555
555
|
:param pulumi.Input[str] last_user_agent_human_readable: User agent of the last request made with this token in human-readable format.
|
|
556
|
-
:param pulumi.Input[int] max_age_seconds: The number of hours after which a token expires.
|
|
556
|
+
:param pulumi.Input[int] max_age_seconds: The number of hours after which a token expires. If not set, it never expires.
|
|
557
557
|
:param pulumi.Input[str] organization_id: The ID of the organization the application user belongs to.
|
|
558
558
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] scopes: Limits access to specific resources by granting read or write privileges to them. For example: `billing:read`. Available scopes are: `authentication`, `billing`, `payments` for [payment methods](https://aiven.io/docs/platform/howto/list-billing), `privatelink`, `projects`, `services`, `static_ips`, and `user`.
|
|
559
559
|
:param pulumi.Input[str] token_prefix: Prefix of the token.
|
|
@@ -673,7 +673,7 @@ class OrganizationApplicationUserToken(pulumi.CustomResource):
|
|
|
673
673
|
@pulumi.getter(name="maxAgeSeconds")
|
|
674
674
|
def max_age_seconds(self) -> pulumi.Output[Optional[int]]:
|
|
675
675
|
"""
|
|
676
|
-
The number of hours after which a token expires.
|
|
676
|
+
The number of hours after which a token expires. If not set, it never expires.
|
|
677
677
|
"""
|
|
678
678
|
return pulumi.get(self, "max_age_seconds")
|
|
679
679
|
|