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,22 +4,40 @@
4
4
 
5
5
  import copy
6
6
  import warnings
7
+ import sys
7
8
  import pulumi
8
9
  import pulumi.runtime
9
10
  from typing import Any, Mapping, Optional, Sequence, Union, overload
11
+ if sys.version_info >= (3, 11):
12
+ from typing import NotRequired, TypedDict, TypeAlias
13
+ else:
14
+ from typing_extensions import NotRequired, TypedDict, TypeAlias
10
15
  from .. import _utilities
11
16
 
12
17
  __all__ = [
13
18
  'ViewColumnArgs',
19
+ 'ViewColumnArgsDict',
14
20
  'ViewSortOptionArgs',
21
+ 'ViewSortOptionArgsDict',
15
22
  ]
16
23
 
24
+ MYPY = False
25
+
26
+ if not MYPY:
27
+ class ViewColumnArgsDict(TypedDict):
28
+ name: pulumi.Input[str]
29
+ """
30
+ Name of the log view.
31
+ """
32
+ elif False:
33
+ ViewColumnArgsDict: TypeAlias = Mapping[str, Any]
34
+
17
35
  @pulumi.input_type
18
36
  class ViewColumnArgs:
19
37
  def __init__(__self__, *,
20
38
  name: pulumi.Input[str]):
21
39
  """
22
- :param pulumi.Input[str] name: Name of the column
40
+ :param pulumi.Input[str] name: Name of the log view.
23
41
  """
24
42
  pulumi.set(__self__, "name", name)
25
43
 
@@ -27,7 +45,7 @@ class ViewColumnArgs:
27
45
  @pulumi.getter
28
46
  def name(self) -> pulumi.Input[str]:
29
47
  """
30
- Name of the column
48
+ Name of the log view.
31
49
  """
32
50
  return pulumi.get(self, "name")
33
51
 
@@ -36,6 +54,19 @@ class ViewColumnArgs:
36
54
  pulumi.set(self, "name", value)
37
55
 
38
56
 
57
+ if not MYPY:
58
+ class ViewSortOptionArgsDict(TypedDict):
59
+ descending: pulumi.Input[bool]
60
+ """
61
+ Name of the column
62
+ """
63
+ field: pulumi.Input[str]
64
+ """
65
+ Name of the column
66
+ """
67
+ elif False:
68
+ ViewSortOptionArgsDict: TypeAlias = Mapping[str, Any]
69
+
39
70
  @pulumi.input_type
40
71
  class ViewSortOptionArgs:
41
72
  def __init__(__self__, *,
@@ -4,9 +4,14 @@
4
4
 
5
5
  import copy
6
6
  import warnings
7
+ import sys
7
8
  import pulumi
8
9
  import pulumi.runtime
9
10
  from typing import Any, Mapping, Optional, Sequence, Union, overload
11
+ if sys.version_info >= (3, 11):
12
+ from typing import NotRequired, TypedDict, TypeAlias
13
+ else:
14
+ from typing_extensions import NotRequired, TypedDict, TypeAlias
10
15
  from .. import _utilities
11
16
 
12
17
  __all__ = [
@@ -19,7 +24,7 @@ class ViewColumn(dict):
19
24
  def __init__(__self__, *,
20
25
  name: str):
21
26
  """
22
- :param str name: Name of the column
27
+ :param str name: Name of the log view.
23
28
  """
24
29
  pulumi.set(__self__, "name", name)
25
30
 
@@ -27,7 +32,7 @@ class ViewColumn(dict):
27
32
  @pulumi.getter
28
33
  def name(self) -> str:
29
34
  """
30
- Name of the column
35
+ Name of the log view.
31
36
  """
32
37
  return pulumi.get(self, "name")
33
38
 
@@ -4,9 +4,14 @@
4
4
 
5
5
  import copy
6
6
  import warnings
7
+ import sys
7
8
  import pulumi
8
9
  import pulumi.runtime
9
10
  from typing import Any, Mapping, Optional, Sequence, Union, overload
11
+ if sys.version_info >= (3, 11):
12
+ from typing import NotRequired, TypedDict, TypeAlias
13
+ else:
14
+ from typing_extensions import NotRequired, TypedDict, TypeAlias
10
15
  from .. import _utilities
11
16
 
12
17
  __all__ = ['TimelineArgs', 'Timeline']
@@ -23,13 +28,13 @@ class TimelineArgs:
23
28
  time_range: Optional[pulumi.Input[int]] = None):
24
29
  """
25
30
  The set of arguments for constructing a Timeline resource.
26
- :param pulumi.Input[str] program_text: Signalflow program text for the chart. More info at "https://developers.signalfx.com/docs/signalflow-overview"
27
- :param pulumi.Input[str] default_connection: default connection that the dashboard uses
28
- :param pulumi.Input[str] description: Description of the chart (Optional)
29
- :param pulumi.Input[int] end_time: Seconds since epoch to end the visualization
30
- :param pulumi.Input[str] name: Name of the chart
31
- :param pulumi.Input[int] start_time: Seconds since epoch to start the visualization
32
- :param pulumi.Input[int] time_range: Seconds to display in the visualization. This is a rolling range from the current time. Example: 3600 = `-1h`
31
+ :param pulumi.Input[str] program_text: Signalflow program text for the log timeline. More info at https://dev.splunk.com/observability/docs/.
32
+ :param pulumi.Input[str] default_connection: The connection that the log timeline uses to fetch data. This could be Splunk Enterprise, Splunk Enterprise Cloud or Observability Cloud.
33
+ :param pulumi.Input[str] description: Description of the log timeline.
34
+ :param pulumi.Input[int] end_time: Seconds since epoch. Used for visualization. Conflicts with `time_range`.
35
+ :param pulumi.Input[str] name: Name of the log timeline.
36
+ :param pulumi.Input[int] start_time: Seconds since epoch. Used for visualization. Conflicts with `time_range`.
37
+ :param pulumi.Input[int] time_range: From when to display data. Splunk Observability Cloud time syntax (e.g. `"-5m"`, `"-1h"`). Conflicts with `start_time` and `end_time`.
33
38
  """
34
39
  pulumi.set(__self__, "program_text", program_text)
35
40
  if default_connection is not None:
@@ -49,7 +54,7 @@ class TimelineArgs:
49
54
  @pulumi.getter(name="programText")
50
55
  def program_text(self) -> pulumi.Input[str]:
51
56
  """
52
- Signalflow program text for the chart. More info at "https://developers.signalfx.com/docs/signalflow-overview"
57
+ Signalflow program text for the log timeline. More info at https://dev.splunk.com/observability/docs/.
53
58
  """
54
59
  return pulumi.get(self, "program_text")
55
60
 
@@ -61,7 +66,7 @@ class TimelineArgs:
61
66
  @pulumi.getter(name="defaultConnection")
62
67
  def default_connection(self) -> Optional[pulumi.Input[str]]:
63
68
  """
64
- default connection that the dashboard uses
69
+ The connection that the log timeline uses to fetch data. This could be Splunk Enterprise, Splunk Enterprise Cloud or Observability Cloud.
65
70
  """
66
71
  return pulumi.get(self, "default_connection")
67
72
 
@@ -73,7 +78,7 @@ class TimelineArgs:
73
78
  @pulumi.getter
74
79
  def description(self) -> Optional[pulumi.Input[str]]:
75
80
  """
76
- Description of the chart (Optional)
81
+ Description of the log timeline.
77
82
  """
78
83
  return pulumi.get(self, "description")
79
84
 
@@ -85,7 +90,7 @@ class TimelineArgs:
85
90
  @pulumi.getter(name="endTime")
86
91
  def end_time(self) -> Optional[pulumi.Input[int]]:
87
92
  """
88
- Seconds since epoch to end the visualization
93
+ Seconds since epoch. Used for visualization. Conflicts with `time_range`.
89
94
  """
90
95
  return pulumi.get(self, "end_time")
91
96
 
@@ -97,7 +102,7 @@ class TimelineArgs:
97
102
  @pulumi.getter
98
103
  def name(self) -> Optional[pulumi.Input[str]]:
99
104
  """
100
- Name of the chart
105
+ Name of the log timeline.
101
106
  """
102
107
  return pulumi.get(self, "name")
103
108
 
@@ -109,7 +114,7 @@ class TimelineArgs:
109
114
  @pulumi.getter(name="startTime")
110
115
  def start_time(self) -> Optional[pulumi.Input[int]]:
111
116
  """
112
- Seconds since epoch to start the visualization
117
+ Seconds since epoch. Used for visualization. Conflicts with `time_range`.
113
118
  """
114
119
  return pulumi.get(self, "start_time")
115
120
 
@@ -121,7 +126,7 @@ class TimelineArgs:
121
126
  @pulumi.getter(name="timeRange")
122
127
  def time_range(self) -> Optional[pulumi.Input[int]]:
123
128
  """
124
- Seconds to display in the visualization. This is a rolling range from the current time. Example: 3600 = `-1h`
129
+ From when to display data. Splunk Observability Cloud time syntax (e.g. `"-5m"`, `"-1h"`). Conflicts with `start_time` and `end_time`.
125
130
  """
126
131
  return pulumi.get(self, "time_range")
127
132
 
@@ -143,14 +148,14 @@ class _TimelineState:
143
148
  url: Optional[pulumi.Input[str]] = None):
144
149
  """
145
150
  Input properties used for looking up and filtering Timeline resources.
146
- :param pulumi.Input[str] default_connection: default connection that the dashboard uses
147
- :param pulumi.Input[str] description: Description of the chart (Optional)
148
- :param pulumi.Input[int] end_time: Seconds since epoch to end the visualization
149
- :param pulumi.Input[str] name: Name of the chart
150
- :param pulumi.Input[str] program_text: Signalflow program text for the chart. More info at "https://developers.signalfx.com/docs/signalflow-overview"
151
- :param pulumi.Input[int] start_time: Seconds since epoch to start the visualization
152
- :param pulumi.Input[int] time_range: Seconds to display in the visualization. This is a rolling range from the current time. Example: 3600 = `-1h`
153
- :param pulumi.Input[str] url: URL of the chart
151
+ :param pulumi.Input[str] default_connection: The connection that the log timeline uses to fetch data. This could be Splunk Enterprise, Splunk Enterprise Cloud or Observability Cloud.
152
+ :param pulumi.Input[str] description: Description of the log timeline.
153
+ :param pulumi.Input[int] end_time: Seconds since epoch. Used for visualization. Conflicts with `time_range`.
154
+ :param pulumi.Input[str] name: Name of the log timeline.
155
+ :param pulumi.Input[str] program_text: Signalflow program text for the log timeline. More info at https://dev.splunk.com/observability/docs/.
156
+ :param pulumi.Input[int] start_time: Seconds since epoch. Used for visualization. Conflicts with `time_range`.
157
+ :param pulumi.Input[int] time_range: From when to display data. Splunk Observability Cloud time syntax (e.g. `"-5m"`, `"-1h"`). Conflicts with `start_time` and `end_time`.
158
+ :param pulumi.Input[str] url: The URL of the log timeline.
154
159
  """
155
160
  if default_connection is not None:
156
161
  pulumi.set(__self__, "default_connection", default_connection)
@@ -173,7 +178,7 @@ class _TimelineState:
173
178
  @pulumi.getter(name="defaultConnection")
174
179
  def default_connection(self) -> Optional[pulumi.Input[str]]:
175
180
  """
176
- default connection that the dashboard uses
181
+ The connection that the log timeline uses to fetch data. This could be Splunk Enterprise, Splunk Enterprise Cloud or Observability Cloud.
177
182
  """
178
183
  return pulumi.get(self, "default_connection")
179
184
 
@@ -185,7 +190,7 @@ class _TimelineState:
185
190
  @pulumi.getter
186
191
  def description(self) -> Optional[pulumi.Input[str]]:
187
192
  """
188
- Description of the chart (Optional)
193
+ Description of the log timeline.
189
194
  """
190
195
  return pulumi.get(self, "description")
191
196
 
@@ -197,7 +202,7 @@ class _TimelineState:
197
202
  @pulumi.getter(name="endTime")
198
203
  def end_time(self) -> Optional[pulumi.Input[int]]:
199
204
  """
200
- Seconds since epoch to end the visualization
205
+ Seconds since epoch. Used for visualization. Conflicts with `time_range`.
201
206
  """
202
207
  return pulumi.get(self, "end_time")
203
208
 
@@ -209,7 +214,7 @@ class _TimelineState:
209
214
  @pulumi.getter
210
215
  def name(self) -> Optional[pulumi.Input[str]]:
211
216
  """
212
- Name of the chart
217
+ Name of the log timeline.
213
218
  """
214
219
  return pulumi.get(self, "name")
215
220
 
@@ -221,7 +226,7 @@ class _TimelineState:
221
226
  @pulumi.getter(name="programText")
222
227
  def program_text(self) -> Optional[pulumi.Input[str]]:
223
228
  """
224
- Signalflow program text for the chart. More info at "https://developers.signalfx.com/docs/signalflow-overview"
229
+ Signalflow program text for the log timeline. More info at https://dev.splunk.com/observability/docs/.
225
230
  """
226
231
  return pulumi.get(self, "program_text")
227
232
 
@@ -233,7 +238,7 @@ class _TimelineState:
233
238
  @pulumi.getter(name="startTime")
234
239
  def start_time(self) -> Optional[pulumi.Input[int]]:
235
240
  """
236
- Seconds since epoch to start the visualization
241
+ Seconds since epoch. Used for visualization. Conflicts with `time_range`.
237
242
  """
238
243
  return pulumi.get(self, "start_time")
239
244
 
@@ -245,7 +250,7 @@ class _TimelineState:
245
250
  @pulumi.getter(name="timeRange")
246
251
  def time_range(self) -> Optional[pulumi.Input[int]]:
247
252
  """
248
- Seconds to display in the visualization. This is a rolling range from the current time. Example: 3600 = `-1h`
253
+ From when to display data. Splunk Observability Cloud time syntax (e.g. `"-5m"`, `"-1h"`). Conflicts with `start_time` and `end_time`.
249
254
  """
250
255
  return pulumi.get(self, "time_range")
251
256
 
@@ -257,7 +262,7 @@ class _TimelineState:
257
262
  @pulumi.getter
258
263
  def url(self) -> Optional[pulumi.Input[str]]:
259
264
  """
260
- URL of the chart
265
+ The URL of the log timeline.
261
266
  """
262
267
  return pulumi.get(self, "url")
263
268
 
@@ -286,34 +291,26 @@ class Timeline(pulumi.CustomResource):
286
291
 
287
292
  ## Example
288
293
 
289
- ## Arguments
294
+ ```python
295
+ import pulumi
296
+ import pulumi_signalfx as signalfx
290
297
 
291
- The following arguments are supported in the resource block:
292
-
293
- * `name` - (Required) Name of the log timeline.
294
- * `program_text` - (Required) Signalflow program text for the log timeline. More info at https://dev.splunk.com/observability/docs/.
295
- * `description` - (Optional) Description of the log timeline.
296
- * `time_range` - (Optional) From when to display data. Splunk Observability Cloud time syntax (e.g. `"-5m"`, `"-1h"`). Conflicts with `start_time` and `end_time`.
297
- * `start_time` - (Optional) Seconds since epoch. Used for visualization. Conflicts with `time_range`.
298
- * `end_time` - (Optional) Seconds since epoch. Used for visualization. Conflicts with `time_range`.
299
- * `default_connection` - (Optional) The connection that the log timeline uses to fetch data. This could be Splunk Enterprise, Splunk Enterprise Cloud or Observability Cloud.
300
-
301
- ## Attributes
302
-
303
- In a addition to all arguments above, the following attributes are exported:
304
-
305
- * `id` - The ID of the log timeline.
306
- * `url` - The URL of the log timeline.
298
+ my_log_timeline = signalfx.log.Timeline("my_log_timeline",
299
+ name="Sample Log Timeline",
300
+ description="Lorem ipsum dolor sit amet, laudem tibique iracundia at mea. Nam posse dolores ex, nec cu adhuc putent honestatis",
301
+ program_text="logs(filter=field('message') == 'Transaction processed' and field('service.name') == 'paymentservice').publish()\\n",
302
+ time_range=900)
303
+ ```
307
304
 
308
305
  :param str resource_name: The name of the resource.
309
306
  :param pulumi.ResourceOptions opts: Options for the resource.
310
- :param pulumi.Input[str] default_connection: default connection that the dashboard uses
311
- :param pulumi.Input[str] description: Description of the chart (Optional)
312
- :param pulumi.Input[int] end_time: Seconds since epoch to end the visualization
313
- :param pulumi.Input[str] name: Name of the chart
314
- :param pulumi.Input[str] program_text: Signalflow program text for the chart. More info at "https://developers.signalfx.com/docs/signalflow-overview"
315
- :param pulumi.Input[int] start_time: Seconds since epoch to start the visualization
316
- :param pulumi.Input[int] time_range: Seconds to display in the visualization. This is a rolling range from the current time. Example: 3600 = `-1h`
307
+ :param pulumi.Input[str] default_connection: The connection that the log timeline uses to fetch data. This could be Splunk Enterprise, Splunk Enterprise Cloud or Observability Cloud.
308
+ :param pulumi.Input[str] description: Description of the log timeline.
309
+ :param pulumi.Input[int] end_time: Seconds since epoch. Used for visualization. Conflicts with `time_range`.
310
+ :param pulumi.Input[str] name: Name of the log timeline.
311
+ :param pulumi.Input[str] program_text: Signalflow program text for the log timeline. More info at https://dev.splunk.com/observability/docs/.
312
+ :param pulumi.Input[int] start_time: Seconds since epoch. Used for visualization. Conflicts with `time_range`.
313
+ :param pulumi.Input[int] time_range: From when to display data. Splunk Observability Cloud time syntax (e.g. `"-5m"`, `"-1h"`). Conflicts with `start_time` and `end_time`.
317
314
  """
318
315
  ...
319
316
  @overload
@@ -328,24 +325,16 @@ class Timeline(pulumi.CustomResource):
328
325
 
329
326
  ## Example
330
327
 
331
- ## Arguments
332
-
333
- The following arguments are supported in the resource block:
334
-
335
- * `name` - (Required) Name of the log timeline.
336
- * `program_text` - (Required) Signalflow program text for the log timeline. More info at https://dev.splunk.com/observability/docs/.
337
- * `description` - (Optional) Description of the log timeline.
338
- * `time_range` - (Optional) From when to display data. Splunk Observability Cloud time syntax (e.g. `"-5m"`, `"-1h"`). Conflicts with `start_time` and `end_time`.
339
- * `start_time` - (Optional) Seconds since epoch. Used for visualization. Conflicts with `time_range`.
340
- * `end_time` - (Optional) Seconds since epoch. Used for visualization. Conflicts with `time_range`.
341
- * `default_connection` - (Optional) The connection that the log timeline uses to fetch data. This could be Splunk Enterprise, Splunk Enterprise Cloud or Observability Cloud.
342
-
343
- ## Attributes
344
-
345
- In a addition to all arguments above, the following attributes are exported:
328
+ ```python
329
+ import pulumi
330
+ import pulumi_signalfx as signalfx
346
331
 
347
- * `id` - The ID of the log timeline.
348
- * `url` - The URL of the log timeline.
332
+ my_log_timeline = signalfx.log.Timeline("my_log_timeline",
333
+ name="Sample Log Timeline",
334
+ description="Lorem ipsum dolor sit amet, laudem tibique iracundia at mea. Nam posse dolores ex, nec cu adhuc putent honestatis",
335
+ program_text="logs(filter=field('message') == 'Transaction processed' and field('service.name') == 'paymentservice').publish()\\n",
336
+ time_range=900)
337
+ ```
349
338
 
350
339
  :param str resource_name: The name of the resource.
351
340
  :param TimelineArgs args: The arguments to use to populate this resource's properties.
@@ -413,14 +402,14 @@ class Timeline(pulumi.CustomResource):
413
402
  :param str resource_name: The unique name of the resulting resource.
414
403
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
415
404
  :param pulumi.ResourceOptions opts: Options for the resource.
416
- :param pulumi.Input[str] default_connection: default connection that the dashboard uses
417
- :param pulumi.Input[str] description: Description of the chart (Optional)
418
- :param pulumi.Input[int] end_time: Seconds since epoch to end the visualization
419
- :param pulumi.Input[str] name: Name of the chart
420
- :param pulumi.Input[str] program_text: Signalflow program text for the chart. More info at "https://developers.signalfx.com/docs/signalflow-overview"
421
- :param pulumi.Input[int] start_time: Seconds since epoch to start the visualization
422
- :param pulumi.Input[int] time_range: Seconds to display in the visualization. This is a rolling range from the current time. Example: 3600 = `-1h`
423
- :param pulumi.Input[str] url: URL of the chart
405
+ :param pulumi.Input[str] default_connection: The connection that the log timeline uses to fetch data. This could be Splunk Enterprise, Splunk Enterprise Cloud or Observability Cloud.
406
+ :param pulumi.Input[str] description: Description of the log timeline.
407
+ :param pulumi.Input[int] end_time: Seconds since epoch. Used for visualization. Conflicts with `time_range`.
408
+ :param pulumi.Input[str] name: Name of the log timeline.
409
+ :param pulumi.Input[str] program_text: Signalflow program text for the log timeline. More info at https://dev.splunk.com/observability/docs/.
410
+ :param pulumi.Input[int] start_time: Seconds since epoch. Used for visualization. Conflicts with `time_range`.
411
+ :param pulumi.Input[int] time_range: From when to display data. Splunk Observability Cloud time syntax (e.g. `"-5m"`, `"-1h"`). Conflicts with `start_time` and `end_time`.
412
+ :param pulumi.Input[str] url: The URL of the log timeline.
424
413
  """
425
414
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
426
415
 
@@ -440,7 +429,7 @@ class Timeline(pulumi.CustomResource):
440
429
  @pulumi.getter(name="defaultConnection")
441
430
  def default_connection(self) -> pulumi.Output[Optional[str]]:
442
431
  """
443
- default connection that the dashboard uses
432
+ The connection that the log timeline uses to fetch data. This could be Splunk Enterprise, Splunk Enterprise Cloud or Observability Cloud.
444
433
  """
445
434
  return pulumi.get(self, "default_connection")
446
435
 
@@ -448,7 +437,7 @@ class Timeline(pulumi.CustomResource):
448
437
  @pulumi.getter
449
438
  def description(self) -> pulumi.Output[Optional[str]]:
450
439
  """
451
- Description of the chart (Optional)
440
+ Description of the log timeline.
452
441
  """
453
442
  return pulumi.get(self, "description")
454
443
 
@@ -456,7 +445,7 @@ class Timeline(pulumi.CustomResource):
456
445
  @pulumi.getter(name="endTime")
457
446
  def end_time(self) -> pulumi.Output[Optional[int]]:
458
447
  """
459
- Seconds since epoch to end the visualization
448
+ Seconds since epoch. Used for visualization. Conflicts with `time_range`.
460
449
  """
461
450
  return pulumi.get(self, "end_time")
462
451
 
@@ -464,7 +453,7 @@ class Timeline(pulumi.CustomResource):
464
453
  @pulumi.getter
465
454
  def name(self) -> pulumi.Output[str]:
466
455
  """
467
- Name of the chart
456
+ Name of the log timeline.
468
457
  """
469
458
  return pulumi.get(self, "name")
470
459
 
@@ -472,7 +461,7 @@ class Timeline(pulumi.CustomResource):
472
461
  @pulumi.getter(name="programText")
473
462
  def program_text(self) -> pulumi.Output[str]:
474
463
  """
475
- Signalflow program text for the chart. More info at "https://developers.signalfx.com/docs/signalflow-overview"
464
+ Signalflow program text for the log timeline. More info at https://dev.splunk.com/observability/docs/.
476
465
  """
477
466
  return pulumi.get(self, "program_text")
478
467
 
@@ -480,7 +469,7 @@ class Timeline(pulumi.CustomResource):
480
469
  @pulumi.getter(name="startTime")
481
470
  def start_time(self) -> pulumi.Output[Optional[int]]:
482
471
  """
483
- Seconds since epoch to start the visualization
472
+ Seconds since epoch. Used for visualization. Conflicts with `time_range`.
484
473
  """
485
474
  return pulumi.get(self, "start_time")
486
475
 
@@ -488,7 +477,7 @@ class Timeline(pulumi.CustomResource):
488
477
  @pulumi.getter(name="timeRange")
489
478
  def time_range(self) -> pulumi.Output[Optional[int]]:
490
479
  """
491
- Seconds to display in the visualization. This is a rolling range from the current time. Example: 3600 = `-1h`
480
+ From when to display data. Splunk Observability Cloud time syntax (e.g. `"-5m"`, `"-1h"`). Conflicts with `start_time` and `end_time`.
492
481
  """
493
482
  return pulumi.get(self, "time_range")
494
483
 
@@ -496,7 +485,7 @@ class Timeline(pulumi.CustomResource):
496
485
  @pulumi.getter
497
486
  def url(self) -> pulumi.Output[str]:
498
487
  """
499
- URL of the chart
488
+ The URL of the log timeline.
500
489
  """
501
490
  return pulumi.get(self, "url")
502
491