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
@@ -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 *
@@ -38,26 +43,24 @@ class DashboardArgs:
38
43
  variables: Optional[pulumi.Input[Sequence[pulumi.Input['DashboardVariableArgs']]]] = None):
39
44
  """
40
45
  The set of arguments for constructing a Dashboard resource.
41
- :param pulumi.Input[str] dashboard_group: The ID of the dashboard group that contains the dashboard. If an ID is not provided during creation, the dashboard will
42
- be placed in a newly created dashboard group
43
- :param pulumi.Input[Sequence[pulumi.Input[str]]] authorized_writer_teams: Team IDs that have write access to this dashboard
44
- :param pulumi.Input[Sequence[pulumi.Input[str]]] authorized_writer_users: User IDs that have write access to this dashboard
45
- :param pulumi.Input[Sequence[pulumi.Input['DashboardChartArgs']]] charts: Chart ID and layout information for the charts in the dashboard
46
- :param pulumi.Input[str] charts_resolution: Specifies the chart data display resolution for charts in this dashboard. Value can be one of "default", "low", "high",
47
- or "highest". default by default
48
- :param pulumi.Input[Sequence[pulumi.Input['DashboardColumnArgs']]] columns: Column layout. Charts listed, will be placed in a single column with the same width and height
49
- :param pulumi.Input[str] description: Description of the dashboard (Optional)
50
- :param pulumi.Input[int] end_time: Seconds since epoch to end the visualization
51
- :param pulumi.Input[Sequence[pulumi.Input['DashboardEventOverlayArgs']]] event_overlays: Event overlay to add to charts
52
- :param pulumi.Input[Sequence[pulumi.Input['DashboardFilterArgs']]] filters: Filter to apply to each chart in the dashboard
53
- :param pulumi.Input[Sequence[pulumi.Input['DashboardGridArgs']]] grids: Grid dashboard layout. Charts listed will be placed in a grid by row with the same width and height. If a chart can't
54
- fit in a row, it will be placed automatically in the next row
55
- :param pulumi.Input[str] name: Name of the dashboard
56
- :param pulumi.Input[Sequence[pulumi.Input['DashboardSelectedEventOverlayArgs']]] selected_event_overlays: Event overlay added to charts by default to charts
57
- :param pulumi.Input[int] start_time: Seconds since epoch to start the visualization
58
- :param pulumi.Input[Sequence[pulumi.Input[str]]] tags: Tags of the dashboard
59
- :param pulumi.Input[str] time_range: From when to display data. Splunk Observability Cloud time syntax (e.g. -5m, -1h)
60
- :param pulumi.Input[Sequence[pulumi.Input['DashboardVariableArgs']]] variables: Dashboard variable to apply to each chart in the dashboard
46
+ :param pulumi.Input[str] dashboard_group: The ID of the dashboard group that contains the dashboard.
47
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] authorized_writer_teams: Team IDs that have write access to this dashboard group. Remember to use an admin's token if using this feature and to include that admin's team (or user id in `authorized_writer_teams`). **Note:** Deprecated use `permissions` instead.
48
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] authorized_writer_users: User IDs that have write access to this dashboard group. Remember to use an admin's token if using this feature and to include that admin's user id (or team id in `authorized_writer_teams`). **Note:** Deprecated use `permissions` instead.
49
+ :param pulumi.Input[Sequence[pulumi.Input['DashboardChartArgs']]] charts: Chart ID and layout information for the charts in the dashboard.
50
+ :param pulumi.Input[str] charts_resolution: Specifies the chart data display resolution for charts in this dashboard. Value can be one of `"default"`, `"low"`, `"high"`, or `"highest"`.
51
+ :param pulumi.Input[Sequence[pulumi.Input['DashboardColumnArgs']]] columns: Column layout. Charts listed will be placed in a single column with the same width and height.
52
+ :param pulumi.Input[str] description: Description of the dashboard.
53
+ :param pulumi.Input[int] end_time: Seconds since epoch. Used for visualization.
54
+ :param pulumi.Input[Sequence[pulumi.Input['DashboardEventOverlayArgs']]] event_overlays: Specify a list of event overlays to include in the dashboard. Note: These overlays correspond to the *suggested* event overlays specified in the web UI, and they're not automatically applied as active overlays. To set default active event overlays, use the `selected_event_overlay` property instead.
55
+ :param pulumi.Input[Sequence[pulumi.Input['DashboardFilterArgs']]] filters: Filter to apply to the charts when displaying the dashboard.
56
+ :param pulumi.Input[Sequence[pulumi.Input['DashboardGridArgs']]] grids: Grid dashboard layout. Charts listed will be placed in a grid by row with the same width and height. If a chart cannot fit in a row, it will be placed automatically in the next row.
57
+ :param pulumi.Input[str] name: Name of the dashboard.
58
+ :param pulumi.Input['DashboardPermissionsArgs'] permissions: [Permissions](https://docs.splunk.com/Observability/infrastructure/terms-concepts/permissions.html) Controls who can view and/or edit your dashboard. **Note:** This feature is not present in all accounts. Please contact support if you are unsure.
59
+ :param pulumi.Input[Sequence[pulumi.Input['DashboardSelectedEventOverlayArgs']]] selected_event_overlays: Defines event overlays which are enabled by **default**. Any overlay specified here should have an accompanying entry in `event_overlay`, which are similar to the properties here.
60
+ :param pulumi.Input[int] start_time: Seconds since epoch. Used for visualization.
61
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] tags: Tags of the dashboard.
62
+ :param pulumi.Input[str] time_range: The time range prior to now to visualize. Splunk Observability Cloud time syntax (e.g. `"-5m"`, `"-1h"`).
63
+ :param pulumi.Input[Sequence[pulumi.Input['DashboardVariableArgs']]] variables: Dashboard variable to apply to each chart in the dashboard.
61
64
  """
62
65
  pulumi.set(__self__, "dashboard_group", dashboard_group)
63
66
  if authorized_writer_teams is not None:
@@ -109,8 +112,7 @@ class DashboardArgs:
109
112
  @pulumi.getter(name="dashboardGroup")
110
113
  def dashboard_group(self) -> pulumi.Input[str]:
111
114
  """
112
- The ID of the dashboard group that contains the dashboard. If an ID is not provided during creation, the dashboard will
113
- be placed in a newly created dashboard group
115
+ The ID of the dashboard group that contains the dashboard.
114
116
  """
115
117
  return pulumi.get(self, "dashboard_group")
116
118
 
@@ -120,13 +122,11 @@ class DashboardArgs:
120
122
 
121
123
  @property
122
124
  @pulumi.getter(name="authorizedWriterTeams")
125
+ @_utilities.deprecated("""Please use permissions_* fields now""")
123
126
  def authorized_writer_teams(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
124
127
  """
125
- Team IDs that have write access to this dashboard
128
+ Team IDs that have write access to this dashboard group. Remember to use an admin's token if using this feature and to include that admin's team (or user id in `authorized_writer_teams`). **Note:** Deprecated use `permissions` instead.
126
129
  """
127
- warnings.warn("""Please use permissions_* fields now""", DeprecationWarning)
128
- pulumi.log.warn("""authorized_writer_teams is deprecated: Please use permissions_* fields now""")
129
-
130
130
  return pulumi.get(self, "authorized_writer_teams")
131
131
 
132
132
  @authorized_writer_teams.setter
@@ -135,13 +135,11 @@ class DashboardArgs:
135
135
 
136
136
  @property
137
137
  @pulumi.getter(name="authorizedWriterUsers")
138
+ @_utilities.deprecated("""Please use permissions fields now""")
138
139
  def authorized_writer_users(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
139
140
  """
140
- User IDs that have write access to this dashboard
141
+ User IDs that have write access to this dashboard group. Remember to use an admin's token if using this feature and to include that admin's user id (or team id in `authorized_writer_teams`). **Note:** Deprecated use `permissions` instead.
141
142
  """
142
- warnings.warn("""Please use permissions fields now""", DeprecationWarning)
143
- pulumi.log.warn("""authorized_writer_users is deprecated: Please use permissions fields now""")
144
-
145
143
  return pulumi.get(self, "authorized_writer_users")
146
144
 
147
145
  @authorized_writer_users.setter
@@ -152,7 +150,7 @@ class DashboardArgs:
152
150
  @pulumi.getter
153
151
  def charts(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['DashboardChartArgs']]]]:
154
152
  """
155
- Chart ID and layout information for the charts in the dashboard
153
+ Chart ID and layout information for the charts in the dashboard.
156
154
  """
157
155
  return pulumi.get(self, "charts")
158
156
 
@@ -164,8 +162,7 @@ class DashboardArgs:
164
162
  @pulumi.getter(name="chartsResolution")
165
163
  def charts_resolution(self) -> Optional[pulumi.Input[str]]:
166
164
  """
167
- Specifies the chart data display resolution for charts in this dashboard. Value can be one of "default", "low", "high",
168
- or "highest". default by default
165
+ Specifies the chart data display resolution for charts in this dashboard. Value can be one of `"default"`, `"low"`, `"high"`, or `"highest"`.
169
166
  """
170
167
  return pulumi.get(self, "charts_resolution")
171
168
 
@@ -177,7 +174,7 @@ class DashboardArgs:
177
174
  @pulumi.getter
178
175
  def columns(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['DashboardColumnArgs']]]]:
179
176
  """
180
- Column layout. Charts listed, will be placed in a single column with the same width and height
177
+ Column layout. Charts listed will be placed in a single column with the same width and height.
181
178
  """
182
179
  return pulumi.get(self, "columns")
183
180
 
@@ -189,7 +186,7 @@ class DashboardArgs:
189
186
  @pulumi.getter
190
187
  def description(self) -> Optional[pulumi.Input[str]]:
191
188
  """
192
- Description of the dashboard (Optional)
189
+ Description of the dashboard.
193
190
  """
194
191
  return pulumi.get(self, "description")
195
192
 
@@ -219,7 +216,7 @@ class DashboardArgs:
219
216
  @pulumi.getter(name="endTime")
220
217
  def end_time(self) -> Optional[pulumi.Input[int]]:
221
218
  """
222
- Seconds since epoch to end the visualization
219
+ Seconds since epoch. Used for visualization.
223
220
  """
224
221
  return pulumi.get(self, "end_time")
225
222
 
@@ -231,7 +228,7 @@ class DashboardArgs:
231
228
  @pulumi.getter(name="eventOverlays")
232
229
  def event_overlays(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['DashboardEventOverlayArgs']]]]:
233
230
  """
234
- Event overlay to add to charts
231
+ Specify a list of event overlays to include in the dashboard. Note: These overlays correspond to the *suggested* event overlays specified in the web UI, and they're not automatically applied as active overlays. To set default active event overlays, use the `selected_event_overlay` property instead.
235
232
  """
236
233
  return pulumi.get(self, "event_overlays")
237
234
 
@@ -243,7 +240,7 @@ class DashboardArgs:
243
240
  @pulumi.getter
244
241
  def filters(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['DashboardFilterArgs']]]]:
245
242
  """
246
- Filter to apply to each chart in the dashboard
243
+ Filter to apply to the charts when displaying the dashboard.
247
244
  """
248
245
  return pulumi.get(self, "filters")
249
246
 
@@ -255,8 +252,7 @@ class DashboardArgs:
255
252
  @pulumi.getter
256
253
  def grids(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['DashboardGridArgs']]]]:
257
254
  """
258
- Grid dashboard layout. Charts listed will be placed in a grid by row with the same width and height. If a chart can't
259
- fit in a row, it will be placed automatically in the next row
255
+ Grid dashboard layout. Charts listed will be placed in a grid by row with the same width and height. If a chart cannot fit in a row, it will be placed automatically in the next row.
260
256
  """
261
257
  return pulumi.get(self, "grids")
262
258
 
@@ -268,7 +264,7 @@ class DashboardArgs:
268
264
  @pulumi.getter
269
265
  def name(self) -> Optional[pulumi.Input[str]]:
270
266
  """
271
- Name of the dashboard
267
+ Name of the dashboard.
272
268
  """
273
269
  return pulumi.get(self, "name")
274
270
 
@@ -279,6 +275,9 @@ class DashboardArgs:
279
275
  @property
280
276
  @pulumi.getter
281
277
  def permissions(self) -> Optional[pulumi.Input['DashboardPermissionsArgs']]:
278
+ """
279
+ [Permissions](https://docs.splunk.com/Observability/infrastructure/terms-concepts/permissions.html) Controls who can view and/or edit your dashboard. **Note:** This feature is not present in all accounts. Please contact support if you are unsure.
280
+ """
282
281
  return pulumi.get(self, "permissions")
283
282
 
284
283
  @permissions.setter
@@ -289,7 +288,7 @@ class DashboardArgs:
289
288
  @pulumi.getter(name="selectedEventOverlays")
290
289
  def selected_event_overlays(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['DashboardSelectedEventOverlayArgs']]]]:
291
290
  """
292
- Event overlay added to charts by default to charts
291
+ Defines event overlays which are enabled by **default**. Any overlay specified here should have an accompanying entry in `event_overlay`, which are similar to the properties here.
293
292
  """
294
293
  return pulumi.get(self, "selected_event_overlays")
295
294
 
@@ -301,7 +300,7 @@ class DashboardArgs:
301
300
  @pulumi.getter(name="startTime")
302
301
  def start_time(self) -> Optional[pulumi.Input[int]]:
303
302
  """
304
- Seconds since epoch to start the visualization
303
+ Seconds since epoch. Used for visualization.
305
304
  """
306
305
  return pulumi.get(self, "start_time")
307
306
 
@@ -313,7 +312,7 @@ class DashboardArgs:
313
312
  @pulumi.getter
314
313
  def tags(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
315
314
  """
316
- Tags of the dashboard
315
+ Tags of the dashboard.
317
316
  """
318
317
  return pulumi.get(self, "tags")
319
318
 
@@ -325,7 +324,7 @@ class DashboardArgs:
325
324
  @pulumi.getter(name="timeRange")
326
325
  def time_range(self) -> Optional[pulumi.Input[str]]:
327
326
  """
328
- From when to display data. Splunk Observability Cloud time syntax (e.g. -5m, -1h)
327
+ The time range prior to now to visualize. Splunk Observability Cloud time syntax (e.g. `"-5m"`, `"-1h"`).
329
328
  """
330
329
  return pulumi.get(self, "time_range")
331
330
 
@@ -337,7 +336,7 @@ class DashboardArgs:
337
336
  @pulumi.getter
338
337
  def variables(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['DashboardVariableArgs']]]]:
339
338
  """
340
- Dashboard variable to apply to each chart in the dashboard
339
+ Dashboard variable to apply to each chart in the dashboard.
341
340
  """
342
341
  return pulumi.get(self, "variables")
343
342
 
@@ -372,27 +371,25 @@ class _DashboardState:
372
371
  variables: Optional[pulumi.Input[Sequence[pulumi.Input['DashboardVariableArgs']]]] = None):
373
372
  """
374
373
  Input properties used for looking up and filtering Dashboard resources.
375
- :param pulumi.Input[Sequence[pulumi.Input[str]]] authorized_writer_teams: Team IDs that have write access to this dashboard
376
- :param pulumi.Input[Sequence[pulumi.Input[str]]] authorized_writer_users: User IDs that have write access to this dashboard
377
- :param pulumi.Input[Sequence[pulumi.Input['DashboardChartArgs']]] charts: Chart ID and layout information for the charts in the dashboard
378
- :param pulumi.Input[str] charts_resolution: Specifies the chart data display resolution for charts in this dashboard. Value can be one of "default", "low", "high",
379
- or "highest". default by default
380
- :param pulumi.Input[Sequence[pulumi.Input['DashboardColumnArgs']]] columns: Column layout. Charts listed, will be placed in a single column with the same width and height
381
- :param pulumi.Input[str] dashboard_group: The ID of the dashboard group that contains the dashboard. If an ID is not provided during creation, the dashboard will
382
- be placed in a newly created dashboard group
383
- :param pulumi.Input[str] description: Description of the dashboard (Optional)
384
- :param pulumi.Input[int] end_time: Seconds since epoch to end the visualization
385
- :param pulumi.Input[Sequence[pulumi.Input['DashboardEventOverlayArgs']]] event_overlays: Event overlay to add to charts
386
- :param pulumi.Input[Sequence[pulumi.Input['DashboardFilterArgs']]] filters: Filter to apply to each chart in the dashboard
387
- :param pulumi.Input[Sequence[pulumi.Input['DashboardGridArgs']]] grids: Grid dashboard layout. Charts listed will be placed in a grid by row with the same width and height. If a chart can't
388
- fit in a row, it will be placed automatically in the next row
389
- :param pulumi.Input[str] name: Name of the dashboard
390
- :param pulumi.Input[Sequence[pulumi.Input['DashboardSelectedEventOverlayArgs']]] selected_event_overlays: Event overlay added to charts by default to charts
391
- :param pulumi.Input[int] start_time: Seconds since epoch to start the visualization
392
- :param pulumi.Input[Sequence[pulumi.Input[str]]] tags: Tags of the dashboard
393
- :param pulumi.Input[str] time_range: From when to display data. Splunk Observability Cloud time syntax (e.g. -5m, -1h)
394
- :param pulumi.Input[str] url: URL of the dashboard
395
- :param pulumi.Input[Sequence[pulumi.Input['DashboardVariableArgs']]] variables: Dashboard variable to apply to each chart in the dashboard
374
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] authorized_writer_teams: Team IDs that have write access to this dashboard group. Remember to use an admin's token if using this feature and to include that admin's team (or user id in `authorized_writer_teams`). **Note:** Deprecated use `permissions` instead.
375
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] authorized_writer_users: User IDs that have write access to this dashboard group. Remember to use an admin's token if using this feature and to include that admin's user id (or team id in `authorized_writer_teams`). **Note:** Deprecated use `permissions` instead.
376
+ :param pulumi.Input[Sequence[pulumi.Input['DashboardChartArgs']]] charts: Chart ID and layout information for the charts in the dashboard.
377
+ :param pulumi.Input[str] charts_resolution: Specifies the chart data display resolution for charts in this dashboard. Value can be one of `"default"`, `"low"`, `"high"`, or `"highest"`.
378
+ :param pulumi.Input[Sequence[pulumi.Input['DashboardColumnArgs']]] columns: Column layout. Charts listed will be placed in a single column with the same width and height.
379
+ :param pulumi.Input[str] dashboard_group: The ID of the dashboard group that contains the dashboard.
380
+ :param pulumi.Input[str] description: Description of the dashboard.
381
+ :param pulumi.Input[int] end_time: Seconds since epoch. Used for visualization.
382
+ :param pulumi.Input[Sequence[pulumi.Input['DashboardEventOverlayArgs']]] event_overlays: Specify a list of event overlays to include in the dashboard. Note: These overlays correspond to the *suggested* event overlays specified in the web UI, and they're not automatically applied as active overlays. To set default active event overlays, use the `selected_event_overlay` property instead.
383
+ :param pulumi.Input[Sequence[pulumi.Input['DashboardFilterArgs']]] filters: Filter to apply to the charts when displaying the dashboard.
384
+ :param pulumi.Input[Sequence[pulumi.Input['DashboardGridArgs']]] grids: Grid dashboard layout. Charts listed will be placed in a grid by row with the same width and height. If a chart cannot fit in a row, it will be placed automatically in the next row.
385
+ :param pulumi.Input[str] name: Name of the dashboard.
386
+ :param pulumi.Input['DashboardPermissionsArgs'] permissions: [Permissions](https://docs.splunk.com/Observability/infrastructure/terms-concepts/permissions.html) Controls who can view and/or edit your dashboard. **Note:** This feature is not present in all accounts. Please contact support if you are unsure.
387
+ :param pulumi.Input[Sequence[pulumi.Input['DashboardSelectedEventOverlayArgs']]] selected_event_overlays: Defines event overlays which are enabled by **default**. Any overlay specified here should have an accompanying entry in `event_overlay`, which are similar to the properties here.
388
+ :param pulumi.Input[int] start_time: Seconds since epoch. Used for visualization.
389
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] tags: Tags of the dashboard.
390
+ :param pulumi.Input[str] time_range: The time range prior to now to visualize. Splunk Observability Cloud time syntax (e.g. `"-5m"`, `"-1h"`).
391
+ :param pulumi.Input[str] url: The URL of the dashboard.
392
+ :param pulumi.Input[Sequence[pulumi.Input['DashboardVariableArgs']]] variables: Dashboard variable to apply to each chart in the dashboard.
396
393
  """
397
394
  if authorized_writer_teams is not None:
398
395
  warnings.warn("""Please use permissions_* fields now""", DeprecationWarning)
@@ -445,13 +442,11 @@ class _DashboardState:
445
442
 
446
443
  @property
447
444
  @pulumi.getter(name="authorizedWriterTeams")
445
+ @_utilities.deprecated("""Please use permissions_* fields now""")
448
446
  def authorized_writer_teams(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
449
447
  """
450
- Team IDs that have write access to this dashboard
448
+ Team IDs that have write access to this dashboard group. Remember to use an admin's token if using this feature and to include that admin's team (or user id in `authorized_writer_teams`). **Note:** Deprecated use `permissions` instead.
451
449
  """
452
- warnings.warn("""Please use permissions_* fields now""", DeprecationWarning)
453
- pulumi.log.warn("""authorized_writer_teams is deprecated: Please use permissions_* fields now""")
454
-
455
450
  return pulumi.get(self, "authorized_writer_teams")
456
451
 
457
452
  @authorized_writer_teams.setter
@@ -460,13 +455,11 @@ class _DashboardState:
460
455
 
461
456
  @property
462
457
  @pulumi.getter(name="authorizedWriterUsers")
458
+ @_utilities.deprecated("""Please use permissions fields now""")
463
459
  def authorized_writer_users(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
464
460
  """
465
- User IDs that have write access to this dashboard
461
+ User IDs that have write access to this dashboard group. Remember to use an admin's token if using this feature and to include that admin's user id (or team id in `authorized_writer_teams`). **Note:** Deprecated use `permissions` instead.
466
462
  """
467
- warnings.warn("""Please use permissions fields now""", DeprecationWarning)
468
- pulumi.log.warn("""authorized_writer_users is deprecated: Please use permissions fields now""")
469
-
470
463
  return pulumi.get(self, "authorized_writer_users")
471
464
 
472
465
  @authorized_writer_users.setter
@@ -477,7 +470,7 @@ class _DashboardState:
477
470
  @pulumi.getter
478
471
  def charts(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['DashboardChartArgs']]]]:
479
472
  """
480
- Chart ID and layout information for the charts in the dashboard
473
+ Chart ID and layout information for the charts in the dashboard.
481
474
  """
482
475
  return pulumi.get(self, "charts")
483
476
 
@@ -489,8 +482,7 @@ class _DashboardState:
489
482
  @pulumi.getter(name="chartsResolution")
490
483
  def charts_resolution(self) -> Optional[pulumi.Input[str]]:
491
484
  """
492
- Specifies the chart data display resolution for charts in this dashboard. Value can be one of "default", "low", "high",
493
- or "highest". default by default
485
+ Specifies the chart data display resolution for charts in this dashboard. Value can be one of `"default"`, `"low"`, `"high"`, or `"highest"`.
494
486
  """
495
487
  return pulumi.get(self, "charts_resolution")
496
488
 
@@ -502,7 +494,7 @@ class _DashboardState:
502
494
  @pulumi.getter
503
495
  def columns(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['DashboardColumnArgs']]]]:
504
496
  """
505
- Column layout. Charts listed, will be placed in a single column with the same width and height
497
+ Column layout. Charts listed will be placed in a single column with the same width and height.
506
498
  """
507
499
  return pulumi.get(self, "columns")
508
500
 
@@ -514,8 +506,7 @@ class _DashboardState:
514
506
  @pulumi.getter(name="dashboardGroup")
515
507
  def dashboard_group(self) -> Optional[pulumi.Input[str]]:
516
508
  """
517
- The ID of the dashboard group that contains the dashboard. If an ID is not provided during creation, the dashboard will
518
- be placed in a newly created dashboard group
509
+ The ID of the dashboard group that contains the dashboard.
519
510
  """
520
511
  return pulumi.get(self, "dashboard_group")
521
512
 
@@ -527,7 +518,7 @@ class _DashboardState:
527
518
  @pulumi.getter
528
519
  def description(self) -> Optional[pulumi.Input[str]]:
529
520
  """
530
- Description of the dashboard (Optional)
521
+ Description of the dashboard.
531
522
  """
532
523
  return pulumi.get(self, "description")
533
524
 
@@ -557,7 +548,7 @@ class _DashboardState:
557
548
  @pulumi.getter(name="endTime")
558
549
  def end_time(self) -> Optional[pulumi.Input[int]]:
559
550
  """
560
- Seconds since epoch to end the visualization
551
+ Seconds since epoch. Used for visualization.
561
552
  """
562
553
  return pulumi.get(self, "end_time")
563
554
 
@@ -569,7 +560,7 @@ class _DashboardState:
569
560
  @pulumi.getter(name="eventOverlays")
570
561
  def event_overlays(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['DashboardEventOverlayArgs']]]]:
571
562
  """
572
- Event overlay to add to charts
563
+ Specify a list of event overlays to include in the dashboard. Note: These overlays correspond to the *suggested* event overlays specified in the web UI, and they're not automatically applied as active overlays. To set default active event overlays, use the `selected_event_overlay` property instead.
573
564
  """
574
565
  return pulumi.get(self, "event_overlays")
575
566
 
@@ -581,7 +572,7 @@ class _DashboardState:
581
572
  @pulumi.getter
582
573
  def filters(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['DashboardFilterArgs']]]]:
583
574
  """
584
- Filter to apply to each chart in the dashboard
575
+ Filter to apply to the charts when displaying the dashboard.
585
576
  """
586
577
  return pulumi.get(self, "filters")
587
578
 
@@ -593,8 +584,7 @@ class _DashboardState:
593
584
  @pulumi.getter
594
585
  def grids(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['DashboardGridArgs']]]]:
595
586
  """
596
- Grid dashboard layout. Charts listed will be placed in a grid by row with the same width and height. If a chart can't
597
- fit in a row, it will be placed automatically in the next row
587
+ Grid dashboard layout. Charts listed will be placed in a grid by row with the same width and height. If a chart cannot fit in a row, it will be placed automatically in the next row.
598
588
  """
599
589
  return pulumi.get(self, "grids")
600
590
 
@@ -606,7 +596,7 @@ class _DashboardState:
606
596
  @pulumi.getter
607
597
  def name(self) -> Optional[pulumi.Input[str]]:
608
598
  """
609
- Name of the dashboard
599
+ Name of the dashboard.
610
600
  """
611
601
  return pulumi.get(self, "name")
612
602
 
@@ -617,6 +607,9 @@ class _DashboardState:
617
607
  @property
618
608
  @pulumi.getter
619
609
  def permissions(self) -> Optional[pulumi.Input['DashboardPermissionsArgs']]:
610
+ """
611
+ [Permissions](https://docs.splunk.com/Observability/infrastructure/terms-concepts/permissions.html) Controls who can view and/or edit your dashboard. **Note:** This feature is not present in all accounts. Please contact support if you are unsure.
612
+ """
620
613
  return pulumi.get(self, "permissions")
621
614
 
622
615
  @permissions.setter
@@ -627,7 +620,7 @@ class _DashboardState:
627
620
  @pulumi.getter(name="selectedEventOverlays")
628
621
  def selected_event_overlays(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['DashboardSelectedEventOverlayArgs']]]]:
629
622
  """
630
- Event overlay added to charts by default to charts
623
+ Defines event overlays which are enabled by **default**. Any overlay specified here should have an accompanying entry in `event_overlay`, which are similar to the properties here.
631
624
  """
632
625
  return pulumi.get(self, "selected_event_overlays")
633
626
 
@@ -639,7 +632,7 @@ class _DashboardState:
639
632
  @pulumi.getter(name="startTime")
640
633
  def start_time(self) -> Optional[pulumi.Input[int]]:
641
634
  """
642
- Seconds since epoch to start the visualization
635
+ Seconds since epoch. Used for visualization.
643
636
  """
644
637
  return pulumi.get(self, "start_time")
645
638
 
@@ -651,7 +644,7 @@ class _DashboardState:
651
644
  @pulumi.getter
652
645
  def tags(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
653
646
  """
654
- Tags of the dashboard
647
+ Tags of the dashboard.
655
648
  """
656
649
  return pulumi.get(self, "tags")
657
650
 
@@ -663,7 +656,7 @@ class _DashboardState:
663
656
  @pulumi.getter(name="timeRange")
664
657
  def time_range(self) -> Optional[pulumi.Input[str]]:
665
658
  """
666
- From when to display data. Splunk Observability Cloud time syntax (e.g. -5m, -1h)
659
+ The time range prior to now to visualize. Splunk Observability Cloud time syntax (e.g. `"-5m"`, `"-1h"`).
667
660
  """
668
661
  return pulumi.get(self, "time_range")
669
662
 
@@ -675,7 +668,7 @@ class _DashboardState:
675
668
  @pulumi.getter
676
669
  def url(self) -> Optional[pulumi.Input[str]]:
677
670
  """
678
- URL of the dashboard
671
+ The URL of the dashboard.
679
672
  """
680
673
  return pulumi.get(self, "url")
681
674
 
@@ -687,7 +680,7 @@ class _DashboardState:
687
680
  @pulumi.getter
688
681
  def variables(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['DashboardVariableArgs']]]]:
689
682
  """
690
- Dashboard variable to apply to each chart in the dashboard
683
+ Dashboard variable to apply to each chart in the dashboard.
691
684
  """
692
685
  return pulumi.get(self, "variables")
693
686
 
@@ -703,49 +696,47 @@ class Dashboard(pulumi.CustomResource):
703
696
  opts: Optional[pulumi.ResourceOptions] = None,
704
697
  authorized_writer_teams: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
705
698
  authorized_writer_users: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
706
- charts: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['DashboardChartArgs']]]]] = None,
699
+ charts: Optional[pulumi.Input[Sequence[pulumi.Input[Union['DashboardChartArgs', 'DashboardChartArgsDict']]]]] = None,
707
700
  charts_resolution: Optional[pulumi.Input[str]] = None,
708
- columns: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['DashboardColumnArgs']]]]] = None,
701
+ columns: Optional[pulumi.Input[Sequence[pulumi.Input[Union['DashboardColumnArgs', 'DashboardColumnArgsDict']]]]] = None,
709
702
  dashboard_group: Optional[pulumi.Input[str]] = None,
710
703
  description: Optional[pulumi.Input[str]] = None,
711
704
  discovery_options_query: Optional[pulumi.Input[str]] = None,
712
705
  discovery_options_selectors: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
713
706
  end_time: Optional[pulumi.Input[int]] = None,
714
- event_overlays: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['DashboardEventOverlayArgs']]]]] = None,
715
- filters: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['DashboardFilterArgs']]]]] = None,
716
- grids: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['DashboardGridArgs']]]]] = None,
707
+ event_overlays: Optional[pulumi.Input[Sequence[pulumi.Input[Union['DashboardEventOverlayArgs', 'DashboardEventOverlayArgsDict']]]]] = None,
708
+ filters: Optional[pulumi.Input[Sequence[pulumi.Input[Union['DashboardFilterArgs', 'DashboardFilterArgsDict']]]]] = None,
709
+ grids: Optional[pulumi.Input[Sequence[pulumi.Input[Union['DashboardGridArgs', 'DashboardGridArgsDict']]]]] = None,
717
710
  name: Optional[pulumi.Input[str]] = None,
718
- permissions: Optional[pulumi.Input[pulumi.InputType['DashboardPermissionsArgs']]] = None,
719
- selected_event_overlays: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['DashboardSelectedEventOverlayArgs']]]]] = None,
711
+ permissions: Optional[pulumi.Input[Union['DashboardPermissionsArgs', 'DashboardPermissionsArgsDict']]] = None,
712
+ selected_event_overlays: Optional[pulumi.Input[Sequence[pulumi.Input[Union['DashboardSelectedEventOverlayArgs', 'DashboardSelectedEventOverlayArgsDict']]]]] = None,
720
713
  start_time: Optional[pulumi.Input[int]] = None,
721
714
  tags: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
722
715
  time_range: Optional[pulumi.Input[str]] = None,
723
- variables: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['DashboardVariableArgs']]]]] = None,
716
+ variables: Optional[pulumi.Input[Sequence[pulumi.Input[Union['DashboardVariableArgs', 'DashboardVariableArgsDict']]]]] = None,
724
717
  __props__=None):
725
718
  """
726
719
  Create a Dashboard resource with the given unique name, props, and options.
727
720
  :param str resource_name: The name of the resource.
728
721
  :param pulumi.ResourceOptions opts: Options for the resource.
729
- :param pulumi.Input[Sequence[pulumi.Input[str]]] authorized_writer_teams: Team IDs that have write access to this dashboard
730
- :param pulumi.Input[Sequence[pulumi.Input[str]]] authorized_writer_users: User IDs that have write access to this dashboard
731
- :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['DashboardChartArgs']]]] charts: Chart ID and layout information for the charts in the dashboard
732
- :param pulumi.Input[str] charts_resolution: Specifies the chart data display resolution for charts in this dashboard. Value can be one of "default", "low", "high",
733
- or "highest". default by default
734
- :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['DashboardColumnArgs']]]] columns: Column layout. Charts listed, will be placed in a single column with the same width and height
735
- :param pulumi.Input[str] dashboard_group: The ID of the dashboard group that contains the dashboard. If an ID is not provided during creation, the dashboard will
736
- be placed in a newly created dashboard group
737
- :param pulumi.Input[str] description: Description of the dashboard (Optional)
738
- :param pulumi.Input[int] end_time: Seconds since epoch to end the visualization
739
- :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['DashboardEventOverlayArgs']]]] event_overlays: Event overlay to add to charts
740
- :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['DashboardFilterArgs']]]] filters: Filter to apply to each chart in the dashboard
741
- :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['DashboardGridArgs']]]] grids: Grid dashboard layout. Charts listed will be placed in a grid by row with the same width and height. If a chart can't
742
- fit in a row, it will be placed automatically in the next row
743
- :param pulumi.Input[str] name: Name of the dashboard
744
- :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['DashboardSelectedEventOverlayArgs']]]] selected_event_overlays: Event overlay added to charts by default to charts
745
- :param pulumi.Input[int] start_time: Seconds since epoch to start the visualization
746
- :param pulumi.Input[Sequence[pulumi.Input[str]]] tags: Tags of the dashboard
747
- :param pulumi.Input[str] time_range: From when to display data. Splunk Observability Cloud time syntax (e.g. -5m, -1h)
748
- :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['DashboardVariableArgs']]]] variables: Dashboard variable to apply to each chart in the dashboard
722
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] authorized_writer_teams: Team IDs that have write access to this dashboard group. Remember to use an admin's token if using this feature and to include that admin's team (or user id in `authorized_writer_teams`). **Note:** Deprecated use `permissions` instead.
723
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] authorized_writer_users: User IDs that have write access to this dashboard group. Remember to use an admin's token if using this feature and to include that admin's user id (or team id in `authorized_writer_teams`). **Note:** Deprecated use `permissions` instead.
724
+ :param pulumi.Input[Sequence[pulumi.Input[Union['DashboardChartArgs', 'DashboardChartArgsDict']]]] charts: Chart ID and layout information for the charts in the dashboard.
725
+ :param pulumi.Input[str] charts_resolution: Specifies the chart data display resolution for charts in this dashboard. Value can be one of `"default"`, `"low"`, `"high"`, or `"highest"`.
726
+ :param pulumi.Input[Sequence[pulumi.Input[Union['DashboardColumnArgs', 'DashboardColumnArgsDict']]]] columns: Column layout. Charts listed will be placed in a single column with the same width and height.
727
+ :param pulumi.Input[str] dashboard_group: The ID of the dashboard group that contains the dashboard.
728
+ :param pulumi.Input[str] description: Description of the dashboard.
729
+ :param pulumi.Input[int] end_time: Seconds since epoch. Used for visualization.
730
+ :param pulumi.Input[Sequence[pulumi.Input[Union['DashboardEventOverlayArgs', 'DashboardEventOverlayArgsDict']]]] event_overlays: Specify a list of event overlays to include in the dashboard. Note: These overlays correspond to the *suggested* event overlays specified in the web UI, and they're not automatically applied as active overlays. To set default active event overlays, use the `selected_event_overlay` property instead.
731
+ :param pulumi.Input[Sequence[pulumi.Input[Union['DashboardFilterArgs', 'DashboardFilterArgsDict']]]] filters: Filter to apply to the charts when displaying the dashboard.
732
+ :param pulumi.Input[Sequence[pulumi.Input[Union['DashboardGridArgs', 'DashboardGridArgsDict']]]] grids: Grid dashboard layout. Charts listed will be placed in a grid by row with the same width and height. If a chart cannot fit in a row, it will be placed automatically in the next row.
733
+ :param pulumi.Input[str] name: Name of the dashboard.
734
+ :param pulumi.Input[Union['DashboardPermissionsArgs', 'DashboardPermissionsArgsDict']] permissions: [Permissions](https://docs.splunk.com/Observability/infrastructure/terms-concepts/permissions.html) Controls who can view and/or edit your dashboard. **Note:** This feature is not present in all accounts. Please contact support if you are unsure.
735
+ :param pulumi.Input[Sequence[pulumi.Input[Union['DashboardSelectedEventOverlayArgs', 'DashboardSelectedEventOverlayArgsDict']]]] selected_event_overlays: Defines event overlays which are enabled by **default**. Any overlay specified here should have an accompanying entry in `event_overlay`, which are similar to the properties here.
736
+ :param pulumi.Input[int] start_time: Seconds since epoch. Used for visualization.
737
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] tags: Tags of the dashboard.
738
+ :param pulumi.Input[str] time_range: The time range prior to now to visualize. Splunk Observability Cloud time syntax (e.g. `"-5m"`, `"-1h"`).
739
+ :param pulumi.Input[Sequence[pulumi.Input[Union['DashboardVariableArgs', 'DashboardVariableArgsDict']]]] variables: Dashboard variable to apply to each chart in the dashboard.
749
740
  """
750
741
  ...
751
742
  @overload
@@ -772,24 +763,24 @@ class Dashboard(pulumi.CustomResource):
772
763
  opts: Optional[pulumi.ResourceOptions] = None,
773
764
  authorized_writer_teams: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
774
765
  authorized_writer_users: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
775
- charts: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['DashboardChartArgs']]]]] = None,
766
+ charts: Optional[pulumi.Input[Sequence[pulumi.Input[Union['DashboardChartArgs', 'DashboardChartArgsDict']]]]] = None,
776
767
  charts_resolution: Optional[pulumi.Input[str]] = None,
777
- columns: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['DashboardColumnArgs']]]]] = None,
768
+ columns: Optional[pulumi.Input[Sequence[pulumi.Input[Union['DashboardColumnArgs', 'DashboardColumnArgsDict']]]]] = None,
778
769
  dashboard_group: Optional[pulumi.Input[str]] = None,
779
770
  description: Optional[pulumi.Input[str]] = None,
780
771
  discovery_options_query: Optional[pulumi.Input[str]] = None,
781
772
  discovery_options_selectors: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
782
773
  end_time: Optional[pulumi.Input[int]] = None,
783
- event_overlays: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['DashboardEventOverlayArgs']]]]] = None,
784
- filters: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['DashboardFilterArgs']]]]] = None,
785
- grids: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['DashboardGridArgs']]]]] = None,
774
+ event_overlays: Optional[pulumi.Input[Sequence[pulumi.Input[Union['DashboardEventOverlayArgs', 'DashboardEventOverlayArgsDict']]]]] = None,
775
+ filters: Optional[pulumi.Input[Sequence[pulumi.Input[Union['DashboardFilterArgs', 'DashboardFilterArgsDict']]]]] = None,
776
+ grids: Optional[pulumi.Input[Sequence[pulumi.Input[Union['DashboardGridArgs', 'DashboardGridArgsDict']]]]] = None,
786
777
  name: Optional[pulumi.Input[str]] = None,
787
- permissions: Optional[pulumi.Input[pulumi.InputType['DashboardPermissionsArgs']]] = None,
788
- selected_event_overlays: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['DashboardSelectedEventOverlayArgs']]]]] = None,
778
+ permissions: Optional[pulumi.Input[Union['DashboardPermissionsArgs', 'DashboardPermissionsArgsDict']]] = None,
779
+ selected_event_overlays: Optional[pulumi.Input[Sequence[pulumi.Input[Union['DashboardSelectedEventOverlayArgs', 'DashboardSelectedEventOverlayArgsDict']]]]] = None,
789
780
  start_time: Optional[pulumi.Input[int]] = None,
790
781
  tags: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
791
782
  time_range: Optional[pulumi.Input[str]] = None,
792
- variables: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['DashboardVariableArgs']]]]] = None,
783
+ variables: Optional[pulumi.Input[Sequence[pulumi.Input[Union['DashboardVariableArgs', 'DashboardVariableArgsDict']]]]] = None,
793
784
  __props__=None):
794
785
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
795
786
  if not isinstance(opts, pulumi.ResourceOptions):
@@ -834,25 +825,25 @@ class Dashboard(pulumi.CustomResource):
834
825
  opts: Optional[pulumi.ResourceOptions] = None,
835
826
  authorized_writer_teams: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
836
827
  authorized_writer_users: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
837
- charts: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['DashboardChartArgs']]]]] = None,
828
+ charts: Optional[pulumi.Input[Sequence[pulumi.Input[Union['DashboardChartArgs', 'DashboardChartArgsDict']]]]] = None,
838
829
  charts_resolution: Optional[pulumi.Input[str]] = None,
839
- columns: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['DashboardColumnArgs']]]]] = None,
830
+ columns: Optional[pulumi.Input[Sequence[pulumi.Input[Union['DashboardColumnArgs', 'DashboardColumnArgsDict']]]]] = None,
840
831
  dashboard_group: Optional[pulumi.Input[str]] = None,
841
832
  description: Optional[pulumi.Input[str]] = None,
842
833
  discovery_options_query: Optional[pulumi.Input[str]] = None,
843
834
  discovery_options_selectors: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
844
835
  end_time: Optional[pulumi.Input[int]] = None,
845
- event_overlays: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['DashboardEventOverlayArgs']]]]] = None,
846
- filters: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['DashboardFilterArgs']]]]] = None,
847
- grids: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['DashboardGridArgs']]]]] = None,
836
+ event_overlays: Optional[pulumi.Input[Sequence[pulumi.Input[Union['DashboardEventOverlayArgs', 'DashboardEventOverlayArgsDict']]]]] = None,
837
+ filters: Optional[pulumi.Input[Sequence[pulumi.Input[Union['DashboardFilterArgs', 'DashboardFilterArgsDict']]]]] = None,
838
+ grids: Optional[pulumi.Input[Sequence[pulumi.Input[Union['DashboardGridArgs', 'DashboardGridArgsDict']]]]] = None,
848
839
  name: Optional[pulumi.Input[str]] = None,
849
- permissions: Optional[pulumi.Input[pulumi.InputType['DashboardPermissionsArgs']]] = None,
850
- selected_event_overlays: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['DashboardSelectedEventOverlayArgs']]]]] = None,
840
+ permissions: Optional[pulumi.Input[Union['DashboardPermissionsArgs', 'DashboardPermissionsArgsDict']]] = None,
841
+ selected_event_overlays: Optional[pulumi.Input[Sequence[pulumi.Input[Union['DashboardSelectedEventOverlayArgs', 'DashboardSelectedEventOverlayArgsDict']]]]] = None,
851
842
  start_time: Optional[pulumi.Input[int]] = None,
852
843
  tags: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
853
844
  time_range: Optional[pulumi.Input[str]] = None,
854
845
  url: Optional[pulumi.Input[str]] = None,
855
- variables: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['DashboardVariableArgs']]]]] = None) -> 'Dashboard':
846
+ variables: Optional[pulumi.Input[Sequence[pulumi.Input[Union['DashboardVariableArgs', 'DashboardVariableArgsDict']]]]] = None) -> 'Dashboard':
856
847
  """
857
848
  Get an existing Dashboard resource's state with the given name, id, and optional extra
858
849
  properties used to qualify the lookup.
@@ -860,27 +851,25 @@ class Dashboard(pulumi.CustomResource):
860
851
  :param str resource_name: The unique name of the resulting resource.
861
852
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
862
853
  :param pulumi.ResourceOptions opts: Options for the resource.
863
- :param pulumi.Input[Sequence[pulumi.Input[str]]] authorized_writer_teams: Team IDs that have write access to this dashboard
864
- :param pulumi.Input[Sequence[pulumi.Input[str]]] authorized_writer_users: User IDs that have write access to this dashboard
865
- :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['DashboardChartArgs']]]] charts: Chart ID and layout information for the charts in the dashboard
866
- :param pulumi.Input[str] charts_resolution: Specifies the chart data display resolution for charts in this dashboard. Value can be one of "default", "low", "high",
867
- or "highest". default by default
868
- :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['DashboardColumnArgs']]]] columns: Column layout. Charts listed, will be placed in a single column with the same width and height
869
- :param pulumi.Input[str] dashboard_group: The ID of the dashboard group that contains the dashboard. If an ID is not provided during creation, the dashboard will
870
- be placed in a newly created dashboard group
871
- :param pulumi.Input[str] description: Description of the dashboard (Optional)
872
- :param pulumi.Input[int] end_time: Seconds since epoch to end the visualization
873
- :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['DashboardEventOverlayArgs']]]] event_overlays: Event overlay to add to charts
874
- :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['DashboardFilterArgs']]]] filters: Filter to apply to each chart in the dashboard
875
- :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['DashboardGridArgs']]]] grids: Grid dashboard layout. Charts listed will be placed in a grid by row with the same width and height. If a chart can't
876
- fit in a row, it will be placed automatically in the next row
877
- :param pulumi.Input[str] name: Name of the dashboard
878
- :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['DashboardSelectedEventOverlayArgs']]]] selected_event_overlays: Event overlay added to charts by default to charts
879
- :param pulumi.Input[int] start_time: Seconds since epoch to start the visualization
880
- :param pulumi.Input[Sequence[pulumi.Input[str]]] tags: Tags of the dashboard
881
- :param pulumi.Input[str] time_range: From when to display data. Splunk Observability Cloud time syntax (e.g. -5m, -1h)
882
- :param pulumi.Input[str] url: URL of the dashboard
883
- :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['DashboardVariableArgs']]]] variables: Dashboard variable to apply to each chart in the dashboard
854
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] authorized_writer_teams: Team IDs that have write access to this dashboard group. Remember to use an admin's token if using this feature and to include that admin's team (or user id in `authorized_writer_teams`). **Note:** Deprecated use `permissions` instead.
855
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] authorized_writer_users: User IDs that have write access to this dashboard group. Remember to use an admin's token if using this feature and to include that admin's user id (or team id in `authorized_writer_teams`). **Note:** Deprecated use `permissions` instead.
856
+ :param pulumi.Input[Sequence[pulumi.Input[Union['DashboardChartArgs', 'DashboardChartArgsDict']]]] charts: Chart ID and layout information for the charts in the dashboard.
857
+ :param pulumi.Input[str] charts_resolution: Specifies the chart data display resolution for charts in this dashboard. Value can be one of `"default"`, `"low"`, `"high"`, or `"highest"`.
858
+ :param pulumi.Input[Sequence[pulumi.Input[Union['DashboardColumnArgs', 'DashboardColumnArgsDict']]]] columns: Column layout. Charts listed will be placed in a single column with the same width and height.
859
+ :param pulumi.Input[str] dashboard_group: The ID of the dashboard group that contains the dashboard.
860
+ :param pulumi.Input[str] description: Description of the dashboard.
861
+ :param pulumi.Input[int] end_time: Seconds since epoch. Used for visualization.
862
+ :param pulumi.Input[Sequence[pulumi.Input[Union['DashboardEventOverlayArgs', 'DashboardEventOverlayArgsDict']]]] event_overlays: Specify a list of event overlays to include in the dashboard. Note: These overlays correspond to the *suggested* event overlays specified in the web UI, and they're not automatically applied as active overlays. To set default active event overlays, use the `selected_event_overlay` property instead.
863
+ :param pulumi.Input[Sequence[pulumi.Input[Union['DashboardFilterArgs', 'DashboardFilterArgsDict']]]] filters: Filter to apply to the charts when displaying the dashboard.
864
+ :param pulumi.Input[Sequence[pulumi.Input[Union['DashboardGridArgs', 'DashboardGridArgsDict']]]] grids: Grid dashboard layout. Charts listed will be placed in a grid by row with the same width and height. If a chart cannot fit in a row, it will be placed automatically in the next row.
865
+ :param pulumi.Input[str] name: Name of the dashboard.
866
+ :param pulumi.Input[Union['DashboardPermissionsArgs', 'DashboardPermissionsArgsDict']] permissions: [Permissions](https://docs.splunk.com/Observability/infrastructure/terms-concepts/permissions.html) Controls who can view and/or edit your dashboard. **Note:** This feature is not present in all accounts. Please contact support if you are unsure.
867
+ :param pulumi.Input[Sequence[pulumi.Input[Union['DashboardSelectedEventOverlayArgs', 'DashboardSelectedEventOverlayArgsDict']]]] selected_event_overlays: Defines event overlays which are enabled by **default**. Any overlay specified here should have an accompanying entry in `event_overlay`, which are similar to the properties here.
868
+ :param pulumi.Input[int] start_time: Seconds since epoch. Used for visualization.
869
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] tags: Tags of the dashboard.
870
+ :param pulumi.Input[str] time_range: The time range prior to now to visualize. Splunk Observability Cloud time syntax (e.g. `"-5m"`, `"-1h"`).
871
+ :param pulumi.Input[str] url: The URL of the dashboard.
872
+ :param pulumi.Input[Sequence[pulumi.Input[Union['DashboardVariableArgs', 'DashboardVariableArgsDict']]]] variables: Dashboard variable to apply to each chart in the dashboard.
884
873
  """
885
874
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
886
875
 
@@ -911,31 +900,27 @@ class Dashboard(pulumi.CustomResource):
911
900
 
912
901
  @property
913
902
  @pulumi.getter(name="authorizedWriterTeams")
903
+ @_utilities.deprecated("""Please use permissions_* fields now""")
914
904
  def authorized_writer_teams(self) -> pulumi.Output[Optional[Sequence[str]]]:
915
905
  """
916
- Team IDs that have write access to this dashboard
906
+ Team IDs that have write access to this dashboard group. Remember to use an admin's token if using this feature and to include that admin's team (or user id in `authorized_writer_teams`). **Note:** Deprecated use `permissions` instead.
917
907
  """
918
- warnings.warn("""Please use permissions_* fields now""", DeprecationWarning)
919
- pulumi.log.warn("""authorized_writer_teams is deprecated: Please use permissions_* fields now""")
920
-
921
908
  return pulumi.get(self, "authorized_writer_teams")
922
909
 
923
910
  @property
924
911
  @pulumi.getter(name="authorizedWriterUsers")
912
+ @_utilities.deprecated("""Please use permissions fields now""")
925
913
  def authorized_writer_users(self) -> pulumi.Output[Optional[Sequence[str]]]:
926
914
  """
927
- User IDs that have write access to this dashboard
915
+ User IDs that have write access to this dashboard group. Remember to use an admin's token if using this feature and to include that admin's user id (or team id in `authorized_writer_teams`). **Note:** Deprecated use `permissions` instead.
928
916
  """
929
- warnings.warn("""Please use permissions fields now""", DeprecationWarning)
930
- pulumi.log.warn("""authorized_writer_users is deprecated: Please use permissions fields now""")
931
-
932
917
  return pulumi.get(self, "authorized_writer_users")
933
918
 
934
919
  @property
935
920
  @pulumi.getter
936
921
  def charts(self) -> pulumi.Output[Optional[Sequence['outputs.DashboardChart']]]:
937
922
  """
938
- Chart ID and layout information for the charts in the dashboard
923
+ Chart ID and layout information for the charts in the dashboard.
939
924
  """
940
925
  return pulumi.get(self, "charts")
941
926
 
@@ -943,8 +928,7 @@ class Dashboard(pulumi.CustomResource):
943
928
  @pulumi.getter(name="chartsResolution")
944
929
  def charts_resolution(self) -> pulumi.Output[Optional[str]]:
945
930
  """
946
- Specifies the chart data display resolution for charts in this dashboard. Value can be one of "default", "low", "high",
947
- or "highest". default by default
931
+ Specifies the chart data display resolution for charts in this dashboard. Value can be one of `"default"`, `"low"`, `"high"`, or `"highest"`.
948
932
  """
949
933
  return pulumi.get(self, "charts_resolution")
950
934
 
@@ -952,7 +936,7 @@ class Dashboard(pulumi.CustomResource):
952
936
  @pulumi.getter
953
937
  def columns(self) -> pulumi.Output[Optional[Sequence['outputs.DashboardColumn']]]:
954
938
  """
955
- Column layout. Charts listed, will be placed in a single column with the same width and height
939
+ Column layout. Charts listed will be placed in a single column with the same width and height.
956
940
  """
957
941
  return pulumi.get(self, "columns")
958
942
 
@@ -960,8 +944,7 @@ class Dashboard(pulumi.CustomResource):
960
944
  @pulumi.getter(name="dashboardGroup")
961
945
  def dashboard_group(self) -> pulumi.Output[str]:
962
946
  """
963
- The ID of the dashboard group that contains the dashboard. If an ID is not provided during creation, the dashboard will
964
- be placed in a newly created dashboard group
947
+ The ID of the dashboard group that contains the dashboard.
965
948
  """
966
949
  return pulumi.get(self, "dashboard_group")
967
950
 
@@ -969,7 +952,7 @@ class Dashboard(pulumi.CustomResource):
969
952
  @pulumi.getter
970
953
  def description(self) -> pulumi.Output[Optional[str]]:
971
954
  """
972
- Description of the dashboard (Optional)
955
+ Description of the dashboard.
973
956
  """
974
957
  return pulumi.get(self, "description")
975
958
 
@@ -987,7 +970,7 @@ class Dashboard(pulumi.CustomResource):
987
970
  @pulumi.getter(name="endTime")
988
971
  def end_time(self) -> pulumi.Output[Optional[int]]:
989
972
  """
990
- Seconds since epoch to end the visualization
973
+ Seconds since epoch. Used for visualization.
991
974
  """
992
975
  return pulumi.get(self, "end_time")
993
976
 
@@ -995,7 +978,7 @@ class Dashboard(pulumi.CustomResource):
995
978
  @pulumi.getter(name="eventOverlays")
996
979
  def event_overlays(self) -> pulumi.Output[Optional[Sequence['outputs.DashboardEventOverlay']]]:
997
980
  """
998
- Event overlay to add to charts
981
+ Specify a list of event overlays to include in the dashboard. Note: These overlays correspond to the *suggested* event overlays specified in the web UI, and they're not automatically applied as active overlays. To set default active event overlays, use the `selected_event_overlay` property instead.
999
982
  """
1000
983
  return pulumi.get(self, "event_overlays")
1001
984
 
@@ -1003,7 +986,7 @@ class Dashboard(pulumi.CustomResource):
1003
986
  @pulumi.getter
1004
987
  def filters(self) -> pulumi.Output[Optional[Sequence['outputs.DashboardFilter']]]:
1005
988
  """
1006
- Filter to apply to each chart in the dashboard
989
+ Filter to apply to the charts when displaying the dashboard.
1007
990
  """
1008
991
  return pulumi.get(self, "filters")
1009
992
 
@@ -1011,8 +994,7 @@ class Dashboard(pulumi.CustomResource):
1011
994
  @pulumi.getter
1012
995
  def grids(self) -> pulumi.Output[Optional[Sequence['outputs.DashboardGrid']]]:
1013
996
  """
1014
- Grid dashboard layout. Charts listed will be placed in a grid by row with the same width and height. If a chart can't
1015
- fit in a row, it will be placed automatically in the next row
997
+ Grid dashboard layout. Charts listed will be placed in a grid by row with the same width and height. If a chart cannot fit in a row, it will be placed automatically in the next row.
1016
998
  """
1017
999
  return pulumi.get(self, "grids")
1018
1000
 
@@ -1020,20 +1002,23 @@ class Dashboard(pulumi.CustomResource):
1020
1002
  @pulumi.getter
1021
1003
  def name(self) -> pulumi.Output[str]:
1022
1004
  """
1023
- Name of the dashboard
1005
+ Name of the dashboard.
1024
1006
  """
1025
1007
  return pulumi.get(self, "name")
1026
1008
 
1027
1009
  @property
1028
1010
  @pulumi.getter
1029
1011
  def permissions(self) -> pulumi.Output['outputs.DashboardPermissions']:
1012
+ """
1013
+ [Permissions](https://docs.splunk.com/Observability/infrastructure/terms-concepts/permissions.html) Controls who can view and/or edit your dashboard. **Note:** This feature is not present in all accounts. Please contact support if you are unsure.
1014
+ """
1030
1015
  return pulumi.get(self, "permissions")
1031
1016
 
1032
1017
  @property
1033
1018
  @pulumi.getter(name="selectedEventOverlays")
1034
1019
  def selected_event_overlays(self) -> pulumi.Output[Optional[Sequence['outputs.DashboardSelectedEventOverlay']]]:
1035
1020
  """
1036
- Event overlay added to charts by default to charts
1021
+ Defines event overlays which are enabled by **default**. Any overlay specified here should have an accompanying entry in `event_overlay`, which are similar to the properties here.
1037
1022
  """
1038
1023
  return pulumi.get(self, "selected_event_overlays")
1039
1024
 
@@ -1041,7 +1026,7 @@ class Dashboard(pulumi.CustomResource):
1041
1026
  @pulumi.getter(name="startTime")
1042
1027
  def start_time(self) -> pulumi.Output[Optional[int]]:
1043
1028
  """
1044
- Seconds since epoch to start the visualization
1029
+ Seconds since epoch. Used for visualization.
1045
1030
  """
1046
1031
  return pulumi.get(self, "start_time")
1047
1032
 
@@ -1049,7 +1034,7 @@ class Dashboard(pulumi.CustomResource):
1049
1034
  @pulumi.getter
1050
1035
  def tags(self) -> pulumi.Output[Optional[Sequence[str]]]:
1051
1036
  """
1052
- Tags of the dashboard
1037
+ Tags of the dashboard.
1053
1038
  """
1054
1039
  return pulumi.get(self, "tags")
1055
1040
 
@@ -1057,7 +1042,7 @@ class Dashboard(pulumi.CustomResource):
1057
1042
  @pulumi.getter(name="timeRange")
1058
1043
  def time_range(self) -> pulumi.Output[Optional[str]]:
1059
1044
  """
1060
- From when to display data. Splunk Observability Cloud time syntax (e.g. -5m, -1h)
1045
+ The time range prior to now to visualize. Splunk Observability Cloud time syntax (e.g. `"-5m"`, `"-1h"`).
1061
1046
  """
1062
1047
  return pulumi.get(self, "time_range")
1063
1048
 
@@ -1065,7 +1050,7 @@ class Dashboard(pulumi.CustomResource):
1065
1050
  @pulumi.getter
1066
1051
  def url(self) -> pulumi.Output[str]:
1067
1052
  """
1068
- URL of the dashboard
1053
+ The URL of the dashboard.
1069
1054
  """
1070
1055
  return pulumi.get(self, "url")
1071
1056
 
@@ -1073,7 +1058,7 @@ class Dashboard(pulumi.CustomResource):
1073
1058
  @pulumi.getter
1074
1059
  def variables(self) -> pulumi.Output[Optional[Sequence['outputs.DashboardVariable']]]:
1075
1060
  """
1076
- Dashboard variable to apply to each chart in the dashboard
1061
+ Dashboard variable to apply to each chart in the dashboard.
1077
1062
  """
1078
1063
  return pulumi.get(self, "variables")
1079
1064