Skip to content

Commit 9105762

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit be63084a of spec repo
1 parent 0ba89bd commit 9105762

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-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.6.6",
7-
"regenerated": "2025-06-26 17:56:33.436535",
8-
"spec_repo_commit": "76086f13"
7+
"regenerated": "2025-06-30 10:29:37.915889",
8+
"spec_repo_commit": "be63084a"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.6",
12-
"regenerated": "2025-06-26 17:56:33.454744",
13-
"spec_repo_commit": "76086f13"
12+
"regenerated": "2025-06-30 10:29:37.934362",
13+
"spec_repo_commit": "be63084a"
1414
}
1515
}
1616
}

.generator/schemas/v1/openapi.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16173,6 +16173,7 @@ components:
1617316173
- name
1617416174
- options
1617516175
- type
16176+
- message
1617616177
type: object
1617716178
SyntheticsMobileTestConfig:
1617816179
description: Configuration object for a Synthetic mobile test.

src/main/java/com/datadog/api/client/v1/model/SyntheticsMobileTest.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,12 +76,14 @@ public SyntheticsMobileTest() {}
7676
public SyntheticsMobileTest(
7777
@JsonProperty(required = true, value = JSON_PROPERTY_CONFIG)
7878
SyntheticsMobileTestConfig config,
79+
@JsonProperty(required = true, value = JSON_PROPERTY_MESSAGE) String message,
7980
@JsonProperty(required = true, value = JSON_PROPERTY_NAME) String name,
8081
@JsonProperty(required = true, value = JSON_PROPERTY_OPTIONS)
8182
SyntheticsMobileTestOptions options,
8283
@JsonProperty(required = true, value = JSON_PROPERTY_TYPE) SyntheticsMobileTestType type) {
8384
this.config = config;
8485
this.unparsed |= config.unparsed;
86+
this.message = message;
8587
this.name = name;
8688
this.options = options;
8789
this.unparsed |= options.unparsed;
@@ -149,9 +151,8 @@ public SyntheticsMobileTest message(String message) {
149151
*
150152
* @return message
151153
*/
152-
@jakarta.annotation.Nullable
153154
@JsonProperty(JSON_PROPERTY_MESSAGE)
154-
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
155+
@JsonInclude(value = JsonInclude.Include.ALWAYS)
155156
public String getMessage() {
156157
return message;
157158
}

0 commit comments

Comments
 (0)