Skip to content

Commit

Permalink
Regenerate client from commit 696abec0 of spec repo
Browse files Browse the repository at this point in the history
  • Loading branch information
ci.datadog-api-spec committed Oct 23, 2023
1 parent 29646b1 commit 2889238
Show file tree
Hide file tree
Showing 6 changed files with 48 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .apigentools-info
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
"spec_versions": {
"v1": {
"apigentools_version": "1.6.6",
"regenerated": "2023-10-19 13:23:59.746797",
"spec_repo_commit": "823e1cf6"
"regenerated": "2023-10-23 18:35:31.549940",
"spec_repo_commit": "696abec0"
},
"v2": {
"apigentools_version": "1.6.6",
"regenerated": "2023-10-19 13:23:59.762506",
"spec_repo_commit": "823e1cf6"
"regenerated": "2023-10-23 18:35:31.566621",
"spec_repo_commit": "696abec0"
}
}
}
14 changes: 14 additions & 0 deletions .generator/schemas/v1/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3922,6 +3922,7 @@ components:
- functions_usage
- infra_host_usage
- invocations_usage
- lambda_traced_invocations_usage
- mobile_app_testing_usage
- ndm_netflow_usage
- npm_host_usage
Expand Down Expand Up @@ -3964,6 +3965,7 @@ components:
- FUNCTIONS_USAGE
- INFRA_HOST_USAGE
- INVOCATIONS_USAGE
- LAMBDA_TRACED_INVOCATIONS_USAGE
- MOBILE_APP_TESTING_USAGE
- NDM_NETFLOW_USAGE
- NPM_HOST_USAGE
Expand Down Expand Up @@ -7545,6 +7547,8 @@ components:
- infra_host_percentage
- invocations_usage
- invocations_percentage
- lambda_traced_invocations_usage
- lambda_traced_invocations_percentage
- mobile_app_testing_percentage
- mobile_app_testing_usage
- ndm_netflow_usage
Expand Down Expand Up @@ -7628,6 +7632,8 @@ components:
- INFRA_HOST_PERCENTAGE
- INVOCATIONS_USAGE
- INVOCATIONS_PERCENTAGE
- LAMBDA_TRACED_INVOCATIONS_USAGE
- LAMBDA_TRACED_INVOCATIONS_PERCENTAGE
- MOBILE_APP_TESTING_USAGE
- MOBILE_APP_TESTING_PERCENTAGE
- NDM_NETFLOW_USAGE
Expand Down Expand Up @@ -7893,6 +7899,14 @@ components:
description: The Lambda invocation usage by tag(s).
format: double
type: number
lambda_traced_invocations_percentage:
description: The percentage of Serverless APM usage by tag(s).
format: double
type: number
lambda_traced_invocations_usage:
description: The Serverless APM usage by tag(s).
format: double
type: number
mobile_app_testing_percentage:
description: The percentage of Synthetic mobile application test usage by
tag(s).
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ export type HourlyUsageAttributionUsageType =
| typeof FUNCTIONS_USAGE
| typeof INFRA_HOST_USAGE
| typeof INVOCATIONS_USAGE
| typeof LAMBDA_TRACED_INVOCATIONS_USAGE
| typeof MOBILE_APP_TESTING_USAGE
| typeof NDM_NETFLOW_USAGE
| typeof NPM_HOST_USAGE
Expand Down Expand Up @@ -81,6 +82,8 @@ export const FARGATE_USAGE = "fargate_usage";
export const FUNCTIONS_USAGE = "functions_usage";
export const INFRA_HOST_USAGE = "infra_host_usage";
export const INVOCATIONS_USAGE = "invocations_usage";
export const LAMBDA_TRACED_INVOCATIONS_USAGE =
"lambda_traced_invocations_usage";
export const MOBILE_APP_TESTING_USAGE = "mobile_app_testing_usage";
export const NDM_NETFLOW_USAGE = "ndm_netflow_usage";
export const NPM_HOST_USAGE = "npm_host_usage";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,8 @@ export type MonthlyUsageAttributionSupportedMetrics =
| typeof INFRA_HOST_PERCENTAGE
| typeof INVOCATIONS_USAGE
| typeof INVOCATIONS_PERCENTAGE
| typeof LAMBDA_TRACED_INVOCATIONS_USAGE
| typeof LAMBDA_TRACED_INVOCATIONS_PERCENTAGE
| typeof MOBILE_APP_TESTING_USAGE
| typeof MOBILE_APP_TESTING_PERCENTAGE
| typeof NDM_NETFLOW_USAGE
Expand Down Expand Up @@ -154,6 +156,10 @@ export const INFRA_HOST_USAGE = "infra_host_usage";
export const INFRA_HOST_PERCENTAGE = "infra_host_percentage";
export const INVOCATIONS_USAGE = "invocations_usage";
export const INVOCATIONS_PERCENTAGE = "invocations_percentage";
export const LAMBDA_TRACED_INVOCATIONS_USAGE =
"lambda_traced_invocations_usage";
export const LAMBDA_TRACED_INVOCATIONS_PERCENTAGE =
"lambda_traced_invocations_percentage";
export const MOBILE_APP_TESTING_USAGE = "mobile_app_testing_percentage";
export const MOBILE_APP_TESTING_PERCENTAGE = "mobile_app_testing_usage";
export const NDM_NETFLOW_USAGE = "ndm_netflow_usage";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -234,6 +234,14 @@ export class MonthlyUsageAttributionValues {
* The Lambda invocation usage by tag(s).
*/
"invocationsUsage"?: number;
/**
* The percentage of Serverless APM usage by tag(s).
*/
"lambdaTracedInvocationsPercentage"?: number;
/**
* The Serverless APM usage by tag(s).
*/
"lambdaTracedInvocationsUsage"?: number;
/**
* The percentage of Synthetic mobile application test usage by tag(s).
*/
Expand Down Expand Up @@ -620,6 +628,16 @@ export class MonthlyUsageAttributionValues {
type: "number",
format: "double",
},
lambdaTracedInvocationsPercentage: {
baseName: "lambda_traced_invocations_percentage",
type: "number",
format: "double",
},
lambdaTracedInvocationsUsage: {
baseName: "lambda_traced_invocations_usage",
type: "number",
format: "double",
},
mobileAppTestingPercentage: {
baseName: "mobile_app_testing_percentage",
type: "number",
Expand Down
3 changes: 3 additions & 0 deletions packages/datadog-api-client-v1/models/ObjectSerializer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -771,6 +771,7 @@ const enumsMap: { [key: string]: any[] } = {
"functions_usage",
"infra_host_usage",
"invocations_usage",
"lambda_traced_invocations_usage",
"mobile_app_testing_usage",
"ndm_netflow_usage",
"npm_host_usage",
Expand Down Expand Up @@ -962,6 +963,8 @@ const enumsMap: { [key: string]: any[] } = {
"infra_host_percentage",
"invocations_usage",
"invocations_percentage",
"lambda_traced_invocations_usage",
"lambda_traced_invocations_percentage",
"mobile_app_testing_percentage",
"mobile_app_testing_usage",
"ndm_netflow_usage",
Expand Down

0 comments on commit 2889238

Please sign in to comment.