File tree 6 files changed +74
-12
lines changed
packages/datadog-api-client-v2
6 files changed +74
-12
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.6",
7
- "regenerated": "2024-06-13 08:10:05.511357 ",
8
- "spec_repo_commit": "eb5da65e "
7
+ "regenerated": "2024-06-14 08:39:19.700777 ",
8
+ "spec_repo_commit": "b2126cb8 "
9
9
},
10
10
"v2": {
11
11
"apigentools_version": "1.6.6",
12
- "regenerated": "2024-06-13 08:10:05.529041 ",
13
- "spec_repo_commit": "eb5da65e "
12
+ "regenerated": "2024-06-14 08:39:19.718784 ",
13
+ "spec_repo_commit": "b2126cb8 "
14
14
}
15
15
}
16
16
}
Original file line number Diff line number Diff line change @@ -10568,8 +10568,14 @@ components:
10568
10568
ListAPIsResponseData:
10569
10569
description: Data envelope for `ListAPIsResponse`.
10570
10570
properties:
10571
+ attributes:
10572
+ $ref: '#/components/schemas/ListAPIsResponseDataAttributes'
10571
10573
id:
10572
10574
$ref: '#/components/schemas/ApiID'
10575
+ type: object
10576
+ ListAPIsResponseDataAttributes:
10577
+ description: Attributes for `ListAPIsResponseData`.
10578
+ properties:
10573
10579
name:
10574
10580
description: API name.
10575
10581
example: Payments API
Original file line number Diff line number Diff line change @@ -1136,6 +1136,7 @@ export { JSONAPIErrorItem } from "./models/JSONAPIErrorItem";
1136
1136
export { JSONAPIErrorResponse } from "./models/JSONAPIErrorResponse" ;
1137
1137
export { ListAPIsResponse } from "./models/ListAPIsResponse" ;
1138
1138
export { ListAPIsResponseData } from "./models/ListAPIsResponseData" ;
1139
+ export { ListAPIsResponseDataAttributes } from "./models/ListAPIsResponseDataAttributes" ;
1139
1140
export { ListAPIsResponseMeta } from "./models/ListAPIsResponseMeta" ;
1140
1141
export { ListAPIsResponseMetaPagination } from "./models/ListAPIsResponseMetaPagination" ;
1141
1142
export { ListApplicationKeysResponse } from "./models/ListApplicationKeysResponse" ;
Original file line number Diff line number Diff line change 3
3
* This product includes software developed at Datadog (https://www.datadoghq.com/).
4
4
* Copyright 2020-Present Datadog, Inc.
5
5
*/
6
+ import { ListAPIsResponseDataAttributes } from "./ListAPIsResponseDataAttributes" ;
6
7
7
8
import { AttributeTypeMap } from "../../datadog-api-client-common/util" ;
8
9
@@ -11,13 +12,13 @@ import { AttributeTypeMap } from "../../datadog-api-client-common/util";
11
12
*/
12
13
export class ListAPIsResponseData {
13
14
/**
14
- * API identifier .
15
+ * Attributes for `ListAPIsResponseData` .
15
16
*/
16
- "id " ?: string ;
17
+ "attributes " ?: ListAPIsResponseDataAttributes ;
17
18
/**
18
- * API name .
19
+ * API identifier .
19
20
*/
20
- "name " ?: string ;
21
+ "id " ?: string ;
21
22
22
23
/**
23
24
* A container for additional, undeclared properties.
@@ -35,15 +36,15 @@ export class ListAPIsResponseData {
35
36
* @ignore
36
37
*/
37
38
static readonly attributeTypeMap : AttributeTypeMap = {
39
+ attributes : {
40
+ baseName : "attributes" ,
41
+ type : "ListAPIsResponseDataAttributes" ,
42
+ } ,
38
43
id : {
39
44
baseName : "id" ,
40
45
type : "string" ,
41
46
format : "uuid" ,
42
47
} ,
43
- name : {
44
- baseName : "name" ,
45
- type : "string" ,
46
- } ,
47
48
additionalProperties : {
48
49
baseName : "additionalProperties" ,
49
50
type : "any" ,
Original file line number Diff line number Diff line change
1
+ /**
2
+ * Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License.
3
+ * This product includes software developed at Datadog (https://www.datadoghq.com/).
4
+ * Copyright 2020-Present Datadog, Inc.
5
+ */
6
+
7
+ import { AttributeTypeMap } from "../../datadog-api-client-common/util" ;
8
+
9
+ /**
10
+ * Attributes for `ListAPIsResponseData`.
11
+ */
12
+ export class ListAPIsResponseDataAttributes {
13
+ /**
14
+ * API name.
15
+ */
16
+ "name" ?: string ;
17
+
18
+ /**
19
+ * A container for additional, undeclared properties.
20
+ * This is a holder for any undeclared properties as specified with
21
+ * the 'additionalProperties' keyword in the OAS document.
22
+ */
23
+ "additionalProperties" ?: { [ key : string ] : any } ;
24
+
25
+ /**
26
+ * @ignore
27
+ */
28
+ "_unparsed" ?: boolean ;
29
+
30
+ /**
31
+ * @ignore
32
+ */
33
+ static readonly attributeTypeMap : AttributeTypeMap = {
34
+ name : {
35
+ baseName : "name" ,
36
+ type : "string" ,
37
+ } ,
38
+ additionalProperties : {
39
+ baseName : "additionalProperties" ,
40
+ type : "any" ,
41
+ } ,
42
+ } ;
43
+
44
+ /**
45
+ * @ignore
46
+ */
47
+ static getAttributeTypeMap ( ) : AttributeTypeMap {
48
+ return ListAPIsResponseDataAttributes . attributeTypeMap ;
49
+ }
50
+
51
+ public constructor ( ) { }
52
+ }
Original file line number Diff line number Diff line change @@ -478,6 +478,7 @@ import { JiraIssue } from "./JiraIssue";
478
478
import { JiraIssueResult } from "./JiraIssueResult" ;
479
479
import { ListAPIsResponse } from "./ListAPIsResponse" ;
480
480
import { ListAPIsResponseData } from "./ListAPIsResponseData" ;
481
+ import { ListAPIsResponseDataAttributes } from "./ListAPIsResponseDataAttributes" ;
481
482
import { ListAPIsResponseMeta } from "./ListAPIsResponseMeta" ;
482
483
import { ListAPIsResponseMetaPagination } from "./ListAPIsResponseMetaPagination" ;
483
484
import { ListApplicationKeysResponse } from "./ListApplicationKeysResponse" ;
@@ -2270,6 +2271,7 @@ const typeMap: { [index: string]: any } = {
2270
2271
JiraIssueResult : JiraIssueResult ,
2271
2272
ListAPIsResponse : ListAPIsResponse ,
2272
2273
ListAPIsResponseData : ListAPIsResponseData ,
2274
+ ListAPIsResponseDataAttributes : ListAPIsResponseDataAttributes ,
2273
2275
ListAPIsResponseMeta : ListAPIsResponseMeta ,
2274
2276
ListAPIsResponseMetaPagination : ListAPIsResponseMetaPagination ,
2275
2277
ListApplicationKeysResponse : ListApplicationKeysResponse ,
You can’t perform that action at this time.
0 commit comments