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
@@ -0,0 +1,197 @@
1
+ # coding=utf-8
2
+ # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
+ # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+
5
+ import copy
6
+ import warnings
7
+ import sys
8
+ import pulumi
9
+ import pulumi.runtime
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
15
+ from . import _utilities
16
+
17
+ __all__ = ['SloChartArgs', 'SloChart']
18
+
19
+ @pulumi.input_type
20
+ class SloChartArgs:
21
+ def __init__(__self__, *,
22
+ slo_id: pulumi.Input[str]):
23
+ """
24
+ The set of arguments for constructing a SloChart resource.
25
+ :param pulumi.Input[str] slo_id: ID of SLO object.
26
+ """
27
+ pulumi.set(__self__, "slo_id", slo_id)
28
+
29
+ @property
30
+ @pulumi.getter(name="sloId")
31
+ def slo_id(self) -> pulumi.Input[str]:
32
+ """
33
+ ID of SLO object.
34
+ """
35
+ return pulumi.get(self, "slo_id")
36
+
37
+ @slo_id.setter
38
+ def slo_id(self, value: pulumi.Input[str]):
39
+ pulumi.set(self, "slo_id", value)
40
+
41
+
42
+ @pulumi.input_type
43
+ class _SloChartState:
44
+ def __init__(__self__, *,
45
+ slo_id: Optional[pulumi.Input[str]] = None,
46
+ url: Optional[pulumi.Input[str]] = None):
47
+ """
48
+ Input properties used for looking up and filtering SloChart resources.
49
+ :param pulumi.Input[str] slo_id: ID of SLO object.
50
+ :param pulumi.Input[str] url: The URL of the chart.
51
+ """
52
+ if slo_id is not None:
53
+ pulumi.set(__self__, "slo_id", slo_id)
54
+ if url is not None:
55
+ pulumi.set(__self__, "url", url)
56
+
57
+ @property
58
+ @pulumi.getter(name="sloId")
59
+ def slo_id(self) -> Optional[pulumi.Input[str]]:
60
+ """
61
+ ID of SLO object.
62
+ """
63
+ return pulumi.get(self, "slo_id")
64
+
65
+ @slo_id.setter
66
+ def slo_id(self, value: Optional[pulumi.Input[str]]):
67
+ pulumi.set(self, "slo_id", value)
68
+
69
+ @property
70
+ @pulumi.getter
71
+ def url(self) -> Optional[pulumi.Input[str]]:
72
+ """
73
+ The URL of the chart.
74
+ """
75
+ return pulumi.get(self, "url")
76
+
77
+ @url.setter
78
+ def url(self, value: Optional[pulumi.Input[str]]):
79
+ pulumi.set(self, "url", value)
80
+
81
+
82
+ class SloChart(pulumi.CustomResource):
83
+ @overload
84
+ def __init__(__self__,
85
+ resource_name: str,
86
+ opts: Optional[pulumi.ResourceOptions] = None,
87
+ slo_id: Optional[pulumi.Input[str]] = None,
88
+ __props__=None):
89
+ """
90
+ This chart type displays an overview of your SLO and can give more specific insights into your SLI performance using different filter and customized time ranges.
91
+
92
+ ## Example
93
+
94
+ ```python
95
+ import pulumi
96
+ import pulumi_signalfx as signalfx
97
+
98
+ myslochart0 = signalfx.SloChart("myslochart0", slo_id="GbOHXbSAEAA")
99
+ ```
100
+
101
+ :param str resource_name: The name of the resource.
102
+ :param pulumi.ResourceOptions opts: Options for the resource.
103
+ :param pulumi.Input[str] slo_id: ID of SLO object.
104
+ """
105
+ ...
106
+ @overload
107
+ def __init__(__self__,
108
+ resource_name: str,
109
+ args: SloChartArgs,
110
+ opts: Optional[pulumi.ResourceOptions] = None):
111
+ """
112
+ This chart type displays an overview of your SLO and can give more specific insights into your SLI performance using different filter and customized time ranges.
113
+
114
+ ## Example
115
+
116
+ ```python
117
+ import pulumi
118
+ import pulumi_signalfx as signalfx
119
+
120
+ myslochart0 = signalfx.SloChart("myslochart0", slo_id="GbOHXbSAEAA")
121
+ ```
122
+
123
+ :param str resource_name: The name of the resource.
124
+ :param SloChartArgs args: The arguments to use to populate this resource's properties.
125
+ :param pulumi.ResourceOptions opts: Options for the resource.
126
+ """
127
+ ...
128
+ def __init__(__self__, resource_name: str, *args, **kwargs):
129
+ resource_args, opts = _utilities.get_resource_args_opts(SloChartArgs, pulumi.ResourceOptions, *args, **kwargs)
130
+ if resource_args is not None:
131
+ __self__._internal_init(resource_name, opts, **resource_args.__dict__)
132
+ else:
133
+ __self__._internal_init(resource_name, *args, **kwargs)
134
+
135
+ def _internal_init(__self__,
136
+ resource_name: str,
137
+ opts: Optional[pulumi.ResourceOptions] = None,
138
+ slo_id: Optional[pulumi.Input[str]] = None,
139
+ __props__=None):
140
+ opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
141
+ if not isinstance(opts, pulumi.ResourceOptions):
142
+ raise TypeError('Expected resource options to be a ResourceOptions instance')
143
+ if opts.id is None:
144
+ if __props__ is not None:
145
+ raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
146
+ __props__ = SloChartArgs.__new__(SloChartArgs)
147
+
148
+ if slo_id is None and not opts.urn:
149
+ raise TypeError("Missing required property 'slo_id'")
150
+ __props__.__dict__["slo_id"] = slo_id
151
+ __props__.__dict__["url"] = None
152
+ super(SloChart, __self__).__init__(
153
+ 'signalfx:index/sloChart:SloChart',
154
+ resource_name,
155
+ __props__,
156
+ opts)
157
+
158
+ @staticmethod
159
+ def get(resource_name: str,
160
+ id: pulumi.Input[str],
161
+ opts: Optional[pulumi.ResourceOptions] = None,
162
+ slo_id: Optional[pulumi.Input[str]] = None,
163
+ url: Optional[pulumi.Input[str]] = None) -> 'SloChart':
164
+ """
165
+ Get an existing SloChart resource's state with the given name, id, and optional extra
166
+ properties used to qualify the lookup.
167
+
168
+ :param str resource_name: The unique name of the resulting resource.
169
+ :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
170
+ :param pulumi.ResourceOptions opts: Options for the resource.
171
+ :param pulumi.Input[str] slo_id: ID of SLO object.
172
+ :param pulumi.Input[str] url: The URL of the chart.
173
+ """
174
+ opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
175
+
176
+ __props__ = _SloChartState.__new__(_SloChartState)
177
+
178
+ __props__.__dict__["slo_id"] = slo_id
179
+ __props__.__dict__["url"] = url
180
+ return SloChart(resource_name, opts=opts, __props__=__props__)
181
+
182
+ @property
183
+ @pulumi.getter(name="sloId")
184
+ def slo_id(self) -> pulumi.Output[str]:
185
+ """
186
+ ID of SLO object.
187
+ """
188
+ return pulumi.get(self, "slo_id")
189
+
190
+ @property
191
+ @pulumi.getter
192
+ def url(self) -> pulumi.Output[str]:
193
+ """
194
+ The URL of the chart.
195
+ """
196
+ return pulumi.get(self, "url")
197
+
@@ -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 *
@@ -30,14 +35,14 @@ class TableChartArgs:
30
35
  viz_options: Optional[pulumi.Input[Sequence[pulumi.Input['TableChartVizOptionArgs']]]] = None):
31
36
  """
32
37
  The set of arguments for constructing a TableChart resource.
33
- :param pulumi.Input[str] program_text: Signalflow program text for the chart. More info at "https://developers.signalfx.com/docs/signalflow-overview"
34
- :param pulumi.Input[str] description: Description of the chart (Optional)
38
+ :param pulumi.Input[str] program_text: The SignalFlow for your Data Table Chart
39
+ :param pulumi.Input[str] description: Description of the table chart.
35
40
  :param pulumi.Input[bool] disable_sampling: (false by default) If false, samples a subset of the output MTS, which improves UI performance
36
- :param pulumi.Input[Sequence[pulumi.Input[str]]] group_bies: Properties to group by in the Table (in nesting order)
41
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] group_bies: Dimension to group by
37
42
  :param pulumi.Input[bool] hide_timestamp: (false by default) Whether to show the timestamp in the chart
38
43
  :param pulumi.Input[int] max_delay: How long (in seconds) to wait for late datapoints
39
44
  :param pulumi.Input[int] minimum_resolution: The minimum resolution (in seconds) to use for computing the underlying program
40
- :param pulumi.Input[str] name: Name of the chart
45
+ :param pulumi.Input[str] name: Name of the table chart.
41
46
  :param pulumi.Input[int] refresh_interval: How often (in seconds) to refresh the values of the Table
42
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)
43
48
  :param pulumi.Input[str] unit_prefix: (Metric by default) Must be "Metric" or "Binary"
@@ -71,7 +76,7 @@ class TableChartArgs:
71
76
  @pulumi.getter(name="programText")
72
77
  def program_text(self) -> pulumi.Input[str]:
73
78
  """
74
- Signalflow program text for the chart. More info at "https://developers.signalfx.com/docs/signalflow-overview"
79
+ The SignalFlow for your Data Table Chart
75
80
  """
76
81
  return pulumi.get(self, "program_text")
77
82
 
@@ -83,7 +88,7 @@ class TableChartArgs:
83
88
  @pulumi.getter
84
89
  def description(self) -> Optional[pulumi.Input[str]]:
85
90
  """
86
- Description of the chart (Optional)
91
+ Description of the table chart.
87
92
  """
88
93
  return pulumi.get(self, "description")
89
94
 
@@ -107,7 +112,7 @@ class TableChartArgs:
107
112
  @pulumi.getter(name="groupBies")
108
113
  def group_bies(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
109
114
  """
110
- Properties to group by in the Table (in nesting order)
115
+ Dimension to group by
111
116
  """
112
117
  return pulumi.get(self, "group_bies")
113
118
 
@@ -155,7 +160,7 @@ class TableChartArgs:
155
160
  @pulumi.getter
156
161
  def name(self) -> Optional[pulumi.Input[str]]:
157
162
  """
158
- Name of the chart
163
+ Name of the table chart.
159
164
  """
160
165
  return pulumi.get(self, "name")
161
166
 
@@ -230,18 +235,18 @@ class _TableChartState:
230
235
  viz_options: Optional[pulumi.Input[Sequence[pulumi.Input['TableChartVizOptionArgs']]]] = None):
231
236
  """
232
237
  Input properties used for looking up and filtering TableChart resources.
233
- :param pulumi.Input[str] description: Description of the chart (Optional)
238
+ :param pulumi.Input[str] description: Description of the table chart.
234
239
  :param pulumi.Input[bool] disable_sampling: (false by default) If false, samples a subset of the output MTS, which improves UI performance
235
- :param pulumi.Input[Sequence[pulumi.Input[str]]] group_bies: Properties to group by in the Table (in nesting order)
240
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] group_bies: Dimension to group by
236
241
  :param pulumi.Input[bool] hide_timestamp: (false by default) Whether to show the timestamp in the chart
237
242
  :param pulumi.Input[int] max_delay: How long (in seconds) to wait for late datapoints
238
243
  :param pulumi.Input[int] minimum_resolution: The minimum resolution (in seconds) to use for computing the underlying program
239
- :param pulumi.Input[str] name: Name of the chart
240
- :param pulumi.Input[str] program_text: Signalflow program text for the chart. More info at "https://developers.signalfx.com/docs/signalflow-overview"
244
+ :param pulumi.Input[str] name: Name of the table chart.
245
+ :param pulumi.Input[str] program_text: The SignalFlow for your Data Table Chart
241
246
  :param pulumi.Input[int] refresh_interval: How often (in seconds) to refresh the values of the Table
242
247
  :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)
243
248
  :param pulumi.Input[str] unit_prefix: (Metric by default) Must be "Metric" or "Binary"
244
- :param pulumi.Input[str] url: URL of the chart
249
+ :param pulumi.Input[str] url: The URL of the chart.
245
250
  :param pulumi.Input[Sequence[pulumi.Input['TableChartVizOptionArgs']]] viz_options: Plot-level customization options, associated with a publish statement
246
251
  """
247
252
  if description is not None:
@@ -275,7 +280,7 @@ class _TableChartState:
275
280
  @pulumi.getter
276
281
  def description(self) -> Optional[pulumi.Input[str]]:
277
282
  """
278
- Description of the chart (Optional)
283
+ Description of the table chart.
279
284
  """
280
285
  return pulumi.get(self, "description")
281
286
 
@@ -299,7 +304,7 @@ class _TableChartState:
299
304
  @pulumi.getter(name="groupBies")
300
305
  def group_bies(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
301
306
  """
302
- Properties to group by in the Table (in nesting order)
307
+ Dimension to group by
303
308
  """
304
309
  return pulumi.get(self, "group_bies")
305
310
 
@@ -347,7 +352,7 @@ class _TableChartState:
347
352
  @pulumi.getter
348
353
  def name(self) -> Optional[pulumi.Input[str]]:
349
354
  """
350
- Name of the chart
355
+ Name of the table chart.
351
356
  """
352
357
  return pulumi.get(self, "name")
353
358
 
@@ -359,7 +364,7 @@ class _TableChartState:
359
364
  @pulumi.getter(name="programText")
360
365
  def program_text(self) -> Optional[pulumi.Input[str]]:
361
366
  """
362
- Signalflow program text for the chart. More info at "https://developers.signalfx.com/docs/signalflow-overview"
367
+ The SignalFlow for your Data Table Chart
363
368
  """
364
369
  return pulumi.get(self, "program_text")
365
370
 
@@ -407,7 +412,7 @@ class _TableChartState:
407
412
  @pulumi.getter
408
413
  def url(self) -> Optional[pulumi.Input[str]]:
409
414
  """
410
- URL of the chart
415
+ The URL of the chart.
411
416
  """
412
417
  return pulumi.get(self, "url")
413
418
 
@@ -444,43 +449,41 @@ class TableChart(pulumi.CustomResource):
444
449
  refresh_interval: Optional[pulumi.Input[int]] = None,
445
450
  timezone: Optional[pulumi.Input[str]] = None,
446
451
  unit_prefix: Optional[pulumi.Input[str]] = None,
447
- viz_options: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['TableChartVizOptionArgs']]]]] = None,
452
+ viz_options: Optional[pulumi.Input[Sequence[pulumi.Input[Union['TableChartVizOptionArgs', 'TableChartVizOptionArgsDict']]]]] = None,
448
453
  __props__=None):
449
454
  """
450
455
  This special type of chart displays a data table. This table can be grouped by a dimension.
451
456
 
452
457
  ## Example
453
458
 
454
- ## Arguments
459
+ ```python
460
+ import pulumi
461
+ import pulumi_signalfx as signalfx
455
462
 
456
- The following arguments are supported in the resource block:
457
-
458
- * `name` - (Required) Name of the table chart.
459
- * `program_text` - (Required) The SignalFlow for your Data Table Chart
460
- * `description` - (Optional) Description of the table chart.
461
- * `group_by` - (Optional) Dimension to group by
462
-
463
- ## Attributes
464
-
465
- In a addition to all arguments above, the following attributes are exported:
466
-
467
- * `id` - The ID of the chart.
468
- * `url` - The URL of the chart.
463
+ # signalfx_list_chart.Logs-Exec_0:
464
+ table0 = signalfx.TableChart("table_0",
465
+ description="beep",
466
+ disable_sampling=False,
467
+ max_delay=0,
468
+ name="TableChart!",
469
+ program_text="A = data('cpu.usage.total').publish(label='CPU Total')",
470
+ group_bies=["ClusterName"])
471
+ ```
469
472
 
470
473
  :param str resource_name: The name of the resource.
471
474
  :param pulumi.ResourceOptions opts: Options for the resource.
472
- :param pulumi.Input[str] description: Description of the chart (Optional)
475
+ :param pulumi.Input[str] description: Description of the table chart.
473
476
  :param pulumi.Input[bool] disable_sampling: (false by default) If false, samples a subset of the output MTS, which improves UI performance
474
- :param pulumi.Input[Sequence[pulumi.Input[str]]] group_bies: Properties to group by in the Table (in nesting order)
477
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] group_bies: Dimension to group by
475
478
  :param pulumi.Input[bool] hide_timestamp: (false by default) Whether to show the timestamp in the chart
476
479
  :param pulumi.Input[int] max_delay: How long (in seconds) to wait for late datapoints
477
480
  :param pulumi.Input[int] minimum_resolution: The minimum resolution (in seconds) to use for computing the underlying program
478
- :param pulumi.Input[str] name: Name of the chart
479
- :param pulumi.Input[str] program_text: Signalflow program text for the chart. More info at "https://developers.signalfx.com/docs/signalflow-overview"
481
+ :param pulumi.Input[str] name: Name of the table chart.
482
+ :param pulumi.Input[str] program_text: The SignalFlow for your Data Table Chart
480
483
  :param pulumi.Input[int] refresh_interval: How often (in seconds) to refresh the values of the Table
481
484
  :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)
482
485
  :param pulumi.Input[str] unit_prefix: (Metric by default) Must be "Metric" or "Binary"
483
- :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['TableChartVizOptionArgs']]]] viz_options: Plot-level customization options, associated with a publish statement
486
+ :param pulumi.Input[Sequence[pulumi.Input[Union['TableChartVizOptionArgs', 'TableChartVizOptionArgsDict']]]] viz_options: Plot-level customization options, associated with a publish statement
484
487
  """
485
488
  ...
486
489
  @overload
@@ -493,21 +496,19 @@ class TableChart(pulumi.CustomResource):
493
496
 
494
497
  ## Example
495
498
 
496
- ## Arguments
497
-
498
- The following arguments are supported in the resource block:
499
-
500
- * `name` - (Required) Name of the table chart.
501
- * `program_text` - (Required) The SignalFlow for your Data Table Chart
502
- * `description` - (Optional) Description of the table chart.
503
- * `group_by` - (Optional) Dimension to group by
504
-
505
- ## Attributes
506
-
507
- In a addition to all arguments above, the following attributes are exported:
499
+ ```python
500
+ import pulumi
501
+ import pulumi_signalfx as signalfx
508
502
 
509
- * `id` - The ID of the chart.
510
- * `url` - The URL of the chart.
503
+ # signalfx_list_chart.Logs-Exec_0:
504
+ table0 = signalfx.TableChart("table_0",
505
+ description="beep",
506
+ disable_sampling=False,
507
+ max_delay=0,
508
+ name="TableChart!",
509
+ program_text="A = data('cpu.usage.total').publish(label='CPU Total')",
510
+ group_bies=["ClusterName"])
511
+ ```
511
512
 
512
513
  :param str resource_name: The name of the resource.
513
514
  :param TableChartArgs args: The arguments to use to populate this resource's properties.
@@ -535,7 +536,7 @@ class TableChart(pulumi.CustomResource):
535
536
  refresh_interval: Optional[pulumi.Input[int]] = None,
536
537
  timezone: Optional[pulumi.Input[str]] = None,
537
538
  unit_prefix: Optional[pulumi.Input[str]] = None,
538
- viz_options: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['TableChartVizOptionArgs']]]]] = None,
539
+ viz_options: Optional[pulumi.Input[Sequence[pulumi.Input[Union['TableChartVizOptionArgs', 'TableChartVizOptionArgsDict']]]]] = None,
539
540
  __props__=None):
540
541
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
541
542
  if not isinstance(opts, pulumi.ResourceOptions):
@@ -582,7 +583,7 @@ class TableChart(pulumi.CustomResource):
582
583
  timezone: Optional[pulumi.Input[str]] = None,
583
584
  unit_prefix: Optional[pulumi.Input[str]] = None,
584
585
  url: Optional[pulumi.Input[str]] = None,
585
- viz_options: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['TableChartVizOptionArgs']]]]] = None) -> 'TableChart':
586
+ viz_options: Optional[pulumi.Input[Sequence[pulumi.Input[Union['TableChartVizOptionArgs', 'TableChartVizOptionArgsDict']]]]] = None) -> 'TableChart':
586
587
  """
587
588
  Get an existing TableChart resource's state with the given name, id, and optional extra
588
589
  properties used to qualify the lookup.
@@ -590,19 +591,19 @@ class TableChart(pulumi.CustomResource):
590
591
  :param str resource_name: The unique name of the resulting resource.
591
592
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
592
593
  :param pulumi.ResourceOptions opts: Options for the resource.
593
- :param pulumi.Input[str] description: Description of the chart (Optional)
594
+ :param pulumi.Input[str] description: Description of the table chart.
594
595
  :param pulumi.Input[bool] disable_sampling: (false by default) If false, samples a subset of the output MTS, which improves UI performance
595
- :param pulumi.Input[Sequence[pulumi.Input[str]]] group_bies: Properties to group by in the Table (in nesting order)
596
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] group_bies: Dimension to group by
596
597
  :param pulumi.Input[bool] hide_timestamp: (false by default) Whether to show the timestamp in the chart
597
598
  :param pulumi.Input[int] max_delay: How long (in seconds) to wait for late datapoints
598
599
  :param pulumi.Input[int] minimum_resolution: The minimum resolution (in seconds) to use for computing the underlying program
599
- :param pulumi.Input[str] name: Name of the chart
600
- :param pulumi.Input[str] program_text: Signalflow program text for the chart. More info at "https://developers.signalfx.com/docs/signalflow-overview"
600
+ :param pulumi.Input[str] name: Name of the table chart.
601
+ :param pulumi.Input[str] program_text: The SignalFlow for your Data Table Chart
601
602
  :param pulumi.Input[int] refresh_interval: How often (in seconds) to refresh the values of the Table
602
603
  :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)
603
604
  :param pulumi.Input[str] unit_prefix: (Metric by default) Must be "Metric" or "Binary"
604
- :param pulumi.Input[str] url: URL of the chart
605
- :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['TableChartVizOptionArgs']]]] viz_options: Plot-level customization options, associated with a publish statement
605
+ :param pulumi.Input[str] url: The URL of the chart.
606
+ :param pulumi.Input[Sequence[pulumi.Input[Union['TableChartVizOptionArgs', 'TableChartVizOptionArgsDict']]]] viz_options: Plot-level customization options, associated with a publish statement
606
607
  """
607
608
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
608
609
 
@@ -627,7 +628,7 @@ class TableChart(pulumi.CustomResource):
627
628
  @pulumi.getter
628
629
  def description(self) -> pulumi.Output[Optional[str]]:
629
630
  """
630
- Description of the chart (Optional)
631
+ Description of the table chart.
631
632
  """
632
633
  return pulumi.get(self, "description")
633
634
 
@@ -643,7 +644,7 @@ class TableChart(pulumi.CustomResource):
643
644
  @pulumi.getter(name="groupBies")
644
645
  def group_bies(self) -> pulumi.Output[Optional[Sequence[str]]]:
645
646
  """
646
- Properties to group by in the Table (in nesting order)
647
+ Dimension to group by
647
648
  """
648
649
  return pulumi.get(self, "group_bies")
649
650
 
@@ -675,7 +676,7 @@ class TableChart(pulumi.CustomResource):
675
676
  @pulumi.getter
676
677
  def name(self) -> pulumi.Output[str]:
677
678
  """
678
- Name of the chart
679
+ Name of the table chart.
679
680
  """
680
681
  return pulumi.get(self, "name")
681
682
 
@@ -683,7 +684,7 @@ class TableChart(pulumi.CustomResource):
683
684
  @pulumi.getter(name="programText")
684
685
  def program_text(self) -> pulumi.Output[str]:
685
686
  """
686
- Signalflow program text for the chart. More info at "https://developers.signalfx.com/docs/signalflow-overview"
687
+ The SignalFlow for your Data Table Chart
687
688
  """
688
689
  return pulumi.get(self, "program_text")
689
690
 
@@ -715,7 +716,7 @@ class TableChart(pulumi.CustomResource):
715
716
  @pulumi.getter
716
717
  def url(self) -> pulumi.Output[str]:
717
718
  """
718
- URL of the chart
719
+ The URL of the chart.
719
720
  """
720
721
  return pulumi.get(self, "url")
721
722