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.
Potentially problematic release.
This version of pulumi-aiven might be problematic. Click here for more details.
- 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/get_my_sql.py
CHANGED
|
@@ -22,7 +22,7 @@ class GetMySqlResult:
|
|
|
22
22
|
"""
|
|
23
23
|
A collection of values returned by getMySql.
|
|
24
24
|
"""
|
|
25
|
-
def __init__(__self__, additional_disk_space=None, cloud_name=None, components=None, disk_space=None, disk_space_cap=None, disk_space_default=None, disk_space_step=None, disk_space_used=None, id=None, maintenance_window_dow=None, maintenance_window_time=None, mysql_user_configs=None, mysqls=None, plan=None, project=None, project_vpc_id=None, service_host=None, service_integrations=None, service_name=None, service_password=None, service_port=None, service_type=None, service_uri=None, service_username=None, state=None, static_ips=None, tags=None, termination_protection=None):
|
|
25
|
+
def __init__(__self__, additional_disk_space=None, cloud_name=None, components=None, disk_space=None, disk_space_cap=None, disk_space_default=None, disk_space_step=None, disk_space_used=None, id=None, maintenance_window_dow=None, maintenance_window_time=None, mysql_user_configs=None, mysqls=None, plan=None, project=None, project_vpc_id=None, service_host=None, service_integrations=None, service_name=None, service_password=None, service_port=None, service_type=None, service_uri=None, service_username=None, state=None, static_ips=None, tags=None, tech_emails=None, termination_protection=None):
|
|
26
26
|
if additional_disk_space and not isinstance(additional_disk_space, str):
|
|
27
27
|
raise TypeError("Expected argument 'additional_disk_space' to be a str")
|
|
28
28
|
pulumi.set(__self__, "additional_disk_space", additional_disk_space)
|
|
@@ -104,6 +104,9 @@ class GetMySqlResult:
|
|
|
104
104
|
if tags and not isinstance(tags, list):
|
|
105
105
|
raise TypeError("Expected argument 'tags' to be a list")
|
|
106
106
|
pulumi.set(__self__, "tags", tags)
|
|
107
|
+
if tech_emails and not isinstance(tech_emails, list):
|
|
108
|
+
raise TypeError("Expected argument 'tech_emails' to be a list")
|
|
109
|
+
pulumi.set(__self__, "tech_emails", tech_emails)
|
|
107
110
|
if termination_protection and not isinstance(termination_protection, bool):
|
|
108
111
|
raise TypeError("Expected argument 'termination_protection' to be a bool")
|
|
109
112
|
pulumi.set(__self__, "termination_protection", termination_protection)
|
|
@@ -324,6 +327,14 @@ class GetMySqlResult:
|
|
|
324
327
|
"""
|
|
325
328
|
return pulumi.get(self, "tags")
|
|
326
329
|
|
|
330
|
+
@property
|
|
331
|
+
@pulumi.getter(name="techEmails")
|
|
332
|
+
def tech_emails(self) -> Sequence['outputs.GetMySqlTechEmailResult']:
|
|
333
|
+
"""
|
|
334
|
+
Defines the email addresses that will receive alerts about upcoming maintenance updates or warnings about service instability.
|
|
335
|
+
"""
|
|
336
|
+
return pulumi.get(self, "tech_emails")
|
|
337
|
+
|
|
327
338
|
@property
|
|
328
339
|
@pulumi.getter(name="terminationProtection")
|
|
329
340
|
def termination_protection(self) -> bool:
|
|
@@ -366,6 +377,7 @@ class AwaitableGetMySqlResult(GetMySqlResult):
|
|
|
366
377
|
state=self.state,
|
|
367
378
|
static_ips=self.static_ips,
|
|
368
379
|
tags=self.tags,
|
|
380
|
+
tech_emails=self.tech_emails,
|
|
369
381
|
termination_protection=self.termination_protection)
|
|
370
382
|
|
|
371
383
|
|
|
@@ -423,6 +435,7 @@ def get_my_sql(project: Optional[str] = None,
|
|
|
423
435
|
state=pulumi.get(__ret__, 'state'),
|
|
424
436
|
static_ips=pulumi.get(__ret__, 'static_ips'),
|
|
425
437
|
tags=pulumi.get(__ret__, 'tags'),
|
|
438
|
+
tech_emails=pulumi.get(__ret__, 'tech_emails'),
|
|
426
439
|
termination_protection=pulumi.get(__ret__, 'termination_protection'))
|
|
427
440
|
|
|
428
441
|
|
pulumi_aiven/get_open_search.py
CHANGED
|
@@ -22,7 +22,7 @@ class GetOpenSearchResult:
|
|
|
22
22
|
"""
|
|
23
23
|
A collection of values returned by getOpenSearch.
|
|
24
24
|
"""
|
|
25
|
-
def __init__(__self__, additional_disk_space=None, cloud_name=None, components=None, disk_space=None, disk_space_cap=None, disk_space_default=None, disk_space_step=None, disk_space_used=None, id=None, maintenance_window_dow=None, maintenance_window_time=None, opensearch_user_configs=None, opensearches=None, plan=None, project=None, project_vpc_id=None, service_host=None, service_integrations=None, service_name=None, service_password=None, service_port=None, service_type=None, service_uri=None, service_username=None, state=None, static_ips=None, tags=None, termination_protection=None):
|
|
25
|
+
def __init__(__self__, additional_disk_space=None, cloud_name=None, components=None, disk_space=None, disk_space_cap=None, disk_space_default=None, disk_space_step=None, disk_space_used=None, id=None, maintenance_window_dow=None, maintenance_window_time=None, opensearch_user_configs=None, opensearches=None, plan=None, project=None, project_vpc_id=None, service_host=None, service_integrations=None, service_name=None, service_password=None, service_port=None, service_type=None, service_uri=None, service_username=None, state=None, static_ips=None, tags=None, tech_emails=None, termination_protection=None):
|
|
26
26
|
if additional_disk_space and not isinstance(additional_disk_space, str):
|
|
27
27
|
raise TypeError("Expected argument 'additional_disk_space' to be a str")
|
|
28
28
|
pulumi.set(__self__, "additional_disk_space", additional_disk_space)
|
|
@@ -104,6 +104,9 @@ class GetOpenSearchResult:
|
|
|
104
104
|
if tags and not isinstance(tags, list):
|
|
105
105
|
raise TypeError("Expected argument 'tags' to be a list")
|
|
106
106
|
pulumi.set(__self__, "tags", tags)
|
|
107
|
+
if tech_emails and not isinstance(tech_emails, list):
|
|
108
|
+
raise TypeError("Expected argument 'tech_emails' to be a list")
|
|
109
|
+
pulumi.set(__self__, "tech_emails", tech_emails)
|
|
107
110
|
if termination_protection and not isinstance(termination_protection, bool):
|
|
108
111
|
raise TypeError("Expected argument 'termination_protection' to be a bool")
|
|
109
112
|
pulumi.set(__self__, "termination_protection", termination_protection)
|
|
@@ -324,6 +327,14 @@ class GetOpenSearchResult:
|
|
|
324
327
|
"""
|
|
325
328
|
return pulumi.get(self, "tags")
|
|
326
329
|
|
|
330
|
+
@property
|
|
331
|
+
@pulumi.getter(name="techEmails")
|
|
332
|
+
def tech_emails(self) -> Sequence['outputs.GetOpenSearchTechEmailResult']:
|
|
333
|
+
"""
|
|
334
|
+
Defines the email addresses that will receive alerts about upcoming maintenance updates or warnings about service instability.
|
|
335
|
+
"""
|
|
336
|
+
return pulumi.get(self, "tech_emails")
|
|
337
|
+
|
|
327
338
|
@property
|
|
328
339
|
@pulumi.getter(name="terminationProtection")
|
|
329
340
|
def termination_protection(self) -> bool:
|
|
@@ -366,6 +377,7 @@ class AwaitableGetOpenSearchResult(GetOpenSearchResult):
|
|
|
366
377
|
state=self.state,
|
|
367
378
|
static_ips=self.static_ips,
|
|
368
379
|
tags=self.tags,
|
|
380
|
+
tech_emails=self.tech_emails,
|
|
369
381
|
termination_protection=self.termination_protection)
|
|
370
382
|
|
|
371
383
|
|
|
@@ -423,6 +435,7 @@ def get_open_search(project: Optional[str] = None,
|
|
|
423
435
|
state=pulumi.get(__ret__, 'state'),
|
|
424
436
|
static_ips=pulumi.get(__ret__, 'static_ips'),
|
|
425
437
|
tags=pulumi.get(__ret__, 'tags'),
|
|
438
|
+
tech_emails=pulumi.get(__ret__, 'tech_emails'),
|
|
426
439
|
termination_protection=pulumi.get(__ret__, 'termination_protection'))
|
|
427
440
|
|
|
428
441
|
|
|
@@ -85,7 +85,7 @@ class GetOrganizationUserResult:
|
|
|
85
85
|
@pulumi.getter(name="userEmail")
|
|
86
86
|
def user_email(self) -> str:
|
|
87
87
|
"""
|
|
88
|
-
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.
|
|
88
|
+
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.
|
|
89
89
|
"""
|
|
90
90
|
return pulumi.get(self, "user_email")
|
|
91
91
|
|
|
@@ -112,7 +112,7 @@ def get_organization_user(organization_id: Optional[str] = None,
|
|
|
112
112
|
|
|
113
113
|
|
|
114
114
|
:param str organization_id: The unique organization ID. This property cannot be changed, doing so forces recreation of the resource.
|
|
115
|
-
:param 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.
|
|
115
|
+
:param 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.
|
|
116
116
|
"""
|
|
117
117
|
__args__ = dict()
|
|
118
118
|
__args__['organizationId'] = organization_id
|
|
@@ -138,6 +138,6 @@ def get_organization_user_output(organization_id: Optional[pulumi.Input[str]] =
|
|
|
138
138
|
|
|
139
139
|
|
|
140
140
|
:param str organization_id: The unique organization ID. This property cannot be changed, doing so forces recreation of the resource.
|
|
141
|
-
:param 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.
|
|
141
|
+
:param 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.
|
|
142
142
|
"""
|
|
143
143
|
...
|
|
@@ -21,13 +21,16 @@ class GetOrganizationUserGroupResult:
|
|
|
21
21
|
"""
|
|
22
22
|
A collection of values returned by getOrganizationUserGroup.
|
|
23
23
|
"""
|
|
24
|
-
def __init__(__self__, create_time=None, description=None, id=None, name=None, organization_id=None, update_time=None):
|
|
24
|
+
def __init__(__self__, create_time=None, description=None, group_id=None, id=None, name=None, organization_id=None, update_time=None):
|
|
25
25
|
if create_time and not isinstance(create_time, str):
|
|
26
26
|
raise TypeError("Expected argument 'create_time' to be a str")
|
|
27
27
|
pulumi.set(__self__, "create_time", create_time)
|
|
28
28
|
if description and not isinstance(description, str):
|
|
29
29
|
raise TypeError("Expected argument 'description' to be a str")
|
|
30
30
|
pulumi.set(__self__, "description", description)
|
|
31
|
+
if group_id and not isinstance(group_id, str):
|
|
32
|
+
raise TypeError("Expected argument 'group_id' to be a str")
|
|
33
|
+
pulumi.set(__self__, "group_id", group_id)
|
|
31
34
|
if id and not isinstance(id, str):
|
|
32
35
|
raise TypeError("Expected argument 'id' to be a str")
|
|
33
36
|
pulumi.set(__self__, "id", id)
|
|
@@ -57,6 +60,14 @@ class GetOrganizationUserGroupResult:
|
|
|
57
60
|
"""
|
|
58
61
|
return pulumi.get(self, "description")
|
|
59
62
|
|
|
63
|
+
@property
|
|
64
|
+
@pulumi.getter(name="groupId")
|
|
65
|
+
def group_id(self) -> str:
|
|
66
|
+
"""
|
|
67
|
+
The unique organization user group ID
|
|
68
|
+
"""
|
|
69
|
+
return pulumi.get(self, "group_id")
|
|
70
|
+
|
|
60
71
|
@property
|
|
61
72
|
@pulumi.getter
|
|
62
73
|
def id(self) -> str:
|
|
@@ -98,6 +109,7 @@ class AwaitableGetOrganizationUserGroupResult(GetOrganizationUserGroupResult):
|
|
|
98
109
|
return GetOrganizationUserGroupResult(
|
|
99
110
|
create_time=self.create_time,
|
|
100
111
|
description=self.description,
|
|
112
|
+
group_id=self.group_id,
|
|
101
113
|
id=self.id,
|
|
102
114
|
name=self.name,
|
|
103
115
|
organization_id=self.organization_id,
|
|
@@ -123,6 +135,7 @@ def get_organization_user_group(name: Optional[str] = None,
|
|
|
123
135
|
return AwaitableGetOrganizationUserGroupResult(
|
|
124
136
|
create_time=pulumi.get(__ret__, 'create_time'),
|
|
125
137
|
description=pulumi.get(__ret__, 'description'),
|
|
138
|
+
group_id=pulumi.get(__ret__, 'group_id'),
|
|
126
139
|
id=pulumi.get(__ret__, 'id'),
|
|
127
140
|
name=pulumi.get(__ret__, 'name'),
|
|
128
141
|
organization_id=pulumi.get(__ret__, 'organization_id'),
|
pulumi_aiven/get_pg.py
CHANGED
|
@@ -22,7 +22,7 @@ class GetPgResult:
|
|
|
22
22
|
"""
|
|
23
23
|
A collection of values returned by getPg.
|
|
24
24
|
"""
|
|
25
|
-
def __init__(__self__, additional_disk_space=None, cloud_name=None, components=None, disk_space=None, disk_space_cap=None, disk_space_default=None, disk_space_step=None, disk_space_used=None, id=None, maintenance_window_dow=None, maintenance_window_time=None, pg_user_configs=None, pgs=None, plan=None, project=None, project_vpc_id=None, service_host=None, service_integrations=None, service_name=None, service_password=None, service_port=None, service_type=None, service_uri=None, service_username=None, state=None, static_ips=None, tags=None, termination_protection=None):
|
|
25
|
+
def __init__(__self__, additional_disk_space=None, cloud_name=None, components=None, disk_space=None, disk_space_cap=None, disk_space_default=None, disk_space_step=None, disk_space_used=None, id=None, maintenance_window_dow=None, maintenance_window_time=None, pg_user_configs=None, pgs=None, plan=None, project=None, project_vpc_id=None, service_host=None, service_integrations=None, service_name=None, service_password=None, service_port=None, service_type=None, service_uri=None, service_username=None, state=None, static_ips=None, tags=None, tech_emails=None, termination_protection=None):
|
|
26
26
|
if additional_disk_space and not isinstance(additional_disk_space, str):
|
|
27
27
|
raise TypeError("Expected argument 'additional_disk_space' to be a str")
|
|
28
28
|
pulumi.set(__self__, "additional_disk_space", additional_disk_space)
|
|
@@ -104,6 +104,9 @@ class GetPgResult:
|
|
|
104
104
|
if tags and not isinstance(tags, list):
|
|
105
105
|
raise TypeError("Expected argument 'tags' to be a list")
|
|
106
106
|
pulumi.set(__self__, "tags", tags)
|
|
107
|
+
if tech_emails and not isinstance(tech_emails, list):
|
|
108
|
+
raise TypeError("Expected argument 'tech_emails' to be a list")
|
|
109
|
+
pulumi.set(__self__, "tech_emails", tech_emails)
|
|
107
110
|
if termination_protection and not isinstance(termination_protection, bool):
|
|
108
111
|
raise TypeError("Expected argument 'termination_protection' to be a bool")
|
|
109
112
|
pulumi.set(__self__, "termination_protection", termination_protection)
|
|
@@ -324,6 +327,14 @@ class GetPgResult:
|
|
|
324
327
|
"""
|
|
325
328
|
return pulumi.get(self, "tags")
|
|
326
329
|
|
|
330
|
+
@property
|
|
331
|
+
@pulumi.getter(name="techEmails")
|
|
332
|
+
def tech_emails(self) -> Sequence['outputs.GetPgTechEmailResult']:
|
|
333
|
+
"""
|
|
334
|
+
Defines the email addresses that will receive alerts about upcoming maintenance updates or warnings about service instability.
|
|
335
|
+
"""
|
|
336
|
+
return pulumi.get(self, "tech_emails")
|
|
337
|
+
|
|
327
338
|
@property
|
|
328
339
|
@pulumi.getter(name="terminationProtection")
|
|
329
340
|
def termination_protection(self) -> bool:
|
|
@@ -366,6 +377,7 @@ class AwaitableGetPgResult(GetPgResult):
|
|
|
366
377
|
state=self.state,
|
|
367
378
|
static_ips=self.static_ips,
|
|
368
379
|
tags=self.tags,
|
|
380
|
+
tech_emails=self.tech_emails,
|
|
369
381
|
termination_protection=self.termination_protection)
|
|
370
382
|
|
|
371
383
|
|
|
@@ -423,6 +435,7 @@ def get_pg(project: Optional[str] = None,
|
|
|
423
435
|
state=pulumi.get(__ret__, 'state'),
|
|
424
436
|
static_ips=pulumi.get(__ret__, 'static_ips'),
|
|
425
437
|
tags=pulumi.get(__ret__, 'tags'),
|
|
438
|
+
tech_emails=pulumi.get(__ret__, 'tech_emails'),
|
|
426
439
|
termination_protection=pulumi.get(__ret__, 'termination_protection'))
|
|
427
440
|
|
|
428
441
|
|
pulumi_aiven/get_project.py
CHANGED
|
@@ -177,7 +177,7 @@ class GetProjectResult:
|
|
|
177
177
|
@pulumi.getter(name="technicalEmails")
|
|
178
178
|
def technical_emails(self) -> Sequence[str]:
|
|
179
179
|
"""
|
|
180
|
-
Defines the email addresses that will receive alerts about upcoming maintenance updates or warnings about service instability. It is
|
|
180
|
+
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.
|
|
181
181
|
"""
|
|
182
182
|
return pulumi.get(self, "technical_emails")
|
|
183
183
|
|
pulumi_aiven/get_project_user.py
CHANGED
|
@@ -50,7 +50,7 @@ class GetProjectUserResult:
|
|
|
50
50
|
@pulumi.getter
|
|
51
51
|
def email(self) -> str:
|
|
52
52
|
"""
|
|
53
|
-
Email address of the user. This property cannot be changed, doing so forces recreation of the resource.
|
|
53
|
+
Email address of the user. Should be lowercase. This property cannot be changed, doing so forces recreation of the resource.
|
|
54
54
|
"""
|
|
55
55
|
return pulumi.get(self, "email")
|
|
56
56
|
|
|
@@ -109,7 +109,7 @@ def get_project_user(email: Optional[str] = None,
|
|
|
109
109
|
```
|
|
110
110
|
|
|
111
111
|
|
|
112
|
-
:param str email: Email address of the user. This property cannot be changed, doing so forces recreation of the resource.
|
|
112
|
+
:param str email: Email address of the user. Should be lowercase. This property cannot be changed, doing so forces recreation of the resource.
|
|
113
113
|
:param 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.
|
|
114
114
|
"""
|
|
115
115
|
__args__ = dict()
|
|
@@ -144,7 +144,7 @@ def get_project_user_output(email: Optional[pulumi.Input[str]] = None,
|
|
|
144
144
|
```
|
|
145
145
|
|
|
146
146
|
|
|
147
|
-
:param str email: Email address of the user. This property cannot be changed, doing so forces recreation of the resource.
|
|
147
|
+
:param str email: Email address of the user. Should be lowercase. This property cannot be changed, doing so forces recreation of the resource.
|
|
148
148
|
:param 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.
|
|
149
149
|
"""
|
|
150
150
|
...
|
pulumi_aiven/get_redis.py
CHANGED
|
@@ -22,7 +22,7 @@ class GetRedisResult:
|
|
|
22
22
|
"""
|
|
23
23
|
A collection of values returned by getRedis.
|
|
24
24
|
"""
|
|
25
|
-
def __init__(__self__, additional_disk_space=None, cloud_name=None, components=None, disk_space=None, disk_space_cap=None, disk_space_default=None, disk_space_step=None, disk_space_used=None, id=None, maintenance_window_dow=None, maintenance_window_time=None, plan=None, project=None, project_vpc_id=None, redis=None, redis_user_configs=None, service_host=None, service_integrations=None, service_name=None, service_password=None, service_port=None, service_type=None, service_uri=None, service_username=None, state=None, static_ips=None, tags=None, termination_protection=None):
|
|
25
|
+
def __init__(__self__, additional_disk_space=None, cloud_name=None, components=None, disk_space=None, disk_space_cap=None, disk_space_default=None, disk_space_step=None, disk_space_used=None, id=None, maintenance_window_dow=None, maintenance_window_time=None, plan=None, project=None, project_vpc_id=None, redis=None, redis_user_configs=None, service_host=None, service_integrations=None, service_name=None, service_password=None, service_port=None, service_type=None, service_uri=None, service_username=None, state=None, static_ips=None, tags=None, tech_emails=None, termination_protection=None):
|
|
26
26
|
if additional_disk_space and not isinstance(additional_disk_space, str):
|
|
27
27
|
raise TypeError("Expected argument 'additional_disk_space' to be a str")
|
|
28
28
|
pulumi.set(__self__, "additional_disk_space", additional_disk_space)
|
|
@@ -104,6 +104,9 @@ class GetRedisResult:
|
|
|
104
104
|
if tags and not isinstance(tags, list):
|
|
105
105
|
raise TypeError("Expected argument 'tags' to be a list")
|
|
106
106
|
pulumi.set(__self__, "tags", tags)
|
|
107
|
+
if tech_emails and not isinstance(tech_emails, list):
|
|
108
|
+
raise TypeError("Expected argument 'tech_emails' to be a list")
|
|
109
|
+
pulumi.set(__self__, "tech_emails", tech_emails)
|
|
107
110
|
if termination_protection and not isinstance(termination_protection, bool):
|
|
108
111
|
raise TypeError("Expected argument 'termination_protection' to be a bool")
|
|
109
112
|
pulumi.set(__self__, "termination_protection", termination_protection)
|
|
@@ -324,6 +327,14 @@ class GetRedisResult:
|
|
|
324
327
|
"""
|
|
325
328
|
return pulumi.get(self, "tags")
|
|
326
329
|
|
|
330
|
+
@property
|
|
331
|
+
@pulumi.getter(name="techEmails")
|
|
332
|
+
def tech_emails(self) -> Sequence['outputs.GetRedisTechEmailResult']:
|
|
333
|
+
"""
|
|
334
|
+
Defines the email addresses that will receive alerts about upcoming maintenance updates or warnings about service instability.
|
|
335
|
+
"""
|
|
336
|
+
return pulumi.get(self, "tech_emails")
|
|
337
|
+
|
|
327
338
|
@property
|
|
328
339
|
@pulumi.getter(name="terminationProtection")
|
|
329
340
|
def termination_protection(self) -> bool:
|
|
@@ -366,6 +377,7 @@ class AwaitableGetRedisResult(GetRedisResult):
|
|
|
366
377
|
state=self.state,
|
|
367
378
|
static_ips=self.static_ips,
|
|
368
379
|
tags=self.tags,
|
|
380
|
+
tech_emails=self.tech_emails,
|
|
369
381
|
termination_protection=self.termination_protection)
|
|
370
382
|
|
|
371
383
|
|
|
@@ -423,6 +435,7 @@ def get_redis(project: Optional[str] = None,
|
|
|
423
435
|
state=pulumi.get(__ret__, 'state'),
|
|
424
436
|
static_ips=pulumi.get(__ret__, 'static_ips'),
|
|
425
437
|
tags=pulumi.get(__ret__, 'tags'),
|
|
438
|
+
tech_emails=pulumi.get(__ret__, 'tech_emails'),
|
|
426
439
|
termination_protection=pulumi.get(__ret__, 'termination_protection'))
|
|
427
440
|
|
|
428
441
|
|
|
@@ -22,7 +22,7 @@ class GetServiceIntegrationEndpointResult:
|
|
|
22
22
|
"""
|
|
23
23
|
A collection of values returned by getServiceIntegrationEndpoint.
|
|
24
24
|
"""
|
|
25
|
-
def __init__(__self__, datadog_user_configs=None, endpoint_config=None, endpoint_name=None, endpoint_type=None, external_aws_cloudwatch_logs_user_configs=None, external_aws_cloudwatch_metrics_user_configs=None, external_elasticsearch_logs_user_configs=None, external_google_cloud_logging_user_configs=None, external_kafka_user_configs=None, external_opensearch_logs_user_configs=None, external_schema_registry_user_configs=None, id=None, jolokia_user_configs=None, project=None, prometheus_user_configs=None, rsyslog_user_configs=None):
|
|
25
|
+
def __init__(__self__, datadog_user_configs=None, endpoint_config=None, endpoint_name=None, endpoint_type=None, external_aws_cloudwatch_logs_user_configs=None, external_aws_cloudwatch_metrics_user_configs=None, external_elasticsearch_logs_user_configs=None, external_google_cloud_bigqueries=None, external_google_cloud_logging_user_configs=None, external_kafka_user_configs=None, external_opensearch_logs_user_configs=None, external_postgresqls=None, external_schema_registry_user_configs=None, id=None, jolokia_user_configs=None, project=None, prometheus_user_configs=None, rsyslog_user_configs=None):
|
|
26
26
|
if datadog_user_configs and not isinstance(datadog_user_configs, list):
|
|
27
27
|
raise TypeError("Expected argument 'datadog_user_configs' to be a list")
|
|
28
28
|
pulumi.set(__self__, "datadog_user_configs", datadog_user_configs)
|
|
@@ -44,6 +44,9 @@ class GetServiceIntegrationEndpointResult:
|
|
|
44
44
|
if external_elasticsearch_logs_user_configs and not isinstance(external_elasticsearch_logs_user_configs, list):
|
|
45
45
|
raise TypeError("Expected argument 'external_elasticsearch_logs_user_configs' to be a list")
|
|
46
46
|
pulumi.set(__self__, "external_elasticsearch_logs_user_configs", external_elasticsearch_logs_user_configs)
|
|
47
|
+
if external_google_cloud_bigqueries and not isinstance(external_google_cloud_bigqueries, list):
|
|
48
|
+
raise TypeError("Expected argument 'external_google_cloud_bigqueries' to be a list")
|
|
49
|
+
pulumi.set(__self__, "external_google_cloud_bigqueries", external_google_cloud_bigqueries)
|
|
47
50
|
if external_google_cloud_logging_user_configs and not isinstance(external_google_cloud_logging_user_configs, list):
|
|
48
51
|
raise TypeError("Expected argument 'external_google_cloud_logging_user_configs' to be a list")
|
|
49
52
|
pulumi.set(__self__, "external_google_cloud_logging_user_configs", external_google_cloud_logging_user_configs)
|
|
@@ -53,6 +56,9 @@ class GetServiceIntegrationEndpointResult:
|
|
|
53
56
|
if external_opensearch_logs_user_configs and not isinstance(external_opensearch_logs_user_configs, list):
|
|
54
57
|
raise TypeError("Expected argument 'external_opensearch_logs_user_configs' to be a list")
|
|
55
58
|
pulumi.set(__self__, "external_opensearch_logs_user_configs", external_opensearch_logs_user_configs)
|
|
59
|
+
if external_postgresqls and not isinstance(external_postgresqls, list):
|
|
60
|
+
raise TypeError("Expected argument 'external_postgresqls' to be a list")
|
|
61
|
+
pulumi.set(__self__, "external_postgresqls", external_postgresqls)
|
|
56
62
|
if external_schema_registry_user_configs and not isinstance(external_schema_registry_user_configs, list):
|
|
57
63
|
raise TypeError("Expected argument 'external_schema_registry_user_configs' to be a list")
|
|
58
64
|
pulumi.set(__self__, "external_schema_registry_user_configs", external_schema_registry_user_configs)
|
|
@@ -100,7 +106,7 @@ class GetServiceIntegrationEndpointResult:
|
|
|
100
106
|
@pulumi.getter(name="endpointType")
|
|
101
107
|
def endpoint_type(self) -> str:
|
|
102
108
|
"""
|
|
103
|
-
Type of the service integration endpoint. Possible values: `datadog`, `prometheus`, `rsyslog`, `external_elasticsearch_logs`, `external_opensearch_logs`, `external_aws_cloudwatch_logs`, `external_google_cloud_logging`, `external_kafka`, `jolokia`, `external_schema_registry`, `external_aws_cloudwatch_metrics`
|
|
109
|
+
Type of the service integration endpoint. Possible values: `datadog`, `prometheus`, `rsyslog`, `external_elasticsearch_logs`, `external_opensearch_logs`, `external_aws_cloudwatch_logs`, `external_google_cloud_logging`, `external_kafka`, `jolokia`, `external_schema_registry`, `external_aws_cloudwatch_metrics`, `external_google_cloud_bigquery`, `external_postgresql`
|
|
104
110
|
"""
|
|
105
111
|
return pulumi.get(self, "endpoint_type")
|
|
106
112
|
|
|
@@ -128,6 +134,14 @@ class GetServiceIntegrationEndpointResult:
|
|
|
128
134
|
"""
|
|
129
135
|
return pulumi.get(self, "external_elasticsearch_logs_user_configs")
|
|
130
136
|
|
|
137
|
+
@property
|
|
138
|
+
@pulumi.getter(name="externalGoogleCloudBigqueries")
|
|
139
|
+
def external_google_cloud_bigqueries(self) -> Sequence['outputs.GetServiceIntegrationEndpointExternalGoogleCloudBigqueryResult']:
|
|
140
|
+
"""
|
|
141
|
+
ExternalGoogleCloudBigquery user configurable settings
|
|
142
|
+
"""
|
|
143
|
+
return pulumi.get(self, "external_google_cloud_bigqueries")
|
|
144
|
+
|
|
131
145
|
@property
|
|
132
146
|
@pulumi.getter(name="externalGoogleCloudLoggingUserConfigs")
|
|
133
147
|
def external_google_cloud_logging_user_configs(self) -> Sequence['outputs.GetServiceIntegrationEndpointExternalGoogleCloudLoggingUserConfigResult']:
|
|
@@ -152,6 +166,14 @@ class GetServiceIntegrationEndpointResult:
|
|
|
152
166
|
"""
|
|
153
167
|
return pulumi.get(self, "external_opensearch_logs_user_configs")
|
|
154
168
|
|
|
169
|
+
@property
|
|
170
|
+
@pulumi.getter(name="externalPostgresqls")
|
|
171
|
+
def external_postgresqls(self) -> Sequence['outputs.GetServiceIntegrationEndpointExternalPostgresqlResult']:
|
|
172
|
+
"""
|
|
173
|
+
ExternalPostgresql user configurable settings
|
|
174
|
+
"""
|
|
175
|
+
return pulumi.get(self, "external_postgresqls")
|
|
176
|
+
|
|
155
177
|
@property
|
|
156
178
|
@pulumi.getter(name="externalSchemaRegistryUserConfigs")
|
|
157
179
|
def external_schema_registry_user_configs(self) -> Sequence['outputs.GetServiceIntegrationEndpointExternalSchemaRegistryUserConfigResult']:
|
|
@@ -214,9 +236,11 @@ class AwaitableGetServiceIntegrationEndpointResult(GetServiceIntegrationEndpoint
|
|
|
214
236
|
external_aws_cloudwatch_logs_user_configs=self.external_aws_cloudwatch_logs_user_configs,
|
|
215
237
|
external_aws_cloudwatch_metrics_user_configs=self.external_aws_cloudwatch_metrics_user_configs,
|
|
216
238
|
external_elasticsearch_logs_user_configs=self.external_elasticsearch_logs_user_configs,
|
|
239
|
+
external_google_cloud_bigqueries=self.external_google_cloud_bigqueries,
|
|
217
240
|
external_google_cloud_logging_user_configs=self.external_google_cloud_logging_user_configs,
|
|
218
241
|
external_kafka_user_configs=self.external_kafka_user_configs,
|
|
219
242
|
external_opensearch_logs_user_configs=self.external_opensearch_logs_user_configs,
|
|
243
|
+
external_postgresqls=self.external_postgresqls,
|
|
220
244
|
external_schema_registry_user_configs=self.external_schema_registry_user_configs,
|
|
221
245
|
id=self.id,
|
|
222
246
|
jolokia_user_configs=self.jolokia_user_configs,
|
|
@@ -259,9 +283,11 @@ def get_service_integration_endpoint(endpoint_name: Optional[str] = None,
|
|
|
259
283
|
external_aws_cloudwatch_logs_user_configs=pulumi.get(__ret__, 'external_aws_cloudwatch_logs_user_configs'),
|
|
260
284
|
external_aws_cloudwatch_metrics_user_configs=pulumi.get(__ret__, 'external_aws_cloudwatch_metrics_user_configs'),
|
|
261
285
|
external_elasticsearch_logs_user_configs=pulumi.get(__ret__, 'external_elasticsearch_logs_user_configs'),
|
|
286
|
+
external_google_cloud_bigqueries=pulumi.get(__ret__, 'external_google_cloud_bigqueries'),
|
|
262
287
|
external_google_cloud_logging_user_configs=pulumi.get(__ret__, 'external_google_cloud_logging_user_configs'),
|
|
263
288
|
external_kafka_user_configs=pulumi.get(__ret__, 'external_kafka_user_configs'),
|
|
264
289
|
external_opensearch_logs_user_configs=pulumi.get(__ret__, 'external_opensearch_logs_user_configs'),
|
|
290
|
+
external_postgresqls=pulumi.get(__ret__, 'external_postgresqls'),
|
|
265
291
|
external_schema_registry_user_configs=pulumi.get(__ret__, 'external_schema_registry_user_configs'),
|
|
266
292
|
id=pulumi.get(__ret__, 'id'),
|
|
267
293
|
jolokia_user_configs=pulumi.get(__ret__, 'jolokia_user_configs'),
|
pulumi_aiven/grafana.py
CHANGED
|
@@ -29,6 +29,7 @@ class GrafanaArgs:
|
|
|
29
29
|
service_name: Optional[pulumi.Input[str]] = None,
|
|
30
30
|
static_ips: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
31
31
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input['GrafanaTagArgs']]]] = None,
|
|
32
|
+
tech_emails: Optional[pulumi.Input[Sequence[pulumi.Input['GrafanaTechEmailArgs']]]] = None,
|
|
32
33
|
termination_protection: Optional[pulumi.Input[bool]] = None):
|
|
33
34
|
"""
|
|
34
35
|
The set of arguments for constructing a Grafana resource.
|
|
@@ -63,6 +64,8 @@ class GrafanaArgs:
|
|
|
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['GrafanaTagArgs']]] tags: Tags are key-value pairs that allow you to categorize services.
|
|
67
|
+
:param pulumi.Input[Sequence[pulumi.Input['GrafanaTechEmailArgs']]] 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.
|
|
@@ -94,6 +97,8 @@ class GrafanaArgs:
|
|
|
94
97
|
pulumi.set(__self__, "static_ips", static_ips)
|
|
95
98
|
if tags is not None:
|
|
96
99
|
pulumi.set(__self__, "tags", tags)
|
|
100
|
+
if tech_emails is not None:
|
|
101
|
+
pulumi.set(__self__, "tech_emails", tech_emails)
|
|
97
102
|
if termination_protection is not None:
|
|
98
103
|
pulumi.set(__self__, "termination_protection", termination_protection)
|
|
99
104
|
|
|
@@ -274,6 +279,19 @@ class GrafanaArgs:
|
|
|
274
279
|
def tags(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['GrafanaTagArgs']]]]):
|
|
275
280
|
pulumi.set(self, "tags", value)
|
|
276
281
|
|
|
282
|
+
@property
|
|
283
|
+
@pulumi.getter(name="techEmails")
|
|
284
|
+
def tech_emails(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['GrafanaTechEmailArgs']]]]:
|
|
285
|
+
"""
|
|
286
|
+
Defines the email addresses that will receive alerts about upcoming maintenance updates or warnings about service
|
|
287
|
+
instability.
|
|
288
|
+
"""
|
|
289
|
+
return pulumi.get(self, "tech_emails")
|
|
290
|
+
|
|
291
|
+
@tech_emails.setter
|
|
292
|
+
def tech_emails(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['GrafanaTechEmailArgs']]]]):
|
|
293
|
+
pulumi.set(self, "tech_emails", value)
|
|
294
|
+
|
|
277
295
|
@property
|
|
278
296
|
@pulumi.getter(name="terminationProtection")
|
|
279
297
|
def termination_protection(self) -> Optional[pulumi.Input[bool]]:
|
|
@@ -318,6 +336,7 @@ class _GrafanaState:
|
|
|
318
336
|
state: Optional[pulumi.Input[str]] = None,
|
|
319
337
|
static_ips: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
320
338
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input['GrafanaTagArgs']]]] = None,
|
|
339
|
+
tech_emails: Optional[pulumi.Input[Sequence[pulumi.Input['GrafanaTechEmailArgs']]]] = None,
|
|
321
340
|
termination_protection: Optional[pulumi.Input[bool]] = None):
|
|
322
341
|
"""
|
|
323
342
|
Input properties used for looking up and filtering Grafana resources.
|
|
@@ -367,6 +386,8 @@ class _GrafanaState:
|
|
|
367
386
|
: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
|
|
368
387
|
static ip resource is in the 'assigned' state it cannot be unbound from the node again
|
|
369
388
|
:param pulumi.Input[Sequence[pulumi.Input['GrafanaTagArgs']]] tags: Tags are key-value pairs that allow you to categorize services.
|
|
389
|
+
:param pulumi.Input[Sequence[pulumi.Input['GrafanaTechEmailArgs']]] tech_emails: Defines the email addresses that will receive alerts about upcoming maintenance updates or warnings about service
|
|
390
|
+
instability.
|
|
370
391
|
: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
|
|
371
392
|
unintentional service deletion. This does not shield against deleting databases or topics but for services with backups
|
|
372
393
|
much of the content can at least be restored from backup in case accidental deletion is done.
|
|
@@ -426,6 +447,8 @@ class _GrafanaState:
|
|
|
426
447
|
pulumi.set(__self__, "static_ips", static_ips)
|
|
427
448
|
if tags is not None:
|
|
428
449
|
pulumi.set(__self__, "tags", tags)
|
|
450
|
+
if tech_emails is not None:
|
|
451
|
+
pulumi.set(__self__, "tech_emails", tech_emails)
|
|
429
452
|
if termination_protection is not None:
|
|
430
453
|
pulumi.set(__self__, "termination_protection", termination_protection)
|
|
431
454
|
|
|
@@ -764,6 +787,19 @@ class _GrafanaState:
|
|
|
764
787
|
def tags(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['GrafanaTagArgs']]]]):
|
|
765
788
|
pulumi.set(self, "tags", value)
|
|
766
789
|
|
|
790
|
+
@property
|
|
791
|
+
@pulumi.getter(name="techEmails")
|
|
792
|
+
def tech_emails(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['GrafanaTechEmailArgs']]]]:
|
|
793
|
+
"""
|
|
794
|
+
Defines the email addresses that will receive alerts about upcoming maintenance updates or warnings about service
|
|
795
|
+
instability.
|
|
796
|
+
"""
|
|
797
|
+
return pulumi.get(self, "tech_emails")
|
|
798
|
+
|
|
799
|
+
@tech_emails.setter
|
|
800
|
+
def tech_emails(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['GrafanaTechEmailArgs']]]]):
|
|
801
|
+
pulumi.set(self, "tech_emails", value)
|
|
802
|
+
|
|
767
803
|
@property
|
|
768
804
|
@pulumi.getter(name="terminationProtection")
|
|
769
805
|
def termination_protection(self) -> Optional[pulumi.Input[bool]]:
|
|
@@ -797,6 +833,7 @@ class Grafana(pulumi.CustomResource):
|
|
|
797
833
|
service_name: Optional[pulumi.Input[str]] = None,
|
|
798
834
|
static_ips: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
799
835
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['GrafanaTagArgs']]]]] = None,
|
|
836
|
+
tech_emails: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['GrafanaTechEmailArgs']]]]] = None,
|
|
800
837
|
termination_protection: Optional[pulumi.Input[bool]] = None,
|
|
801
838
|
__props__=None):
|
|
802
839
|
"""
|
|
@@ -861,6 +898,8 @@ class Grafana(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['GrafanaTagArgs']]]] tags: Tags are key-value pairs that allow you to categorize services.
|
|
901
|
+
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['GrafanaTechEmailArgs']]]] 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.
|
|
@@ -928,6 +967,7 @@ class Grafana(pulumi.CustomResource):
|
|
|
928
967
|
service_name: Optional[pulumi.Input[str]] = None,
|
|
929
968
|
static_ips: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
930
969
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['GrafanaTagArgs']]]]] = None,
|
|
970
|
+
tech_emails: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['GrafanaTechEmailArgs']]]]] = None,
|
|
931
971
|
termination_protection: Optional[pulumi.Input[bool]] = None,
|
|
932
972
|
__props__=None):
|
|
933
973
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
|
@@ -955,6 +995,7 @@ class Grafana(pulumi.CustomResource):
|
|
|
955
995
|
__props__.__dict__["service_name"] = service_name
|
|
956
996
|
__props__.__dict__["static_ips"] = static_ips
|
|
957
997
|
__props__.__dict__["tags"] = tags
|
|
998
|
+
__props__.__dict__["tech_emails"] = tech_emails
|
|
958
999
|
__props__.__dict__["termination_protection"] = termination_protection
|
|
959
1000
|
__props__.__dict__["components"] = None
|
|
960
1001
|
__props__.__dict__["disk_space_cap"] = None
|
|
@@ -1007,6 +1048,7 @@ class Grafana(pulumi.CustomResource):
|
|
|
1007
1048
|
state: Optional[pulumi.Input[str]] = None,
|
|
1008
1049
|
static_ips: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
1009
1050
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['GrafanaTagArgs']]]]] = None,
|
|
1051
|
+
tech_emails: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['GrafanaTechEmailArgs']]]]] = None,
|
|
1010
1052
|
termination_protection: Optional[pulumi.Input[bool]] = None) -> 'Grafana':
|
|
1011
1053
|
"""
|
|
1012
1054
|
Get an existing Grafana resource's state with the given name, id, and optional extra
|
|
@@ -1061,6 +1103,8 @@ class Grafana(pulumi.CustomResource):
|
|
|
1061
1103
|
: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
|
|
1062
1104
|
static ip resource is in the 'assigned' state it cannot be unbound from the node again
|
|
1063
1105
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['GrafanaTagArgs']]]] tags: Tags are key-value pairs that allow you to categorize services.
|
|
1106
|
+
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['GrafanaTechEmailArgs']]]] tech_emails: Defines the email addresses that will receive alerts about upcoming maintenance updates or warnings about service
|
|
1107
|
+
instability.
|
|
1064
1108
|
: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
|
|
1065
1109
|
unintentional service deletion. This does not shield against deleting databases or topics but for services with backups
|
|
1066
1110
|
much of the content can at least be restored from backup in case accidental deletion is done.
|
|
@@ -1095,6 +1139,7 @@ class Grafana(pulumi.CustomResource):
|
|
|
1095
1139
|
__props__.__dict__["state"] = state
|
|
1096
1140
|
__props__.__dict__["static_ips"] = static_ips
|
|
1097
1141
|
__props__.__dict__["tags"] = tags
|
|
1142
|
+
__props__.__dict__["tech_emails"] = tech_emails
|
|
1098
1143
|
__props__.__dict__["termination_protection"] = termination_protection
|
|
1099
1144
|
return Grafana(resource_name, opts=opts, __props__=__props__)
|
|
1100
1145
|
|
|
@@ -1329,6 +1374,15 @@ class Grafana(pulumi.CustomResource):
|
|
|
1329
1374
|
"""
|
|
1330
1375
|
return pulumi.get(self, "tags")
|
|
1331
1376
|
|
|
1377
|
+
@property
|
|
1378
|
+
@pulumi.getter(name="techEmails")
|
|
1379
|
+
def tech_emails(self) -> pulumi.Output[Optional[Sequence['outputs.GrafanaTechEmail']]]:
|
|
1380
|
+
"""
|
|
1381
|
+
Defines the email addresses that will receive alerts about upcoming maintenance updates or warnings about service
|
|
1382
|
+
instability.
|
|
1383
|
+
"""
|
|
1384
|
+
return pulumi.get(self, "tech_emails")
|
|
1385
|
+
|
|
1332
1386
|
@property
|
|
1333
1387
|
@pulumi.getter(name="terminationProtection")
|
|
1334
1388
|
def termination_protection(self) -> pulumi.Output[Optional[bool]]:
|