File tree Expand file tree Collapse file tree 5 files changed +46
-4
lines changed
packages/datadog-api-client-v1/models Expand file tree Collapse file tree 5 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-07-25 21 :17:45.109330 ",
8
- "spec_repo_commit": "91969c8e "
7
+ "regenerated": "2023-07-26 14 :17:59.770492 ",
8
+ "spec_repo_commit": "835cb6df "
9
9
},
10
10
"v2": {
11
11
"apigentools_version": "1.6.5",
12
- "regenerated": "2023-07-25 21 :17:45.122774 ",
13
- "spec_repo_commit": "91969c8e "
12
+ "regenerated": "2023-07-26 14 :17:59.784271 ",
13
+ "spec_repo_commit": "835cb6df "
14
14
}
15
15
}
16
16
}
Original file line number Diff line number Diff line change @@ -17879,6 +17879,11 @@ components:
17879
17879
Management hosts over all hours in the current date for the given org.
17880
17880
format: int64
17881
17881
type: integer
17882
+ workflow_executions_usage_sum:
17883
+ description: Sum of all workflows executed over all hours in the current
17884
+ date for all organizations.
17885
+ format: int64
17886
+ type: integer
17882
17887
type: object
17883
17888
UsageSummaryDateOrg:
17884
17889
description: Global hourly report of all data billed by Datadog for a given
@@ -18304,6 +18309,11 @@ components:
18304
18309
Management hosts over all hours in the current date for the given org.
18305
18310
format: int64
18306
18311
type: integer
18312
+ workflow_executions_usage_sum:
18313
+ description: Sum of all workflows executed over all hours in the current
18314
+ date for the given org.
18315
+ format: int64
18316
+ type: integer
18307
18317
type: object
18308
18318
UsageSummaryResponse:
18309
18319
description: Response summarizing all usage aggregated across the months in
@@ -18777,6 +18787,11 @@ components:
18777
18787
Management hosts over all hours in the current months for all organizations.
18778
18788
format: int64
18779
18789
type: integer
18790
+ workflow_executions_usage_agg_sum:
18791
+ description: Sum of all workflows executed over all hours in the current
18792
+ months for all organizations.
18793
+ format: int64
18794
+ type: integer
18780
18795
type: object
18781
18796
UsageSyntheticsAPIHour:
18782
18797
description: Number of Synthetics API tests run for each hour for a given organization.
Original file line number Diff line number Diff line change @@ -343,6 +343,10 @@ export class UsageSummaryDate {
343
343
* Shows the 99th percentile of all Application Vulnerability Management hosts over all hours in the current date for the given org.
344
344
*/
345
345
"vulnManagementHostCountTop99p" ?: number ;
346
+ /**
347
+ * Sum of all workflows executed over all hours in the current date for all organizations.
348
+ */
349
+ "workflowExecutionsUsageSum" ?: number ;
346
350
347
351
/**
348
352
* @ignore
@@ -767,6 +771,11 @@ export class UsageSummaryDate {
767
771
type : "number" ,
768
772
format : "int64" ,
769
773
} ,
774
+ workflowExecutionsUsageSum : {
775
+ baseName : "workflow_executions_usage_sum" ,
776
+ type : "number" ,
777
+ format : "int64" ,
778
+ } ,
770
779
} ;
771
780
772
781
/**
Original file line number Diff line number Diff line change @@ -350,6 +350,10 @@ export class UsageSummaryDateOrg {
350
350
* Shows the 99th percentile of all Application Vulnerability Management hosts over all hours in the current date for the given org.
351
351
*/
352
352
"vulnManagementHostCountTop99p" ?: number ;
353
+ /**
354
+ * Sum of all workflows executed over all hours in the current date for the given org.
355
+ */
356
+ "workflowExecutionsUsageSum" ?: number ;
353
357
354
358
/**
355
359
* @ignore
@@ -781,6 +785,11 @@ export class UsageSummaryDateOrg {
781
785
type : "number" ,
782
786
format : "int64" ,
783
787
} ,
788
+ workflowExecutionsUsageSum : {
789
+ baseName : "workflow_executions_usage_sum" ,
790
+ type : "number" ,
791
+ format : "int64" ,
792
+ } ,
784
793
} ;
785
794
786
795
/**
Original file line number Diff line number Diff line change @@ -380,6 +380,10 @@ export class UsageSummaryResponse {
380
380
* Shows the 99th percentile of all Application Vulnerability Management hosts over all hours in the current months for all organizations.
381
381
*/
382
382
"vulnManagementHostCountTop99pSum" ?: number ;
383
+ /**
384
+ * Sum of all workflows executed over all hours in the current months for all organizations.
385
+ */
386
+ "workflowExecutionsUsageAggSum" ?: number ;
383
387
384
388
/**
385
389
* @ignore
@@ -848,6 +852,11 @@ export class UsageSummaryResponse {
848
852
type : "number" ,
849
853
format : "int64" ,
850
854
} ,
855
+ workflowExecutionsUsageAggSum : {
856
+ baseName : "workflow_executions_usage_agg_sum" ,
857
+ type : "number" ,
858
+ format : "int64" ,
859
+ } ,
851
860
} ;
852
861
853
862
/**
You can’t perform that action at this time.
0 commit comments