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.
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 +110 -86
  5. pulumi_signalfx/aws/_inputs.py +85 -16
  6. pulumi_signalfx/aws/external_integration.py +20 -275
  7. pulumi_signalfx/aws/integration.py +222 -367
  8. pulumi_signalfx/aws/outputs.py +21 -16
  9. pulumi_signalfx/aws/token_integration.py +46 -65
  10. pulumi_signalfx/azure/_inputs.py +41 -4
  11. pulumi_signalfx/azure/integration.py +144 -259
  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 +131 -198
  17. pulumi_signalfx/data_link.py +76 -141
  18. pulumi_signalfx/detector.py +264 -369
  19. pulumi_signalfx/event_feed_chart.py +51 -82
  20. pulumi_signalfx/gcp/_inputs.py +51 -0
  21. pulumi_signalfx/gcp/integration.py +224 -192
  22. pulumi_signalfx/gcp/outputs.py +44 -0
  23. pulumi_signalfx/get_dimension_values.py +47 -24
  24. pulumi_signalfx/heatmap_chart.py +165 -228
  25. pulumi_signalfx/jira/integration.py +70 -119
  26. pulumi_signalfx/list_chart.py +219 -315
  27. pulumi_signalfx/log/_inputs.py +33 -2
  28. pulumi_signalfx/log/outputs.py +7 -2
  29. pulumi_signalfx/log/timeline.py +64 -99
  30. pulumi_signalfx/log/view.py +134 -173
  31. pulumi_signalfx/metric_ruleset.py +217 -70
  32. pulumi_signalfx/opsgenie/integration.py +41 -60
  33. pulumi_signalfx/org_token.py +97 -128
  34. pulumi_signalfx/outputs.py +661 -339
  35. pulumi_signalfx/pagerduty/get_integration.py +22 -21
  36. pulumi_signalfx/pagerduty/integration.py +34 -49
  37. pulumi_signalfx/provider.py +99 -0
  38. pulumi_signalfx/pulumi-plugin.json +2 -1
  39. pulumi_signalfx/servicenow/integration.py +52 -107
  40. pulumi_signalfx/single_value_chart.py +113 -178
  41. pulumi_signalfx/slack/integration.py +30 -47
  42. pulumi_signalfx/slo.py +99 -197
  43. pulumi_signalfx/slo_chart.py +197 -0
  44. pulumi_signalfx/table_chart.py +50 -75
  45. pulumi_signalfx/team.py +74 -109
  46. pulumi_signalfx/text_chart.py +64 -89
  47. pulumi_signalfx/time_chart.py +271 -400
  48. pulumi_signalfx/victorops/integration.py +30 -47
  49. pulumi_signalfx/webhook_integration.py +154 -75
  50. {pulumi_signalfx-7.2.0a1709367777.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.0a1709367777.dist-info → pulumi_signalfx-7.6.0a1736835428.dist-info}/WHEEL +1 -1
  53. pulumi_signalfx-7.2.0a1709367777.dist-info/RECORD +0 -64
  54. {pulumi_signalfx-7.2.0a1709367777.dist-info → pulumi_signalfx-7.6.0a1736835428.dist-info}/top_level.txt +0 -0
@@ -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__ = ['TextChartArgs', 'TextChart']
@@ -19,9 +24,9 @@ class TextChartArgs:
19
24
  name: Optional[pulumi.Input[str]] = None):
20
25
  """
21
26
  The set of arguments for constructing a TextChart resource.
22
- :param pulumi.Input[str] markdown: Markdown text to display. More info at: https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet
23
- :param pulumi.Input[str] description: Description of the chart (Optional)
24
- :param pulumi.Input[str] name: Name of the chart
27
+ :param pulumi.Input[str] markdown: Markdown text to display.
28
+ :param pulumi.Input[str] description: Description of the text note.
29
+ :param pulumi.Input[str] name: Name of the text note.
25
30
  """
26
31
  pulumi.set(__self__, "markdown", markdown)
27
32
  if description is not None:
@@ -33,7 +38,7 @@ class TextChartArgs:
33
38
  @pulumi.getter
34
39
  def markdown(self) -> pulumi.Input[str]:
35
40
  """
36
- Markdown text to display. More info at: https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet
41
+ Markdown text to display.
37
42
  """
38
43
  return pulumi.get(self, "markdown")
39
44
 
@@ -45,7 +50,7 @@ class TextChartArgs:
45
50
  @pulumi.getter
46
51
  def description(self) -> Optional[pulumi.Input[str]]:
47
52
  """
48
- Description of the chart (Optional)
53
+ Description of the text note.
49
54
  """
50
55
  return pulumi.get(self, "description")
51
56
 
@@ -57,7 +62,7 @@ class TextChartArgs:
57
62
  @pulumi.getter
58
63
  def name(self) -> Optional[pulumi.Input[str]]:
59
64
  """
60
- Name of the chart
65
+ Name of the text note.
61
66
  """
62
67
  return pulumi.get(self, "name")
63
68
 
@@ -75,10 +80,10 @@ class _TextChartState:
75
80
  url: Optional[pulumi.Input[str]] = None):
76
81
  """
77
82
  Input properties used for looking up and filtering TextChart resources.
78
- :param pulumi.Input[str] description: Description of the chart (Optional)
79
- :param pulumi.Input[str] markdown: Markdown text to display. More info at: https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet
80
- :param pulumi.Input[str] name: Name of the chart
81
- :param pulumi.Input[str] url: URL of the chart
83
+ :param pulumi.Input[str] description: Description of the text note.
84
+ :param pulumi.Input[str] markdown: Markdown text to display.
85
+ :param pulumi.Input[str] name: Name of the text note.
86
+ :param pulumi.Input[str] url: The URL of the chart.
82
87
  """
83
88
  if description is not None:
84
89
  pulumi.set(__self__, "description", description)
@@ -93,7 +98,7 @@ class _TextChartState:
93
98
  @pulumi.getter
94
99
  def description(self) -> Optional[pulumi.Input[str]]:
95
100
  """
96
- Description of the chart (Optional)
101
+ Description of the text note.
97
102
  """
98
103
  return pulumi.get(self, "description")
99
104
 
@@ -105,7 +110,7 @@ class _TextChartState:
105
110
  @pulumi.getter
106
111
  def markdown(self) -> Optional[pulumi.Input[str]]:
107
112
  """
108
- Markdown text to display. More info at: https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet
113
+ Markdown text to display.
109
114
  """
110
115
  return pulumi.get(self, "markdown")
111
116
 
@@ -117,7 +122,7 @@ class _TextChartState:
117
122
  @pulumi.getter
118
123
  def name(self) -> Optional[pulumi.Input[str]]:
119
124
  """
120
- Name of the chart
125
+ Name of the text note.
121
126
  """
122
127
  return pulumi.get(self, "name")
123
128
 
@@ -129,7 +134,7 @@ class _TextChartState:
129
134
  @pulumi.getter
130
135
  def url(self) -> Optional[pulumi.Input[str]]:
131
136
  """
132
- URL of the chart
137
+ The URL of the chart.
133
138
  """
134
139
  return pulumi.get(self, "url")
135
140
 
@@ -157,47 +162,32 @@ class TextChart(pulumi.CustomResource):
157
162
  import pulumi_signalfx as signalfx
158
163
 
159
164
  mynote0 = signalfx.TextChart("mynote0",
165
+ name="Important Dashboard Note",
160
166
  description="Lorem ipsum dolor sit amet, laudem tibique iracundia at mea. Nam posse dolores ex, nec cu adhuc putent honestatis",
161
- markdown=\"\"\" 1. First ordered list item
162
- 2. Another item
163
- * Unordered sub-list.
164
- 1. Actual numbers don't matter, just that it's a number
165
- 1. Ordered sub-list
166
- 4. And another item.
167
-
168
- You can have properly indented paragraphs within list items. Notice the blank line above, and the leading spaces (at least one, but we'll use three here to also align the raw Markdown).
169
-
170
- To have a line break without a paragraph, you will need to use two trailing spaces.⋅⋅
171
- Note that this line is separate, but within the same paragraph.⋅⋅
172
- (This is contrary to the typical GFM line break behaviour, where trailing spaces are not required.)
173
-
174
- * Unordered list can use asterisks
175
- - Or minuses
176
- + Or pluses
177
-
167
+ markdown=\"\"\"1. First ordered list item
168
+ 2. Another item
169
+ * Unordered sub-list.
170
+ 1. Actual numbers don't matter, just that it's a number
171
+ 1. Ordered sub-list
172
+ 4. And another item.
173
+
174
+ You can have properly indented paragraphs within list items. Notice the blank line above, and the leading spaces (at least one, but we'll use three here to also align the raw Markdown).
175
+
176
+ To have a line break without a paragraph, you will need to use two trailing spaces.⋅⋅
177
+ Note that this line is separate, but within the same paragraph.⋅⋅
178
+ (This is contrary to the typical GFM line break behaviour, where trailing spaces are not required.)
179
+
180
+ * Unordered list can use asterisks
181
+ - Or minuses
182
+ + Or pluses
178
183
  \"\"\")
179
184
  ```
180
185
 
181
- ## Arguments
182
-
183
- The following arguments are supported in the resource block:
184
-
185
- * `name` - (Required) Name of the text note.
186
- * `markdown` - (Required) Markdown text to display.
187
- * `description` - (Optional) Description of the text note.
188
-
189
- ## Attributes
190
-
191
- In a addition to all arguments above, the following attributes are exported:
192
-
193
- * `id` - The ID of the chart.
194
- * `url` - The URL of the chart.
195
-
196
186
  :param str resource_name: The name of the resource.
197
187
  :param pulumi.ResourceOptions opts: Options for the resource.
198
- :param pulumi.Input[str] description: Description of the chart (Optional)
199
- :param pulumi.Input[str] markdown: Markdown text to display. More info at: https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet
200
- :param pulumi.Input[str] name: Name of the chart
188
+ :param pulumi.Input[str] description: Description of the text note.
189
+ :param pulumi.Input[str] markdown: Markdown text to display.
190
+ :param pulumi.Input[str] name: Name of the text note.
201
191
  """
202
192
  ...
203
193
  @overload
@@ -215,42 +205,27 @@ class TextChart(pulumi.CustomResource):
215
205
  import pulumi_signalfx as signalfx
216
206
 
217
207
  mynote0 = signalfx.TextChart("mynote0",
208
+ name="Important Dashboard Note",
218
209
  description="Lorem ipsum dolor sit amet, laudem tibique iracundia at mea. Nam posse dolores ex, nec cu adhuc putent honestatis",
219
- markdown=\"\"\" 1. First ordered list item
220
- 2. Another item
221
- * Unordered sub-list.
222
- 1. Actual numbers don't matter, just that it's a number
223
- 1. Ordered sub-list
224
- 4. And another item.
225
-
226
- You can have properly indented paragraphs within list items. Notice the blank line above, and the leading spaces (at least one, but we'll use three here to also align the raw Markdown).
227
-
228
- To have a line break without a paragraph, you will need to use two trailing spaces.⋅⋅
229
- Note that this line is separate, but within the same paragraph.⋅⋅
230
- (This is contrary to the typical GFM line break behaviour, where trailing spaces are not required.)
231
-
232
- * Unordered list can use asterisks
233
- - Or minuses
234
- + Or pluses
235
-
210
+ markdown=\"\"\"1. First ordered list item
211
+ 2. Another item
212
+ * Unordered sub-list.
213
+ 1. Actual numbers don't matter, just that it's a number
214
+ 1. Ordered sub-list
215
+ 4. And another item.
216
+
217
+ You can have properly indented paragraphs within list items. Notice the blank line above, and the leading spaces (at least one, but we'll use three here to also align the raw Markdown).
218
+
219
+ To have a line break without a paragraph, you will need to use two trailing spaces.⋅⋅
220
+ Note that this line is separate, but within the same paragraph.⋅⋅
221
+ (This is contrary to the typical GFM line break behaviour, where trailing spaces are not required.)
222
+
223
+ * Unordered list can use asterisks
224
+ - Or minuses
225
+ + Or pluses
236
226
  \"\"\")
237
227
  ```
238
228
 
239
- ## Arguments
240
-
241
- The following arguments are supported in the resource block:
242
-
243
- * `name` - (Required) Name of the text note.
244
- * `markdown` - (Required) Markdown text to display.
245
- * `description` - (Optional) Description of the text note.
246
-
247
- ## Attributes
248
-
249
- In a addition to all arguments above, the following attributes are exported:
250
-
251
- * `id` - The ID of the chart.
252
- * `url` - The URL of the chart.
253
-
254
229
  :param str resource_name: The name of the resource.
255
230
  :param TextChartArgs args: The arguments to use to populate this resource's properties.
256
231
  :param pulumi.ResourceOptions opts: Options for the resource.
@@ -305,10 +280,10 @@ class TextChart(pulumi.CustomResource):
305
280
  :param str resource_name: The unique name of the resulting resource.
306
281
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
307
282
  :param pulumi.ResourceOptions opts: Options for the resource.
308
- :param pulumi.Input[str] description: Description of the chart (Optional)
309
- :param pulumi.Input[str] markdown: Markdown text to display. More info at: https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet
310
- :param pulumi.Input[str] name: Name of the chart
311
- :param pulumi.Input[str] url: URL of the chart
283
+ :param pulumi.Input[str] description: Description of the text note.
284
+ :param pulumi.Input[str] markdown: Markdown text to display.
285
+ :param pulumi.Input[str] name: Name of the text note.
286
+ :param pulumi.Input[str] url: The URL of the chart.
312
287
  """
313
288
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
314
289
 
@@ -324,7 +299,7 @@ class TextChart(pulumi.CustomResource):
324
299
  @pulumi.getter
325
300
  def description(self) -> pulumi.Output[Optional[str]]:
326
301
  """
327
- Description of the chart (Optional)
302
+ Description of the text note.
328
303
  """
329
304
  return pulumi.get(self, "description")
330
305
 
@@ -332,7 +307,7 @@ class TextChart(pulumi.CustomResource):
332
307
  @pulumi.getter
333
308
  def markdown(self) -> pulumi.Output[str]:
334
309
  """
335
- Markdown text to display. More info at: https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet
310
+ Markdown text to display.
336
311
  """
337
312
  return pulumi.get(self, "markdown")
338
313
 
@@ -340,7 +315,7 @@ class TextChart(pulumi.CustomResource):
340
315
  @pulumi.getter
341
316
  def name(self) -> pulumi.Output[str]:
342
317
  """
343
- Name of the chart
318
+ Name of the text note.
344
319
  """
345
320
  return pulumi.get(self, "name")
346
321
 
@@ -348,7 +323,7 @@ class TextChart(pulumi.CustomResource):
348
323
  @pulumi.getter
349
324
  def url(self) -> pulumi.Output[str]:
350
325
  """
351
- URL of the chart
326
+ The URL of the chart.
352
327
  """
353
328
  return pulumi.get(self, "url")
354
329