pulumi-aiven 6.7.2__py3-none-any.whl → 6.8.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of pulumi-aiven might be problematic. Click here for more details.
- pulumi_aiven/_inputs.py +1660 -35
- pulumi_aiven/_utilities.py +41 -0
- pulumi_aiven/account_team_member.py +7 -7
- pulumi_aiven/cassandra.py +47 -0
- pulumi_aiven/clickhouse.py +47 -0
- pulumi_aiven/config/__init__.pyi +16 -0
- pulumi_aiven/flink.py +54 -7
- pulumi_aiven/get_account_team_member.py +3 -3
- pulumi_aiven/get_cassanda.py +14 -1
- pulumi_aiven/get_cassandra.py +14 -1
- pulumi_aiven/get_clickhouse.py +14 -1
- pulumi_aiven/get_flink.py +14 -1
- pulumi_aiven/get_grafana.py +14 -1
- pulumi_aiven/get_influx_db.py +14 -1
- pulumi_aiven/get_kafka.py +14 -1
- pulumi_aiven/get_kafka_connect.py +14 -1
- pulumi_aiven/get_kafka_mirror_maker.py +14 -1
- pulumi_aiven/get_m3_aggregator.py +14 -1
- pulumi_aiven/get_m3_db.py +14 -1
- pulumi_aiven/get_mirror_maker_replication_flow.py +15 -2
- pulumi_aiven/get_my_sql.py +14 -1
- pulumi_aiven/get_open_search.py +14 -1
- pulumi_aiven/get_organization_user.py +3 -3
- pulumi_aiven/get_organization_user_group.py +14 -1
- pulumi_aiven/get_pg.py +14 -1
- pulumi_aiven/get_project.py +1 -1
- pulumi_aiven/get_project_user.py +3 -3
- pulumi_aiven/get_redis.py +14 -1
- pulumi_aiven/get_service_integration_endpoint.py +28 -2
- pulumi_aiven/grafana.py +54 -0
- pulumi_aiven/influx_db.py +47 -0
- pulumi_aiven/kafka.py +47 -0
- pulumi_aiven/kafka_connect.py +54 -0
- pulumi_aiven/kafka_mirror_maker.py +54 -0
- pulumi_aiven/m3_aggregator.py +54 -0
- pulumi_aiven/m3_db.py +54 -0
- pulumi_aiven/mirror_maker_replication_flow.py +54 -7
- pulumi_aiven/my_sql.py +54 -0
- pulumi_aiven/open_search.py +47 -0
- pulumi_aiven/organization_user.py +7 -7
- pulumi_aiven/organization_user_group.py +28 -0
- pulumi_aiven/outputs.py +2473 -64
- pulumi_aiven/pg.py +47 -0
- pulumi_aiven/project.py +7 -7
- pulumi_aiven/project_user.py +7 -7
- pulumi_aiven/redis.py +54 -0
- pulumi_aiven/service_integration_endpoint.py +101 -7
- {pulumi_aiven-6.7.2.dist-info → pulumi_aiven-6.8.0.dist-info}/METADATA +2 -2
- {pulumi_aiven-6.7.2.dist-info → pulumi_aiven-6.8.0.dist-info}/RECORD +51 -50
- {pulumi_aiven-6.7.2.dist-info → pulumi_aiven-6.8.0.dist-info}/WHEEL +1 -1
- {pulumi_aiven-6.7.2.dist-info → pulumi_aiven-6.8.0.dist-info}/top_level.txt +0 -0
|
@@ -19,6 +19,7 @@ class MirrorMakerReplicationFlowArgs:
|
|
|
19
19
|
service_name: pulumi.Input[str],
|
|
20
20
|
source_cluster: pulumi.Input[str],
|
|
21
21
|
target_cluster: pulumi.Input[str],
|
|
22
|
+
emit_backward_heartbeats_enabled: Optional[pulumi.Input[bool]] = None,
|
|
22
23
|
emit_heartbeats_enabled: Optional[pulumi.Input[bool]] = None,
|
|
23
24
|
offset_syncs_topic_location: Optional[pulumi.Input[str]] = None,
|
|
24
25
|
replication_policy_class: Optional[pulumi.Input[str]] = None,
|
|
@@ -33,7 +34,8 @@ class MirrorMakerReplicationFlowArgs:
|
|
|
33
34
|
:param pulumi.Input[str] service_name: Identifies the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. This property cannot be changed, doing so forces recreation of the resource.
|
|
34
35
|
:param pulumi.Input[str] source_cluster: Source cluster alias. Maximum length: `128`.
|
|
35
36
|
:param pulumi.Input[str] target_cluster: Target cluster alias. Maximum length: `128`.
|
|
36
|
-
:param pulumi.Input[bool]
|
|
37
|
+
: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`.
|
|
38
|
+
:param pulumi.Input[bool] emit_heartbeats_enabled: Whether to emit heartbeats to the target cluster. The default value is `false`.
|
|
37
39
|
:param pulumi.Input[str] offset_syncs_topic_location: Offset syncs topic location.
|
|
38
40
|
: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`.
|
|
39
41
|
:param pulumi.Input[bool] sync_group_offsets_enabled: Sync consumer group offsets. The default value is `false`.
|
|
@@ -46,6 +48,8 @@ class MirrorMakerReplicationFlowArgs:
|
|
|
46
48
|
pulumi.set(__self__, "service_name", service_name)
|
|
47
49
|
pulumi.set(__self__, "source_cluster", source_cluster)
|
|
48
50
|
pulumi.set(__self__, "target_cluster", target_cluster)
|
|
51
|
+
if emit_backward_heartbeats_enabled is not None:
|
|
52
|
+
pulumi.set(__self__, "emit_backward_heartbeats_enabled", emit_backward_heartbeats_enabled)
|
|
49
53
|
if emit_heartbeats_enabled is not None:
|
|
50
54
|
pulumi.set(__self__, "emit_heartbeats_enabled", emit_heartbeats_enabled)
|
|
51
55
|
if offset_syncs_topic_location is not None:
|
|
@@ -121,11 +125,23 @@ class MirrorMakerReplicationFlowArgs:
|
|
|
121
125
|
def target_cluster(self, value: pulumi.Input[str]):
|
|
122
126
|
pulumi.set(self, "target_cluster", value)
|
|
123
127
|
|
|
128
|
+
@property
|
|
129
|
+
@pulumi.getter(name="emitBackwardHeartbeatsEnabled")
|
|
130
|
+
def emit_backward_heartbeats_enabled(self) -> Optional[pulumi.Input[bool]]:
|
|
131
|
+
"""
|
|
132
|
+
Whether to emit heartbeats to the direction opposite to the flow, i.e. to the source cluster. The default value is `false`.
|
|
133
|
+
"""
|
|
134
|
+
return pulumi.get(self, "emit_backward_heartbeats_enabled")
|
|
135
|
+
|
|
136
|
+
@emit_backward_heartbeats_enabled.setter
|
|
137
|
+
def emit_backward_heartbeats_enabled(self, value: Optional[pulumi.Input[bool]]):
|
|
138
|
+
pulumi.set(self, "emit_backward_heartbeats_enabled", value)
|
|
139
|
+
|
|
124
140
|
@property
|
|
125
141
|
@pulumi.getter(name="emitHeartbeatsEnabled")
|
|
126
142
|
def emit_heartbeats_enabled(self) -> Optional[pulumi.Input[bool]]:
|
|
127
143
|
"""
|
|
128
|
-
|
|
144
|
+
Whether to emit heartbeats to the target cluster. The default value is `false`.
|
|
129
145
|
"""
|
|
130
146
|
return pulumi.get(self, "emit_heartbeats_enabled")
|
|
131
147
|
|
|
@@ -209,6 +225,7 @@ class MirrorMakerReplicationFlowArgs:
|
|
|
209
225
|
@pulumi.input_type
|
|
210
226
|
class _MirrorMakerReplicationFlowState:
|
|
211
227
|
def __init__(__self__, *,
|
|
228
|
+
emit_backward_heartbeats_enabled: Optional[pulumi.Input[bool]] = None,
|
|
212
229
|
emit_heartbeats_enabled: Optional[pulumi.Input[bool]] = None,
|
|
213
230
|
enable: Optional[pulumi.Input[bool]] = None,
|
|
214
231
|
offset_syncs_topic_location: Optional[pulumi.Input[str]] = None,
|
|
@@ -223,7 +240,8 @@ class _MirrorMakerReplicationFlowState:
|
|
|
223
240
|
topics_blacklists: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
|
|
224
241
|
"""
|
|
225
242
|
Input properties used for looking up and filtering MirrorMakerReplicationFlow resources.
|
|
226
|
-
:param pulumi.Input[bool]
|
|
243
|
+
: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`.
|
|
244
|
+
:param pulumi.Input[bool] emit_heartbeats_enabled: Whether to emit heartbeats to the target cluster. The default value is `false`.
|
|
227
245
|
:param pulumi.Input[bool] enable: Enable of disable replication flows for a service.
|
|
228
246
|
:param pulumi.Input[str] offset_syncs_topic_location: Offset syncs topic location.
|
|
229
247
|
:param pulumi.Input[str] project: Identifies the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. This property cannot be changed, doing so forces recreation of the resource.
|
|
@@ -236,6 +254,8 @@ class _MirrorMakerReplicationFlowState:
|
|
|
236
254
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] topics: List of topics and/or regular expressions to replicate
|
|
237
255
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] topics_blacklists: List of topics and/or regular expressions to not replicate.
|
|
238
256
|
"""
|
|
257
|
+
if emit_backward_heartbeats_enabled is not None:
|
|
258
|
+
pulumi.set(__self__, "emit_backward_heartbeats_enabled", emit_backward_heartbeats_enabled)
|
|
239
259
|
if emit_heartbeats_enabled is not None:
|
|
240
260
|
pulumi.set(__self__, "emit_heartbeats_enabled", emit_heartbeats_enabled)
|
|
241
261
|
if enable is not None:
|
|
@@ -261,11 +281,23 @@ class _MirrorMakerReplicationFlowState:
|
|
|
261
281
|
if topics_blacklists is not None:
|
|
262
282
|
pulumi.set(__self__, "topics_blacklists", topics_blacklists)
|
|
263
283
|
|
|
284
|
+
@property
|
|
285
|
+
@pulumi.getter(name="emitBackwardHeartbeatsEnabled")
|
|
286
|
+
def emit_backward_heartbeats_enabled(self) -> Optional[pulumi.Input[bool]]:
|
|
287
|
+
"""
|
|
288
|
+
Whether to emit heartbeats to the direction opposite to the flow, i.e. to the source cluster. The default value is `false`.
|
|
289
|
+
"""
|
|
290
|
+
return pulumi.get(self, "emit_backward_heartbeats_enabled")
|
|
291
|
+
|
|
292
|
+
@emit_backward_heartbeats_enabled.setter
|
|
293
|
+
def emit_backward_heartbeats_enabled(self, value: Optional[pulumi.Input[bool]]):
|
|
294
|
+
pulumi.set(self, "emit_backward_heartbeats_enabled", value)
|
|
295
|
+
|
|
264
296
|
@property
|
|
265
297
|
@pulumi.getter(name="emitHeartbeatsEnabled")
|
|
266
298
|
def emit_heartbeats_enabled(self) -> Optional[pulumi.Input[bool]]:
|
|
267
299
|
"""
|
|
268
|
-
|
|
300
|
+
Whether to emit heartbeats to the target cluster. The default value is `false`.
|
|
269
301
|
"""
|
|
270
302
|
return pulumi.get(self, "emit_heartbeats_enabled")
|
|
271
303
|
|
|
@@ -411,6 +443,7 @@ class MirrorMakerReplicationFlow(pulumi.CustomResource):
|
|
|
411
443
|
def __init__(__self__,
|
|
412
444
|
resource_name: str,
|
|
413
445
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
446
|
+
emit_backward_heartbeats_enabled: Optional[pulumi.Input[bool]] = None,
|
|
414
447
|
emit_heartbeats_enabled: Optional[pulumi.Input[bool]] = None,
|
|
415
448
|
enable: Optional[pulumi.Input[bool]] = None,
|
|
416
449
|
offset_syncs_topic_location: Optional[pulumi.Input[str]] = None,
|
|
@@ -455,7 +488,8 @@ class MirrorMakerReplicationFlow(pulumi.CustomResource):
|
|
|
455
488
|
|
|
456
489
|
:param str resource_name: The name of the resource.
|
|
457
490
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
458
|
-
:param pulumi.Input[bool]
|
|
491
|
+
: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`.
|
|
492
|
+
:param pulumi.Input[bool] emit_heartbeats_enabled: Whether to emit heartbeats to the target cluster. The default value is `false`.
|
|
459
493
|
:param pulumi.Input[bool] enable: Enable of disable replication flows for a service.
|
|
460
494
|
:param pulumi.Input[str] offset_syncs_topic_location: Offset syncs topic location.
|
|
461
495
|
:param pulumi.Input[str] project: Identifies the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. This property cannot be changed, doing so forces recreation of the resource.
|
|
@@ -518,6 +552,7 @@ class MirrorMakerReplicationFlow(pulumi.CustomResource):
|
|
|
518
552
|
def _internal_init(__self__,
|
|
519
553
|
resource_name: str,
|
|
520
554
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
555
|
+
emit_backward_heartbeats_enabled: Optional[pulumi.Input[bool]] = None,
|
|
521
556
|
emit_heartbeats_enabled: Optional[pulumi.Input[bool]] = None,
|
|
522
557
|
enable: Optional[pulumi.Input[bool]] = None,
|
|
523
558
|
offset_syncs_topic_location: Optional[pulumi.Input[str]] = None,
|
|
@@ -539,6 +574,7 @@ class MirrorMakerReplicationFlow(pulumi.CustomResource):
|
|
|
539
574
|
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
|
540
575
|
__props__ = MirrorMakerReplicationFlowArgs.__new__(MirrorMakerReplicationFlowArgs)
|
|
541
576
|
|
|
577
|
+
__props__.__dict__["emit_backward_heartbeats_enabled"] = emit_backward_heartbeats_enabled
|
|
542
578
|
__props__.__dict__["emit_heartbeats_enabled"] = emit_heartbeats_enabled
|
|
543
579
|
if enable is None and not opts.urn:
|
|
544
580
|
raise TypeError("Missing required property 'enable'")
|
|
@@ -571,6 +607,7 @@ class MirrorMakerReplicationFlow(pulumi.CustomResource):
|
|
|
571
607
|
def get(resource_name: str,
|
|
572
608
|
id: pulumi.Input[str],
|
|
573
609
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
610
|
+
emit_backward_heartbeats_enabled: Optional[pulumi.Input[bool]] = None,
|
|
574
611
|
emit_heartbeats_enabled: Optional[pulumi.Input[bool]] = None,
|
|
575
612
|
enable: Optional[pulumi.Input[bool]] = None,
|
|
576
613
|
offset_syncs_topic_location: Optional[pulumi.Input[str]] = None,
|
|
@@ -590,7 +627,8 @@ class MirrorMakerReplicationFlow(pulumi.CustomResource):
|
|
|
590
627
|
:param str resource_name: The unique name of the resulting resource.
|
|
591
628
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
592
629
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
593
|
-
:param pulumi.Input[bool]
|
|
630
|
+
: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`.
|
|
631
|
+
:param pulumi.Input[bool] emit_heartbeats_enabled: Whether to emit heartbeats to the target cluster. The default value is `false`.
|
|
594
632
|
:param pulumi.Input[bool] enable: Enable of disable replication flows for a service.
|
|
595
633
|
:param pulumi.Input[str] offset_syncs_topic_location: Offset syncs topic location.
|
|
596
634
|
:param pulumi.Input[str] project: Identifies the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. This property cannot be changed, doing so forces recreation of the resource.
|
|
@@ -607,6 +645,7 @@ class MirrorMakerReplicationFlow(pulumi.CustomResource):
|
|
|
607
645
|
|
|
608
646
|
__props__ = _MirrorMakerReplicationFlowState.__new__(_MirrorMakerReplicationFlowState)
|
|
609
647
|
|
|
648
|
+
__props__.__dict__["emit_backward_heartbeats_enabled"] = emit_backward_heartbeats_enabled
|
|
610
649
|
__props__.__dict__["emit_heartbeats_enabled"] = emit_heartbeats_enabled
|
|
611
650
|
__props__.__dict__["enable"] = enable
|
|
612
651
|
__props__.__dict__["offset_syncs_topic_location"] = offset_syncs_topic_location
|
|
@@ -621,11 +660,19 @@ class MirrorMakerReplicationFlow(pulumi.CustomResource):
|
|
|
621
660
|
__props__.__dict__["topics_blacklists"] = topics_blacklists
|
|
622
661
|
return MirrorMakerReplicationFlow(resource_name, opts=opts, __props__=__props__)
|
|
623
662
|
|
|
663
|
+
@property
|
|
664
|
+
@pulumi.getter(name="emitBackwardHeartbeatsEnabled")
|
|
665
|
+
def emit_backward_heartbeats_enabled(self) -> pulumi.Output[Optional[bool]]:
|
|
666
|
+
"""
|
|
667
|
+
Whether to emit heartbeats to the direction opposite to the flow, i.e. to the source cluster. The default value is `false`.
|
|
668
|
+
"""
|
|
669
|
+
return pulumi.get(self, "emit_backward_heartbeats_enabled")
|
|
670
|
+
|
|
624
671
|
@property
|
|
625
672
|
@pulumi.getter(name="emitHeartbeatsEnabled")
|
|
626
673
|
def emit_heartbeats_enabled(self) -> pulumi.Output[Optional[bool]]:
|
|
627
674
|
"""
|
|
628
|
-
|
|
675
|
+
Whether to emit heartbeats to the target cluster. The default value is `false`.
|
|
629
676
|
"""
|
|
630
677
|
return pulumi.get(self, "emit_heartbeats_enabled")
|
|
631
678
|
|
pulumi_aiven/my_sql.py
CHANGED
|
@@ -29,6 +29,7 @@ class MySqlArgs:
|
|
|
29
29
|
service_integrations: Optional[pulumi.Input[Sequence[pulumi.Input['MySqlServiceIntegrationArgs']]]] = None,
|
|
30
30
|
static_ips: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
31
31
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input['MySqlTagArgs']]]] = None,
|
|
32
|
+
tech_emails: Optional[pulumi.Input[Sequence[pulumi.Input['MySqlTechEmailArgs']]]] = None,
|
|
32
33
|
termination_protection: Optional[pulumi.Input[bool]] = None):
|
|
33
34
|
"""
|
|
34
35
|
The set of arguments for constructing a MySql resource.
|
|
@@ -63,6 +64,8 @@ class MySqlArgs:
|
|
|
63
64
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] static_ips: Static IPs that are going to be associated with this service. Please assign a value using the 'toset' function. Once a
|
|
64
65
|
static ip resource is in the 'assigned' state it cannot be unbound from the node again
|
|
65
66
|
:param pulumi.Input[Sequence[pulumi.Input['MySqlTagArgs']]] tags: Tags are key-value pairs that allow you to categorize services.
|
|
67
|
+
:param pulumi.Input[Sequence[pulumi.Input['MySqlTechEmailArgs']]] tech_emails: Defines the email addresses that will receive alerts about upcoming maintenance updates or warnings about service
|
|
68
|
+
instability.
|
|
66
69
|
:param pulumi.Input[bool] termination_protection: Prevents the service from being deleted. It is recommended to set this to `true` for all production services to prevent
|
|
67
70
|
unintentional service deletion. This does not shield against deleting databases or topics but for services with backups
|
|
68
71
|
much of the content can at least be restored from backup in case accidental deletion is done.
|
|
@@ -93,6 +96,8 @@ class MySqlArgs:
|
|
|
93
96
|
pulumi.set(__self__, "static_ips", static_ips)
|
|
94
97
|
if tags is not None:
|
|
95
98
|
pulumi.set(__self__, "tags", tags)
|
|
99
|
+
if tech_emails is not None:
|
|
100
|
+
pulumi.set(__self__, "tech_emails", tech_emails)
|
|
96
101
|
if termination_protection is not None:
|
|
97
102
|
pulumi.set(__self__, "termination_protection", termination_protection)
|
|
98
103
|
|
|
@@ -273,6 +278,19 @@ class MySqlArgs:
|
|
|
273
278
|
def tags(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['MySqlTagArgs']]]]):
|
|
274
279
|
pulumi.set(self, "tags", value)
|
|
275
280
|
|
|
281
|
+
@property
|
|
282
|
+
@pulumi.getter(name="techEmails")
|
|
283
|
+
def tech_emails(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['MySqlTechEmailArgs']]]]:
|
|
284
|
+
"""
|
|
285
|
+
Defines the email addresses that will receive alerts about upcoming maintenance updates or warnings about service
|
|
286
|
+
instability.
|
|
287
|
+
"""
|
|
288
|
+
return pulumi.get(self, "tech_emails")
|
|
289
|
+
|
|
290
|
+
@tech_emails.setter
|
|
291
|
+
def tech_emails(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['MySqlTechEmailArgs']]]]):
|
|
292
|
+
pulumi.set(self, "tech_emails", value)
|
|
293
|
+
|
|
276
294
|
@property
|
|
277
295
|
@pulumi.getter(name="terminationProtection")
|
|
278
296
|
def termination_protection(self) -> Optional[pulumi.Input[bool]]:
|
|
@@ -317,6 +335,7 @@ class _MySqlState:
|
|
|
317
335
|
state: Optional[pulumi.Input[str]] = None,
|
|
318
336
|
static_ips: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
319
337
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input['MySqlTagArgs']]]] = None,
|
|
338
|
+
tech_emails: Optional[pulumi.Input[Sequence[pulumi.Input['MySqlTechEmailArgs']]]] = None,
|
|
320
339
|
termination_protection: Optional[pulumi.Input[bool]] = None):
|
|
321
340
|
"""
|
|
322
341
|
Input properties used for looking up and filtering MySql resources.
|
|
@@ -366,6 +385,8 @@ class _MySqlState:
|
|
|
366
385
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] static_ips: Static IPs that are going to be associated with this service. Please assign a value using the 'toset' function. Once a
|
|
367
386
|
static ip resource is in the 'assigned' state it cannot be unbound from the node again
|
|
368
387
|
:param pulumi.Input[Sequence[pulumi.Input['MySqlTagArgs']]] tags: Tags are key-value pairs that allow you to categorize services.
|
|
388
|
+
:param pulumi.Input[Sequence[pulumi.Input['MySqlTechEmailArgs']]] tech_emails: Defines the email addresses that will receive alerts about upcoming maintenance updates or warnings about service
|
|
389
|
+
instability.
|
|
369
390
|
:param pulumi.Input[bool] termination_protection: Prevents the service from being deleted. It is recommended to set this to `true` for all production services to prevent
|
|
370
391
|
unintentional service deletion. This does not shield against deleting databases or topics but for services with backups
|
|
371
392
|
much of the content can at least be restored from backup in case accidental deletion is done.
|
|
@@ -425,6 +446,8 @@ class _MySqlState:
|
|
|
425
446
|
pulumi.set(__self__, "static_ips", static_ips)
|
|
426
447
|
if tags is not None:
|
|
427
448
|
pulumi.set(__self__, "tags", tags)
|
|
449
|
+
if tech_emails is not None:
|
|
450
|
+
pulumi.set(__self__, "tech_emails", tech_emails)
|
|
428
451
|
if termination_protection is not None:
|
|
429
452
|
pulumi.set(__self__, "termination_protection", termination_protection)
|
|
430
453
|
|
|
@@ -763,6 +786,19 @@ class _MySqlState:
|
|
|
763
786
|
def tags(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['MySqlTagArgs']]]]):
|
|
764
787
|
pulumi.set(self, "tags", value)
|
|
765
788
|
|
|
789
|
+
@property
|
|
790
|
+
@pulumi.getter(name="techEmails")
|
|
791
|
+
def tech_emails(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['MySqlTechEmailArgs']]]]:
|
|
792
|
+
"""
|
|
793
|
+
Defines the email addresses that will receive alerts about upcoming maintenance updates or warnings about service
|
|
794
|
+
instability.
|
|
795
|
+
"""
|
|
796
|
+
return pulumi.get(self, "tech_emails")
|
|
797
|
+
|
|
798
|
+
@tech_emails.setter
|
|
799
|
+
def tech_emails(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['MySqlTechEmailArgs']]]]):
|
|
800
|
+
pulumi.set(self, "tech_emails", value)
|
|
801
|
+
|
|
766
802
|
@property
|
|
767
803
|
@pulumi.getter(name="terminationProtection")
|
|
768
804
|
def termination_protection(self) -> Optional[pulumi.Input[bool]]:
|
|
@@ -796,6 +832,7 @@ class MySql(pulumi.CustomResource):
|
|
|
796
832
|
service_name: Optional[pulumi.Input[str]] = None,
|
|
797
833
|
static_ips: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
798
834
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['MySqlTagArgs']]]]] = None,
|
|
835
|
+
tech_emails: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['MySqlTechEmailArgs']]]]] = None,
|
|
799
836
|
termination_protection: Optional[pulumi.Input[bool]] = None,
|
|
800
837
|
__props__=None):
|
|
801
838
|
"""
|
|
@@ -865,6 +902,8 @@ class MySql(pulumi.CustomResource):
|
|
|
865
902
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] static_ips: Static IPs that are going to be associated with this service. Please assign a value using the 'toset' function. Once a
|
|
866
903
|
static ip resource is in the 'assigned' state it cannot be unbound from the node again
|
|
867
904
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['MySqlTagArgs']]]] tags: Tags are key-value pairs that allow you to categorize services.
|
|
905
|
+
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['MySqlTechEmailArgs']]]] tech_emails: Defines the email addresses that will receive alerts about upcoming maintenance updates or warnings about service
|
|
906
|
+
instability.
|
|
868
907
|
:param pulumi.Input[bool] termination_protection: Prevents the service from being deleted. It is recommended to set this to `true` for all production services to prevent
|
|
869
908
|
unintentional service deletion. This does not shield against deleting databases or topics but for services with backups
|
|
870
909
|
much of the content can at least be restored from backup in case accidental deletion is done.
|
|
@@ -937,6 +976,7 @@ class MySql(pulumi.CustomResource):
|
|
|
937
976
|
service_name: Optional[pulumi.Input[str]] = None,
|
|
938
977
|
static_ips: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
939
978
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['MySqlTagArgs']]]]] = None,
|
|
979
|
+
tech_emails: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['MySqlTechEmailArgs']]]]] = None,
|
|
940
980
|
termination_protection: Optional[pulumi.Input[bool]] = None,
|
|
941
981
|
__props__=None):
|
|
942
982
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
|
@@ -966,6 +1006,7 @@ class MySql(pulumi.CustomResource):
|
|
|
966
1006
|
__props__.__dict__["service_name"] = service_name
|
|
967
1007
|
__props__.__dict__["static_ips"] = static_ips
|
|
968
1008
|
__props__.__dict__["tags"] = tags
|
|
1009
|
+
__props__.__dict__["tech_emails"] = tech_emails
|
|
969
1010
|
__props__.__dict__["termination_protection"] = termination_protection
|
|
970
1011
|
__props__.__dict__["components"] = None
|
|
971
1012
|
__props__.__dict__["disk_space_cap"] = None
|
|
@@ -1018,6 +1059,7 @@ class MySql(pulumi.CustomResource):
|
|
|
1018
1059
|
state: Optional[pulumi.Input[str]] = None,
|
|
1019
1060
|
static_ips: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
1020
1061
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['MySqlTagArgs']]]]] = None,
|
|
1062
|
+
tech_emails: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['MySqlTechEmailArgs']]]]] = None,
|
|
1021
1063
|
termination_protection: Optional[pulumi.Input[bool]] = None) -> 'MySql':
|
|
1022
1064
|
"""
|
|
1023
1065
|
Get an existing MySql resource's state with the given name, id, and optional extra
|
|
@@ -1072,6 +1114,8 @@ class MySql(pulumi.CustomResource):
|
|
|
1072
1114
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] static_ips: Static IPs that are going to be associated with this service. Please assign a value using the 'toset' function. Once a
|
|
1073
1115
|
static ip resource is in the 'assigned' state it cannot be unbound from the node again
|
|
1074
1116
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['MySqlTagArgs']]]] tags: Tags are key-value pairs that allow you to categorize services.
|
|
1117
|
+
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['MySqlTechEmailArgs']]]] tech_emails: Defines the email addresses that will receive alerts about upcoming maintenance updates or warnings about service
|
|
1118
|
+
instability.
|
|
1075
1119
|
:param pulumi.Input[bool] termination_protection: Prevents the service from being deleted. It is recommended to set this to `true` for all production services to prevent
|
|
1076
1120
|
unintentional service deletion. This does not shield against deleting databases or topics but for services with backups
|
|
1077
1121
|
much of the content can at least be restored from backup in case accidental deletion is done.
|
|
@@ -1106,6 +1150,7 @@ class MySql(pulumi.CustomResource):
|
|
|
1106
1150
|
__props__.__dict__["state"] = state
|
|
1107
1151
|
__props__.__dict__["static_ips"] = static_ips
|
|
1108
1152
|
__props__.__dict__["tags"] = tags
|
|
1153
|
+
__props__.__dict__["tech_emails"] = tech_emails
|
|
1109
1154
|
__props__.__dict__["termination_protection"] = termination_protection
|
|
1110
1155
|
return MySql(resource_name, opts=opts, __props__=__props__)
|
|
1111
1156
|
|
|
@@ -1340,6 +1385,15 @@ class MySql(pulumi.CustomResource):
|
|
|
1340
1385
|
"""
|
|
1341
1386
|
return pulumi.get(self, "tags")
|
|
1342
1387
|
|
|
1388
|
+
@property
|
|
1389
|
+
@pulumi.getter(name="techEmails")
|
|
1390
|
+
def tech_emails(self) -> pulumi.Output[Optional[Sequence['outputs.MySqlTechEmail']]]:
|
|
1391
|
+
"""
|
|
1392
|
+
Defines the email addresses that will receive alerts about upcoming maintenance updates or warnings about service
|
|
1393
|
+
instability.
|
|
1394
|
+
"""
|
|
1395
|
+
return pulumi.get(self, "tech_emails")
|
|
1396
|
+
|
|
1343
1397
|
@property
|
|
1344
1398
|
@pulumi.getter(name="terminationProtection")
|
|
1345
1399
|
def termination_protection(self) -> pulumi.Output[Optional[bool]]:
|
pulumi_aiven/open_search.py
CHANGED
|
@@ -29,6 +29,7 @@ class OpenSearchArgs:
|
|
|
29
29
|
service_integrations: Optional[pulumi.Input[Sequence[pulumi.Input['OpenSearchServiceIntegrationArgs']]]] = None,
|
|
30
30
|
static_ips: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
31
31
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input['OpenSearchTagArgs']]]] = None,
|
|
32
|
+
tech_emails: Optional[pulumi.Input[Sequence[pulumi.Input['OpenSearchTechEmailArgs']]]] = None,
|
|
32
33
|
termination_protection: Optional[pulumi.Input[bool]] = None):
|
|
33
34
|
"""
|
|
34
35
|
The set of arguments for constructing a OpenSearch resource.
|
|
@@ -45,6 +46,7 @@ class OpenSearchArgs:
|
|
|
45
46
|
:param pulumi.Input[Sequence[pulumi.Input['OpenSearchServiceIntegrationArgs']]] service_integrations: Service integrations to specify when creating a service. Not applied after initial service creation
|
|
46
47
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] static_ips: Use static public IP addresses.
|
|
47
48
|
:param pulumi.Input[Sequence[pulumi.Input['OpenSearchTagArgs']]] tags: Tags are key-value pairs that allow you to categorize services.
|
|
49
|
+
:param pulumi.Input[Sequence[pulumi.Input['OpenSearchTechEmailArgs']]] tech_emails: Defines the email addresses that will receive alerts about upcoming maintenance updates or warnings about service instability.
|
|
48
50
|
:param pulumi.Input[bool] termination_protection: Prevents the service from being deleted. It is recommended to set this to `true` for all production services to prevent unintentional service deletion. This does not shield against deleting databases or topics but for services with backups much of the content can at least be restored from backup in case accidental deletion is done.
|
|
49
51
|
"""
|
|
50
52
|
pulumi.set(__self__, "plan", plan)
|
|
@@ -73,6 +75,8 @@ class OpenSearchArgs:
|
|
|
73
75
|
pulumi.set(__self__, "static_ips", static_ips)
|
|
74
76
|
if tags is not None:
|
|
75
77
|
pulumi.set(__self__, "tags", tags)
|
|
78
|
+
if tech_emails is not None:
|
|
79
|
+
pulumi.set(__self__, "tech_emails", tech_emails)
|
|
76
80
|
if termination_protection is not None:
|
|
77
81
|
pulumi.set(__self__, "termination_protection", termination_protection)
|
|
78
82
|
|
|
@@ -235,6 +239,18 @@ class OpenSearchArgs:
|
|
|
235
239
|
def tags(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['OpenSearchTagArgs']]]]):
|
|
236
240
|
pulumi.set(self, "tags", value)
|
|
237
241
|
|
|
242
|
+
@property
|
|
243
|
+
@pulumi.getter(name="techEmails")
|
|
244
|
+
def tech_emails(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['OpenSearchTechEmailArgs']]]]:
|
|
245
|
+
"""
|
|
246
|
+
Defines the email addresses that will receive alerts about upcoming maintenance updates or warnings about service instability.
|
|
247
|
+
"""
|
|
248
|
+
return pulumi.get(self, "tech_emails")
|
|
249
|
+
|
|
250
|
+
@tech_emails.setter
|
|
251
|
+
def tech_emails(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['OpenSearchTechEmailArgs']]]]):
|
|
252
|
+
pulumi.set(self, "tech_emails", value)
|
|
253
|
+
|
|
238
254
|
@property
|
|
239
255
|
@pulumi.getter(name="terminationProtection")
|
|
240
256
|
def termination_protection(self) -> Optional[pulumi.Input[bool]]:
|
|
@@ -277,6 +293,7 @@ class _OpenSearchState:
|
|
|
277
293
|
state: Optional[pulumi.Input[str]] = None,
|
|
278
294
|
static_ips: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
279
295
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input['OpenSearchTagArgs']]]] = None,
|
|
296
|
+
tech_emails: Optional[pulumi.Input[Sequence[pulumi.Input['OpenSearchTechEmailArgs']]]] = None,
|
|
280
297
|
termination_protection: Optional[pulumi.Input[bool]] = None):
|
|
281
298
|
"""
|
|
282
299
|
Input properties used for looking up and filtering OpenSearch resources.
|
|
@@ -306,6 +323,7 @@ class _OpenSearchState:
|
|
|
306
323
|
:param pulumi.Input[str] state: Service state. One of `POWEROFF`, `REBALANCING`, `REBUILDING` or `RUNNING`
|
|
307
324
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] static_ips: Use static public IP addresses.
|
|
308
325
|
:param pulumi.Input[Sequence[pulumi.Input['OpenSearchTagArgs']]] tags: Tags are key-value pairs that allow you to categorize services.
|
|
326
|
+
:param pulumi.Input[Sequence[pulumi.Input['OpenSearchTechEmailArgs']]] tech_emails: Defines the email addresses that will receive alerts about upcoming maintenance updates or warnings about service instability.
|
|
309
327
|
:param pulumi.Input[bool] termination_protection: Prevents the service from being deleted. It is recommended to set this to `true` for all production services to prevent unintentional service deletion. This does not shield against deleting databases or topics but for services with backups much of the content can at least be restored from backup in case accidental deletion is done.
|
|
310
328
|
"""
|
|
311
329
|
if additional_disk_space is not None:
|
|
@@ -363,6 +381,8 @@ class _OpenSearchState:
|
|
|
363
381
|
pulumi.set(__self__, "static_ips", static_ips)
|
|
364
382
|
if tags is not None:
|
|
365
383
|
pulumi.set(__self__, "tags", tags)
|
|
384
|
+
if tech_emails is not None:
|
|
385
|
+
pulumi.set(__self__, "tech_emails", tech_emails)
|
|
366
386
|
if termination_protection is not None:
|
|
367
387
|
pulumi.set(__self__, "termination_protection", termination_protection)
|
|
368
388
|
|
|
@@ -681,6 +701,18 @@ class _OpenSearchState:
|
|
|
681
701
|
def tags(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['OpenSearchTagArgs']]]]):
|
|
682
702
|
pulumi.set(self, "tags", value)
|
|
683
703
|
|
|
704
|
+
@property
|
|
705
|
+
@pulumi.getter(name="techEmails")
|
|
706
|
+
def tech_emails(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['OpenSearchTechEmailArgs']]]]:
|
|
707
|
+
"""
|
|
708
|
+
Defines the email addresses that will receive alerts about upcoming maintenance updates or warnings about service instability.
|
|
709
|
+
"""
|
|
710
|
+
return pulumi.get(self, "tech_emails")
|
|
711
|
+
|
|
712
|
+
@tech_emails.setter
|
|
713
|
+
def tech_emails(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['OpenSearchTechEmailArgs']]]]):
|
|
714
|
+
pulumi.set(self, "tech_emails", value)
|
|
715
|
+
|
|
684
716
|
@property
|
|
685
717
|
@pulumi.getter(name="terminationProtection")
|
|
686
718
|
def termination_protection(self) -> Optional[pulumi.Input[bool]]:
|
|
@@ -712,6 +744,7 @@ class OpenSearch(pulumi.CustomResource):
|
|
|
712
744
|
service_name: Optional[pulumi.Input[str]] = None,
|
|
713
745
|
static_ips: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
714
746
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['OpenSearchTagArgs']]]]] = None,
|
|
747
|
+
tech_emails: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['OpenSearchTechEmailArgs']]]]] = None,
|
|
715
748
|
termination_protection: Optional[pulumi.Input[bool]] = None,
|
|
716
749
|
__props__=None):
|
|
717
750
|
"""
|
|
@@ -764,6 +797,7 @@ class OpenSearch(pulumi.CustomResource):
|
|
|
764
797
|
: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.
|
|
765
798
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] static_ips: Use static public IP addresses.
|
|
766
799
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['OpenSearchTagArgs']]]] tags: Tags are key-value pairs that allow you to categorize services.
|
|
800
|
+
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['OpenSearchTechEmailArgs']]]] tech_emails: Defines the email addresses that will receive alerts about upcoming maintenance updates or warnings about service instability.
|
|
767
801
|
:param pulumi.Input[bool] termination_protection: Prevents the service from being deleted. It is recommended to set this to `true` for all production services to prevent unintentional service deletion. This does not shield against deleting databases or topics but for services with backups much of the content can at least be restored from backup in case accidental deletion is done.
|
|
768
802
|
"""
|
|
769
803
|
...
|
|
@@ -835,6 +869,7 @@ class OpenSearch(pulumi.CustomResource):
|
|
|
835
869
|
service_name: Optional[pulumi.Input[str]] = None,
|
|
836
870
|
static_ips: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
837
871
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['OpenSearchTagArgs']]]]] = None,
|
|
872
|
+
tech_emails: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['OpenSearchTechEmailArgs']]]]] = None,
|
|
838
873
|
termination_protection: Optional[pulumi.Input[bool]] = None,
|
|
839
874
|
__props__=None):
|
|
840
875
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
|
@@ -864,6 +899,7 @@ class OpenSearch(pulumi.CustomResource):
|
|
|
864
899
|
__props__.__dict__["service_name"] = service_name
|
|
865
900
|
__props__.__dict__["static_ips"] = static_ips
|
|
866
901
|
__props__.__dict__["tags"] = tags
|
|
902
|
+
__props__.__dict__["tech_emails"] = tech_emails
|
|
867
903
|
__props__.__dict__["termination_protection"] = termination_protection
|
|
868
904
|
__props__.__dict__["components"] = None
|
|
869
905
|
__props__.__dict__["disk_space_cap"] = None
|
|
@@ -916,6 +952,7 @@ class OpenSearch(pulumi.CustomResource):
|
|
|
916
952
|
state: Optional[pulumi.Input[str]] = None,
|
|
917
953
|
static_ips: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
918
954
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['OpenSearchTagArgs']]]]] = None,
|
|
955
|
+
tech_emails: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['OpenSearchTechEmailArgs']]]]] = None,
|
|
919
956
|
termination_protection: Optional[pulumi.Input[bool]] = None) -> 'OpenSearch':
|
|
920
957
|
"""
|
|
921
958
|
Get an existing OpenSearch resource's state with the given name, id, and optional extra
|
|
@@ -950,6 +987,7 @@ class OpenSearch(pulumi.CustomResource):
|
|
|
950
987
|
:param pulumi.Input[str] state: Service state. One of `POWEROFF`, `REBALANCING`, `REBUILDING` or `RUNNING`
|
|
951
988
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] static_ips: Use static public IP addresses.
|
|
952
989
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['OpenSearchTagArgs']]]] tags: Tags are key-value pairs that allow you to categorize services.
|
|
990
|
+
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['OpenSearchTechEmailArgs']]]] tech_emails: Defines the email addresses that will receive alerts about upcoming maintenance updates or warnings about service instability.
|
|
953
991
|
:param pulumi.Input[bool] termination_protection: Prevents the service from being deleted. It is recommended to set this to `true` for all production services to prevent unintentional service deletion. This does not shield against deleting databases or topics but for services with backups much of the content can at least be restored from backup in case accidental deletion is done.
|
|
954
992
|
"""
|
|
955
993
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
@@ -982,6 +1020,7 @@ class OpenSearch(pulumi.CustomResource):
|
|
|
982
1020
|
__props__.__dict__["state"] = state
|
|
983
1021
|
__props__.__dict__["static_ips"] = static_ips
|
|
984
1022
|
__props__.__dict__["tags"] = tags
|
|
1023
|
+
__props__.__dict__["tech_emails"] = tech_emails
|
|
985
1024
|
__props__.__dict__["termination_protection"] = termination_protection
|
|
986
1025
|
return OpenSearch(resource_name, opts=opts, __props__=__props__)
|
|
987
1026
|
|
|
@@ -1196,6 +1235,14 @@ class OpenSearch(pulumi.CustomResource):
|
|
|
1196
1235
|
"""
|
|
1197
1236
|
return pulumi.get(self, "tags")
|
|
1198
1237
|
|
|
1238
|
+
@property
|
|
1239
|
+
@pulumi.getter(name="techEmails")
|
|
1240
|
+
def tech_emails(self) -> pulumi.Output[Optional[Sequence['outputs.OpenSearchTechEmail']]]:
|
|
1241
|
+
"""
|
|
1242
|
+
Defines the email addresses that will receive alerts about upcoming maintenance updates or warnings about service instability.
|
|
1243
|
+
"""
|
|
1244
|
+
return pulumi.get(self, "tech_emails")
|
|
1245
|
+
|
|
1199
1246
|
@property
|
|
1200
1247
|
@pulumi.getter(name="terminationProtection")
|
|
1201
1248
|
def termination_protection(self) -> pulumi.Output[Optional[bool]]:
|
|
@@ -19,7 +19,7 @@ class OrganizationUserArgs:
|
|
|
19
19
|
"""
|
|
20
20
|
The set of arguments for constructing a OrganizationUser resource.
|
|
21
21
|
:param pulumi.Input[str] organization_id: The unique organization ID. This property cannot be changed, doing so forces recreation of the resource.
|
|
22
|
-
:param pulumi.Input[str] user_email: This is a user email address that first will be invited, and after accepting an invitation, they become a member of the organization. This property cannot be changed, doing so forces recreation of the resource.
|
|
22
|
+
:param pulumi.Input[str] user_email: This is a user email address that first will be invited, and after accepting an invitation, they become a member of the organization. Should be lowercase. This property cannot be changed, doing so forces recreation of the resource.
|
|
23
23
|
"""
|
|
24
24
|
pulumi.set(__self__, "organization_id", organization_id)
|
|
25
25
|
pulumi.set(__self__, "user_email", user_email)
|
|
@@ -40,7 +40,7 @@ class OrganizationUserArgs:
|
|
|
40
40
|
@pulumi.getter(name="userEmail")
|
|
41
41
|
def user_email(self) -> pulumi.Input[str]:
|
|
42
42
|
"""
|
|
43
|
-
This is a user email address that first will be invited, and after accepting an invitation, they become a member of the organization. This property cannot be changed, doing so forces recreation of the resource.
|
|
43
|
+
This is a user email address that first will be invited, and after accepting an invitation, they become a member of the organization. Should be lowercase. This property cannot be changed, doing so forces recreation of the resource.
|
|
44
44
|
"""
|
|
45
45
|
return pulumi.get(self, "user_email")
|
|
46
46
|
|
|
@@ -63,7 +63,7 @@ class _OrganizationUserState:
|
|
|
63
63
|
:param pulumi.Input[str] create_time: Time of creation
|
|
64
64
|
:param pulumi.Input[str] invited_by: The email address of the user who sent an invitation to the user.
|
|
65
65
|
:param pulumi.Input[str] organization_id: The unique organization ID. This property cannot be changed, doing so forces recreation of the resource.
|
|
66
|
-
:param pulumi.Input[str] user_email: This is a user email address that first will be invited, and after accepting an invitation, they become a member of the organization. This property cannot be changed, doing so forces recreation of the resource.
|
|
66
|
+
:param pulumi.Input[str] user_email: This is a user email address that first will be invited, and after accepting an invitation, they become a member of the organization. Should be lowercase. This property cannot be changed, doing so forces recreation of the resource.
|
|
67
67
|
"""
|
|
68
68
|
if accepted is not None:
|
|
69
69
|
pulumi.set(__self__, "accepted", accepted)
|
|
@@ -128,7 +128,7 @@ class _OrganizationUserState:
|
|
|
128
128
|
@pulumi.getter(name="userEmail")
|
|
129
129
|
def user_email(self) -> Optional[pulumi.Input[str]]:
|
|
130
130
|
"""
|
|
131
|
-
This is a user email address that first will be invited, and after accepting an invitation, they become a member of the organization. This property cannot be changed, doing so forces recreation of the resource.
|
|
131
|
+
This is a user email address that first will be invited, and after accepting an invitation, they become a member of the organization. Should be lowercase. This property cannot be changed, doing so forces recreation of the resource.
|
|
132
132
|
"""
|
|
133
133
|
return pulumi.get(self, "user_email")
|
|
134
134
|
|
|
@@ -157,7 +157,7 @@ class OrganizationUser(pulumi.CustomResource):
|
|
|
157
157
|
:param str resource_name: The name of the resource.
|
|
158
158
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
159
159
|
:param pulumi.Input[str] organization_id: The unique organization ID. This property cannot be changed, doing so forces recreation of the resource.
|
|
160
|
-
:param pulumi.Input[str] user_email: This is a user email address that first will be invited, and after accepting an invitation, they become a member of the organization. This property cannot be changed, doing so forces recreation of the resource.
|
|
160
|
+
:param pulumi.Input[str] user_email: This is a user email address that first will be invited, and after accepting an invitation, they become a member of the organization. Should be lowercase. This property cannot be changed, doing so forces recreation of the resource.
|
|
161
161
|
"""
|
|
162
162
|
...
|
|
163
163
|
@overload
|
|
@@ -235,7 +235,7 @@ class OrganizationUser(pulumi.CustomResource):
|
|
|
235
235
|
:param pulumi.Input[str] create_time: Time of creation
|
|
236
236
|
:param pulumi.Input[str] invited_by: The email address of the user who sent an invitation to the user.
|
|
237
237
|
:param pulumi.Input[str] organization_id: The unique organization ID. This property cannot be changed, doing so forces recreation of the resource.
|
|
238
|
-
:param pulumi.Input[str] user_email: This is a user email address that first will be invited, and after accepting an invitation, they become a member of the organization. This property cannot be changed, doing so forces recreation of the resource.
|
|
238
|
+
:param pulumi.Input[str] user_email: This is a user email address that first will be invited, and after accepting an invitation, they become a member of the organization. Should be lowercase. This property cannot be changed, doing so forces recreation of the resource.
|
|
239
239
|
"""
|
|
240
240
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
241
241
|
|
|
@@ -284,7 +284,7 @@ class OrganizationUser(pulumi.CustomResource):
|
|
|
284
284
|
@pulumi.getter(name="userEmail")
|
|
285
285
|
def user_email(self) -> pulumi.Output[str]:
|
|
286
286
|
"""
|
|
287
|
-
This is a user email address that first will be invited, and after accepting an invitation, they become a member of the organization. This property cannot be changed, doing so forces recreation of the resource.
|
|
287
|
+
This is a user email address that first will be invited, and after accepting an invitation, they become a member of the organization. Should be lowercase. This property cannot be changed, doing so forces recreation of the resource.
|
|
288
288
|
"""
|
|
289
289
|
return pulumi.get(self, "user_email")
|
|
290
290
|
|