Skip to content

Commit b2d7708

Browse files
api-clients-generation-pipeline[bot]ci.datadog-api-spec
andauthored
Regenerate client from commit 4f0cc56 of spec repo (#252)
Co-authored-by: ci.datadog-api-spec <[email protected]> Co-authored-by: api-clients-generation-pipeline[bot] <54105614+api-clients-generation-pipeline[bot]@users.noreply.github.com>
1 parent 907c40a commit b2d7708

File tree

3 files changed

+19
-6
lines changed

3 files changed

+19
-6
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.4.1.dev11",
7-
"regenerated": "2021-08-19 12:24:39.413599",
8-
"spec_repo_commit": "cda030e"
7+
"regenerated": "2021-08-20 13:37:00.863666",
8+
"spec_repo_commit": "4f0cc56"
99
},
1010
"v2": {
1111
"apigentools_version": "1.4.1.dev11",
12-
"regenerated": "2021-08-19 12:26:07.223654",
13-
"spec_repo_commit": "cda030e"
12+
"regenerated": "2021-08-20 13:38:22.750884",
13+
"spec_repo_commit": "4f0cc56"
1414
}
1515
}
1616
}

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ import { ObjectSerializer } from "./ObjectSerializer";
1616

1717
export class SyntheticsGlobalVariableValue {
1818
/**
19-
* Determines if the variable is secure.
19+
* Determines if the value of the variable is hidden.
2020
*/
2121
"secure"?: boolean;
2222
/**
23-
* Value of the global variable. When reading a global variable, the value will not be present if the variable is secure.
23+
* Value of the global variable. When reading a global variable, the value will not be present if the variable is hidden with the `secure` property.
2424
*/
2525
"value"?: string;
2626

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

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,10 @@ import { ObjectSerializer } from "./ObjectSerializer";
1717
*/
1818

1919
export class SyntheticsTriggerCITestsResponse {
20+
/**
21+
* The public ID of the batch triggered.
22+
*/
23+
"batchId"?: string;
2024
/**
2125
* List of Synthetics locations.
2226
*/
@@ -37,6 +41,11 @@ export class SyntheticsTriggerCITestsResponse {
3741
static readonly attributeTypeMap: {
3842
[key: string]: { baseName: string; type: string; format: string };
3943
} = {
44+
batchId: {
45+
baseName: "batch_id",
46+
type: "string",
47+
format: "",
48+
},
4049
locations: {
4150
baseName: "locations",
4251
type: "Array<SyntheticsTriggerCITestLocation>",
@@ -63,6 +72,8 @@ export class SyntheticsTriggerCITestsResponse {
6372
}): SyntheticsTriggerCITestsResponse {
6473
const res = new SyntheticsTriggerCITestsResponse();
6574

75+
res.batchId = ObjectSerializer.deserialize(data.batch_id, "string", "");
76+
6677
res.locations = ObjectSerializer.deserialize(
6778
data.locations,
6879
"Array<SyntheticsTriggerCITestLocation>",
@@ -97,6 +108,8 @@ export class SyntheticsTriggerCITestsResponse {
97108
if (data?.unparsedObject !== undefined) {
98109
return data.unparsedObject;
99110
}
111+
res.batch_id = ObjectSerializer.serialize(data.batchId, "string", "");
112+
100113
res.locations = ObjectSerializer.serialize(
101114
data.locations,
102115
"Array<SyntheticsTriggerCITestLocation>",

0 commit comments

Comments
 (0)