pulumi-signalfx 7.2.0a1709367777__py3-none-any.whl → 7.6.0a1736835428__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (54) hide show
  1. pulumi_signalfx/__init__.py +9 -0
  2. pulumi_signalfx/_inputs.py +1976 -339
  3. pulumi_signalfx/_utilities.py +41 -5
  4. pulumi_signalfx/alert_muting_rule.py +110 -86
  5. pulumi_signalfx/aws/_inputs.py +85 -16
  6. pulumi_signalfx/aws/external_integration.py +20 -275
  7. pulumi_signalfx/aws/integration.py +222 -367
  8. pulumi_signalfx/aws/outputs.py +21 -16
  9. pulumi_signalfx/aws/token_integration.py +46 -65
  10. pulumi_signalfx/azure/_inputs.py +41 -4
  11. pulumi_signalfx/azure/integration.py +144 -259
  12. pulumi_signalfx/azure/outputs.py +15 -4
  13. pulumi_signalfx/config/__init__.pyi +22 -0
  14. pulumi_signalfx/config/vars.py +28 -0
  15. pulumi_signalfx/dashboard.py +171 -186
  16. pulumi_signalfx/dashboard_group.py +131 -198
  17. pulumi_signalfx/data_link.py +76 -141
  18. pulumi_signalfx/detector.py +264 -369
  19. pulumi_signalfx/event_feed_chart.py +51 -82
  20. pulumi_signalfx/gcp/_inputs.py +51 -0
  21. pulumi_signalfx/gcp/integration.py +224 -192
  22. pulumi_signalfx/gcp/outputs.py +44 -0
  23. pulumi_signalfx/get_dimension_values.py +47 -24
  24. pulumi_signalfx/heatmap_chart.py +165 -228
  25. pulumi_signalfx/jira/integration.py +70 -119
  26. pulumi_signalfx/list_chart.py +219 -315
  27. pulumi_signalfx/log/_inputs.py +33 -2
  28. pulumi_signalfx/log/outputs.py +7 -2
  29. pulumi_signalfx/log/timeline.py +64 -99
  30. pulumi_signalfx/log/view.py +134 -173
  31. pulumi_signalfx/metric_ruleset.py +217 -70
  32. pulumi_signalfx/opsgenie/integration.py +41 -60
  33. pulumi_signalfx/org_token.py +97 -128
  34. pulumi_signalfx/outputs.py +661 -339
  35. pulumi_signalfx/pagerduty/get_integration.py +22 -21
  36. pulumi_signalfx/pagerduty/integration.py +34 -49
  37. pulumi_signalfx/provider.py +99 -0
  38. pulumi_signalfx/pulumi-plugin.json +2 -1
  39. pulumi_signalfx/servicenow/integration.py +52 -107
  40. pulumi_signalfx/single_value_chart.py +113 -178
  41. pulumi_signalfx/slack/integration.py +30 -47
  42. pulumi_signalfx/slo.py +99 -197
  43. pulumi_signalfx/slo_chart.py +197 -0
  44. pulumi_signalfx/table_chart.py +50 -75
  45. pulumi_signalfx/team.py +74 -109
  46. pulumi_signalfx/text_chart.py +64 -89
  47. pulumi_signalfx/time_chart.py +271 -400
  48. pulumi_signalfx/victorops/integration.py +30 -47
  49. pulumi_signalfx/webhook_integration.py +154 -75
  50. {pulumi_signalfx-7.2.0a1709367777.dist-info → pulumi_signalfx-7.6.0a1736835428.dist-info}/METADATA +7 -6
  51. pulumi_signalfx-7.6.0a1736835428.dist-info/RECORD +65 -0
  52. {pulumi_signalfx-7.2.0a1709367777.dist-info → pulumi_signalfx-7.6.0a1736835428.dist-info}/WHEEL +1 -1
  53. pulumi_signalfx-7.2.0a1709367777.dist-info/RECORD +0 -64
  54. {pulumi_signalfx-7.2.0a1709367777.dist-info → pulumi_signalfx-7.6.0a1736835428.dist-info}/top_level.txt +0 -0
@@ -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,7 +449,7 @@ 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.
@@ -456,44 +461,29 @@ class TableChart(pulumi.CustomResource):
456
461
  import pulumi_signalfx as signalfx
457
462
 
458
463
  # signalfx_list_chart.Logs-Exec_0:
459
- table0 = signalfx.TableChart("table0",
464
+ table0 = signalfx.TableChart("table_0",
460
465
  description="beep",
461
466
  disable_sampling=False,
462
- group_bies=["ClusterName"],
463
467
  max_delay=0,
464
- program_text="A = data('cpu.usage.total').publish(label='CPU Total')")
468
+ name="TableChart!",
469
+ program_text="A = data('cpu.usage.total').publish(label='CPU Total')",
470
+ group_bies=["ClusterName"])
465
471
  ```
466
472
 
467
- ## Arguments
468
-
469
- The following arguments are supported in the resource block:
470
-
471
- * `name` - (Required) Name of the table chart.
472
- * `program_text` - (Required) The SignalFlow for your Data Table Chart
473
- * `description` - (Optional) Description of the table chart.
474
- * `group_by` - (Optional) Dimension to group by
475
-
476
- ## Attributes
477
-
478
- In a addition to all arguments above, the following attributes are exported:
479
-
480
- * `id` - The ID of the chart.
481
- * `url` - The URL of the chart.
482
-
483
473
  :param str resource_name: The name of the resource.
484
474
  :param pulumi.ResourceOptions opts: Options for the resource.
485
- :param pulumi.Input[str] description: Description of the chart (Optional)
475
+ :param pulumi.Input[str] description: Description of the table chart.
486
476
  :param pulumi.Input[bool] disable_sampling: (false by default) If false, samples a subset of the output MTS, which improves UI performance
487
- :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
488
478
  :param pulumi.Input[bool] hide_timestamp: (false by default) Whether to show the timestamp in the chart
489
479
  :param pulumi.Input[int] max_delay: How long (in seconds) to wait for late datapoints
490
480
  :param pulumi.Input[int] minimum_resolution: The minimum resolution (in seconds) to use for computing the underlying program
491
- :param pulumi.Input[str] name: Name of the chart
492
- :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
493
483
  :param pulumi.Input[int] refresh_interval: How often (in seconds) to refresh the values of the Table
494
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)
495
485
  :param pulumi.Input[str] unit_prefix: (Metric by default) Must be "Metric" or "Binary"
496
- :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
497
487
  """
498
488
  ...
499
489
  @overload
@@ -511,30 +501,15 @@ class TableChart(pulumi.CustomResource):
511
501
  import pulumi_signalfx as signalfx
512
502
 
513
503
  # signalfx_list_chart.Logs-Exec_0:
514
- table0 = signalfx.TableChart("table0",
504
+ table0 = signalfx.TableChart("table_0",
515
505
  description="beep",
516
506
  disable_sampling=False,
517
- group_bies=["ClusterName"],
518
507
  max_delay=0,
519
- program_text="A = data('cpu.usage.total').publish(label='CPU Total')")
508
+ name="TableChart!",
509
+ program_text="A = data('cpu.usage.total').publish(label='CPU Total')",
510
+ group_bies=["ClusterName"])
520
511
  ```
521
512
 
522
- ## Arguments
523
-
524
- The following arguments are supported in the resource block:
525
-
526
- * `name` - (Required) Name of the table chart.
527
- * `program_text` - (Required) The SignalFlow for your Data Table Chart
528
- * `description` - (Optional) Description of the table chart.
529
- * `group_by` - (Optional) Dimension to group by
530
-
531
- ## Attributes
532
-
533
- In a addition to all arguments above, the following attributes are exported:
534
-
535
- * `id` - The ID of the chart.
536
- * `url` - The URL of the chart.
537
-
538
513
  :param str resource_name: The name of the resource.
539
514
  :param TableChartArgs args: The arguments to use to populate this resource's properties.
540
515
  :param pulumi.ResourceOptions opts: Options for the resource.
@@ -561,7 +536,7 @@ class TableChart(pulumi.CustomResource):
561
536
  refresh_interval: Optional[pulumi.Input[int]] = None,
562
537
  timezone: Optional[pulumi.Input[str]] = None,
563
538
  unit_prefix: Optional[pulumi.Input[str]] = None,
564
- 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,
565
540
  __props__=None):
566
541
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
567
542
  if not isinstance(opts, pulumi.ResourceOptions):
@@ -608,7 +583,7 @@ class TableChart(pulumi.CustomResource):
608
583
  timezone: Optional[pulumi.Input[str]] = None,
609
584
  unit_prefix: Optional[pulumi.Input[str]] = None,
610
585
  url: Optional[pulumi.Input[str]] = None,
611
- 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':
612
587
  """
613
588
  Get an existing TableChart resource's state with the given name, id, and optional extra
614
589
  properties used to qualify the lookup.
@@ -616,19 +591,19 @@ class TableChart(pulumi.CustomResource):
616
591
  :param str resource_name: The unique name of the resulting resource.
617
592
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
618
593
  :param pulumi.ResourceOptions opts: Options for the resource.
619
- :param pulumi.Input[str] description: Description of the chart (Optional)
594
+ :param pulumi.Input[str] description: Description of the table chart.
620
595
  :param pulumi.Input[bool] disable_sampling: (false by default) If false, samples a subset of the output MTS, which improves UI performance
621
- :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
622
597
  :param pulumi.Input[bool] hide_timestamp: (false by default) Whether to show the timestamp in the chart
623
598
  :param pulumi.Input[int] max_delay: How long (in seconds) to wait for late datapoints
624
599
  :param pulumi.Input[int] minimum_resolution: The minimum resolution (in seconds) to use for computing the underlying program
625
- :param pulumi.Input[str] name: Name of the chart
626
- :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
627
602
  :param pulumi.Input[int] refresh_interval: How often (in seconds) to refresh the values of the Table
628
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)
629
604
  :param pulumi.Input[str] unit_prefix: (Metric by default) Must be "Metric" or "Binary"
630
- :param pulumi.Input[str] url: URL of the chart
631
- :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
632
607
  """
633
608
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
634
609
 
@@ -653,7 +628,7 @@ class TableChart(pulumi.CustomResource):
653
628
  @pulumi.getter
654
629
  def description(self) -> pulumi.Output[Optional[str]]:
655
630
  """
656
- Description of the chart (Optional)
631
+ Description of the table chart.
657
632
  """
658
633
  return pulumi.get(self, "description")
659
634
 
@@ -669,7 +644,7 @@ class TableChart(pulumi.CustomResource):
669
644
  @pulumi.getter(name="groupBies")
670
645
  def group_bies(self) -> pulumi.Output[Optional[Sequence[str]]]:
671
646
  """
672
- Properties to group by in the Table (in nesting order)
647
+ Dimension to group by
673
648
  """
674
649
  return pulumi.get(self, "group_bies")
675
650
 
@@ -701,7 +676,7 @@ class TableChart(pulumi.CustomResource):
701
676
  @pulumi.getter
702
677
  def name(self) -> pulumi.Output[str]:
703
678
  """
704
- Name of the chart
679
+ Name of the table chart.
705
680
  """
706
681
  return pulumi.get(self, "name")
707
682
 
@@ -709,7 +684,7 @@ class TableChart(pulumi.CustomResource):
709
684
  @pulumi.getter(name="programText")
710
685
  def program_text(self) -> pulumi.Output[str]:
711
686
  """
712
- Signalflow program text for the chart. More info at "https://developers.signalfx.com/docs/signalflow-overview"
687
+ The SignalFlow for your Data Table Chart
713
688
  """
714
689
  return pulumi.get(self, "program_text")
715
690
 
@@ -741,7 +716,7 @@ class TableChart(pulumi.CustomResource):
741
716
  @pulumi.getter
742
717
  def url(self) -> pulumi.Output[str]:
743
718
  """
744
- URL of the chart
719
+ The URL of the chart.
745
720
  """
746
721
  return pulumi.get(self, "url")
747
722