diff --git a/core/pom.xml b/core/pom.xml
index 847ef82ff..b4129db86 100644
--- a/core/pom.xml
+++ b/core/pom.xml
@@ -161,8 +161,6 @@
com.sap.cloud.sdk.datamodel
openapi-generator-maven-plugin
- true
-
${project.basedir}/src/main/java
released
true
diff --git a/core/src/main/java/com/sap/ai/sdk/core/model/FileDownload400Response.java b/core/src/main/java/com/sap/ai/sdk/core/model/InlineObject.java
similarity index 69%
rename from core/src/main/java/com/sap/ai/sdk/core/model/FileDownload400Response.java
rename to core/src/main/java/com/sap/ai/sdk/core/model/InlineObject.java
index 393832b23..56c7a5119 100644
--- a/core/src/main/java/com/sap/ai/sdk/core/model/FileDownload400Response.java
+++ b/core/src/main/java/com/sap/ai/sdk/core/model/InlineObject.java
@@ -24,9 +24,9 @@
import javax.annotation.Nonnull;
import javax.annotation.Nullable;
-/** FileDownload400Response */
+/** InlineObject */
// CHECKSTYLE:OFF
-public class FileDownload400Response
+public class InlineObject
// CHECKSTYLE:ON
{
@JsonProperty("error")
@@ -35,17 +35,17 @@ public class FileDownload400Response
@JsonAnySetter @JsonAnyGetter
private final Map cloudSdkCustomFields = new LinkedHashMap<>();
- /** Default constructor for FileDownload400Response. */
- protected FileDownload400Response() {}
+ /** Default constructor for InlineObject. */
+ protected InlineObject() {}
/**
- * Set the error of this {@link FileDownload400Response} instance and return the same instance.
+ * Set the error of this {@link InlineObject} instance and return the same instance.
*
- * @param error The error of this {@link FileDownload400Response}
- * @return The same instance of this {@link FileDownload400Response} class
+ * @param error The error of this {@link InlineObject}
+ * @return The same instance of this {@link InlineObject} class
*/
@Nonnull
- public FileDownload400Response error(@Nullable final DSetError error) {
+ public InlineObject error(@Nullable final DSetError error) {
this.error = error;
return this;
}
@@ -53,7 +53,7 @@ public FileDownload400Response error(@Nullable final DSetError error) {
/**
* Get error
*
- * @return error The error of this {@link FileDownload400Response} instance.
+ * @return error The error of this {@link InlineObject} instance.
*/
@Nonnull
public DSetError getError() {
@@ -61,16 +61,16 @@ public DSetError getError() {
}
/**
- * Set the error of this {@link FileDownload400Response} instance.
+ * Set the error of this {@link InlineObject} instance.
*
- * @param error The error of this {@link FileDownload400Response}
+ * @param error The error of this {@link InlineObject}
*/
public void setError(@Nullable final DSetError error) {
this.error = error;
}
/**
- * Get the names of the unrecognizable properties of the {@link FileDownload400Response}.
+ * Get the names of the unrecognizable properties of the {@link InlineObject}.
*
* @return The set of properties names
*/
@@ -81,7 +81,7 @@ public Set getCustomFieldNames() {
}
/**
- * Get the value of an unrecognizable property of this {@link FileDownload400Response} instance.
+ * Get the value of an unrecognizable property of this {@link InlineObject} instance.
*
* @param name The name of the property
* @return The value of the property
@@ -90,15 +90,14 @@ public Set getCustomFieldNames() {
@Nullable
public Object getCustomField(@Nonnull final String name) throws NoSuchElementException {
if (!cloudSdkCustomFields.containsKey(name)) {
- throw new NoSuchElementException(
- "FileDownload400Response has no field with name '" + name + "'.");
+ throw new NoSuchElementException("InlineObject has no field with name '" + name + "'.");
}
return cloudSdkCustomFields.get(name);
}
/**
- * Set an unrecognizable property of this {@link FileDownload400Response} instance. If the map
- * previously contained a mapping for the key, the old value is replaced by the specified value.
+ * Set an unrecognizable property of this {@link InlineObject} instance. If the map previously
+ * contained a mapping for the key, the old value is replaced by the specified value.
*
* @param customFieldName The name of the property
* @param customFieldValue The value of the property
@@ -116,9 +115,9 @@ public boolean equals(@Nullable final java.lang.Object o) {
if (o == null || getClass() != o.getClass()) {
return false;
}
- final FileDownload400Response fileDownload400Response = (FileDownload400Response) o;
- return Objects.equals(this.cloudSdkCustomFields, fileDownload400Response.cloudSdkCustomFields)
- && Objects.equals(this.error, fileDownload400Response.error);
+ final InlineObject inlineObject = (InlineObject) o;
+ return Objects.equals(this.cloudSdkCustomFields, inlineObject.cloudSdkCustomFields)
+ && Objects.equals(this.error, inlineObject.error);
}
@Override
@@ -130,7 +129,7 @@ public int hashCode() {
@Nonnull
public String toString() {
final StringBuilder sb = new StringBuilder();
- sb.append("class FileDownload400Response {\n");
+ sb.append("class InlineObject {\n");
sb.append(" error: ").append(toIndentedString(error)).append("\n");
cloudSdkCustomFields.forEach(
(k, v) ->
@@ -149,8 +148,8 @@ private String toIndentedString(final java.lang.Object o) {
return o.toString().replace("\n", "\n ");
}
- /** Create a new {@link FileDownload400Response} instance. No arguments are required. */
- public static FileDownload400Response create() {
- return new FileDownload400Response();
+ /** Create a new {@link InlineObject} instance. No arguments are required. */
+ public static InlineObject create() {
+ return new InlineObject();
}
}
diff --git a/core/src/main/java/com/sap/ai/sdk/core/model/MetricsFind400Response.java b/core/src/main/java/com/sap/ai/sdk/core/model/InlineObject1.java
similarity index 70%
rename from core/src/main/java/com/sap/ai/sdk/core/model/MetricsFind400Response.java
rename to core/src/main/java/com/sap/ai/sdk/core/model/InlineObject1.java
index f16faea71..ec81b2b19 100644
--- a/core/src/main/java/com/sap/ai/sdk/core/model/MetricsFind400Response.java
+++ b/core/src/main/java/com/sap/ai/sdk/core/model/InlineObject1.java
@@ -24,9 +24,9 @@
import javax.annotation.Nonnull;
import javax.annotation.Nullable;
-/** MetricsFind400Response */
+/** InlineObject1 */
// CHECKSTYLE:OFF
-public class MetricsFind400Response
+public class InlineObject1
// CHECKSTYLE:ON
{
@JsonProperty("error")
@@ -35,17 +35,17 @@ public class MetricsFind400Response
@JsonAnySetter @JsonAnyGetter
private final Map cloudSdkCustomFields = new LinkedHashMap<>();
- /** Default constructor for MetricsFind400Response. */
- protected MetricsFind400Response() {}
+ /** Default constructor for InlineObject1. */
+ protected InlineObject1() {}
/**
- * Set the error of this {@link MetricsFind400Response} instance and return the same instance.
+ * Set the error of this {@link InlineObject1} instance and return the same instance.
*
- * @param error The error of this {@link MetricsFind400Response}
- * @return The same instance of this {@link MetricsFind400Response} class
+ * @param error The error of this {@link InlineObject1}
+ * @return The same instance of this {@link InlineObject1} class
*/
@Nonnull
- public MetricsFind400Response error(@Nullable final TrckApiError error) {
+ public InlineObject1 error(@Nullable final TrckApiError error) {
this.error = error;
return this;
}
@@ -53,7 +53,7 @@ public MetricsFind400Response error(@Nullable final TrckApiError error) {
/**
* Get error
*
- * @return error The error of this {@link MetricsFind400Response} instance.
+ * @return error The error of this {@link InlineObject1} instance.
*/
@Nonnull
public TrckApiError getError() {
@@ -61,16 +61,16 @@ public TrckApiError getError() {
}
/**
- * Set the error of this {@link MetricsFind400Response} instance.
+ * Set the error of this {@link InlineObject1} instance.
*
- * @param error The error of this {@link MetricsFind400Response}
+ * @param error The error of this {@link InlineObject1}
*/
public void setError(@Nullable final TrckApiError error) {
this.error = error;
}
/**
- * Get the names of the unrecognizable properties of the {@link MetricsFind400Response}.
+ * Get the names of the unrecognizable properties of the {@link InlineObject1}.
*
* @return The set of properties names
*/
@@ -81,7 +81,7 @@ public Set getCustomFieldNames() {
}
/**
- * Get the value of an unrecognizable property of this {@link MetricsFind400Response} instance.
+ * Get the value of an unrecognizable property of this {@link InlineObject1} instance.
*
* @param name The name of the property
* @return The value of the property
@@ -90,15 +90,14 @@ public Set getCustomFieldNames() {
@Nullable
public Object getCustomField(@Nonnull final String name) throws NoSuchElementException {
if (!cloudSdkCustomFields.containsKey(name)) {
- throw new NoSuchElementException(
- "MetricsFind400Response has no field with name '" + name + "'.");
+ throw new NoSuchElementException("InlineObject1 has no field with name '" + name + "'.");
}
return cloudSdkCustomFields.get(name);
}
/**
- * Set an unrecognizable property of this {@link MetricsFind400Response} instance. If the map
- * previously contained a mapping for the key, the old value is replaced by the specified value.
+ * Set an unrecognizable property of this {@link InlineObject1} instance. If the map previously
+ * contained a mapping for the key, the old value is replaced by the specified value.
*
* @param customFieldName The name of the property
* @param customFieldValue The value of the property
@@ -116,9 +115,9 @@ public boolean equals(@Nullable final java.lang.Object o) {
if (o == null || getClass() != o.getClass()) {
return false;
}
- final MetricsFind400Response metricsFind400Response = (MetricsFind400Response) o;
- return Objects.equals(this.cloudSdkCustomFields, metricsFind400Response.cloudSdkCustomFields)
- && Objects.equals(this.error, metricsFind400Response.error);
+ final InlineObject1 inlineObject1 = (InlineObject1) o;
+ return Objects.equals(this.cloudSdkCustomFields, inlineObject1.cloudSdkCustomFields)
+ && Objects.equals(this.error, inlineObject1.error);
}
@Override
@@ -130,7 +129,7 @@ public int hashCode() {
@Nonnull
public String toString() {
final StringBuilder sb = new StringBuilder();
- sb.append("class MetricsFind400Response {\n");
+ sb.append("class InlineObject1 {\n");
sb.append(" error: ").append(toIndentedString(error)).append("\n");
cloudSdkCustomFields.forEach(
(k, v) ->
@@ -149,8 +148,8 @@ private String toIndentedString(final java.lang.Object o) {
return o.toString().replace("\n", "\n ");
}
- /** Create a new {@link MetricsFind400Response} instance. No arguments are required. */
- public static MetricsFind400Response create() {
- return new MetricsFind400Response();
+ /** Create a new {@link InlineObject1} instance. No arguments are required. */
+ public static InlineObject1 create() {
+ return new InlineObject1();
}
}
diff --git a/core/src/main/java/com/sap/ai/sdk/core/model/ArtifactQuery400Response.java b/core/src/main/java/com/sap/ai/sdk/core/model/InlineObject2.java
similarity index 69%
rename from core/src/main/java/com/sap/ai/sdk/core/model/ArtifactQuery400Response.java
rename to core/src/main/java/com/sap/ai/sdk/core/model/InlineObject2.java
index 18a907b34..f51a84b36 100644
--- a/core/src/main/java/com/sap/ai/sdk/core/model/ArtifactQuery400Response.java
+++ b/core/src/main/java/com/sap/ai/sdk/core/model/InlineObject2.java
@@ -24,9 +24,9 @@
import javax.annotation.Nonnull;
import javax.annotation.Nullable;
-/** ArtifactQuery400Response */
+/** InlineObject2 */
// CHECKSTYLE:OFF
-public class ArtifactQuery400Response
+public class InlineObject2
// CHECKSTYLE:ON
{
@JsonProperty("error")
@@ -35,17 +35,17 @@ public class ArtifactQuery400Response
@JsonAnySetter @JsonAnyGetter
private final Map cloudSdkCustomFields = new LinkedHashMap<>();
- /** Default constructor for ArtifactQuery400Response. */
- protected ArtifactQuery400Response() {}
+ /** Default constructor for InlineObject2. */
+ protected InlineObject2() {}
/**
- * Set the error of this {@link ArtifactQuery400Response} instance and return the same instance.
+ * Set the error of this {@link InlineObject2} instance and return the same instance.
*
- * @param error The error of this {@link ArtifactQuery400Response}
- * @return The same instance of this {@link ArtifactQuery400Response} class
+ * @param error The error of this {@link InlineObject2}
+ * @return The same instance of this {@link InlineObject2} class
*/
@Nonnull
- public ArtifactQuery400Response error(@Nullable final AiApiError error) {
+ public InlineObject2 error(@Nullable final AiApiError error) {
this.error = error;
return this;
}
@@ -53,7 +53,7 @@ public ArtifactQuery400Response error(@Nullable final AiApiError error) {
/**
* Get error
*
- * @return error The error of this {@link ArtifactQuery400Response} instance.
+ * @return error The error of this {@link InlineObject2} instance.
*/
@Nonnull
public AiApiError getError() {
@@ -61,16 +61,16 @@ public AiApiError getError() {
}
/**
- * Set the error of this {@link ArtifactQuery400Response} instance.
+ * Set the error of this {@link InlineObject2} instance.
*
- * @param error The error of this {@link ArtifactQuery400Response}
+ * @param error The error of this {@link InlineObject2}
*/
public void setError(@Nullable final AiApiError error) {
this.error = error;
}
/**
- * Get the names of the unrecognizable properties of the {@link ArtifactQuery400Response}.
+ * Get the names of the unrecognizable properties of the {@link InlineObject2}.
*
* @return The set of properties names
*/
@@ -81,7 +81,7 @@ public Set getCustomFieldNames() {
}
/**
- * Get the value of an unrecognizable property of this {@link ArtifactQuery400Response} instance.
+ * Get the value of an unrecognizable property of this {@link InlineObject2} instance.
*
* @param name The name of the property
* @return The value of the property
@@ -90,15 +90,14 @@ public Set getCustomFieldNames() {
@Nullable
public Object getCustomField(@Nonnull final String name) throws NoSuchElementException {
if (!cloudSdkCustomFields.containsKey(name)) {
- throw new NoSuchElementException(
- "ArtifactQuery400Response has no field with name '" + name + "'.");
+ throw new NoSuchElementException("InlineObject2 has no field with name '" + name + "'.");
}
return cloudSdkCustomFields.get(name);
}
/**
- * Set an unrecognizable property of this {@link ArtifactQuery400Response} instance. If the map
- * previously contained a mapping for the key, the old value is replaced by the specified value.
+ * Set an unrecognizable property of this {@link InlineObject2} instance. If the map previously
+ * contained a mapping for the key, the old value is replaced by the specified value.
*
* @param customFieldName The name of the property
* @param customFieldValue The value of the property
@@ -116,9 +115,9 @@ public boolean equals(@Nullable final java.lang.Object o) {
if (o == null || getClass() != o.getClass()) {
return false;
}
- final ArtifactQuery400Response artifactQuery400Response = (ArtifactQuery400Response) o;
- return Objects.equals(this.cloudSdkCustomFields, artifactQuery400Response.cloudSdkCustomFields)
- && Objects.equals(this.error, artifactQuery400Response.error);
+ final InlineObject2 inlineObject2 = (InlineObject2) o;
+ return Objects.equals(this.cloudSdkCustomFields, inlineObject2.cloudSdkCustomFields)
+ && Objects.equals(this.error, inlineObject2.error);
}
@Override
@@ -130,7 +129,7 @@ public int hashCode() {
@Nonnull
public String toString() {
final StringBuilder sb = new StringBuilder();
- sb.append("class ArtifactQuery400Response {\n");
+ sb.append("class InlineObject2 {\n");
sb.append(" error: ").append(toIndentedString(error)).append("\n");
cloudSdkCustomFields.forEach(
(k, v) ->
@@ -149,8 +148,8 @@ private String toIndentedString(final java.lang.Object o) {
return o.toString().replace("\n", "\n ");
}
- /** Create a new {@link ArtifactQuery400Response} instance. No arguments are required. */
- public static ArtifactQuery400Response create() {
- return new ArtifactQuery400Response();
+ /** Create a new {@link InlineObject2} instance. No arguments are required. */
+ public static InlineObject2 create() {
+ return new InlineObject2();
}
}
diff --git a/core/src/main/java/com/sap/ai/sdk/core/model/MetaGet404Response.java b/core/src/main/java/com/sap/ai/sdk/core/model/InlineObject3.java
similarity index 71%
rename from core/src/main/java/com/sap/ai/sdk/core/model/MetaGet404Response.java
rename to core/src/main/java/com/sap/ai/sdk/core/model/InlineObject3.java
index db2b3a4f9..aa6174cad 100644
--- a/core/src/main/java/com/sap/ai/sdk/core/model/MetaGet404Response.java
+++ b/core/src/main/java/com/sap/ai/sdk/core/model/InlineObject3.java
@@ -24,9 +24,9 @@
import javax.annotation.Nonnull;
import javax.annotation.Nullable;
-/** MetaGet404Response */
+/** InlineObject3 */
// CHECKSTYLE:OFF
-public class MetaGet404Response
+public class InlineObject3
// CHECKSTYLE:ON
{
@JsonProperty("error")
@@ -35,17 +35,17 @@ public class MetaGet404Response
@JsonAnySetter @JsonAnyGetter
private final Map cloudSdkCustomFields = new LinkedHashMap<>();
- /** Default constructor for MetaGet404Response. */
- protected MetaGet404Response() {}
+ /** Default constructor for InlineObject3. */
+ protected InlineObject3() {}
/**
- * Set the error of this {@link MetaGet404Response} instance and return the same instance.
+ * Set the error of this {@link InlineObject3} instance and return the same instance.
*
- * @param error The error of this {@link MetaGet404Response}
- * @return The same instance of this {@link MetaGet404Response} class
+ * @param error The error of this {@link InlineObject3}
+ * @return The same instance of this {@link InlineObject3} class
*/
@Nonnull
- public MetaGet404Response error(@Nullable final MetaApiError error) {
+ public InlineObject3 error(@Nullable final MetaApiError error) {
this.error = error;
return this;
}
@@ -53,7 +53,7 @@ public MetaGet404Response error(@Nullable final MetaApiError error) {
/**
* Get error
*
- * @return error The error of this {@link MetaGet404Response} instance.
+ * @return error The error of this {@link InlineObject3} instance.
*/
@Nonnull
public MetaApiError getError() {
@@ -61,16 +61,16 @@ public MetaApiError getError() {
}
/**
- * Set the error of this {@link MetaGet404Response} instance.
+ * Set the error of this {@link InlineObject3} instance.
*
- * @param error The error of this {@link MetaGet404Response}
+ * @param error The error of this {@link InlineObject3}
*/
public void setError(@Nullable final MetaApiError error) {
this.error = error;
}
/**
- * Get the names of the unrecognizable properties of the {@link MetaGet404Response}.
+ * Get the names of the unrecognizable properties of the {@link InlineObject3}.
*
* @return The set of properties names
*/
@@ -81,7 +81,7 @@ public Set getCustomFieldNames() {
}
/**
- * Get the value of an unrecognizable property of this {@link MetaGet404Response} instance.
+ * Get the value of an unrecognizable property of this {@link InlineObject3} instance.
*
* @param name The name of the property
* @return The value of the property
@@ -90,14 +90,14 @@ public Set getCustomFieldNames() {
@Nullable
public Object getCustomField(@Nonnull final String name) throws NoSuchElementException {
if (!cloudSdkCustomFields.containsKey(name)) {
- throw new NoSuchElementException("MetaGet404Response has no field with name '" + name + "'.");
+ throw new NoSuchElementException("InlineObject3 has no field with name '" + name + "'.");
}
return cloudSdkCustomFields.get(name);
}
/**
- * Set an unrecognizable property of this {@link MetaGet404Response} instance. If the map
- * previously contained a mapping for the key, the old value is replaced by the specified value.
+ * Set an unrecognizable property of this {@link InlineObject3} instance. If the map previously
+ * contained a mapping for the key, the old value is replaced by the specified value.
*
* @param customFieldName The name of the property
* @param customFieldValue The value of the property
@@ -115,9 +115,9 @@ public boolean equals(@Nullable final java.lang.Object o) {
if (o == null || getClass() != o.getClass()) {
return false;
}
- final MetaGet404Response metaGet404Response = (MetaGet404Response) o;
- return Objects.equals(this.cloudSdkCustomFields, metaGet404Response.cloudSdkCustomFields)
- && Objects.equals(this.error, metaGet404Response.error);
+ final InlineObject3 inlineObject3 = (InlineObject3) o;
+ return Objects.equals(this.cloudSdkCustomFields, inlineObject3.cloudSdkCustomFields)
+ && Objects.equals(this.error, inlineObject3.error);
}
@Override
@@ -129,7 +129,7 @@ public int hashCode() {
@Nonnull
public String toString() {
final StringBuilder sb = new StringBuilder();
- sb.append("class MetaGet404Response {\n");
+ sb.append("class InlineObject3 {\n");
sb.append(" error: ").append(toIndentedString(error)).append("\n");
cloudSdkCustomFields.forEach(
(k, v) ->
@@ -148,8 +148,8 @@ private String toIndentedString(final java.lang.Object o) {
return o.toString().replace("\n", "\n ");
}
- /** Create a new {@link MetaGet404Response} instance. No arguments are required. */
- public static MetaGet404Response create() {
- return new MetaGet404Response();
+ /** Create a new {@link InlineObject3} instance. No arguments are required. */
+ public static InlineObject3 create() {
+ return new InlineObject3();
}
}
diff --git a/core/src/main/java/com/sap/ai/sdk/core/model/KpiGet400Response.java b/core/src/main/java/com/sap/ai/sdk/core/model/InlineObject4.java
similarity index 72%
rename from core/src/main/java/com/sap/ai/sdk/core/model/KpiGet400Response.java
rename to core/src/main/java/com/sap/ai/sdk/core/model/InlineObject4.java
index 11aaeca19..1836d8bfb 100644
--- a/core/src/main/java/com/sap/ai/sdk/core/model/KpiGet400Response.java
+++ b/core/src/main/java/com/sap/ai/sdk/core/model/InlineObject4.java
@@ -24,9 +24,9 @@
import javax.annotation.Nonnull;
import javax.annotation.Nullable;
-/** KpiGet400Response */
+/** InlineObject4 */
// CHECKSTYLE:OFF
-public class KpiGet400Response
+public class InlineObject4
// CHECKSTYLE:ON
{
@JsonProperty("error")
@@ -35,17 +35,17 @@ public class KpiGet400Response
@JsonAnySetter @JsonAnyGetter
private final Map cloudSdkCustomFields = new LinkedHashMap<>();
- /** Default constructor for KpiGet400Response. */
- protected KpiGet400Response() {}
+ /** Default constructor for InlineObject4. */
+ protected InlineObject4() {}
/**
- * Set the error of this {@link KpiGet400Response} instance and return the same instance.
+ * Set the error of this {@link InlineObject4} instance and return the same instance.
*
- * @param error The error of this {@link KpiGet400Response}
- * @return The same instance of this {@link KpiGet400Response} class
+ * @param error The error of this {@link InlineObject4}
+ * @return The same instance of this {@link InlineObject4} class
*/
@Nonnull
- public KpiGet400Response error(@Nullable final KpiApiError error) {
+ public InlineObject4 error(@Nullable final KpiApiError error) {
this.error = error;
return this;
}
@@ -53,7 +53,7 @@ public KpiGet400Response error(@Nullable final KpiApiError error) {
/**
* Get error
*
- * @return error The error of this {@link KpiGet400Response} instance.
+ * @return error The error of this {@link InlineObject4} instance.
*/
@Nonnull
public KpiApiError getError() {
@@ -61,16 +61,16 @@ public KpiApiError getError() {
}
/**
- * Set the error of this {@link KpiGet400Response} instance.
+ * Set the error of this {@link InlineObject4} instance.
*
- * @param error The error of this {@link KpiGet400Response}
+ * @param error The error of this {@link InlineObject4}
*/
public void setError(@Nullable final KpiApiError error) {
this.error = error;
}
/**
- * Get the names of the unrecognizable properties of the {@link KpiGet400Response}.
+ * Get the names of the unrecognizable properties of the {@link InlineObject4}.
*
* @return The set of properties names
*/
@@ -81,7 +81,7 @@ public Set getCustomFieldNames() {
}
/**
- * Get the value of an unrecognizable property of this {@link KpiGet400Response} instance.
+ * Get the value of an unrecognizable property of this {@link InlineObject4} instance.
*
* @param name The name of the property
* @return The value of the property
@@ -90,14 +90,14 @@ public Set getCustomFieldNames() {
@Nullable
public Object getCustomField(@Nonnull final String name) throws NoSuchElementException {
if (!cloudSdkCustomFields.containsKey(name)) {
- throw new NoSuchElementException("KpiGet400Response has no field with name '" + name + "'.");
+ throw new NoSuchElementException("InlineObject4 has no field with name '" + name + "'.");
}
return cloudSdkCustomFields.get(name);
}
/**
- * Set an unrecognizable property of this {@link KpiGet400Response} instance. If the map
- * previously contained a mapping for the key, the old value is replaced by the specified value.
+ * Set an unrecognizable property of this {@link InlineObject4} instance. If the map previously
+ * contained a mapping for the key, the old value is replaced by the specified value.
*
* @param customFieldName The name of the property
* @param customFieldValue The value of the property
@@ -115,9 +115,9 @@ public boolean equals(@Nullable final java.lang.Object o) {
if (o == null || getClass() != o.getClass()) {
return false;
}
- final KpiGet400Response kpiGet400Response = (KpiGet400Response) o;
- return Objects.equals(this.cloudSdkCustomFields, kpiGet400Response.cloudSdkCustomFields)
- && Objects.equals(this.error, kpiGet400Response.error);
+ final InlineObject4 inlineObject4 = (InlineObject4) o;
+ return Objects.equals(this.cloudSdkCustomFields, inlineObject4.cloudSdkCustomFields)
+ && Objects.equals(this.error, inlineObject4.error);
}
@Override
@@ -129,7 +129,7 @@ public int hashCode() {
@Nonnull
public String toString() {
final StringBuilder sb = new StringBuilder();
- sb.append("class KpiGet400Response {\n");
+ sb.append("class InlineObject4 {\n");
sb.append(" error: ").append(toIndentedString(error)).append("\n");
cloudSdkCustomFields.forEach(
(k, v) ->
@@ -148,8 +148,8 @@ private String toIndentedString(final java.lang.Object o) {
return o.toString().replace("\n", "\n ");
}
- /** Create a new {@link KpiGet400Response} instance. No arguments are required. */
- public static KpiGet400Response create() {
- return new KpiGet400Response();
+ /** Create a new {@link InlineObject4} instance. No arguments are required. */
+ public static InlineObject4 create() {
+ return new InlineObject4();
}
}
diff --git a/orchestration/pom.xml b/orchestration/pom.xml
index 4635360a1..722b1c825 100644
--- a/orchestration/pom.xml
+++ b/orchestration/pom.xml
@@ -134,8 +134,6 @@
com.sap.cloud.sdk.datamodel
openapi-generator-maven-plugin
- true
-
${project.basedir}/src/main/java
beta
true
diff --git a/pom.xml b/pom.xml
index 56a46c9b9..661862128 100644
--- a/pom.xml
+++ b/pom.xml
@@ -55,7 +55,7 @@
17
full
UTF-8
- 5.14.0
+ 5.15.0
5.11.3
3.10.0
3.26.3