Skip to content

Commit 29d3ff8

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit b61e2f52 of spec repo
1 parent a6a95f9 commit 29d3ff8

9 files changed

+33
-116
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.5",
7-
"regenerated": "2023-07-11 16:39:40.978975",
8-
"spec_repo_commit": "824086bb"
7+
"regenerated": "2023-07-12 18:22:52.548764",
8+
"spec_repo_commit": "b61e2f52"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.5",
12-
"regenerated": "2023-07-11 16:39:40.997312",
13-
"spec_repo_commit": "824086bb"
12+
"regenerated": "2023-07-12 18:22:52.562203",
13+
"spec_repo_commit": "b61e2f52"
1414
}
1515
}
1616
}

.generator/schemas/v2/openapi.yaml

Lines changed: 6 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1502,6 +1502,10 @@ components:
15021502
type: string
15031503
tags:
15041504
$ref: '#/components/schemas/TagsEventAttribute'
1505+
test_level:
1506+
description: The event test level.
1507+
example: session
1508+
type: string
15051509
timestamp:
15061510
$ref: '#/components/schemas/TimestampEventAttribute'
15071511
type: object
@@ -2192,7 +2196,7 @@ components:
21922196
links:
21932197
$ref: '#/components/schemas/CIAppResponseLinks'
21942198
meta:
2195-
$ref: '#/components/schemas/CIAppResponseMetadataWithPagination'
2199+
$ref: '#/components/schemas/CIAppResponseMetadata'
21962200
type: object
21972201
CIAppPipelinesAggregateRequest:
21982202
description: The object sent with the request to retrieve aggregation buckets
@@ -2335,29 +2339,6 @@ components:
23352339
type: string
23362340
type: object
23372341
CIAppResponseMetadata:
2338-
description: The metadata associated with a request.
2339-
properties:
2340-
elapsed:
2341-
description: The time elapsed in milliseconds.
2342-
example: 132
2343-
format: int64
2344-
type: integer
2345-
request_id:
2346-
description: The identifier of the request.
2347-
example: MWlFUjVaWGZTTTZPYzM0VXp1OXU2d3xLSVpEMjZKQ0VKUTI0dEYtM3RSOFVR
2348-
type: string
2349-
status:
2350-
$ref: '#/components/schemas/CIAppResponseStatus'
2351-
warnings:
2352-
description: 'A list of warnings (non-fatal errors) encountered. Partial
2353-
results may return if
2354-
2355-
warnings are present in the response.'
2356-
items:
2357-
$ref: '#/components/schemas/CIAppWarning'
2358-
type: array
2359-
type: object
2360-
CIAppResponseMetadataWithPagination:
23612342
description: The metadata associated with a request.
23622343
properties:
23632344
elapsed:
@@ -2465,7 +2446,7 @@ components:
24652446
links:
24662447
$ref: '#/components/schemas/CIAppResponseLinks'
24672448
meta:
2468-
$ref: '#/components/schemas/CIAppResponseMetadataWithPagination'
2449+
$ref: '#/components/schemas/CIAppResponseMetadata'
24692450
type: object
24702451
CIAppTestsAggregateRequest:
24712452
description: The object sent with the request to retrieve aggregation buckets

packages/datadog-api-client-v2/index.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -489,7 +489,6 @@ export { CIAppQueryOptions } from "./models/CIAppQueryOptions";
489489
export { CIAppQueryPageOptions } from "./models/CIAppQueryPageOptions";
490490
export { CIAppResponseLinks } from "./models/CIAppResponseLinks";
491491
export { CIAppResponseMetadata } from "./models/CIAppResponseMetadata";
492-
export { CIAppResponseMetadataWithPagination } from "./models/CIAppResponseMetadataWithPagination";
493492
export { CIAppResponsePage } from "./models/CIAppResponsePage";
494493
export { CIAppResponseStatus } from "./models/CIAppResponseStatus";
495494
export { CIAppSort } from "./models/CIAppSort";

packages/datadog-api-client-v2/models/CIAppEventAttributes.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,10 @@ export class CIAppEventAttributes {
2424
* Array of tags associated with your event.
2525
*/
2626
"tags"?: Array<string>;
27+
/**
28+
* The event test level.
29+
*/
30+
"testLevel"?: string;
2731
/**
2832
* Timestamp of your event.
2933
*/
@@ -50,6 +54,10 @@ export class CIAppEventAttributes {
5054
baseName: "tags",
5155
type: "Array<string>",
5256
},
57+
testLevel: {
58+
baseName: "test_level",
59+
type: "string",
60+
},
5361
timestamp: {
5462
baseName: "timestamp",
5563
type: "Date",

packages/datadog-api-client-v2/models/CIAppPipelineEventsResponse.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
*/
66
import { CIAppPipelineEvent } from "./CIAppPipelineEvent";
77
import { CIAppResponseLinks } from "./CIAppResponseLinks";
8-
import { CIAppResponseMetadataWithPagination } from "./CIAppResponseMetadataWithPagination";
8+
import { CIAppResponseMetadata } from "./CIAppResponseMetadata";
99

1010
import { AttributeTypeMap } from "../../datadog-api-client-common/util";
1111

@@ -24,7 +24,7 @@ export class CIAppPipelineEventsResponse {
2424
/**
2525
* The metadata associated with a request.
2626
*/
27-
"meta"?: CIAppResponseMetadataWithPagination;
27+
"meta"?: CIAppResponseMetadata;
2828

2929
/**
3030
* @ignore
@@ -45,7 +45,7 @@ export class CIAppPipelineEventsResponse {
4545
},
4646
meta: {
4747
baseName: "meta",
48-
type: "CIAppResponseMetadataWithPagination",
48+
type: "CIAppResponseMetadata",
4949
},
5050
};
5151

packages/datadog-api-client-v2/models/CIAppResponseMetadata.ts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
* This product includes software developed at Datadog (https://www.datadoghq.com/).
44
* Copyright 2020-Present Datadog, Inc.
55
*/
6+
import { CIAppResponsePage } from "./CIAppResponsePage";
67
import { CIAppResponseStatus } from "./CIAppResponseStatus";
78
import { CIAppWarning } from "./CIAppWarning";
89

@@ -16,6 +17,10 @@ export class CIAppResponseMetadata {
1617
* The time elapsed in milliseconds.
1718
*/
1819
"elapsed"?: number;
20+
/**
21+
* Paging attributes.
22+
*/
23+
"page"?: CIAppResponsePage;
1924
/**
2025
* The identifier of the request.
2126
*/
@@ -44,6 +49,10 @@ export class CIAppResponseMetadata {
4449
type: "number",
4550
format: "int64",
4651
},
52+
page: {
53+
baseName: "page",
54+
type: "CIAppResponsePage",
55+
},
4756
requestId: {
4857
baseName: "request_id",
4958
type: "string",

packages/datadog-api-client-v2/models/CIAppResponseMetadataWithPagination.ts

Lines changed: 0 additions & 78 deletions
This file was deleted.

packages/datadog-api-client-v2/models/CIAppTestEventsResponse.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* Copyright 2020-Present Datadog, Inc.
55
*/
66
import { CIAppResponseLinks } from "./CIAppResponseLinks";
7-
import { CIAppResponseMetadataWithPagination } from "./CIAppResponseMetadataWithPagination";
7+
import { CIAppResponseMetadata } from "./CIAppResponseMetadata";
88
import { CIAppTestEvent } from "./CIAppTestEvent";
99

1010
import { AttributeTypeMap } from "../../datadog-api-client-common/util";
@@ -24,7 +24,7 @@ export class CIAppTestEventsResponse {
2424
/**
2525
* The metadata associated with a request.
2626
*/
27-
"meta"?: CIAppResponseMetadataWithPagination;
27+
"meta"?: CIAppResponseMetadata;
2828

2929
/**
3030
* @ignore
@@ -45,7 +45,7 @@ export class CIAppTestEventsResponse {
4545
},
4646
meta: {
4747
baseName: "meta",
48-
type: "CIAppResponseMetadataWithPagination",
48+
type: "CIAppResponseMetadata",
4949
},
5050
};
5151

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

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,6 @@ import { CIAppQueryOptions } from "./CIAppQueryOptions";
7070
import { CIAppQueryPageOptions } from "./CIAppQueryPageOptions";
7171
import { CIAppResponseLinks } from "./CIAppResponseLinks";
7272
import { CIAppResponseMetadata } from "./CIAppResponseMetadata";
73-
import { CIAppResponseMetadataWithPagination } from "./CIAppResponseMetadataWithPagination";
7473
import { CIAppResponsePage } from "./CIAppResponsePage";
7574
import { CIAppTestEvent } from "./CIAppTestEvent";
7675
import { CIAppTestEventsRequest } from "./CIAppTestEventsRequest";
@@ -1380,7 +1379,6 @@ const typeMap: { [index: string]: any } = {
13801379
CIAppQueryPageOptions: CIAppQueryPageOptions,
13811380
CIAppResponseLinks: CIAppResponseLinks,
13821381
CIAppResponseMetadata: CIAppResponseMetadata,
1383-
CIAppResponseMetadataWithPagination: CIAppResponseMetadataWithPagination,
13841382
CIAppResponsePage: CIAppResponsePage,
13851383
CIAppTestEvent: CIAppTestEvent,
13861384
CIAppTestEventsRequest: CIAppTestEventsRequest,

0 commit comments

Comments
 (0)