File tree Expand file tree Collapse file tree 6 files changed +46
-4
lines changed
packages/datadog-api-client-v1/models Expand file tree Collapse file tree 6 files changed +46
-4
lines changed Original file line number Diff line number Diff line change 4
4
"spec_versions": {
5
5
"v1": {
6
6
"apigentools_version": "1.6.5",
7
- "regenerated": "2023-08-16 07:23:46.459356 ",
8
- "spec_repo_commit": "f7f3d222 "
7
+ "regenerated": "2023-08-17 17:20:40.199652 ",
8
+ "spec_repo_commit": "357af604 "
9
9
},
10
10
"v2": {
11
11
"apigentools_version": "1.6.5",
12
- "regenerated": "2023-08-16 07:23:46.473906 ",
13
- "spec_repo_commit": "f7f3d222 "
12
+ "regenerated": "2023-08-17 17:20:40.214370 ",
13
+ "spec_repo_commit": "357af604 "
14
14
}
15
15
}
16
16
}
Original file line number Diff line number Diff line change @@ -3887,6 +3887,7 @@ components:
3887
3887
- api_usage
3888
3888
- apm_fargate_usage
3889
3889
- apm_host_usage
3890
+ - apm_usm_usage
3890
3891
- appsec_fargate_usage
3891
3892
- appsec_usage
3892
3893
- browser_usage
@@ -3924,6 +3925,7 @@ components:
3924
3925
- API_USAGE
3925
3926
- APM_FARGATE_USAGE
3926
3927
- APM_HOST_USAGE
3928
+ - APM_USM_USAGE
3927
3929
- APPSEC_FARGATE_USAGE
3928
3930
- APPSEC_USAGE
3929
3931
- BROWSER_USAGE
@@ -7430,6 +7432,8 @@ components:
7430
7432
- appsec_fargate_percentage
7431
7433
- apm_host_usage
7432
7434
- apm_host_percentage
7435
+ - apm_usm_usage
7436
+ - apm_usm_percentage
7433
7437
- appsec_usage
7434
7438
- appsec_percentage
7435
7439
- browser_usage
@@ -7503,6 +7507,8 @@ components:
7503
7507
- APPSEC_FARGATE_PERCENTAGE
7504
7508
- APM_HOST_USAGE
7505
7509
- APM_HOST_PERCENTAGE
7510
+ - APM_USM_USAGE
7511
+ - APM_USM_PERCENTAGE
7506
7512
- APPSEC_USAGE
7507
7513
- APPSEC_PERCENTAGE
7508
7514
- BROWSER_USAGE
@@ -7593,6 +7599,15 @@ components:
7593
7599
description: The APM host usage by tag(s).
7594
7600
format: double
7595
7601
type: number
7602
+ apm_usm_percentage:
7603
+ description: The percentage of APM and Universal Service Monitoring host
7604
+ usage by tag(s).
7605
+ format: double
7606
+ type: number
7607
+ apm_usm_usage:
7608
+ description: The APM and Universal Service Monitoring host usage by tag(s).
7609
+ format: double
7610
+ type: number
7596
7611
appsec_fargate_percentage:
7597
7612
description: The percentage of Application Security Monitoring ECS Fargate
7598
7613
task usage by tag(s).
Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ export type HourlyUsageAttributionUsageType =
14
14
| typeof API_USAGE
15
15
| typeof APM_FARGATE_USAGE
16
16
| typeof APM_HOST_USAGE
17
+ | typeof APM_USM_USAGE
17
18
| typeof APPSEC_FARGATE_USAGE
18
19
| typeof APPSEC_USAGE
19
20
| typeof BROWSER_USAGE
@@ -50,6 +51,7 @@ export type HourlyUsageAttributionUsageType =
50
51
export const API_USAGE = "api_usage" ;
51
52
export const APM_FARGATE_USAGE = "apm_fargate_usage" ;
52
53
export const APM_HOST_USAGE = "apm_host_usage" ;
54
+ export const APM_USM_USAGE = "apm_usm_usage" ;
53
55
export const APPSEC_FARGATE_USAGE = "appsec_fargate_usage" ;
54
56
export const APPSEC_USAGE = "appsec_usage" ;
55
57
export const BROWSER_USAGE = "browser_usage" ;
Original file line number Diff line number Diff line change @@ -19,6 +19,8 @@ export type MonthlyUsageAttributionSupportedMetrics =
19
19
| typeof APPSEC_FARGATE_PERCENTAGE
20
20
| typeof APM_HOST_USAGE
21
21
| typeof APM_HOST_PERCENTAGE
22
+ | typeof APM_USM_USAGE
23
+ | typeof APM_USM_PERCENTAGE
22
24
| typeof APPSEC_USAGE
23
25
| typeof APPSEC_PERCENTAGE
24
26
| typeof BROWSER_USAGE
@@ -91,6 +93,8 @@ export const APPSEC_FARGATE_USAGE = "appsec_fargate_usage";
91
93
export const APPSEC_FARGATE_PERCENTAGE = "appsec_fargate_percentage" ;
92
94
export const APM_HOST_USAGE = "apm_host_usage" ;
93
95
export const APM_HOST_PERCENTAGE = "apm_host_percentage" ;
96
+ export const APM_USM_USAGE = "apm_usm_usage" ;
97
+ export const APM_USM_PERCENTAGE = "apm_usm_percentage" ;
94
98
export const APPSEC_USAGE = "appsec_usage" ;
95
99
export const APPSEC_PERCENTAGE = "appsec_percentage" ;
96
100
export const BROWSER_USAGE = "browser_usage" ;
Original file line number Diff line number Diff line change @@ -34,6 +34,14 @@ export class MonthlyUsageAttributionValues {
34
34
* The APM host usage by tag(s).
35
35
*/
36
36
"apmHostUsage" ?: number ;
37
+ /**
38
+ * The percentage of APM and Universal Service Monitoring host usage by tag(s).
39
+ */
40
+ "apmUsmPercentage" ?: number ;
41
+ /**
42
+ * The APM and Universal Service Monitoring host usage by tag(s).
43
+ */
44
+ "apmUsmUsage" ?: number ;
37
45
/**
38
46
* The percentage of Application Security Monitoring ECS Fargate task usage by tag(s).
39
47
*/
@@ -330,6 +338,16 @@ export class MonthlyUsageAttributionValues {
330
338
type : "number" ,
331
339
format : "double" ,
332
340
} ,
341
+ apmUsmPercentage : {
342
+ baseName : "apm_usm_percentage" ,
343
+ type : "number" ,
344
+ format : "double" ,
345
+ } ,
346
+ apmUsmUsage : {
347
+ baseName : "apm_usm_usage" ,
348
+ type : "number" ,
349
+ format : "double" ,
350
+ } ,
333
351
appsecFargatePercentage : {
334
352
baseName : "appsec_fargate_percentage" ,
335
353
type : "number" ,
Original file line number Diff line number Diff line change @@ -734,6 +734,7 @@ const enumsMap: { [key: string]: any[] } = {
734
734
"api_usage" ,
735
735
"apm_fargate_usage" ,
736
736
"apm_host_usage" ,
737
+ "apm_usm_usage" ,
737
738
"appsec_fargate_usage" ,
738
739
"appsec_usage" ,
739
740
"browser_usage" ,
@@ -898,6 +899,8 @@ const enumsMap: { [key: string]: any[] } = {
898
899
"appsec_fargate_percentage" ,
899
900
"apm_host_usage" ,
900
901
"apm_host_percentage" ,
902
+ "apm_usm_usage" ,
903
+ "apm_usm_percentage" ,
901
904
"appsec_usage" ,
902
905
"appsec_percentage" ,
903
906
"browser_usage" ,
You can’t perform that action at this time.
0 commit comments