From 910576280fab90dd43ffcef767164f7ff11a9ea0 Mon Sep 17 00:00:00 2001 From: "ci.datadog-api-spec" Date: Mon, 30 Jun 2025 10:31:37 +0000 Subject: [PATCH] Regenerate client from commit be63084a of spec repo --- .apigentools-info | 8 ++++---- .generator/schemas/v1/openapi.yaml | 1 + .../datadog/api/client/v1/model/SyntheticsMobileTest.java | 5 +++-- 3 files changed, 8 insertions(+), 6 deletions(-) diff --git a/.apigentools-info b/.apigentools-info index c53cda096f6..7979c1a0f92 100644 --- a/.apigentools-info +++ b/.apigentools-info @@ -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" } } } \ No newline at end of file diff --git a/.generator/schemas/v1/openapi.yaml b/.generator/schemas/v1/openapi.yaml index 3ff83bedc58..be8276b7592 100644 --- a/.generator/schemas/v1/openapi.yaml +++ b/.generator/schemas/v1/openapi.yaml @@ -16173,6 +16173,7 @@ components: - name - options - type + - message type: object SyntheticsMobileTestConfig: description: Configuration object for a Synthetic mobile test. diff --git a/src/main/java/com/datadog/api/client/v1/model/SyntheticsMobileTest.java b/src/main/java/com/datadog/api/client/v1/model/SyntheticsMobileTest.java index ed1ed3fc638..e4d7559ba1a 100644 --- a/src/main/java/com/datadog/api/client/v1/model/SyntheticsMobileTest.java +++ b/src/main/java/com/datadog/api/client/v1/model/SyntheticsMobileTest.java @@ -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; @@ -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; }