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
pulumi_aiven/pg.py
CHANGED
|
@@ -30,6 +30,7 @@ class PgArgs:
|
|
|
30
30
|
service_name: Optional[pulumi.Input[str]] = None,
|
|
31
31
|
static_ips: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
32
32
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input['PgTagArgs']]]] = None,
|
|
33
|
+
tech_emails: Optional[pulumi.Input[Sequence[pulumi.Input['PgTechEmailArgs']]]] = None,
|
|
33
34
|
termination_protection: Optional[pulumi.Input[bool]] = None):
|
|
34
35
|
"""
|
|
35
36
|
The set of arguments for constructing a Pg resource.
|
|
@@ -47,6 +48,7 @@ class PgArgs:
|
|
|
47
48
|
: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.
|
|
48
49
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] static_ips: Use static public IP addresses.
|
|
49
50
|
:param pulumi.Input[Sequence[pulumi.Input['PgTagArgs']]] tags: Tags are key-value pairs that allow you to categorize services.
|
|
51
|
+
:param pulumi.Input[Sequence[pulumi.Input['PgTechEmailArgs']]] tech_emails: Defines the email addresses that will receive alerts about upcoming maintenance updates or warnings about service instability.
|
|
50
52
|
: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.
|
|
51
53
|
"""
|
|
52
54
|
pulumi.set(__self__, "plan", plan)
|
|
@@ -78,6 +80,8 @@ class PgArgs:
|
|
|
78
80
|
pulumi.set(__self__, "static_ips", static_ips)
|
|
79
81
|
if tags is not None:
|
|
80
82
|
pulumi.set(__self__, "tags", tags)
|
|
83
|
+
if tech_emails is not None:
|
|
84
|
+
pulumi.set(__self__, "tech_emails", tech_emails)
|
|
81
85
|
if termination_protection is not None:
|
|
82
86
|
pulumi.set(__self__, "termination_protection", termination_protection)
|
|
83
87
|
|
|
@@ -252,6 +256,18 @@ class PgArgs:
|
|
|
252
256
|
def tags(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['PgTagArgs']]]]):
|
|
253
257
|
pulumi.set(self, "tags", value)
|
|
254
258
|
|
|
259
|
+
@property
|
|
260
|
+
@pulumi.getter(name="techEmails")
|
|
261
|
+
def tech_emails(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['PgTechEmailArgs']]]]:
|
|
262
|
+
"""
|
|
263
|
+
Defines the email addresses that will receive alerts about upcoming maintenance updates or warnings about service instability.
|
|
264
|
+
"""
|
|
265
|
+
return pulumi.get(self, "tech_emails")
|
|
266
|
+
|
|
267
|
+
@tech_emails.setter
|
|
268
|
+
def tech_emails(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['PgTechEmailArgs']]]]):
|
|
269
|
+
pulumi.set(self, "tech_emails", value)
|
|
270
|
+
|
|
255
271
|
@property
|
|
256
272
|
@pulumi.getter(name="terminationProtection")
|
|
257
273
|
def termination_protection(self) -> Optional[pulumi.Input[bool]]:
|
|
@@ -294,6 +310,7 @@ class _PgState:
|
|
|
294
310
|
state: Optional[pulumi.Input[str]] = None,
|
|
295
311
|
static_ips: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
296
312
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input['PgTagArgs']]]] = None,
|
|
313
|
+
tech_emails: Optional[pulumi.Input[Sequence[pulumi.Input['PgTechEmailArgs']]]] = None,
|
|
297
314
|
termination_protection: Optional[pulumi.Input[bool]] = None):
|
|
298
315
|
"""
|
|
299
316
|
Input properties used for looking up and filtering Pg resources.
|
|
@@ -323,6 +340,7 @@ class _PgState:
|
|
|
323
340
|
:param pulumi.Input[str] state: Service state. One of `POWEROFF`, `REBALANCING`, `REBUILDING` or `RUNNING`
|
|
324
341
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] static_ips: Use static public IP addresses.
|
|
325
342
|
:param pulumi.Input[Sequence[pulumi.Input['PgTagArgs']]] tags: Tags are key-value pairs that allow you to categorize services.
|
|
343
|
+
:param pulumi.Input[Sequence[pulumi.Input['PgTechEmailArgs']]] tech_emails: Defines the email addresses that will receive alerts about upcoming maintenance updates or warnings about service instability.
|
|
326
344
|
: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.
|
|
327
345
|
"""
|
|
328
346
|
if additional_disk_space is not None:
|
|
@@ -380,6 +398,8 @@ class _PgState:
|
|
|
380
398
|
pulumi.set(__self__, "static_ips", static_ips)
|
|
381
399
|
if tags is not None:
|
|
382
400
|
pulumi.set(__self__, "tags", tags)
|
|
401
|
+
if tech_emails is not None:
|
|
402
|
+
pulumi.set(__self__, "tech_emails", tech_emails)
|
|
383
403
|
if termination_protection is not None:
|
|
384
404
|
pulumi.set(__self__, "termination_protection", termination_protection)
|
|
385
405
|
|
|
@@ -698,6 +718,18 @@ class _PgState:
|
|
|
698
718
|
def tags(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['PgTagArgs']]]]):
|
|
699
719
|
pulumi.set(self, "tags", value)
|
|
700
720
|
|
|
721
|
+
@property
|
|
722
|
+
@pulumi.getter(name="techEmails")
|
|
723
|
+
def tech_emails(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['PgTechEmailArgs']]]]:
|
|
724
|
+
"""
|
|
725
|
+
Defines the email addresses that will receive alerts about upcoming maintenance updates or warnings about service instability.
|
|
726
|
+
"""
|
|
727
|
+
return pulumi.get(self, "tech_emails")
|
|
728
|
+
|
|
729
|
+
@tech_emails.setter
|
|
730
|
+
def tech_emails(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['PgTechEmailArgs']]]]):
|
|
731
|
+
pulumi.set(self, "tech_emails", value)
|
|
732
|
+
|
|
701
733
|
@property
|
|
702
734
|
@pulumi.getter(name="terminationProtection")
|
|
703
735
|
def termination_protection(self) -> Optional[pulumi.Input[bool]]:
|
|
@@ -730,6 +762,7 @@ class Pg(pulumi.CustomResource):
|
|
|
730
762
|
service_name: Optional[pulumi.Input[str]] = None,
|
|
731
763
|
static_ips: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
732
764
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['PgTagArgs']]]]] = None,
|
|
765
|
+
tech_emails: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['PgTechEmailArgs']]]]] = None,
|
|
733
766
|
termination_protection: Optional[pulumi.Input[bool]] = None,
|
|
734
767
|
__props__=None):
|
|
735
768
|
"""
|
|
@@ -757,6 +790,7 @@ class Pg(pulumi.CustomResource):
|
|
|
757
790
|
: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.
|
|
758
791
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] static_ips: Use static public IP addresses.
|
|
759
792
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['PgTagArgs']]]] tags: Tags are key-value pairs that allow you to categorize services.
|
|
793
|
+
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['PgTechEmailArgs']]]] tech_emails: Defines the email addresses that will receive alerts about upcoming maintenance updates or warnings about service instability.
|
|
760
794
|
: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.
|
|
761
795
|
"""
|
|
762
796
|
...
|
|
@@ -803,6 +837,7 @@ class Pg(pulumi.CustomResource):
|
|
|
803
837
|
service_name: Optional[pulumi.Input[str]] = None,
|
|
804
838
|
static_ips: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
805
839
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['PgTagArgs']]]]] = None,
|
|
840
|
+
tech_emails: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['PgTechEmailArgs']]]]] = None,
|
|
806
841
|
termination_protection: Optional[pulumi.Input[bool]] = None,
|
|
807
842
|
__props__=None):
|
|
808
843
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
|
@@ -831,6 +866,7 @@ class Pg(pulumi.CustomResource):
|
|
|
831
866
|
__props__.__dict__["service_name"] = service_name
|
|
832
867
|
__props__.__dict__["static_ips"] = static_ips
|
|
833
868
|
__props__.__dict__["tags"] = tags
|
|
869
|
+
__props__.__dict__["tech_emails"] = tech_emails
|
|
834
870
|
__props__.__dict__["termination_protection"] = termination_protection
|
|
835
871
|
__props__.__dict__["components"] = None
|
|
836
872
|
__props__.__dict__["disk_space_cap"] = None
|
|
@@ -882,6 +918,7 @@ class Pg(pulumi.CustomResource):
|
|
|
882
918
|
state: Optional[pulumi.Input[str]] = None,
|
|
883
919
|
static_ips: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
884
920
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['PgTagArgs']]]]] = None,
|
|
921
|
+
tech_emails: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['PgTechEmailArgs']]]]] = None,
|
|
885
922
|
termination_protection: Optional[pulumi.Input[bool]] = None) -> 'Pg':
|
|
886
923
|
"""
|
|
887
924
|
Get an existing Pg resource's state with the given name, id, and optional extra
|
|
@@ -916,6 +953,7 @@ class Pg(pulumi.CustomResource):
|
|
|
916
953
|
:param pulumi.Input[str] state: Service state. One of `POWEROFF`, `REBALANCING`, `REBUILDING` or `RUNNING`
|
|
917
954
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] static_ips: Use static public IP addresses.
|
|
918
955
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['PgTagArgs']]]] tags: Tags are key-value pairs that allow you to categorize services.
|
|
956
|
+
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['PgTechEmailArgs']]]] tech_emails: Defines the email addresses that will receive alerts about upcoming maintenance updates or warnings about service instability.
|
|
919
957
|
: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.
|
|
920
958
|
"""
|
|
921
959
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
@@ -948,6 +986,7 @@ class Pg(pulumi.CustomResource):
|
|
|
948
986
|
__props__.__dict__["state"] = state
|
|
949
987
|
__props__.__dict__["static_ips"] = static_ips
|
|
950
988
|
__props__.__dict__["tags"] = tags
|
|
989
|
+
__props__.__dict__["tech_emails"] = tech_emails
|
|
951
990
|
__props__.__dict__["termination_protection"] = termination_protection
|
|
952
991
|
return Pg(resource_name, opts=opts, __props__=__props__)
|
|
953
992
|
|
|
@@ -1162,6 +1201,14 @@ class Pg(pulumi.CustomResource):
|
|
|
1162
1201
|
"""
|
|
1163
1202
|
return pulumi.get(self, "tags")
|
|
1164
1203
|
|
|
1204
|
+
@property
|
|
1205
|
+
@pulumi.getter(name="techEmails")
|
|
1206
|
+
def tech_emails(self) -> pulumi.Output[Optional[Sequence['outputs.PgTechEmail']]]:
|
|
1207
|
+
"""
|
|
1208
|
+
Defines the email addresses that will receive alerts about upcoming maintenance updates or warnings about service instability.
|
|
1209
|
+
"""
|
|
1210
|
+
return pulumi.get(self, "tech_emails")
|
|
1211
|
+
|
|
1165
1212
|
@property
|
|
1166
1213
|
@pulumi.getter(name="terminationProtection")
|
|
1167
1214
|
def termination_protection(self) -> pulumi.Output[Optional[bool]]:
|
pulumi_aiven/project.py
CHANGED
|
@@ -36,7 +36,7 @@ class ProjectArgs:
|
|
|
36
36
|
:param pulumi.Input[str] default_cloud: Defines the default cloud provider and region where services are hosted. This can be changed freely after the project is created. This will not affect existing services.
|
|
37
37
|
:param pulumi.Input[str] parent_id: An optional property to link a project to an already existing organization or account by using its ID. To set up proper dependencies please refer to this variable as a reference.
|
|
38
38
|
:param pulumi.Input[Sequence[pulumi.Input['ProjectTagArgs']]] tags: Tags are key-value pairs that allow you to categorize projects.
|
|
39
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] technical_emails: Defines the email addresses that will receive alerts about upcoming maintenance updates or warnings about service instability. It is
|
|
39
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] technical_emails: Defines the email addresses that will receive alerts about upcoming maintenance updates or warnings about service instability. It is a good practice to keep this up-to-date to be aware of any potential issues with your project.
|
|
40
40
|
:param pulumi.Input[bool] use_source_project_billing_group: Use the same billing group that is used in source project.
|
|
41
41
|
"""
|
|
42
42
|
pulumi.set(__self__, "project", project)
|
|
@@ -174,7 +174,7 @@ class ProjectArgs:
|
|
|
174
174
|
@pulumi.getter(name="technicalEmails")
|
|
175
175
|
def technical_emails(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
176
176
|
"""
|
|
177
|
-
Defines the email addresses that will receive alerts about upcoming maintenance updates or warnings about service instability. It is
|
|
177
|
+
Defines the email addresses that will receive alerts about upcoming maintenance updates or warnings about service instability. It is a good practice to keep this up-to-date to be aware of any potential issues with your project.
|
|
178
178
|
"""
|
|
179
179
|
return pulumi.get(self, "technical_emails")
|
|
180
180
|
|
|
@@ -229,7 +229,7 @@ class _ProjectState:
|
|
|
229
229
|
:param pulumi.Input[str] payment_method: The method of invoicing used for payments for this project, e.g. `card`.
|
|
230
230
|
:param pulumi.Input[str] project: Defines the name of the project. Name must be globally unique (between all Aiven customers) and cannot be changed later without destroying and re-creating the project, including all sub-resources.
|
|
231
231
|
:param pulumi.Input[Sequence[pulumi.Input['ProjectTagArgs']]] tags: Tags are key-value pairs that allow you to categorize projects.
|
|
232
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] technical_emails: Defines the email addresses that will receive alerts about upcoming maintenance updates or warnings about service instability. It is
|
|
232
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] technical_emails: Defines the email addresses that will receive alerts about upcoming maintenance updates or warnings about service instability. It is a good practice to keep this up-to-date to be aware of any potential issues with your project.
|
|
233
233
|
:param pulumi.Input[bool] use_source_project_billing_group: Use the same billing group that is used in source project.
|
|
234
234
|
"""
|
|
235
235
|
if account_id is not None:
|
|
@@ -424,7 +424,7 @@ class _ProjectState:
|
|
|
424
424
|
@pulumi.getter(name="technicalEmails")
|
|
425
425
|
def technical_emails(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
426
426
|
"""
|
|
427
|
-
Defines the email addresses that will receive alerts about upcoming maintenance updates or warnings about service instability. It is
|
|
427
|
+
Defines the email addresses that will receive alerts about upcoming maintenance updates or warnings about service instability. It is a good practice to keep this up-to-date to be aware of any potential issues with your project.
|
|
428
428
|
"""
|
|
429
429
|
return pulumi.get(self, "technical_emails")
|
|
430
430
|
|
|
@@ -483,7 +483,7 @@ class Project(pulumi.CustomResource):
|
|
|
483
483
|
:param pulumi.Input[str] parent_id: An optional property to link a project to an already existing organization or account by using its ID. To set up proper dependencies please refer to this variable as a reference.
|
|
484
484
|
:param pulumi.Input[str] project: Defines the name of the project. Name must be globally unique (between all Aiven customers) and cannot be changed later without destroying and re-creating the project, including all sub-resources.
|
|
485
485
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ProjectTagArgs']]]] tags: Tags are key-value pairs that allow you to categorize projects.
|
|
486
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] technical_emails: Defines the email addresses that will receive alerts about upcoming maintenance updates or warnings about service instability. It is
|
|
486
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] technical_emails: Defines the email addresses that will receive alerts about upcoming maintenance updates or warnings about service instability. It is a good practice to keep this up-to-date to be aware of any potential issues with your project.
|
|
487
487
|
:param pulumi.Input[bool] use_source_project_billing_group: Use the same billing group that is used in source project.
|
|
488
488
|
"""
|
|
489
489
|
...
|
|
@@ -596,7 +596,7 @@ class Project(pulumi.CustomResource):
|
|
|
596
596
|
:param pulumi.Input[str] payment_method: The method of invoicing used for payments for this project, e.g. `card`.
|
|
597
597
|
:param pulumi.Input[str] project: Defines the name of the project. Name must be globally unique (between all Aiven customers) and cannot be changed later without destroying and re-creating the project, including all sub-resources.
|
|
598
598
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ProjectTagArgs']]]] tags: Tags are key-value pairs that allow you to categorize projects.
|
|
599
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] technical_emails: Defines the email addresses that will receive alerts about upcoming maintenance updates or warnings about service instability. It is
|
|
599
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] technical_emails: Defines the email addresses that will receive alerts about upcoming maintenance updates or warnings about service instability. It is a good practice to keep this up-to-date to be aware of any potential issues with your project.
|
|
600
600
|
:param pulumi.Input[bool] use_source_project_billing_group: Use the same billing group that is used in source project.
|
|
601
601
|
"""
|
|
602
602
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
@@ -725,7 +725,7 @@ class Project(pulumi.CustomResource):
|
|
|
725
725
|
@pulumi.getter(name="technicalEmails")
|
|
726
726
|
def technical_emails(self) -> pulumi.Output[Optional[Sequence[str]]]:
|
|
727
727
|
"""
|
|
728
|
-
Defines the email addresses that will receive alerts about upcoming maintenance updates or warnings about service instability. It is
|
|
728
|
+
Defines the email addresses that will receive alerts about upcoming maintenance updates or warnings about service instability. It is a good practice to keep this up-to-date to be aware of any potential issues with your project.
|
|
729
729
|
"""
|
|
730
730
|
return pulumi.get(self, "technical_emails")
|
|
731
731
|
|
pulumi_aiven/project_user.py
CHANGED
|
@@ -19,7 +19,7 @@ class ProjectUserArgs:
|
|
|
19
19
|
project: pulumi.Input[str]):
|
|
20
20
|
"""
|
|
21
21
|
The set of arguments for constructing a ProjectUser resource.
|
|
22
|
-
:param pulumi.Input[str] email: Email address of the user. This property cannot be changed, doing so forces recreation of the resource.
|
|
22
|
+
:param pulumi.Input[str] email: Email address of the user. Should be lowercase. This property cannot be changed, doing so forces recreation of the resource.
|
|
23
23
|
:param pulumi.Input[str] member_type: Project membership type. The possible values are `admin`, `developer` and `operator`.
|
|
24
24
|
: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.
|
|
25
25
|
"""
|
|
@@ -31,7 +31,7 @@ class ProjectUserArgs:
|
|
|
31
31
|
@pulumi.getter
|
|
32
32
|
def email(self) -> pulumi.Input[str]:
|
|
33
33
|
"""
|
|
34
|
-
Email address of the user. This property cannot be changed, doing so forces recreation of the resource.
|
|
34
|
+
Email address of the user. Should be lowercase. This property cannot be changed, doing so forces recreation of the resource.
|
|
35
35
|
"""
|
|
36
36
|
return pulumi.get(self, "email")
|
|
37
37
|
|
|
@@ -74,7 +74,7 @@ class _ProjectUserState:
|
|
|
74
74
|
"""
|
|
75
75
|
Input properties used for looking up and filtering ProjectUser resources.
|
|
76
76
|
:param pulumi.Input[bool] accepted: Whether the user has accepted the request to join the project; adding user to a project sends an invitation to the target user and the actual membership is only created once the user accepts the invitation.
|
|
77
|
-
:param pulumi.Input[str] email: Email address of the user. This property cannot be changed, doing so forces recreation of the resource.
|
|
77
|
+
:param pulumi.Input[str] email: Email address of the user. Should be lowercase. This property cannot be changed, doing so forces recreation of the resource.
|
|
78
78
|
:param pulumi.Input[str] member_type: Project membership type. The possible values are `admin`, `developer` and `operator`.
|
|
79
79
|
: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.
|
|
80
80
|
"""
|
|
@@ -103,7 +103,7 @@ class _ProjectUserState:
|
|
|
103
103
|
@pulumi.getter
|
|
104
104
|
def email(self) -> Optional[pulumi.Input[str]]:
|
|
105
105
|
"""
|
|
106
|
-
Email address of the user. This property cannot be changed, doing so forces recreation of the resource.
|
|
106
|
+
Email address of the user. Should be lowercase. This property cannot be changed, doing so forces recreation of the resource.
|
|
107
107
|
"""
|
|
108
108
|
return pulumi.get(self, "email")
|
|
109
109
|
|
|
@@ -168,7 +168,7 @@ class ProjectUser(pulumi.CustomResource):
|
|
|
168
168
|
|
|
169
169
|
:param str resource_name: The name of the resource.
|
|
170
170
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
171
|
-
:param pulumi.Input[str] email: Email address of the user. This property cannot be changed, doing so forces recreation of the resource.
|
|
171
|
+
:param pulumi.Input[str] email: Email address of the user. Should be lowercase. This property cannot be changed, doing so forces recreation of the resource.
|
|
172
172
|
:param pulumi.Input[str] member_type: Project membership type. The possible values are `admin`, `developer` and `operator`.
|
|
173
173
|
: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.
|
|
174
174
|
"""
|
|
@@ -258,7 +258,7 @@ class ProjectUser(pulumi.CustomResource):
|
|
|
258
258
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
259
259
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
260
260
|
:param pulumi.Input[bool] accepted: Whether the user has accepted the request to join the project; adding user to a project sends an invitation to the target user and the actual membership is only created once the user accepts the invitation.
|
|
261
|
-
:param pulumi.Input[str] email: Email address of the user. This property cannot be changed, doing so forces recreation of the resource.
|
|
261
|
+
:param pulumi.Input[str] email: Email address of the user. Should be lowercase. This property cannot be changed, doing so forces recreation of the resource.
|
|
262
262
|
:param pulumi.Input[str] member_type: Project membership type. The possible values are `admin`, `developer` and `operator`.
|
|
263
263
|
: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.
|
|
264
264
|
"""
|
|
@@ -284,7 +284,7 @@ class ProjectUser(pulumi.CustomResource):
|
|
|
284
284
|
@pulumi.getter
|
|
285
285
|
def email(self) -> pulumi.Output[str]:
|
|
286
286
|
"""
|
|
287
|
-
Email address of the user. This property cannot be changed, doing so forces recreation of the resource.
|
|
287
|
+
Email address of the user. Should be lowercase. This property cannot be changed, doing so forces recreation of the resource.
|
|
288
288
|
"""
|
|
289
289
|
return pulumi.get(self, "email")
|
|
290
290
|
|
pulumi_aiven/redis.py
CHANGED
|
@@ -29,6 +29,7 @@ class RedisArgs:
|
|
|
29
29
|
service_integrations: Optional[pulumi.Input[Sequence[pulumi.Input['RedisServiceIntegrationArgs']]]] = None,
|
|
30
30
|
static_ips: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
31
31
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input['RedisTagArgs']]]] = None,
|
|
32
|
+
tech_emails: Optional[pulumi.Input[Sequence[pulumi.Input['RedisTechEmailArgs']]]] = None,
|
|
32
33
|
termination_protection: Optional[pulumi.Input[bool]] = None):
|
|
33
34
|
"""
|
|
34
35
|
The set of arguments for constructing a Redis resource.
|
|
@@ -63,6 +64,8 @@ class RedisArgs:
|
|
|
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['RedisTagArgs']]] tags: Tags are key-value pairs that allow you to categorize services.
|
|
67
|
+
:param pulumi.Input[Sequence[pulumi.Input['RedisTechEmailArgs']]] 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 RedisArgs:
|
|
|
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 RedisArgs:
|
|
|
273
278
|
def tags(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['RedisTagArgs']]]]):
|
|
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['RedisTechEmailArgs']]]]:
|
|
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['RedisTechEmailArgs']]]]):
|
|
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 _RedisState:
|
|
|
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['RedisTagArgs']]]] = None,
|
|
338
|
+
tech_emails: Optional[pulumi.Input[Sequence[pulumi.Input['RedisTechEmailArgs']]]] = None,
|
|
320
339
|
termination_protection: Optional[pulumi.Input[bool]] = None):
|
|
321
340
|
"""
|
|
322
341
|
Input properties used for looking up and filtering Redis resources.
|
|
@@ -366,6 +385,8 @@ class _RedisState:
|
|
|
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['RedisTagArgs']]] tags: Tags are key-value pairs that allow you to categorize services.
|
|
388
|
+
:param pulumi.Input[Sequence[pulumi.Input['RedisTechEmailArgs']]] 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 _RedisState:
|
|
|
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 _RedisState:
|
|
|
763
786
|
def tags(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['RedisTagArgs']]]]):
|
|
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['RedisTechEmailArgs']]]]:
|
|
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['RedisTechEmailArgs']]]]):
|
|
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 Redis(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['RedisTagArgs']]]]] = None,
|
|
835
|
+
tech_emails: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['RedisTechEmailArgs']]]]] = None,
|
|
799
836
|
termination_protection: Optional[pulumi.Input[bool]] = None,
|
|
800
837
|
__props__=None):
|
|
801
838
|
"""
|
|
@@ -861,6 +898,8 @@ class Redis(pulumi.CustomResource):
|
|
|
861
898
|
: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
|
|
862
899
|
static ip resource is in the 'assigned' state it cannot be unbound from the node again
|
|
863
900
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['RedisTagArgs']]]] tags: Tags are key-value pairs that allow you to categorize services.
|
|
901
|
+
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['RedisTechEmailArgs']]]] tech_emails: Defines the email addresses that will receive alerts about upcoming maintenance updates or warnings about service
|
|
902
|
+
instability.
|
|
864
903
|
: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
|
|
865
904
|
unintentional service deletion. This does not shield against deleting databases or topics but for services with backups
|
|
866
905
|
much of the content can at least be restored from backup in case accidental deletion is done.
|
|
@@ -929,6 +968,7 @@ class Redis(pulumi.CustomResource):
|
|
|
929
968
|
service_name: Optional[pulumi.Input[str]] = None,
|
|
930
969
|
static_ips: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
931
970
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['RedisTagArgs']]]]] = None,
|
|
971
|
+
tech_emails: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['RedisTechEmailArgs']]]]] = None,
|
|
932
972
|
termination_protection: Optional[pulumi.Input[bool]] = None,
|
|
933
973
|
__props__=None):
|
|
934
974
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
|
@@ -958,6 +998,7 @@ class Redis(pulumi.CustomResource):
|
|
|
958
998
|
__props__.__dict__["service_name"] = service_name
|
|
959
999
|
__props__.__dict__["static_ips"] = static_ips
|
|
960
1000
|
__props__.__dict__["tags"] = tags
|
|
1001
|
+
__props__.__dict__["tech_emails"] = tech_emails
|
|
961
1002
|
__props__.__dict__["termination_protection"] = termination_protection
|
|
962
1003
|
__props__.__dict__["components"] = None
|
|
963
1004
|
__props__.__dict__["disk_space_cap"] = None
|
|
@@ -1010,6 +1051,7 @@ class Redis(pulumi.CustomResource):
|
|
|
1010
1051
|
state: Optional[pulumi.Input[str]] = None,
|
|
1011
1052
|
static_ips: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
1012
1053
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['RedisTagArgs']]]]] = None,
|
|
1054
|
+
tech_emails: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['RedisTechEmailArgs']]]]] = None,
|
|
1013
1055
|
termination_protection: Optional[pulumi.Input[bool]] = None) -> 'Redis':
|
|
1014
1056
|
"""
|
|
1015
1057
|
Get an existing Redis resource's state with the given name, id, and optional extra
|
|
@@ -1064,6 +1106,8 @@ class Redis(pulumi.CustomResource):
|
|
|
1064
1106
|
: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
|
|
1065
1107
|
static ip resource is in the 'assigned' state it cannot be unbound from the node again
|
|
1066
1108
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['RedisTagArgs']]]] tags: Tags are key-value pairs that allow you to categorize services.
|
|
1109
|
+
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['RedisTechEmailArgs']]]] tech_emails: Defines the email addresses that will receive alerts about upcoming maintenance updates or warnings about service
|
|
1110
|
+
instability.
|
|
1067
1111
|
: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
|
|
1068
1112
|
unintentional service deletion. This does not shield against deleting databases or topics but for services with backups
|
|
1069
1113
|
much of the content can at least be restored from backup in case accidental deletion is done.
|
|
@@ -1098,6 +1142,7 @@ class Redis(pulumi.CustomResource):
|
|
|
1098
1142
|
__props__.__dict__["state"] = state
|
|
1099
1143
|
__props__.__dict__["static_ips"] = static_ips
|
|
1100
1144
|
__props__.__dict__["tags"] = tags
|
|
1145
|
+
__props__.__dict__["tech_emails"] = tech_emails
|
|
1101
1146
|
__props__.__dict__["termination_protection"] = termination_protection
|
|
1102
1147
|
return Redis(resource_name, opts=opts, __props__=__props__)
|
|
1103
1148
|
|
|
@@ -1332,6 +1377,15 @@ class Redis(pulumi.CustomResource):
|
|
|
1332
1377
|
"""
|
|
1333
1378
|
return pulumi.get(self, "tags")
|
|
1334
1379
|
|
|
1380
|
+
@property
|
|
1381
|
+
@pulumi.getter(name="techEmails")
|
|
1382
|
+
def tech_emails(self) -> pulumi.Output[Optional[Sequence['outputs.RedisTechEmail']]]:
|
|
1383
|
+
"""
|
|
1384
|
+
Defines the email addresses that will receive alerts about upcoming maintenance updates or warnings about service
|
|
1385
|
+
instability.
|
|
1386
|
+
"""
|
|
1387
|
+
return pulumi.get(self, "tech_emails")
|
|
1388
|
+
|
|
1335
1389
|
@property
|
|
1336
1390
|
@pulumi.getter(name="terminationProtection")
|
|
1337
1391
|
def termination_protection(self) -> pulumi.Output[Optional[bool]]:
|