@pulumi/signalfx 7.0.1 → 7.0.2

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 (96) hide show
  1. package/alertMutingRule.d.ts +37 -19
  2. package/alertMutingRule.js +22 -4
  3. package/alertMutingRule.js.map +1 -1
  4. package/aws/externalIntegration.d.ts +23 -11
  5. package/aws/externalIntegration.js +16 -4
  6. package/aws/externalIntegration.js.map +1 -1
  7. package/aws/integration.d.ts +141 -72
  8. package/aws/integration.js +41 -4
  9. package/aws/integration.js.map +1 -1
  10. package/aws/tokenIntegration.d.ts +18 -7
  11. package/aws/tokenIntegration.js +13 -2
  12. package/aws/tokenIntegration.js.map +1 -1
  13. package/azure/integration.d.ts +101 -45
  14. package/azure/integration.js +29 -3
  15. package/azure/integration.js.map +1 -1
  16. package/config/vars.d.ts +3 -3
  17. package/dashboard.d.ts +62 -62
  18. package/dashboardGroup.d.ts +62 -27
  19. package/dashboardGroup.js +41 -6
  20. package/dashboardGroup.js.map +1 -1
  21. package/dataLink.d.ts +52 -18
  22. package/dataLink.js +31 -3
  23. package/dataLink.js.map +1 -1
  24. package/detector.d.ts +133 -70
  25. package/detector.js +70 -15
  26. package/detector.js.map +1 -1
  27. package/eventFeedChart.d.ts +38 -20
  28. package/eventFeedChart.js +18 -0
  29. package/eventFeedChart.js.map +1 -1
  30. package/gcp/integration.d.ts +64 -33
  31. package/gcp/integration.js +22 -3
  32. package/gcp/integration.js.map +1 -1
  33. package/getDimensionValues.d.ts +18 -2
  34. package/getDimensionValues.js +18 -2
  35. package/getDimensionValues.js.map +1 -1
  36. package/heatmapChart.d.ts +80 -46
  37. package/heatmapChart.js +36 -2
  38. package/heatmapChart.js.map +1 -1
  39. package/jira/integration.d.ts +51 -24
  40. package/jira/integration.js +24 -3
  41. package/jira/integration.js.map +1 -1
  42. package/listChart.d.ts +111 -64
  43. package/listChart.js +46 -2
  44. package/listChart.js.map +1 -1
  45. package/log/timeline.d.ts +44 -24
  46. package/log/timeline.js +21 -1
  47. package/log/timeline.js.map +1 -1
  48. package/log/view.d.ts +54 -31
  49. package/log/view.js +25 -2
  50. package/log/view.js.map +1 -1
  51. package/metricRuleset.d.ts +33 -11
  52. package/metricRuleset.js +24 -2
  53. package/metricRuleset.js.map +1 -1
  54. package/opsgenie/integration.d.ts +28 -15
  55. package/opsgenie/integration.js +16 -3
  56. package/opsgenie/integration.js.map +1 -1
  57. package/orgToken.d.ts +50 -39
  58. package/orgToken.js +32 -3
  59. package/orgToken.js.map +1 -1
  60. package/package.json +1 -1
  61. package/pagerduty/getIntegration.d.ts +22 -14
  62. package/pagerduty/getIntegration.js +22 -2
  63. package/pagerduty/getIntegration.js.map +1 -1
  64. package/pagerduty/integration.d.ts +23 -12
  65. package/pagerduty/integration.js +14 -3
  66. package/pagerduty/integration.js.map +1 -1
  67. package/provider.d.ts +6 -6
  68. package/servicenow/integration.d.ts +46 -17
  69. package/servicenow/integration.js +19 -2
  70. package/servicenow/integration.js.map +1 -1
  71. package/singleValueChart.d.ts +74 -39
  72. package/singleValueChart.js +36 -1
  73. package/singleValueChart.js.map +1 -1
  74. package/slack/integration.d.ts +24 -12
  75. package/slack/integration.js +15 -3
  76. package/slack/integration.js.map +1 -1
  77. package/tableChart.d.ts +32 -16
  78. package/tableChart.js +18 -2
  79. package/tableChart.js.map +1 -1
  80. package/team.d.ts +54 -33
  81. package/team.js +25 -4
  82. package/team.js.map +1 -1
  83. package/textChart.d.ts +27 -12
  84. package/textChart.js +16 -1
  85. package/textChart.js.map +1 -1
  86. package/timeChart.d.ts +148 -94
  87. package/timeChart.js +68 -2
  88. package/timeChart.js.map +1 -1
  89. package/types/input.d.ts +0 -577
  90. package/types/output.d.ts +0 -577
  91. package/victorops/integration.d.ts +24 -12
  92. package/victorops/integration.js +15 -3
  93. package/victorops/integration.js.map +1 -1
  94. package/webhookIntegration.d.ts +31 -15
  95. package/webhookIntegration.js +19 -3
  96. package/webhookIntegration.js.map +1 -1
package/types/input.d.ts CHANGED
@@ -1,177 +1,63 @@
1
1
  import * as pulumi from "@pulumi/pulumi";
2
2
  import * as inputs from "../types/input";
3
3
  export interface AlertMutingRuleFilter {
4
- /**
5
- * Determines if this is a "not" filter. Defaults to `false`.
6
- */
7
4
  negated?: pulumi.Input<boolean>;
8
- /**
9
- * The property to filter.
10
- */
11
5
  property: pulumi.Input<string>;
12
- /**
13
- * The property value to filter.
14
- */
15
6
  propertyValue: pulumi.Input<string>;
16
7
  }
17
8
  export interface DashboardChart {
18
- /**
19
- * ID of the chart to display.
20
- */
21
9
  chartId: pulumi.Input<string>;
22
- /**
23
- * Column number for the layout.
24
- */
25
10
  column?: pulumi.Input<number>;
26
- /**
27
- * How many rows every chart should take up (greater than or equal to 1). 1 by default.
28
- */
29
11
  height?: pulumi.Input<number>;
30
- /**
31
- * The row to show the chart in (zero-based); if `height > 1`, this value represents the topmost row of the chart (greater than or equal to `0`).
32
- */
33
12
  row?: pulumi.Input<number>;
34
- /**
35
- * How many columns (out of a total of `12`) every chart should take up (between `1` and `12`). `12` by default.
36
- */
37
13
  width?: pulumi.Input<number>;
38
14
  }
39
15
  export interface DashboardColumn {
40
- /**
41
- * List of IDs of the charts to display.
42
- */
43
16
  chartIds: pulumi.Input<pulumi.Input<string>[]>;
44
- /**
45
- * Column number for the layout.
46
- */
47
17
  column?: pulumi.Input<number>;
48
- /**
49
- * How many rows every chart should take up (greater than or equal to 1). 1 by default.
50
- */
51
18
  height?: pulumi.Input<number>;
52
- /**
53
- * How many columns (out of a total of `12`) every chart should take up (between `1` and `12`). `12` by default.
54
- */
55
19
  width?: pulumi.Input<number>;
56
20
  }
57
21
  export interface DashboardEventOverlay {
58
- /**
59
- * Color to use : gray, blue, azure, navy, brown, orange, yellow, iris, magenta, pink, purple, violet, lilac, emerald, green, aquamarine.
60
- */
61
22
  color?: pulumi.Input<string>;
62
- /**
63
- * Text shown in the dropdown when selecting this overlay from the menu.
64
- */
65
23
  label?: pulumi.Input<string>;
66
- /**
67
- * Show a vertical line for the event. `false` by default.
68
- */
69
24
  line?: pulumi.Input<boolean>;
70
- /**
71
- * Search term used to choose the events shown in the overlay.
72
- */
73
25
  signal: pulumi.Input<string>;
74
- /**
75
- * Each element specifies a filter to use against the signal specified in the `signal`.
76
- */
77
26
  sources?: pulumi.Input<pulumi.Input<inputs.DashboardEventOverlaySource>[]>;
78
- /**
79
- * Can be set to `eventTimeSeries` (the default) to refer to externally reported events, or `detectorEvents` to refer to events from detector triggers.
80
- */
81
27
  type?: pulumi.Input<string>;
82
28
  }
83
29
  export interface DashboardEventOverlaySource {
84
- /**
85
- * If true, only data that does not match the specified value of the specified property appear in the event overlay. Defaults to `false`.
86
- */
87
30
  negated?: pulumi.Input<boolean>;
88
- /**
89
- * The name of a dimension to filter against.
90
- */
91
31
  property: pulumi.Input<string>;
92
- /**
93
- * A list of values to be used with the `property`, they will be combined via `OR`.
94
- */
95
32
  values: pulumi.Input<pulumi.Input<string>[]>;
96
33
  }
97
34
  export interface DashboardFilter {
98
- /**
99
- * If true, this variable will also match data that doesn't have this property at all.
100
- */
101
35
  applyIfExist?: pulumi.Input<boolean>;
102
- /**
103
- * If true, only data that does not match the specified value of the specified property appear in the event overlay. Defaults to `false`.
104
- */
105
36
  negated?: pulumi.Input<boolean>;
106
- /**
107
- * The name of a dimension to filter against.
108
- */
109
37
  property: pulumi.Input<string>;
110
- /**
111
- * A list of values to be used with the `property`, they will be combined via `OR`.
112
- */
113
38
  values: pulumi.Input<pulumi.Input<string>[]>;
114
39
  }
115
40
  export interface DashboardGrid {
116
- /**
117
- * List of IDs of the charts to display.
118
- */
119
41
  chartIds: pulumi.Input<pulumi.Input<string>[]>;
120
- /**
121
- * How many rows every chart should take up (greater than or equal to 1). 1 by default.
122
- */
123
42
  height?: pulumi.Input<number>;
124
- /**
125
- * How many columns (out of a total of `12`) every chart should take up (between `1` and `12`). `12` by default.
126
- */
127
43
  width?: pulumi.Input<number>;
128
44
  }
129
45
  export interface DashboardGroupDashboard {
130
46
  configId?: pulumi.Input<string>;
131
- /**
132
- * The dashboard id to mirror
133
- */
134
47
  dashboardId: pulumi.Input<string>;
135
- /**
136
- * The description that will override the original dashboards's description.
137
- */
138
48
  descriptionOverride?: pulumi.Input<string>;
139
- /**
140
- * The description that will override the original dashboards's description.
141
- */
142
49
  filterOverrides?: pulumi.Input<pulumi.Input<inputs.DashboardGroupDashboardFilterOverride>[]>;
143
- /**
144
- * The name that will override the original dashboards's name.
145
- */
146
50
  nameOverride?: pulumi.Input<string>;
147
51
  variableOverrides?: pulumi.Input<pulumi.Input<inputs.DashboardGroupDashboardVariableOverride>[]>;
148
52
  }
149
53
  export interface DashboardGroupDashboardFilterOverride {
150
- /**
151
- * If true, only data that does not match the specified value of the specified property appear in the event overlay. Defaults to `false`.
152
- */
153
54
  negated?: pulumi.Input<boolean>;
154
- /**
155
- * A metric time series dimension or property name.
156
- */
157
55
  property: pulumi.Input<string>;
158
- /**
159
- * (Optional) List of of strings (which will be treated as an OR filter on the property).
160
- */
161
56
  values: pulumi.Input<pulumi.Input<string>[]>;
162
57
  }
163
58
  export interface DashboardGroupDashboardVariableOverride {
164
- /**
165
- * A metric time series dimension or property name.
166
- */
167
59
  property: pulumi.Input<string>;
168
- /**
169
- * (Optional) List of of strings (which will be treated as an OR filter on the property).
170
- */
171
60
  values?: pulumi.Input<pulumi.Input<string>[]>;
172
- /**
173
- * A list of strings of suggested values for this variable; these suggestions will receive priority when values are autosuggested for this variable.
174
- */
175
61
  valuesSuggesteds?: pulumi.Input<pulumi.Input<string>[]>;
176
62
  }
177
63
  export interface DashboardGroupImportQualifier {
@@ -179,492 +65,167 @@ export interface DashboardGroupImportQualifier {
179
65
  metric?: pulumi.Input<string>;
180
66
  }
181
67
  export interface DashboardGroupImportQualifierFilter {
182
- /**
183
- * If true, only data that does not match the specified value of the specified property appear in the event overlay. Defaults to `false`.
184
- */
185
68
  negated?: pulumi.Input<boolean>;
186
- /**
187
- * A metric time series dimension or property name.
188
- */
189
69
  property: pulumi.Input<string>;
190
- /**
191
- * (Optional) List of of strings (which will be treated as an OR filter on the property).
192
- */
193
70
  values: pulumi.Input<pulumi.Input<string>[]>;
194
71
  }
195
72
  export interface DashboardGroupPermission {
196
- /**
197
- * Action the user, team, or organization can take with the dashboard group. List of values (value can be "READ" or "WRITE").
198
- */
199
73
  actions?: pulumi.Input<pulumi.Input<string>[]>;
200
- /**
201
- * ID of the user, team, or organization for which you're granting permissions.
202
- */
203
74
  principalId: pulumi.Input<string>;
204
- /**
205
- * Clarify whether this permission configuration is for a user, a team, or an organization. Value can be one of "USER", "TEAM", or "ORG".
206
- */
207
75
  principalType: pulumi.Input<string>;
208
76
  }
209
77
  export interface DashboardPermissions {
210
- /**
211
- * List of read and write permission configurations to specify which user, team, and organization can view and/or edit your dashboard. Use the `permissions.parent` instead if you want to inherit permissions.
212
- */
213
78
  acls?: pulumi.Input<pulumi.Input<inputs.DashboardPermissionsAcl>[]>;
214
- /**
215
- * ID of the dashboard group you want your dashboard to inherit permissions from. Use the `permissions.acl` instead if you want to specify various read and write permission configurations.
216
- */
217
79
  parent?: pulumi.Input<string>;
218
80
  }
219
81
  export interface DashboardPermissionsAcl {
220
- /**
221
- * Action the user, team, or organization can take with the dashboard. List of values (value can be "READ" or "WRITE").
222
- */
223
82
  actions?: pulumi.Input<pulumi.Input<string>[]>;
224
- /**
225
- * ID of the user, team, or organization for which you're granting permissions.
226
- */
227
83
  principalId: pulumi.Input<string>;
228
- /**
229
- * Clarify whether this permission configuration is for a user, a team, or an organization. Value can be one of "USER", "TEAM", or "ORG".
230
- */
231
84
  principalType: pulumi.Input<string>;
232
85
  }
233
86
  export interface DashboardSelectedEventOverlay {
234
- /**
235
- * Search term used to choose the events shown in the overlay.
236
- */
237
87
  signal: pulumi.Input<string>;
238
- /**
239
- * Each element specifies a filter to use against the signal specified in the `signal`.
240
- */
241
88
  sources?: pulumi.Input<pulumi.Input<inputs.DashboardSelectedEventOverlaySource>[]>;
242
- /**
243
- * Can be set to `eventTimeSeries` (the default) to refer to externally reported events, or `detectorEvents` to refer to events from detector triggers.
244
- */
245
89
  type?: pulumi.Input<string>;
246
90
  }
247
91
  export interface DashboardSelectedEventOverlaySource {
248
- /**
249
- * If true, only data that does not match the specified value of the specified property appear in the event overlay. Defaults to `false`.
250
- */
251
92
  negated?: pulumi.Input<boolean>;
252
- /**
253
- * The name of a dimension to filter against.
254
- */
255
93
  property: pulumi.Input<string>;
256
- /**
257
- * A list of values to be used with the `property`, they will be combined via `OR`.
258
- */
259
94
  values: pulumi.Input<pulumi.Input<string>[]>;
260
95
  }
261
96
  export interface DashboardVariable {
262
- /**
263
- * An alias for the dashboard variable. This text will appear as the label for the dropdown field on the dashboard.
264
- */
265
97
  alias: pulumi.Input<string>;
266
- /**
267
- * If true, this variable will also match data that doesn't have this property at all.
268
- */
269
98
  applyIfExist?: pulumi.Input<boolean>;
270
- /**
271
- * Variable description.
272
- */
273
99
  description?: pulumi.Input<string>;
274
- /**
275
- * The name of a dimension to filter against.
276
- */
277
100
  property: pulumi.Input<string>;
278
- /**
279
- * If `true`, this variable will only apply to charts that have a filter for the property.
280
- */
281
101
  replaceOnly?: pulumi.Input<boolean>;
282
- /**
283
- * If `true`, this variable may only be set to the values listed in `valuesSuggested` and only these values will appear in autosuggestion menus. `false` by default.
284
- */
285
102
  restrictedSuggestions?: pulumi.Input<boolean>;
286
- /**
287
- * Determines whether a value is required for this variable (and therefore whether it will be possible to view this dashboard without this filter applied). `false` by default.
288
- */
289
103
  valueRequired?: pulumi.Input<boolean>;
290
- /**
291
- * A list of values to be used with the `property`, they will be combined via `OR`.
292
- */
293
104
  values?: pulumi.Input<pulumi.Input<string>[]>;
294
- /**
295
- * A list of strings of suggested values for this variable; these suggestions will receive priority when values are autosuggested for this variable.
296
- */
297
105
  valuesSuggesteds?: pulumi.Input<pulumi.Input<string>[]>;
298
106
  }
299
107
  export interface DataLinkTargetExternalUrl {
300
- /**
301
- * The [minimum time window](https://developers.signalfx.com/administration/data_links_overview.html#_minimum_time_window) for a search sent to an external site. Defaults to `6000`
302
- */
303
108
  minimumTimeWindow?: pulumi.Input<string>;
304
- /**
305
- * User-assigned target name. Use this value to differentiate between the link targets for a data link object.
306
- */
307
109
  name: pulumi.Input<string>;
308
- /**
309
- * Describes the relationship between SignalFx metadata keys and external system properties when the key names are different.
310
- */
311
110
  propertyKeyMapping?: pulumi.Input<{
312
111
  [key: string]: pulumi.Input<string>;
313
112
  }>;
314
- /**
315
- * [Designates the format](https://developers.signalfx.com/administration/data_links_overview.html#_minimum_time_window) of `minimumTimeWindow` in the same data link target object. Must be one of `"ISO8601"`, `"EpochSeconds"` or `"Epoch"` (which is milliseconds). Defaults to `"ISO8601"`.
316
- */
317
113
  timeFormat?: pulumi.Input<string>;
318
- /**
319
- * URL string for a Splunk instance or external system data link target. [See the supported template variables](https://developers.signalfx.com/administration/data_links_overview.html#_external_link_targets).
320
- */
321
114
  url: pulumi.Input<string>;
322
115
  }
323
116
  export interface DataLinkTargetSignalfxDashboard {
324
- /**
325
- * SignalFx-assigned ID of the dashboard link target's dashboard group
326
- */
327
117
  dashboardGroupId: pulumi.Input<string>;
328
- /**
329
- * SignalFx-assigned ID of the dashboard link target
330
- */
331
118
  dashboardId: pulumi.Input<string>;
332
- /**
333
- * Flag that designates a target as the default for a data link object. `true` by default
334
- */
335
119
  isDefault?: pulumi.Input<boolean>;
336
- /**
337
- * User-assigned target name. Use this value to differentiate between the link targets for a data link object.
338
- */
339
120
  name: pulumi.Input<string>;
340
121
  }
341
122
  export interface DataLinkTargetSplunk {
342
- /**
343
- * User-assigned target name. Use this value to differentiate between the link targets for a data link object.
344
- */
345
123
  name: pulumi.Input<string>;
346
- /**
347
- * Describes the relationship between SignalFx metadata keys and external system properties when the key names are different.
348
- */
349
124
  propertyKeyMapping?: pulumi.Input<{
350
125
  [key: string]: pulumi.Input<string>;
351
126
  }>;
352
127
  }
353
128
  export interface DetectorRule {
354
- /**
355
- * Description for the rule. Displays as the alert condition in the Alert Rules tab of the detector editor in the web UI.
356
- */
357
129
  description?: pulumi.Input<string>;
358
- /**
359
- * A detect label which matches a detect label within `programText`.
360
- */
361
130
  detectLabel: pulumi.Input<string>;
362
- /**
363
- * When true, notifications and events will not be generated for the detect label. `false` by default.
364
- */
365
131
  disabled?: pulumi.Input<boolean>;
366
- /**
367
- * List of strings specifying where notifications will be sent when an incident occurs. See [Create A Single Detector](https://developers.signalfx.com/detectors_reference.html#operation/Create%20Single%20Detector) for more info.
368
- */
369
132
  notifications?: pulumi.Input<pulumi.Input<string>[]>;
370
- /**
371
- * Custom notification message body when an alert is triggered. See [Set Up Detectors to Trigger Alerts](https://docs.signalfx.com/en/latest/detect-alert/set-up-detectors.html#about-detectors#alert-settings) for more info.
372
- */
373
133
  parameterizedBody?: pulumi.Input<string>;
374
- /**
375
- * Custom notification message subject when an alert is triggered. See [Set Up Detectors to Trigger Alerts](https://docs.signalfx.com/en/latest/detect-alert/set-up-detectors.html#about-detectors#alert-settings) for more info.
376
- */
377
134
  parameterizedSubject?: pulumi.Input<string>;
378
- /**
379
- * URL of page to consult when an alert is triggered. This can be used with custom notification messages.
380
- */
381
135
  runbookUrl?: pulumi.Input<string>;
382
- /**
383
- * The severity of the rule, must be one of: `"Critical"`, `"Major"`, `"Minor"`, `"Warning"`, `"Info"`.
384
- */
385
136
  severity: pulumi.Input<string>;
386
- /**
387
- * Plain text suggested first course of action, such as a command line to execute. This can be used with custom notification messages.
388
- */
389
137
  tip?: pulumi.Input<string>;
390
138
  }
391
139
  export interface DetectorVizOption {
392
- /**
393
- * Color to use : gray, blue, azure, navy, brown, orange, yellow, iris, magenta, pink, purple, violet, lilac, emerald, green, aquamarine.
394
- */
395
140
  color?: pulumi.Input<string>;
396
- /**
397
- * Specifies an alternate value for the Plot Name column of the Data Table associated with the chart.
398
- */
399
141
  displayName?: pulumi.Input<string>;
400
- /**
401
- * Label used in the publish statement that displays the plot (metric time series data) you want to customize.
402
- */
403
142
  label: pulumi.Input<string>;
404
- /**
405
- * , `valueSuffix` - (Optional) Arbitrary prefix/suffix to display with the value of this plot.
406
- *
407
- * **Notes**
408
- *
409
- * It is highly recommended that you use both `maxDelay` in your detector configuration and an `extrapolation` policy in your program text to reduce false positives/negatives.
410
- *
411
- * `maxDelay` allows SignalFx to continue with computation if there is a lag in receiving data points.
412
- *
413
- * `extrapolation` allows you to specify how to handle missing data. An extrapolation policy can be added to individual signals by updating the data block in your `programText`.
414
- *
415
- * See [Delayed Datapoints](https://signalfx-product-docs.readthedocs-hosted.com/en/latest/charts/chart-builder.html#delayed-datapoints) for more info.
416
- */
417
143
  valuePrefix?: pulumi.Input<string>;
418
144
  valueSuffix?: pulumi.Input<string>;
419
- /**
420
- * A unit to attach to this plot. Units support automatic scaling (eg thousands of bytes will be displayed as kilobytes). Values values are `Bit, Kilobit, Megabit, Gigabit, Terabit, Petabit, Exabit, Zettabit, Yottabit, Byte, Kibibyte, Mebibyte, Gibibyte (note: this was previously typoed as Gigibyte), Tebibyte, Pebibyte, Exbibyte, Zebibyte, Yobibyte, Nanosecond, Microsecond, Millisecond, Second, Minute, Hour, Day, Week`.
421
- */
422
145
  valueUnit?: pulumi.Input<string>;
423
146
  }
424
147
  export interface HeatmapChartColorRange {
425
- /**
426
- * The color range to use. Hex values are not supported here. Must be one of gray, blue, light_blue, navy, dark_orange, orange, dark_yellow, magenta, cerise, pink, violet, purple, gray_blue, dark_green, green, aquamarine, red, yellow, vivid_yellow, light_green, or lime_green.
427
- */
428
148
  color: pulumi.Input<string>;
429
- /**
430
- * The maximum value within the coloring range.
431
- */
432
149
  maxValue?: pulumi.Input<number>;
433
- /**
434
- * The minimum value within the coloring range.
435
- */
436
150
  minValue?: pulumi.Input<number>;
437
151
  }
438
152
  export interface HeatmapChartColorScale {
439
- /**
440
- * The color range to use. Hex values are not supported here. Must be one of gray, blue, light_blue, navy, dark_orange, orange, dark_yellow, magenta, cerise, pink, violet, purple, gray_blue, dark_green, green, aquamarine, red, yellow, vivid_yellow, light_green, or lime_green.
441
- */
442
153
  color: pulumi.Input<string>;
443
- /**
444
- * Indicates the lower threshold non-inclusive value for this range.
445
- */
446
154
  gt?: pulumi.Input<number>;
447
- /**
448
- * Indicates the lower threshold inclusive value for this range.
449
- */
450
155
  gte?: pulumi.Input<number>;
451
- /**
452
- * Indicates the upper threshold non-inclusive value for this range.
453
- */
454
156
  lt?: pulumi.Input<number>;
455
- /**
456
- * Indicates the upper threshold inclusive value for this range.
457
- */
458
157
  lte?: pulumi.Input<number>;
459
158
  }
460
159
  export interface ListChartColorScale {
461
- /**
462
- * The color to use. Must be one of gray, blue, light_blue, navy, dark_orange, orange, dark_yellow, magenta, cerise, pink, violet, purple, gray_blue, dark_green, green, aquamarine, red, yellow, vivid_yellow, light_green, or lime_green.
463
- */
464
160
  color: pulumi.Input<string>;
465
- /**
466
- * Indicates the lower threshold non-inclusive value for this range.
467
- */
468
161
  gt?: pulumi.Input<number>;
469
- /**
470
- * Indicates the lower threshold inclusive value for this range.
471
- */
472
162
  gte?: pulumi.Input<number>;
473
- /**
474
- * Indicates the upper threshold non-inculsive value for this range.
475
- */
476
163
  lt?: pulumi.Input<number>;
477
- /**
478
- * Indicates the upper threshold inclusive value for this range.
479
- */
480
164
  lte?: pulumi.Input<number>;
481
165
  }
482
166
  export interface ListChartLegendOptionsField {
483
- /**
484
- * True or False depending on if you want the property to be shown or hidden.
485
- */
486
167
  enabled?: pulumi.Input<boolean>;
487
- /**
488
- * The name of the property to display. Note the special values of `sfMetric` (corresponding with the API's `Plot Name`) which shows the label of the time series `publish()` and `sf_originatingMetric` (corresponding with the API's `metric (sf metric)`) that shows the [name of the metric](https://developers.signalfx.com/signalflow_analytics/functions/data_function.html#table-1-parameter-definitions) for the time series being displayed.
489
- */
490
168
  property: pulumi.Input<string>;
491
169
  }
492
170
  export interface ListChartVizOption {
493
- /**
494
- * The color to use. Must be one of gray, blue, light_blue, navy, dark_orange, orange, dark_yellow, magenta, cerise, pink, violet, purple, gray_blue, dark_green, green, aquamarine, red, yellow, vivid_yellow, light_green, or lime_green.
495
- */
496
171
  color?: pulumi.Input<string>;
497
- /**
498
- * Specifies an alternate value for the Plot Name column of the Data Table associated with the chart.
499
- */
500
172
  displayName?: pulumi.Input<string>;
501
- /**
502
- * Label used in the publish statement that displays the plot (metric time series data) you want to customize.
503
- */
504
173
  label: pulumi.Input<string>;
505
- /**
506
- * , `valueSuffix` - (Optional) Arbitrary prefix/suffix to display with the value of this plot.
507
- */
508
174
  valuePrefix?: pulumi.Input<string>;
509
175
  valueSuffix?: pulumi.Input<string>;
510
- /**
511
- * A unit to attach to this plot. Units support automatic scaling (eg thousands of bytes will be displayed as kilobytes). Values values are `Bit, Kilobit, Megabit, Gigabit, Terabit, Petabit, Exabit, Zettabit, Yottabit, Byte, Kibibyte, Mebibyte, Gibibyte (note: this was previously typoed as Gigibyte), Tebibyte, Pebibyte, Exbibyte, Zebibyte, Yobibyte, Nanosecond, Microsecond, Millisecond, Second, Minute, Hour, Day, Week`.
512
- */
513
176
  valueUnit?: pulumi.Input<string>;
514
177
  }
515
178
  export interface MetricRulesetAggregationRule {
516
- /**
517
- * Aggregator object
518
- */
519
179
  aggregators: pulumi.Input<pulumi.Input<inputs.MetricRulesetAggregationRuleAggregator>[]>;
520
- /**
521
- * When false, this rule will not generate aggregated MTSs
522
- */
523
180
  enabled: pulumi.Input<boolean>;
524
- /**
525
- * Matcher object
526
- */
527
181
  matchers: pulumi.Input<pulumi.Input<inputs.MetricRulesetAggregationRuleMatcher>[]>;
528
- /**
529
- * name of the aggregation rule
530
- */
531
182
  name?: pulumi.Input<string>;
532
183
  }
533
184
  export interface MetricRulesetAggregationRuleAggregator {
534
- /**
535
- * List of dimensions to either be kept or dropped in the new aggregated MTSs
536
- */
537
185
  dimensions: pulumi.Input<pulumi.Input<string>[]>;
538
- /**
539
- * when true, the specified dimensions will be dropped from the aggregated MTSs
540
- */
541
186
  dropDimensions: pulumi.Input<boolean>;
542
- /**
543
- * name of the new aggregated metric
544
- */
545
187
  outputName: pulumi.Input<string>;
546
- /**
547
- * Type of aggregator. Must always be "rollup"
548
- */
549
188
  type: pulumi.Input<string>;
550
189
  }
551
190
  export interface MetricRulesetAggregationRuleMatcher {
552
- /**
553
- * List of filters to filter the set of input MTSs
554
- */
555
191
  filters?: pulumi.Input<pulumi.Input<inputs.MetricRulesetAggregationRuleMatcherFilter>[]>;
556
- /**
557
- * Type of aggregator. Must always be "rollup"
558
- */
559
192
  type: pulumi.Input<string>;
560
193
  }
561
194
  export interface MetricRulesetAggregationRuleMatcherFilter {
562
- /**
563
- * When true, this filter will match all values not matching the property_values
564
- */
565
195
  not: pulumi.Input<boolean>;
566
- /**
567
- * Name of the dimension
568
- */
569
196
  property: pulumi.Input<string>;
570
- /**
571
- * Value of the dimension
572
- */
573
197
  propertyValues: pulumi.Input<pulumi.Input<string>[]>;
574
198
  }
575
199
  export interface MetricRulesetRoutingRule {
576
- /**
577
- * end destination of the input metric. Must be `RealTime` or `Drop`
578
- */
579
200
  destination: pulumi.Input<string>;
580
201
  }
581
202
  export interface OrgTokenDpmLimits {
582
- /**
583
- * The datapoints per minute (dpm) limit for this token. If you exceed this limit, SignalFx sends out an alert.
584
- */
585
203
  dpmLimit: pulumi.Input<number>;
586
- /**
587
- * DPM level at which SignalFx sends the notification for this token. If you don't specify a notification, SignalFx sends the generic notification.
588
- */
589
204
  dpmNotificationThreshold?: pulumi.Input<number>;
590
205
  }
591
206
  export interface OrgTokenHostOrUsageLimits {
592
- /**
593
- * Max number of Docker containers that can use this token
594
- */
595
207
  containerLimit?: pulumi.Input<number>;
596
- /**
597
- * Notification threshold for Docker containers
598
- */
599
208
  containerNotificationThreshold?: pulumi.Input<number>;
600
- /**
601
- * Max number of custom metrics that can be sent with this token
602
- */
603
209
  customMetricsLimit?: pulumi.Input<number>;
604
- /**
605
- * Notification threshold for custom metrics
606
- */
607
210
  customMetricsNotificationThreshold?: pulumi.Input<number>;
608
- /**
609
- * Max number of hi-res metrics that can be sent with this toke
610
- */
611
211
  highResMetricsLimit?: pulumi.Input<number>;
612
- /**
613
- * Notification threshold for hi-res metrics
614
- */
615
212
  highResMetricsNotificationThreshold?: pulumi.Input<number>;
616
- /**
617
- * Max number of hosts that can use this token
618
- */
619
213
  hostLimit?: pulumi.Input<number>;
620
- /**
621
- * Notification threshold for hosts
622
- */
623
214
  hostNotificationThreshold?: pulumi.Input<number>;
624
215
  }
625
216
  export interface SingleValueChartColorScale {
626
- /**
627
- * The color to use. Must be one of gray, blue, light_blue, navy, dark_orange, orange, dark_yellow, magenta, cerise, pink, violet, purple, gray_blue, dark_green, green, aquamarine, red, yellow, vivid_yellow, light_green, or lime_green.
628
- */
629
217
  color: pulumi.Input<string>;
630
- /**
631
- * Indicates the lower threshold non-inclusive value for this range.
632
- */
633
218
  gt?: pulumi.Input<number>;
634
- /**
635
- * Indicates the lower threshold inclusive value for this range.
636
- */
637
219
  gte?: pulumi.Input<number>;
638
- /**
639
- * Indicates the upper threshold non-inculsive value for this range.
640
- */
641
220
  lt?: pulumi.Input<number>;
642
- /**
643
- * Indicates the upper threshold inclusive value for this range.
644
- */
645
221
  lte?: pulumi.Input<number>;
646
222
  }
647
223
  export interface SingleValueChartVizOption {
648
- /**
649
- * The color to use. Must be one of gray, blue, light_blue, navy, dark_orange, orange, dark_yellow, magenta, cerise, pink, violet, purple, gray_blue, dark_green, green, aquamarine, red, yellow, vivid_yellow, light_green, or lime_green.
650
- */
651
224
  color?: pulumi.Input<string>;
652
- /**
653
- * Specifies an alternate value for the Plot Name column of the Data Table associated with the chart.
654
- */
655
225
  displayName?: pulumi.Input<string>;
656
- /**
657
- * Label used in the publish statement that displays the plot (metric time series data) you want to customize.
658
- */
659
226
  label: pulumi.Input<string>;
660
- /**
661
- * , `valueSuffix` - (Optional) Arbitrary prefix/suffix to display with the value of this plot.
662
- */
663
227
  valuePrefix?: pulumi.Input<string>;
664
228
  valueSuffix?: pulumi.Input<string>;
665
- /**
666
- * A unit to attach to this plot. Units support automatic scaling (eg thousands of bytes will be displayed as kilobytes). Values values are `Bit, Kilobit, Megabit, Gigabit, Terabit, Petabit, Exabit, Zettabit, Yottabit, Byte, Kibibyte, Mebibyte, Gibibyte (note: this was previously typoed as Gigibyte), Tebibyte, Pebibyte, Exbibyte, Zebibyte, Yobibyte, Nanosecond, Microsecond, Millisecond, Second, Minute, Hour, Day, Week`.
667
- */
668
229
  valueUnit?: pulumi.Input<string>;
669
230
  }
670
231
  export interface TableChartVizOption {
@@ -676,219 +237,84 @@ export interface TableChartVizOption {
676
237
  valueUnit?: pulumi.Input<string>;
677
238
  }
678
239
  export interface TimeChartAxisLeft {
679
- /**
680
- * A line to draw as a high watermark.
681
- */
682
240
  highWatermark?: pulumi.Input<number>;
683
- /**
684
- * A label to attach to the high watermark line.
685
- */
686
241
  highWatermarkLabel?: pulumi.Input<string>;
687
- /**
688
- * Label used in the publish statement that displays the event query you want to customize.
689
- */
690
242
  label?: pulumi.Input<string>;
691
- /**
692
- * A line to draw as a low watermark.
693
- */
694
243
  lowWatermark?: pulumi.Input<number>;
695
- /**
696
- * A label to attach to the low watermark line.
697
- */
698
244
  lowWatermarkLabel?: pulumi.Input<string>;
699
- /**
700
- * The maximum value for the right axis.
701
- */
702
245
  maxValue?: pulumi.Input<number>;
703
- /**
704
- * The minimum value for the right axis.
705
- */
706
246
  minValue?: pulumi.Input<number>;
707
247
  watermarks?: pulumi.Input<pulumi.Input<inputs.TimeChartAxisLeftWatermark>[]>;
708
248
  }
709
249
  export interface TimeChartAxisLeftWatermark {
710
- /**
711
- * Label used in the publish statement that displays the event query you want to customize.
712
- */
713
250
  label?: pulumi.Input<string>;
714
251
  value: pulumi.Input<number>;
715
252
  }
716
253
  export interface TimeChartAxisRight {
717
- /**
718
- * A line to draw as a high watermark.
719
- */
720
254
  highWatermark?: pulumi.Input<number>;
721
- /**
722
- * A label to attach to the high watermark line.
723
- */
724
255
  highWatermarkLabel?: pulumi.Input<string>;
725
- /**
726
- * Label used in the publish statement that displays the event query you want to customize.
727
- */
728
256
  label?: pulumi.Input<string>;
729
- /**
730
- * A line to draw as a low watermark.
731
- */
732
257
  lowWatermark?: pulumi.Input<number>;
733
- /**
734
- * A label to attach to the low watermark line.
735
- */
736
258
  lowWatermarkLabel?: pulumi.Input<string>;
737
- /**
738
- * The maximum value for the right axis.
739
- */
740
259
  maxValue?: pulumi.Input<number>;
741
- /**
742
- * The minimum value for the right axis.
743
- */
744
260
  minValue?: pulumi.Input<number>;
745
261
  watermarks?: pulumi.Input<pulumi.Input<inputs.TimeChartAxisRightWatermark>[]>;
746
262
  }
747
263
  export interface TimeChartAxisRightWatermark {
748
- /**
749
- * Label used in the publish statement that displays the event query you want to customize.
750
- */
751
264
  label?: pulumi.Input<string>;
752
265
  value: pulumi.Input<number>;
753
266
  }
754
267
  export interface TimeChartEventOption {
755
- /**
756
- * Color to use : gray, blue, azure, navy, brown, orange, yellow, iris, magenta, pink, purple, violet, lilac, emerald, green, aquamarine.
757
- */
758
268
  color?: pulumi.Input<string>;
759
- /**
760
- * Specifies an alternate value for the Plot Name column of the Data Table associated with the chart.
761
- */
762
269
  displayName?: pulumi.Input<string>;
763
- /**
764
- * Label used in the publish statement that displays the event query you want to customize.
765
- */
766
270
  label: pulumi.Input<string>;
767
271
  }
768
272
  export interface TimeChartHistogramOption {
769
- /**
770
- * Color to use : gray, blue, azure, navy, brown, orange, yellow, iris, magenta, pink, purple, violet, lilac, emerald, green, aquamarine, red, gold, greenyellow, chartreuse, jade
771
- */
772
273
  colorTheme?: pulumi.Input<string>;
773
274
  }
774
275
  export interface TimeChartLegendOptionsField {
775
- /**
776
- * True or False depending on if you want the property to be shown or hidden.
777
- */
778
276
  enabled?: pulumi.Input<boolean>;
779
- /**
780
- * The name of the property to display. Note the special values of `plotLabel` (corresponding with the API's `sfMetric`) which shows the label of the time series `publish()` and `metric` (corresponding with the API's `sf_originatingMetric`) that shows the name of the metric for the time series being displayed.
781
- */
782
277
  property: pulumi.Input<string>;
783
278
  }
784
279
  export interface TimeChartVizOption {
785
- /**
786
- * Y-axis associated with values for this plot. Must be either `right` or `left`.
787
- */
788
280
  axis?: pulumi.Input<string>;
789
- /**
790
- * Color to use : gray, blue, azure, navy, brown, orange, yellow, iris, magenta, pink, purple, violet, lilac, emerald, green, aquamarine.
791
- */
792
281
  color?: pulumi.Input<string>;
793
- /**
794
- * Specifies an alternate value for the Plot Name column of the Data Table associated with the chart.
795
- */
796
282
  displayName?: pulumi.Input<string>;
797
- /**
798
- * Label used in the publish statement that displays the event query you want to customize.
799
- */
800
283
  label: pulumi.Input<string>;
801
- /**
802
- * The visualization style to use. Must be `"LineChart"`, `"AreaChart"`, `"ColumnChart"`, or `"Histogram"`. Chart level `plotType` by default.
803
- */
804
284
  plotType?: pulumi.Input<string>;
805
- /**
806
- * , `valueSuffix` - (Optional) Arbitrary prefix/suffix to display with the value of this plot.
807
- */
808
285
  valuePrefix?: pulumi.Input<string>;
809
286
  valueSuffix?: pulumi.Input<string>;
810
- /**
811
- * A unit to attach to this plot. Units support automatic scaling (eg thousands of bytes will be displayed as kilobytes). Values values are `Bit, Kilobit, Megabit, Gigabit, Terabit, Petabit, Exabit, Zettabit, Yottabit, Byte, Kibibyte, Mebibyte, Gibibyte (note: this was previously typoed as Gigibyte), Tebibyte, Pebibyte, Exbibyte, Zebibyte, Yobibyte, Nanosecond, Microsecond, Millisecond, Second, Minute, Hour, Day, Week`.
812
- */
813
287
  valueUnit?: pulumi.Input<string>;
814
288
  }
815
289
  export interface WebhookIntegrationHeader {
816
- /**
817
- * The key of the header to send
818
- */
819
290
  headerKey: pulumi.Input<string>;
820
- /**
821
- * The value of the header to send
822
- */
823
291
  headerValue: pulumi.Input<string>;
824
292
  }
825
293
  export declare namespace aws {
826
294
  interface IntegrationCustomNamespaceSyncRule {
827
- /**
828
- * Controls the Splunk Observability default behavior for processing data from an AWS namespace. Splunk Observability ignores this property unless you specify the `filterAction` and `filterSource` properties. If you do specify them, use this property to control how Splunk Observability treats data that doesn't match the filter. The available actions are one of `"Include"` or `"Exclude"`.
829
- */
830
295
  defaultAction?: pulumi.Input<string>;
831
- /**
832
- * Controls how Splunk Observability processes data from a custom AWS namespace. The available actions are one of `"Include"` or `"Exclude"`.
833
- */
834
296
  filterAction?: pulumi.Input<string>;
835
- /**
836
- * Expression that selects the data that Splunk Observability should sync for the custom namespace associated with this sync rule. The expression uses the syntax defined for the SignalFlow `filter()` function; it can be any valid SignalFlow filter expression.
837
- */
838
297
  filterSource?: pulumi.Input<string>;
839
- /**
840
- * An AWS custom namespace having custom AWS metrics that you want to sync with Splunk Observability. See `services` field description below for additional information.
841
- */
842
298
  namespace: pulumi.Input<string>;
843
299
  }
844
300
  interface IntegrationMetricStatsToSync {
845
- /**
846
- * AWS metric that you want to pick statistics for
847
- */
848
301
  metric: pulumi.Input<string>;
849
- /**
850
- * An AWS custom namespace having custom AWS metrics that you want to sync with Splunk Observability. See `services` field description below for additional information.
851
- */
852
302
  namespace: pulumi.Input<string>;
853
- /**
854
- * AWS statistics you want to collect
855
- */
856
303
  stats: pulumi.Input<pulumi.Input<string>[]>;
857
304
  }
858
305
  interface IntegrationNamespaceSyncRule {
859
- /**
860
- * Controls the Splunk Observability default behavior for processing data from an AWS namespace. Splunk Observability ignores this property unless you specify the `filterAction` and `filterSource` properties. If you do specify them, use this property to control how Splunk Observability treats data that doesn't match the filter. The available actions are one of `"Include"` or `"Exclude"`.
861
- */
862
306
  defaultAction?: pulumi.Input<string>;
863
- /**
864
- * Controls how Splunk Observability processes data from a custom AWS namespace. The available actions are one of `"Include"` or `"Exclude"`.
865
- */
866
307
  filterAction?: pulumi.Input<string>;
867
- /**
868
- * Expression that selects the data that Splunk Observability should sync for the custom namespace associated with this sync rule. The expression uses the syntax defined for the SignalFlow `filter()` function; it can be any valid SignalFlow filter expression.
869
- */
870
308
  filterSource?: pulumi.Input<string>;
871
- /**
872
- * An AWS custom namespace having custom AWS metrics that you want to sync with Splunk Observability. See `services` field description below for additional information.
873
- */
874
309
  namespace: pulumi.Input<string>;
875
310
  }
876
311
  }
877
312
  export declare namespace azure {
878
313
  interface IntegrationCustomNamespacesPerService {
879
- /**
880
- * The additional namespaces.
881
- */
882
314
  namespaces: pulumi.Input<pulumi.Input<string>[]>;
883
- /**
884
- * The name of the service.
885
- */
886
315
  service: pulumi.Input<string>;
887
316
  }
888
317
  interface IntegrationResourceFilterRule {
889
- /**
890
- * Expression that selects the data that SignalFx should sync for the resource associated with this sync rule. The expression uses the syntax defined for the SignalFlow `filter()` function. The source of each filter rule must be in the form filter('key', 'value'). You can join multiple filter statements using the and and or operators. Referenced keys are limited to tags and must start with the azure_tag_ prefix.
891
- */
892
318
  filterSource: pulumi.Input<string>;
893
319
  }
894
320
  }
@@ -900,9 +326,6 @@ export declare namespace gcp {
900
326
  }
901
327
  export declare namespace log {
902
328
  interface ViewColumn {
903
- /**
904
- * Name of the log view.
905
- */
906
329
  name: pulumi.Input<string>;
907
330
  }
908
331
  interface ViewSortOption {