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
@@ -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
 
@@ -152,26 +157,37 @@ class TextChart(pulumi.CustomResource):
152
157
 
153
158
  ## Example
154
159
 
155
- ## Arguments
160
+ ```python
161
+ import pulumi
162
+ import pulumi_signalfx as signalfx
156
163
 
157
- The following arguments are supported in the resource block:
164
+ mynote0 = signalfx.TextChart("mynote0",
165
+ name="Important Dashboard Note",
166
+ description="Lorem ipsum dolor sit amet, laudem tibique iracundia at mea. Nam posse dolores ex, nec cu adhuc putent honestatis",
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.
158
173
 
159
- * `name` - (Required) Name of the text note.
160
- * `markdown` - (Required) Markdown text to display.
161
- * `description` - (Optional) Description of the text note.
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).
162
175
 
163
- ## Attributes
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.)
164
179
 
165
- In a addition to all arguments above, the following attributes are exported:
166
-
167
- * `id` - The ID of the chart.
168
- * `url` - The URL of the chart.
180
+ * Unordered list can use asterisks
181
+ - Or minuses
182
+ + Or pluses
183
+ \"\"\")
184
+ ```
169
185
 
170
186
  :param str resource_name: The name of the resource.
171
187
  :param pulumi.ResourceOptions opts: Options for the resource.
172
- :param pulumi.Input[str] description: Description of the chart (Optional)
173
- :param pulumi.Input[str] markdown: Markdown text to display. More info at: https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet
174
- :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.
175
191
  """
176
192
  ...
177
193
  @overload
@@ -184,20 +200,31 @@ class TextChart(pulumi.CustomResource):
184
200
 
185
201
  ## Example
186
202
 
187
- ## Arguments
188
-
189
- The following arguments are supported in the resource block:
203
+ ```python
204
+ import pulumi
205
+ import pulumi_signalfx as signalfx
190
206
 
191
- * `name` - (Required) Name of the text note.
192
- * `markdown` - (Required) Markdown text to display.
193
- * `description` - (Optional) Description of the text note.
207
+ mynote0 = signalfx.TextChart("mynote0",
208
+ name="Important Dashboard Note",
209
+ description="Lorem ipsum dolor sit amet, laudem tibique iracundia at mea. Nam posse dolores ex, nec cu adhuc putent honestatis",
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.
194
216
 
195
- ## Attributes
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).
196
218
 
197
- In a addition to all arguments above, the following attributes are exported:
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.)
198
222
 
199
- * `id` - The ID of the chart.
200
- * `url` - The URL of the chart.
223
+ * Unordered list can use asterisks
224
+ - Or minuses
225
+ + Or pluses
226
+ \"\"\")
227
+ ```
201
228
 
202
229
  :param str resource_name: The name of the resource.
203
230
  :param TextChartArgs args: The arguments to use to populate this resource's properties.
@@ -253,10 +280,10 @@ class TextChart(pulumi.CustomResource):
253
280
  :param str resource_name: The unique name of the resulting resource.
254
281
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
255
282
  :param pulumi.ResourceOptions opts: Options for the resource.
256
- :param pulumi.Input[str] description: Description of the chart (Optional)
257
- :param pulumi.Input[str] markdown: Markdown text to display. More info at: https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet
258
- :param pulumi.Input[str] name: Name of the chart
259
- :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.
260
287
  """
261
288
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
262
289
 
@@ -272,7 +299,7 @@ class TextChart(pulumi.CustomResource):
272
299
  @pulumi.getter
273
300
  def description(self) -> pulumi.Output[Optional[str]]:
274
301
  """
275
- Description of the chart (Optional)
302
+ Description of the text note.
276
303
  """
277
304
  return pulumi.get(self, "description")
278
305
 
@@ -280,7 +307,7 @@ class TextChart(pulumi.CustomResource):
280
307
  @pulumi.getter
281
308
  def markdown(self) -> pulumi.Output[str]:
282
309
  """
283
- Markdown text to display. More info at: https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet
310
+ Markdown text to display.
284
311
  """
285
312
  return pulumi.get(self, "markdown")
286
313
 
@@ -288,7 +315,7 @@ class TextChart(pulumi.CustomResource):
288
315
  @pulumi.getter
289
316
  def name(self) -> pulumi.Output[str]:
290
317
  """
291
- Name of the chart
318
+ Name of the text note.
292
319
  """
293
320
  return pulumi.get(self, "name")
294
321
 
@@ -296,7 +323,7 @@ class TextChart(pulumi.CustomResource):
296
323
  @pulumi.getter
297
324
  def url(self) -> pulumi.Output[str]:
298
325
  """
299
- URL of the chart
326
+ The URL of the chart.
300
327
  """
301
328
  return pulumi.get(self, "url")
302
329