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 *
@@ -26,13 +31,13 @@ class DashboardGroupArgs:
26
31
  teams: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
27
32
  """
28
33
  The set of arguments for constructing a DashboardGroup resource.
29
- :param pulumi.Input[Sequence[pulumi.Input[str]]] authorized_writer_teams: Team IDs that have write access to this dashboard
30
- :param pulumi.Input[Sequence[pulumi.Input[str]]] authorized_writer_users: User IDs that have write access to this dashboard
31
- :param pulumi.Input[Sequence[pulumi.Input['DashboardGroupDashboardArgs']]] dashboards: Dashboard IDs that are members of this dashboard group. Also handles 'mirrored' dashboards.
32
- :param pulumi.Input[str] description: Description of the dashboard group
33
- :param pulumi.Input[str] name: Name of the dashboard group
34
- :param pulumi.Input[Sequence[pulumi.Input['DashboardGroupPermissionArgs']]] permissions: The custom access control list for this dashboard
35
- :param pulumi.Input[Sequence[pulumi.Input[str]]] teams: Team IDs to associate the dashboard group to
34
+ :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.
35
+ :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.
36
+ :param pulumi.Input[Sequence[pulumi.Input['DashboardGroupDashboardArgs']]] dashboards: [Mirrored dashboards](https://docs.splunk.com/observability/en/data-visualization/dashboards/dashboard-share-clone-mirror.html#mirror-dashboard) in this dashboard group. **Note:** This feature is not present in all accounts. Please contact support if you are unsure.
37
+ :param pulumi.Input[str] description: Description of the dashboard group.
38
+ :param pulumi.Input[str] name: Name of the dashboard group.
39
+ :param pulumi.Input[Sequence[pulumi.Input['DashboardGroupPermissionArgs']]] permissions: [Permissions](https://docs.splunk.com/Observability/infrastructure/terms-concepts/permissions.html) List of read and write permission configuration to specify which user, team, and organization can view and/or edit your dashboard group. **Note:** This feature is not present in all accounts. Please contact support if you are unsure.
40
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] teams: Team IDs to associate the dashboard group to.
36
41
  """
37
42
  if authorized_writer_teams is not None:
38
43
  warnings.warn("""Please use permissions field now""", DeprecationWarning)
@@ -59,13 +64,11 @@ class DashboardGroupArgs:
59
64
 
60
65
  @property
61
66
  @pulumi.getter(name="authorizedWriterTeams")
67
+ @_utilities.deprecated("""Please use permissions field now""")
62
68
  def authorized_writer_teams(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
63
69
  """
64
- Team IDs that have write access to this dashboard
70
+ 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.
65
71
  """
66
- warnings.warn("""Please use permissions field now""", DeprecationWarning)
67
- pulumi.log.warn("""authorized_writer_teams is deprecated: Please use permissions field now""")
68
-
69
72
  return pulumi.get(self, "authorized_writer_teams")
70
73
 
71
74
  @authorized_writer_teams.setter
@@ -74,13 +77,11 @@ class DashboardGroupArgs:
74
77
 
75
78
  @property
76
79
  @pulumi.getter(name="authorizedWriterUsers")
80
+ @_utilities.deprecated("""Please use permissions field now""")
77
81
  def authorized_writer_users(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
78
82
  """
79
- User IDs that have write access to this dashboard
83
+ 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.
80
84
  """
81
- warnings.warn("""Please use permissions field now""", DeprecationWarning)
82
- pulumi.log.warn("""authorized_writer_users is deprecated: Please use permissions field now""")
83
-
84
85
  return pulumi.get(self, "authorized_writer_users")
85
86
 
86
87
  @authorized_writer_users.setter
@@ -91,7 +92,7 @@ class DashboardGroupArgs:
91
92
  @pulumi.getter
92
93
  def dashboards(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['DashboardGroupDashboardArgs']]]]:
93
94
  """
94
- Dashboard IDs that are members of this dashboard group. Also handles 'mirrored' dashboards.
95
+ [Mirrored dashboards](https://docs.splunk.com/observability/en/data-visualization/dashboards/dashboard-share-clone-mirror.html#mirror-dashboard) in this dashboard group. **Note:** This feature is not present in all accounts. Please contact support if you are unsure.
95
96
  """
96
97
  return pulumi.get(self, "dashboards")
97
98
 
@@ -103,7 +104,7 @@ class DashboardGroupArgs:
103
104
  @pulumi.getter
104
105
  def description(self) -> Optional[pulumi.Input[str]]:
105
106
  """
106
- Description of the dashboard group
107
+ Description of the dashboard group.
107
108
  """
108
109
  return pulumi.get(self, "description")
109
110
 
@@ -124,7 +125,7 @@ class DashboardGroupArgs:
124
125
  @pulumi.getter
125
126
  def name(self) -> Optional[pulumi.Input[str]]:
126
127
  """
127
- Name of the dashboard group
128
+ Name of the dashboard group.
128
129
  """
129
130
  return pulumi.get(self, "name")
130
131
 
@@ -136,7 +137,7 @@ class DashboardGroupArgs:
136
137
  @pulumi.getter
137
138
  def permissions(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['DashboardGroupPermissionArgs']]]]:
138
139
  """
139
- The custom access control list for this dashboard
140
+ [Permissions](https://docs.splunk.com/Observability/infrastructure/terms-concepts/permissions.html) List of read and write permission configuration to specify which user, team, and organization can view and/or edit your dashboard group. **Note:** This feature is not present in all accounts. Please contact support if you are unsure.
140
141
  """
141
142
  return pulumi.get(self, "permissions")
142
143
 
@@ -148,7 +149,7 @@ class DashboardGroupArgs:
148
149
  @pulumi.getter
149
150
  def teams(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
150
151
  """
151
- Team IDs to associate the dashboard group to
152
+ Team IDs to associate the dashboard group to.
152
153
  """
153
154
  return pulumi.get(self, "teams")
154
155
 
@@ -170,13 +171,13 @@ class _DashboardGroupState:
170
171
  teams: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
171
172
  """
172
173
  Input properties used for looking up and filtering DashboardGroup resources.
173
- :param pulumi.Input[Sequence[pulumi.Input[str]]] authorized_writer_teams: Team IDs that have write access to this dashboard
174
- :param pulumi.Input[Sequence[pulumi.Input[str]]] authorized_writer_users: User IDs that have write access to this dashboard
175
- :param pulumi.Input[Sequence[pulumi.Input['DashboardGroupDashboardArgs']]] dashboards: Dashboard IDs that are members of this dashboard group. Also handles 'mirrored' dashboards.
176
- :param pulumi.Input[str] description: Description of the dashboard group
177
- :param pulumi.Input[str] name: Name of the dashboard group
178
- :param pulumi.Input[Sequence[pulumi.Input['DashboardGroupPermissionArgs']]] permissions: The custom access control list for this dashboard
179
- :param pulumi.Input[Sequence[pulumi.Input[str]]] teams: Team IDs to associate the dashboard group to
174
+ :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.
175
+ :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.
176
+ :param pulumi.Input[Sequence[pulumi.Input['DashboardGroupDashboardArgs']]] dashboards: [Mirrored dashboards](https://docs.splunk.com/observability/en/data-visualization/dashboards/dashboard-share-clone-mirror.html#mirror-dashboard) in this dashboard group. **Note:** This feature is not present in all accounts. Please contact support if you are unsure.
177
+ :param pulumi.Input[str] description: Description of the dashboard group.
178
+ :param pulumi.Input[str] name: Name of the dashboard group.
179
+ :param pulumi.Input[Sequence[pulumi.Input['DashboardGroupPermissionArgs']]] permissions: [Permissions](https://docs.splunk.com/Observability/infrastructure/terms-concepts/permissions.html) List of read and write permission configuration to specify which user, team, and organization can view and/or edit your dashboard group. **Note:** This feature is not present in all accounts. Please contact support if you are unsure.
180
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] teams: Team IDs to associate the dashboard group to.
180
181
  """
181
182
  if authorized_writer_teams is not None:
182
183
  warnings.warn("""Please use permissions field now""", DeprecationWarning)
@@ -203,13 +204,11 @@ class _DashboardGroupState:
203
204
 
204
205
  @property
205
206
  @pulumi.getter(name="authorizedWriterTeams")
207
+ @_utilities.deprecated("""Please use permissions field now""")
206
208
  def authorized_writer_teams(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
207
209
  """
208
- Team IDs that have write access to this dashboard
210
+ 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.
209
211
  """
210
- warnings.warn("""Please use permissions field now""", DeprecationWarning)
211
- pulumi.log.warn("""authorized_writer_teams is deprecated: Please use permissions field now""")
212
-
213
212
  return pulumi.get(self, "authorized_writer_teams")
214
213
 
215
214
  @authorized_writer_teams.setter
@@ -218,13 +217,11 @@ class _DashboardGroupState:
218
217
 
219
218
  @property
220
219
  @pulumi.getter(name="authorizedWriterUsers")
220
+ @_utilities.deprecated("""Please use permissions field now""")
221
221
  def authorized_writer_users(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
222
222
  """
223
- User IDs that have write access to this dashboard
223
+ 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.
224
224
  """
225
- warnings.warn("""Please use permissions field now""", DeprecationWarning)
226
- pulumi.log.warn("""authorized_writer_users is deprecated: Please use permissions field now""")
227
-
228
225
  return pulumi.get(self, "authorized_writer_users")
229
226
 
230
227
  @authorized_writer_users.setter
@@ -235,7 +232,7 @@ class _DashboardGroupState:
235
232
  @pulumi.getter
236
233
  def dashboards(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['DashboardGroupDashboardArgs']]]]:
237
234
  """
238
- Dashboard IDs that are members of this dashboard group. Also handles 'mirrored' dashboards.
235
+ [Mirrored dashboards](https://docs.splunk.com/observability/en/data-visualization/dashboards/dashboard-share-clone-mirror.html#mirror-dashboard) in this dashboard group. **Note:** This feature is not present in all accounts. Please contact support if you are unsure.
239
236
  """
240
237
  return pulumi.get(self, "dashboards")
241
238
 
@@ -247,7 +244,7 @@ class _DashboardGroupState:
247
244
  @pulumi.getter
248
245
  def description(self) -> Optional[pulumi.Input[str]]:
249
246
  """
250
- Description of the dashboard group
247
+ Description of the dashboard group.
251
248
  """
252
249
  return pulumi.get(self, "description")
253
250
 
@@ -268,7 +265,7 @@ class _DashboardGroupState:
268
265
  @pulumi.getter
269
266
  def name(self) -> Optional[pulumi.Input[str]]:
270
267
  """
271
- Name of the dashboard group
268
+ Name of the dashboard group.
272
269
  """
273
270
  return pulumi.get(self, "name")
274
271
 
@@ -280,7 +277,7 @@ class _DashboardGroupState:
280
277
  @pulumi.getter
281
278
  def permissions(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['DashboardGroupPermissionArgs']]]]:
282
279
  """
283
- The custom access control list for this dashboard
280
+ [Permissions](https://docs.splunk.com/Observability/infrastructure/terms-concepts/permissions.html) List of read and write permission configuration to specify which user, team, and organization can view and/or edit your dashboard group. **Note:** This feature is not present in all accounts. Please contact support if you are unsure.
284
281
  """
285
282
  return pulumi.get(self, "permissions")
286
283
 
@@ -292,7 +289,7 @@ class _DashboardGroupState:
292
289
  @pulumi.getter
293
290
  def teams(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
294
291
  """
295
- Team IDs to associate the dashboard group to
292
+ Team IDs to associate the dashboard group to.
296
293
  """
297
294
  return pulumi.get(self, "teams")
298
295
 
@@ -308,11 +305,11 @@ class DashboardGroup(pulumi.CustomResource):
308
305
  opts: Optional[pulumi.ResourceOptions] = None,
309
306
  authorized_writer_teams: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
310
307
  authorized_writer_users: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
311
- dashboards: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['DashboardGroupDashboardArgs']]]]] = None,
308
+ dashboards: Optional[pulumi.Input[Sequence[pulumi.Input[Union['DashboardGroupDashboardArgs', 'DashboardGroupDashboardArgsDict']]]]] = None,
312
309
  description: Optional[pulumi.Input[str]] = None,
313
- import_qualifiers: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['DashboardGroupImportQualifierArgs']]]]] = None,
310
+ import_qualifiers: Optional[pulumi.Input[Sequence[pulumi.Input[Union['DashboardGroupImportQualifierArgs', 'DashboardGroupImportQualifierArgsDict']]]]] = None,
314
311
  name: Optional[pulumi.Input[str]] = None,
315
- permissions: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['DashboardGroupPermissionArgs']]]]] = None,
312
+ permissions: Optional[pulumi.Input[Sequence[pulumi.Input[Union['DashboardGroupPermissionArgs', 'DashboardGroupPermissionArgsDict']]]]] = None,
316
313
  teams: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
317
314
  __props__=None):
318
315
  """
@@ -329,8 +326,9 @@ class DashboardGroup(pulumi.CustomResource):
329
326
  import pulumi_signalfx as signalfx
330
327
 
331
328
  mydashboardgroup0 = signalfx.DashboardGroup("mydashboardgroup0",
329
+ name="My team dashboard group",
332
330
  description="Cool dashboard group",
333
- authorized_writer_teams=[signalfx_team["mycoolteam"]["id"]],
331
+ authorized_writer_teams=[mycoolteam["id"]],
334
332
  authorized_writer_users=["abc123"])
335
333
  ```
336
334
 
@@ -340,22 +338,23 @@ class DashboardGroup(pulumi.CustomResource):
340
338
  import pulumi
341
339
  import pulumi_signalfx as signalfx
342
340
 
343
- mydashboardgroup_withpermissions = signalfx.DashboardGroup("mydashboardgroupWithpermissions",
341
+ mydashboardgroup_withpermissions = signalfx.DashboardGroup("mydashboardgroup_withpermissions",
342
+ name="My team dashboard group",
344
343
  description="Cool dashboard group",
345
344
  permissions=[
346
- signalfx.DashboardGroupPermissionArgs(
347
- actions=["READ"],
348
- principal_id="abc123",
349
- principal_type="ORG",
350
- ),
351
- signalfx.DashboardGroupPermissionArgs(
352
- actions=[
345
+ {
346
+ "principal_id": "abc123",
347
+ "principal_type": "ORG",
348
+ "actions": ["READ"],
349
+ },
350
+ {
351
+ "principal_id": "abc456",
352
+ "principal_type": "USER",
353
+ "actions": [
353
354
  "READ",
354
355
  "WRITE",
355
356
  ],
356
- principal_id="abc456",
357
- principal_type="USER",
358
- ),
357
+ },
359
358
  ])
360
359
  ```
361
360
 
@@ -365,70 +364,38 @@ class DashboardGroup(pulumi.CustomResource):
365
364
  import pulumi
366
365
  import pulumi_signalfx as signalfx
367
366
 
368
- mydashboardgroup_withmirrors = signalfx.DashboardGroup("mydashboardgroupWithmirrors",
367
+ mydashboardgroup_withmirrors = signalfx.DashboardGroup("mydashboardgroup_withmirrors",
368
+ name="My team dashboard group",
369
369
  description="Cool dashboard group",
370
- dashboards=[signalfx.DashboardGroupDashboardArgs(
371
- dashboard_id=signalfx_dashboard["gc_dashboard"]["id"],
372
- name_override="GC For My Service",
373
- description_override="Garbage Collection dashboard maintained by JVM team",
374
- filter_overrides=[signalfx.DashboardGroupDashboardFilterOverrideArgs(
375
- property="service",
376
- values=["myservice"],
377
- negated=False,
378
- )],
379
- variable_overrides=[signalfx.DashboardGroupDashboardVariableOverrideArgs(
380
- property="region",
381
- values=["us-west1"],
382
- values_suggesteds=[
370
+ dashboards=[{
371
+ "dashboard_id": gc_dashboard["id"],
372
+ "name_override": "GC For My Service",
373
+ "description_override": "Garbage Collection dashboard maintained by JVM team",
374
+ "filter_overrides": [{
375
+ "property": "service",
376
+ "values": ["myservice"],
377
+ "negated": False,
378
+ }],
379
+ "variable_overrides": [{
380
+ "property": "region",
381
+ "values": ["us-west1"],
382
+ "values_suggesteds": [
383
383
  "us-west-1",
384
384
  "us-east-1",
385
385
  ],
386
- )],
387
- )])
386
+ }],
387
+ }])
388
388
  ```
389
389
 
390
- ## Arguments
391
-
392
- The following arguments are supported in the resource block:
393
-
394
- * `name` - (Required) Name of the dashboard group.
395
- * `description` - (Required) Description of the dashboard group.
396
- * `teams` - (Optional) Team IDs to associate the dashboard group to.
397
- * `authorized_writer_teams` - (Optional) 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.
398
- * `authorized_writer_users` - (Optional) 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.
399
- * `permissions` - (Optional) [Permissions](https://docs.splunk.com/Observability/infrastructure/terms-concepts/permissions.html) List of read and write permission configuration to specify which user, team, and organization can view and/or edit your dashboard group. **Note:** This feature is not present in all accounts. Please contact support if you are unsure.
400
- * `principal_id` - (Required) ID of the user, team, or organization for which you're granting permissions.
401
- * `principal_type` - (Required) Clarify whether this permission configuration is for a user, a team, or an organization. Value can be one of "USER", "TEAM", or "ORG".
402
- * `actions` - (Required) Action the user, team, or organization can take with the dashboard group. List of values (value can be "READ" or "WRITE").
403
- * `dashboard` - (Optional) [Mirrored dashboards](https://docs.splunk.com/observability/en/data-visualization/dashboards/dashboard-share-clone-mirror.html#mirror-dashboard) in this dashboard group. **Note:** This feature is not present in all accounts. Please contact support if you are unsure.
404
- * `dashboard_id` - (Required) The dashboard id to mirror
405
- * `name_override` - (Optional) The name that will override the original dashboards's name.
406
- * `description_override` - (Optional) The description that will override the original dashboards's description.
407
- * `filter_override` - (Optional) The description that will override the original dashboards's description.
408
- * `property` - (Required) The name of a dimension to filter against.
409
- * `values` - (Required) A list of values to be used with the `property`, they will be combined via `OR`.
410
- * `negated` - (Optional) If true, only data that does not match the specified value of the specified property appear in the event overlay. Defaults to `false`.
411
- * `filter_override` - (Optional) The description that will override the original dashboards's description.
412
- * `property` - (Required) A metric time series dimension or property name.
413
- * `values` - (Optional) (Optional) List of of strings (which will be treated as an OR filter on the property).
414
- * `values_suggested` - (Optional) A list of strings of suggested values for this variable; these suggestions will receive priority when values are autosuggested for this variable.
415
-
416
- ## Attributes
417
-
418
- In a addition to all arguments above, the following attributes are exported:
419
-
420
- * `id` - The ID of the integration.
421
- * `dashboard.config_id` - The ID of the association between the dashboard group and the dashboard
422
-
423
390
  :param str resource_name: The name of the resource.
424
391
  :param pulumi.ResourceOptions opts: Options for the resource.
425
- :param pulumi.Input[Sequence[pulumi.Input[str]]] authorized_writer_teams: Team IDs that have write access to this dashboard
426
- :param pulumi.Input[Sequence[pulumi.Input[str]]] authorized_writer_users: User IDs that have write access to this dashboard
427
- :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['DashboardGroupDashboardArgs']]]] dashboards: Dashboard IDs that are members of this dashboard group. Also handles 'mirrored' dashboards.
428
- :param pulumi.Input[str] description: Description of the dashboard group
429
- :param pulumi.Input[str] name: Name of the dashboard group
430
- :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['DashboardGroupPermissionArgs']]]] permissions: The custom access control list for this dashboard
431
- :param pulumi.Input[Sequence[pulumi.Input[str]]] teams: Team IDs to associate the dashboard group to
392
+ :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.
393
+ :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.
394
+ :param pulumi.Input[Sequence[pulumi.Input[Union['DashboardGroupDashboardArgs', 'DashboardGroupDashboardArgsDict']]]] dashboards: [Mirrored dashboards](https://docs.splunk.com/observability/en/data-visualization/dashboards/dashboard-share-clone-mirror.html#mirror-dashboard) in this dashboard group. **Note:** This feature is not present in all accounts. Please contact support if you are unsure.
395
+ :param pulumi.Input[str] description: Description of the dashboard group.
396
+ :param pulumi.Input[str] name: Name of the dashboard group.
397
+ :param pulumi.Input[Sequence[pulumi.Input[Union['DashboardGroupPermissionArgs', 'DashboardGroupPermissionArgsDict']]]] permissions: [Permissions](https://docs.splunk.com/Observability/infrastructure/terms-concepts/permissions.html) List of read and write permission configuration to specify which user, team, and organization can view and/or edit your dashboard group. **Note:** This feature is not present in all accounts. Please contact support if you are unsure.
398
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] teams: Team IDs to associate the dashboard group to.
432
399
  """
433
400
  ...
434
401
  @overload
@@ -450,8 +417,9 @@ class DashboardGroup(pulumi.CustomResource):
450
417
  import pulumi_signalfx as signalfx
451
418
 
452
419
  mydashboardgroup0 = signalfx.DashboardGroup("mydashboardgroup0",
420
+ name="My team dashboard group",
453
421
  description="Cool dashboard group",
454
- authorized_writer_teams=[signalfx_team["mycoolteam"]["id"]],
422
+ authorized_writer_teams=[mycoolteam["id"]],
455
423
  authorized_writer_users=["abc123"])
456
424
  ```
457
425
 
@@ -461,22 +429,23 @@ class DashboardGroup(pulumi.CustomResource):
461
429
  import pulumi
462
430
  import pulumi_signalfx as signalfx
463
431
 
464
- mydashboardgroup_withpermissions = signalfx.DashboardGroup("mydashboardgroupWithpermissions",
432
+ mydashboardgroup_withpermissions = signalfx.DashboardGroup("mydashboardgroup_withpermissions",
433
+ name="My team dashboard group",
465
434
  description="Cool dashboard group",
466
435
  permissions=[
467
- signalfx.DashboardGroupPermissionArgs(
468
- actions=["READ"],
469
- principal_id="abc123",
470
- principal_type="ORG",
471
- ),
472
- signalfx.DashboardGroupPermissionArgs(
473
- actions=[
436
+ {
437
+ "principal_id": "abc123",
438
+ "principal_type": "ORG",
439
+ "actions": ["READ"],
440
+ },
441
+ {
442
+ "principal_id": "abc456",
443
+ "principal_type": "USER",
444
+ "actions": [
474
445
  "READ",
475
446
  "WRITE",
476
447
  ],
477
- principal_id="abc456",
478
- principal_type="USER",
479
- ),
448
+ },
480
449
  ])
481
450
  ```
482
451
 
@@ -486,61 +455,29 @@ class DashboardGroup(pulumi.CustomResource):
486
455
  import pulumi
487
456
  import pulumi_signalfx as signalfx
488
457
 
489
- mydashboardgroup_withmirrors = signalfx.DashboardGroup("mydashboardgroupWithmirrors",
458
+ mydashboardgroup_withmirrors = signalfx.DashboardGroup("mydashboardgroup_withmirrors",
459
+ name="My team dashboard group",
490
460
  description="Cool dashboard group",
491
- dashboards=[signalfx.DashboardGroupDashboardArgs(
492
- dashboard_id=signalfx_dashboard["gc_dashboard"]["id"],
493
- name_override="GC For My Service",
494
- description_override="Garbage Collection dashboard maintained by JVM team",
495
- filter_overrides=[signalfx.DashboardGroupDashboardFilterOverrideArgs(
496
- property="service",
497
- values=["myservice"],
498
- negated=False,
499
- )],
500
- variable_overrides=[signalfx.DashboardGroupDashboardVariableOverrideArgs(
501
- property="region",
502
- values=["us-west1"],
503
- values_suggesteds=[
461
+ dashboards=[{
462
+ "dashboard_id": gc_dashboard["id"],
463
+ "name_override": "GC For My Service",
464
+ "description_override": "Garbage Collection dashboard maintained by JVM team",
465
+ "filter_overrides": [{
466
+ "property": "service",
467
+ "values": ["myservice"],
468
+ "negated": False,
469
+ }],
470
+ "variable_overrides": [{
471
+ "property": "region",
472
+ "values": ["us-west1"],
473
+ "values_suggesteds": [
504
474
  "us-west-1",
505
475
  "us-east-1",
506
476
  ],
507
- )],
508
- )])
477
+ }],
478
+ }])
509
479
  ```
510
480
 
511
- ## Arguments
512
-
513
- The following arguments are supported in the resource block:
514
-
515
- * `name` - (Required) Name of the dashboard group.
516
- * `description` - (Required) Description of the dashboard group.
517
- * `teams` - (Optional) Team IDs to associate the dashboard group to.
518
- * `authorized_writer_teams` - (Optional) 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.
519
- * `authorized_writer_users` - (Optional) 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.
520
- * `permissions` - (Optional) [Permissions](https://docs.splunk.com/Observability/infrastructure/terms-concepts/permissions.html) List of read and write permission configuration to specify which user, team, and organization can view and/or edit your dashboard group. **Note:** This feature is not present in all accounts. Please contact support if you are unsure.
521
- * `principal_id` - (Required) ID of the user, team, or organization for which you're granting permissions.
522
- * `principal_type` - (Required) Clarify whether this permission configuration is for a user, a team, or an organization. Value can be one of "USER", "TEAM", or "ORG".
523
- * `actions` - (Required) Action the user, team, or organization can take with the dashboard group. List of values (value can be "READ" or "WRITE").
524
- * `dashboard` - (Optional) [Mirrored dashboards](https://docs.splunk.com/observability/en/data-visualization/dashboards/dashboard-share-clone-mirror.html#mirror-dashboard) in this dashboard group. **Note:** This feature is not present in all accounts. Please contact support if you are unsure.
525
- * `dashboard_id` - (Required) The dashboard id to mirror
526
- * `name_override` - (Optional) The name that will override the original dashboards's name.
527
- * `description_override` - (Optional) The description that will override the original dashboards's description.
528
- * `filter_override` - (Optional) The description that will override the original dashboards's description.
529
- * `property` - (Required) The name of a dimension to filter against.
530
- * `values` - (Required) A list of values to be used with the `property`, they will be combined via `OR`.
531
- * `negated` - (Optional) If true, only data that does not match the specified value of the specified property appear in the event overlay. Defaults to `false`.
532
- * `filter_override` - (Optional) The description that will override the original dashboards's description.
533
- * `property` - (Required) A metric time series dimension or property name.
534
- * `values` - (Optional) (Optional) List of of strings (which will be treated as an OR filter on the property).
535
- * `values_suggested` - (Optional) A list of strings of suggested values for this variable; these suggestions will receive priority when values are autosuggested for this variable.
536
-
537
- ## Attributes
538
-
539
- In a addition to all arguments above, the following attributes are exported:
540
-
541
- * `id` - The ID of the integration.
542
- * `dashboard.config_id` - The ID of the association between the dashboard group and the dashboard
543
-
544
481
  :param str resource_name: The name of the resource.
545
482
  :param DashboardGroupArgs args: The arguments to use to populate this resource's properties.
546
483
  :param pulumi.ResourceOptions opts: Options for the resource.
@@ -558,11 +495,11 @@ class DashboardGroup(pulumi.CustomResource):
558
495
  opts: Optional[pulumi.ResourceOptions] = None,
559
496
  authorized_writer_teams: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
560
497
  authorized_writer_users: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
561
- dashboards: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['DashboardGroupDashboardArgs']]]]] = None,
498
+ dashboards: Optional[pulumi.Input[Sequence[pulumi.Input[Union['DashboardGroupDashboardArgs', 'DashboardGroupDashboardArgsDict']]]]] = None,
562
499
  description: Optional[pulumi.Input[str]] = None,
563
- import_qualifiers: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['DashboardGroupImportQualifierArgs']]]]] = None,
500
+ import_qualifiers: Optional[pulumi.Input[Sequence[pulumi.Input[Union['DashboardGroupImportQualifierArgs', 'DashboardGroupImportQualifierArgsDict']]]]] = None,
564
501
  name: Optional[pulumi.Input[str]] = None,
565
- permissions: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['DashboardGroupPermissionArgs']]]]] = None,
502
+ permissions: Optional[pulumi.Input[Sequence[pulumi.Input[Union['DashboardGroupPermissionArgs', 'DashboardGroupPermissionArgsDict']]]]] = None,
566
503
  teams: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
567
504
  __props__=None):
568
505
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
@@ -593,11 +530,11 @@ class DashboardGroup(pulumi.CustomResource):
593
530
  opts: Optional[pulumi.ResourceOptions] = None,
594
531
  authorized_writer_teams: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
595
532
  authorized_writer_users: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
596
- dashboards: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['DashboardGroupDashboardArgs']]]]] = None,
533
+ dashboards: Optional[pulumi.Input[Sequence[pulumi.Input[Union['DashboardGroupDashboardArgs', 'DashboardGroupDashboardArgsDict']]]]] = None,
597
534
  description: Optional[pulumi.Input[str]] = None,
598
- import_qualifiers: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['DashboardGroupImportQualifierArgs']]]]] = None,
535
+ import_qualifiers: Optional[pulumi.Input[Sequence[pulumi.Input[Union['DashboardGroupImportQualifierArgs', 'DashboardGroupImportQualifierArgsDict']]]]] = None,
599
536
  name: Optional[pulumi.Input[str]] = None,
600
- permissions: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['DashboardGroupPermissionArgs']]]]] = None,
537
+ permissions: Optional[pulumi.Input[Sequence[pulumi.Input[Union['DashboardGroupPermissionArgs', 'DashboardGroupPermissionArgsDict']]]]] = None,
601
538
  teams: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None) -> 'DashboardGroup':
602
539
  """
603
540
  Get an existing DashboardGroup resource's state with the given name, id, and optional extra
@@ -606,13 +543,13 @@ class DashboardGroup(pulumi.CustomResource):
606
543
  :param str resource_name: The unique name of the resulting resource.
607
544
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
608
545
  :param pulumi.ResourceOptions opts: Options for the resource.
609
- :param pulumi.Input[Sequence[pulumi.Input[str]]] authorized_writer_teams: Team IDs that have write access to this dashboard
610
- :param pulumi.Input[Sequence[pulumi.Input[str]]] authorized_writer_users: User IDs that have write access to this dashboard
611
- :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['DashboardGroupDashboardArgs']]]] dashboards: Dashboard IDs that are members of this dashboard group. Also handles 'mirrored' dashboards.
612
- :param pulumi.Input[str] description: Description of the dashboard group
613
- :param pulumi.Input[str] name: Name of the dashboard group
614
- :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['DashboardGroupPermissionArgs']]]] permissions: The custom access control list for this dashboard
615
- :param pulumi.Input[Sequence[pulumi.Input[str]]] teams: Team IDs to associate the dashboard group to
546
+ :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.
547
+ :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.
548
+ :param pulumi.Input[Sequence[pulumi.Input[Union['DashboardGroupDashboardArgs', 'DashboardGroupDashboardArgsDict']]]] dashboards: [Mirrored dashboards](https://docs.splunk.com/observability/en/data-visualization/dashboards/dashboard-share-clone-mirror.html#mirror-dashboard) in this dashboard group. **Note:** This feature is not present in all accounts. Please contact support if you are unsure.
549
+ :param pulumi.Input[str] description: Description of the dashboard group.
550
+ :param pulumi.Input[str] name: Name of the dashboard group.
551
+ :param pulumi.Input[Sequence[pulumi.Input[Union['DashboardGroupPermissionArgs', 'DashboardGroupPermissionArgsDict']]]] permissions: [Permissions](https://docs.splunk.com/Observability/infrastructure/terms-concepts/permissions.html) List of read and write permission configuration to specify which user, team, and organization can view and/or edit your dashboard group. **Note:** This feature is not present in all accounts. Please contact support if you are unsure.
552
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] teams: Team IDs to associate the dashboard group to.
616
553
  """
617
554
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
618
555
 
@@ -630,31 +567,27 @@ class DashboardGroup(pulumi.CustomResource):
630
567
 
631
568
  @property
632
569
  @pulumi.getter(name="authorizedWriterTeams")
570
+ @_utilities.deprecated("""Please use permissions field now""")
633
571
  def authorized_writer_teams(self) -> pulumi.Output[Optional[Sequence[str]]]:
634
572
  """
635
- Team IDs that have write access to this dashboard
573
+ 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.
636
574
  """
637
- warnings.warn("""Please use permissions field now""", DeprecationWarning)
638
- pulumi.log.warn("""authorized_writer_teams is deprecated: Please use permissions field now""")
639
-
640
575
  return pulumi.get(self, "authorized_writer_teams")
641
576
 
642
577
  @property
643
578
  @pulumi.getter(name="authorizedWriterUsers")
579
+ @_utilities.deprecated("""Please use permissions field now""")
644
580
  def authorized_writer_users(self) -> pulumi.Output[Optional[Sequence[str]]]:
645
581
  """
646
- User IDs that have write access to this dashboard
582
+ 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.
647
583
  """
648
- warnings.warn("""Please use permissions field now""", DeprecationWarning)
649
- pulumi.log.warn("""authorized_writer_users is deprecated: Please use permissions field now""")
650
-
651
584
  return pulumi.get(self, "authorized_writer_users")
652
585
 
653
586
  @property
654
587
  @pulumi.getter
655
588
  def dashboards(self) -> pulumi.Output[Optional[Sequence['outputs.DashboardGroupDashboard']]]:
656
589
  """
657
- Dashboard IDs that are members of this dashboard group. Also handles 'mirrored' dashboards.
590
+ [Mirrored dashboards](https://docs.splunk.com/observability/en/data-visualization/dashboards/dashboard-share-clone-mirror.html#mirror-dashboard) in this dashboard group. **Note:** This feature is not present in all accounts. Please contact support if you are unsure.
658
591
  """
659
592
  return pulumi.get(self, "dashboards")
660
593
 
@@ -662,7 +595,7 @@ class DashboardGroup(pulumi.CustomResource):
662
595
  @pulumi.getter
663
596
  def description(self) -> pulumi.Output[Optional[str]]:
664
597
  """
665
- Description of the dashboard group
598
+ Description of the dashboard group.
666
599
  """
667
600
  return pulumi.get(self, "description")
668
601
 
@@ -675,7 +608,7 @@ class DashboardGroup(pulumi.CustomResource):
675
608
  @pulumi.getter
676
609
  def name(self) -> pulumi.Output[str]:
677
610
  """
678
- Name of the dashboard group
611
+ Name of the dashboard group.
679
612
  """
680
613
  return pulumi.get(self, "name")
681
614
 
@@ -683,7 +616,7 @@ class DashboardGroup(pulumi.CustomResource):
683
616
  @pulumi.getter
684
617
  def permissions(self) -> pulumi.Output[Sequence['outputs.DashboardGroupPermission']]:
685
618
  """
686
- The custom access control list for this dashboard
619
+ [Permissions](https://docs.splunk.com/Observability/infrastructure/terms-concepts/permissions.html) List of read and write permission configuration to specify which user, team, and organization can view and/or edit your dashboard group. **Note:** This feature is not present in all accounts. Please contact support if you are unsure.
687
620
  """
688
621
  return pulumi.get(self, "permissions")
689
622
 
@@ -691,7 +624,7 @@ class DashboardGroup(pulumi.CustomResource):
691
624
  @pulumi.getter
692
625
  def teams(self) -> pulumi.Output[Optional[Sequence[str]]]:
693
626
  """
694
- Team IDs to associate the dashboard group to
627
+ Team IDs to associate the dashboard group to.
695
628
  """
696
629
  return pulumi.get(self, "teams")
697
630