Skip to content

Commit ebd28ec

Browse files
api-clients-generation-pipeline[bot]ci.datadog-api-spec
andauthored
Set hosts versions as type any (#1022)
Co-authored-by: ci.datadog-api-spec <[email protected]>
1 parent 59a603b commit ebd28ec

File tree

3 files changed

+10
-16
lines changed

3 files changed

+10
-16
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.4",
7-
"regenerated": "2023-02-13 20:03:52.116932",
8-
"spec_repo_commit": "ca2fb7b8"
7+
"regenerated": "2023-02-14 15:28:54.321458",
8+
"spec_repo_commit": "8652aeac"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.4",
12-
"regenerated": "2023-02-13 20:03:52.133767",
13-
"spec_repo_commit": "ca2fb7b8"
12+
"regenerated": "2023-02-14 15:28:54.334450",
13+
"spec_repo_commit": "8652aeac"
1414
}
1515
}
1616
}

.generator/schemas/v1/openapi.yaml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3425,8 +3425,6 @@ components:
34253425
items:
34263426
description: The version name.
34273427
example: FreeBSD
3428-
nullable: true
3429-
type: string
34303428
type: array
34313429
gohai:
34323430
description: JSON string containing system information.
@@ -3451,8 +3449,6 @@ components:
34513449
items:
34523450
description: Version name.
34533451
example: Ubuntu
3454-
nullable: true
3455-
type: string
34563452
type: array
34573453
platform:
34583454
description: The OS platform.
@@ -3479,8 +3475,6 @@ components:
34793475
items:
34803476
description: Version name.
34813477
example: Windows
3482-
nullable: true
3483-
type: string
34843478
type: array
34853479
type: object
34863480
HostMetaInstallMethod:

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ export class HostMeta {
2626
/**
2727
* An array of Mac versions.
2828
*/
29-
"fbsdV"?: Array<string>;
29+
"fbsdV"?: Array<any>;
3030
/**
3131
* JSON string containing system information.
3232
*/
@@ -46,7 +46,7 @@ export class HostMeta {
4646
/**
4747
* Array of Unix versions.
4848
*/
49-
"nixV"?: Array<string>;
49+
"nixV"?: Array<any>;
5050
/**
5151
* The OS platform.
5252
*/
@@ -70,7 +70,7 @@ export class HostMeta {
7070
/**
7171
* An array of Windows versions.
7272
*/
73-
"winV"?: Array<string>;
73+
"winV"?: Array<any>;
7474

7575
/**
7676
* @ignore
@@ -96,7 +96,7 @@ export class HostMeta {
9696
},
9797
fbsdV: {
9898
baseName: "fbsdV",
99-
type: "Array<string>",
99+
type: "Array<any>",
100100
},
101101
gohai: {
102102
baseName: "gohai",
@@ -116,7 +116,7 @@ export class HostMeta {
116116
},
117117
nixV: {
118118
baseName: "nixV",
119-
type: "Array<string>",
119+
type: "Array<any>",
120120
},
121121
platform: {
122122
baseName: "platform",
@@ -140,7 +140,7 @@ export class HostMeta {
140140
},
141141
winV: {
142142
baseName: "winV",
143-
type: "Array<string>",
143+
type: "Array<any>",
144144
},
145145
};
146146

0 commit comments

Comments
 (0)