pulumi-signalfx 7.2.0a1709367777__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 +110 -86
- pulumi_signalfx/aws/_inputs.py +85 -16
- pulumi_signalfx/aws/external_integration.py +20 -275
- pulumi_signalfx/aws/integration.py +222 -367
- pulumi_signalfx/aws/outputs.py +21 -16
- pulumi_signalfx/aws/token_integration.py +46 -65
- pulumi_signalfx/azure/_inputs.py +41 -4
- pulumi_signalfx/azure/integration.py +144 -259
- 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 +131 -198
- pulumi_signalfx/data_link.py +76 -141
- pulumi_signalfx/detector.py +264 -369
- pulumi_signalfx/event_feed_chart.py +51 -82
- pulumi_signalfx/gcp/_inputs.py +51 -0
- pulumi_signalfx/gcp/integration.py +224 -192
- pulumi_signalfx/gcp/outputs.py +44 -0
- pulumi_signalfx/get_dimension_values.py +47 -24
- pulumi_signalfx/heatmap_chart.py +165 -228
- pulumi_signalfx/jira/integration.py +70 -119
- pulumi_signalfx/list_chart.py +219 -315
- pulumi_signalfx/log/_inputs.py +33 -2
- pulumi_signalfx/log/outputs.py +7 -2
- pulumi_signalfx/log/timeline.py +64 -99
- pulumi_signalfx/log/view.py +134 -173
- pulumi_signalfx/metric_ruleset.py +217 -70
- pulumi_signalfx/opsgenie/integration.py +41 -60
- pulumi_signalfx/org_token.py +97 -128
- pulumi_signalfx/outputs.py +661 -339
- pulumi_signalfx/pagerduty/get_integration.py +22 -21
- pulumi_signalfx/pagerduty/integration.py +34 -49
- pulumi_signalfx/provider.py +99 -0
- pulumi_signalfx/pulumi-plugin.json +2 -1
- pulumi_signalfx/servicenow/integration.py +52 -107
- pulumi_signalfx/single_value_chart.py +113 -178
- pulumi_signalfx/slack/integration.py +30 -47
- pulumi_signalfx/slo.py +99 -197
- pulumi_signalfx/slo_chart.py +197 -0
- pulumi_signalfx/table_chart.py +50 -75
- pulumi_signalfx/team.py +74 -109
- pulumi_signalfx/text_chart.py +64 -89
- pulumi_signalfx/time_chart.py +271 -400
- pulumi_signalfx/victorops/integration.py +30 -47
- pulumi_signalfx/webhook_integration.py +154 -75
- {pulumi_signalfx-7.2.0a1709367777.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.0a1709367777.dist-info → pulumi_signalfx-7.6.0a1736835428.dist-info}/WHEEL +1 -1
- pulumi_signalfx-7.2.0a1709367777.dist-info/RECORD +0 -64
- {pulumi_signalfx-7.2.0a1709367777.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
|
|
|
@@ -360,6 +365,7 @@ class Team(pulumi.CustomResource):
|
|
|
360
365
|
import pulumi_signalfx as signalfx
|
|
361
366
|
|
|
362
367
|
myteam0 = signalfx.Team("myteam0",
|
|
368
|
+
name="Best Team Ever",
|
|
363
369
|
description="Super great team no jerks definitely",
|
|
364
370
|
members=[
|
|
365
371
|
"userid1",
|
|
@@ -369,38 +375,17 @@ class Team(pulumi.CustomResource):
|
|
|
369
375
|
notifications_infos=["Email,notify@example.com"])
|
|
370
376
|
```
|
|
371
377
|
|
|
372
|
-
## Arguments
|
|
373
|
-
|
|
374
|
-
The following arguments are supported in the resource block:
|
|
375
|
-
|
|
376
|
-
* `name` - (Required) Name of the team.
|
|
377
|
-
* `description` - (Optional) Description of the team.
|
|
378
|
-
* `members` - (Optional) List of user IDs to include in the team.
|
|
379
|
-
* `notifications_critical` - (Optional) Where to send notifications for critical alerts
|
|
380
|
-
* `notifications_default` - (Optional) Where to send notifications for default alerts
|
|
381
|
-
* `notifications_info` - (Optional) Where to send notifications for info alerts
|
|
382
|
-
* `notifications_major` - (Optional) Where to send notifications for major alerts
|
|
383
|
-
* `notifications_minor` - (Optional) Where to send notifications for minor alerts
|
|
384
|
-
* `notifications_warning` - (Optional) Where to send notifications for warning alerts
|
|
385
|
-
|
|
386
|
-
## Attributes
|
|
387
|
-
|
|
388
|
-
In a addition to all arguments above, the following attributes are exported:
|
|
389
|
-
|
|
390
|
-
* `id` - The ID of the team.
|
|
391
|
-
* `url` - The URL of the team.
|
|
392
|
-
|
|
393
378
|
:param str resource_name: The name of the resource.
|
|
394
379
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
395
|
-
:param pulumi.Input[str] description: Description of the team
|
|
396
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] members:
|
|
397
|
-
:param pulumi.Input[str] name: Name of the team
|
|
398
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] notifications_criticals:
|
|
399
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] notifications_defaults:
|
|
400
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] notifications_infos:
|
|
401
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] notifications_majors:
|
|
402
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] notifications_minors:
|
|
403
|
-
: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
|
|
404
389
|
"""
|
|
405
390
|
...
|
|
406
391
|
@overload
|
|
@@ -422,6 +407,7 @@ class Team(pulumi.CustomResource):
|
|
|
422
407
|
import pulumi_signalfx as signalfx
|
|
423
408
|
|
|
424
409
|
myteam0 = signalfx.Team("myteam0",
|
|
410
|
+
name="Best Team Ever",
|
|
425
411
|
description="Super great team no jerks definitely",
|
|
426
412
|
members=[
|
|
427
413
|
"userid1",
|
|
@@ -431,27 +417,6 @@ class Team(pulumi.CustomResource):
|
|
|
431
417
|
notifications_infos=["Email,notify@example.com"])
|
|
432
418
|
```
|
|
433
419
|
|
|
434
|
-
## Arguments
|
|
435
|
-
|
|
436
|
-
The following arguments are supported in the resource block:
|
|
437
|
-
|
|
438
|
-
* `name` - (Required) Name of the team.
|
|
439
|
-
* `description` - (Optional) Description of the team.
|
|
440
|
-
* `members` - (Optional) List of user IDs to include in the team.
|
|
441
|
-
* `notifications_critical` - (Optional) Where to send notifications for critical alerts
|
|
442
|
-
* `notifications_default` - (Optional) Where to send notifications for default alerts
|
|
443
|
-
* `notifications_info` - (Optional) Where to send notifications for info alerts
|
|
444
|
-
* `notifications_major` - (Optional) Where to send notifications for major alerts
|
|
445
|
-
* `notifications_minor` - (Optional) Where to send notifications for minor alerts
|
|
446
|
-
* `notifications_warning` - (Optional) Where to send notifications for warning alerts
|
|
447
|
-
|
|
448
|
-
## Attributes
|
|
449
|
-
|
|
450
|
-
In a addition to all arguments above, the following attributes are exported:
|
|
451
|
-
|
|
452
|
-
* `id` - The ID of the team.
|
|
453
|
-
* `url` - The URL of the team.
|
|
454
|
-
|
|
455
420
|
:param str resource_name: The name of the resource.
|
|
456
421
|
:param TeamArgs args: The arguments to use to populate this resource's properties.
|
|
457
422
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
@@ -522,16 +487,16 @@ class Team(pulumi.CustomResource):
|
|
|
522
487
|
:param str resource_name: The unique name of the resulting resource.
|
|
523
488
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
524
489
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
525
|
-
:param pulumi.Input[str] description: Description of the team
|
|
526
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] members:
|
|
527
|
-
:param pulumi.Input[str] name: Name of the team
|
|
528
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] notifications_criticals:
|
|
529
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] notifications_defaults:
|
|
530
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] notifications_infos:
|
|
531
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] notifications_majors:
|
|
532
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] notifications_minors:
|
|
533
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] notifications_warnings:
|
|
534
|
-
: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.
|
|
535
500
|
"""
|
|
536
501
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
537
502
|
|
|
@@ -553,7 +518,7 @@ class Team(pulumi.CustomResource):
|
|
|
553
518
|
@pulumi.getter
|
|
554
519
|
def description(self) -> pulumi.Output[Optional[str]]:
|
|
555
520
|
"""
|
|
556
|
-
Description of the team
|
|
521
|
+
Description of the team.
|
|
557
522
|
"""
|
|
558
523
|
return pulumi.get(self, "description")
|
|
559
524
|
|
|
@@ -561,7 +526,7 @@ class Team(pulumi.CustomResource):
|
|
|
561
526
|
@pulumi.getter
|
|
562
527
|
def members(self) -> pulumi.Output[Optional[Sequence[str]]]:
|
|
563
528
|
"""
|
|
564
|
-
|
|
529
|
+
List of user IDs to include in the team.
|
|
565
530
|
"""
|
|
566
531
|
return pulumi.get(self, "members")
|
|
567
532
|
|
|
@@ -569,7 +534,7 @@ class Team(pulumi.CustomResource):
|
|
|
569
534
|
@pulumi.getter
|
|
570
535
|
def name(self) -> pulumi.Output[str]:
|
|
571
536
|
"""
|
|
572
|
-
Name of the team
|
|
537
|
+
Name of the team.
|
|
573
538
|
"""
|
|
574
539
|
return pulumi.get(self, "name")
|
|
575
540
|
|
|
@@ -577,7 +542,7 @@ class Team(pulumi.CustomResource):
|
|
|
577
542
|
@pulumi.getter(name="notificationsCriticals")
|
|
578
543
|
def notifications_criticals(self) -> pulumi.Output[Optional[Sequence[str]]]:
|
|
579
544
|
"""
|
|
580
|
-
|
|
545
|
+
Where to send notifications for critical alerts
|
|
581
546
|
"""
|
|
582
547
|
return pulumi.get(self, "notifications_criticals")
|
|
583
548
|
|
|
@@ -585,7 +550,7 @@ class Team(pulumi.CustomResource):
|
|
|
585
550
|
@pulumi.getter(name="notificationsDefaults")
|
|
586
551
|
def notifications_defaults(self) -> pulumi.Output[Optional[Sequence[str]]]:
|
|
587
552
|
"""
|
|
588
|
-
|
|
553
|
+
Where to send notifications for default alerts
|
|
589
554
|
"""
|
|
590
555
|
return pulumi.get(self, "notifications_defaults")
|
|
591
556
|
|
|
@@ -593,7 +558,7 @@ class Team(pulumi.CustomResource):
|
|
|
593
558
|
@pulumi.getter(name="notificationsInfos")
|
|
594
559
|
def notifications_infos(self) -> pulumi.Output[Optional[Sequence[str]]]:
|
|
595
560
|
"""
|
|
596
|
-
|
|
561
|
+
Where to send notifications for info alerts
|
|
597
562
|
"""
|
|
598
563
|
return pulumi.get(self, "notifications_infos")
|
|
599
564
|
|
|
@@ -601,7 +566,7 @@ class Team(pulumi.CustomResource):
|
|
|
601
566
|
@pulumi.getter(name="notificationsMajors")
|
|
602
567
|
def notifications_majors(self) -> pulumi.Output[Optional[Sequence[str]]]:
|
|
603
568
|
"""
|
|
604
|
-
|
|
569
|
+
Where to send notifications for major alerts
|
|
605
570
|
"""
|
|
606
571
|
return pulumi.get(self, "notifications_majors")
|
|
607
572
|
|
|
@@ -609,7 +574,7 @@ class Team(pulumi.CustomResource):
|
|
|
609
574
|
@pulumi.getter(name="notificationsMinors")
|
|
610
575
|
def notifications_minors(self) -> pulumi.Output[Optional[Sequence[str]]]:
|
|
611
576
|
"""
|
|
612
|
-
|
|
577
|
+
Where to send notifications for minor alerts
|
|
613
578
|
"""
|
|
614
579
|
return pulumi.get(self, "notifications_minors")
|
|
615
580
|
|
|
@@ -617,7 +582,7 @@ class Team(pulumi.CustomResource):
|
|
|
617
582
|
@pulumi.getter(name="notificationsWarnings")
|
|
618
583
|
def notifications_warnings(self) -> pulumi.Output[Optional[Sequence[str]]]:
|
|
619
584
|
"""
|
|
620
|
-
|
|
585
|
+
Where to send notifications for warning alerts
|
|
621
586
|
"""
|
|
622
587
|
return pulumi.get(self, "notifications_warnings")
|
|
623
588
|
|
|
@@ -625,7 +590,7 @@ class Team(pulumi.CustomResource):
|
|
|
625
590
|
@pulumi.getter
|
|
626
591
|
def url(self) -> pulumi.Output[str]:
|
|
627
592
|
"""
|
|
628
|
-
URL of the team
|
|
593
|
+
The URL of the team.
|
|
629
594
|
"""
|
|
630
595
|
return pulumi.get(self, "url")
|
|
631
596
|
|