@pulumi/datadog 5.7.0-alpha.1782975766 → 5.7.0

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 (51) hide show
  1. package/config/vars.d.ts +6 -2
  2. package/config/vars.d.ts.map +1 -1
  3. package/config/vars.js +6 -0
  4. package/config/vars.js.map +1 -1
  5. package/index.d.ts +18 -0
  6. package/index.d.ts.map +1 -1
  7. package/index.js +32 -2
  8. package/index.js.map +1 -1
  9. package/monitor.d.ts +12 -0
  10. package/monitor.d.ts.map +1 -1
  11. package/monitor.js +2 -0
  12. package/monitor.js.map +1 -1
  13. package/package.json +2 -2
  14. package/provider.d.ts +8 -4
  15. package/provider.d.ts.map +1 -1
  16. package/provider.js +1 -0
  17. package/provider.js.map +1 -1
  18. package/securityFindingsDueDateRule.d.ts +132 -0
  19. package/securityFindingsDueDateRule.d.ts.map +1 -0
  20. package/securityFindingsDueDateRule.js +132 -0
  21. package/securityFindingsDueDateRule.js.map +1 -0
  22. package/securityFindingsDueDateRulesOrder.d.ts +86 -0
  23. package/securityFindingsDueDateRulesOrder.d.ts.map +1 -0
  24. package/securityFindingsDueDateRulesOrder.js +105 -0
  25. package/securityFindingsDueDateRulesOrder.js.map +1 -0
  26. package/securityFindingsMuteRule.d.ts +120 -0
  27. package/securityFindingsMuteRule.d.ts.map +1 -0
  28. package/securityFindingsMuteRule.js +120 -0
  29. package/securityFindingsMuteRule.js.map +1 -0
  30. package/securityFindingsMuteRulesOrder.d.ts +86 -0
  31. package/securityFindingsMuteRulesOrder.d.ts.map +1 -0
  32. package/securityFindingsMuteRulesOrder.js +105 -0
  33. package/securityFindingsMuteRulesOrder.js.map +1 -0
  34. package/securityFindingsTicketCreationRule.d.ts +124 -0
  35. package/securityFindingsTicketCreationRule.d.ts.map +1 -0
  36. package/securityFindingsTicketCreationRule.js +124 -0
  37. package/securityFindingsTicketCreationRule.js.map +1 -0
  38. package/securityFindingsTicketCreationRulesOrder.d.ts +86 -0
  39. package/securityFindingsTicketCreationRulesOrder.d.ts.map +1 -0
  40. package/securityFindingsTicketCreationRulesOrder.js +105 -0
  41. package/securityFindingsTicketCreationRulesOrder.js.map +1 -0
  42. package/sensitiveDataScannerRule.d.ts +4 -4
  43. package/sensitiveDataScannerRule.d.ts.map +1 -1
  44. package/serviceLevelObjective.d.ts +12 -0
  45. package/serviceLevelObjective.d.ts.map +1 -1
  46. package/serviceLevelObjective.js +2 -0
  47. package/serviceLevelObjective.js.map +1 -1
  48. package/types/input.d.ts +1352 -2
  49. package/types/input.d.ts.map +1 -1
  50. package/types/output.d.ts +1353 -3
  51. package/types/output.d.ts.map +1 -1
package/types/output.d.ts CHANGED
@@ -904,6 +904,10 @@ export interface DashboardV2Widget {
904
904
  * The definition for a Note widget.
905
905
  */
906
906
  noteDefinition?: outputs.DashboardV2WidgetNoteDefinition;
907
+ /**
908
+ * The definition for a Point Plot widget.
909
+ */
910
+ pointPlotDefinition?: outputs.DashboardV2WidgetPointPlotDefinition;
907
911
  /**
908
912
  * The definition for a Powerpack widget.
909
913
  */
@@ -5866,6 +5870,10 @@ export interface DashboardV2WidgetGroupDefinitionWidget {
5866
5870
  * The definition for a Note widget.
5867
5871
  */
5868
5872
  noteDefinition?: outputs.DashboardV2WidgetGroupDefinitionWidgetNoteDefinition;
5873
+ /**
5874
+ * The definition for a Point Plot widget.
5875
+ */
5876
+ pointPlotDefinition?: outputs.DashboardV2WidgetGroupDefinitionWidgetPointPlotDefinition;
5869
5877
  /**
5870
5878
  * The definition for a Query Table widget.
5871
5879
  */
@@ -14209,6 +14217,214 @@ export interface DashboardV2WidgetGroupDefinitionWidgetNoteDefinitionTimeLive {
14209
14217
  */
14210
14218
  value: number;
14211
14219
  }
14220
+ export interface DashboardV2WidgetGroupDefinitionWidgetPointPlotDefinition {
14221
+ /**
14222
+ * A nested block describing a custom link. Multiple `customLink` blocks are allowed using the structure below.
14223
+ */
14224
+ customLinks?: outputs.DashboardV2WidgetGroupDefinitionWidgetPointPlotDefinitionCustomLink[];
14225
+ /**
14226
+ * The description of the widget.
14227
+ */
14228
+ description?: string;
14229
+ /**
14230
+ * Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
14231
+ */
14232
+ hideIncompleteCostData: boolean;
14233
+ /**
14234
+ * Legend configuration for the widget.
14235
+ */
14236
+ legend?: outputs.DashboardV2WidgetGroupDefinitionWidgetPointPlotDefinitionLegend;
14237
+ /**
14238
+ * The timeframe to use when displaying the widget. Valid values are `1m`, `5m`, `10m`, `15m`, `30m`, `1h`, `4h`, `1d`, `2d`, `1w`, `1mo`, `3mo`, `6mo`, `weekToDate`, `monthToDate`, `1y`, `alert`.
14239
+ */
14240
+ liveSpan?: string;
14241
+ /**
14242
+ * A nested block describing a marker to use when displaying the widget. Multiple `marker` blocks are allowed.
14243
+ */
14244
+ markers?: outputs.DashboardV2WidgetGroupDefinitionWidgetPointPlotDefinitionMarker[];
14245
+ /**
14246
+ * A nested block describing the request to use when displaying the widget.
14247
+ */
14248
+ requests?: outputs.DashboardV2WidgetGroupDefinitionWidgetPointPlotDefinitionRequest[];
14249
+ /**
14250
+ * A nested block used to specify a time span for the widget. Use this or `liveSpan`, not both.
14251
+ */
14252
+ time?: outputs.DashboardV2WidgetGroupDefinitionWidgetPointPlotDefinitionTime;
14253
+ /**
14254
+ * The title of the widget.
14255
+ */
14256
+ title?: string;
14257
+ /**
14258
+ * The alignment of the widget's title. Valid values are `center`, `left`, `right`.
14259
+ */
14260
+ titleAlign?: string;
14261
+ /**
14262
+ * The size of the widget's title (defaults to 16).
14263
+ */
14264
+ titleSize?: string;
14265
+ /**
14266
+ * A nested block describing the Y-Axis Controls. The structure of this block is described below.
14267
+ */
14268
+ yaxis?: outputs.DashboardV2WidgetGroupDefinitionWidgetPointPlotDefinitionYaxis;
14269
+ }
14270
+ export interface DashboardV2WidgetGroupDefinitionWidgetPointPlotDefinitionCustomLink {
14271
+ /**
14272
+ * The flag for toggling context menu link visibility.
14273
+ */
14274
+ isHidden?: boolean;
14275
+ /**
14276
+ * The label for the custom link URL. Keep the label short and descriptive. Use metrics and tags as variables.
14277
+ */
14278
+ label?: string;
14279
+ /**
14280
+ * The URL of the custom link. URL must include `http` or `https`. A relative URL must start with `/`.
14281
+ */
14282
+ link?: string;
14283
+ /**
14284
+ * The label ID that refers to a context menu link. Can be `logs`, `hosts`, `traces`, `profiles`, `processes`, `containers`, or `rum`.
14285
+ */
14286
+ overrideLabel?: string;
14287
+ }
14288
+ export interface DashboardV2WidgetGroupDefinitionWidgetPointPlotDefinitionLegend {
14289
+ /**
14290
+ * Type of legend to show for the point plot widget. Valid values are `automatic`, `none`.
14291
+ */
14292
+ type: string;
14293
+ }
14294
+ export interface DashboardV2WidgetGroupDefinitionWidgetPointPlotDefinitionMarker {
14295
+ /**
14296
+ * Combination of a severity (`error`, `warning`, `ok`, or `info`) and a line type (`dashed`, `solid`, or `bold`). For Distribution widgets, this can be set to `percentile`. Example: `error dashed`.
14297
+ */
14298
+ displayType?: string;
14299
+ /**
14300
+ * Label to display over the marker.
14301
+ */
14302
+ label?: string;
14303
+ /**
14304
+ * Timestamp for the marker position.
14305
+ */
14306
+ time?: string;
14307
+ /**
14308
+ * Value to apply. Can be a single value `y = 15` or a range of values `0 < y < 10`. For Distribution widgets with `displayType` set to `percentile`, this should be a numeric percentile value (for example, `90` for P90).
14309
+ */
14310
+ value: string;
14311
+ }
14312
+ export interface DashboardV2WidgetGroupDefinitionWidgetPointPlotDefinitionRequest {
14313
+ /**
14314
+ * Maximum number of data points to return.
14315
+ */
14316
+ limit?: number;
14317
+ /**
14318
+ * Projection configuration for the point plot request.
14319
+ */
14320
+ projection: outputs.DashboardV2WidgetGroupDefinitionWidgetPointPlotDefinitionRequestProjection;
14321
+ /**
14322
+ * Query configuration for the point plot request.
14323
+ */
14324
+ query: outputs.DashboardV2WidgetGroupDefinitionWidgetPointPlotDefinitionRequestQuery;
14325
+ /**
14326
+ * The type of data request. Must be `dataProjection`. Valid values are `dataProjection`.
14327
+ */
14328
+ requestType: string;
14329
+ }
14330
+ export interface DashboardV2WidgetGroupDefinitionWidgetPointPlotDefinitionRequestProjection {
14331
+ /**
14332
+ * List of dimension mappings for the projection.
14333
+ */
14334
+ dimensions: outputs.DashboardV2WidgetGroupDefinitionWidgetPointPlotDefinitionRequestProjectionDimension[];
14335
+ /**
14336
+ * Additional columns to include in the projection.
14337
+ */
14338
+ extraColumns?: string[];
14339
+ /**
14340
+ * Type of the projection. Must be `pointPlot`. Valid values are `pointPlot`.
14341
+ */
14342
+ type: string;
14343
+ }
14344
+ export interface DashboardV2WidgetGroupDefinitionWidgetPointPlotDefinitionRequestProjectionDimension {
14345
+ /**
14346
+ * Alias for the column.
14347
+ */
14348
+ alias?: string;
14349
+ /**
14350
+ * Source column name from the dataset.
14351
+ */
14352
+ column: string;
14353
+ /**
14354
+ * Dimension of the point plot. Valid values are `group`, `time`, `y`, `radius`.
14355
+ */
14356
+ dimension: string;
14357
+ }
14358
+ export interface DashboardV2WidgetGroupDefinitionWidgetPointPlotDefinitionRequestQuery {
14359
+ /**
14360
+ * Data source for the query (for example, `logs`).
14361
+ */
14362
+ dataSource: string;
14363
+ /**
14364
+ * List of indexes to query.
14365
+ */
14366
+ indexes?: string[];
14367
+ /**
14368
+ * The query string to filter events.
14369
+ */
14370
+ queryString: string;
14371
+ /**
14372
+ * Storage location for the query.
14373
+ */
14374
+ storage?: string;
14375
+ }
14376
+ export interface DashboardV2WidgetGroupDefinitionWidgetPointPlotDefinitionTime {
14377
+ /**
14378
+ * A fixed time range with explicit start and end times.
14379
+ */
14380
+ fixed?: outputs.DashboardV2WidgetGroupDefinitionWidgetPointPlotDefinitionTimeFixed;
14381
+ /**
14382
+ * An arbitrary live time span, such as 17 minutes or 6 hours.
14383
+ */
14384
+ live?: outputs.DashboardV2WidgetGroupDefinitionWidgetPointPlotDefinitionTimeLive;
14385
+ }
14386
+ export interface DashboardV2WidgetGroupDefinitionWidgetPointPlotDefinitionTimeFixed {
14387
+ /**
14388
+ * Start time in seconds since epoch.
14389
+ */
14390
+ from: number;
14391
+ /**
14392
+ * End time in seconds since epoch.
14393
+ */
14394
+ to: number;
14395
+ }
14396
+ export interface DashboardV2WidgetGroupDefinitionWidgetPointPlotDefinitionTimeLive {
14397
+ /**
14398
+ * Unit of the time span. Valid values are `minute`, `hour`, `day`, `week`, `month`, `year`.
14399
+ */
14400
+ unit: string;
14401
+ /**
14402
+ * Value of the time span.
14403
+ */
14404
+ value: number;
14405
+ }
14406
+ export interface DashboardV2WidgetGroupDefinitionWidgetPointPlotDefinitionYaxis {
14407
+ /**
14408
+ * Set to `true` to include zero.
14409
+ */
14410
+ includeZero?: boolean;
14411
+ /**
14412
+ * The label of the axis to display on the graph. Only usable on Scatterplot Widgets.
14413
+ */
14414
+ label?: string;
14415
+ /**
14416
+ * Specifies the maximum numeric value to show on the axis. Defaults to `auto`.
14417
+ */
14418
+ max?: string;
14419
+ /**
14420
+ * Specifies the minimum numeric value to show on the axis. Defaults to `auto`.
14421
+ */
14422
+ min?: string;
14423
+ /**
14424
+ * Specifies the scale type. Possible values are `linear`, `log`, `sqrt`, and `pow##` (for example `pow2` or `pow0.5`).
14425
+ */
14426
+ scale?: string;
14427
+ }
14212
14428
  export interface DashboardV2WidgetGroupDefinitionWidgetQueryTableDefinition {
14213
14429
  /**
14214
14430
  * A nested block describing a custom link. Multiple `customLink` blocks are allowed using the structure below.
@@ -29959,6 +30175,214 @@ export interface DashboardV2WidgetNoteDefinitionTimeLive {
29959
30175
  */
29960
30176
  value: number;
29961
30177
  }
30178
+ export interface DashboardV2WidgetPointPlotDefinition {
30179
+ /**
30180
+ * A nested block describing a custom link. Multiple `customLink` blocks are allowed using the structure below.
30181
+ */
30182
+ customLinks?: outputs.DashboardV2WidgetPointPlotDefinitionCustomLink[];
30183
+ /**
30184
+ * The description of the widget.
30185
+ */
30186
+ description?: string;
30187
+ /**
30188
+ * Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
30189
+ */
30190
+ hideIncompleteCostData: boolean;
30191
+ /**
30192
+ * Legend configuration for the widget.
30193
+ */
30194
+ legend?: outputs.DashboardV2WidgetPointPlotDefinitionLegend;
30195
+ /**
30196
+ * The timeframe to use when displaying the widget. Valid values are `1m`, `5m`, `10m`, `15m`, `30m`, `1h`, `4h`, `1d`, `2d`, `1w`, `1mo`, `3mo`, `6mo`, `weekToDate`, `monthToDate`, `1y`, `alert`.
30197
+ */
30198
+ liveSpan?: string;
30199
+ /**
30200
+ * A nested block describing a marker to use when displaying the widget. Multiple `marker` blocks are allowed.
30201
+ */
30202
+ markers?: outputs.DashboardV2WidgetPointPlotDefinitionMarker[];
30203
+ /**
30204
+ * A nested block describing the request to use when displaying the widget.
30205
+ */
30206
+ requests?: outputs.DashboardV2WidgetPointPlotDefinitionRequest[];
30207
+ /**
30208
+ * A nested block used to specify a time span for the widget. Use this or `liveSpan`, not both.
30209
+ */
30210
+ time?: outputs.DashboardV2WidgetPointPlotDefinitionTime;
30211
+ /**
30212
+ * The title of the widget.
30213
+ */
30214
+ title?: string;
30215
+ /**
30216
+ * The alignment of the widget's title. Valid values are `center`, `left`, `right`.
30217
+ */
30218
+ titleAlign?: string;
30219
+ /**
30220
+ * The size of the widget's title (defaults to 16).
30221
+ */
30222
+ titleSize?: string;
30223
+ /**
30224
+ * A nested block describing the Y-Axis Controls. The structure of this block is described below.
30225
+ */
30226
+ yaxis?: outputs.DashboardV2WidgetPointPlotDefinitionYaxis;
30227
+ }
30228
+ export interface DashboardV2WidgetPointPlotDefinitionCustomLink {
30229
+ /**
30230
+ * The flag for toggling context menu link visibility.
30231
+ */
30232
+ isHidden?: boolean;
30233
+ /**
30234
+ * The label for the custom link URL. Keep the label short and descriptive. Use metrics and tags as variables.
30235
+ */
30236
+ label?: string;
30237
+ /**
30238
+ * The URL of the custom link. URL must include `http` or `https`. A relative URL must start with `/`.
30239
+ */
30240
+ link?: string;
30241
+ /**
30242
+ * The label ID that refers to a context menu link. Can be `logs`, `hosts`, `traces`, `profiles`, `processes`, `containers`, or `rum`.
30243
+ */
30244
+ overrideLabel?: string;
30245
+ }
30246
+ export interface DashboardV2WidgetPointPlotDefinitionLegend {
30247
+ /**
30248
+ * Type of legend to show for the point plot widget. Valid values are `automatic`, `none`.
30249
+ */
30250
+ type: string;
30251
+ }
30252
+ export interface DashboardV2WidgetPointPlotDefinitionMarker {
30253
+ /**
30254
+ * Combination of a severity (`error`, `warning`, `ok`, or `info`) and a line type (`dashed`, `solid`, or `bold`). For Distribution widgets, this can be set to `percentile`. Example: `error dashed`.
30255
+ */
30256
+ displayType?: string;
30257
+ /**
30258
+ * Label to display over the marker.
30259
+ */
30260
+ label?: string;
30261
+ /**
30262
+ * Timestamp for the marker position.
30263
+ */
30264
+ time?: string;
30265
+ /**
30266
+ * Value to apply. Can be a single value `y = 15` or a range of values `0 < y < 10`. For Distribution widgets with `displayType` set to `percentile`, this should be a numeric percentile value (for example, `90` for P90).
30267
+ */
30268
+ value: string;
30269
+ }
30270
+ export interface DashboardV2WidgetPointPlotDefinitionRequest {
30271
+ /**
30272
+ * Maximum number of data points to return.
30273
+ */
30274
+ limit?: number;
30275
+ /**
30276
+ * Projection configuration for the point plot request.
30277
+ */
30278
+ projection: outputs.DashboardV2WidgetPointPlotDefinitionRequestProjection;
30279
+ /**
30280
+ * Query configuration for the point plot request.
30281
+ */
30282
+ query: outputs.DashboardV2WidgetPointPlotDefinitionRequestQuery;
30283
+ /**
30284
+ * The type of data request. Must be `dataProjection`. Valid values are `dataProjection`.
30285
+ */
30286
+ requestType: string;
30287
+ }
30288
+ export interface DashboardV2WidgetPointPlotDefinitionRequestProjection {
30289
+ /**
30290
+ * List of dimension mappings for the projection.
30291
+ */
30292
+ dimensions: outputs.DashboardV2WidgetPointPlotDefinitionRequestProjectionDimension[];
30293
+ /**
30294
+ * Additional columns to include in the projection.
30295
+ */
30296
+ extraColumns?: string[];
30297
+ /**
30298
+ * Type of the projection. Must be `pointPlot`. Valid values are `pointPlot`.
30299
+ */
30300
+ type: string;
30301
+ }
30302
+ export interface DashboardV2WidgetPointPlotDefinitionRequestProjectionDimension {
30303
+ /**
30304
+ * Alias for the column.
30305
+ */
30306
+ alias?: string;
30307
+ /**
30308
+ * Source column name from the dataset.
30309
+ */
30310
+ column: string;
30311
+ /**
30312
+ * Dimension of the point plot. Valid values are `group`, `time`, `y`, `radius`.
30313
+ */
30314
+ dimension: string;
30315
+ }
30316
+ export interface DashboardV2WidgetPointPlotDefinitionRequestQuery {
30317
+ /**
30318
+ * Data source for the query (for example, `logs`).
30319
+ */
30320
+ dataSource: string;
30321
+ /**
30322
+ * List of indexes to query.
30323
+ */
30324
+ indexes?: string[];
30325
+ /**
30326
+ * The query string to filter events.
30327
+ */
30328
+ queryString: string;
30329
+ /**
30330
+ * Storage location for the query.
30331
+ */
30332
+ storage?: string;
30333
+ }
30334
+ export interface DashboardV2WidgetPointPlotDefinitionTime {
30335
+ /**
30336
+ * A fixed time range with explicit start and end times.
30337
+ */
30338
+ fixed?: outputs.DashboardV2WidgetPointPlotDefinitionTimeFixed;
30339
+ /**
30340
+ * An arbitrary live time span, such as 17 minutes or 6 hours.
30341
+ */
30342
+ live?: outputs.DashboardV2WidgetPointPlotDefinitionTimeLive;
30343
+ }
30344
+ export interface DashboardV2WidgetPointPlotDefinitionTimeFixed {
30345
+ /**
30346
+ * Start time in seconds since epoch.
30347
+ */
30348
+ from: number;
30349
+ /**
30350
+ * End time in seconds since epoch.
30351
+ */
30352
+ to: number;
30353
+ }
30354
+ export interface DashboardV2WidgetPointPlotDefinitionTimeLive {
30355
+ /**
30356
+ * Unit of the time span. Valid values are `minute`, `hour`, `day`, `week`, `month`, `year`.
30357
+ */
30358
+ unit: string;
30359
+ /**
30360
+ * Value of the time span.
30361
+ */
30362
+ value: number;
30363
+ }
30364
+ export interface DashboardV2WidgetPointPlotDefinitionYaxis {
30365
+ /**
30366
+ * Set to `true` to include zero.
30367
+ */
30368
+ includeZero?: boolean;
30369
+ /**
30370
+ * The label of the axis to display on the graph. Only usable on Scatterplot Widgets.
30371
+ */
30372
+ label?: string;
30373
+ /**
30374
+ * Specifies the maximum numeric value to show on the axis. Defaults to `auto`.
30375
+ */
30376
+ max?: string;
30377
+ /**
30378
+ * Specifies the minimum numeric value to show on the axis. Defaults to `auto`.
30379
+ */
30380
+ min?: string;
30381
+ /**
30382
+ * Specifies the scale type. Possible values are `linear`, `log`, `sqrt`, and `pow##` (for example `pow2` or `pow0.5`).
30383
+ */
30384
+ scale?: string;
30385
+ }
29962
30386
  export interface DashboardV2WidgetPowerpackDefinition {
29963
30387
  /**
29964
30388
  * The background color of the powerpack title.
@@ -64277,6 +64701,10 @@ export interface LogsCustomPipelineProcessor {
64277
64701
  * Arithmetic Processor. More information can be found in the [official docs](https://docs.datadoghq.com/logs/processing/processors/?tab=ui#arithmetic-processor)
64278
64702
  */
64279
64703
  arithmeticProcessor?: outputs.LogsCustomPipelineProcessorArithmeticProcessor;
64704
+ /**
64705
+ * Array-Map Processor. More information can be found in the [official docs](https://docs.datadoghq.com/logs/log_configuration/processors/?tab=ui#array-map-processor)
64706
+ */
64707
+ arrayMapProcessor?: outputs.LogsCustomPipelineProcessorArrayMapProcessor;
64280
64708
  /**
64281
64709
  * Array Processor. More information can be found in the [official docs](https://docs.datadoghq.com/logs/processing/processors/?tab=ui#array-processor)
64282
64710
  */
@@ -64373,6 +64801,139 @@ export interface LogsCustomPipelineProcessorArithmeticProcessor {
64373
64801
  */
64374
64802
  target: string;
64375
64803
  }
64804
+ export interface LogsCustomPipelineProcessorArrayMapProcessor {
64805
+ /**
64806
+ * If the processor is enabled.
64807
+ */
64808
+ isEnabled?: boolean;
64809
+ /**
64810
+ * Name of the processor.
64811
+ */
64812
+ name?: string;
64813
+ /**
64814
+ * Remove or preserve the source array after processing. Defaults to `true`.
64815
+ */
64816
+ preserveSource?: boolean;
64817
+ /**
64818
+ * Sub-processors applied to each element. Allowed types: attribute*remapper, string*builder*processor, arithmetic*processor, category*processor.
64819
+ */
64820
+ processors: outputs.LogsCustomPipelineProcessorArrayMapProcessorProcessor[];
64821
+ /**
64822
+ * Attribute path of the source array.
64823
+ */
64824
+ source: string;
64825
+ /**
64826
+ * Attribute path of the output array.
64827
+ */
64828
+ target: string;
64829
+ }
64830
+ export interface LogsCustomPipelineProcessorArrayMapProcessorProcessor {
64831
+ /**
64832
+ * Array-map arithmetic sub-processor.
64833
+ */
64834
+ arithmeticProcessor?: outputs.LogsCustomPipelineProcessorArrayMapProcessorProcessorArithmeticProcessor;
64835
+ /**
64836
+ * Array-map attribute remapper sub-processor.
64837
+ */
64838
+ attributeRemapper?: outputs.LogsCustomPipelineProcessorArrayMapProcessorProcessorAttributeRemapper;
64839
+ /**
64840
+ * Array-map category sub-processor.
64841
+ */
64842
+ categoryProcessor?: outputs.LogsCustomPipelineProcessorArrayMapProcessorProcessorCategoryProcessor;
64843
+ /**
64844
+ * Array-map string builder sub-processor.
64845
+ */
64846
+ stringBuilderProcessor?: outputs.LogsCustomPipelineProcessorArrayMapProcessorProcessorStringBuilderProcessor;
64847
+ }
64848
+ export interface LogsCustomPipelineProcessorArrayMapProcessorProcessorArithmeticProcessor {
64849
+ /**
64850
+ * Arithmetic formula.
64851
+ */
64852
+ expression: string;
64853
+ /**
64854
+ * Replace missing attributes with `0`.
64855
+ */
64856
+ isReplaceMissing?: boolean;
64857
+ /**
64858
+ * Name of the sub-processor.
64859
+ */
64860
+ name?: string;
64861
+ /**
64862
+ * Target attribute path for the result.
64863
+ */
64864
+ target: string;
64865
+ }
64866
+ export interface LogsCustomPipelineProcessorArrayMapProcessorProcessorAttributeRemapper {
64867
+ /**
64868
+ * Name of the sub-processor.
64869
+ */
64870
+ name?: string;
64871
+ /**
64872
+ * Override the target element if already set.
64873
+ */
64874
+ overrideOnConflict?: boolean;
64875
+ /**
64876
+ * Remove or preserve the remapped source element. Defaults to `false`.
64877
+ */
64878
+ preserveSource?: boolean;
64879
+ /**
64880
+ * List of source attributes.
64881
+ */
64882
+ sources: string[];
64883
+ /**
64884
+ * Target attribute path.
64885
+ */
64886
+ target: string;
64887
+ /**
64888
+ * If the target type is an attribute, cast the value to a new type (auto, string, integer, double).
64889
+ */
64890
+ targetFormat?: string;
64891
+ }
64892
+ export interface LogsCustomPipelineProcessorArrayMapProcessorProcessorCategoryProcessor {
64893
+ /**
64894
+ * List of filters to match or exclude a log.
64895
+ */
64896
+ categories: outputs.LogsCustomPipelineProcessorArrayMapProcessorProcessorCategoryProcessorCategory[];
64897
+ /**
64898
+ * Name of the sub-processor.
64899
+ */
64900
+ name?: string;
64901
+ /**
64902
+ * Target attribute path for the category value.
64903
+ */
64904
+ target: string;
64905
+ }
64906
+ export interface LogsCustomPipelineProcessorArrayMapProcessorProcessorCategoryProcessorCategory {
64907
+ filter: outputs.LogsCustomPipelineProcessorArrayMapProcessorProcessorCategoryProcessorCategoryFilter;
64908
+ /**
64909
+ * Name of the category.
64910
+ */
64911
+ name: string;
64912
+ }
64913
+ export interface LogsCustomPipelineProcessorArrayMapProcessorProcessorCategoryProcessorCategoryFilter {
64914
+ /**
64915
+ * Filter criteria of the category.
64916
+ */
64917
+ query: string;
64918
+ }
64919
+ export interface LogsCustomPipelineProcessorArrayMapProcessorProcessorStringBuilderProcessor {
64920
+ /**
64921
+ * Replace missing attributes with an empty string.
64922
+ */
64923
+ isReplaceMissing?: boolean;
64924
+ /**
64925
+ * Name of the sub-processor.
64926
+ */
64927
+ name?: string;
64928
+ /**
64929
+ * Target attribute path for the result.
64930
+ */
64931
+ target: string;
64932
+ /**
64933
+ * Formula with one or more attributes and raw text.
64934
+ */
64935
+ template: string;
64936
+ }
64376
64937
  export interface LogsCustomPipelineProcessorArrayProcessor {
64377
64938
  /**
64378
64939
  * Boolean value to enable your processor.
@@ -64655,6 +65216,10 @@ export interface LogsCustomPipelineProcessorPipelineProcessor {
64655
65216
  * Arithmetic Processor. More information can be found in the [official docs](https://docs.datadoghq.com/logs/processing/processors/?tab=ui#arithmetic-processor)
64656
65217
  */
64657
65218
  arithmeticProcessor?: outputs.LogsCustomPipelineProcessorPipelineProcessorArithmeticProcessor;
65219
+ /**
65220
+ * Array-Map Processor. More information can be found in the [official docs](https://docs.datadoghq.com/logs/log_configuration/processors/?tab=ui#array-map-processor)
65221
+ */
65222
+ arrayMapProcessor?: outputs.LogsCustomPipelineProcessorPipelineProcessorArrayMapProcessor;
64658
65223
  /**
64659
65224
  * Array Processor. More information can be found in the [official docs](https://docs.datadoghq.com/logs/processing/processors/?tab=ui#array-processor)
64660
65225
  */
@@ -64750,6 +65315,139 @@ export interface LogsCustomPipelineProcessorPipelineProcessorArithmeticProcessor
64750
65315
  */
64751
65316
  target: string;
64752
65317
  }
65318
+ export interface LogsCustomPipelineProcessorPipelineProcessorArrayMapProcessor {
65319
+ /**
65320
+ * If the processor is enabled.
65321
+ */
65322
+ isEnabled?: boolean;
65323
+ /**
65324
+ * Name of the processor.
65325
+ */
65326
+ name?: string;
65327
+ /**
65328
+ * Remove or preserve the source array after processing. Defaults to `true`.
65329
+ */
65330
+ preserveSource?: boolean;
65331
+ /**
65332
+ * Sub-processors applied to each element. Allowed types: attribute*remapper, string*builder*processor, arithmetic*processor, category*processor.
65333
+ */
65334
+ processors: outputs.LogsCustomPipelineProcessorPipelineProcessorArrayMapProcessorProcessor[];
65335
+ /**
65336
+ * Attribute path of the source array.
65337
+ */
65338
+ source: string;
65339
+ /**
65340
+ * Attribute path of the output array.
65341
+ */
65342
+ target: string;
65343
+ }
65344
+ export interface LogsCustomPipelineProcessorPipelineProcessorArrayMapProcessorProcessor {
65345
+ /**
65346
+ * Array-map arithmetic sub-processor.
65347
+ */
65348
+ arithmeticProcessor?: outputs.LogsCustomPipelineProcessorPipelineProcessorArrayMapProcessorProcessorArithmeticProcessor;
65349
+ /**
65350
+ * Array-map attribute remapper sub-processor.
65351
+ */
65352
+ attributeRemapper?: outputs.LogsCustomPipelineProcessorPipelineProcessorArrayMapProcessorProcessorAttributeRemapper;
65353
+ /**
65354
+ * Array-map category sub-processor.
65355
+ */
65356
+ categoryProcessor?: outputs.LogsCustomPipelineProcessorPipelineProcessorArrayMapProcessorProcessorCategoryProcessor;
65357
+ /**
65358
+ * Array-map string builder sub-processor.
65359
+ */
65360
+ stringBuilderProcessor?: outputs.LogsCustomPipelineProcessorPipelineProcessorArrayMapProcessorProcessorStringBuilderProcessor;
65361
+ }
65362
+ export interface LogsCustomPipelineProcessorPipelineProcessorArrayMapProcessorProcessorArithmeticProcessor {
65363
+ /**
65364
+ * Arithmetic formula.
65365
+ */
65366
+ expression: string;
65367
+ /**
65368
+ * Replace missing attributes with `0`.
65369
+ */
65370
+ isReplaceMissing?: boolean;
65371
+ /**
65372
+ * Name of the sub-processor.
65373
+ */
65374
+ name?: string;
65375
+ /**
65376
+ * Target attribute path for the result.
65377
+ */
65378
+ target: string;
65379
+ }
65380
+ export interface LogsCustomPipelineProcessorPipelineProcessorArrayMapProcessorProcessorAttributeRemapper {
65381
+ /**
65382
+ * Name of the sub-processor.
65383
+ */
65384
+ name?: string;
65385
+ /**
65386
+ * Override the target element if already set.
65387
+ */
65388
+ overrideOnConflict?: boolean;
65389
+ /**
65390
+ * Remove or preserve the remapped source element. Defaults to `false`.
65391
+ */
65392
+ preserveSource?: boolean;
65393
+ /**
65394
+ * List of source attributes.
65395
+ */
65396
+ sources: string[];
65397
+ /**
65398
+ * Target attribute path.
65399
+ */
65400
+ target: string;
65401
+ /**
65402
+ * If the target type is an attribute, cast the value to a new type (auto, string, integer, double).
65403
+ */
65404
+ targetFormat?: string;
65405
+ }
65406
+ export interface LogsCustomPipelineProcessorPipelineProcessorArrayMapProcessorProcessorCategoryProcessor {
65407
+ /**
65408
+ * List of filters to match or exclude a log.
65409
+ */
65410
+ categories: outputs.LogsCustomPipelineProcessorPipelineProcessorArrayMapProcessorProcessorCategoryProcessorCategory[];
65411
+ /**
65412
+ * Name of the sub-processor.
65413
+ */
65414
+ name?: string;
65415
+ /**
65416
+ * Target attribute path for the category value.
65417
+ */
65418
+ target: string;
65419
+ }
65420
+ export interface LogsCustomPipelineProcessorPipelineProcessorArrayMapProcessorProcessorCategoryProcessorCategory {
65421
+ filter: outputs.LogsCustomPipelineProcessorPipelineProcessorArrayMapProcessorProcessorCategoryProcessorCategoryFilter;
65422
+ /**
65423
+ * Name of the category.
65424
+ */
65425
+ name: string;
65426
+ }
65427
+ export interface LogsCustomPipelineProcessorPipelineProcessorArrayMapProcessorProcessorCategoryProcessorCategoryFilter {
65428
+ /**
65429
+ * Filter criteria of the category.
65430
+ */
65431
+ query: string;
65432
+ }
65433
+ export interface LogsCustomPipelineProcessorPipelineProcessorArrayMapProcessorProcessorStringBuilderProcessor {
65434
+ /**
65435
+ * Replace missing attributes with an empty string.
65436
+ */
65437
+ isReplaceMissing?: boolean;
65438
+ /**
65439
+ * Name of the sub-processor.
65440
+ */
65441
+ name?: string;
65442
+ /**
65443
+ * Target attribute path for the result.
65444
+ */
65445
+ target: string;
65446
+ /**
65447
+ * Formula with one or more attributes and raw text.
65448
+ */
65449
+ template: string;
65450
+ }
64753
65451
  export interface LogsCustomPipelineProcessorPipelineProcessorArrayProcessor {
64754
65452
  /**
64755
65453
  * Boolean value to enable your processor.
@@ -66670,7 +67368,7 @@ export interface ObservabilityPipelineConfig {
66670
67368
  /**
66671
67369
  * Set to `true` to continue using the legacy search syntax while migrating filter queries. After migrating all queries to the new syntax, set to `false`. The legacy syntax is deprecated and will eventually be removed. Requires Observability Pipelines Worker 2.11 or later. Only applies to `logs` pipelines. This field is ignored for `metrics` pipelines. See https://docs.datadoghq.com/observability*pipelines/guide/upgrade*your*filter*queries*to*the*new*search_syntax/ for more information.
66672
67370
  */
66673
- useLegacySearchSyntax?: boolean;
67371
+ useLegacySearchSyntax: boolean;
66674
67372
  }
66675
67373
  export interface ObservabilityPipelineConfigDestination {
66676
67374
  /**
@@ -67192,6 +67890,10 @@ export interface ObservabilityPipelineConfigDestinationCloudPrem {
67192
67890
  * Name of the environment variable or secret that holds the endpoint URL.
67193
67891
  */
67194
67892
  endpointUrlKey?: string;
67893
+ /**
67894
+ * Configuration for enabling TLS encryption between the pipeline component and external services.
67895
+ */
67896
+ tls?: outputs.ObservabilityPipelineConfigDestinationCloudPremTls;
67195
67897
  }
67196
67898
  export interface ObservabilityPipelineConfigDestinationCloudPremBuffer {
67197
67899
  /**
@@ -67227,6 +67929,24 @@ export interface ObservabilityPipelineConfigDestinationCloudPremBufferMemory {
67227
67929
  */
67228
67930
  whenFull: string;
67229
67931
  }
67932
+ export interface ObservabilityPipelineConfigDestinationCloudPremTls {
67933
+ /**
67934
+ * Path to the Certificate Authority (CA) file used to validate the server's TLS certificate.
67935
+ */
67936
+ caFile?: string;
67937
+ /**
67938
+ * Path to the TLS client certificate file used to authenticate the pipeline component with upstream or downstream services.
67939
+ */
67940
+ crtFile: string;
67941
+ /**
67942
+ * Path to the private key file associated with the TLS client certificate. Used for mutual TLS authentication.
67943
+ */
67944
+ keyFile?: string;
67945
+ /**
67946
+ * Name of the environment variable or secret that holds the passphrase for the private key file.
67947
+ */
67948
+ keyPassKey?: string;
67949
+ }
67230
67950
  export interface ObservabilityPipelineConfigDestinationCrowdstrikeNextGenSiem {
67231
67951
  /**
67232
67952
  * Configuration for buffer settings on destination components. Exactly one of `disk` or `memory` must be specified.
@@ -68788,6 +69508,14 @@ export interface ObservabilityPipelineConfigProcessorGroupProcessor {
68788
69508
  * The `addHostname` processor adds the hostname to log events.
68789
69509
  */
68790
69510
  addHostname?: outputs.ObservabilityPipelineConfigProcessorGroupProcessorAddHostname;
69511
+ /**
69512
+ * The `addMetricTags` processor adds static tags to metrics.
69513
+ */
69514
+ addMetricTags?: outputs.ObservabilityPipelineConfigProcessorGroupProcessorAddMetricTags;
69515
+ /**
69516
+ * The `aggregate` processor combines metrics that share the same name and tags into a single metric over a configurable interval.
69517
+ */
69518
+ aggregate?: outputs.ObservabilityPipelineConfigProcessorGroupProcessorAggregate;
68791
69519
  /**
68792
69520
  * The `customProcessor` processor transforms events using Vector Remap Language (VRL) scripts with advanced filtering capabilities.
68793
69521
  */
@@ -68865,6 +69593,10 @@ export interface ObservabilityPipelineConfigProcessorGroupProcessor {
68865
69593
  * The `renameFields` processor changes field names.
68866
69594
  */
68867
69595
  renameFields?: outputs.ObservabilityPipelineConfigProcessorGroupProcessorRenameFields;
69596
+ /**
69597
+ * The `renameMetricTags` processor changes the keys of tags on metrics.
69598
+ */
69599
+ renameMetricTags?: outputs.ObservabilityPipelineConfigProcessorGroupProcessorRenameMetricTags;
68868
69600
  /**
68869
69601
  * The `sample` processor allows probabilistic sampling of logs at a fixed rate.
68870
69602
  */
@@ -68877,6 +69609,10 @@ export interface ObservabilityPipelineConfigProcessorGroupProcessor {
68877
69609
  * The `splitArray` processor splits array fields into separate events based on configured rules.
68878
69610
  */
68879
69611
  splitArray?: outputs.ObservabilityPipelineConfigProcessorGroupProcessorSplitArray;
69612
+ /**
69613
+ * The `tagCardinalityLimit` processor caps the number of distinct tag value combinations on metrics, dropping tags or events once the limit is exceeded.
69614
+ */
69615
+ tagCardinalityLimit?: outputs.ObservabilityPipelineConfigProcessorGroupProcessorTagCardinalityLimit;
68880
69616
  /**
68881
69617
  * The `throttle` processor limits the number of events that pass through over a given time window.
68882
69618
  */
@@ -68916,6 +69652,32 @@ export interface ObservabilityPipelineConfigProcessorGroupProcessorAddFieldsFiel
68916
69652
  }
68917
69653
  export interface ObservabilityPipelineConfigProcessorGroupProcessorAddHostname {
68918
69654
  }
69655
+ export interface ObservabilityPipelineConfigProcessorGroupProcessorAddMetricTags {
69656
+ /**
69657
+ * A list of static tags to add to each metric. Up to 15 tags may be defined.
69658
+ */
69659
+ tags: outputs.ObservabilityPipelineConfigProcessorGroupProcessorAddMetricTagsTag[];
69660
+ }
69661
+ export interface ObservabilityPipelineConfigProcessorGroupProcessorAddMetricTagsTag {
69662
+ /**
69663
+ * The tag name.
69664
+ */
69665
+ name: string;
69666
+ /**
69667
+ * The tag value.
69668
+ */
69669
+ value: string;
69670
+ }
69671
+ export interface ObservabilityPipelineConfigProcessorGroupProcessorAggregate {
69672
+ /**
69673
+ * The interval, in seconds, over which metrics are aggregated. Must be between 1 and 60. Value must be between 1 and 60.
69674
+ */
69675
+ intervalSecs: number;
69676
+ /**
69677
+ * The aggregation mode. One of `auto`, `sum`, `latest`, `count`, `max`, `min`, `mean`. Valid values are `auto`, `sum`, `latest`, `count`, `max`, `min`, `mean`.
69678
+ */
69679
+ mode: string;
69680
+ }
68919
69681
  export interface ObservabilityPipelineConfigProcessorGroupProcessorCustomProcessor {
68920
69682
  /**
68921
69683
  * Array of VRL remap configurations. Each remap defines a transformation rule with its own filter and VRL script.
@@ -69486,6 +70248,22 @@ export interface ObservabilityPipelineConfigProcessorGroupProcessorRenameFieldsF
69486
70248
  */
69487
70249
  source: string;
69488
70250
  }
70251
+ export interface ObservabilityPipelineConfigProcessorGroupProcessorRenameMetricTags {
70252
+ /**
70253
+ * A list of rename rules. Up to 15 tags may be defined.
70254
+ */
70255
+ tags: outputs.ObservabilityPipelineConfigProcessorGroupProcessorRenameMetricTagsTag[];
70256
+ }
70257
+ export interface ObservabilityPipelineConfigProcessorGroupProcessorRenameMetricTagsTag {
70258
+ /**
70259
+ * The new tag key to assign in place of the original.
70260
+ */
70261
+ renameTo: string;
70262
+ /**
70263
+ * The original tag key on the metric event.
70264
+ */
70265
+ tag: string;
70266
+ }
69489
70267
  export interface ObservabilityPipelineConfigProcessorGroupProcessorSample {
69490
70268
  /**
69491
70269
  * Optional list of fields to group events by. Each group is sampled independently.
@@ -69646,6 +70424,56 @@ export interface ObservabilityPipelineConfigProcessorGroupProcessorSplitArrayArr
69646
70424
  */
69647
70425
  include: string;
69648
70426
  }
70427
+ export interface ObservabilityPipelineConfigProcessorGroupProcessorTagCardinalityLimit {
70428
+ /**
70429
+ * The default action to take when the cardinality limit is exceeded. One of `dropTag`, `dropEvent`. Valid values are `dropTag`, `dropEvent`.
70430
+ */
70431
+ limitExceededAction: string;
70432
+ /**
70433
+ * Per-metric cardinality overrides that take precedence over the default `valueLimit`.
70434
+ */
70435
+ perMetricLimits?: outputs.ObservabilityPipelineConfigProcessorGroupProcessorTagCardinalityLimitPerMetricLimit[];
70436
+ /**
70437
+ * The default maximum number of distinct tag value combinations allowed per metric. Between 0 and 1000000. Value must be between 0 and 1000000.
70438
+ */
70439
+ valueLimit: number;
70440
+ }
70441
+ export interface ObservabilityPipelineConfigProcessorGroupProcessorTagCardinalityLimitPerMetricLimit {
70442
+ /**
70443
+ * The action to take on this metric when the limit is exceeded. Required when `mode` is `tracked`; must be omitted when `mode` is `excluded`. Valid values are `dropTag`, `dropEvent`.
70444
+ */
70445
+ limitExceededAction?: string;
70446
+ /**
70447
+ * The metric name this override applies to.
70448
+ */
70449
+ metricName: string;
70450
+ /**
70451
+ * How the per-metric override is applied. One of `tracked`, `excluded`. Valid values are `tracked`, `excluded`.
70452
+ */
70453
+ mode: string;
70454
+ /**
70455
+ * Per-tag cardinality overrides that apply within this metric. Must be omitted when `mode` is `excluded`.
70456
+ */
70457
+ perTagLimits?: outputs.ObservabilityPipelineConfigProcessorGroupProcessorTagCardinalityLimitPerMetricLimitPerTagLimit[];
70458
+ /**
70459
+ * The cardinality cap for this metric. Required when `mode` is `tracked`; must be omitted when `mode` is `excluded`. Value must be between 0 and 1000000.
70460
+ */
70461
+ valueLimit?: number;
70462
+ }
70463
+ export interface ObservabilityPipelineConfigProcessorGroupProcessorTagCardinalityLimitPerMetricLimitPerTagLimit {
70464
+ /**
70465
+ * How the per-tag override is applied. One of `limitOverride`, `excluded`. Valid values are `limitOverride`, `excluded`.
70466
+ */
70467
+ mode: string;
70468
+ /**
70469
+ * The tag key this override applies to.
70470
+ */
70471
+ tagKey: string;
70472
+ /**
70473
+ * The cardinality cap for this tag. Required when `mode` is `limitOverride`; must be omitted when `mode` is `excluded`. Value must be between 0 and 1000000.
70474
+ */
70475
+ valueLimit?: number;
70476
+ }
69649
70477
  export interface ObservabilityPipelineConfigProcessorGroupProcessorThrottle {
69650
70478
  /**
69651
70479
  * Optional list of fields used to group events before applying throttling.
@@ -70956,6 +71784,10 @@ export interface PowerpackV2Widget {
70956
71784
  * The definition for a Note widget.
70957
71785
  */
70958
71786
  noteDefinition?: outputs.PowerpackV2WidgetNoteDefinition;
71787
+ /**
71788
+ * The definition for a Point Plot widget.
71789
+ */
71790
+ pointPlotDefinition?: outputs.PowerpackV2WidgetPointPlotDefinition;
70959
71791
  /**
70960
71792
  * The definition for a Query Table widget.
70961
71793
  */
@@ -75910,6 +76742,10 @@ export interface PowerpackV2WidgetGroupDefinitionWidget {
75910
76742
  * The definition for a Note widget.
75911
76743
  */
75912
76744
  noteDefinition?: outputs.PowerpackV2WidgetGroupDefinitionWidgetNoteDefinition;
76745
+ /**
76746
+ * The definition for a Point Plot widget.
76747
+ */
76748
+ pointPlotDefinition?: outputs.PowerpackV2WidgetGroupDefinitionWidgetPointPlotDefinition;
75913
76749
  /**
75914
76750
  * The definition for a Query Table widget.
75915
76751
  */
@@ -84253,6 +85089,214 @@ export interface PowerpackV2WidgetGroupDefinitionWidgetNoteDefinitionTimeLive {
84253
85089
  */
84254
85090
  value: number;
84255
85091
  }
85092
+ export interface PowerpackV2WidgetGroupDefinitionWidgetPointPlotDefinition {
85093
+ /**
85094
+ * A nested block describing a custom link. Multiple `customLink` blocks are allowed using the structure below.
85095
+ */
85096
+ customLinks?: outputs.PowerpackV2WidgetGroupDefinitionWidgetPointPlotDefinitionCustomLink[];
85097
+ /**
85098
+ * The description of the widget.
85099
+ */
85100
+ description?: string;
85101
+ /**
85102
+ * Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
85103
+ */
85104
+ hideIncompleteCostData: boolean;
85105
+ /**
85106
+ * Legend configuration for the widget.
85107
+ */
85108
+ legend?: outputs.PowerpackV2WidgetGroupDefinitionWidgetPointPlotDefinitionLegend;
85109
+ /**
85110
+ * The timeframe to use when displaying the widget. Valid values are `1m`, `5m`, `10m`, `15m`, `30m`, `1h`, `4h`, `1d`, `2d`, `1w`, `1mo`, `3mo`, `6mo`, `weekToDate`, `monthToDate`, `1y`, `alert`.
85111
+ */
85112
+ liveSpan?: string;
85113
+ /**
85114
+ * A nested block describing a marker to use when displaying the widget. Multiple `marker` blocks are allowed.
85115
+ */
85116
+ markers?: outputs.PowerpackV2WidgetGroupDefinitionWidgetPointPlotDefinitionMarker[];
85117
+ /**
85118
+ * A nested block describing the request to use when displaying the widget.
85119
+ */
85120
+ requests?: outputs.PowerpackV2WidgetGroupDefinitionWidgetPointPlotDefinitionRequest[];
85121
+ /**
85122
+ * A nested block used to specify a time span for the widget. Use this or `liveSpan`, not both.
85123
+ */
85124
+ time?: outputs.PowerpackV2WidgetGroupDefinitionWidgetPointPlotDefinitionTime;
85125
+ /**
85126
+ * The title of the widget.
85127
+ */
85128
+ title?: string;
85129
+ /**
85130
+ * The alignment of the widget's title. Valid values are `center`, `left`, `right`.
85131
+ */
85132
+ titleAlign?: string;
85133
+ /**
85134
+ * The size of the widget's title (defaults to 16).
85135
+ */
85136
+ titleSize?: string;
85137
+ /**
85138
+ * A nested block describing the Y-Axis Controls. The structure of this block is described below.
85139
+ */
85140
+ yaxis?: outputs.PowerpackV2WidgetGroupDefinitionWidgetPointPlotDefinitionYaxis;
85141
+ }
85142
+ export interface PowerpackV2WidgetGroupDefinitionWidgetPointPlotDefinitionCustomLink {
85143
+ /**
85144
+ * The flag for toggling context menu link visibility.
85145
+ */
85146
+ isHidden?: boolean;
85147
+ /**
85148
+ * The label for the custom link URL. Keep the label short and descriptive. Use metrics and tags as variables.
85149
+ */
85150
+ label?: string;
85151
+ /**
85152
+ * The URL of the custom link. URL must include `http` or `https`. A relative URL must start with `/`.
85153
+ */
85154
+ link?: string;
85155
+ /**
85156
+ * The label ID that refers to a context menu link. Can be `logs`, `hosts`, `traces`, `profiles`, `processes`, `containers`, or `rum`.
85157
+ */
85158
+ overrideLabel?: string;
85159
+ }
85160
+ export interface PowerpackV2WidgetGroupDefinitionWidgetPointPlotDefinitionLegend {
85161
+ /**
85162
+ * Type of legend to show for the point plot widget. Valid values are `automatic`, `none`.
85163
+ */
85164
+ type: string;
85165
+ }
85166
+ export interface PowerpackV2WidgetGroupDefinitionWidgetPointPlotDefinitionMarker {
85167
+ /**
85168
+ * Combination of a severity (`error`, `warning`, `ok`, or `info`) and a line type (`dashed`, `solid`, or `bold`). For Distribution widgets, this can be set to `percentile`. Example: `error dashed`.
85169
+ */
85170
+ displayType?: string;
85171
+ /**
85172
+ * Label to display over the marker.
85173
+ */
85174
+ label?: string;
85175
+ /**
85176
+ * Timestamp for the marker position.
85177
+ */
85178
+ time?: string;
85179
+ /**
85180
+ * Value to apply. Can be a single value `y = 15` or a range of values `0 < y < 10`. For Distribution widgets with `displayType` set to `percentile`, this should be a numeric percentile value (for example, `90` for P90).
85181
+ */
85182
+ value: string;
85183
+ }
85184
+ export interface PowerpackV2WidgetGroupDefinitionWidgetPointPlotDefinitionRequest {
85185
+ /**
85186
+ * Maximum number of data points to return.
85187
+ */
85188
+ limit?: number;
85189
+ /**
85190
+ * Projection configuration for the point plot request.
85191
+ */
85192
+ projection: outputs.PowerpackV2WidgetGroupDefinitionWidgetPointPlotDefinitionRequestProjection;
85193
+ /**
85194
+ * Query configuration for the point plot request.
85195
+ */
85196
+ query: outputs.PowerpackV2WidgetGroupDefinitionWidgetPointPlotDefinitionRequestQuery;
85197
+ /**
85198
+ * The type of data request. Must be `dataProjection`. Valid values are `dataProjection`.
85199
+ */
85200
+ requestType: string;
85201
+ }
85202
+ export interface PowerpackV2WidgetGroupDefinitionWidgetPointPlotDefinitionRequestProjection {
85203
+ /**
85204
+ * List of dimension mappings for the projection.
85205
+ */
85206
+ dimensions: outputs.PowerpackV2WidgetGroupDefinitionWidgetPointPlotDefinitionRequestProjectionDimension[];
85207
+ /**
85208
+ * Additional columns to include in the projection.
85209
+ */
85210
+ extraColumns?: string[];
85211
+ /**
85212
+ * Type of the projection. Must be `pointPlot`. Valid values are `pointPlot`.
85213
+ */
85214
+ type: string;
85215
+ }
85216
+ export interface PowerpackV2WidgetGroupDefinitionWidgetPointPlotDefinitionRequestProjectionDimension {
85217
+ /**
85218
+ * Alias for the column.
85219
+ */
85220
+ alias?: string;
85221
+ /**
85222
+ * Source column name from the dataset.
85223
+ */
85224
+ column: string;
85225
+ /**
85226
+ * Dimension of the point plot. Valid values are `group`, `time`, `y`, `radius`.
85227
+ */
85228
+ dimension: string;
85229
+ }
85230
+ export interface PowerpackV2WidgetGroupDefinitionWidgetPointPlotDefinitionRequestQuery {
85231
+ /**
85232
+ * Data source for the query (for example, `logs`).
85233
+ */
85234
+ dataSource: string;
85235
+ /**
85236
+ * List of indexes to query.
85237
+ */
85238
+ indexes?: string[];
85239
+ /**
85240
+ * The query string to filter events.
85241
+ */
85242
+ queryString: string;
85243
+ /**
85244
+ * Storage location for the query.
85245
+ */
85246
+ storage?: string;
85247
+ }
85248
+ export interface PowerpackV2WidgetGroupDefinitionWidgetPointPlotDefinitionTime {
85249
+ /**
85250
+ * A fixed time range with explicit start and end times.
85251
+ */
85252
+ fixed?: outputs.PowerpackV2WidgetGroupDefinitionWidgetPointPlotDefinitionTimeFixed;
85253
+ /**
85254
+ * An arbitrary live time span, such as 17 minutes or 6 hours.
85255
+ */
85256
+ live?: outputs.PowerpackV2WidgetGroupDefinitionWidgetPointPlotDefinitionTimeLive;
85257
+ }
85258
+ export interface PowerpackV2WidgetGroupDefinitionWidgetPointPlotDefinitionTimeFixed {
85259
+ /**
85260
+ * Start time in seconds since epoch.
85261
+ */
85262
+ from: number;
85263
+ /**
85264
+ * End time in seconds since epoch.
85265
+ */
85266
+ to: number;
85267
+ }
85268
+ export interface PowerpackV2WidgetGroupDefinitionWidgetPointPlotDefinitionTimeLive {
85269
+ /**
85270
+ * Unit of the time span. Valid values are `minute`, `hour`, `day`, `week`, `month`, `year`.
85271
+ */
85272
+ unit: string;
85273
+ /**
85274
+ * Value of the time span.
85275
+ */
85276
+ value: number;
85277
+ }
85278
+ export interface PowerpackV2WidgetGroupDefinitionWidgetPointPlotDefinitionYaxis {
85279
+ /**
85280
+ * Set to `true` to include zero.
85281
+ */
85282
+ includeZero?: boolean;
85283
+ /**
85284
+ * The label of the axis to display on the graph. Only usable on Scatterplot Widgets.
85285
+ */
85286
+ label?: string;
85287
+ /**
85288
+ * Specifies the maximum numeric value to show on the axis. Defaults to `auto`.
85289
+ */
85290
+ max?: string;
85291
+ /**
85292
+ * Specifies the minimum numeric value to show on the axis. Defaults to `auto`.
85293
+ */
85294
+ min?: string;
85295
+ /**
85296
+ * Specifies the scale type. Possible values are `linear`, `log`, `sqrt`, and `pow##` (for example `pow2` or `pow0.5`).
85297
+ */
85298
+ scale?: string;
85299
+ }
84256
85300
  export interface PowerpackV2WidgetGroupDefinitionWidgetQueryTableDefinition {
84257
85301
  /**
84258
85302
  * A nested block describing a custom link. Multiple `customLink` blocks are allowed using the structure below.
@@ -100003,6 +101047,214 @@ export interface PowerpackV2WidgetNoteDefinitionTimeLive {
100003
101047
  */
100004
101048
  value: number;
100005
101049
  }
101050
+ export interface PowerpackV2WidgetPointPlotDefinition {
101051
+ /**
101052
+ * A nested block describing a custom link. Multiple `customLink` blocks are allowed using the structure below.
101053
+ */
101054
+ customLinks?: outputs.PowerpackV2WidgetPointPlotDefinitionCustomLink[];
101055
+ /**
101056
+ * The description of the widget.
101057
+ */
101058
+ description?: string;
101059
+ /**
101060
+ * Hide any portion of the widget's timeframe that is incomplete due to cost data not being available.
101061
+ */
101062
+ hideIncompleteCostData: boolean;
101063
+ /**
101064
+ * Legend configuration for the widget.
101065
+ */
101066
+ legend?: outputs.PowerpackV2WidgetPointPlotDefinitionLegend;
101067
+ /**
101068
+ * The timeframe to use when displaying the widget. Valid values are `1m`, `5m`, `10m`, `15m`, `30m`, `1h`, `4h`, `1d`, `2d`, `1w`, `1mo`, `3mo`, `6mo`, `weekToDate`, `monthToDate`, `1y`, `alert`.
101069
+ */
101070
+ liveSpan?: string;
101071
+ /**
101072
+ * A nested block describing a marker to use when displaying the widget. Multiple `marker` blocks are allowed.
101073
+ */
101074
+ markers?: outputs.PowerpackV2WidgetPointPlotDefinitionMarker[];
101075
+ /**
101076
+ * A nested block describing the request to use when displaying the widget.
101077
+ */
101078
+ requests?: outputs.PowerpackV2WidgetPointPlotDefinitionRequest[];
101079
+ /**
101080
+ * A nested block used to specify a time span for the widget. Use this or `liveSpan`, not both.
101081
+ */
101082
+ time?: outputs.PowerpackV2WidgetPointPlotDefinitionTime;
101083
+ /**
101084
+ * The title of the widget.
101085
+ */
101086
+ title?: string;
101087
+ /**
101088
+ * The alignment of the widget's title. Valid values are `center`, `left`, `right`.
101089
+ */
101090
+ titleAlign?: string;
101091
+ /**
101092
+ * The size of the widget's title (defaults to 16).
101093
+ */
101094
+ titleSize?: string;
101095
+ /**
101096
+ * A nested block describing the Y-Axis Controls. The structure of this block is described below.
101097
+ */
101098
+ yaxis?: outputs.PowerpackV2WidgetPointPlotDefinitionYaxis;
101099
+ }
101100
+ export interface PowerpackV2WidgetPointPlotDefinitionCustomLink {
101101
+ /**
101102
+ * The flag for toggling context menu link visibility.
101103
+ */
101104
+ isHidden?: boolean;
101105
+ /**
101106
+ * The label for the custom link URL. Keep the label short and descriptive. Use metrics and tags as variables.
101107
+ */
101108
+ label?: string;
101109
+ /**
101110
+ * The URL of the custom link. URL must include `http` or `https`. A relative URL must start with `/`.
101111
+ */
101112
+ link?: string;
101113
+ /**
101114
+ * The label ID that refers to a context menu link. Can be `logs`, `hosts`, `traces`, `profiles`, `processes`, `containers`, or `rum`.
101115
+ */
101116
+ overrideLabel?: string;
101117
+ }
101118
+ export interface PowerpackV2WidgetPointPlotDefinitionLegend {
101119
+ /**
101120
+ * Type of legend to show for the point plot widget. Valid values are `automatic`, `none`.
101121
+ */
101122
+ type: string;
101123
+ }
101124
+ export interface PowerpackV2WidgetPointPlotDefinitionMarker {
101125
+ /**
101126
+ * Combination of a severity (`error`, `warning`, `ok`, or `info`) and a line type (`dashed`, `solid`, or `bold`). For Distribution widgets, this can be set to `percentile`. Example: `error dashed`.
101127
+ */
101128
+ displayType?: string;
101129
+ /**
101130
+ * Label to display over the marker.
101131
+ */
101132
+ label?: string;
101133
+ /**
101134
+ * Timestamp for the marker position.
101135
+ */
101136
+ time?: string;
101137
+ /**
101138
+ * Value to apply. Can be a single value `y = 15` or a range of values `0 < y < 10`. For Distribution widgets with `displayType` set to `percentile`, this should be a numeric percentile value (for example, `90` for P90).
101139
+ */
101140
+ value: string;
101141
+ }
101142
+ export interface PowerpackV2WidgetPointPlotDefinitionRequest {
101143
+ /**
101144
+ * Maximum number of data points to return.
101145
+ */
101146
+ limit?: number;
101147
+ /**
101148
+ * Projection configuration for the point plot request.
101149
+ */
101150
+ projection: outputs.PowerpackV2WidgetPointPlotDefinitionRequestProjection;
101151
+ /**
101152
+ * Query configuration for the point plot request.
101153
+ */
101154
+ query: outputs.PowerpackV2WidgetPointPlotDefinitionRequestQuery;
101155
+ /**
101156
+ * The type of data request. Must be `dataProjection`. Valid values are `dataProjection`.
101157
+ */
101158
+ requestType: string;
101159
+ }
101160
+ export interface PowerpackV2WidgetPointPlotDefinitionRequestProjection {
101161
+ /**
101162
+ * List of dimension mappings for the projection.
101163
+ */
101164
+ dimensions: outputs.PowerpackV2WidgetPointPlotDefinitionRequestProjectionDimension[];
101165
+ /**
101166
+ * Additional columns to include in the projection.
101167
+ */
101168
+ extraColumns?: string[];
101169
+ /**
101170
+ * Type of the projection. Must be `pointPlot`. Valid values are `pointPlot`.
101171
+ */
101172
+ type: string;
101173
+ }
101174
+ export interface PowerpackV2WidgetPointPlotDefinitionRequestProjectionDimension {
101175
+ /**
101176
+ * Alias for the column.
101177
+ */
101178
+ alias?: string;
101179
+ /**
101180
+ * Source column name from the dataset.
101181
+ */
101182
+ column: string;
101183
+ /**
101184
+ * Dimension of the point plot. Valid values are `group`, `time`, `y`, `radius`.
101185
+ */
101186
+ dimension: string;
101187
+ }
101188
+ export interface PowerpackV2WidgetPointPlotDefinitionRequestQuery {
101189
+ /**
101190
+ * Data source for the query (for example, `logs`).
101191
+ */
101192
+ dataSource: string;
101193
+ /**
101194
+ * List of indexes to query.
101195
+ */
101196
+ indexes?: string[];
101197
+ /**
101198
+ * The query string to filter events.
101199
+ */
101200
+ queryString: string;
101201
+ /**
101202
+ * Storage location for the query.
101203
+ */
101204
+ storage?: string;
101205
+ }
101206
+ export interface PowerpackV2WidgetPointPlotDefinitionTime {
101207
+ /**
101208
+ * A fixed time range with explicit start and end times.
101209
+ */
101210
+ fixed?: outputs.PowerpackV2WidgetPointPlotDefinitionTimeFixed;
101211
+ /**
101212
+ * An arbitrary live time span, such as 17 minutes or 6 hours.
101213
+ */
101214
+ live?: outputs.PowerpackV2WidgetPointPlotDefinitionTimeLive;
101215
+ }
101216
+ export interface PowerpackV2WidgetPointPlotDefinitionTimeFixed {
101217
+ /**
101218
+ * Start time in seconds since epoch.
101219
+ */
101220
+ from: number;
101221
+ /**
101222
+ * End time in seconds since epoch.
101223
+ */
101224
+ to: number;
101225
+ }
101226
+ export interface PowerpackV2WidgetPointPlotDefinitionTimeLive {
101227
+ /**
101228
+ * Unit of the time span. Valid values are `minute`, `hour`, `day`, `week`, `month`, `year`.
101229
+ */
101230
+ unit: string;
101231
+ /**
101232
+ * Value of the time span.
101233
+ */
101234
+ value: number;
101235
+ }
101236
+ export interface PowerpackV2WidgetPointPlotDefinitionYaxis {
101237
+ /**
101238
+ * Set to `true` to include zero.
101239
+ */
101240
+ includeZero?: boolean;
101241
+ /**
101242
+ * The label of the axis to display on the graph. Only usable on Scatterplot Widgets.
101243
+ */
101244
+ label?: string;
101245
+ /**
101246
+ * Specifies the maximum numeric value to show on the axis. Defaults to `auto`.
101247
+ */
101248
+ max?: string;
101249
+ /**
101250
+ * Specifies the minimum numeric value to show on the axis. Defaults to `auto`.
101251
+ */
101252
+ min?: string;
101253
+ /**
101254
+ * Specifies the scale type. Possible values are `linear`, `log`, `sqrt`, and `pow##` (for example `pow2` or `pow0.5`).
101255
+ */
101256
+ scale?: string;
101257
+ }
100006
101258
  export interface PowerpackV2WidgetQueryTableDefinition {
100007
101259
  /**
100008
101260
  * A nested block describing a custom link. Multiple `customLink` blocks are allowed using the structure below.
@@ -124555,6 +125807,100 @@ export interface SecureEmbedDashboardSelectableTemplateVar {
124555
125807
  */
124556
125808
  visibleTags: string[];
124557
125809
  }
125810
+ export interface SecurityFindingsDueDateRuleAction {
125811
+ /**
125812
+ * A list of severity-to-due-date mappings. Each severity may appear at most once.
125813
+ */
125814
+ dueDaysPerSeverities: outputs.SecurityFindingsDueDateRuleActionDueDaysPerSeverity[];
125815
+ /**
125816
+ * The reference point from which the due date is calculated. When `fixAvailable` is selected but not applicable to the finding type, `firstSeen` is used instead. Valid values are `firstSeen`, `fixAvailable`.
125817
+ */
125818
+ dueFrom: string;
125819
+ /**
125820
+ * An optional description providing more context for the due date assignment.
125821
+ */
125822
+ reasonDescription?: string;
125823
+ }
125824
+ export interface SecurityFindingsDueDateRuleActionDueDaysPerSeverity {
125825
+ /**
125826
+ * The number of days from the reference point until the finding is due.
125827
+ */
125828
+ dueInDays: number;
125829
+ /**
125830
+ * A severity level used to configure due date thresholds. Valid values are `critical`, `high`, `medium`, `low`, `info`, `none`, `unknown`.
125831
+ */
125832
+ severity: string;
125833
+ }
125834
+ export interface SecurityFindingsDueDateRuleRule {
125835
+ /**
125836
+ * The list of security finding types that the automation rule applies to. Valid values are `apiSecurity`, `attackPath`, `hostAndContainerVulnerability`, `iacMisconfiguration`, `identityRisk`, `libraryVulnerability`, `misconfiguration`, `runtimeCodeVulnerability`, `secret`, `staticCodeVulnerability`, `workloadActivity`.
125837
+ */
125838
+ findingTypes: string[];
125839
+ /**
125840
+ * A search query to further filter the findings matched by this rule. The `@workflow.*` namespace and `@status` fields are not permitted. For a reference of available fields, see the [Security Findings schema documentation](https://docs.datadoghq.com/security/guide/findings-schema/).
125841
+ */
125842
+ query?: string;
125843
+ }
125844
+ export interface SecurityFindingsMuteRuleAction {
125845
+ /**
125846
+ * The Unix timestamp in milliseconds at which the mute expires. If omitted, the mute does not expire.
125847
+ */
125848
+ expireAt?: number;
125849
+ /**
125850
+ * The reason for muting a security finding. Valid values are `duplicate`, `falsePositive`, `noFix`, `other`, `pendingFix`, `riskAccepted`.
125851
+ */
125852
+ reason: string;
125853
+ /**
125854
+ * An optional description providing more context for the mute reason.
125855
+ */
125856
+ reasonDescription?: string;
125857
+ }
125858
+ export interface SecurityFindingsMuteRuleRule {
125859
+ /**
125860
+ * The list of security finding types that the automation rule applies to. Valid values are `apiSecurity`, `attackPath`, `hostAndContainerVulnerability`, `iacMisconfiguration`, `identityRisk`, `libraryVulnerability`, `misconfiguration`, `runtimeCodeVulnerability`, `secret`, `staticCodeVulnerability`, `workloadActivity`.
125861
+ */
125862
+ findingTypes: string[];
125863
+ /**
125864
+ * A search query to further filter the findings matched by this rule. The `@workflow.*` namespace and `@status` fields are not permitted. For a reference of available fields, see the [Security Findings schema documentation](https://docs.datadoghq.com/security/guide/findings-schema/).
125865
+ */
125866
+ query?: string;
125867
+ }
125868
+ export interface SecurityFindingsTicketCreationRuleAction {
125869
+ /**
125870
+ * The UUID of the default assignee for created tickets. Must be a valid UUID.
125871
+ */
125872
+ assigneeId?: string;
125873
+ /**
125874
+ * The reason the rule was automatically disabled by the system due to a ticketing integration error. This field is read-only.
125875
+ */
125876
+ autoDisabledReason: string;
125877
+ /**
125878
+ * A JSON-encoded object of custom fields of the Jira issue to create. For the list of available fields, see the [Jira documentation](https://developer.atlassian.com/cloud/jira/platform/rest/v2/api-group-issues/#api-rest-api-2-issue-createmeta-projectidorkey-issuetypes-issuetypeid-get).
125879
+ */
125880
+ fields?: string;
125881
+ /**
125882
+ * The maximum number of tickets the rule may create per day. If exceeded, one final ticket will be created, explaining the limit was hit and linking back to the responsible rule. Value must be between 1 and 500.
125883
+ */
125884
+ maxTicketsPerDay: number;
125885
+ /**
125886
+ * The UUID of the Case Management project. Must be a valid UUID.
125887
+ */
125888
+ projectId: string;
125889
+ /**
125890
+ * The ticketing system to create tickets in. Valid values are `jira`, `caseManagement`.
125891
+ */
125892
+ target: string;
125893
+ }
125894
+ export interface SecurityFindingsTicketCreationRuleRule {
125895
+ /**
125896
+ * The list of security finding types that the automation rule applies to. Valid values are `apiSecurity`, `attackPath`, `hostAndContainerVulnerability`, `iacMisconfiguration`, `identityRisk`, `libraryVulnerability`, `misconfiguration`, `runtimeCodeVulnerability`, `secret`, `staticCodeVulnerability`, `workloadActivity`.
125897
+ */
125898
+ findingTypes: string[];
125899
+ /**
125900
+ * A search query to further filter the findings matched by this rule. The `@workflow.*` namespace and `@status` fields are not permitted. For a reference of available fields, see the [Security Findings schema documentation](https://docs.datadoghq.com/security/guide/findings-schema/).
125901
+ */
125902
+ query?: string;
125903
+ }
124558
125904
  export interface SecurityMonitoringDefaultRuleCase {
124559
125905
  /**
124560
125906
  * Status of the rule case to override. Valid values are `info`, `low`, `medium`, `high`, `critical`.
@@ -126424,6 +127770,10 @@ export interface SyntheticsTestOptionsList {
126424
127770
  * Blocked URL patterns. Requests made to URLs matching any of the patterns listed here will be blocked.
126425
127771
  */
126426
127772
  blockedRequestPatterns?: string[];
127773
+ /**
127774
+ * Capture HTTP request/response headers and bodies for Fetch/XHR calls made during browser tests.
127775
+ */
127776
+ captureNetworkPayloads?: boolean;
126427
127777
  /**
126428
127778
  * For SSL tests, whether or not the test should fail on revoked certificate in stapled OCSP.
126429
127779
  */
@@ -126858,7 +128208,7 @@ export interface TagIndexingRuleOptionsData {
126858
128208
  */
126859
128209
  dynamicTags?: outputs.TagIndexingRuleOptionsDataDynamicTags;
126860
128210
  /**
126861
- * When true, the rule applies to metrics ingested before the rule was created.
128211
+ * When true, the rule applies to metrics ingested before the rule was created. Defaults to `true`.
126862
128212
  */
126863
128213
  managePreexistingMetrics: boolean;
126864
128214
  /**
@@ -126866,7 +128216,7 @@ export interface TagIndexingRuleOptionsData {
126866
128216
  */
126867
128217
  metricMatch?: outputs.TagIndexingRuleOptionsDataMetricMatch;
126868
128218
  /**
126869
- * When true, this rule's tag list overrides tags configured by earlier rules for the same metric.
128219
+ * When true, this rule's tag list overrides tags configured by earlier rules for the same metric. Defaults to `false`.
126870
128220
  */
126871
128221
  overridePreviousRules: boolean;
126872
128222
  }