Skip to content

Commit b7bd4a8

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit 1d4e2c8 of spec repo
1 parent 1be054d commit b7bd4a8

File tree

3 files changed

+28
-7
lines changed

3 files changed

+28
-7
lines changed

.generator/schemas/v1/openapi.yaml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14785,9 +14785,6 @@ components:
1478514785
description: Username to use for the basic authentication.
1478614786
example: my_username
1478714787
type: string
14788-
required:
14789-
- password
14790-
- username
1479114788
type: object
1479214789
SyntheticsBasicAuthWebType:
1479314790
default: web
@@ -18616,6 +18613,14 @@ components:
1861618613
description: The total account usage.
1861718614
format: int64
1861818615
type: integer
18616+
account_committed_usage:
18617+
description: The total account committed usage.
18618+
format: int64
18619+
type: integer
18620+
account_on_demand_usage:
18621+
description: The total account on-demand usage.
18622+
format: int64
18623+
type: integer
1861918624
elapsed_usage_hours:
1862018625
description: Elapsed usage hours for some billable product.
1862118626
format: int64

services/synthetics/src/v1/models/SyntheticsBasicAuthWeb.ts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@ export class SyntheticsBasicAuthWeb {
99
/**
1010
* Password to use for the basic authentication.
1111
*/
12-
"password": string;
12+
"password"?: string;
1313
/**
1414
* The type of basic authentication to use when performing the test.
1515
*/
1616
"type"?: SyntheticsBasicAuthWebType;
1717
/**
1818
* Username to use for the basic authentication.
1919
*/
20-
"username": string;
20+
"username"?: string;
2121
/**
2222
* A container for additional, undeclared properties.
2323
* This is a holder for any undeclared properties as specified with
@@ -36,7 +36,6 @@ export class SyntheticsBasicAuthWeb {
3636
password: {
3737
baseName: "password",
3838
type: "string",
39-
required: true,
4039
},
4140
type: {
4241
baseName: "type",
@@ -45,7 +44,6 @@ export class SyntheticsBasicAuthWeb {
4544
username: {
4645
baseName: "username",
4746
type: "string",
48-
required: true,
4947
},
5048
additionalProperties: {
5149
baseName: "additionalProperties",

services/usage_metering/src/v1/models/UsageBillableSummaryBody.ts

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,14 @@ export class UsageBillableSummaryBody {
88
* The total account usage.
99
*/
1010
"accountBillableUsage"?: number;
11+
/**
12+
* The total account committed usage.
13+
*/
14+
"accountCommittedUsage"?: number;
15+
/**
16+
* The total account on-demand usage.
17+
*/
18+
"accountOnDemandUsage"?: number;
1119
/**
1220
* Elapsed usage hours for some billable product.
1321
*/
@@ -52,6 +60,16 @@ export class UsageBillableSummaryBody {
5260
type: "number",
5361
format: "int64",
5462
},
63+
accountCommittedUsage: {
64+
baseName: "account_committed_usage",
65+
type: "number",
66+
format: "int64",
67+
},
68+
accountOnDemandUsage: {
69+
baseName: "account_on_demand_usage",
70+
type: "number",
71+
format: "int64",
72+
},
5573
elapsedUsageHours: {
5674
baseName: "elapsed_usage_hours",
5775
type: "number",

0 commit comments

Comments
 (0)