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.
Files changed (54) hide show
  1. pulumi_signalfx/__init__.py +9 -0
  2. pulumi_signalfx/_inputs.py +1976 -339
  3. pulumi_signalfx/_utilities.py +41 -5
  4. pulumi_signalfx/alert_muting_rule.py +126 -72
  5. pulumi_signalfx/aws/_inputs.py +85 -16
  6. pulumi_signalfx/aws/external_integration.py +20 -43
  7. pulumi_signalfx/aws/integration.py +252 -321
  8. pulumi_signalfx/aws/outputs.py +21 -16
  9. pulumi_signalfx/aws/token_integration.py +76 -31
  10. pulumi_signalfx/azure/_inputs.py +41 -4
  11. pulumi_signalfx/azure/integration.py +170 -217
  12. pulumi_signalfx/azure/outputs.py +15 -4
  13. pulumi_signalfx/config/__init__.pyi +22 -0
  14. pulumi_signalfx/config/vars.py +28 -0
  15. pulumi_signalfx/dashboard.py +171 -186
  16. pulumi_signalfx/dashboard_group.py +191 -140
  17. pulumi_signalfx/data_link.py +102 -109
  18. pulumi_signalfx/detector.py +318 -383
  19. pulumi_signalfx/event_feed_chart.py +51 -86
  20. pulumi_signalfx/gcp/_inputs.py +51 -0
  21. pulumi_signalfx/gcp/integration.py +224 -148
  22. pulumi_signalfx/gcp/outputs.py +44 -0
  23. pulumi_signalfx/get_dimension_values.py +47 -8
  24. pulumi_signalfx/heatmap_chart.py +191 -174
  25. pulumi_signalfx/jira/integration.py +86 -103
  26. pulumi_signalfx/list_chart.py +243 -255
  27. pulumi_signalfx/log/_inputs.py +33 -2
  28. pulumi_signalfx/log/outputs.py +7 -2
  29. pulumi_signalfx/log/timeline.py +76 -87
  30. pulumi_signalfx/log/view.py +146 -113
  31. pulumi_signalfx/metric_ruleset.py +213 -70
  32. pulumi_signalfx/opsgenie/integration.py +51 -50
  33. pulumi_signalfx/org_token.py +111 -104
  34. pulumi_signalfx/outputs.py +661 -339
  35. pulumi_signalfx/pagerduty/get_integration.py +22 -25
  36. pulumi_signalfx/pagerduty/integration.py +42 -39
  37. pulumi_signalfx/provider.py +99 -0
  38. pulumi_signalfx/pulumi-plugin.json +2 -1
  39. pulumi_signalfx/servicenow/integration.py +68 -95
  40. pulumi_signalfx/single_value_chart.py +131 -162
  41. pulumi_signalfx/slack/integration.py +42 -41
  42. pulumi_signalfx/slo.py +97 -243
  43. pulumi_signalfx/slo_chart.py +197 -0
  44. pulumi_signalfx/table_chart.py +66 -65
  45. pulumi_signalfx/team.py +100 -107
  46. pulumi_signalfx/text_chart.py +72 -45
  47. pulumi_signalfx/time_chart.py +287 -352
  48. pulumi_signalfx/victorops/integration.py +42 -41
  49. pulumi_signalfx/webhook_integration.py +168 -61
  50. {pulumi_signalfx-7.2.0a1710160099.dist-info → pulumi_signalfx-7.6.0a1736835428.dist-info}/METADATA +7 -6
  51. pulumi_signalfx-7.6.0a1736835428.dist-info/RECORD +65 -0
  52. {pulumi_signalfx-7.2.0a1710160099.dist-info → pulumi_signalfx-7.6.0a1736835428.dist-info}/WHEEL +1 -1
  53. pulumi_signalfx-7.2.0a1710160099.dist-info/RECORD +0 -64
  54. {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 (Optional)
29
- :param pulumi.Input[Sequence[pulumi.Input[str]]] members: Members of team
30
- :param pulumi.Input[str] name: Name of the team
31
- :param pulumi.Input[Sequence[pulumi.Input[str]]] notifications_criticals: List of notification destinations to use for the critical alerts category.
32
- :param pulumi.Input[Sequence[pulumi.Input[str]]] notifications_defaults: List of notification destinations to use for the default alerts category.
33
- :param pulumi.Input[Sequence[pulumi.Input[str]]] notifications_infos: List of notification destinations to use for the info alerts category.
34
- :param pulumi.Input[Sequence[pulumi.Input[str]]] notifications_majors: List of notification destinations to use for the major alerts category.
35
- :param pulumi.Input[Sequence[pulumi.Input[str]]] notifications_minors: List of notification destinations to use for the minor alerts category.
36
- :param pulumi.Input[Sequence[pulumi.Input[str]]] notifications_warnings: List of notification destinations to use for the warning alerts category.
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 (Optional)
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
- Members of team
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
- List of notification destinations to use for the critical alerts category.
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
- List of notification destinations to use for the default alerts category.
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
- List of notification destinations to use for the info alerts category.
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
- List of notification destinations to use for the major alerts category.
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
- List of notification destinations to use for the minor alerts category.
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
- List of notification destinations to use for the warning alerts category.
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 (Optional)
182
- :param pulumi.Input[Sequence[pulumi.Input[str]]] members: Members of team
183
- :param pulumi.Input[str] name: Name of the team
184
- :param pulumi.Input[Sequence[pulumi.Input[str]]] notifications_criticals: List of notification destinations to use for the critical alerts category.
185
- :param pulumi.Input[Sequence[pulumi.Input[str]]] notifications_defaults: List of notification destinations to use for the default alerts category.
186
- :param pulumi.Input[Sequence[pulumi.Input[str]]] notifications_infos: List of notification destinations to use for the info alerts category.
187
- :param pulumi.Input[Sequence[pulumi.Input[str]]] notifications_majors: List of notification destinations to use for the major alerts category.
188
- :param pulumi.Input[Sequence[pulumi.Input[str]]] notifications_minors: List of notification destinations to use for the minor alerts category.
189
- :param pulumi.Input[Sequence[pulumi.Input[str]]] notifications_warnings: List of notification destinations to use for the warning alerts category.
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 (Optional)
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
- Members of team
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
- List of notification destinations to use for the critical alerts category.
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
- List of notification destinations to use for the default alerts category.
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
- List of notification destinations to use for the info alerts category.
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
- List of notification destinations to use for the major alerts category.
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
- List of notification destinations to use for the minor alerts category.
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
- List of notification destinations to use for the warning alerts category.
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
- ## Arguments
359
-
360
- The following arguments are supported in the resource block:
361
-
362
- * `name` - (Required) Name of the team.
363
- * `description` - (Optional) Description of the team.
364
- * `members` - (Optional) List of user IDs to include in the team.
365
- * `notifications_critical` - (Optional) Where to send notifications for critical alerts
366
- * `notifications_default` - (Optional) Where to send notifications for default alerts
367
- * `notifications_info` - (Optional) Where to send notifications for info alerts
368
- * `notifications_major` - (Optional) Where to send notifications for major alerts
369
- * `notifications_minor` - (Optional) Where to send notifications for minor alerts
370
- * `notifications_warning` - (Optional) Where to send notifications for warning alerts
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 (Optional)
382
- :param pulumi.Input[Sequence[pulumi.Input[str]]] members: Members of team
383
- :param pulumi.Input[str] name: Name of the team
384
- :param pulumi.Input[Sequence[pulumi.Input[str]]] notifications_criticals: List of notification destinations to use for the critical alerts category.
385
- :param pulumi.Input[Sequence[pulumi.Input[str]]] notifications_defaults: List of notification destinations to use for the default alerts category.
386
- :param pulumi.Input[Sequence[pulumi.Input[str]]] notifications_infos: List of notification destinations to use for the info alerts category.
387
- :param pulumi.Input[Sequence[pulumi.Input[str]]] notifications_majors: List of notification destinations to use for the major alerts category.
388
- :param pulumi.Input[Sequence[pulumi.Input[str]]] notifications_minors: List of notification destinations to use for the minor alerts category.
389
- :param pulumi.Input[Sequence[pulumi.Input[str]]] notifications_warnings: List of notification destinations to use for the warning alerts category.
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
- ## Arguments
407
-
408
- The following arguments are supported in the resource block:
409
-
410
- * `name` - (Required) Name of the team.
411
- * `description` - (Optional) Description of the team.
412
- * `members` - (Optional) List of user IDs to include in the team.
413
- * `notifications_critical` - (Optional) Where to send notifications for critical alerts
414
- * `notifications_default` - (Optional) Where to send notifications for default alerts
415
- * `notifications_info` - (Optional) Where to send notifications for info alerts
416
- * `notifications_major` - (Optional) Where to send notifications for major alerts
417
- * `notifications_minor` - (Optional) Where to send notifications for minor alerts
418
- * `notifications_warning` - (Optional) Where to send notifications for warning alerts
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 (Optional)
498
- :param pulumi.Input[Sequence[pulumi.Input[str]]] members: Members of team
499
- :param pulumi.Input[str] name: Name of the team
500
- :param pulumi.Input[Sequence[pulumi.Input[str]]] notifications_criticals: List of notification destinations to use for the critical alerts category.
501
- :param pulumi.Input[Sequence[pulumi.Input[str]]] notifications_defaults: List of notification destinations to use for the default alerts category.
502
- :param pulumi.Input[Sequence[pulumi.Input[str]]] notifications_infos: List of notification destinations to use for the info alerts category.
503
- :param pulumi.Input[Sequence[pulumi.Input[str]]] notifications_majors: List of notification destinations to use for the major alerts category.
504
- :param pulumi.Input[Sequence[pulumi.Input[str]]] notifications_minors: List of notification destinations to use for the minor alerts category.
505
- :param pulumi.Input[Sequence[pulumi.Input[str]]] notifications_warnings: List of notification destinations to use for the warning alerts category.
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 (Optional)
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
- Members of team
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
- List of notification destinations to use for the critical alerts category.
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
- List of notification destinations to use for the default alerts category.
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
- List of notification destinations to use for the info alerts category.
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
- List of notification destinations to use for the major alerts category.
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
- List of notification destinations to use for the minor alerts category.
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
- List of notification destinations to use for the warning alerts category.
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