pulumi-aiven 6.7.3__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.
- pulumi_aiven/_inputs.py +1660 -35
- pulumi_aiven/account_team_member.py +7 -7
- pulumi_aiven/cassandra.py +47 -0
- pulumi_aiven/clickhouse.py +47 -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.3.dist-info → pulumi_aiven-6.8.0.dist-info}/METADATA +2 -2
- {pulumi_aiven-6.7.3.dist-info → pulumi_aiven-6.8.0.dist-info}/RECORD +49 -49
- {pulumi_aiven-6.7.3.dist-info → pulumi_aiven-6.8.0.dist-info}/WHEEL +0 -0
- {pulumi_aiven-6.7.3.dist-info → pulumi_aiven-6.8.0.dist-info}/top_level.txt +0 -0
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
|
|
|
@@ -71,6 +71,7 @@ class _OrganizationUserGroupState:
|
|
|
71
71
|
def __init__(__self__, *,
|
|
72
72
|
create_time: Optional[pulumi.Input[str]] = None,
|
|
73
73
|
description: Optional[pulumi.Input[str]] = None,
|
|
74
|
+
group_id: Optional[pulumi.Input[str]] = None,
|
|
74
75
|
name: Optional[pulumi.Input[str]] = None,
|
|
75
76
|
organization_id: Optional[pulumi.Input[str]] = None,
|
|
76
77
|
update_time: Optional[pulumi.Input[str]] = None):
|
|
@@ -78,6 +79,7 @@ class _OrganizationUserGroupState:
|
|
|
78
79
|
Input properties used for looking up and filtering OrganizationUserGroup resources.
|
|
79
80
|
:param pulumi.Input[str] create_time: Time of creation
|
|
80
81
|
:param pulumi.Input[str] description: The organization user group description. This property cannot be changed, doing so forces recreation of the resource.
|
|
82
|
+
:param pulumi.Input[str] group_id: The unique organization user group ID
|
|
81
83
|
:param pulumi.Input[str] name: The organization user group name. This property cannot be changed, doing so forces recreation of the resource.
|
|
82
84
|
:param pulumi.Input[str] organization_id: The unique organization ID. This property cannot be changed, doing so forces recreation of the resource.
|
|
83
85
|
:param pulumi.Input[str] update_time: Time of last update
|
|
@@ -86,6 +88,8 @@ class _OrganizationUserGroupState:
|
|
|
86
88
|
pulumi.set(__self__, "create_time", create_time)
|
|
87
89
|
if description is not None:
|
|
88
90
|
pulumi.set(__self__, "description", description)
|
|
91
|
+
if group_id is not None:
|
|
92
|
+
pulumi.set(__self__, "group_id", group_id)
|
|
89
93
|
if name is not None:
|
|
90
94
|
pulumi.set(__self__, "name", name)
|
|
91
95
|
if organization_id is not None:
|
|
@@ -117,6 +121,18 @@ class _OrganizationUserGroupState:
|
|
|
117
121
|
def description(self, value: Optional[pulumi.Input[str]]):
|
|
118
122
|
pulumi.set(self, "description", value)
|
|
119
123
|
|
|
124
|
+
@property
|
|
125
|
+
@pulumi.getter(name="groupId")
|
|
126
|
+
def group_id(self) -> Optional[pulumi.Input[str]]:
|
|
127
|
+
"""
|
|
128
|
+
The unique organization user group ID
|
|
129
|
+
"""
|
|
130
|
+
return pulumi.get(self, "group_id")
|
|
131
|
+
|
|
132
|
+
@group_id.setter
|
|
133
|
+
def group_id(self, value: Optional[pulumi.Input[str]]):
|
|
134
|
+
pulumi.set(self, "group_id", value)
|
|
135
|
+
|
|
120
136
|
@property
|
|
121
137
|
@pulumi.getter
|
|
122
138
|
def name(self) -> Optional[pulumi.Input[str]]:
|
|
@@ -214,6 +230,7 @@ class OrganizationUserGroup(pulumi.CustomResource):
|
|
|
214
230
|
raise TypeError("Missing required property 'organization_id'")
|
|
215
231
|
__props__.__dict__["organization_id"] = organization_id
|
|
216
232
|
__props__.__dict__["create_time"] = None
|
|
233
|
+
__props__.__dict__["group_id"] = None
|
|
217
234
|
__props__.__dict__["update_time"] = None
|
|
218
235
|
super(OrganizationUserGroup, __self__).__init__(
|
|
219
236
|
'aiven:index/organizationUserGroup:OrganizationUserGroup',
|
|
@@ -227,6 +244,7 @@ class OrganizationUserGroup(pulumi.CustomResource):
|
|
|
227
244
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
228
245
|
create_time: Optional[pulumi.Input[str]] = None,
|
|
229
246
|
description: Optional[pulumi.Input[str]] = None,
|
|
247
|
+
group_id: Optional[pulumi.Input[str]] = None,
|
|
230
248
|
name: Optional[pulumi.Input[str]] = None,
|
|
231
249
|
organization_id: Optional[pulumi.Input[str]] = None,
|
|
232
250
|
update_time: Optional[pulumi.Input[str]] = None) -> 'OrganizationUserGroup':
|
|
@@ -239,6 +257,7 @@ class OrganizationUserGroup(pulumi.CustomResource):
|
|
|
239
257
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
240
258
|
:param pulumi.Input[str] create_time: Time of creation
|
|
241
259
|
:param pulumi.Input[str] description: The organization user group description. This property cannot be changed, doing so forces recreation of the resource.
|
|
260
|
+
:param pulumi.Input[str] group_id: The unique organization user group ID
|
|
242
261
|
:param pulumi.Input[str] name: The organization user group name. This property cannot be changed, doing so forces recreation of the resource.
|
|
243
262
|
:param pulumi.Input[str] organization_id: The unique organization ID. This property cannot be changed, doing so forces recreation of the resource.
|
|
244
263
|
:param pulumi.Input[str] update_time: Time of last update
|
|
@@ -249,6 +268,7 @@ class OrganizationUserGroup(pulumi.CustomResource):
|
|
|
249
268
|
|
|
250
269
|
__props__.__dict__["create_time"] = create_time
|
|
251
270
|
__props__.__dict__["description"] = description
|
|
271
|
+
__props__.__dict__["group_id"] = group_id
|
|
252
272
|
__props__.__dict__["name"] = name
|
|
253
273
|
__props__.__dict__["organization_id"] = organization_id
|
|
254
274
|
__props__.__dict__["update_time"] = update_time
|
|
@@ -270,6 +290,14 @@ class OrganizationUserGroup(pulumi.CustomResource):
|
|
|
270
290
|
"""
|
|
271
291
|
return pulumi.get(self, "description")
|
|
272
292
|
|
|
293
|
+
@property
|
|
294
|
+
@pulumi.getter(name="groupId")
|
|
295
|
+
def group_id(self) -> pulumi.Output[str]:
|
|
296
|
+
"""
|
|
297
|
+
The unique organization user group ID
|
|
298
|
+
"""
|
|
299
|
+
return pulumi.get(self, "group_id")
|
|
300
|
+
|
|
273
301
|
@property
|
|
274
302
|
@pulumi.getter
|
|
275
303
|
def name(self) -> pulumi.Output[str]:
|