pulumi-signalfx 7.2.0a1710160099__py3-none-any.whl → 7.6.0a1736835428__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_signalfx/__init__.py +9 -0
- pulumi_signalfx/_inputs.py +1976 -339
- pulumi_signalfx/_utilities.py +41 -5
- pulumi_signalfx/alert_muting_rule.py +126 -72
- pulumi_signalfx/aws/_inputs.py +85 -16
- pulumi_signalfx/aws/external_integration.py +20 -43
- pulumi_signalfx/aws/integration.py +252 -321
- pulumi_signalfx/aws/outputs.py +21 -16
- pulumi_signalfx/aws/token_integration.py +76 -31
- pulumi_signalfx/azure/_inputs.py +41 -4
- pulumi_signalfx/azure/integration.py +170 -217
- pulumi_signalfx/azure/outputs.py +15 -4
- pulumi_signalfx/config/__init__.pyi +22 -0
- pulumi_signalfx/config/vars.py +28 -0
- pulumi_signalfx/dashboard.py +171 -186
- pulumi_signalfx/dashboard_group.py +191 -140
- pulumi_signalfx/data_link.py +102 -109
- pulumi_signalfx/detector.py +318 -383
- pulumi_signalfx/event_feed_chart.py +51 -86
- pulumi_signalfx/gcp/_inputs.py +51 -0
- pulumi_signalfx/gcp/integration.py +224 -148
- pulumi_signalfx/gcp/outputs.py +44 -0
- pulumi_signalfx/get_dimension_values.py +47 -8
- pulumi_signalfx/heatmap_chart.py +191 -174
- pulumi_signalfx/jira/integration.py +86 -103
- pulumi_signalfx/list_chart.py +243 -255
- pulumi_signalfx/log/_inputs.py +33 -2
- pulumi_signalfx/log/outputs.py +7 -2
- pulumi_signalfx/log/timeline.py +76 -87
- pulumi_signalfx/log/view.py +146 -113
- pulumi_signalfx/metric_ruleset.py +213 -70
- pulumi_signalfx/opsgenie/integration.py +51 -50
- pulumi_signalfx/org_token.py +111 -104
- pulumi_signalfx/outputs.py +661 -339
- pulumi_signalfx/pagerduty/get_integration.py +22 -25
- pulumi_signalfx/pagerduty/integration.py +42 -39
- pulumi_signalfx/provider.py +99 -0
- pulumi_signalfx/pulumi-plugin.json +2 -1
- pulumi_signalfx/servicenow/integration.py +68 -95
- pulumi_signalfx/single_value_chart.py +131 -162
- pulumi_signalfx/slack/integration.py +42 -41
- pulumi_signalfx/slo.py +97 -243
- pulumi_signalfx/slo_chart.py +197 -0
- pulumi_signalfx/table_chart.py +66 -65
- pulumi_signalfx/team.py +100 -107
- pulumi_signalfx/text_chart.py +72 -45
- pulumi_signalfx/time_chart.py +287 -352
- pulumi_signalfx/victorops/integration.py +42 -41
- pulumi_signalfx/webhook_integration.py +168 -61
- {pulumi_signalfx-7.2.0a1710160099.dist-info → pulumi_signalfx-7.6.0a1736835428.dist-info}/METADATA +7 -6
- pulumi_signalfx-7.6.0a1736835428.dist-info/RECORD +65 -0
- {pulumi_signalfx-7.2.0a1710160099.dist-info → pulumi_signalfx-7.6.0a1736835428.dist-info}/WHEEL +1 -1
- pulumi_signalfx-7.2.0a1710160099.dist-info/RECORD +0 -64
- {pulumi_signalfx-7.2.0a1710160099.dist-info → pulumi_signalfx-7.6.0a1736835428.dist-info}/top_level.txt +0 -0
pulumi_signalfx/team.py
CHANGED
|
@@ -4,9 +4,14 @@
|
|
|
4
4
|
|
|
5
5
|
import copy
|
|
6
6
|
import warnings
|
|
7
|
+
import sys
|
|
7
8
|
import pulumi
|
|
8
9
|
import pulumi.runtime
|
|
9
10
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
+
if sys.version_info >= (3, 11):
|
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
+
else:
|
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
10
15
|
from . import _utilities
|
|
11
16
|
|
|
12
17
|
__all__ = ['TeamArgs', 'Team']
|
|
@@ -25,15 +30,15 @@ class TeamArgs:
|
|
|
25
30
|
notifications_warnings: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
|
|
26
31
|
"""
|
|
27
32
|
The set of arguments for constructing a Team resource.
|
|
28
|
-
:param pulumi.Input[str] description: Description of the team
|
|
29
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] members:
|
|
30
|
-
:param pulumi.Input[str] name: Name of the team
|
|
31
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] notifications_criticals:
|
|
32
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] notifications_defaults:
|
|
33
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] notifications_infos:
|
|
34
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] notifications_majors:
|
|
35
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] notifications_minors:
|
|
36
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] notifications_warnings:
|
|
33
|
+
:param pulumi.Input[str] description: Description of the team.
|
|
34
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] members: List of user IDs to include in the team.
|
|
35
|
+
:param pulumi.Input[str] name: Name of the team.
|
|
36
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] notifications_criticals: Where to send notifications for critical alerts
|
|
37
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] notifications_defaults: Where to send notifications for default alerts
|
|
38
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] notifications_infos: Where to send notifications for info alerts
|
|
39
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] notifications_majors: Where to send notifications for major alerts
|
|
40
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] notifications_minors: Where to send notifications for minor alerts
|
|
41
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] notifications_warnings: Where to send notifications for warning alerts
|
|
37
42
|
"""
|
|
38
43
|
if description is not None:
|
|
39
44
|
pulumi.set(__self__, "description", description)
|
|
@@ -58,7 +63,7 @@ class TeamArgs:
|
|
|
58
63
|
@pulumi.getter
|
|
59
64
|
def description(self) -> Optional[pulumi.Input[str]]:
|
|
60
65
|
"""
|
|
61
|
-
Description of the team
|
|
66
|
+
Description of the team.
|
|
62
67
|
"""
|
|
63
68
|
return pulumi.get(self, "description")
|
|
64
69
|
|
|
@@ -70,7 +75,7 @@ class TeamArgs:
|
|
|
70
75
|
@pulumi.getter
|
|
71
76
|
def members(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
72
77
|
"""
|
|
73
|
-
|
|
78
|
+
List of user IDs to include in the team.
|
|
74
79
|
"""
|
|
75
80
|
return pulumi.get(self, "members")
|
|
76
81
|
|
|
@@ -82,7 +87,7 @@ class TeamArgs:
|
|
|
82
87
|
@pulumi.getter
|
|
83
88
|
def name(self) -> Optional[pulumi.Input[str]]:
|
|
84
89
|
"""
|
|
85
|
-
Name of the team
|
|
90
|
+
Name of the team.
|
|
86
91
|
"""
|
|
87
92
|
return pulumi.get(self, "name")
|
|
88
93
|
|
|
@@ -94,7 +99,7 @@ class TeamArgs:
|
|
|
94
99
|
@pulumi.getter(name="notificationsCriticals")
|
|
95
100
|
def notifications_criticals(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
96
101
|
"""
|
|
97
|
-
|
|
102
|
+
Where to send notifications for critical alerts
|
|
98
103
|
"""
|
|
99
104
|
return pulumi.get(self, "notifications_criticals")
|
|
100
105
|
|
|
@@ -106,7 +111,7 @@ class TeamArgs:
|
|
|
106
111
|
@pulumi.getter(name="notificationsDefaults")
|
|
107
112
|
def notifications_defaults(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
108
113
|
"""
|
|
109
|
-
|
|
114
|
+
Where to send notifications for default alerts
|
|
110
115
|
"""
|
|
111
116
|
return pulumi.get(self, "notifications_defaults")
|
|
112
117
|
|
|
@@ -118,7 +123,7 @@ class TeamArgs:
|
|
|
118
123
|
@pulumi.getter(name="notificationsInfos")
|
|
119
124
|
def notifications_infos(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
120
125
|
"""
|
|
121
|
-
|
|
126
|
+
Where to send notifications for info alerts
|
|
122
127
|
"""
|
|
123
128
|
return pulumi.get(self, "notifications_infos")
|
|
124
129
|
|
|
@@ -130,7 +135,7 @@ class TeamArgs:
|
|
|
130
135
|
@pulumi.getter(name="notificationsMajors")
|
|
131
136
|
def notifications_majors(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
132
137
|
"""
|
|
133
|
-
|
|
138
|
+
Where to send notifications for major alerts
|
|
134
139
|
"""
|
|
135
140
|
return pulumi.get(self, "notifications_majors")
|
|
136
141
|
|
|
@@ -142,7 +147,7 @@ class TeamArgs:
|
|
|
142
147
|
@pulumi.getter(name="notificationsMinors")
|
|
143
148
|
def notifications_minors(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
144
149
|
"""
|
|
145
|
-
|
|
150
|
+
Where to send notifications for minor alerts
|
|
146
151
|
"""
|
|
147
152
|
return pulumi.get(self, "notifications_minors")
|
|
148
153
|
|
|
@@ -154,7 +159,7 @@ class TeamArgs:
|
|
|
154
159
|
@pulumi.getter(name="notificationsWarnings")
|
|
155
160
|
def notifications_warnings(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
156
161
|
"""
|
|
157
|
-
|
|
162
|
+
Where to send notifications for warning alerts
|
|
158
163
|
"""
|
|
159
164
|
return pulumi.get(self, "notifications_warnings")
|
|
160
165
|
|
|
@@ -178,16 +183,16 @@ class _TeamState:
|
|
|
178
183
|
url: Optional[pulumi.Input[str]] = None):
|
|
179
184
|
"""
|
|
180
185
|
Input properties used for looking up and filtering Team resources.
|
|
181
|
-
:param pulumi.Input[str] description: Description of the team
|
|
182
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] members:
|
|
183
|
-
:param pulumi.Input[str] name: Name of the team
|
|
184
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] notifications_criticals:
|
|
185
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] notifications_defaults:
|
|
186
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] notifications_infos:
|
|
187
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] notifications_majors:
|
|
188
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] notifications_minors:
|
|
189
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] notifications_warnings:
|
|
190
|
-
:param pulumi.Input[str] url: URL of the team
|
|
186
|
+
:param pulumi.Input[str] description: Description of the team.
|
|
187
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] members: List of user IDs to include in the team.
|
|
188
|
+
:param pulumi.Input[str] name: Name of the team.
|
|
189
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] notifications_criticals: Where to send notifications for critical alerts
|
|
190
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] notifications_defaults: Where to send notifications for default alerts
|
|
191
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] notifications_infos: Where to send notifications for info alerts
|
|
192
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] notifications_majors: Where to send notifications for major alerts
|
|
193
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] notifications_minors: Where to send notifications for minor alerts
|
|
194
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] notifications_warnings: Where to send notifications for warning alerts
|
|
195
|
+
:param pulumi.Input[str] url: The URL of the team.
|
|
191
196
|
"""
|
|
192
197
|
if description is not None:
|
|
193
198
|
pulumi.set(__self__, "description", description)
|
|
@@ -214,7 +219,7 @@ class _TeamState:
|
|
|
214
219
|
@pulumi.getter
|
|
215
220
|
def description(self) -> Optional[pulumi.Input[str]]:
|
|
216
221
|
"""
|
|
217
|
-
Description of the team
|
|
222
|
+
Description of the team.
|
|
218
223
|
"""
|
|
219
224
|
return pulumi.get(self, "description")
|
|
220
225
|
|
|
@@ -226,7 +231,7 @@ class _TeamState:
|
|
|
226
231
|
@pulumi.getter
|
|
227
232
|
def members(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
228
233
|
"""
|
|
229
|
-
|
|
234
|
+
List of user IDs to include in the team.
|
|
230
235
|
"""
|
|
231
236
|
return pulumi.get(self, "members")
|
|
232
237
|
|
|
@@ -238,7 +243,7 @@ class _TeamState:
|
|
|
238
243
|
@pulumi.getter
|
|
239
244
|
def name(self) -> Optional[pulumi.Input[str]]:
|
|
240
245
|
"""
|
|
241
|
-
Name of the team
|
|
246
|
+
Name of the team.
|
|
242
247
|
"""
|
|
243
248
|
return pulumi.get(self, "name")
|
|
244
249
|
|
|
@@ -250,7 +255,7 @@ class _TeamState:
|
|
|
250
255
|
@pulumi.getter(name="notificationsCriticals")
|
|
251
256
|
def notifications_criticals(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
252
257
|
"""
|
|
253
|
-
|
|
258
|
+
Where to send notifications for critical alerts
|
|
254
259
|
"""
|
|
255
260
|
return pulumi.get(self, "notifications_criticals")
|
|
256
261
|
|
|
@@ -262,7 +267,7 @@ class _TeamState:
|
|
|
262
267
|
@pulumi.getter(name="notificationsDefaults")
|
|
263
268
|
def notifications_defaults(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
264
269
|
"""
|
|
265
|
-
|
|
270
|
+
Where to send notifications for default alerts
|
|
266
271
|
"""
|
|
267
272
|
return pulumi.get(self, "notifications_defaults")
|
|
268
273
|
|
|
@@ -274,7 +279,7 @@ class _TeamState:
|
|
|
274
279
|
@pulumi.getter(name="notificationsInfos")
|
|
275
280
|
def notifications_infos(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
276
281
|
"""
|
|
277
|
-
|
|
282
|
+
Where to send notifications for info alerts
|
|
278
283
|
"""
|
|
279
284
|
return pulumi.get(self, "notifications_infos")
|
|
280
285
|
|
|
@@ -286,7 +291,7 @@ class _TeamState:
|
|
|
286
291
|
@pulumi.getter(name="notificationsMajors")
|
|
287
292
|
def notifications_majors(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
288
293
|
"""
|
|
289
|
-
|
|
294
|
+
Where to send notifications for major alerts
|
|
290
295
|
"""
|
|
291
296
|
return pulumi.get(self, "notifications_majors")
|
|
292
297
|
|
|
@@ -298,7 +303,7 @@ class _TeamState:
|
|
|
298
303
|
@pulumi.getter(name="notificationsMinors")
|
|
299
304
|
def notifications_minors(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
300
305
|
"""
|
|
301
|
-
|
|
306
|
+
Where to send notifications for minor alerts
|
|
302
307
|
"""
|
|
303
308
|
return pulumi.get(self, "notifications_minors")
|
|
304
309
|
|
|
@@ -310,7 +315,7 @@ class _TeamState:
|
|
|
310
315
|
@pulumi.getter(name="notificationsWarnings")
|
|
311
316
|
def notifications_warnings(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
312
317
|
"""
|
|
313
|
-
|
|
318
|
+
Where to send notifications for warning alerts
|
|
314
319
|
"""
|
|
315
320
|
return pulumi.get(self, "notifications_warnings")
|
|
316
321
|
|
|
@@ -322,7 +327,7 @@ class _TeamState:
|
|
|
322
327
|
@pulumi.getter
|
|
323
328
|
def url(self) -> Optional[pulumi.Input[str]]:
|
|
324
329
|
"""
|
|
325
|
-
URL of the team
|
|
330
|
+
The URL of the team.
|
|
326
331
|
"""
|
|
327
332
|
return pulumi.get(self, "url")
|
|
328
333
|
|
|
@@ -355,38 +360,32 @@ class Team(pulumi.CustomResource):
|
|
|
355
360
|
|
|
356
361
|
## Example
|
|
357
362
|
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
## Attributes
|
|
373
|
-
|
|
374
|
-
In a addition to all arguments above, the following attributes are exported:
|
|
375
|
-
|
|
376
|
-
* `id` - The ID of the team.
|
|
377
|
-
* `url` - The URL of the team.
|
|
363
|
+
```python
|
|
364
|
+
import pulumi
|
|
365
|
+
import pulumi_signalfx as signalfx
|
|
366
|
+
|
|
367
|
+
myteam0 = signalfx.Team("myteam0",
|
|
368
|
+
name="Best Team Ever",
|
|
369
|
+
description="Super great team no jerks definitely",
|
|
370
|
+
members=[
|
|
371
|
+
"userid1",
|
|
372
|
+
"userid2",
|
|
373
|
+
],
|
|
374
|
+
notifications_criticals=["PagerDuty,credentialId"],
|
|
375
|
+
notifications_infos=["Email,notify@example.com"])
|
|
376
|
+
```
|
|
378
377
|
|
|
379
378
|
:param str resource_name: The name of the resource.
|
|
380
379
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
381
|
-
:param pulumi.Input[str] description: Description of the team
|
|
382
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] members:
|
|
383
|
-
:param pulumi.Input[str] name: Name of the team
|
|
384
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] notifications_criticals:
|
|
385
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] notifications_defaults:
|
|
386
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] notifications_infos:
|
|
387
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] notifications_majors:
|
|
388
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] notifications_minors:
|
|
389
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] notifications_warnings:
|
|
380
|
+
:param pulumi.Input[str] description: Description of the team.
|
|
381
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] members: List of user IDs to include in the team.
|
|
382
|
+
:param pulumi.Input[str] name: Name of the team.
|
|
383
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] notifications_criticals: Where to send notifications for critical alerts
|
|
384
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] notifications_defaults: Where to send notifications for default alerts
|
|
385
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] notifications_infos: Where to send notifications for info alerts
|
|
386
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] notifications_majors: Where to send notifications for major alerts
|
|
387
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] notifications_minors: Where to send notifications for minor alerts
|
|
388
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] notifications_warnings: Where to send notifications for warning alerts
|
|
390
389
|
"""
|
|
391
390
|
...
|
|
392
391
|
@overload
|
|
@@ -403,26 +402,20 @@ class Team(pulumi.CustomResource):
|
|
|
403
402
|
|
|
404
403
|
## Example
|
|
405
404
|
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
## Attributes
|
|
421
|
-
|
|
422
|
-
In a addition to all arguments above, the following attributes are exported:
|
|
423
|
-
|
|
424
|
-
* `id` - The ID of the team.
|
|
425
|
-
* `url` - The URL of the team.
|
|
405
|
+
```python
|
|
406
|
+
import pulumi
|
|
407
|
+
import pulumi_signalfx as signalfx
|
|
408
|
+
|
|
409
|
+
myteam0 = signalfx.Team("myteam0",
|
|
410
|
+
name="Best Team Ever",
|
|
411
|
+
description="Super great team no jerks definitely",
|
|
412
|
+
members=[
|
|
413
|
+
"userid1",
|
|
414
|
+
"userid2",
|
|
415
|
+
],
|
|
416
|
+
notifications_criticals=["PagerDuty,credentialId"],
|
|
417
|
+
notifications_infos=["Email,notify@example.com"])
|
|
418
|
+
```
|
|
426
419
|
|
|
427
420
|
:param str resource_name: The name of the resource.
|
|
428
421
|
:param TeamArgs args: The arguments to use to populate this resource's properties.
|
|
@@ -494,16 +487,16 @@ class Team(pulumi.CustomResource):
|
|
|
494
487
|
:param str resource_name: The unique name of the resulting resource.
|
|
495
488
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
496
489
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
497
|
-
:param pulumi.Input[str] description: Description of the team
|
|
498
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] members:
|
|
499
|
-
:param pulumi.Input[str] name: Name of the team
|
|
500
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] notifications_criticals:
|
|
501
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] notifications_defaults:
|
|
502
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] notifications_infos:
|
|
503
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] notifications_majors:
|
|
504
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] notifications_minors:
|
|
505
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] notifications_warnings:
|
|
506
|
-
:param pulumi.Input[str] url: URL of the team
|
|
490
|
+
:param pulumi.Input[str] description: Description of the team.
|
|
491
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] members: List of user IDs to include in the team.
|
|
492
|
+
:param pulumi.Input[str] name: Name of the team.
|
|
493
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] notifications_criticals: Where to send notifications for critical alerts
|
|
494
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] notifications_defaults: Where to send notifications for default alerts
|
|
495
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] notifications_infos: Where to send notifications for info alerts
|
|
496
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] notifications_majors: Where to send notifications for major alerts
|
|
497
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] notifications_minors: Where to send notifications for minor alerts
|
|
498
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] notifications_warnings: Where to send notifications for warning alerts
|
|
499
|
+
:param pulumi.Input[str] url: The URL of the team.
|
|
507
500
|
"""
|
|
508
501
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
509
502
|
|
|
@@ -525,7 +518,7 @@ class Team(pulumi.CustomResource):
|
|
|
525
518
|
@pulumi.getter
|
|
526
519
|
def description(self) -> pulumi.Output[Optional[str]]:
|
|
527
520
|
"""
|
|
528
|
-
Description of the team
|
|
521
|
+
Description of the team.
|
|
529
522
|
"""
|
|
530
523
|
return pulumi.get(self, "description")
|
|
531
524
|
|
|
@@ -533,7 +526,7 @@ class Team(pulumi.CustomResource):
|
|
|
533
526
|
@pulumi.getter
|
|
534
527
|
def members(self) -> pulumi.Output[Optional[Sequence[str]]]:
|
|
535
528
|
"""
|
|
536
|
-
|
|
529
|
+
List of user IDs to include in the team.
|
|
537
530
|
"""
|
|
538
531
|
return pulumi.get(self, "members")
|
|
539
532
|
|
|
@@ -541,7 +534,7 @@ class Team(pulumi.CustomResource):
|
|
|
541
534
|
@pulumi.getter
|
|
542
535
|
def name(self) -> pulumi.Output[str]:
|
|
543
536
|
"""
|
|
544
|
-
Name of the team
|
|
537
|
+
Name of the team.
|
|
545
538
|
"""
|
|
546
539
|
return pulumi.get(self, "name")
|
|
547
540
|
|
|
@@ -549,7 +542,7 @@ class Team(pulumi.CustomResource):
|
|
|
549
542
|
@pulumi.getter(name="notificationsCriticals")
|
|
550
543
|
def notifications_criticals(self) -> pulumi.Output[Optional[Sequence[str]]]:
|
|
551
544
|
"""
|
|
552
|
-
|
|
545
|
+
Where to send notifications for critical alerts
|
|
553
546
|
"""
|
|
554
547
|
return pulumi.get(self, "notifications_criticals")
|
|
555
548
|
|
|
@@ -557,7 +550,7 @@ class Team(pulumi.CustomResource):
|
|
|
557
550
|
@pulumi.getter(name="notificationsDefaults")
|
|
558
551
|
def notifications_defaults(self) -> pulumi.Output[Optional[Sequence[str]]]:
|
|
559
552
|
"""
|
|
560
|
-
|
|
553
|
+
Where to send notifications for default alerts
|
|
561
554
|
"""
|
|
562
555
|
return pulumi.get(self, "notifications_defaults")
|
|
563
556
|
|
|
@@ -565,7 +558,7 @@ class Team(pulumi.CustomResource):
|
|
|
565
558
|
@pulumi.getter(name="notificationsInfos")
|
|
566
559
|
def notifications_infos(self) -> pulumi.Output[Optional[Sequence[str]]]:
|
|
567
560
|
"""
|
|
568
|
-
|
|
561
|
+
Where to send notifications for info alerts
|
|
569
562
|
"""
|
|
570
563
|
return pulumi.get(self, "notifications_infos")
|
|
571
564
|
|
|
@@ -573,7 +566,7 @@ class Team(pulumi.CustomResource):
|
|
|
573
566
|
@pulumi.getter(name="notificationsMajors")
|
|
574
567
|
def notifications_majors(self) -> pulumi.Output[Optional[Sequence[str]]]:
|
|
575
568
|
"""
|
|
576
|
-
|
|
569
|
+
Where to send notifications for major alerts
|
|
577
570
|
"""
|
|
578
571
|
return pulumi.get(self, "notifications_majors")
|
|
579
572
|
|
|
@@ -581,7 +574,7 @@ class Team(pulumi.CustomResource):
|
|
|
581
574
|
@pulumi.getter(name="notificationsMinors")
|
|
582
575
|
def notifications_minors(self) -> pulumi.Output[Optional[Sequence[str]]]:
|
|
583
576
|
"""
|
|
584
|
-
|
|
577
|
+
Where to send notifications for minor alerts
|
|
585
578
|
"""
|
|
586
579
|
return pulumi.get(self, "notifications_minors")
|
|
587
580
|
|
|
@@ -589,7 +582,7 @@ class Team(pulumi.CustomResource):
|
|
|
589
582
|
@pulumi.getter(name="notificationsWarnings")
|
|
590
583
|
def notifications_warnings(self) -> pulumi.Output[Optional[Sequence[str]]]:
|
|
591
584
|
"""
|
|
592
|
-
|
|
585
|
+
Where to send notifications for warning alerts
|
|
593
586
|
"""
|
|
594
587
|
return pulumi.get(self, "notifications_warnings")
|
|
595
588
|
|
|
@@ -597,7 +590,7 @@ class Team(pulumi.CustomResource):
|
|
|
597
590
|
@pulumi.getter
|
|
598
591
|
def url(self) -> pulumi.Output[str]:
|
|
599
592
|
"""
|
|
600
|
-
URL of the team
|
|
593
|
+
The URL of the team.
|
|
601
594
|
"""
|
|
602
595
|
return pulumi.get(self, "url")
|
|
603
596
|
|