pulumi-signalfx 7.2.0a1710160099__py3-none-any.whl → 7.6.0a1736849687__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.0a1736849687.dist-info}/METADATA +7 -6
  51. pulumi_signalfx-7.6.0a1736849687.dist-info/RECORD +65 -0
  52. {pulumi_signalfx-7.2.0a1710160099.dist-info → pulumi_signalfx-7.6.0a1736849687.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.0a1736849687.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
  from . import outputs
12
17
  from ._inputs import *
@@ -32,20 +37,20 @@ class HeatmapChartArgs:
32
37
  unit_prefix: Optional[pulumi.Input[str]] = None):
33
38
  """
34
39
  The set of arguments for constructing a HeatmapChart resource.
35
- :param pulumi.Input[str] program_text: Signalflow program text for the chart. More info at "https://developers.signalfx.com/docs/signalflow-overview"
36
- :param pulumi.Input['HeatmapChartColorRangeArgs'] color_range: Values and color for the color range. Example: colorRange : { min : 0, max : 100, color : "#0000ff" }
37
- :param pulumi.Input[Sequence[pulumi.Input['HeatmapChartColorScaleArgs']]] color_scales: Single color range including both the color to display for that range and the borders of the range
38
- :param pulumi.Input[str] description: Description of the chart (Optional)
39
- :param pulumi.Input[bool] disable_sampling: (false by default) If false, samples a subset of the output MTS, which improves UI performance
40
- :param pulumi.Input[Sequence[pulumi.Input[str]]] group_bies: Properties to group by in the heatmap (in nesting order)
41
- :param pulumi.Input[bool] hide_timestamp: (false by default) Whether to show the timestamp in the chart
42
- :param pulumi.Input[int] max_delay: How long (in seconds) to wait for late datapoints
43
- :param pulumi.Input[int] minimum_resolution: The minimum resolution (in seconds) to use for computing the underlying program
44
- :param pulumi.Input[str] name: Name of the chart
45
- :param pulumi.Input[int] refresh_interval: How often (in seconds) to refresh the values of the heatmap
46
- :param pulumi.Input[str] sort_by: The property to use when sorting the elements. Must be prepended with + for ascending or - for descending (e.g. -foo)
47
- :param pulumi.Input[str] timezone: The property value is a string that denotes the geographic region associated with the time zone, (e.g. Australia/Sydney)
48
- :param pulumi.Input[str] unit_prefix: (Metric by default) Must be "Metric" or "Binary"
40
+ :param pulumi.Input[str] program_text: Signalflow program text for the chart. More info at <https://dev.splunk.com/observability/docs/signalflow/>.
41
+ :param pulumi.Input['HeatmapChartColorRangeArgs'] color_range: Values and color for the color range. Example: `color_range : { min : 0, max : 100, color : "#0000ff" }`. Look at this [link](https://docs.splunk.com/observability/en/data-visualization/charts/chart-options.html).
42
+ :param pulumi.Input[Sequence[pulumi.Input['HeatmapChartColorScaleArgs']]] color_scales: One to N blocks, each defining a single color range including both the color to display for that range and the borders of the range. Example: `color_scale { gt = 60, color = "blue" } color_scale { lte = 60, color = "yellow" }`. Look at this [link](https://docs.splunk.com/observability/en/data-visualization/charts/chart-options.html).
43
+ :param pulumi.Input[str] description: Description of the chart.
44
+ :param pulumi.Input[bool] disable_sampling: If `false`, samples a subset of the output MTS, which improves UI performance. `false` by default.
45
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] group_bies: Properties to group by in the heatmap (in nesting order).
46
+ :param pulumi.Input[bool] hide_timestamp: Whether to show the timestamp in the chart. `false` by default.
47
+ :param pulumi.Input[int] max_delay: How long (in seconds) to wait for late datapoints.
48
+ :param pulumi.Input[int] minimum_resolution: The minimum resolution (in seconds) to use for computing the underlying program.
49
+ :param pulumi.Input[str] name: Name of the chart.
50
+ :param pulumi.Input[int] refresh_interval: How often (in seconds) to refresh the values of the heatmap.
51
+ :param pulumi.Input[str] sort_by: The property to use when sorting the elements. Must be prepended with `+` for ascending or `-` for descending (e.g. `-foo`).
52
+ :param pulumi.Input[str] timezone: The property value is a string that denotes the geographic region associated with the time zone, (default UTC).
53
+ :param pulumi.Input[str] unit_prefix: Must be `"Metric"` or `"Binary`". `"Metric"` by default.
49
54
  """
50
55
  pulumi.set(__self__, "program_text", program_text)
51
56
  if color_range is not None:
@@ -79,7 +84,7 @@ class HeatmapChartArgs:
79
84
  @pulumi.getter(name="programText")
80
85
  def program_text(self) -> pulumi.Input[str]:
81
86
  """
82
- Signalflow program text for the chart. More info at "https://developers.signalfx.com/docs/signalflow-overview"
87
+ Signalflow program text for the chart. More info at <https://dev.splunk.com/observability/docs/signalflow/>.
83
88
  """
84
89
  return pulumi.get(self, "program_text")
85
90
 
@@ -91,7 +96,7 @@ class HeatmapChartArgs:
91
96
  @pulumi.getter(name="colorRange")
92
97
  def color_range(self) -> Optional[pulumi.Input['HeatmapChartColorRangeArgs']]:
93
98
  """
94
- Values and color for the color range. Example: colorRange : { min : 0, max : 100, color : "#0000ff" }
99
+ Values and color for the color range. Example: `color_range : { min : 0, max : 100, color : "#0000ff" }`. Look at this [link](https://docs.splunk.com/observability/en/data-visualization/charts/chart-options.html).
95
100
  """
96
101
  return pulumi.get(self, "color_range")
97
102
 
@@ -103,7 +108,7 @@ class HeatmapChartArgs:
103
108
  @pulumi.getter(name="colorScales")
104
109
  def color_scales(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['HeatmapChartColorScaleArgs']]]]:
105
110
  """
106
- Single color range including both the color to display for that range and the borders of the range
111
+ One to N blocks, each defining a single color range including both the color to display for that range and the borders of the range. Example: `color_scale { gt = 60, color = "blue" } color_scale { lte = 60, color = "yellow" }`. Look at this [link](https://docs.splunk.com/observability/en/data-visualization/charts/chart-options.html).
107
112
  """
108
113
  return pulumi.get(self, "color_scales")
109
114
 
@@ -115,7 +120,7 @@ class HeatmapChartArgs:
115
120
  @pulumi.getter
116
121
  def description(self) -> Optional[pulumi.Input[str]]:
117
122
  """
118
- Description of the chart (Optional)
123
+ Description of the chart.
119
124
  """
120
125
  return pulumi.get(self, "description")
121
126
 
@@ -127,7 +132,7 @@ class HeatmapChartArgs:
127
132
  @pulumi.getter(name="disableSampling")
128
133
  def disable_sampling(self) -> Optional[pulumi.Input[bool]]:
129
134
  """
130
- (false by default) If false, samples a subset of the output MTS, which improves UI performance
135
+ If `false`, samples a subset of the output MTS, which improves UI performance. `false` by default.
131
136
  """
132
137
  return pulumi.get(self, "disable_sampling")
133
138
 
@@ -139,7 +144,7 @@ class HeatmapChartArgs:
139
144
  @pulumi.getter(name="groupBies")
140
145
  def group_bies(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
141
146
  """
142
- Properties to group by in the heatmap (in nesting order)
147
+ Properties to group by in the heatmap (in nesting order).
143
148
  """
144
149
  return pulumi.get(self, "group_bies")
145
150
 
@@ -151,7 +156,7 @@ class HeatmapChartArgs:
151
156
  @pulumi.getter(name="hideTimestamp")
152
157
  def hide_timestamp(self) -> Optional[pulumi.Input[bool]]:
153
158
  """
154
- (false by default) Whether to show the timestamp in the chart
159
+ Whether to show the timestamp in the chart. `false` by default.
155
160
  """
156
161
  return pulumi.get(self, "hide_timestamp")
157
162
 
@@ -163,7 +168,7 @@ class HeatmapChartArgs:
163
168
  @pulumi.getter(name="maxDelay")
164
169
  def max_delay(self) -> Optional[pulumi.Input[int]]:
165
170
  """
166
- How long (in seconds) to wait for late datapoints
171
+ How long (in seconds) to wait for late datapoints.
167
172
  """
168
173
  return pulumi.get(self, "max_delay")
169
174
 
@@ -175,7 +180,7 @@ class HeatmapChartArgs:
175
180
  @pulumi.getter(name="minimumResolution")
176
181
  def minimum_resolution(self) -> Optional[pulumi.Input[int]]:
177
182
  """
178
- The minimum resolution (in seconds) to use for computing the underlying program
183
+ The minimum resolution (in seconds) to use for computing the underlying program.
179
184
  """
180
185
  return pulumi.get(self, "minimum_resolution")
181
186
 
@@ -187,7 +192,7 @@ class HeatmapChartArgs:
187
192
  @pulumi.getter
188
193
  def name(self) -> Optional[pulumi.Input[str]]:
189
194
  """
190
- Name of the chart
195
+ Name of the chart.
191
196
  """
192
197
  return pulumi.get(self, "name")
193
198
 
@@ -199,7 +204,7 @@ class HeatmapChartArgs:
199
204
  @pulumi.getter(name="refreshInterval")
200
205
  def refresh_interval(self) -> Optional[pulumi.Input[int]]:
201
206
  """
202
- How often (in seconds) to refresh the values of the heatmap
207
+ How often (in seconds) to refresh the values of the heatmap.
203
208
  """
204
209
  return pulumi.get(self, "refresh_interval")
205
210
 
@@ -211,7 +216,7 @@ class HeatmapChartArgs:
211
216
  @pulumi.getter(name="sortBy")
212
217
  def sort_by(self) -> Optional[pulumi.Input[str]]:
213
218
  """
214
- The property to use when sorting the elements. Must be prepended with + for ascending or - for descending (e.g. -foo)
219
+ The property to use when sorting the elements. Must be prepended with `+` for ascending or `-` for descending (e.g. `-foo`).
215
220
  """
216
221
  return pulumi.get(self, "sort_by")
217
222
 
@@ -223,7 +228,7 @@ class HeatmapChartArgs:
223
228
  @pulumi.getter
224
229
  def timezone(self) -> Optional[pulumi.Input[str]]:
225
230
  """
226
- The property value is a string that denotes the geographic region associated with the time zone, (e.g. Australia/Sydney)
231
+ The property value is a string that denotes the geographic region associated with the time zone, (default UTC).
227
232
  """
228
233
  return pulumi.get(self, "timezone")
229
234
 
@@ -235,7 +240,7 @@ class HeatmapChartArgs:
235
240
  @pulumi.getter(name="unitPrefix")
236
241
  def unit_prefix(self) -> Optional[pulumi.Input[str]]:
237
242
  """
238
- (Metric by default) Must be "Metric" or "Binary"
243
+ Must be `"Metric"` or `"Binary`". `"Metric"` by default.
239
244
  """
240
245
  return pulumi.get(self, "unit_prefix")
241
246
 
@@ -264,21 +269,21 @@ class _HeatmapChartState:
264
269
  url: Optional[pulumi.Input[str]] = None):
265
270
  """
266
271
  Input properties used for looking up and filtering HeatmapChart resources.
267
- :param pulumi.Input['HeatmapChartColorRangeArgs'] color_range: Values and color for the color range. Example: colorRange : { min : 0, max : 100, color : "#0000ff" }
268
- :param pulumi.Input[Sequence[pulumi.Input['HeatmapChartColorScaleArgs']]] color_scales: Single color range including both the color to display for that range and the borders of the range
269
- :param pulumi.Input[str] description: Description of the chart (Optional)
270
- :param pulumi.Input[bool] disable_sampling: (false by default) If false, samples a subset of the output MTS, which improves UI performance
271
- :param pulumi.Input[Sequence[pulumi.Input[str]]] group_bies: Properties to group by in the heatmap (in nesting order)
272
- :param pulumi.Input[bool] hide_timestamp: (false by default) Whether to show the timestamp in the chart
273
- :param pulumi.Input[int] max_delay: How long (in seconds) to wait for late datapoints
274
- :param pulumi.Input[int] minimum_resolution: The minimum resolution (in seconds) to use for computing the underlying program
275
- :param pulumi.Input[str] name: Name of the chart
276
- :param pulumi.Input[str] program_text: Signalflow program text for the chart. More info at "https://developers.signalfx.com/docs/signalflow-overview"
277
- :param pulumi.Input[int] refresh_interval: How often (in seconds) to refresh the values of the heatmap
278
- :param pulumi.Input[str] sort_by: The property to use when sorting the elements. Must be prepended with + for ascending or - for descending (e.g. -foo)
279
- :param pulumi.Input[str] timezone: The property value is a string that denotes the geographic region associated with the time zone, (e.g. Australia/Sydney)
280
- :param pulumi.Input[str] unit_prefix: (Metric by default) Must be "Metric" or "Binary"
281
- :param pulumi.Input[str] url: URL of the chart
272
+ :param pulumi.Input['HeatmapChartColorRangeArgs'] color_range: Values and color for the color range. Example: `color_range : { min : 0, max : 100, color : "#0000ff" }`. Look at this [link](https://docs.splunk.com/observability/en/data-visualization/charts/chart-options.html).
273
+ :param pulumi.Input[Sequence[pulumi.Input['HeatmapChartColorScaleArgs']]] color_scales: One to N blocks, each defining a single color range including both the color to display for that range and the borders of the range. Example: `color_scale { gt = 60, color = "blue" } color_scale { lte = 60, color = "yellow" }`. Look at this [link](https://docs.splunk.com/observability/en/data-visualization/charts/chart-options.html).
274
+ :param pulumi.Input[str] description: Description of the chart.
275
+ :param pulumi.Input[bool] disable_sampling: If `false`, samples a subset of the output MTS, which improves UI performance. `false` by default.
276
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] group_bies: Properties to group by in the heatmap (in nesting order).
277
+ :param pulumi.Input[bool] hide_timestamp: Whether to show the timestamp in the chart. `false` by default.
278
+ :param pulumi.Input[int] max_delay: How long (in seconds) to wait for late datapoints.
279
+ :param pulumi.Input[int] minimum_resolution: The minimum resolution (in seconds) to use for computing the underlying program.
280
+ :param pulumi.Input[str] name: Name of the chart.
281
+ :param pulumi.Input[str] program_text: Signalflow program text for the chart. More info at <https://dev.splunk.com/observability/docs/signalflow/>.
282
+ :param pulumi.Input[int] refresh_interval: How often (in seconds) to refresh the values of the heatmap.
283
+ :param pulumi.Input[str] sort_by: The property to use when sorting the elements. Must be prepended with `+` for ascending or `-` for descending (e.g. `-foo`).
284
+ :param pulumi.Input[str] timezone: The property value is a string that denotes the geographic region associated with the time zone, (default UTC).
285
+ :param pulumi.Input[str] unit_prefix: Must be `"Metric"` or `"Binary`". `"Metric"` by default.
286
+ :param pulumi.Input[str] url: The URL of the chart.
282
287
  """
283
288
  if color_range is not None:
284
289
  pulumi.set(__self__, "color_range", color_range)
@@ -315,7 +320,7 @@ class _HeatmapChartState:
315
320
  @pulumi.getter(name="colorRange")
316
321
  def color_range(self) -> Optional[pulumi.Input['HeatmapChartColorRangeArgs']]:
317
322
  """
318
- Values and color for the color range. Example: colorRange : { min : 0, max : 100, color : "#0000ff" }
323
+ Values and color for the color range. Example: `color_range : { min : 0, max : 100, color : "#0000ff" }`. Look at this [link](https://docs.splunk.com/observability/en/data-visualization/charts/chart-options.html).
319
324
  """
320
325
  return pulumi.get(self, "color_range")
321
326
 
@@ -327,7 +332,7 @@ class _HeatmapChartState:
327
332
  @pulumi.getter(name="colorScales")
328
333
  def color_scales(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['HeatmapChartColorScaleArgs']]]]:
329
334
  """
330
- Single color range including both the color to display for that range and the borders of the range
335
+ One to N blocks, each defining a single color range including both the color to display for that range and the borders of the range. Example: `color_scale { gt = 60, color = "blue" } color_scale { lte = 60, color = "yellow" }`. Look at this [link](https://docs.splunk.com/observability/en/data-visualization/charts/chart-options.html).
331
336
  """
332
337
  return pulumi.get(self, "color_scales")
333
338
 
@@ -339,7 +344,7 @@ class _HeatmapChartState:
339
344
  @pulumi.getter
340
345
  def description(self) -> Optional[pulumi.Input[str]]:
341
346
  """
342
- Description of the chart (Optional)
347
+ Description of the chart.
343
348
  """
344
349
  return pulumi.get(self, "description")
345
350
 
@@ -351,7 +356,7 @@ class _HeatmapChartState:
351
356
  @pulumi.getter(name="disableSampling")
352
357
  def disable_sampling(self) -> Optional[pulumi.Input[bool]]:
353
358
  """
354
- (false by default) If false, samples a subset of the output MTS, which improves UI performance
359
+ If `false`, samples a subset of the output MTS, which improves UI performance. `false` by default.
355
360
  """
356
361
  return pulumi.get(self, "disable_sampling")
357
362
 
@@ -363,7 +368,7 @@ class _HeatmapChartState:
363
368
  @pulumi.getter(name="groupBies")
364
369
  def group_bies(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
365
370
  """
366
- Properties to group by in the heatmap (in nesting order)
371
+ Properties to group by in the heatmap (in nesting order).
367
372
  """
368
373
  return pulumi.get(self, "group_bies")
369
374
 
@@ -375,7 +380,7 @@ class _HeatmapChartState:
375
380
  @pulumi.getter(name="hideTimestamp")
376
381
  def hide_timestamp(self) -> Optional[pulumi.Input[bool]]:
377
382
  """
378
- (false by default) Whether to show the timestamp in the chart
383
+ Whether to show the timestamp in the chart. `false` by default.
379
384
  """
380
385
  return pulumi.get(self, "hide_timestamp")
381
386
 
@@ -387,7 +392,7 @@ class _HeatmapChartState:
387
392
  @pulumi.getter(name="maxDelay")
388
393
  def max_delay(self) -> Optional[pulumi.Input[int]]:
389
394
  """
390
- How long (in seconds) to wait for late datapoints
395
+ How long (in seconds) to wait for late datapoints.
391
396
  """
392
397
  return pulumi.get(self, "max_delay")
393
398
 
@@ -399,7 +404,7 @@ class _HeatmapChartState:
399
404
  @pulumi.getter(name="minimumResolution")
400
405
  def minimum_resolution(self) -> Optional[pulumi.Input[int]]:
401
406
  """
402
- The minimum resolution (in seconds) to use for computing the underlying program
407
+ The minimum resolution (in seconds) to use for computing the underlying program.
403
408
  """
404
409
  return pulumi.get(self, "minimum_resolution")
405
410
 
@@ -411,7 +416,7 @@ class _HeatmapChartState:
411
416
  @pulumi.getter
412
417
  def name(self) -> Optional[pulumi.Input[str]]:
413
418
  """
414
- Name of the chart
419
+ Name of the chart.
415
420
  """
416
421
  return pulumi.get(self, "name")
417
422
 
@@ -423,7 +428,7 @@ class _HeatmapChartState:
423
428
  @pulumi.getter(name="programText")
424
429
  def program_text(self) -> Optional[pulumi.Input[str]]:
425
430
  """
426
- Signalflow program text for the chart. More info at "https://developers.signalfx.com/docs/signalflow-overview"
431
+ Signalflow program text for the chart. More info at <https://dev.splunk.com/observability/docs/signalflow/>.
427
432
  """
428
433
  return pulumi.get(self, "program_text")
429
434
 
@@ -435,7 +440,7 @@ class _HeatmapChartState:
435
440
  @pulumi.getter(name="refreshInterval")
436
441
  def refresh_interval(self) -> Optional[pulumi.Input[int]]:
437
442
  """
438
- How often (in seconds) to refresh the values of the heatmap
443
+ How often (in seconds) to refresh the values of the heatmap.
439
444
  """
440
445
  return pulumi.get(self, "refresh_interval")
441
446
 
@@ -447,7 +452,7 @@ class _HeatmapChartState:
447
452
  @pulumi.getter(name="sortBy")
448
453
  def sort_by(self) -> Optional[pulumi.Input[str]]:
449
454
  """
450
- The property to use when sorting the elements. Must be prepended with + for ascending or - for descending (e.g. -foo)
455
+ The property to use when sorting the elements. Must be prepended with `+` for ascending or `-` for descending (e.g. `-foo`).
451
456
  """
452
457
  return pulumi.get(self, "sort_by")
453
458
 
@@ -459,7 +464,7 @@ class _HeatmapChartState:
459
464
  @pulumi.getter
460
465
  def timezone(self) -> Optional[pulumi.Input[str]]:
461
466
  """
462
- The property value is a string that denotes the geographic region associated with the time zone, (e.g. Australia/Sydney)
467
+ The property value is a string that denotes the geographic region associated with the time zone, (default UTC).
463
468
  """
464
469
  return pulumi.get(self, "timezone")
465
470
 
@@ -471,7 +476,7 @@ class _HeatmapChartState:
471
476
  @pulumi.getter(name="unitPrefix")
472
477
  def unit_prefix(self) -> Optional[pulumi.Input[str]]:
473
478
  """
474
- (Metric by default) Must be "Metric" or "Binary"
479
+ Must be `"Metric"` or `"Binary`". `"Metric"` by default.
475
480
  """
476
481
  return pulumi.get(self, "unit_prefix")
477
482
 
@@ -483,7 +488,7 @@ class _HeatmapChartState:
483
488
  @pulumi.getter
484
489
  def url(self) -> Optional[pulumi.Input[str]]:
485
490
  """
486
- URL of the chart
491
+ The URL of the chart.
487
492
  """
488
493
  return pulumi.get(self, "url")
489
494
 
@@ -497,8 +502,8 @@ class HeatmapChart(pulumi.CustomResource):
497
502
  def __init__(__self__,
498
503
  resource_name: str,
499
504
  opts: Optional[pulumi.ResourceOptions] = None,
500
- color_range: Optional[pulumi.Input[pulumi.InputType['HeatmapChartColorRangeArgs']]] = None,
501
- color_scales: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['HeatmapChartColorScaleArgs']]]]] = None,
505
+ color_range: Optional[pulumi.Input[Union['HeatmapChartColorRangeArgs', 'HeatmapChartColorRangeArgsDict']]] = None,
506
+ color_scales: Optional[pulumi.Input[Sequence[pulumi.Input[Union['HeatmapChartColorScaleArgs', 'HeatmapChartColorScaleArgsDict']]]]] = None,
502
507
  description: Optional[pulumi.Input[str]] = None,
503
508
  disable_sampling: Optional[pulumi.Input[bool]] = None,
504
509
  group_bies: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
@@ -517,56 +522,62 @@ class HeatmapChart(pulumi.CustomResource):
517
522
 
518
523
  ## Example
519
524
 
520
- ## Arguments
521
-
522
- The following arguments are supported in the resource block:
523
-
524
- * `name` - (Required) Name of the chart.
525
- * `program_text` - (Required) Signalflow program text for the chart. More info at <https://dev.splunk.com/observability/docs/signalflow/>.
526
- * `description` - (Optional) Description of the chart.
527
- * `unit_prefix` - (Optional) Must be `"Metric"` or `"Binary`". `"Metric"` by default.
528
- * `minimum_resolution` - (Optional) The minimum resolution (in seconds) to use for computing the underlying program.
529
- * `max_delay` - (Optional) How long (in seconds) to wait for late datapoints.
530
- * `timezone` - (Optional) The property value is a string that denotes the geographic region associated with the time zone, (default UTC).
531
- * `refresh_interval` - (Optional) How often (in seconds) to refresh the values of the heatmap.
532
- * `disable_sampling` - (Optional) If `false`, samples a subset of the output MTS, which improves UI performance. `false` by default.
533
- * `group_by` - (Optional) Properties to group by in the heatmap (in nesting order).
534
- * `sort_by` - (Optional) The property to use when sorting the elements. Must be prepended with `+` for ascending or `-` for descending (e.g. `-foo`).
535
- * `hide_timestamp` - (Optional) Whether to show the timestamp in the chart. `false` by default.
536
- * `color_range` - (Optional, Default) Values and color for the color range. Example: `color_range : { min : 0, max : 100, color : "#0000ff" }`. Look at this [link](https://docs.splunk.com/observability/en/data-visualization/charts/chart-options.html).
537
- * `min_value` - (Optional) The minimum value within the coloring range.
538
- * `max_value` - (Optional) The maximum value within the coloring range.
539
- * `color` - (Required) The color range to use. The starting hex color value for data values in a heatmap chart. Specify the value as a 6-character hexadecimal value preceded by the '#' character, for example "#ea1849" (grass green).
540
- * `color_scale` - (Optional. Conflicts with `color_range`) One to N blocks, each defining a single color range including both the color to display for that range and the borders of the range. Example: `color_scale { gt = 60, color = "blue" } color_scale { lte = 60, color = "yellow" }`. Look at this [link](https://docs.splunk.com/observability/en/data-visualization/charts/chart-options.html).
541
- * `gt` - (Optional) Indicates the lower threshold non-inclusive value for this range.
542
- * `gte` - (Optional) Indicates the lower threshold inclusive value for this range.
543
- * `lt` - (Optional) Indicates the upper threshold non-inclusive value for this range.
544
- * `lte` - (Optional) Indicates the upper threshold inclusive value for this range.
545
- * `color` - (Required) The color range to use. Hex values are not supported here. Must be one of gray, blue, light_blue, navy, dark_orange, orange, dark_yellow, magenta, cerise, pink, violet, purple, gray_blue, dark_green, green, aquamarine, red, yellow, vivid_yellow, light_green, or lime_green.
546
-
547
- ## Attributes
548
-
549
- In a addition to all arguments above, the following attributes are exported:
550
-
551
- * `id` - The ID of the chart.
552
- * `url` - The URL of the chart.
525
+ ```python
526
+ import pulumi
527
+ import pulumi_signalfx as signalfx
528
+
529
+ myheatmapchart0 = signalfx.HeatmapChart("myheatmapchart0",
530
+ name="CPU Total Idle - Heatmap",
531
+ program_text=\"\"\"myfilters = filter("cluster_name", "prod") and filter("role", "search")
532
+ data("cpu.total.idle", filter=myfilters).publish()
533
+ \"\"\",
534
+ description="Very cool Heatmap",
535
+ disable_sampling=True,
536
+ sort_by="+host",
537
+ group_bies=[
538
+ "hostname",
539
+ "host",
540
+ ],
541
+ hide_timestamp=True,
542
+ timezone="Europe/Paris",
543
+ color_range={
544
+ "min_value": 0,
545
+ "max_value": 100,
546
+ "color": "#ff0000",
547
+ },
548
+ color_scales=[
549
+ {
550
+ "gte": 99,
551
+ "color": "green",
552
+ },
553
+ {
554
+ "lt": 99,
555
+ "gte": 95,
556
+ "color": "yellow",
557
+ },
558
+ {
559
+ "lt": 95,
560
+ "color": "red",
561
+ },
562
+ ])
563
+ ```
553
564
 
554
565
  :param str resource_name: The name of the resource.
555
566
  :param pulumi.ResourceOptions opts: Options for the resource.
556
- :param pulumi.Input[pulumi.InputType['HeatmapChartColorRangeArgs']] color_range: Values and color for the color range. Example: colorRange : { min : 0, max : 100, color : "#0000ff" }
557
- :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['HeatmapChartColorScaleArgs']]]] color_scales: Single color range including both the color to display for that range and the borders of the range
558
- :param pulumi.Input[str] description: Description of the chart (Optional)
559
- :param pulumi.Input[bool] disable_sampling: (false by default) If false, samples a subset of the output MTS, which improves UI performance
560
- :param pulumi.Input[Sequence[pulumi.Input[str]]] group_bies: Properties to group by in the heatmap (in nesting order)
561
- :param pulumi.Input[bool] hide_timestamp: (false by default) Whether to show the timestamp in the chart
562
- :param pulumi.Input[int] max_delay: How long (in seconds) to wait for late datapoints
563
- :param pulumi.Input[int] minimum_resolution: The minimum resolution (in seconds) to use for computing the underlying program
564
- :param pulumi.Input[str] name: Name of the chart
565
- :param pulumi.Input[str] program_text: Signalflow program text for the chart. More info at "https://developers.signalfx.com/docs/signalflow-overview"
566
- :param pulumi.Input[int] refresh_interval: How often (in seconds) to refresh the values of the heatmap
567
- :param pulumi.Input[str] sort_by: The property to use when sorting the elements. Must be prepended with + for ascending or - for descending (e.g. -foo)
568
- :param pulumi.Input[str] timezone: The property value is a string that denotes the geographic region associated with the time zone, (e.g. Australia/Sydney)
569
- :param pulumi.Input[str] unit_prefix: (Metric by default) Must be "Metric" or "Binary"
567
+ :param pulumi.Input[Union['HeatmapChartColorRangeArgs', 'HeatmapChartColorRangeArgsDict']] color_range: Values and color for the color range. Example: `color_range : { min : 0, max : 100, color : "#0000ff" }`. Look at this [link](https://docs.splunk.com/observability/en/data-visualization/charts/chart-options.html).
568
+ :param pulumi.Input[Sequence[pulumi.Input[Union['HeatmapChartColorScaleArgs', 'HeatmapChartColorScaleArgsDict']]]] color_scales: One to N blocks, each defining a single color range including both the color to display for that range and the borders of the range. Example: `color_scale { gt = 60, color = "blue" } color_scale { lte = 60, color = "yellow" }`. Look at this [link](https://docs.splunk.com/observability/en/data-visualization/charts/chart-options.html).
569
+ :param pulumi.Input[str] description: Description of the chart.
570
+ :param pulumi.Input[bool] disable_sampling: If `false`, samples a subset of the output MTS, which improves UI performance. `false` by default.
571
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] group_bies: Properties to group by in the heatmap (in nesting order).
572
+ :param pulumi.Input[bool] hide_timestamp: Whether to show the timestamp in the chart. `false` by default.
573
+ :param pulumi.Input[int] max_delay: How long (in seconds) to wait for late datapoints.
574
+ :param pulumi.Input[int] minimum_resolution: The minimum resolution (in seconds) to use for computing the underlying program.
575
+ :param pulumi.Input[str] name: Name of the chart.
576
+ :param pulumi.Input[str] program_text: Signalflow program text for the chart. More info at <https://dev.splunk.com/observability/docs/signalflow/>.
577
+ :param pulumi.Input[int] refresh_interval: How often (in seconds) to refresh the values of the heatmap.
578
+ :param pulumi.Input[str] sort_by: The property to use when sorting the elements. Must be prepended with `+` for ascending or `-` for descending (e.g. `-foo`).
579
+ :param pulumi.Input[str] timezone: The property value is a string that denotes the geographic region associated with the time zone, (default UTC).
580
+ :param pulumi.Input[str] unit_prefix: Must be `"Metric"` or `"Binary`". `"Metric"` by default.
570
581
  """
571
582
  ...
572
583
  @overload
@@ -579,39 +590,45 @@ class HeatmapChart(pulumi.CustomResource):
579
590
 
580
591
  ## Example
581
592
 
582
- ## Arguments
583
-
584
- The following arguments are supported in the resource block:
585
-
586
- * `name` - (Required) Name of the chart.
587
- * `program_text` - (Required) Signalflow program text for the chart. More info at <https://dev.splunk.com/observability/docs/signalflow/>.
588
- * `description` - (Optional) Description of the chart.
589
- * `unit_prefix` - (Optional) Must be `"Metric"` or `"Binary`". `"Metric"` by default.
590
- * `minimum_resolution` - (Optional) The minimum resolution (in seconds) to use for computing the underlying program.
591
- * `max_delay` - (Optional) How long (in seconds) to wait for late datapoints.
592
- * `timezone` - (Optional) The property value is a string that denotes the geographic region associated with the time zone, (default UTC).
593
- * `refresh_interval` - (Optional) How often (in seconds) to refresh the values of the heatmap.
594
- * `disable_sampling` - (Optional) If `false`, samples a subset of the output MTS, which improves UI performance. `false` by default.
595
- * `group_by` - (Optional) Properties to group by in the heatmap (in nesting order).
596
- * `sort_by` - (Optional) The property to use when sorting the elements. Must be prepended with `+` for ascending or `-` for descending (e.g. `-foo`).
597
- * `hide_timestamp` - (Optional) Whether to show the timestamp in the chart. `false` by default.
598
- * `color_range` - (Optional, Default) Values and color for the color range. Example: `color_range : { min : 0, max : 100, color : "#0000ff" }`. Look at this [link](https://docs.splunk.com/observability/en/data-visualization/charts/chart-options.html).
599
- * `min_value` - (Optional) The minimum value within the coloring range.
600
- * `max_value` - (Optional) The maximum value within the coloring range.
601
- * `color` - (Required) The color range to use. The starting hex color value for data values in a heatmap chart. Specify the value as a 6-character hexadecimal value preceded by the '#' character, for example "#ea1849" (grass green).
602
- * `color_scale` - (Optional. Conflicts with `color_range`) One to N blocks, each defining a single color range including both the color to display for that range and the borders of the range. Example: `color_scale { gt = 60, color = "blue" } color_scale { lte = 60, color = "yellow" }`. Look at this [link](https://docs.splunk.com/observability/en/data-visualization/charts/chart-options.html).
603
- * `gt` - (Optional) Indicates the lower threshold non-inclusive value for this range.
604
- * `gte` - (Optional) Indicates the lower threshold inclusive value for this range.
605
- * `lt` - (Optional) Indicates the upper threshold non-inclusive value for this range.
606
- * `lte` - (Optional) Indicates the upper threshold inclusive value for this range.
607
- * `color` - (Required) The color range to use. Hex values are not supported here. Must be one of gray, blue, light_blue, navy, dark_orange, orange, dark_yellow, magenta, cerise, pink, violet, purple, gray_blue, dark_green, green, aquamarine, red, yellow, vivid_yellow, light_green, or lime_green.
608
-
609
- ## Attributes
610
-
611
- In a addition to all arguments above, the following attributes are exported:
612
-
613
- * `id` - The ID of the chart.
614
- * `url` - The URL of the chart.
593
+ ```python
594
+ import pulumi
595
+ import pulumi_signalfx as signalfx
596
+
597
+ myheatmapchart0 = signalfx.HeatmapChart("myheatmapchart0",
598
+ name="CPU Total Idle - Heatmap",
599
+ program_text=\"\"\"myfilters = filter("cluster_name", "prod") and filter("role", "search")
600
+ data("cpu.total.idle", filter=myfilters).publish()
601
+ \"\"\",
602
+ description="Very cool Heatmap",
603
+ disable_sampling=True,
604
+ sort_by="+host",
605
+ group_bies=[
606
+ "hostname",
607
+ "host",
608
+ ],
609
+ hide_timestamp=True,
610
+ timezone="Europe/Paris",
611
+ color_range={
612
+ "min_value": 0,
613
+ "max_value": 100,
614
+ "color": "#ff0000",
615
+ },
616
+ color_scales=[
617
+ {
618
+ "gte": 99,
619
+ "color": "green",
620
+ },
621
+ {
622
+ "lt": 99,
623
+ "gte": 95,
624
+ "color": "yellow",
625
+ },
626
+ {
627
+ "lt": 95,
628
+ "color": "red",
629
+ },
630
+ ])
631
+ ```
615
632
 
616
633
  :param str resource_name: The name of the resource.
617
634
  :param HeatmapChartArgs args: The arguments to use to populate this resource's properties.
@@ -628,8 +645,8 @@ class HeatmapChart(pulumi.CustomResource):
628
645
  def _internal_init(__self__,
629
646
  resource_name: str,
630
647
  opts: Optional[pulumi.ResourceOptions] = None,
631
- color_range: Optional[pulumi.Input[pulumi.InputType['HeatmapChartColorRangeArgs']]] = None,
632
- color_scales: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['HeatmapChartColorScaleArgs']]]]] = None,
648
+ color_range: Optional[pulumi.Input[Union['HeatmapChartColorRangeArgs', 'HeatmapChartColorRangeArgsDict']]] = None,
649
+ color_scales: Optional[pulumi.Input[Sequence[pulumi.Input[Union['HeatmapChartColorScaleArgs', 'HeatmapChartColorScaleArgsDict']]]]] = None,
633
650
  description: Optional[pulumi.Input[str]] = None,
634
651
  disable_sampling: Optional[pulumi.Input[bool]] = None,
635
652
  group_bies: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
@@ -678,8 +695,8 @@ class HeatmapChart(pulumi.CustomResource):
678
695
  def get(resource_name: str,
679
696
  id: pulumi.Input[str],
680
697
  opts: Optional[pulumi.ResourceOptions] = None,
681
- color_range: Optional[pulumi.Input[pulumi.InputType['HeatmapChartColorRangeArgs']]] = None,
682
- color_scales: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['HeatmapChartColorScaleArgs']]]]] = None,
698
+ color_range: Optional[pulumi.Input[Union['HeatmapChartColorRangeArgs', 'HeatmapChartColorRangeArgsDict']]] = None,
699
+ color_scales: Optional[pulumi.Input[Sequence[pulumi.Input[Union['HeatmapChartColorScaleArgs', 'HeatmapChartColorScaleArgsDict']]]]] = None,
683
700
  description: Optional[pulumi.Input[str]] = None,
684
701
  disable_sampling: Optional[pulumi.Input[bool]] = None,
685
702
  group_bies: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
@@ -700,21 +717,21 @@ class HeatmapChart(pulumi.CustomResource):
700
717
  :param str resource_name: The unique name of the resulting resource.
701
718
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
702
719
  :param pulumi.ResourceOptions opts: Options for the resource.
703
- :param pulumi.Input[pulumi.InputType['HeatmapChartColorRangeArgs']] color_range: Values and color for the color range. Example: colorRange : { min : 0, max : 100, color : "#0000ff" }
704
- :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['HeatmapChartColorScaleArgs']]]] color_scales: Single color range including both the color to display for that range and the borders of the range
705
- :param pulumi.Input[str] description: Description of the chart (Optional)
706
- :param pulumi.Input[bool] disable_sampling: (false by default) If false, samples a subset of the output MTS, which improves UI performance
707
- :param pulumi.Input[Sequence[pulumi.Input[str]]] group_bies: Properties to group by in the heatmap (in nesting order)
708
- :param pulumi.Input[bool] hide_timestamp: (false by default) Whether to show the timestamp in the chart
709
- :param pulumi.Input[int] max_delay: How long (in seconds) to wait for late datapoints
710
- :param pulumi.Input[int] minimum_resolution: The minimum resolution (in seconds) to use for computing the underlying program
711
- :param pulumi.Input[str] name: Name of the chart
712
- :param pulumi.Input[str] program_text: Signalflow program text for the chart. More info at "https://developers.signalfx.com/docs/signalflow-overview"
713
- :param pulumi.Input[int] refresh_interval: How often (in seconds) to refresh the values of the heatmap
714
- :param pulumi.Input[str] sort_by: The property to use when sorting the elements. Must be prepended with + for ascending or - for descending (e.g. -foo)
715
- :param pulumi.Input[str] timezone: The property value is a string that denotes the geographic region associated with the time zone, (e.g. Australia/Sydney)
716
- :param pulumi.Input[str] unit_prefix: (Metric by default) Must be "Metric" or "Binary"
717
- :param pulumi.Input[str] url: URL of the chart
720
+ :param pulumi.Input[Union['HeatmapChartColorRangeArgs', 'HeatmapChartColorRangeArgsDict']] color_range: Values and color for the color range. Example: `color_range : { min : 0, max : 100, color : "#0000ff" }`. Look at this [link](https://docs.splunk.com/observability/en/data-visualization/charts/chart-options.html).
721
+ :param pulumi.Input[Sequence[pulumi.Input[Union['HeatmapChartColorScaleArgs', 'HeatmapChartColorScaleArgsDict']]]] color_scales: One to N blocks, each defining a single color range including both the color to display for that range and the borders of the range. Example: `color_scale { gt = 60, color = "blue" } color_scale { lte = 60, color = "yellow" }`. Look at this [link](https://docs.splunk.com/observability/en/data-visualization/charts/chart-options.html).
722
+ :param pulumi.Input[str] description: Description of the chart.
723
+ :param pulumi.Input[bool] disable_sampling: If `false`, samples a subset of the output MTS, which improves UI performance. `false` by default.
724
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] group_bies: Properties to group by in the heatmap (in nesting order).
725
+ :param pulumi.Input[bool] hide_timestamp: Whether to show the timestamp in the chart. `false` by default.
726
+ :param pulumi.Input[int] max_delay: How long (in seconds) to wait for late datapoints.
727
+ :param pulumi.Input[int] minimum_resolution: The minimum resolution (in seconds) to use for computing the underlying program.
728
+ :param pulumi.Input[str] name: Name of the chart.
729
+ :param pulumi.Input[str] program_text: Signalflow program text for the chart. More info at <https://dev.splunk.com/observability/docs/signalflow/>.
730
+ :param pulumi.Input[int] refresh_interval: How often (in seconds) to refresh the values of the heatmap.
731
+ :param pulumi.Input[str] sort_by: The property to use when sorting the elements. Must be prepended with `+` for ascending or `-` for descending (e.g. `-foo`).
732
+ :param pulumi.Input[str] timezone: The property value is a string that denotes the geographic region associated with the time zone, (default UTC).
733
+ :param pulumi.Input[str] unit_prefix: Must be `"Metric"` or `"Binary`". `"Metric"` by default.
734
+ :param pulumi.Input[str] url: The URL of the chart.
718
735
  """
719
736
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
720
737
 
@@ -741,7 +758,7 @@ class HeatmapChart(pulumi.CustomResource):
741
758
  @pulumi.getter(name="colorRange")
742
759
  def color_range(self) -> pulumi.Output[Optional['outputs.HeatmapChartColorRange']]:
743
760
  """
744
- Values and color for the color range. Example: colorRange : { min : 0, max : 100, color : "#0000ff" }
761
+ Values and color for the color range. Example: `color_range : { min : 0, max : 100, color : "#0000ff" }`. Look at this [link](https://docs.splunk.com/observability/en/data-visualization/charts/chart-options.html).
745
762
  """
746
763
  return pulumi.get(self, "color_range")
747
764
 
@@ -749,7 +766,7 @@ class HeatmapChart(pulumi.CustomResource):
749
766
  @pulumi.getter(name="colorScales")
750
767
  def color_scales(self) -> pulumi.Output[Optional[Sequence['outputs.HeatmapChartColorScale']]]:
751
768
  """
752
- Single color range including both the color to display for that range and the borders of the range
769
+ One to N blocks, each defining a single color range including both the color to display for that range and the borders of the range. Example: `color_scale { gt = 60, color = "blue" } color_scale { lte = 60, color = "yellow" }`. Look at this [link](https://docs.splunk.com/observability/en/data-visualization/charts/chart-options.html).
753
770
  """
754
771
  return pulumi.get(self, "color_scales")
755
772
 
@@ -757,7 +774,7 @@ class HeatmapChart(pulumi.CustomResource):
757
774
  @pulumi.getter
758
775
  def description(self) -> pulumi.Output[Optional[str]]:
759
776
  """
760
- Description of the chart (Optional)
777
+ Description of the chart.
761
778
  """
762
779
  return pulumi.get(self, "description")
763
780
 
@@ -765,7 +782,7 @@ class HeatmapChart(pulumi.CustomResource):
765
782
  @pulumi.getter(name="disableSampling")
766
783
  def disable_sampling(self) -> pulumi.Output[Optional[bool]]:
767
784
  """
768
- (false by default) If false, samples a subset of the output MTS, which improves UI performance
785
+ If `false`, samples a subset of the output MTS, which improves UI performance. `false` by default.
769
786
  """
770
787
  return pulumi.get(self, "disable_sampling")
771
788
 
@@ -773,7 +790,7 @@ class HeatmapChart(pulumi.CustomResource):
773
790
  @pulumi.getter(name="groupBies")
774
791
  def group_bies(self) -> pulumi.Output[Optional[Sequence[str]]]:
775
792
  """
776
- Properties to group by in the heatmap (in nesting order)
793
+ Properties to group by in the heatmap (in nesting order).
777
794
  """
778
795
  return pulumi.get(self, "group_bies")
779
796
 
@@ -781,7 +798,7 @@ class HeatmapChart(pulumi.CustomResource):
781
798
  @pulumi.getter(name="hideTimestamp")
782
799
  def hide_timestamp(self) -> pulumi.Output[Optional[bool]]:
783
800
  """
784
- (false by default) Whether to show the timestamp in the chart
801
+ Whether to show the timestamp in the chart. `false` by default.
785
802
  """
786
803
  return pulumi.get(self, "hide_timestamp")
787
804
 
@@ -789,7 +806,7 @@ class HeatmapChart(pulumi.CustomResource):
789
806
  @pulumi.getter(name="maxDelay")
790
807
  def max_delay(self) -> pulumi.Output[Optional[int]]:
791
808
  """
792
- How long (in seconds) to wait for late datapoints
809
+ How long (in seconds) to wait for late datapoints.
793
810
  """
794
811
  return pulumi.get(self, "max_delay")
795
812
 
@@ -797,7 +814,7 @@ class HeatmapChart(pulumi.CustomResource):
797
814
  @pulumi.getter(name="minimumResolution")
798
815
  def minimum_resolution(self) -> pulumi.Output[Optional[int]]:
799
816
  """
800
- The minimum resolution (in seconds) to use for computing the underlying program
817
+ The minimum resolution (in seconds) to use for computing the underlying program.
801
818
  """
802
819
  return pulumi.get(self, "minimum_resolution")
803
820
 
@@ -805,7 +822,7 @@ class HeatmapChart(pulumi.CustomResource):
805
822
  @pulumi.getter
806
823
  def name(self) -> pulumi.Output[str]:
807
824
  """
808
- Name of the chart
825
+ Name of the chart.
809
826
  """
810
827
  return pulumi.get(self, "name")
811
828
 
@@ -813,7 +830,7 @@ class HeatmapChart(pulumi.CustomResource):
813
830
  @pulumi.getter(name="programText")
814
831
  def program_text(self) -> pulumi.Output[str]:
815
832
  """
816
- Signalflow program text for the chart. More info at "https://developers.signalfx.com/docs/signalflow-overview"
833
+ Signalflow program text for the chart. More info at <https://dev.splunk.com/observability/docs/signalflow/>.
817
834
  """
818
835
  return pulumi.get(self, "program_text")
819
836
 
@@ -821,7 +838,7 @@ class HeatmapChart(pulumi.CustomResource):
821
838
  @pulumi.getter(name="refreshInterval")
822
839
  def refresh_interval(self) -> pulumi.Output[Optional[int]]:
823
840
  """
824
- How often (in seconds) to refresh the values of the heatmap
841
+ How often (in seconds) to refresh the values of the heatmap.
825
842
  """
826
843
  return pulumi.get(self, "refresh_interval")
827
844
 
@@ -829,7 +846,7 @@ class HeatmapChart(pulumi.CustomResource):
829
846
  @pulumi.getter(name="sortBy")
830
847
  def sort_by(self) -> pulumi.Output[Optional[str]]:
831
848
  """
832
- The property to use when sorting the elements. Must be prepended with + for ascending or - for descending (e.g. -foo)
849
+ The property to use when sorting the elements. Must be prepended with `+` for ascending or `-` for descending (e.g. `-foo`).
833
850
  """
834
851
  return pulumi.get(self, "sort_by")
835
852
 
@@ -837,7 +854,7 @@ class HeatmapChart(pulumi.CustomResource):
837
854
  @pulumi.getter
838
855
  def timezone(self) -> pulumi.Output[Optional[str]]:
839
856
  """
840
- The property value is a string that denotes the geographic region associated with the time zone, (e.g. Australia/Sydney)
857
+ The property value is a string that denotes the geographic region associated with the time zone, (default UTC).
841
858
  """
842
859
  return pulumi.get(self, "timezone")
843
860
 
@@ -845,7 +862,7 @@ class HeatmapChart(pulumi.CustomResource):
845
862
  @pulumi.getter(name="unitPrefix")
846
863
  def unit_prefix(self) -> pulumi.Output[Optional[str]]:
847
864
  """
848
- (Metric by default) Must be "Metric" or "Binary"
865
+ Must be `"Metric"` or `"Binary`". `"Metric"` by default.
849
866
  """
850
867
  return pulumi.get(self, "unit_prefix")
851
868
 
@@ -853,7 +870,7 @@ class HeatmapChart(pulumi.CustomResource):
853
870
  @pulumi.getter
854
871
  def url(self) -> pulumi.Output[str]:
855
872
  """
856
- URL of the chart
873
+ The URL of the chart.
857
874
  """
858
875
  return pulumi.get(self, "url")
859
876