@pulumi/datadog 4.45.0-alpha.1740461966 → 4.45.0-alpha.1740540330
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.
- package/apiKey.d.ts +3 -3
- package/config/vars.d.ts +2 -2
- package/getUser.d.ts +40 -0
- package/getUser.js.map +1 -1
- package/logsCustomPipeline.d.ts +1 -1
- package/openapiApi.d.ts +1 -1
- package/openapiApi.js +1 -1
- package/package.json +2 -2
- package/provider.d.ts +2 -2
- package/securityNotificationRule.d.ts +3 -3
- package/syntheticsGlobalVariable.d.ts +20 -8
- package/syntheticsGlobalVariable.js +2 -3
- package/syntheticsGlobalVariable.js.map +1 -1
- package/types/input.d.ts +792 -28
- package/types/output.d.ts +793 -29
package/types/output.d.ts
CHANGED
|
@@ -561,7 +561,7 @@ export interface DashboardWidgetChangeDefinitionRequestFormula {
|
|
|
561
561
|
*/
|
|
562
562
|
alias?: string;
|
|
563
563
|
/**
|
|
564
|
-
* A list of display modes for each table cell. Valid values are `number`, `bar`.
|
|
564
|
+
* A list of display modes for each table cell. Valid values are `number`, `bar`, `trend`.
|
|
565
565
|
*/
|
|
566
566
|
cellDisplayMode?: string;
|
|
567
567
|
/**
|
|
@@ -576,6 +576,10 @@ export interface DashboardWidgetChangeDefinitionRequestFormula {
|
|
|
576
576
|
* The options for limiting results returned.
|
|
577
577
|
*/
|
|
578
578
|
limit?: outputs.DashboardWidgetChangeDefinitionRequestFormulaLimit;
|
|
579
|
+
/**
|
|
580
|
+
* Number formatting options for the formula.
|
|
581
|
+
*/
|
|
582
|
+
numberFormat?: outputs.DashboardWidgetChangeDefinitionRequestFormulaNumberFormat;
|
|
579
583
|
/**
|
|
580
584
|
* Styling options for widget formulas.
|
|
581
585
|
*/
|
|
@@ -629,6 +633,42 @@ export interface DashboardWidgetChangeDefinitionRequestFormulaLimit {
|
|
|
629
633
|
*/
|
|
630
634
|
order?: string;
|
|
631
635
|
}
|
|
636
|
+
export interface DashboardWidgetChangeDefinitionRequestFormulaNumberFormat {
|
|
637
|
+
/**
|
|
638
|
+
* Unit of the number format.
|
|
639
|
+
*/
|
|
640
|
+
unit: outputs.DashboardWidgetChangeDefinitionRequestFormulaNumberFormatUnit;
|
|
641
|
+
unitScale?: outputs.DashboardWidgetChangeDefinitionRequestFormulaNumberFormatUnitScale;
|
|
642
|
+
}
|
|
643
|
+
export interface DashboardWidgetChangeDefinitionRequestFormulaNumberFormatUnit {
|
|
644
|
+
/**
|
|
645
|
+
* Canonical Units
|
|
646
|
+
*/
|
|
647
|
+
canonical?: outputs.DashboardWidgetChangeDefinitionRequestFormulaNumberFormatUnitCanonical;
|
|
648
|
+
/**
|
|
649
|
+
* Use custom (non canonical metrics)
|
|
650
|
+
*/
|
|
651
|
+
custom?: outputs.DashboardWidgetChangeDefinitionRequestFormulaNumberFormatUnitCustom;
|
|
652
|
+
}
|
|
653
|
+
export interface DashboardWidgetChangeDefinitionRequestFormulaNumberFormatUnitCanonical {
|
|
654
|
+
/**
|
|
655
|
+
* per unit name. If you want to represent megabytes/s, you set 'unit*name' = 'megabyte' and 'per*unit_name = 'second'
|
|
656
|
+
*/
|
|
657
|
+
perUnitName?: string;
|
|
658
|
+
/**
|
|
659
|
+
* Unit name. It should be in singular form ('megabyte' and not 'megabytes')
|
|
660
|
+
*/
|
|
661
|
+
unitName: string;
|
|
662
|
+
}
|
|
663
|
+
export interface DashboardWidgetChangeDefinitionRequestFormulaNumberFormatUnitCustom {
|
|
664
|
+
/**
|
|
665
|
+
* Unit label
|
|
666
|
+
*/
|
|
667
|
+
label: string;
|
|
668
|
+
}
|
|
669
|
+
export interface DashboardWidgetChangeDefinitionRequestFormulaNumberFormatUnitScale {
|
|
670
|
+
unitName: string;
|
|
671
|
+
}
|
|
632
672
|
export interface DashboardWidgetChangeDefinitionRequestFormulaStyle {
|
|
633
673
|
/**
|
|
634
674
|
* The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
|
|
@@ -1124,7 +1164,7 @@ export interface DashboardWidgetDistributionDefinitionRequestApmStatsQueryColumn
|
|
|
1124
1164
|
*/
|
|
1125
1165
|
alias?: string;
|
|
1126
1166
|
/**
|
|
1127
|
-
* A list of display modes for each table cell. Valid values are `number`, `bar`.
|
|
1167
|
+
* A list of display modes for each table cell. Valid values are `number`, `bar`, `trend`.
|
|
1128
1168
|
*/
|
|
1129
1169
|
cellDisplayMode?: string;
|
|
1130
1170
|
/**
|
|
@@ -1348,7 +1388,7 @@ export interface DashboardWidgetGeomapDefinitionRequestFormula {
|
|
|
1348
1388
|
*/
|
|
1349
1389
|
alias?: string;
|
|
1350
1390
|
/**
|
|
1351
|
-
* A list of display modes for each table cell. Valid values are `number`, `bar`.
|
|
1391
|
+
* A list of display modes for each table cell. Valid values are `number`, `bar`, `trend`.
|
|
1352
1392
|
*/
|
|
1353
1393
|
cellDisplayMode?: string;
|
|
1354
1394
|
/**
|
|
@@ -1363,6 +1403,10 @@ export interface DashboardWidgetGeomapDefinitionRequestFormula {
|
|
|
1363
1403
|
* The options for limiting results returned.
|
|
1364
1404
|
*/
|
|
1365
1405
|
limit?: outputs.DashboardWidgetGeomapDefinitionRequestFormulaLimit;
|
|
1406
|
+
/**
|
|
1407
|
+
* Number formatting options for the formula.
|
|
1408
|
+
*/
|
|
1409
|
+
numberFormat?: outputs.DashboardWidgetGeomapDefinitionRequestFormulaNumberFormat;
|
|
1366
1410
|
/**
|
|
1367
1411
|
* Styling options for widget formulas.
|
|
1368
1412
|
*/
|
|
@@ -1416,6 +1460,42 @@ export interface DashboardWidgetGeomapDefinitionRequestFormulaLimit {
|
|
|
1416
1460
|
*/
|
|
1417
1461
|
order?: string;
|
|
1418
1462
|
}
|
|
1463
|
+
export interface DashboardWidgetGeomapDefinitionRequestFormulaNumberFormat {
|
|
1464
|
+
/**
|
|
1465
|
+
* Unit of the number format.
|
|
1466
|
+
*/
|
|
1467
|
+
unit: outputs.DashboardWidgetGeomapDefinitionRequestFormulaNumberFormatUnit;
|
|
1468
|
+
unitScale?: outputs.DashboardWidgetGeomapDefinitionRequestFormulaNumberFormatUnitScale;
|
|
1469
|
+
}
|
|
1470
|
+
export interface DashboardWidgetGeomapDefinitionRequestFormulaNumberFormatUnit {
|
|
1471
|
+
/**
|
|
1472
|
+
* Canonical Units
|
|
1473
|
+
*/
|
|
1474
|
+
canonical?: outputs.DashboardWidgetGeomapDefinitionRequestFormulaNumberFormatUnitCanonical;
|
|
1475
|
+
/**
|
|
1476
|
+
* Use custom (non canonical metrics)
|
|
1477
|
+
*/
|
|
1478
|
+
custom?: outputs.DashboardWidgetGeomapDefinitionRequestFormulaNumberFormatUnitCustom;
|
|
1479
|
+
}
|
|
1480
|
+
export interface DashboardWidgetGeomapDefinitionRequestFormulaNumberFormatUnitCanonical {
|
|
1481
|
+
/**
|
|
1482
|
+
* per unit name. If you want to represent megabytes/s, you set 'unit*name' = 'megabyte' and 'per*unit_name = 'second'
|
|
1483
|
+
*/
|
|
1484
|
+
perUnitName?: string;
|
|
1485
|
+
/**
|
|
1486
|
+
* Unit name. It should be in singular form ('megabyte' and not 'megabytes')
|
|
1487
|
+
*/
|
|
1488
|
+
unitName: string;
|
|
1489
|
+
}
|
|
1490
|
+
export interface DashboardWidgetGeomapDefinitionRequestFormulaNumberFormatUnitCustom {
|
|
1491
|
+
/**
|
|
1492
|
+
* Unit label
|
|
1493
|
+
*/
|
|
1494
|
+
label: string;
|
|
1495
|
+
}
|
|
1496
|
+
export interface DashboardWidgetGeomapDefinitionRequestFormulaNumberFormatUnitScale {
|
|
1497
|
+
unitName: string;
|
|
1498
|
+
}
|
|
1419
1499
|
export interface DashboardWidgetGeomapDefinitionRequestFormulaStyle {
|
|
1420
1500
|
/**
|
|
1421
1501
|
* The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
|
|
@@ -2060,7 +2140,7 @@ export interface DashboardWidgetHeatmapDefinitionRequestFormula {
|
|
|
2060
2140
|
*/
|
|
2061
2141
|
alias?: string;
|
|
2062
2142
|
/**
|
|
2063
|
-
* A list of display modes for each table cell. Valid values are `number`, `bar`.
|
|
2143
|
+
* A list of display modes for each table cell. Valid values are `number`, `bar`, `trend`.
|
|
2064
2144
|
*/
|
|
2065
2145
|
cellDisplayMode?: string;
|
|
2066
2146
|
/**
|
|
@@ -2075,6 +2155,10 @@ export interface DashboardWidgetHeatmapDefinitionRequestFormula {
|
|
|
2075
2155
|
* The options for limiting results returned.
|
|
2076
2156
|
*/
|
|
2077
2157
|
limit?: outputs.DashboardWidgetHeatmapDefinitionRequestFormulaLimit;
|
|
2158
|
+
/**
|
|
2159
|
+
* Number formatting options for the formula.
|
|
2160
|
+
*/
|
|
2161
|
+
numberFormat?: outputs.DashboardWidgetHeatmapDefinitionRequestFormulaNumberFormat;
|
|
2078
2162
|
/**
|
|
2079
2163
|
* Styling options for widget formulas.
|
|
2080
2164
|
*/
|
|
@@ -2128,6 +2212,42 @@ export interface DashboardWidgetHeatmapDefinitionRequestFormulaLimit {
|
|
|
2128
2212
|
*/
|
|
2129
2213
|
order?: string;
|
|
2130
2214
|
}
|
|
2215
|
+
export interface DashboardWidgetHeatmapDefinitionRequestFormulaNumberFormat {
|
|
2216
|
+
/**
|
|
2217
|
+
* Unit of the number format.
|
|
2218
|
+
*/
|
|
2219
|
+
unit: outputs.DashboardWidgetHeatmapDefinitionRequestFormulaNumberFormatUnit;
|
|
2220
|
+
unitScale?: outputs.DashboardWidgetHeatmapDefinitionRequestFormulaNumberFormatUnitScale;
|
|
2221
|
+
}
|
|
2222
|
+
export interface DashboardWidgetHeatmapDefinitionRequestFormulaNumberFormatUnit {
|
|
2223
|
+
/**
|
|
2224
|
+
* Canonical Units
|
|
2225
|
+
*/
|
|
2226
|
+
canonical?: outputs.DashboardWidgetHeatmapDefinitionRequestFormulaNumberFormatUnitCanonical;
|
|
2227
|
+
/**
|
|
2228
|
+
* Use custom (non canonical metrics)
|
|
2229
|
+
*/
|
|
2230
|
+
custom?: outputs.DashboardWidgetHeatmapDefinitionRequestFormulaNumberFormatUnitCustom;
|
|
2231
|
+
}
|
|
2232
|
+
export interface DashboardWidgetHeatmapDefinitionRequestFormulaNumberFormatUnitCanonical {
|
|
2233
|
+
/**
|
|
2234
|
+
* per unit name. If you want to represent megabytes/s, you set 'unit*name' = 'megabyte' and 'per*unit_name = 'second'
|
|
2235
|
+
*/
|
|
2236
|
+
perUnitName?: string;
|
|
2237
|
+
/**
|
|
2238
|
+
* Unit name. It should be in singular form ('megabyte' and not 'megabytes')
|
|
2239
|
+
*/
|
|
2240
|
+
unitName: string;
|
|
2241
|
+
}
|
|
2242
|
+
export interface DashboardWidgetHeatmapDefinitionRequestFormulaNumberFormatUnitCustom {
|
|
2243
|
+
/**
|
|
2244
|
+
* Unit label
|
|
2245
|
+
*/
|
|
2246
|
+
label: string;
|
|
2247
|
+
}
|
|
2248
|
+
export interface DashboardWidgetHeatmapDefinitionRequestFormulaNumberFormatUnitScale {
|
|
2249
|
+
unitName: string;
|
|
2250
|
+
}
|
|
2131
2251
|
export interface DashboardWidgetHeatmapDefinitionRequestFormulaStyle {
|
|
2132
2252
|
/**
|
|
2133
2253
|
* The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
|
|
@@ -3151,7 +3271,7 @@ export interface DashboardWidgetQueryTableDefinitionRequest {
|
|
|
3151
3271
|
apmQuery?: outputs.DashboardWidgetApmQuery;
|
|
3152
3272
|
apmStatsQuery?: outputs.DashboardWidgetQueryTableDefinitionRequestApmStatsQuery;
|
|
3153
3273
|
/**
|
|
3154
|
-
* A list of display modes for each table cell. List items one of `number`, `bar`. Valid values are `number`, `bar`.
|
|
3274
|
+
* A list of display modes for each table cell. List items one of `number`, `bar`. Valid values are `number`, `bar`, `trend`.
|
|
3155
3275
|
*/
|
|
3156
3276
|
cellDisplayModes?: string[];
|
|
3157
3277
|
/**
|
|
@@ -3229,7 +3349,7 @@ export interface DashboardWidgetQueryTableDefinitionRequestApmStatsQueryColumn {
|
|
|
3229
3349
|
*/
|
|
3230
3350
|
alias?: string;
|
|
3231
3351
|
/**
|
|
3232
|
-
* A list of display modes for each table cell. Valid values are `number`, `bar`.
|
|
3352
|
+
* A list of display modes for each table cell. Valid values are `number`, `bar`, `trend`.
|
|
3233
3353
|
*/
|
|
3234
3354
|
cellDisplayMode?: string;
|
|
3235
3355
|
/**
|
|
@@ -3285,7 +3405,7 @@ export interface DashboardWidgetQueryTableDefinitionRequestFormula {
|
|
|
3285
3405
|
*/
|
|
3286
3406
|
alias?: string;
|
|
3287
3407
|
/**
|
|
3288
|
-
* A list of display modes for each table cell. Valid values are `number`, `bar`.
|
|
3408
|
+
* A list of display modes for each table cell. Valid values are `number`, `bar`, `trend`.
|
|
3289
3409
|
*/
|
|
3290
3410
|
cellDisplayMode?: string;
|
|
3291
3411
|
/**
|
|
@@ -3300,6 +3420,10 @@ export interface DashboardWidgetQueryTableDefinitionRequestFormula {
|
|
|
3300
3420
|
* The options for limiting results returned.
|
|
3301
3421
|
*/
|
|
3302
3422
|
limit?: outputs.DashboardWidgetQueryTableDefinitionRequestFormulaLimit;
|
|
3423
|
+
/**
|
|
3424
|
+
* Number formatting options for the formula.
|
|
3425
|
+
*/
|
|
3426
|
+
numberFormat?: outputs.DashboardWidgetQueryTableDefinitionRequestFormulaNumberFormat;
|
|
3303
3427
|
/**
|
|
3304
3428
|
* Styling options for widget formulas.
|
|
3305
3429
|
*/
|
|
@@ -3353,6 +3477,42 @@ export interface DashboardWidgetQueryTableDefinitionRequestFormulaLimit {
|
|
|
3353
3477
|
*/
|
|
3354
3478
|
order?: string;
|
|
3355
3479
|
}
|
|
3480
|
+
export interface DashboardWidgetQueryTableDefinitionRequestFormulaNumberFormat {
|
|
3481
|
+
/**
|
|
3482
|
+
* Unit of the number format.
|
|
3483
|
+
*/
|
|
3484
|
+
unit: outputs.DashboardWidgetQueryTableDefinitionRequestFormulaNumberFormatUnit;
|
|
3485
|
+
unitScale?: outputs.DashboardWidgetQueryTableDefinitionRequestFormulaNumberFormatUnitScale;
|
|
3486
|
+
}
|
|
3487
|
+
export interface DashboardWidgetQueryTableDefinitionRequestFormulaNumberFormatUnit {
|
|
3488
|
+
/**
|
|
3489
|
+
* Canonical Units
|
|
3490
|
+
*/
|
|
3491
|
+
canonical?: outputs.DashboardWidgetQueryTableDefinitionRequestFormulaNumberFormatUnitCanonical;
|
|
3492
|
+
/**
|
|
3493
|
+
* Use custom (non canonical metrics)
|
|
3494
|
+
*/
|
|
3495
|
+
custom?: outputs.DashboardWidgetQueryTableDefinitionRequestFormulaNumberFormatUnitCustom;
|
|
3496
|
+
}
|
|
3497
|
+
export interface DashboardWidgetQueryTableDefinitionRequestFormulaNumberFormatUnitCanonical {
|
|
3498
|
+
/**
|
|
3499
|
+
* per unit name. If you want to represent megabytes/s, you set 'unit*name' = 'megabyte' and 'per*unit_name = 'second'
|
|
3500
|
+
*/
|
|
3501
|
+
perUnitName?: string;
|
|
3502
|
+
/**
|
|
3503
|
+
* Unit name. It should be in singular form ('megabyte' and not 'megabytes')
|
|
3504
|
+
*/
|
|
3505
|
+
unitName: string;
|
|
3506
|
+
}
|
|
3507
|
+
export interface DashboardWidgetQueryTableDefinitionRequestFormulaNumberFormatUnitCustom {
|
|
3508
|
+
/**
|
|
3509
|
+
* Unit label
|
|
3510
|
+
*/
|
|
3511
|
+
label: string;
|
|
3512
|
+
}
|
|
3513
|
+
export interface DashboardWidgetQueryTableDefinitionRequestFormulaNumberFormatUnitScale {
|
|
3514
|
+
unitName: string;
|
|
3515
|
+
}
|
|
3356
3516
|
export interface DashboardWidgetQueryTableDefinitionRequestFormulaStyle {
|
|
3357
3517
|
/**
|
|
3358
3518
|
* The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
|
|
@@ -3983,7 +4143,7 @@ export interface DashboardWidgetQueryValueDefinitionRequestFormula {
|
|
|
3983
4143
|
*/
|
|
3984
4144
|
alias?: string;
|
|
3985
4145
|
/**
|
|
3986
|
-
* A list of display modes for each table cell. Valid values are `number`, `bar`.
|
|
4146
|
+
* A list of display modes for each table cell. Valid values are `number`, `bar`, `trend`.
|
|
3987
4147
|
*/
|
|
3988
4148
|
cellDisplayMode?: string;
|
|
3989
4149
|
/**
|
|
@@ -3998,6 +4158,10 @@ export interface DashboardWidgetQueryValueDefinitionRequestFormula {
|
|
|
3998
4158
|
* The options for limiting results returned.
|
|
3999
4159
|
*/
|
|
4000
4160
|
limit?: outputs.DashboardWidgetQueryValueDefinitionRequestFormulaLimit;
|
|
4161
|
+
/**
|
|
4162
|
+
* Number formatting options for the formula.
|
|
4163
|
+
*/
|
|
4164
|
+
numberFormat?: outputs.DashboardWidgetQueryValueDefinitionRequestFormulaNumberFormat;
|
|
4001
4165
|
/**
|
|
4002
4166
|
* Styling options for widget formulas.
|
|
4003
4167
|
*/
|
|
@@ -4051,6 +4215,42 @@ export interface DashboardWidgetQueryValueDefinitionRequestFormulaLimit {
|
|
|
4051
4215
|
*/
|
|
4052
4216
|
order?: string;
|
|
4053
4217
|
}
|
|
4218
|
+
export interface DashboardWidgetQueryValueDefinitionRequestFormulaNumberFormat {
|
|
4219
|
+
/**
|
|
4220
|
+
* Unit of the number format.
|
|
4221
|
+
*/
|
|
4222
|
+
unit: outputs.DashboardWidgetQueryValueDefinitionRequestFormulaNumberFormatUnit;
|
|
4223
|
+
unitScale?: outputs.DashboardWidgetQueryValueDefinitionRequestFormulaNumberFormatUnitScale;
|
|
4224
|
+
}
|
|
4225
|
+
export interface DashboardWidgetQueryValueDefinitionRequestFormulaNumberFormatUnit {
|
|
4226
|
+
/**
|
|
4227
|
+
* Canonical Units
|
|
4228
|
+
*/
|
|
4229
|
+
canonical?: outputs.DashboardWidgetQueryValueDefinitionRequestFormulaNumberFormatUnitCanonical;
|
|
4230
|
+
/**
|
|
4231
|
+
* Use custom (non canonical metrics)
|
|
4232
|
+
*/
|
|
4233
|
+
custom?: outputs.DashboardWidgetQueryValueDefinitionRequestFormulaNumberFormatUnitCustom;
|
|
4234
|
+
}
|
|
4235
|
+
export interface DashboardWidgetQueryValueDefinitionRequestFormulaNumberFormatUnitCanonical {
|
|
4236
|
+
/**
|
|
4237
|
+
* per unit name. If you want to represent megabytes/s, you set 'unit*name' = 'megabyte' and 'per*unit_name = 'second'
|
|
4238
|
+
*/
|
|
4239
|
+
perUnitName?: string;
|
|
4240
|
+
/**
|
|
4241
|
+
* Unit name. It should be in singular form ('megabyte' and not 'megabytes')
|
|
4242
|
+
*/
|
|
4243
|
+
unitName: string;
|
|
4244
|
+
}
|
|
4245
|
+
export interface DashboardWidgetQueryValueDefinitionRequestFormulaNumberFormatUnitCustom {
|
|
4246
|
+
/**
|
|
4247
|
+
* Unit label
|
|
4248
|
+
*/
|
|
4249
|
+
label: string;
|
|
4250
|
+
}
|
|
4251
|
+
export interface DashboardWidgetQueryValueDefinitionRequestFormulaNumberFormatUnitScale {
|
|
4252
|
+
unitName: string;
|
|
4253
|
+
}
|
|
4054
4254
|
export interface DashboardWidgetQueryValueDefinitionRequestFormulaStyle {
|
|
4055
4255
|
/**
|
|
4056
4256
|
* The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
|
|
@@ -5657,7 +5857,7 @@ export interface DashboardWidgetSunburstDefinitionRequestFormula {
|
|
|
5657
5857
|
*/
|
|
5658
5858
|
alias?: string;
|
|
5659
5859
|
/**
|
|
5660
|
-
* A list of display modes for each table cell. Valid values are `number`, `bar`.
|
|
5860
|
+
* A list of display modes for each table cell. Valid values are `number`, `bar`, `trend`.
|
|
5661
5861
|
*/
|
|
5662
5862
|
cellDisplayMode?: string;
|
|
5663
5863
|
/**
|
|
@@ -5672,6 +5872,10 @@ export interface DashboardWidgetSunburstDefinitionRequestFormula {
|
|
|
5672
5872
|
* The options for limiting results returned.
|
|
5673
5873
|
*/
|
|
5674
5874
|
limit?: outputs.DashboardWidgetSunburstDefinitionRequestFormulaLimit;
|
|
5875
|
+
/**
|
|
5876
|
+
* Number formatting options for the formula.
|
|
5877
|
+
*/
|
|
5878
|
+
numberFormat?: outputs.DashboardWidgetSunburstDefinitionRequestFormulaNumberFormat;
|
|
5675
5879
|
/**
|
|
5676
5880
|
* Styling options for widget formulas.
|
|
5677
5881
|
*/
|
|
@@ -5725,6 +5929,42 @@ export interface DashboardWidgetSunburstDefinitionRequestFormulaLimit {
|
|
|
5725
5929
|
*/
|
|
5726
5930
|
order?: string;
|
|
5727
5931
|
}
|
|
5932
|
+
export interface DashboardWidgetSunburstDefinitionRequestFormulaNumberFormat {
|
|
5933
|
+
/**
|
|
5934
|
+
* Unit of the number format.
|
|
5935
|
+
*/
|
|
5936
|
+
unit: outputs.DashboardWidgetSunburstDefinitionRequestFormulaNumberFormatUnit;
|
|
5937
|
+
unitScale?: outputs.DashboardWidgetSunburstDefinitionRequestFormulaNumberFormatUnitScale;
|
|
5938
|
+
}
|
|
5939
|
+
export interface DashboardWidgetSunburstDefinitionRequestFormulaNumberFormatUnit {
|
|
5940
|
+
/**
|
|
5941
|
+
* Canonical Units
|
|
5942
|
+
*/
|
|
5943
|
+
canonical?: outputs.DashboardWidgetSunburstDefinitionRequestFormulaNumberFormatUnitCanonical;
|
|
5944
|
+
/**
|
|
5945
|
+
* Use custom (non canonical metrics)
|
|
5946
|
+
*/
|
|
5947
|
+
custom?: outputs.DashboardWidgetSunburstDefinitionRequestFormulaNumberFormatUnitCustom;
|
|
5948
|
+
}
|
|
5949
|
+
export interface DashboardWidgetSunburstDefinitionRequestFormulaNumberFormatUnitCanonical {
|
|
5950
|
+
/**
|
|
5951
|
+
* per unit name. If you want to represent megabytes/s, you set 'unit*name' = 'megabyte' and 'per*unit_name = 'second'
|
|
5952
|
+
*/
|
|
5953
|
+
perUnitName?: string;
|
|
5954
|
+
/**
|
|
5955
|
+
* Unit name. It should be in singular form ('megabyte' and not 'megabytes')
|
|
5956
|
+
*/
|
|
5957
|
+
unitName: string;
|
|
5958
|
+
}
|
|
5959
|
+
export interface DashboardWidgetSunburstDefinitionRequestFormulaNumberFormatUnitCustom {
|
|
5960
|
+
/**
|
|
5961
|
+
* Unit label
|
|
5962
|
+
*/
|
|
5963
|
+
label: string;
|
|
5964
|
+
}
|
|
5965
|
+
export interface DashboardWidgetSunburstDefinitionRequestFormulaNumberFormatUnitScale {
|
|
5966
|
+
unitName: string;
|
|
5967
|
+
}
|
|
5728
5968
|
export interface DashboardWidgetSunburstDefinitionRequestFormulaStyle {
|
|
5729
5969
|
/**
|
|
5730
5970
|
* The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
|
|
@@ -6397,7 +6637,7 @@ export interface DashboardWidgetTimeseriesDefinitionRequestFormula {
|
|
|
6397
6637
|
*/
|
|
6398
6638
|
alias?: string;
|
|
6399
6639
|
/**
|
|
6400
|
-
* A list of display modes for each table cell. Valid values are `number`, `bar`.
|
|
6640
|
+
* A list of display modes for each table cell. Valid values are `number`, `bar`, `trend`.
|
|
6401
6641
|
*/
|
|
6402
6642
|
cellDisplayMode?: string;
|
|
6403
6643
|
/**
|
|
@@ -6412,6 +6652,10 @@ export interface DashboardWidgetTimeseriesDefinitionRequestFormula {
|
|
|
6412
6652
|
* The options for limiting results returned.
|
|
6413
6653
|
*/
|
|
6414
6654
|
limit?: outputs.DashboardWidgetTimeseriesDefinitionRequestFormulaLimit;
|
|
6655
|
+
/**
|
|
6656
|
+
* Number formatting options for the formula.
|
|
6657
|
+
*/
|
|
6658
|
+
numberFormat?: outputs.DashboardWidgetTimeseriesDefinitionRequestFormulaNumberFormat;
|
|
6415
6659
|
/**
|
|
6416
6660
|
* Styling options for widget formulas.
|
|
6417
6661
|
*/
|
|
@@ -6465,6 +6709,42 @@ export interface DashboardWidgetTimeseriesDefinitionRequestFormulaLimit {
|
|
|
6465
6709
|
*/
|
|
6466
6710
|
order?: string;
|
|
6467
6711
|
}
|
|
6712
|
+
export interface DashboardWidgetTimeseriesDefinitionRequestFormulaNumberFormat {
|
|
6713
|
+
/**
|
|
6714
|
+
* Unit of the number format.
|
|
6715
|
+
*/
|
|
6716
|
+
unit: outputs.DashboardWidgetTimeseriesDefinitionRequestFormulaNumberFormatUnit;
|
|
6717
|
+
unitScale?: outputs.DashboardWidgetTimeseriesDefinitionRequestFormulaNumberFormatUnitScale;
|
|
6718
|
+
}
|
|
6719
|
+
export interface DashboardWidgetTimeseriesDefinitionRequestFormulaNumberFormatUnit {
|
|
6720
|
+
/**
|
|
6721
|
+
* Canonical Units
|
|
6722
|
+
*/
|
|
6723
|
+
canonical?: outputs.DashboardWidgetTimeseriesDefinitionRequestFormulaNumberFormatUnitCanonical;
|
|
6724
|
+
/**
|
|
6725
|
+
* Use custom (non canonical metrics)
|
|
6726
|
+
*/
|
|
6727
|
+
custom?: outputs.DashboardWidgetTimeseriesDefinitionRequestFormulaNumberFormatUnitCustom;
|
|
6728
|
+
}
|
|
6729
|
+
export interface DashboardWidgetTimeseriesDefinitionRequestFormulaNumberFormatUnitCanonical {
|
|
6730
|
+
/**
|
|
6731
|
+
* per unit name. If you want to represent megabytes/s, you set 'unit*name' = 'megabyte' and 'per*unit_name = 'second'
|
|
6732
|
+
*/
|
|
6733
|
+
perUnitName?: string;
|
|
6734
|
+
/**
|
|
6735
|
+
* Unit name. It should be in singular form ('megabyte' and not 'megabytes')
|
|
6736
|
+
*/
|
|
6737
|
+
unitName: string;
|
|
6738
|
+
}
|
|
6739
|
+
export interface DashboardWidgetTimeseriesDefinitionRequestFormulaNumberFormatUnitCustom {
|
|
6740
|
+
/**
|
|
6741
|
+
* Unit label
|
|
6742
|
+
*/
|
|
6743
|
+
label: string;
|
|
6744
|
+
}
|
|
6745
|
+
export interface DashboardWidgetTimeseriesDefinitionRequestFormulaNumberFormatUnitScale {
|
|
6746
|
+
unitName: string;
|
|
6747
|
+
}
|
|
6468
6748
|
export interface DashboardWidgetTimeseriesDefinitionRequestFormulaStyle {
|
|
6469
6749
|
/**
|
|
6470
6750
|
* The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
|
|
@@ -7173,7 +7453,7 @@ export interface DashboardWidgetToplistDefinitionRequestFormula {
|
|
|
7173
7453
|
*/
|
|
7174
7454
|
alias?: string;
|
|
7175
7455
|
/**
|
|
7176
|
-
* A list of display modes for each table cell. Valid values are `number`, `bar`.
|
|
7456
|
+
* A list of display modes for each table cell. Valid values are `number`, `bar`, `trend`.
|
|
7177
7457
|
*/
|
|
7178
7458
|
cellDisplayMode?: string;
|
|
7179
7459
|
/**
|
|
@@ -7188,6 +7468,10 @@ export interface DashboardWidgetToplistDefinitionRequestFormula {
|
|
|
7188
7468
|
* The options for limiting results returned.
|
|
7189
7469
|
*/
|
|
7190
7470
|
limit?: outputs.DashboardWidgetToplistDefinitionRequestFormulaLimit;
|
|
7471
|
+
/**
|
|
7472
|
+
* Number formatting options for the formula.
|
|
7473
|
+
*/
|
|
7474
|
+
numberFormat?: outputs.DashboardWidgetToplistDefinitionRequestFormulaNumberFormat;
|
|
7191
7475
|
/**
|
|
7192
7476
|
* Styling options for widget formulas.
|
|
7193
7477
|
*/
|
|
@@ -7241,6 +7525,42 @@ export interface DashboardWidgetToplistDefinitionRequestFormulaLimit {
|
|
|
7241
7525
|
*/
|
|
7242
7526
|
order?: string;
|
|
7243
7527
|
}
|
|
7528
|
+
export interface DashboardWidgetToplistDefinitionRequestFormulaNumberFormat {
|
|
7529
|
+
/**
|
|
7530
|
+
* Unit of the number format.
|
|
7531
|
+
*/
|
|
7532
|
+
unit: outputs.DashboardWidgetToplistDefinitionRequestFormulaNumberFormatUnit;
|
|
7533
|
+
unitScale?: outputs.DashboardWidgetToplistDefinitionRequestFormulaNumberFormatUnitScale;
|
|
7534
|
+
}
|
|
7535
|
+
export interface DashboardWidgetToplistDefinitionRequestFormulaNumberFormatUnit {
|
|
7536
|
+
/**
|
|
7537
|
+
* Canonical Units
|
|
7538
|
+
*/
|
|
7539
|
+
canonical?: outputs.DashboardWidgetToplistDefinitionRequestFormulaNumberFormatUnitCanonical;
|
|
7540
|
+
/**
|
|
7541
|
+
* Use custom (non canonical metrics)
|
|
7542
|
+
*/
|
|
7543
|
+
custom?: outputs.DashboardWidgetToplistDefinitionRequestFormulaNumberFormatUnitCustom;
|
|
7544
|
+
}
|
|
7545
|
+
export interface DashboardWidgetToplistDefinitionRequestFormulaNumberFormatUnitCanonical {
|
|
7546
|
+
/**
|
|
7547
|
+
* per unit name. If you want to represent megabytes/s, you set 'unit*name' = 'megabyte' and 'per*unit_name = 'second'
|
|
7548
|
+
*/
|
|
7549
|
+
perUnitName?: string;
|
|
7550
|
+
/**
|
|
7551
|
+
* Unit name. It should be in singular form ('megabyte' and not 'megabytes')
|
|
7552
|
+
*/
|
|
7553
|
+
unitName: string;
|
|
7554
|
+
}
|
|
7555
|
+
export interface DashboardWidgetToplistDefinitionRequestFormulaNumberFormatUnitCustom {
|
|
7556
|
+
/**
|
|
7557
|
+
* Unit label
|
|
7558
|
+
*/
|
|
7559
|
+
label: string;
|
|
7560
|
+
}
|
|
7561
|
+
export interface DashboardWidgetToplistDefinitionRequestFormulaNumberFormatUnitScale {
|
|
7562
|
+
unitName: string;
|
|
7563
|
+
}
|
|
7244
7564
|
export interface DashboardWidgetToplistDefinitionRequestFormulaStyle {
|
|
7245
7565
|
/**
|
|
7246
7566
|
* The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
|
|
@@ -7608,6 +7928,10 @@ export interface DashboardWidgetToplistDefinitionStyle {
|
|
|
7608
7928
|
* The color palette for the widget.
|
|
7609
7929
|
*/
|
|
7610
7930
|
palette?: string;
|
|
7931
|
+
/**
|
|
7932
|
+
* The scaling mode for the widget. Valid values are `absolute`, `relative`.
|
|
7933
|
+
*/
|
|
7934
|
+
scaling: string;
|
|
7611
7935
|
}
|
|
7612
7936
|
export interface DashboardWidgetToplistDefinitionStyleDisplay {
|
|
7613
7937
|
/**
|
|
@@ -7761,7 +8085,7 @@ export interface DashboardWidgetTreemapDefinitionRequestFormula {
|
|
|
7761
8085
|
*/
|
|
7762
8086
|
alias?: string;
|
|
7763
8087
|
/**
|
|
7764
|
-
* A list of display modes for each table cell. Valid values are `number`, `bar`.
|
|
8088
|
+
* A list of display modes for each table cell. Valid values are `number`, `bar`, `trend`.
|
|
7765
8089
|
*/
|
|
7766
8090
|
cellDisplayMode?: string;
|
|
7767
8091
|
/**
|
|
@@ -7776,6 +8100,10 @@ export interface DashboardWidgetTreemapDefinitionRequestFormula {
|
|
|
7776
8100
|
* The options for limiting results returned.
|
|
7777
8101
|
*/
|
|
7778
8102
|
limit?: outputs.DashboardWidgetTreemapDefinitionRequestFormulaLimit;
|
|
8103
|
+
/**
|
|
8104
|
+
* Number formatting options for the formula.
|
|
8105
|
+
*/
|
|
8106
|
+
numberFormat?: outputs.DashboardWidgetTreemapDefinitionRequestFormulaNumberFormat;
|
|
7779
8107
|
/**
|
|
7780
8108
|
* Styling options for widget formulas.
|
|
7781
8109
|
*/
|
|
@@ -7829,6 +8157,42 @@ export interface DashboardWidgetTreemapDefinitionRequestFormulaLimit {
|
|
|
7829
8157
|
*/
|
|
7830
8158
|
order?: string;
|
|
7831
8159
|
}
|
|
8160
|
+
export interface DashboardWidgetTreemapDefinitionRequestFormulaNumberFormat {
|
|
8161
|
+
/**
|
|
8162
|
+
* Unit of the number format.
|
|
8163
|
+
*/
|
|
8164
|
+
unit: outputs.DashboardWidgetTreemapDefinitionRequestFormulaNumberFormatUnit;
|
|
8165
|
+
unitScale?: outputs.DashboardWidgetTreemapDefinitionRequestFormulaNumberFormatUnitScale;
|
|
8166
|
+
}
|
|
8167
|
+
export interface DashboardWidgetTreemapDefinitionRequestFormulaNumberFormatUnit {
|
|
8168
|
+
/**
|
|
8169
|
+
* Canonical Units
|
|
8170
|
+
*/
|
|
8171
|
+
canonical?: outputs.DashboardWidgetTreemapDefinitionRequestFormulaNumberFormatUnitCanonical;
|
|
8172
|
+
/**
|
|
8173
|
+
* Use custom (non canonical metrics)
|
|
8174
|
+
*/
|
|
8175
|
+
custom?: outputs.DashboardWidgetTreemapDefinitionRequestFormulaNumberFormatUnitCustom;
|
|
8176
|
+
}
|
|
8177
|
+
export interface DashboardWidgetTreemapDefinitionRequestFormulaNumberFormatUnitCanonical {
|
|
8178
|
+
/**
|
|
8179
|
+
* per unit name. If you want to represent megabytes/s, you set 'unit*name' = 'megabyte' and 'per*unit_name = 'second'
|
|
8180
|
+
*/
|
|
8181
|
+
perUnitName?: string;
|
|
8182
|
+
/**
|
|
8183
|
+
* Unit name. It should be in singular form ('megabyte' and not 'megabytes')
|
|
8184
|
+
*/
|
|
8185
|
+
unitName: string;
|
|
8186
|
+
}
|
|
8187
|
+
export interface DashboardWidgetTreemapDefinitionRequestFormulaNumberFormatUnitCustom {
|
|
8188
|
+
/**
|
|
8189
|
+
* Unit label
|
|
8190
|
+
*/
|
|
8191
|
+
label: string;
|
|
8192
|
+
}
|
|
8193
|
+
export interface DashboardWidgetTreemapDefinitionRequestFormulaNumberFormatUnitScale {
|
|
8194
|
+
unitName: string;
|
|
8195
|
+
}
|
|
7832
8196
|
export interface DashboardWidgetTreemapDefinitionRequestFormulaStyle {
|
|
7833
8197
|
/**
|
|
7834
8198
|
* The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
|
|
@@ -9150,6 +9514,10 @@ export interface LogsCustomPipelineProcessor {
|
|
|
9150
9514
|
* Service Remapper Processor. More information can be found in the [official docs](https://docs.datadoghq.com/logs/processing/processors/?tab=ui#service-remapper)
|
|
9151
9515
|
*/
|
|
9152
9516
|
serviceRemapper?: outputs.LogsCustomPipelineProcessorServiceRemapper;
|
|
9517
|
+
/**
|
|
9518
|
+
* Span ID Remapper Processor. More information can be found in the [official docs](https://docs.datadoghq.com/logs/log_configuration/processors/?tab=ui#span-remapper)
|
|
9519
|
+
*/
|
|
9520
|
+
spanIdRemapper?: outputs.LogsCustomPipelineProcessorSpanIdRemapper;
|
|
9153
9521
|
/**
|
|
9154
9522
|
* Status Remapper Processor. More information can be found in the [official docs](https://docs.datadoghq.com/logs/processing/processors/?tab=ui#log-status-remapper)
|
|
9155
9523
|
*/
|
|
@@ -9366,7 +9734,7 @@ export interface LogsCustomPipelineProcessorPipeline {
|
|
|
9366
9734
|
isEnabled?: boolean;
|
|
9367
9735
|
name: string;
|
|
9368
9736
|
processors?: outputs.LogsCustomPipelineProcessorPipelineProcessor[];
|
|
9369
|
-
tags
|
|
9737
|
+
tags: string[];
|
|
9370
9738
|
}
|
|
9371
9739
|
export interface LogsCustomPipelineProcessorPipelineFilter {
|
|
9372
9740
|
/**
|
|
@@ -9415,6 +9783,10 @@ export interface LogsCustomPipelineProcessorPipelineProcessor {
|
|
|
9415
9783
|
* Service Remapper Processor. More information can be found in the [official docs](https://docs.datadoghq.com/logs/processing/processors/?tab=ui#service-remapper)
|
|
9416
9784
|
*/
|
|
9417
9785
|
serviceRemapper?: outputs.LogsCustomPipelineProcessorPipelineProcessorServiceRemapper;
|
|
9786
|
+
/**
|
|
9787
|
+
* Span ID Remapper Processor. More information can be found in the [official docs](https://docs.datadoghq.com/logs/log_configuration/processors/?tab=ui#span-remapper)
|
|
9788
|
+
*/
|
|
9789
|
+
spanIdRemapper?: outputs.LogsCustomPipelineProcessorPipelineProcessorSpanIdRemapper;
|
|
9418
9790
|
/**
|
|
9419
9791
|
* Status Remapper Processor. More information can be found in the [official docs](https://docs.datadoghq.com/logs/processing/processors/?tab=ui#log-status-remapper)
|
|
9420
9792
|
*/
|
|
@@ -9661,6 +10033,20 @@ export interface LogsCustomPipelineProcessorPipelineProcessorServiceRemapper {
|
|
|
9661
10033
|
*/
|
|
9662
10034
|
sources: string[];
|
|
9663
10035
|
}
|
|
10036
|
+
export interface LogsCustomPipelineProcessorPipelineProcessorSpanIdRemapper {
|
|
10037
|
+
/**
|
|
10038
|
+
* If the processor is enabled or not.
|
|
10039
|
+
*/
|
|
10040
|
+
isEnabled?: boolean;
|
|
10041
|
+
/**
|
|
10042
|
+
* Name of the processor.
|
|
10043
|
+
*/
|
|
10044
|
+
name?: string;
|
|
10045
|
+
/**
|
|
10046
|
+
* List of source attributes.
|
|
10047
|
+
*/
|
|
10048
|
+
sources: string[];
|
|
10049
|
+
}
|
|
9664
10050
|
export interface LogsCustomPipelineProcessorPipelineProcessorStatusRemapper {
|
|
9665
10051
|
/**
|
|
9666
10052
|
* If the processor is enabled or not.
|
|
@@ -9791,6 +10177,20 @@ export interface LogsCustomPipelineProcessorServiceRemapper {
|
|
|
9791
10177
|
*/
|
|
9792
10178
|
sources: string[];
|
|
9793
10179
|
}
|
|
10180
|
+
export interface LogsCustomPipelineProcessorSpanIdRemapper {
|
|
10181
|
+
/**
|
|
10182
|
+
* If the processor is enabled or not.
|
|
10183
|
+
*/
|
|
10184
|
+
isEnabled?: boolean;
|
|
10185
|
+
/**
|
|
10186
|
+
* Name of the processor.
|
|
10187
|
+
*/
|
|
10188
|
+
name?: string;
|
|
10189
|
+
/**
|
|
10190
|
+
* List of source attributes.
|
|
10191
|
+
*/
|
|
10192
|
+
sources: string[];
|
|
10193
|
+
}
|
|
9794
10194
|
export interface LogsCustomPipelineProcessorStatusRemapper {
|
|
9795
10195
|
/**
|
|
9796
10196
|
* If the processor is enabled or not.
|
|
@@ -10622,7 +11022,7 @@ export interface PowerpackWidgetChangeDefinitionRequestFormula {
|
|
|
10622
11022
|
*/
|
|
10623
11023
|
alias?: string;
|
|
10624
11024
|
/**
|
|
10625
|
-
* A list of display modes for each table cell. Valid values are `number`, `bar`.
|
|
11025
|
+
* A list of display modes for each table cell. Valid values are `number`, `bar`, `trend`.
|
|
10626
11026
|
*/
|
|
10627
11027
|
cellDisplayMode?: string;
|
|
10628
11028
|
/**
|
|
@@ -10637,6 +11037,10 @@ export interface PowerpackWidgetChangeDefinitionRequestFormula {
|
|
|
10637
11037
|
* The options for limiting results returned.
|
|
10638
11038
|
*/
|
|
10639
11039
|
limit?: outputs.PowerpackWidgetChangeDefinitionRequestFormulaLimit;
|
|
11040
|
+
/**
|
|
11041
|
+
* Number formatting options for the formula.
|
|
11042
|
+
*/
|
|
11043
|
+
numberFormat?: outputs.PowerpackWidgetChangeDefinitionRequestFormulaNumberFormat;
|
|
10640
11044
|
/**
|
|
10641
11045
|
* Styling options for widget formulas.
|
|
10642
11046
|
*/
|
|
@@ -10690,6 +11094,42 @@ export interface PowerpackWidgetChangeDefinitionRequestFormulaLimit {
|
|
|
10690
11094
|
*/
|
|
10691
11095
|
order?: string;
|
|
10692
11096
|
}
|
|
11097
|
+
export interface PowerpackWidgetChangeDefinitionRequestFormulaNumberFormat {
|
|
11098
|
+
/**
|
|
11099
|
+
* Unit of the number format.
|
|
11100
|
+
*/
|
|
11101
|
+
unit: outputs.PowerpackWidgetChangeDefinitionRequestFormulaNumberFormatUnit;
|
|
11102
|
+
unitScale?: outputs.PowerpackWidgetChangeDefinitionRequestFormulaNumberFormatUnitScale;
|
|
11103
|
+
}
|
|
11104
|
+
export interface PowerpackWidgetChangeDefinitionRequestFormulaNumberFormatUnit {
|
|
11105
|
+
/**
|
|
11106
|
+
* Canonical Units
|
|
11107
|
+
*/
|
|
11108
|
+
canonical?: outputs.PowerpackWidgetChangeDefinitionRequestFormulaNumberFormatUnitCanonical;
|
|
11109
|
+
/**
|
|
11110
|
+
* Use custom (non canonical metrics)
|
|
11111
|
+
*/
|
|
11112
|
+
custom?: outputs.PowerpackWidgetChangeDefinitionRequestFormulaNumberFormatUnitCustom;
|
|
11113
|
+
}
|
|
11114
|
+
export interface PowerpackWidgetChangeDefinitionRequestFormulaNumberFormatUnitCanonical {
|
|
11115
|
+
/**
|
|
11116
|
+
* per unit name. If you want to represent megabytes/s, you set 'unit*name' = 'megabyte' and 'per*unit_name = 'second'
|
|
11117
|
+
*/
|
|
11118
|
+
perUnitName?: string;
|
|
11119
|
+
/**
|
|
11120
|
+
* Unit name. It should be in singular form ('megabyte' and not 'megabytes')
|
|
11121
|
+
*/
|
|
11122
|
+
unitName: string;
|
|
11123
|
+
}
|
|
11124
|
+
export interface PowerpackWidgetChangeDefinitionRequestFormulaNumberFormatUnitCustom {
|
|
11125
|
+
/**
|
|
11126
|
+
* Unit label
|
|
11127
|
+
*/
|
|
11128
|
+
label: string;
|
|
11129
|
+
}
|
|
11130
|
+
export interface PowerpackWidgetChangeDefinitionRequestFormulaNumberFormatUnitScale {
|
|
11131
|
+
unitName: string;
|
|
11132
|
+
}
|
|
10693
11133
|
export interface PowerpackWidgetChangeDefinitionRequestFormulaStyle {
|
|
10694
11134
|
/**
|
|
10695
11135
|
* The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
|
|
@@ -11497,7 +11937,7 @@ export interface PowerpackWidgetDistributionDefinitionRequestApmStatsQueryColumn
|
|
|
11497
11937
|
*/
|
|
11498
11938
|
alias?: string;
|
|
11499
11939
|
/**
|
|
11500
|
-
* A list of display modes for each table cell. Valid values are `number`, `bar`.
|
|
11940
|
+
* A list of display modes for each table cell. Valid values are `number`, `bar`, `trend`.
|
|
11501
11941
|
*/
|
|
11502
11942
|
cellDisplayMode?: string;
|
|
11503
11943
|
/**
|
|
@@ -11955,7 +12395,7 @@ export interface PowerpackWidgetGeomapDefinitionRequestFormula {
|
|
|
11955
12395
|
*/
|
|
11956
12396
|
alias?: string;
|
|
11957
12397
|
/**
|
|
11958
|
-
* A list of display modes for each table cell. Valid values are `number`, `bar`.
|
|
12398
|
+
* A list of display modes for each table cell. Valid values are `number`, `bar`, `trend`.
|
|
11959
12399
|
*/
|
|
11960
12400
|
cellDisplayMode?: string;
|
|
11961
12401
|
/**
|
|
@@ -11970,6 +12410,10 @@ export interface PowerpackWidgetGeomapDefinitionRequestFormula {
|
|
|
11970
12410
|
* The options for limiting results returned.
|
|
11971
12411
|
*/
|
|
11972
12412
|
limit?: outputs.PowerpackWidgetGeomapDefinitionRequestFormulaLimit;
|
|
12413
|
+
/**
|
|
12414
|
+
* Number formatting options for the formula.
|
|
12415
|
+
*/
|
|
12416
|
+
numberFormat?: outputs.PowerpackWidgetGeomapDefinitionRequestFormulaNumberFormat;
|
|
11973
12417
|
/**
|
|
11974
12418
|
* Styling options for widget formulas.
|
|
11975
12419
|
*/
|
|
@@ -12023,6 +12467,42 @@ export interface PowerpackWidgetGeomapDefinitionRequestFormulaLimit {
|
|
|
12023
12467
|
*/
|
|
12024
12468
|
order?: string;
|
|
12025
12469
|
}
|
|
12470
|
+
export interface PowerpackWidgetGeomapDefinitionRequestFormulaNumberFormat {
|
|
12471
|
+
/**
|
|
12472
|
+
* Unit of the number format.
|
|
12473
|
+
*/
|
|
12474
|
+
unit: outputs.PowerpackWidgetGeomapDefinitionRequestFormulaNumberFormatUnit;
|
|
12475
|
+
unitScale?: outputs.PowerpackWidgetGeomapDefinitionRequestFormulaNumberFormatUnitScale;
|
|
12476
|
+
}
|
|
12477
|
+
export interface PowerpackWidgetGeomapDefinitionRequestFormulaNumberFormatUnit {
|
|
12478
|
+
/**
|
|
12479
|
+
* Canonical Units
|
|
12480
|
+
*/
|
|
12481
|
+
canonical?: outputs.PowerpackWidgetGeomapDefinitionRequestFormulaNumberFormatUnitCanonical;
|
|
12482
|
+
/**
|
|
12483
|
+
* Use custom (non canonical metrics)
|
|
12484
|
+
*/
|
|
12485
|
+
custom?: outputs.PowerpackWidgetGeomapDefinitionRequestFormulaNumberFormatUnitCustom;
|
|
12486
|
+
}
|
|
12487
|
+
export interface PowerpackWidgetGeomapDefinitionRequestFormulaNumberFormatUnitCanonical {
|
|
12488
|
+
/**
|
|
12489
|
+
* per unit name. If you want to represent megabytes/s, you set 'unit*name' = 'megabyte' and 'per*unit_name = 'second'
|
|
12490
|
+
*/
|
|
12491
|
+
perUnitName?: string;
|
|
12492
|
+
/**
|
|
12493
|
+
* Unit name. It should be in singular form ('megabyte' and not 'megabytes')
|
|
12494
|
+
*/
|
|
12495
|
+
unitName: string;
|
|
12496
|
+
}
|
|
12497
|
+
export interface PowerpackWidgetGeomapDefinitionRequestFormulaNumberFormatUnitCustom {
|
|
12498
|
+
/**
|
|
12499
|
+
* Unit label
|
|
12500
|
+
*/
|
|
12501
|
+
label: string;
|
|
12502
|
+
}
|
|
12503
|
+
export interface PowerpackWidgetGeomapDefinitionRequestFormulaNumberFormatUnitScale {
|
|
12504
|
+
unitName: string;
|
|
12505
|
+
}
|
|
12026
12506
|
export interface PowerpackWidgetGeomapDefinitionRequestFormulaStyle {
|
|
12027
12507
|
/**
|
|
12028
12508
|
* The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
|
|
@@ -12715,7 +13195,7 @@ export interface PowerpackWidgetHeatmapDefinitionRequestFormula {
|
|
|
12715
13195
|
*/
|
|
12716
13196
|
alias?: string;
|
|
12717
13197
|
/**
|
|
12718
|
-
* A list of display modes for each table cell. Valid values are `number`, `bar`.
|
|
13198
|
+
* A list of display modes for each table cell. Valid values are `number`, `bar`, `trend`.
|
|
12719
13199
|
*/
|
|
12720
13200
|
cellDisplayMode?: string;
|
|
12721
13201
|
/**
|
|
@@ -12730,6 +13210,10 @@ export interface PowerpackWidgetHeatmapDefinitionRequestFormula {
|
|
|
12730
13210
|
* The options for limiting results returned.
|
|
12731
13211
|
*/
|
|
12732
13212
|
limit?: outputs.PowerpackWidgetHeatmapDefinitionRequestFormulaLimit;
|
|
13213
|
+
/**
|
|
13214
|
+
* Number formatting options for the formula.
|
|
13215
|
+
*/
|
|
13216
|
+
numberFormat?: outputs.PowerpackWidgetHeatmapDefinitionRequestFormulaNumberFormat;
|
|
12733
13217
|
/**
|
|
12734
13218
|
* Styling options for widget formulas.
|
|
12735
13219
|
*/
|
|
@@ -12783,6 +13267,42 @@ export interface PowerpackWidgetHeatmapDefinitionRequestFormulaLimit {
|
|
|
12783
13267
|
*/
|
|
12784
13268
|
order?: string;
|
|
12785
13269
|
}
|
|
13270
|
+
export interface PowerpackWidgetHeatmapDefinitionRequestFormulaNumberFormat {
|
|
13271
|
+
/**
|
|
13272
|
+
* Unit of the number format.
|
|
13273
|
+
*/
|
|
13274
|
+
unit: outputs.PowerpackWidgetHeatmapDefinitionRequestFormulaNumberFormatUnit;
|
|
13275
|
+
unitScale?: outputs.PowerpackWidgetHeatmapDefinitionRequestFormulaNumberFormatUnitScale;
|
|
13276
|
+
}
|
|
13277
|
+
export interface PowerpackWidgetHeatmapDefinitionRequestFormulaNumberFormatUnit {
|
|
13278
|
+
/**
|
|
13279
|
+
* Canonical Units
|
|
13280
|
+
*/
|
|
13281
|
+
canonical?: outputs.PowerpackWidgetHeatmapDefinitionRequestFormulaNumberFormatUnitCanonical;
|
|
13282
|
+
/**
|
|
13283
|
+
* Use custom (non canonical metrics)
|
|
13284
|
+
*/
|
|
13285
|
+
custom?: outputs.PowerpackWidgetHeatmapDefinitionRequestFormulaNumberFormatUnitCustom;
|
|
13286
|
+
}
|
|
13287
|
+
export interface PowerpackWidgetHeatmapDefinitionRequestFormulaNumberFormatUnitCanonical {
|
|
13288
|
+
/**
|
|
13289
|
+
* per unit name. If you want to represent megabytes/s, you set 'unit*name' = 'megabyte' and 'per*unit_name = 'second'
|
|
13290
|
+
*/
|
|
13291
|
+
perUnitName?: string;
|
|
13292
|
+
/**
|
|
13293
|
+
* Unit name. It should be in singular form ('megabyte' and not 'megabytes')
|
|
13294
|
+
*/
|
|
13295
|
+
unitName: string;
|
|
13296
|
+
}
|
|
13297
|
+
export interface PowerpackWidgetHeatmapDefinitionRequestFormulaNumberFormatUnitCustom {
|
|
13298
|
+
/**
|
|
13299
|
+
* Unit label
|
|
13300
|
+
*/
|
|
13301
|
+
label: string;
|
|
13302
|
+
}
|
|
13303
|
+
export interface PowerpackWidgetHeatmapDefinitionRequestFormulaNumberFormatUnitScale {
|
|
13304
|
+
unitName: string;
|
|
13305
|
+
}
|
|
12786
13306
|
export interface PowerpackWidgetHeatmapDefinitionRequestFormulaStyle {
|
|
12787
13307
|
/**
|
|
12788
13308
|
* The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
|
|
@@ -14522,7 +15042,7 @@ export interface PowerpackWidgetQueryTableDefinitionRequest {
|
|
|
14522
15042
|
apmQuery?: outputs.PowerpackWidgetQueryTableDefinitionRequestApmQuery;
|
|
14523
15043
|
apmStatsQuery?: outputs.PowerpackWidgetQueryTableDefinitionRequestApmStatsQuery;
|
|
14524
15044
|
/**
|
|
14525
|
-
* A list of display modes for each table cell. List items one of `number`, `bar`. Valid values are `number`, `bar`.
|
|
15045
|
+
* A list of display modes for each table cell. List items one of `number`, `bar`. Valid values are `number`, `bar`, `trend`.
|
|
14526
15046
|
*/
|
|
14527
15047
|
cellDisplayModes?: string[];
|
|
14528
15048
|
/**
|
|
@@ -14678,7 +15198,7 @@ export interface PowerpackWidgetQueryTableDefinitionRequestApmStatsQueryColumn {
|
|
|
14678
15198
|
*/
|
|
14679
15199
|
alias?: string;
|
|
14680
15200
|
/**
|
|
14681
|
-
* A list of display modes for each table cell. Valid values are `number`, `bar`.
|
|
15201
|
+
* A list of display modes for each table cell. Valid values are `number`, `bar`, `trend`.
|
|
14682
15202
|
*/
|
|
14683
15203
|
cellDisplayMode?: string;
|
|
14684
15204
|
/**
|
|
@@ -14734,7 +15254,7 @@ export interface PowerpackWidgetQueryTableDefinitionRequestFormula {
|
|
|
14734
15254
|
*/
|
|
14735
15255
|
alias?: string;
|
|
14736
15256
|
/**
|
|
14737
|
-
* A list of display modes for each table cell. Valid values are `number`, `bar`.
|
|
15257
|
+
* A list of display modes for each table cell. Valid values are `number`, `bar`, `trend`.
|
|
14738
15258
|
*/
|
|
14739
15259
|
cellDisplayMode?: string;
|
|
14740
15260
|
/**
|
|
@@ -14749,6 +15269,10 @@ export interface PowerpackWidgetQueryTableDefinitionRequestFormula {
|
|
|
14749
15269
|
* The options for limiting results returned.
|
|
14750
15270
|
*/
|
|
14751
15271
|
limit?: outputs.PowerpackWidgetQueryTableDefinitionRequestFormulaLimit;
|
|
15272
|
+
/**
|
|
15273
|
+
* Number formatting options for the formula.
|
|
15274
|
+
*/
|
|
15275
|
+
numberFormat?: outputs.PowerpackWidgetQueryTableDefinitionRequestFormulaNumberFormat;
|
|
14752
15276
|
/**
|
|
14753
15277
|
* Styling options for widget formulas.
|
|
14754
15278
|
*/
|
|
@@ -14802,6 +15326,42 @@ export interface PowerpackWidgetQueryTableDefinitionRequestFormulaLimit {
|
|
|
14802
15326
|
*/
|
|
14803
15327
|
order?: string;
|
|
14804
15328
|
}
|
|
15329
|
+
export interface PowerpackWidgetQueryTableDefinitionRequestFormulaNumberFormat {
|
|
15330
|
+
/**
|
|
15331
|
+
* Unit of the number format.
|
|
15332
|
+
*/
|
|
15333
|
+
unit: outputs.PowerpackWidgetQueryTableDefinitionRequestFormulaNumberFormatUnit;
|
|
15334
|
+
unitScale?: outputs.PowerpackWidgetQueryTableDefinitionRequestFormulaNumberFormatUnitScale;
|
|
15335
|
+
}
|
|
15336
|
+
export interface PowerpackWidgetQueryTableDefinitionRequestFormulaNumberFormatUnit {
|
|
15337
|
+
/**
|
|
15338
|
+
* Canonical Units
|
|
15339
|
+
*/
|
|
15340
|
+
canonical?: outputs.PowerpackWidgetQueryTableDefinitionRequestFormulaNumberFormatUnitCanonical;
|
|
15341
|
+
/**
|
|
15342
|
+
* Use custom (non canonical metrics)
|
|
15343
|
+
*/
|
|
15344
|
+
custom?: outputs.PowerpackWidgetQueryTableDefinitionRequestFormulaNumberFormatUnitCustom;
|
|
15345
|
+
}
|
|
15346
|
+
export interface PowerpackWidgetQueryTableDefinitionRequestFormulaNumberFormatUnitCanonical {
|
|
15347
|
+
/**
|
|
15348
|
+
* per unit name. If you want to represent megabytes/s, you set 'unit*name' = 'megabyte' and 'per*unit_name = 'second'
|
|
15349
|
+
*/
|
|
15350
|
+
perUnitName?: string;
|
|
15351
|
+
/**
|
|
15352
|
+
* Unit name. It should be in singular form ('megabyte' and not 'megabytes')
|
|
15353
|
+
*/
|
|
15354
|
+
unitName: string;
|
|
15355
|
+
}
|
|
15356
|
+
export interface PowerpackWidgetQueryTableDefinitionRequestFormulaNumberFormatUnitCustom {
|
|
15357
|
+
/**
|
|
15358
|
+
* Unit label
|
|
15359
|
+
*/
|
|
15360
|
+
label: string;
|
|
15361
|
+
}
|
|
15362
|
+
export interface PowerpackWidgetQueryTableDefinitionRequestFormulaNumberFormatUnitScale {
|
|
15363
|
+
unitName: string;
|
|
15364
|
+
}
|
|
14805
15365
|
export interface PowerpackWidgetQueryTableDefinitionRequestFormulaStyle {
|
|
14806
15366
|
/**
|
|
14807
15367
|
* The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
|
|
@@ -15744,7 +16304,7 @@ export interface PowerpackWidgetQueryValueDefinitionRequestFormula {
|
|
|
15744
16304
|
*/
|
|
15745
16305
|
alias?: string;
|
|
15746
16306
|
/**
|
|
15747
|
-
* A list of display modes for each table cell. Valid values are `number`, `bar`.
|
|
16307
|
+
* A list of display modes for each table cell. Valid values are `number`, `bar`, `trend`.
|
|
15748
16308
|
*/
|
|
15749
16309
|
cellDisplayMode?: string;
|
|
15750
16310
|
/**
|
|
@@ -15759,6 +16319,10 @@ export interface PowerpackWidgetQueryValueDefinitionRequestFormula {
|
|
|
15759
16319
|
* The options for limiting results returned.
|
|
15760
16320
|
*/
|
|
15761
16321
|
limit?: outputs.PowerpackWidgetQueryValueDefinitionRequestFormulaLimit;
|
|
16322
|
+
/**
|
|
16323
|
+
* Number formatting options for the formula.
|
|
16324
|
+
*/
|
|
16325
|
+
numberFormat?: outputs.PowerpackWidgetQueryValueDefinitionRequestFormulaNumberFormat;
|
|
15762
16326
|
/**
|
|
15763
16327
|
* Styling options for widget formulas.
|
|
15764
16328
|
*/
|
|
@@ -15812,6 +16376,42 @@ export interface PowerpackWidgetQueryValueDefinitionRequestFormulaLimit {
|
|
|
15812
16376
|
*/
|
|
15813
16377
|
order?: string;
|
|
15814
16378
|
}
|
|
16379
|
+
export interface PowerpackWidgetQueryValueDefinitionRequestFormulaNumberFormat {
|
|
16380
|
+
/**
|
|
16381
|
+
* Unit of the number format.
|
|
16382
|
+
*/
|
|
16383
|
+
unit: outputs.PowerpackWidgetQueryValueDefinitionRequestFormulaNumberFormatUnit;
|
|
16384
|
+
unitScale?: outputs.PowerpackWidgetQueryValueDefinitionRequestFormulaNumberFormatUnitScale;
|
|
16385
|
+
}
|
|
16386
|
+
export interface PowerpackWidgetQueryValueDefinitionRequestFormulaNumberFormatUnit {
|
|
16387
|
+
/**
|
|
16388
|
+
* Canonical Units
|
|
16389
|
+
*/
|
|
16390
|
+
canonical?: outputs.PowerpackWidgetQueryValueDefinitionRequestFormulaNumberFormatUnitCanonical;
|
|
16391
|
+
/**
|
|
16392
|
+
* Use custom (non canonical metrics)
|
|
16393
|
+
*/
|
|
16394
|
+
custom?: outputs.PowerpackWidgetQueryValueDefinitionRequestFormulaNumberFormatUnitCustom;
|
|
16395
|
+
}
|
|
16396
|
+
export interface PowerpackWidgetQueryValueDefinitionRequestFormulaNumberFormatUnitCanonical {
|
|
16397
|
+
/**
|
|
16398
|
+
* per unit name. If you want to represent megabytes/s, you set 'unit*name' = 'megabyte' and 'per*unit_name = 'second'
|
|
16399
|
+
*/
|
|
16400
|
+
perUnitName?: string;
|
|
16401
|
+
/**
|
|
16402
|
+
* Unit name. It should be in singular form ('megabyte' and not 'megabytes')
|
|
16403
|
+
*/
|
|
16404
|
+
unitName: string;
|
|
16405
|
+
}
|
|
16406
|
+
export interface PowerpackWidgetQueryValueDefinitionRequestFormulaNumberFormatUnitCustom {
|
|
16407
|
+
/**
|
|
16408
|
+
* Unit label
|
|
16409
|
+
*/
|
|
16410
|
+
label: string;
|
|
16411
|
+
}
|
|
16412
|
+
export interface PowerpackWidgetQueryValueDefinitionRequestFormulaNumberFormatUnitScale {
|
|
16413
|
+
unitName: string;
|
|
16414
|
+
}
|
|
15815
16415
|
export interface PowerpackWidgetQueryValueDefinitionRequestFormulaStyle {
|
|
15816
16416
|
/**
|
|
15817
16417
|
* The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
|
|
@@ -18080,7 +18680,7 @@ export interface PowerpackWidgetSunburstDefinitionRequestFormula {
|
|
|
18080
18680
|
*/
|
|
18081
18681
|
alias?: string;
|
|
18082
18682
|
/**
|
|
18083
|
-
* A list of display modes for each table cell. Valid values are `number`, `bar`.
|
|
18683
|
+
* A list of display modes for each table cell. Valid values are `number`, `bar`, `trend`.
|
|
18084
18684
|
*/
|
|
18085
18685
|
cellDisplayMode?: string;
|
|
18086
18686
|
/**
|
|
@@ -18095,6 +18695,10 @@ export interface PowerpackWidgetSunburstDefinitionRequestFormula {
|
|
|
18095
18695
|
* The options for limiting results returned.
|
|
18096
18696
|
*/
|
|
18097
18697
|
limit?: outputs.PowerpackWidgetSunburstDefinitionRequestFormulaLimit;
|
|
18698
|
+
/**
|
|
18699
|
+
* Number formatting options for the formula.
|
|
18700
|
+
*/
|
|
18701
|
+
numberFormat?: outputs.PowerpackWidgetSunburstDefinitionRequestFormulaNumberFormat;
|
|
18098
18702
|
/**
|
|
18099
18703
|
* Styling options for widget formulas.
|
|
18100
18704
|
*/
|
|
@@ -18148,6 +18752,42 @@ export interface PowerpackWidgetSunburstDefinitionRequestFormulaLimit {
|
|
|
18148
18752
|
*/
|
|
18149
18753
|
order?: string;
|
|
18150
18754
|
}
|
|
18755
|
+
export interface PowerpackWidgetSunburstDefinitionRequestFormulaNumberFormat {
|
|
18756
|
+
/**
|
|
18757
|
+
* Unit of the number format.
|
|
18758
|
+
*/
|
|
18759
|
+
unit: outputs.PowerpackWidgetSunburstDefinitionRequestFormulaNumberFormatUnit;
|
|
18760
|
+
unitScale?: outputs.PowerpackWidgetSunburstDefinitionRequestFormulaNumberFormatUnitScale;
|
|
18761
|
+
}
|
|
18762
|
+
export interface PowerpackWidgetSunburstDefinitionRequestFormulaNumberFormatUnit {
|
|
18763
|
+
/**
|
|
18764
|
+
* Canonical Units
|
|
18765
|
+
*/
|
|
18766
|
+
canonical?: outputs.PowerpackWidgetSunburstDefinitionRequestFormulaNumberFormatUnitCanonical;
|
|
18767
|
+
/**
|
|
18768
|
+
* Use custom (non canonical metrics)
|
|
18769
|
+
*/
|
|
18770
|
+
custom?: outputs.PowerpackWidgetSunburstDefinitionRequestFormulaNumberFormatUnitCustom;
|
|
18771
|
+
}
|
|
18772
|
+
export interface PowerpackWidgetSunburstDefinitionRequestFormulaNumberFormatUnitCanonical {
|
|
18773
|
+
/**
|
|
18774
|
+
* per unit name. If you want to represent megabytes/s, you set 'unit*name' = 'megabyte' and 'per*unit_name = 'second'
|
|
18775
|
+
*/
|
|
18776
|
+
perUnitName?: string;
|
|
18777
|
+
/**
|
|
18778
|
+
* Unit name. It should be in singular form ('megabyte' and not 'megabytes')
|
|
18779
|
+
*/
|
|
18780
|
+
unitName: string;
|
|
18781
|
+
}
|
|
18782
|
+
export interface PowerpackWidgetSunburstDefinitionRequestFormulaNumberFormatUnitCustom {
|
|
18783
|
+
/**
|
|
18784
|
+
* Unit label
|
|
18785
|
+
*/
|
|
18786
|
+
label: string;
|
|
18787
|
+
}
|
|
18788
|
+
export interface PowerpackWidgetSunburstDefinitionRequestFormulaNumberFormatUnitScale {
|
|
18789
|
+
unitName: string;
|
|
18790
|
+
}
|
|
18151
18791
|
export interface PowerpackWidgetSunburstDefinitionRequestFormulaStyle {
|
|
18152
18792
|
/**
|
|
18153
18793
|
* The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
|
|
@@ -19132,7 +19772,7 @@ export interface PowerpackWidgetTimeseriesDefinitionRequestFormula {
|
|
|
19132
19772
|
*/
|
|
19133
19773
|
alias?: string;
|
|
19134
19774
|
/**
|
|
19135
|
-
* A list of display modes for each table cell. Valid values are `number`, `bar`.
|
|
19775
|
+
* A list of display modes for each table cell. Valid values are `number`, `bar`, `trend`.
|
|
19136
19776
|
*/
|
|
19137
19777
|
cellDisplayMode?: string;
|
|
19138
19778
|
/**
|
|
@@ -19147,6 +19787,10 @@ export interface PowerpackWidgetTimeseriesDefinitionRequestFormula {
|
|
|
19147
19787
|
* The options for limiting results returned.
|
|
19148
19788
|
*/
|
|
19149
19789
|
limit?: outputs.PowerpackWidgetTimeseriesDefinitionRequestFormulaLimit;
|
|
19790
|
+
/**
|
|
19791
|
+
* Number formatting options for the formula.
|
|
19792
|
+
*/
|
|
19793
|
+
numberFormat?: outputs.PowerpackWidgetTimeseriesDefinitionRequestFormulaNumberFormat;
|
|
19150
19794
|
/**
|
|
19151
19795
|
* Styling options for widget formulas.
|
|
19152
19796
|
*/
|
|
@@ -19200,6 +19844,42 @@ export interface PowerpackWidgetTimeseriesDefinitionRequestFormulaLimit {
|
|
|
19200
19844
|
*/
|
|
19201
19845
|
order?: string;
|
|
19202
19846
|
}
|
|
19847
|
+
export interface PowerpackWidgetTimeseriesDefinitionRequestFormulaNumberFormat {
|
|
19848
|
+
/**
|
|
19849
|
+
* Unit of the number format.
|
|
19850
|
+
*/
|
|
19851
|
+
unit: outputs.PowerpackWidgetTimeseriesDefinitionRequestFormulaNumberFormatUnit;
|
|
19852
|
+
unitScale?: outputs.PowerpackWidgetTimeseriesDefinitionRequestFormulaNumberFormatUnitScale;
|
|
19853
|
+
}
|
|
19854
|
+
export interface PowerpackWidgetTimeseriesDefinitionRequestFormulaNumberFormatUnit {
|
|
19855
|
+
/**
|
|
19856
|
+
* Canonical Units
|
|
19857
|
+
*/
|
|
19858
|
+
canonical?: outputs.PowerpackWidgetTimeseriesDefinitionRequestFormulaNumberFormatUnitCanonical;
|
|
19859
|
+
/**
|
|
19860
|
+
* Use custom (non canonical metrics)
|
|
19861
|
+
*/
|
|
19862
|
+
custom?: outputs.PowerpackWidgetTimeseriesDefinitionRequestFormulaNumberFormatUnitCustom;
|
|
19863
|
+
}
|
|
19864
|
+
export interface PowerpackWidgetTimeseriesDefinitionRequestFormulaNumberFormatUnitCanonical {
|
|
19865
|
+
/**
|
|
19866
|
+
* per unit name. If you want to represent megabytes/s, you set 'unit*name' = 'megabyte' and 'per*unit_name = 'second'
|
|
19867
|
+
*/
|
|
19868
|
+
perUnitName?: string;
|
|
19869
|
+
/**
|
|
19870
|
+
* Unit name. It should be in singular form ('megabyte' and not 'megabytes')
|
|
19871
|
+
*/
|
|
19872
|
+
unitName: string;
|
|
19873
|
+
}
|
|
19874
|
+
export interface PowerpackWidgetTimeseriesDefinitionRequestFormulaNumberFormatUnitCustom {
|
|
19875
|
+
/**
|
|
19876
|
+
* Unit label
|
|
19877
|
+
*/
|
|
19878
|
+
label: string;
|
|
19879
|
+
}
|
|
19880
|
+
export interface PowerpackWidgetTimeseriesDefinitionRequestFormulaNumberFormatUnitScale {
|
|
19881
|
+
unitName: string;
|
|
19882
|
+
}
|
|
19203
19883
|
export interface PowerpackWidgetTimeseriesDefinitionRequestFormulaStyle {
|
|
19204
19884
|
/**
|
|
19205
19885
|
* The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
|
|
@@ -20220,7 +20900,7 @@ export interface PowerpackWidgetToplistDefinitionRequestFormula {
|
|
|
20220
20900
|
*/
|
|
20221
20901
|
alias?: string;
|
|
20222
20902
|
/**
|
|
20223
|
-
* A list of display modes for each table cell. Valid values are `number`, `bar`.
|
|
20903
|
+
* A list of display modes for each table cell. Valid values are `number`, `bar`, `trend`.
|
|
20224
20904
|
*/
|
|
20225
20905
|
cellDisplayMode?: string;
|
|
20226
20906
|
/**
|
|
@@ -20235,6 +20915,10 @@ export interface PowerpackWidgetToplistDefinitionRequestFormula {
|
|
|
20235
20915
|
* The options for limiting results returned.
|
|
20236
20916
|
*/
|
|
20237
20917
|
limit?: outputs.PowerpackWidgetToplistDefinitionRequestFormulaLimit;
|
|
20918
|
+
/**
|
|
20919
|
+
* Number formatting options for the formula.
|
|
20920
|
+
*/
|
|
20921
|
+
numberFormat?: outputs.PowerpackWidgetToplistDefinitionRequestFormulaNumberFormat;
|
|
20238
20922
|
/**
|
|
20239
20923
|
* Styling options for widget formulas.
|
|
20240
20924
|
*/
|
|
@@ -20288,6 +20972,42 @@ export interface PowerpackWidgetToplistDefinitionRequestFormulaLimit {
|
|
|
20288
20972
|
*/
|
|
20289
20973
|
order?: string;
|
|
20290
20974
|
}
|
|
20975
|
+
export interface PowerpackWidgetToplistDefinitionRequestFormulaNumberFormat {
|
|
20976
|
+
/**
|
|
20977
|
+
* Unit of the number format.
|
|
20978
|
+
*/
|
|
20979
|
+
unit: outputs.PowerpackWidgetToplistDefinitionRequestFormulaNumberFormatUnit;
|
|
20980
|
+
unitScale?: outputs.PowerpackWidgetToplistDefinitionRequestFormulaNumberFormatUnitScale;
|
|
20981
|
+
}
|
|
20982
|
+
export interface PowerpackWidgetToplistDefinitionRequestFormulaNumberFormatUnit {
|
|
20983
|
+
/**
|
|
20984
|
+
* Canonical Units
|
|
20985
|
+
*/
|
|
20986
|
+
canonical?: outputs.PowerpackWidgetToplistDefinitionRequestFormulaNumberFormatUnitCanonical;
|
|
20987
|
+
/**
|
|
20988
|
+
* Use custom (non canonical metrics)
|
|
20989
|
+
*/
|
|
20990
|
+
custom?: outputs.PowerpackWidgetToplistDefinitionRequestFormulaNumberFormatUnitCustom;
|
|
20991
|
+
}
|
|
20992
|
+
export interface PowerpackWidgetToplistDefinitionRequestFormulaNumberFormatUnitCanonical {
|
|
20993
|
+
/**
|
|
20994
|
+
* per unit name. If you want to represent megabytes/s, you set 'unit*name' = 'megabyte' and 'per*unit_name = 'second'
|
|
20995
|
+
*/
|
|
20996
|
+
perUnitName?: string;
|
|
20997
|
+
/**
|
|
20998
|
+
* Unit name. It should be in singular form ('megabyte' and not 'megabytes')
|
|
20999
|
+
*/
|
|
21000
|
+
unitName: string;
|
|
21001
|
+
}
|
|
21002
|
+
export interface PowerpackWidgetToplistDefinitionRequestFormulaNumberFormatUnitCustom {
|
|
21003
|
+
/**
|
|
21004
|
+
* Unit label
|
|
21005
|
+
*/
|
|
21006
|
+
label: string;
|
|
21007
|
+
}
|
|
21008
|
+
export interface PowerpackWidgetToplistDefinitionRequestFormulaNumberFormatUnitScale {
|
|
21009
|
+
unitName: string;
|
|
21010
|
+
}
|
|
20291
21011
|
export interface PowerpackWidgetToplistDefinitionRequestFormulaStyle {
|
|
20292
21012
|
/**
|
|
20293
21013
|
* The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
|
|
@@ -20889,6 +21609,10 @@ export interface PowerpackWidgetToplistDefinitionStyle {
|
|
|
20889
21609
|
* The color palette for the widget.
|
|
20890
21610
|
*/
|
|
20891
21611
|
palette?: string;
|
|
21612
|
+
/**
|
|
21613
|
+
* The scaling mode for the widget. Valid values are `absolute`, `relative`.
|
|
21614
|
+
*/
|
|
21615
|
+
scaling: string;
|
|
20892
21616
|
}
|
|
20893
21617
|
export interface PowerpackWidgetToplistDefinitionStyleDisplay {
|
|
20894
21618
|
/**
|
|
@@ -21042,7 +21766,7 @@ export interface PowerpackWidgetTreemapDefinitionRequestFormula {
|
|
|
21042
21766
|
*/
|
|
21043
21767
|
alias?: string;
|
|
21044
21768
|
/**
|
|
21045
|
-
* A list of display modes for each table cell. Valid values are `number`, `bar`.
|
|
21769
|
+
* A list of display modes for each table cell. Valid values are `number`, `bar`, `trend`.
|
|
21046
21770
|
*/
|
|
21047
21771
|
cellDisplayMode?: string;
|
|
21048
21772
|
/**
|
|
@@ -21057,6 +21781,10 @@ export interface PowerpackWidgetTreemapDefinitionRequestFormula {
|
|
|
21057
21781
|
* The options for limiting results returned.
|
|
21058
21782
|
*/
|
|
21059
21783
|
limit?: outputs.PowerpackWidgetTreemapDefinitionRequestFormulaLimit;
|
|
21784
|
+
/**
|
|
21785
|
+
* Number formatting options for the formula.
|
|
21786
|
+
*/
|
|
21787
|
+
numberFormat?: outputs.PowerpackWidgetTreemapDefinitionRequestFormulaNumberFormat;
|
|
21060
21788
|
/**
|
|
21061
21789
|
* Styling options for widget formulas.
|
|
21062
21790
|
*/
|
|
@@ -21110,6 +21838,42 @@ export interface PowerpackWidgetTreemapDefinitionRequestFormulaLimit {
|
|
|
21110
21838
|
*/
|
|
21111
21839
|
order?: string;
|
|
21112
21840
|
}
|
|
21841
|
+
export interface PowerpackWidgetTreemapDefinitionRequestFormulaNumberFormat {
|
|
21842
|
+
/**
|
|
21843
|
+
* Unit of the number format.
|
|
21844
|
+
*/
|
|
21845
|
+
unit: outputs.PowerpackWidgetTreemapDefinitionRequestFormulaNumberFormatUnit;
|
|
21846
|
+
unitScale?: outputs.PowerpackWidgetTreemapDefinitionRequestFormulaNumberFormatUnitScale;
|
|
21847
|
+
}
|
|
21848
|
+
export interface PowerpackWidgetTreemapDefinitionRequestFormulaNumberFormatUnit {
|
|
21849
|
+
/**
|
|
21850
|
+
* Canonical Units
|
|
21851
|
+
*/
|
|
21852
|
+
canonical?: outputs.PowerpackWidgetTreemapDefinitionRequestFormulaNumberFormatUnitCanonical;
|
|
21853
|
+
/**
|
|
21854
|
+
* Use custom (non canonical metrics)
|
|
21855
|
+
*/
|
|
21856
|
+
custom?: outputs.PowerpackWidgetTreemapDefinitionRequestFormulaNumberFormatUnitCustom;
|
|
21857
|
+
}
|
|
21858
|
+
export interface PowerpackWidgetTreemapDefinitionRequestFormulaNumberFormatUnitCanonical {
|
|
21859
|
+
/**
|
|
21860
|
+
* per unit name. If you want to represent megabytes/s, you set 'unit*name' = 'megabyte' and 'per*unit_name = 'second'
|
|
21861
|
+
*/
|
|
21862
|
+
perUnitName?: string;
|
|
21863
|
+
/**
|
|
21864
|
+
* Unit name. It should be in singular form ('megabyte' and not 'megabytes')
|
|
21865
|
+
*/
|
|
21866
|
+
unitName: string;
|
|
21867
|
+
}
|
|
21868
|
+
export interface PowerpackWidgetTreemapDefinitionRequestFormulaNumberFormatUnitCustom {
|
|
21869
|
+
/**
|
|
21870
|
+
* Unit label
|
|
21871
|
+
*/
|
|
21872
|
+
label: string;
|
|
21873
|
+
}
|
|
21874
|
+
export interface PowerpackWidgetTreemapDefinitionRequestFormulaNumberFormatUnitScale {
|
|
21875
|
+
unitName: string;
|
|
21876
|
+
}
|
|
21113
21877
|
export interface PowerpackWidgetTreemapDefinitionRequestFormulaStyle {
|
|
21114
21878
|
/**
|
|
21115
21879
|
* The color palette used to display the formula. A guide to the available color palettes can be found at https://docs.datadoghq.com/dashboards/guide/widget_colors.
|
|
@@ -21596,7 +22360,7 @@ export interface SecurityMonitoringRuleOptions {
|
|
|
21596
22360
|
*/
|
|
21597
22361
|
detectionMethod?: string;
|
|
21598
22362
|
/**
|
|
21599
|
-
* A time window is specified to match when at least one of the cases matches true. This is a sliding window and evaluates in real time. Valid values are `0`, `60`, `300`, `600`, `900`, `1800`, `3600`, `7200`.
|
|
22363
|
+
* A time window is specified to match when at least one of the cases matches true. This is a sliding window and evaluates in real time. Valid values are `0`, `60`, `300`, `600`, `900`, `1800`, `3600`, `7200`, `10800`, `21600`, `43200`, `86400`.
|
|
21600
22364
|
*/
|
|
21601
22365
|
evaluationWindow?: number;
|
|
21602
22366
|
/**
|
|
@@ -21604,7 +22368,7 @@ export interface SecurityMonitoringRuleOptions {
|
|
|
21604
22368
|
*/
|
|
21605
22369
|
impossibleTravelOptions?: outputs.SecurityMonitoringRuleOptionsImpossibleTravelOptions;
|
|
21606
22370
|
/**
|
|
21607
|
-
* Once a signal is generated, the signal will remain “open” if a case is matched at least once within this keep alive window (in seconds). Valid values are `0`, `60`, `300`, `600`, `900`, `1800`, `3600`, `7200`, `10800`, `21600`.
|
|
22371
|
+
* Once a signal is generated, the signal will remain “open” if a case is matched at least once within this keep alive window (in seconds). Valid values are `0`, `60`, `300`, `600`, `900`, `1800`, `3600`, `7200`, `10800`, `21600`, `43200`, `86400`.
|
|
21608
22372
|
*/
|
|
21609
22373
|
keepAlive?: number;
|
|
21610
22374
|
/**
|
|
@@ -22678,7 +23442,7 @@ export interface SyntheticsTestBrowserVariable {
|
|
|
22678
23442
|
*/
|
|
22679
23443
|
secure?: boolean;
|
|
22680
23444
|
/**
|
|
22681
|
-
* Type of browser test variable. Valid values are `element`, `email`, `global`, `
|
|
23445
|
+
* Type of browser test variable. Valid values are `element`, `email`, `global`, `text`.
|
|
22682
23446
|
*/
|
|
22683
23447
|
type: string;
|
|
22684
23448
|
}
|
|
@@ -23442,7 +24206,7 @@ export declare namespace azure {
|
|
|
23442
24206
|
export declare namespace config {
|
|
23443
24207
|
interface DefaultTags {
|
|
23444
24208
|
/**
|
|
23445
|
-
* [Experimental - Monitors only] Resource tags to be applied by default across all resources.
|
|
24209
|
+
* [Experimental - Monitors and Logs Pipelines only] Resource tags to be applied by default across all resources.
|
|
23446
24210
|
*/
|
|
23447
24211
|
tags?: {
|
|
23448
24212
|
[key: string]: string;
|