Skip to content

Commit 21811de

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit 6cac766e of spec repo
1 parent 99e9374 commit 21811de

File tree

6 files changed

+48
-4
lines changed

6 files changed

+48
-4
lines changed

.apigentools-info

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
"spec_versions": {
55
"v1": {
66
"apigentools_version": "1.6.6",
7-
"regenerated": "2023-10-17 14:49:41.353030",
8-
"spec_repo_commit": "a9d493f5"
7+
"regenerated": "2023-10-18 19:36:07.794942",
8+
"spec_repo_commit": "6cac766e"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.6",
12-
"regenerated": "2023-10-17 14:49:41.367377",
13-
"spec_repo_commit": "a9d493f5"
12+
"regenerated": "2023-10-18 19:36:07.809136",
13+
"spec_repo_commit": "6cac766e"
1414
}
1515
}
1616
}

.generator/schemas/v1/openapi.yaml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3922,6 +3922,7 @@ components:
39223922
- functions_usage
39233923
- infra_host_usage
39243924
- invocations_usage
3925+
- lambda_traced_invocations_usage
39253926
- mobile_app_testing_usage
39263927
- ndm_netflow_usage
39273928
- npm_host_usage
@@ -3964,6 +3965,7 @@ components:
39643965
- FUNCTIONS_USAGE
39653966
- INFRA_HOST_USAGE
39663967
- INVOCATIONS_USAGE
3968+
- LAMBDA_TRACED_INVOCATIONS_USAGE
39673969
- MOBILE_APP_TESTING_USAGE
39683970
- NDM_NETFLOW_USAGE
39693971
- NPM_HOST_USAGE
@@ -7545,6 +7547,8 @@ components:
75457547
- infra_host_percentage
75467548
- invocations_usage
75477549
- invocations_percentage
7550+
- lambda_traced_invocations_usage
7551+
- lambda_traced_invocations_percentage
75487552
- mobile_app_testing_percentage
75497553
- mobile_app_testing_usage
75507554
- ndm_netflow_usage
@@ -7628,6 +7632,8 @@ components:
76287632
- INFRA_HOST_PERCENTAGE
76297633
- INVOCATIONS_USAGE
76307634
- INVOCATIONS_PERCENTAGE
7635+
- LAMBDA_TRACED_INVOCATIONS_USAGE
7636+
- LAMBDA_TRACED_INVOCATIONS_PERCENTAGE
76317637
- MOBILE_APP_TESTING_USAGE
76327638
- MOBILE_APP_TESTING_PERCENTAGE
76337639
- NDM_NETFLOW_USAGE
@@ -7893,6 +7899,14 @@ components:
78937899
description: The Lambda invocation usage by tag(s).
78947900
format: double
78957901
type: number
7902+
lambda_traced_invocations_percentage:
7903+
description: The percentage of Serverless APM usage by tag(s).
7904+
format: double
7905+
type: number
7906+
lambda_traced_invocations_usage:
7907+
description: The Serverless APM usage by tag(s).
7908+
format: double
7909+
type: number
78967910
mobile_app_testing_percentage:
78977911
description: The percentage of Synthetic mobile application test usage by
78987912
tag(s).

packages/datadog-api-client-v1/models/HourlyUsageAttributionUsageType.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ export type HourlyUsageAttributionUsageType =
3939
| typeof FUNCTIONS_USAGE
4040
| typeof INFRA_HOST_USAGE
4141
| typeof INVOCATIONS_USAGE
42+
| typeof LAMBDA_TRACED_INVOCATIONS_USAGE
4243
| typeof MOBILE_APP_TESTING_USAGE
4344
| typeof NDM_NETFLOW_USAGE
4445
| typeof NPM_HOST_USAGE
@@ -81,6 +82,8 @@ export const FARGATE_USAGE = "fargate_usage";
8182
export const FUNCTIONS_USAGE = "functions_usage";
8283
export const INFRA_HOST_USAGE = "infra_host_usage";
8384
export const INVOCATIONS_USAGE = "invocations_usage";
85+
export const LAMBDA_TRACED_INVOCATIONS_USAGE =
86+
"lambda_traced_invocations_usage";
8487
export const MOBILE_APP_TESTING_USAGE = "mobile_app_testing_usage";
8588
export const NDM_NETFLOW_USAGE = "ndm_netflow_usage";
8689
export const NPM_HOST_USAGE = "npm_host_usage";

packages/datadog-api-client-v1/models/MonthlyUsageAttributionSupportedMetrics.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,8 @@ export type MonthlyUsageAttributionSupportedMetrics =
6565
| typeof INFRA_HOST_PERCENTAGE
6666
| typeof INVOCATIONS_USAGE
6767
| typeof INVOCATIONS_PERCENTAGE
68+
| typeof LAMBDA_TRACED_INVOCATIONS_USAGE
69+
| typeof LAMBDA_TRACED_INVOCATIONS_PERCENTAGE
6870
| typeof MOBILE_APP_TESTING_USAGE
6971
| typeof MOBILE_APP_TESTING_PERCENTAGE
7072
| typeof NDM_NETFLOW_USAGE
@@ -154,6 +156,10 @@ export const INFRA_HOST_USAGE = "infra_host_usage";
154156
export const INFRA_HOST_PERCENTAGE = "infra_host_percentage";
155157
export const INVOCATIONS_USAGE = "invocations_usage";
156158
export const INVOCATIONS_PERCENTAGE = "invocations_percentage";
159+
export const LAMBDA_TRACED_INVOCATIONS_USAGE =
160+
"lambda_traced_invocations_usage";
161+
export const LAMBDA_TRACED_INVOCATIONS_PERCENTAGE =
162+
"lambda_traced_invocations_percentage";
157163
export const MOBILE_APP_TESTING_USAGE = "mobile_app_testing_percentage";
158164
export const MOBILE_APP_TESTING_PERCENTAGE = "mobile_app_testing_usage";
159165
export const NDM_NETFLOW_USAGE = "ndm_netflow_usage";

packages/datadog-api-client-v1/models/MonthlyUsageAttributionValues.ts

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -234,6 +234,14 @@ export class MonthlyUsageAttributionValues {
234234
* The Lambda invocation usage by tag(s).
235235
*/
236236
"invocationsUsage"?: number;
237+
/**
238+
* The percentage of Serverless APM usage by tag(s).
239+
*/
240+
"lambdaTracedInvocationsPercentage"?: number;
241+
/**
242+
* The Serverless APM usage by tag(s).
243+
*/
244+
"lambdaTracedInvocationsUsage"?: number;
237245
/**
238246
* The percentage of Synthetic mobile application test usage by tag(s).
239247
*/
@@ -620,6 +628,16 @@ export class MonthlyUsageAttributionValues {
620628
type: "number",
621629
format: "double",
622630
},
631+
lambdaTracedInvocationsPercentage: {
632+
baseName: "lambda_traced_invocations_percentage",
633+
type: "number",
634+
format: "double",
635+
},
636+
lambdaTracedInvocationsUsage: {
637+
baseName: "lambda_traced_invocations_usage",
638+
type: "number",
639+
format: "double",
640+
},
623641
mobileAppTestingPercentage: {
624642
baseName: "mobile_app_testing_percentage",
625643
type: "number",

packages/datadog-api-client-v1/models/ObjectSerializer.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -771,6 +771,7 @@ const enumsMap: { [key: string]: any[] } = {
771771
"functions_usage",
772772
"infra_host_usage",
773773
"invocations_usage",
774+
"lambda_traced_invocations_usage",
774775
"mobile_app_testing_usage",
775776
"ndm_netflow_usage",
776777
"npm_host_usage",
@@ -962,6 +963,8 @@ const enumsMap: { [key: string]: any[] } = {
962963
"infra_host_percentage",
963964
"invocations_usage",
964965
"invocations_percentage",
966+
"lambda_traced_invocations_usage",
967+
"lambda_traced_invocations_percentage",
965968
"mobile_app_testing_percentage",
966969
"mobile_app_testing_usage",
967970
"ndm_netflow_usage",

0 commit comments

Comments
 (0)