Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .apigentools-info
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
"spec_versions": {
"v1": {
"apigentools_version": "1.6.6",
"regenerated": "2025-06-26 17:56:33.436535",
"spec_repo_commit": "76086f13"
"regenerated": "2025-06-30 10:29:37.915889",
"spec_repo_commit": "be63084a"
},
"v2": {
"apigentools_version": "1.6.6",
"regenerated": "2025-06-26 17:56:33.454744",
"spec_repo_commit": "76086f13"
"regenerated": "2025-06-30 10:29:37.934362",
"spec_repo_commit": "be63084a"
}
}
}
1 change: 1 addition & 0 deletions .generator/schemas/v1/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16173,6 +16173,7 @@ components:
- name
- options
- type
- message
type: object
SyntheticsMobileTestConfig:
description: Configuration object for a Synthetic mobile test.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,12 +76,14 @@ public SyntheticsMobileTest() {}
public SyntheticsMobileTest(
@JsonProperty(required = true, value = JSON_PROPERTY_CONFIG)
SyntheticsMobileTestConfig config,
@JsonProperty(required = true, value = JSON_PROPERTY_MESSAGE) String message,
@JsonProperty(required = true, value = JSON_PROPERTY_NAME) String name,
@JsonProperty(required = true, value = JSON_PROPERTY_OPTIONS)
SyntheticsMobileTestOptions options,
@JsonProperty(required = true, value = JSON_PROPERTY_TYPE) SyntheticsMobileTestType type) {
this.config = config;
this.unparsed |= config.unparsed;
this.message = message;
this.name = name;
this.options = options;
this.unparsed |= options.unparsed;
Expand Down Expand Up @@ -149,9 +151,8 @@ public SyntheticsMobileTest message(String message) {
*
* @return message
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_MESSAGE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public String getMessage() {
return message;
}
Expand Down