diff --git a/orchestration/src/main/java/com/sap/ai/sdk/orchestration/client/OrchestrationCompletionApi.java b/orchestration/src/main/java/com/sap/ai/sdk/orchestration/client/OrchestrationCompletionApi.java
index f3749f4d..ba5f1b86 100644
--- a/orchestration/src/main/java/com/sap/ai/sdk/orchestration/client/OrchestrationCompletionApi.java
+++ b/orchestration/src/main/java/com/sap/ai/sdk/orchestration/client/OrchestrationCompletionApi.java
@@ -7,9 +7,9 @@
import com.sap.cloud.sdk.services.openapi.core.AbstractOpenApiService;
import com.sap.cloud.sdk.services.openapi.apiclient.ApiClient;
-import com.sap.ai.sdk.orchestration.client.model.CompletionPostRequest ; //NOPMD
-import com.sap.ai.sdk.orchestration.client.model.CompletionPostResponse ; //NOPMD
-import com.sap.ai.sdk.orchestration.client.model.ErrorResponse ; //NOPMD
+import com.sap.ai.sdk.orchestration.client.model.CompletionPostRequest;
+import com.sap.ai.sdk.orchestration.client.model.CompletionPostResponse;
+import com.sap.ai.sdk.orchestration.client.model.ErrorResponse;
import java.util.HashMap;
import java.util.List;
@@ -32,28 +32,27 @@
import com.sap.cloud.sdk.cloudplatform.connectivity.Destination;
/**
-* Internal Orchestration Service API in version 0.0.1.
-*
-* SAP AI Core - Orchestration Service API
-*/
-
+ * Internal Orchestration Service API in version 0.0.1.
+ *
+ * SAP AI Core - Orchestration Service API
+ */
public class OrchestrationCompletionApi extends AbstractOpenApiService {
/**
- * Instantiates this API class to invoke operations on the Internal Orchestration Service API.
- *
- * @param httpDestination The destination that API should be used with
- */
+ * Instantiates this API class to invoke operations on the Internal Orchestration Service API.
+ *
+ * @param httpDestination The destination that API should be used with
+ */
public OrchestrationCompletionApi( @Nonnull final Destination httpDestination )
{
super(httpDestination);
}
/**
- * Instantiates this API class to invoke operations on the Internal Orchestration Service API based on a given {@link ApiClient}.
- *
- * @param apiClient
- * ApiClient to invoke the API on
- */
+ * Instantiates this API class to invoke operations on the Internal Orchestration Service API based on a given {@link ApiClient}.
+ *
+ * @param apiClient
+ * ApiClient to invoke the API on
+ */
@Beta
public OrchestrationCompletionApi( @Nonnull final ApiClient apiClient )
{
@@ -61,17 +60,18 @@ public OrchestrationCompletionApi( @Nonnull final ApiClient apiClient )
}
/**
- *
- *
+ *
+ *
*
200 - Successful response
*
400 - Bad Request
*
0 - Common Error
-* @param completionPostRequest
- The value for the parameter completionPostRequest
-* @return CompletionPostResponse
-* @throws OpenApiRequestException if an error occurs while attempting to invoke the API
+ * @param completionPostRequest
+ * The value for the parameter completionPostRequest
+ * @return CompletionPostResponse
+ * @throws OpenApiRequestException if an error occurs while attempting to invoke the API
*/
- @Nullable public CompletionPostResponse orchestrationV1EndpointsCreate( @Nonnull final CompletionPostRequest completionPostRequest) throws OpenApiRequestException {
+ @Nonnull
+ public CompletionPostResponse orchestrationV1EndpointsCreate( @Nonnull final CompletionPostRequest completionPostRequest) throws OpenApiRequestException {
final Object localVarPostBody = completionPostRequest;
// verify the required parameter 'completionPostRequest' is set
diff --git a/orchestration/src/main/java/com/sap/ai/sdk/orchestration/client/OrchestrationHealthzApi.java b/orchestration/src/main/java/com/sap/ai/sdk/orchestration/client/OrchestrationHealthzApi.java
index d6e02ffe..a8d712c2 100644
--- a/orchestration/src/main/java/com/sap/ai/sdk/orchestration/client/OrchestrationHealthzApi.java
+++ b/orchestration/src/main/java/com/sap/ai/sdk/orchestration/client/OrchestrationHealthzApi.java
@@ -7,7 +7,7 @@
import com.sap.cloud.sdk.services.openapi.core.AbstractOpenApiService;
import com.sap.cloud.sdk.services.openapi.apiclient.ApiClient;
-import com.sap.ai.sdk.orchestration.client.model.OrchestrationV1EndpointsHealthz503Response ; //NOPMD
+import com.sap.ai.sdk.orchestration.client.model.OrchestrationV1EndpointsHealthz503Response;
import java.util.HashMap;
import java.util.List;
@@ -30,28 +30,27 @@
import com.sap.cloud.sdk.cloudplatform.connectivity.Destination;
/**
-* Internal Orchestration Service API in version 0.0.1.
-*
-* SAP AI Core - Orchestration Service API
-*/
-
+ * Internal Orchestration Service API in version 0.0.1.
+ *
+ * SAP AI Core - Orchestration Service API
+ */
public class OrchestrationHealthzApi extends AbstractOpenApiService {
/**
- * Instantiates this API class to invoke operations on the Internal Orchestration Service API.
- *
- * @param httpDestination The destination that API should be used with
- */
+ * Instantiates this API class to invoke operations on the Internal Orchestration Service API.
+ *
+ * @param httpDestination The destination that API should be used with
+ */
public OrchestrationHealthzApi( @Nonnull final Destination httpDestination )
{
super(httpDestination);
}
/**
- * Instantiates this API class to invoke operations on the Internal Orchestration Service API based on a given {@link ApiClient}.
- *
- * @param apiClient
- * ApiClient to invoke the API on
- */
+ * Instantiates this API class to invoke operations on the Internal Orchestration Service API based on a given {@link ApiClient}.
+ *
+ * @param apiClient
+ * ApiClient to invoke the API on
+ */
@Beta
public OrchestrationHealthzApi( @Nonnull final ApiClient apiClient )
{
@@ -59,14 +58,15 @@ public OrchestrationHealthzApi( @Nonnull final ApiClient apiClient )
}
/**
- *
- *
+ *
+ *
*
200 - Service is up and running.
*
503 - Service is unavailable.
-* @return String
-* @throws OpenApiRequestException if an error occurs while attempting to invoke the API
+ * @return String
+ * @throws OpenApiRequestException if an error occurs while attempting to invoke the API
*/
- @Nullable public String orchestrationV1EndpointsHealthz() throws OpenApiRequestException {
+ @Nonnull
+ public String orchestrationV1EndpointsHealthz() throws OpenApiRequestException {
final Object localVarPostBody = null;
final String localVarPath = UriComponentsBuilder.fromPath("/healthz").build().toUriString();
diff --git a/orchestration/src/main/java/com/sap/ai/sdk/orchestration/client/model/AzureContentSafety.java b/orchestration/src/main/java/com/sap/ai/sdk/orchestration/client/model/AzureContentSafety.java
index bda0b58c..942270c3 100644
--- a/orchestration/src/main/java/com/sap/ai/sdk/orchestration/client/model/AzureContentSafety.java
+++ b/orchestration/src/main/java/com/sap/ai/sdk/orchestration/client/model/AzureContentSafety.java
@@ -39,7 +39,6 @@
/**
* AzureContentSafety
*/
-
// CHECKSTYLE:OFF
public class AzureContentSafety
// CHECKSTYLE:ON
@@ -61,113 +60,113 @@ public class AzureContentSafety
private final Map cloudSdkCustomFields = new LinkedHashMap<>();
/**
- * Set the hate of this {@link AzureContentSafety} instance and return the same instance.
- *
- * @param hate The hate of this {@link AzureContentSafety}
- * @return The same instance of this {@link AzureContentSafety} class
- */
+ * Set the hate of this {@link AzureContentSafety} instance and return the same instance.
+ *
+ * @param hate The hate of this {@link AzureContentSafety}
+ * @return The same instance of this {@link AzureContentSafety} class
+ */
@Nonnull public AzureContentSafety hate(@Nonnull final AzureThreshold hate) {
this.hate = hate;
return this;
}
/**
- * Get hate
- * @return hate The hate of this {@link AzureContentSafety} instance.
- **/
+ * Get hate
+ * @return hate The hate of this {@link AzureContentSafety} instance.
+ */
@Nonnull public AzureThreshold getHate() {
return hate;
}
/**
- * Set the hate of this {@link AzureContentSafety} instance.
- *
- * @param hate The hate of this {@link AzureContentSafety}
- */
+ * Set the hate of this {@link AzureContentSafety} instance.
+ *
+ * @param hate The hate of this {@link AzureContentSafety}
+ */
public void setHate( @Nonnull final AzureThreshold hate) {
this.hate = hate;
}
/**
- * Set the selfHarm of this {@link AzureContentSafety} instance and return the same instance.
- *
- * @param selfHarm The selfHarm of this {@link AzureContentSafety}
- * @return The same instance of this {@link AzureContentSafety} class
- */
+ * Set the selfHarm of this {@link AzureContentSafety} instance and return the same instance.
+ *
+ * @param selfHarm The selfHarm of this {@link AzureContentSafety}
+ * @return The same instance of this {@link AzureContentSafety} class
+ */
@Nonnull public AzureContentSafety selfHarm(@Nonnull final AzureThreshold selfHarm) {
this.selfHarm = selfHarm;
return this;
}
/**
- * Get selfHarm
- * @return selfHarm The selfHarm of this {@link AzureContentSafety} instance.
- **/
+ * Get selfHarm
+ * @return selfHarm The selfHarm of this {@link AzureContentSafety} instance.
+ */
@Nonnull public AzureThreshold getSelfHarm() {
return selfHarm;
}
/**
- * Set the selfHarm of this {@link AzureContentSafety} instance.
- *
- * @param selfHarm The selfHarm of this {@link AzureContentSafety}
- */
+ * Set the selfHarm of this {@link AzureContentSafety} instance.
+ *
+ * @param selfHarm The selfHarm of this {@link AzureContentSafety}
+ */
public void setSelfHarm( @Nonnull final AzureThreshold selfHarm) {
this.selfHarm = selfHarm;
}
/**
- * Set the sexual of this {@link AzureContentSafety} instance and return the same instance.
- *
- * @param sexual The sexual of this {@link AzureContentSafety}
- * @return The same instance of this {@link AzureContentSafety} class
- */
+ * Set the sexual of this {@link AzureContentSafety} instance and return the same instance.
+ *
+ * @param sexual The sexual of this {@link AzureContentSafety}
+ * @return The same instance of this {@link AzureContentSafety} class
+ */
@Nonnull public AzureContentSafety sexual(@Nonnull final AzureThreshold sexual) {
this.sexual = sexual;
return this;
}
/**
- * Get sexual
- * @return sexual The sexual of this {@link AzureContentSafety} instance.
- **/
+ * Get sexual
+ * @return sexual The sexual of this {@link AzureContentSafety} instance.
+ */
@Nonnull public AzureThreshold getSexual() {
return sexual;
}
/**
- * Set the sexual of this {@link AzureContentSafety} instance.
- *
- * @param sexual The sexual of this {@link AzureContentSafety}
- */
+ * Set the sexual of this {@link AzureContentSafety} instance.
+ *
+ * @param sexual The sexual of this {@link AzureContentSafety}
+ */
public void setSexual( @Nonnull final AzureThreshold sexual) {
this.sexual = sexual;
}
/**
- * Set the violence of this {@link AzureContentSafety} instance and return the same instance.
- *
- * @param violence The violence of this {@link AzureContentSafety}
- * @return The same instance of this {@link AzureContentSafety} class
- */
+ * Set the violence of this {@link AzureContentSafety} instance and return the same instance.
+ *
+ * @param violence The violence of this {@link AzureContentSafety}
+ * @return The same instance of this {@link AzureContentSafety} class
+ */
@Nonnull public AzureContentSafety violence(@Nonnull final AzureThreshold violence) {
this.violence = violence;
return this;
}
/**
- * Get violence
- * @return violence The violence of this {@link AzureContentSafety} instance.
- **/
+ * Get violence
+ * @return violence The violence of this {@link AzureContentSafety} instance.
+ */
@Nonnull public AzureThreshold getViolence() {
return violence;
}
/**
- * Set the violence of this {@link AzureContentSafety} instance.
- *
- * @param violence The violence of this {@link AzureContentSafety}
- */
+ * Set the violence of this {@link AzureContentSafety} instance.
+ *
+ * @param violence The violence of this {@link AzureContentSafety}
+ */
public void setViolence( @Nonnull final AzureThreshold violence) {
this.violence = violence;
}
@@ -254,5 +253,6 @@ private String toIndentedString(final java.lang.Object o) {
return o.toString().replace("\n", "\n ");
}
+
}
diff --git a/orchestration/src/main/java/com/sap/ai/sdk/orchestration/client/model/ChatMessage.java b/orchestration/src/main/java/com/sap/ai/sdk/orchestration/client/model/ChatMessage.java
index 6bb7ddc7..a97c7d23 100644
--- a/orchestration/src/main/java/com/sap/ai/sdk/orchestration/client/model/ChatMessage.java
+++ b/orchestration/src/main/java/com/sap/ai/sdk/orchestration/client/model/ChatMessage.java
@@ -38,7 +38,6 @@
/**
* ChatMessage
*/
-
// CHECKSTYLE:OFF
public class ChatMessage
// CHECKSTYLE:ON
@@ -54,57 +53,57 @@ public class ChatMessage
private final Map cloudSdkCustomFields = new LinkedHashMap<>();
/**
- * Set the role of this {@link ChatMessage} instance and return the same instance.
- *
- * @param role The role of this {@link ChatMessage}
- * @return The same instance of this {@link ChatMessage} class
- */
+ * Set the role of this {@link ChatMessage} instance and return the same instance.
+ *
+ * @param role The role of this {@link ChatMessage}
+ * @return The same instance of this {@link ChatMessage} class
+ */
@Nonnull public ChatMessage role(@Nonnull final String role) {
this.role = role;
return this;
}
/**
- * Get role
- * @return role The role of this {@link ChatMessage} instance.
- **/
+ * Get role
+ * @return role The role of this {@link ChatMessage} instance.
+ */
@Nonnull public String getRole() {
return role;
}
/**
- * Set the role of this {@link ChatMessage} instance.
- *
- * @param role The role of this {@link ChatMessage}
- */
+ * Set the role of this {@link ChatMessage} instance.
+ *
+ * @param role The role of this {@link ChatMessage}
+ */
public void setRole( @Nonnull final String role) {
this.role = role;
}
/**
- * Set the content of this {@link ChatMessage} instance and return the same instance.
- *
- * @param content The content of this {@link ChatMessage}
- * @return The same instance of this {@link ChatMessage} class
- */
+ * Set the content of this {@link ChatMessage} instance and return the same instance.
+ *
+ * @param content The content of this {@link ChatMessage}
+ * @return The same instance of this {@link ChatMessage} class
+ */
@Nonnull public ChatMessage content(@Nonnull final String content) {
this.content = content;
return this;
}
/**
- * Get content
- * @return content The content of this {@link ChatMessage} instance.
- **/
+ * Get content
+ * @return content The content of this {@link ChatMessage} instance.
+ */
@Nonnull public String getContent() {
return content;
}
/**
- * Set the content of this {@link ChatMessage} instance.
- *
- * @param content The content of this {@link ChatMessage}
- */
+ * Set the content of this {@link ChatMessage} instance.
+ *
+ * @param content The content of this {@link ChatMessage}
+ */
public void setContent( @Nonnull final String content) {
this.content = content;
}
@@ -187,5 +186,6 @@ private String toIndentedString(final java.lang.Object o) {
return o.toString().replace("\n", "\n ");
}
+
}
diff --git a/orchestration/src/main/java/com/sap/ai/sdk/orchestration/client/model/CompletionPostRequest.java b/orchestration/src/main/java/com/sap/ai/sdk/orchestration/client/model/CompletionPostRequest.java
index 57138fb9..2caf6041 100644
--- a/orchestration/src/main/java/com/sap/ai/sdk/orchestration/client/model/CompletionPostRequest.java
+++ b/orchestration/src/main/java/com/sap/ai/sdk/orchestration/client/model/CompletionPostRequest.java
@@ -45,7 +45,6 @@
/**
* CompletionPostRequest
*/
-
// CHECKSTYLE:OFF
public class CompletionPostRequest
// CHECKSTYLE:ON
@@ -64,50 +63,50 @@ public class CompletionPostRequest
private final Map cloudSdkCustomFields = new LinkedHashMap<>();
/**
- * Set the orchestrationConfig of this {@link CompletionPostRequest} instance and return the same instance.
- *
- * @param orchestrationConfig The orchestrationConfig of this {@link CompletionPostRequest}
- * @return The same instance of this {@link CompletionPostRequest} class
- */
+ * Set the orchestrationConfig of this {@link CompletionPostRequest} instance and return the same instance.
+ *
+ * @param orchestrationConfig The orchestrationConfig of this {@link CompletionPostRequest}
+ * @return The same instance of this {@link CompletionPostRequest} class
+ */
@Nonnull public CompletionPostRequest orchestrationConfig(@Nonnull final OrchestrationConfig orchestrationConfig) {
this.orchestrationConfig = orchestrationConfig;
return this;
}
/**
- * Get orchestrationConfig
- * @return orchestrationConfig The orchestrationConfig of this {@link CompletionPostRequest} instance.
- **/
+ * Get orchestrationConfig
+ * @return orchestrationConfig The orchestrationConfig of this {@link CompletionPostRequest} instance.
+ */
@Nonnull public OrchestrationConfig getOrchestrationConfig() {
return orchestrationConfig;
}
/**
- * Set the orchestrationConfig of this {@link CompletionPostRequest} instance.
- *
- * @param orchestrationConfig The orchestrationConfig of this {@link CompletionPostRequest}
- */
+ * Set the orchestrationConfig of this {@link CompletionPostRequest} instance.
+ *
+ * @param orchestrationConfig The orchestrationConfig of this {@link CompletionPostRequest}
+ */
public void setOrchestrationConfig( @Nonnull final OrchestrationConfig orchestrationConfig) {
this.orchestrationConfig = orchestrationConfig;
}
/**
- * Set the inputParams of this {@link CompletionPostRequest} instance and return the same instance.
- *
- * @param inputParams The inputParams of this {@link CompletionPostRequest}
- * @return The same instance of this {@link CompletionPostRequest} class
- */
+ * Set the inputParams of this {@link CompletionPostRequest} instance and return the same instance.
+ *
+ * @param inputParams The inputParams of this {@link CompletionPostRequest}
+ * @return The same instance of this {@link CompletionPostRequest} class
+ */
@Nonnull public CompletionPostRequest inputParams(@Nonnull final Map inputParams) {
this.inputParams = inputParams;
return this;
}
/**
- * Put one inputParams instance to this {@link CompletionPostRequest} instance.
- * @param key The String key of this inputParams instance
- * @param inputParamsItem The inputParams that should be added under the given key
- * @return The same instance of type {@link CompletionPostRequest}
- */
+ * Put one inputParams instance to this {@link CompletionPostRequest} instance.
+ * @param key The String key of this inputParams instance
+ * @param inputParamsItem The inputParams that should be added under the given key
+ * @return The same instance of type {@link CompletionPostRequest}
+ */
@Nonnull public CompletionPostRequest putinputParamsItem(@Nonnull final String key, @Nonnull final String inputParamsItem) {
this.inputParams = new HashMap<>();
this.inputParams.put(key, inputParamsItem);
@@ -115,38 +114,38 @@ public void setOrchestrationConfig( @Nonnull final OrchestrationConfig orchestra
}
/**
- * Get inputParams
- * @return inputParams The inputParams of this {@link CompletionPostRequest} instance.
- **/
+ * Get inputParams
+ * @return inputParams The inputParams of this {@link CompletionPostRequest} instance.
+ */
@Nonnull public Map getInputParams() {
return inputParams;
}
/**
- * Set the inputParams of this {@link CompletionPostRequest} instance.
- *
- * @param inputParams The inputParams of this {@link CompletionPostRequest}
- */
+ * Set the inputParams of this {@link CompletionPostRequest} instance.
+ *
+ * @param inputParams The inputParams of this {@link CompletionPostRequest}
+ */
public void setInputParams( @Nonnull final Map inputParams) {
this.inputParams = inputParams;
}
/**
- * Set the messagesHistory of this {@link CompletionPostRequest} instance and return the same instance.
- *
- * @param messagesHistory History of chat messages. Can be used to provide system and assistant messages to set the context of the conversation. Will be merged with the template message
- * @return The same instance of this {@link CompletionPostRequest} class
- */
+ * Set the messagesHistory of this {@link CompletionPostRequest} instance and return the same instance.
+ *
+ * @param messagesHistory History of chat messages. Can be used to provide system and assistant messages to set the context of the conversation. Will be merged with the template message
+ * @return The same instance of this {@link CompletionPostRequest} class
+ */
@Nonnull public CompletionPostRequest messagesHistory(@Nonnull final List messagesHistory) {
this.messagesHistory = messagesHistory;
return this;
}
/**
- * Add one messagesHistory instance to this {@link CompletionPostRequest}.
- * @param messagesHistoryItem The messagesHistory that should be added
- * @return The same instance of type {@link CompletionPostRequest}
- */
- @Nonnull public CompletionPostRequest addmessagesHistoryItem( @Nonnull final ChatMessage messagesHistoryItem) {
+ * Add one messagesHistory instance to this {@link CompletionPostRequest}.
+ * @param messagesHistoryItem The messagesHistory that should be added
+ * @return The same instance of type {@link CompletionPostRequest}
+ */
+ @Nonnull public CompletionPostRequest addMessagesHistoryItem( @Nonnull final ChatMessage messagesHistoryItem) {
if (this.messagesHistory == null) {
this.messagesHistory = new ArrayList<>();
}
@@ -155,18 +154,18 @@ public void setInputParams( @Nonnull final Map inputParams) {
}
/**
- * History of chat messages. Can be used to provide system and assistant messages to set the context of the conversation. Will be merged with the template message
- * @return messagesHistory The messagesHistory of this {@link CompletionPostRequest} instance.
- **/
+ * History of chat messages. Can be used to provide system and assistant messages to set the context of the conversation. Will be merged with the template message
+ * @return messagesHistory The messagesHistory of this {@link CompletionPostRequest} instance.
+ */
@Nonnull public List getMessagesHistory() {
return messagesHistory;
}
/**
- * Set the messagesHistory of this {@link CompletionPostRequest} instance.
- *
- * @param messagesHistory History of chat messages. Can be used to provide system and assistant messages to set the context of the conversation. Will be merged with the template message
- */
+ * Set the messagesHistory of this {@link CompletionPostRequest} instance.
+ *
+ * @param messagesHistory History of chat messages. Can be used to provide system and assistant messages to set the context of the conversation. Will be merged with the template message
+ */
public void setMessagesHistory( @Nonnull final List messagesHistory) {
this.messagesHistory = messagesHistory;
}
@@ -251,5 +250,6 @@ private String toIndentedString(final java.lang.Object o) {
return o.toString().replace("\n", "\n ");
}
+
}
diff --git a/orchestration/src/main/java/com/sap/ai/sdk/orchestration/client/model/CompletionPostResponse.java b/orchestration/src/main/java/com/sap/ai/sdk/orchestration/client/model/CompletionPostResponse.java
index 5c594797..c407eaa6 100644
--- a/orchestration/src/main/java/com/sap/ai/sdk/orchestration/client/model/CompletionPostResponse.java
+++ b/orchestration/src/main/java/com/sap/ai/sdk/orchestration/client/model/CompletionPostResponse.java
@@ -40,7 +40,6 @@
/**
* CompletionPostResponse
*/
-
// CHECKSTYLE:OFF
public class CompletionPostResponse
// CHECKSTYLE:ON
@@ -59,85 +58,85 @@ public class CompletionPostResponse
private final Map cloudSdkCustomFields = new LinkedHashMap<>();
/**
- * Set the requestId of this {@link CompletionPostResponse} instance and return the same instance.
- *
- * @param requestId ID of the request
- * @return The same instance of this {@link CompletionPostResponse} class
- */
+ * Set the requestId of this {@link CompletionPostResponse} instance and return the same instance.
+ *
+ * @param requestId ID of the request
+ * @return The same instance of this {@link CompletionPostResponse} class
+ */
@Nonnull public CompletionPostResponse requestId(@Nonnull final String requestId) {
this.requestId = requestId;
return this;
}
/**
- * ID of the request
- * @return requestId The requestId of this {@link CompletionPostResponse} instance.
- **/
+ * ID of the request
+ * @return requestId The requestId of this {@link CompletionPostResponse} instance.
+ */
@Nonnull public String getRequestId() {
return requestId;
}
/**
- * Set the requestId of this {@link CompletionPostResponse} instance.
- *
- * @param requestId ID of the request
- */
+ * Set the requestId of this {@link CompletionPostResponse} instance.
+ *
+ * @param requestId ID of the request
+ */
public void setRequestId( @Nonnull final String requestId) {
this.requestId = requestId;
}
/**
- * Set the moduleResults of this {@link CompletionPostResponse} instance and return the same instance.
- *
- * @param moduleResults The moduleResults of this {@link CompletionPostResponse}
- * @return The same instance of this {@link CompletionPostResponse} class
- */
+ * Set the moduleResults of this {@link CompletionPostResponse} instance and return the same instance.
+ *
+ * @param moduleResults The moduleResults of this {@link CompletionPostResponse}
+ * @return The same instance of this {@link CompletionPostResponse} class
+ */
@Nonnull public CompletionPostResponse moduleResults(@Nonnull final ModuleResults moduleResults) {
this.moduleResults = moduleResults;
return this;
}
/**
- * Get moduleResults
- * @return moduleResults The moduleResults of this {@link CompletionPostResponse} instance.
- **/
+ * Get moduleResults
+ * @return moduleResults The moduleResults of this {@link CompletionPostResponse} instance.
+ */
@Nonnull public ModuleResults getModuleResults() {
return moduleResults;
}
/**
- * Set the moduleResults of this {@link CompletionPostResponse} instance.
- *
- * @param moduleResults The moduleResults of this {@link CompletionPostResponse}
- */
+ * Set the moduleResults of this {@link CompletionPostResponse} instance.
+ *
+ * @param moduleResults The moduleResults of this {@link CompletionPostResponse}
+ */
public void setModuleResults( @Nonnull final ModuleResults moduleResults) {
this.moduleResults = moduleResults;
}
/**
- * Set the orchestrationResult of this {@link CompletionPostResponse} instance and return the same instance.
- *
- * @param orchestrationResult The orchestrationResult of this {@link CompletionPostResponse}
- * @return The same instance of this {@link CompletionPostResponse} class
- */
+ * Set the orchestrationResult of this {@link CompletionPostResponse} instance and return the same instance.
+ *
+ * @param orchestrationResult The orchestrationResult of this {@link CompletionPostResponse}
+ * @return The same instance of this {@link CompletionPostResponse} class
+ */
@Nonnull public CompletionPostResponse orchestrationResult(@Nonnull final LLMModuleResult orchestrationResult) {
this.orchestrationResult = orchestrationResult;
return this;
}
/**
- * Get orchestrationResult
- * @return orchestrationResult The orchestrationResult of this {@link CompletionPostResponse} instance.
- **/
+ * Get orchestrationResult
+ * @return orchestrationResult The orchestrationResult of this {@link CompletionPostResponse} instance.
+ */
@Nonnull public LLMModuleResult getOrchestrationResult() {
return orchestrationResult;
}
/**
- * Set the orchestrationResult of this {@link CompletionPostResponse} instance.
- *
- * @param orchestrationResult The orchestrationResult of this {@link CompletionPostResponse}
- */
+ * Set the orchestrationResult of this {@link CompletionPostResponse} instance.
+ *
+ * @param orchestrationResult The orchestrationResult of this {@link CompletionPostResponse}
+ */
public void setOrchestrationResult( @Nonnull final LLMModuleResult orchestrationResult) {
this.orchestrationResult = orchestrationResult;
}
@@ -222,5 +221,6 @@ private String toIndentedString(final java.lang.Object o) {
return o.toString().replace("\n", "\n ");
}
+
}
diff --git a/orchestration/src/main/java/com/sap/ai/sdk/orchestration/client/model/ErrorResponse.java b/orchestration/src/main/java/com/sap/ai/sdk/orchestration/client/model/ErrorResponse.java
index d7c2858b..b77b7b53 100644
--- a/orchestration/src/main/java/com/sap/ai/sdk/orchestration/client/model/ErrorResponse.java
+++ b/orchestration/src/main/java/com/sap/ai/sdk/orchestration/client/model/ErrorResponse.java
@@ -39,7 +39,6 @@
/**
* ErrorResponse
*/
-
// CHECKSTYLE:OFF
public class ErrorResponse
// CHECKSTYLE:ON
@@ -64,141 +63,141 @@ public class ErrorResponse
private final Map cloudSdkCustomFields = new LinkedHashMap<>();
/**
- * Set the requestId of this {@link ErrorResponse} instance and return the same instance.
- *
- * @param requestId The requestId of this {@link ErrorResponse}
- * @return The same instance of this {@link ErrorResponse} class
- */
+ * Set the requestId of this {@link ErrorResponse} instance and return the same instance.
+ *
+ * @param requestId The requestId of this {@link ErrorResponse}
+ * @return The same instance of this {@link ErrorResponse} class
+ */
@Nonnull public ErrorResponse requestId(@Nonnull final String requestId) {
this.requestId = requestId;
return this;
}
/**
- * Get requestId
- * @return requestId The requestId of this {@link ErrorResponse} instance.
- **/
+ * Get requestId
+ * @return requestId The requestId of this {@link ErrorResponse} instance.
+ */
@Nonnull public String getRequestId() {
return requestId;
}
/**
- * Set the requestId of this {@link ErrorResponse} instance.
- *
- * @param requestId The requestId of this {@link ErrorResponse}
- */
+ * Set the requestId of this {@link ErrorResponse} instance.
+ *
+ * @param requestId The requestId of this {@link ErrorResponse}
+ */
public void setRequestId( @Nonnull final String requestId) {
this.requestId = requestId;
}
/**
- * Set the code of this {@link ErrorResponse} instance and return the same instance.
- *
- * @param code The code of this {@link ErrorResponse}
- * @return The same instance of this {@link ErrorResponse} class
- */
+ * Set the code of this {@link ErrorResponse} instance and return the same instance.
+ *
+ * @param code The code of this {@link ErrorResponse}
+ * @return The same instance of this {@link ErrorResponse} class
+ */
@Nonnull public ErrorResponse code(@Nonnull final Integer code) {
this.code = code;
return this;
}
/**
- * Get code
- * @return code The code of this {@link ErrorResponse} instance.
- **/
+ * Get code
+ * @return code The code of this {@link ErrorResponse} instance.
+ */
@Nonnull public Integer getCode() {
return code;
}
/**
- * Set the code of this {@link ErrorResponse} instance.
- *
- * @param code The code of this {@link ErrorResponse}
- */
+ * Set the code of this {@link ErrorResponse} instance.
+ *
+ * @param code The code of this {@link ErrorResponse}
+ */
public void setCode( @Nonnull final Integer code) {
this.code = code;
}
/**
- * Set the message of this {@link ErrorResponse} instance and return the same instance.
- *
- * @param message The message of this {@link ErrorResponse}
- * @return The same instance of this {@link ErrorResponse} class
- */
+ * Set the message of this {@link ErrorResponse} instance and return the same instance.
+ *
+ * @param message The message of this {@link ErrorResponse}
+ * @return The same instance of this {@link ErrorResponse} class
+ */
@Nonnull public ErrorResponse message(@Nonnull final String message) {
this.message = message;
return this;
}
/**
- * Get message
- * @return message The message of this {@link ErrorResponse} instance.
- **/
+ * Get message
+ * @return message The message of this {@link ErrorResponse} instance.
+ */
@Nonnull public String getMessage() {
return message;
}
/**
- * Set the message of this {@link ErrorResponse} instance.
- *
- * @param message The message of this {@link ErrorResponse}
- */
+ * Set the message of this {@link ErrorResponse} instance.
+ *
+ * @param message The message of this {@link ErrorResponse}
+ */
public void setMessage( @Nonnull final String message) {
this.message = message;
}
/**
- * Set the location of this {@link ErrorResponse} instance and return the same instance.
- *
- * @param location Where the error occurred
- * @return The same instance of this {@link ErrorResponse} class
- */
+ * Set the location of this {@link ErrorResponse} instance and return the same instance.
+ *
+ * @param location Where the error occurred
+ * @return The same instance of this {@link ErrorResponse} class
+ */
@Nonnull public ErrorResponse location(@Nonnull final String location) {
this.location = location;
return this;
}
/**
- * Where the error occurred
- * @return location The location of this {@link ErrorResponse} instance.
- **/
+ * Where the error occurred
+ * @return location The location of this {@link ErrorResponse} instance.
+ */
@Nonnull public String getLocation() {
return location;
}
/**
- * Set the location of this {@link ErrorResponse} instance.
- *
- * @param location Where the error occurred
- */
+ * Set the location of this {@link ErrorResponse} instance.
+ *
+ * @param location Where the error occurred
+ */
public void setLocation( @Nonnull final String location) {
this.location = location;
}
/**
- * Set the moduleResults of this {@link ErrorResponse} instance and return the same instance.
- *
- * @param moduleResults The moduleResults of this {@link ErrorResponse}
- * @return The same instance of this {@link ErrorResponse} class
- */
+ * Set the moduleResults of this {@link ErrorResponse} instance and return the same instance.
+ *
+ * @param moduleResults The moduleResults of this {@link ErrorResponse}
+ * @return The same instance of this {@link ErrorResponse} class
+ */
@Nonnull public ErrorResponse moduleResults(@Nonnull final ModuleResults moduleResults) {
this.moduleResults = moduleResults;
return this;
}
/**
- * Get moduleResults
- * @return moduleResults The moduleResults of this {@link ErrorResponse} instance.
- **/
+ * Get moduleResults
+ * @return moduleResults The moduleResults of this {@link ErrorResponse} instance.
+ */
@Nonnull public ModuleResults getModuleResults() {
return moduleResults;
}
/**
- * Set the moduleResults of this {@link ErrorResponse} instance.
- *
- * @param moduleResults The moduleResults of this {@link ErrorResponse}
- */
+ * Set the moduleResults of this {@link ErrorResponse} instance.
+ *
+ * @param moduleResults The moduleResults of this {@link ErrorResponse}
+ */
public void setModuleResults( @Nonnull final ModuleResults moduleResults) {
this.moduleResults = moduleResults;
}
@@ -287,5 +286,6 @@ private String toIndentedString(final java.lang.Object o) {
return o.toString().replace("\n", "\n ");
}
+
}
diff --git a/orchestration/src/main/java/com/sap/ai/sdk/orchestration/client/model/Filter.java b/orchestration/src/main/java/com/sap/ai/sdk/orchestration/client/model/Filter.java
index 9987fcbb..2173c730 100644
--- a/orchestration/src/main/java/com/sap/ai/sdk/orchestration/client/model/Filter.java
+++ b/orchestration/src/main/java/com/sap/ai/sdk/orchestration/client/model/Filter.java
@@ -40,7 +40,6 @@
/**
* Filter
*/
-
// CHECKSTYLE:OFF
public class Filter
// CHECKSTYLE:ON
@@ -56,57 +55,57 @@ public class Filter
private final Map cloudSdkCustomFields = new LinkedHashMap<>();
/**
- * Set the type of this {@link Filter} instance and return the same instance.
- *
- * @param type The type of this {@link Filter}
- * @return The same instance of this {@link Filter} class
- */
+ * Set the type of this {@link Filter} instance and return the same instance.
+ *
+ * @param type The type of this {@link Filter}
+ * @return The same instance of this {@link Filter} class
+ */
@Nonnull public Filter type(@Nonnull final ProviderType type) {
this.type = type;
return this;
}
/**
- * Get type
- * @return type The type of this {@link Filter} instance.
- **/
+ * Get type
+ * @return type The type of this {@link Filter} instance.
+ */
@Nonnull public ProviderType getType() {
return type;
}
/**
- * Set the type of this {@link Filter} instance.
- *
- * @param type The type of this {@link Filter}
- */
+ * Set the type of this {@link Filter} instance.
+ *
+ * @param type The type of this {@link Filter}
+ */
public void setType( @Nonnull final ProviderType type) {
this.type = type;
}
/**
- * Set the config of this {@link Filter} instance and return the same instance.
- *
- * @param config The config of this {@link Filter}
- * @return The same instance of this {@link Filter} class
- */
+ * Set the config of this {@link Filter} instance and return the same instance.
+ *
+ * @param config The config of this {@link Filter}
+ * @return The same instance of this {@link Filter} class
+ */
@Nonnull public Filter config(@Nonnull final FilterConfig config) {
this.config = config;
return this;
}
/**
- * Get config
- * @return config The config of this {@link Filter} instance.
- **/
+ * Get config
+ * @return config The config of this {@link Filter} instance.
+ */
@Nonnull public FilterConfig getConfig() {
return config;
}
/**
- * Set the config of this {@link Filter} instance.
- *
- * @param config The config of this {@link Filter}
- */
+ * Set the config of this {@link Filter} instance.
+ *
+ * @param config The config of this {@link Filter}
+ */
public void setConfig( @Nonnull final FilterConfig config) {
this.config = config;
}
@@ -189,5 +188,6 @@ private String toIndentedString(final java.lang.Object o) {
return o.toString().replace("\n", "\n ");
}
+
}
diff --git a/orchestration/src/main/java/com/sap/ai/sdk/orchestration/client/model/FilterConfig.java b/orchestration/src/main/java/com/sap/ai/sdk/orchestration/client/model/FilterConfig.java
index 04867654..c8502ef7 100644
--- a/orchestration/src/main/java/com/sap/ai/sdk/orchestration/client/model/FilterConfig.java
+++ b/orchestration/src/main/java/com/sap/ai/sdk/orchestration/client/model/FilterConfig.java
@@ -40,7 +40,6 @@
/**
* Filters classifiers to be used
*/
-
// CHECKSTYLE:OFF
public class FilterConfig
// CHECKSTYLE:ON
@@ -62,113 +61,113 @@ public class FilterConfig
private final Map cloudSdkCustomFields = new LinkedHashMap<>();
/**
- * Set the hate of this {@link FilterConfig} instance and return the same instance.
- *
- * @param hate The hate of this {@link FilterConfig}
- * @return The same instance of this {@link FilterConfig} class
- */
+ * Set the hate of this {@link FilterConfig} instance and return the same instance.
+ *
+ * @param hate The hate of this {@link FilterConfig}
+ * @return The same instance of this {@link FilterConfig} class
+ */
@Nonnull public FilterConfig hate(@Nonnull final AzureThreshold hate) {
this.hate = hate;
return this;
}
/**
- * Get hate
- * @return hate The hate of this {@link FilterConfig} instance.
- **/
+ * Get hate
+ * @return hate The hate of this {@link FilterConfig} instance.
+ */
@Nonnull public AzureThreshold getHate() {
return hate;
}
/**
- * Set the hate of this {@link FilterConfig} instance.
- *
- * @param hate The hate of this {@link FilterConfig}
- */
+ * Set the hate of this {@link FilterConfig} instance.
+ *
+ * @param hate The hate of this {@link FilterConfig}
+ */
public void setHate( @Nonnull final AzureThreshold hate) {
this.hate = hate;
}
/**
- * Set the selfHarm of this {@link FilterConfig} instance and return the same instance.
- *
- * @param selfHarm The selfHarm of this {@link FilterConfig}
- * @return The same instance of this {@link FilterConfig} class
- */
+ * Set the selfHarm of this {@link FilterConfig} instance and return the same instance.
+ *
+ * @param selfHarm The selfHarm of this {@link FilterConfig}
+ * @return The same instance of this {@link FilterConfig} class
+ */
@Nonnull public FilterConfig selfHarm(@Nonnull final AzureThreshold selfHarm) {
this.selfHarm = selfHarm;
return this;
}
/**
- * Get selfHarm
- * @return selfHarm The selfHarm of this {@link FilterConfig} instance.
- **/
+ * Get selfHarm
+ * @return selfHarm The selfHarm of this {@link FilterConfig} instance.
+ */
@Nonnull public AzureThreshold getSelfHarm() {
return selfHarm;
}
/**
- * Set the selfHarm of this {@link FilterConfig} instance.
- *
- * @param selfHarm The selfHarm of this {@link FilterConfig}
- */
+ * Set the selfHarm of this {@link FilterConfig} instance.
+ *
+ * @param selfHarm The selfHarm of this {@link FilterConfig}
+ */
public void setSelfHarm( @Nonnull final AzureThreshold selfHarm) {
this.selfHarm = selfHarm;
}
/**
- * Set the sexual of this {@link FilterConfig} instance and return the same instance.
- *
- * @param sexual The sexual of this {@link FilterConfig}
- * @return The same instance of this {@link FilterConfig} class
- */
+ * Set the sexual of this {@link FilterConfig} instance and return the same instance.
+ *
+ * @param sexual The sexual of this {@link FilterConfig}
+ * @return The same instance of this {@link FilterConfig} class
+ */
@Nonnull public FilterConfig sexual(@Nonnull final AzureThreshold sexual) {
this.sexual = sexual;
return this;
}
/**
- * Get sexual
- * @return sexual The sexual of this {@link FilterConfig} instance.
- **/
+ * Get sexual
+ * @return sexual The sexual of this {@link FilterConfig} instance.
+ */
@Nonnull public AzureThreshold getSexual() {
return sexual;
}
/**
- * Set the sexual of this {@link FilterConfig} instance.
- *
- * @param sexual The sexual of this {@link FilterConfig}
- */
+ * Set the sexual of this {@link FilterConfig} instance.
+ *
+ * @param sexual The sexual of this {@link FilterConfig}
+ */
public void setSexual( @Nonnull final AzureThreshold sexual) {
this.sexual = sexual;
}
/**
- * Set the violence of this {@link FilterConfig} instance and return the same instance.
- *
- * @param violence The violence of this {@link FilterConfig}
- * @return The same instance of this {@link FilterConfig} class
- */
+ * Set the violence of this {@link FilterConfig} instance and return the same instance.
+ *
+ * @param violence The violence of this {@link FilterConfig}
+ * @return The same instance of this {@link FilterConfig} class
+ */
@Nonnull public FilterConfig violence(@Nonnull final AzureThreshold violence) {
this.violence = violence;
return this;
}
/**
- * Get violence
- * @return violence The violence of this {@link FilterConfig} instance.
- **/
+ * Get violence
+ * @return violence The violence of this {@link FilterConfig} instance.
+ */
@Nonnull public AzureThreshold getViolence() {
return violence;
}
/**
- * Set the violence of this {@link FilterConfig} instance.
- *
- * @param violence The violence of this {@link FilterConfig}
- */
+ * Set the violence of this {@link FilterConfig} instance.
+ *
+ * @param violence The violence of this {@link FilterConfig}
+ */
public void setViolence( @Nonnull final AzureThreshold violence) {
this.violence = violence;
}
@@ -255,5 +254,6 @@ private String toIndentedString(final java.lang.Object o) {
return o.toString().replace("\n", "\n ");
}
+
}
diff --git a/orchestration/src/main/java/com/sap/ai/sdk/orchestration/client/model/FilteringConfig.java b/orchestration/src/main/java/com/sap/ai/sdk/orchestration/client/model/FilteringConfig.java
index 508323be..ee7b93ec 100644
--- a/orchestration/src/main/java/com/sap/ai/sdk/orchestration/client/model/FilteringConfig.java
+++ b/orchestration/src/main/java/com/sap/ai/sdk/orchestration/client/model/FilteringConfig.java
@@ -42,7 +42,6 @@
/**
* FilteringConfig
*/
-
// CHECKSTYLE:OFF
public class FilteringConfig
// CHECKSTYLE:ON
@@ -55,21 +54,21 @@ public class FilteringConfig
private final Map cloudSdkCustomFields = new LinkedHashMap<>();
/**
- * Set the filters of this {@link FilteringConfig} instance and return the same instance.
- *
- * @param filters Filters to be used
- * @return The same instance of this {@link FilteringConfig} class
- */
+ * Set the filters of this {@link FilteringConfig} instance and return the same instance.
+ *
+ * @param filters Filters to be used
+ * @return The same instance of this {@link FilteringConfig} class
+ */
@Nonnull public FilteringConfig filters(@Nonnull final List filters) {
this.filters = filters;
return this;
}
/**
- * Add one filters instance to this {@link FilteringConfig}.
- * @param filtersItem The filters that should be added
- * @return The same instance of type {@link FilteringConfig}
- */
- @Nonnull public FilteringConfig addfiltersItem( @Nonnull final Filter filtersItem) {
+ * Add one filters instance to this {@link FilteringConfig}.
+ * @param filtersItem The filters that should be added
+ * @return The same instance of type {@link FilteringConfig}
+ */
+ @Nonnull public FilteringConfig addFiltersItem( @Nonnull final Filter filtersItem) {
if (this.filters == null) {
this.filters = new ArrayList<>();
}
@@ -78,18 +77,18 @@ public class FilteringConfig
}
/**
- * Filters to be used
- * @return filters The filters of this {@link FilteringConfig} instance.
- **/
+ * Filters to be used
+ * @return filters The filters of this {@link FilteringConfig} instance.
+ */
@Nonnull public List getFilters() {
return filters;
}
/**
- * Set the filters of this {@link FilteringConfig} instance.
- *
- * @param filters Filters to be used
- */
+ * Set the filters of this {@link FilteringConfig} instance.
+ *
+ * @param filters Filters to be used
+ */
public void setFilters( @Nonnull final List filters) {
this.filters = filters;
}
@@ -170,5 +169,6 @@ private String toIndentedString(final java.lang.Object o) {
return o.toString().replace("\n", "\n ");
}
+
}
diff --git a/orchestration/src/main/java/com/sap/ai/sdk/orchestration/client/model/FilteringModuleConfig.java b/orchestration/src/main/java/com/sap/ai/sdk/orchestration/client/model/FilteringModuleConfig.java
index e1a15bf1..10201fbe 100644
--- a/orchestration/src/main/java/com/sap/ai/sdk/orchestration/client/model/FilteringModuleConfig.java
+++ b/orchestration/src/main/java/com/sap/ai/sdk/orchestration/client/model/FilteringModuleConfig.java
@@ -39,7 +39,6 @@
/**
* FilteringModuleConfig
*/
-
// CHECKSTYLE:OFF
public class FilteringModuleConfig
// CHECKSTYLE:ON
@@ -55,57 +54,57 @@ public class FilteringModuleConfig
private final Map cloudSdkCustomFields = new LinkedHashMap<>();
/**
- * Set the input of this {@link FilteringModuleConfig} instance and return the same instance.
- *
- * @param input The input of this {@link FilteringModuleConfig}
- * @return The same instance of this {@link FilteringModuleConfig} class
- */
+ * Set the input of this {@link FilteringModuleConfig} instance and return the same instance.
+ *
+ * @param input The input of this {@link FilteringModuleConfig}
+ * @return The same instance of this {@link FilteringModuleConfig} class
+ */
@Nonnull public FilteringModuleConfig input(@Nonnull final FilteringConfig input) {
this.input = input;
return this;
}
/**
- * Get input
- * @return input The input of this {@link FilteringModuleConfig} instance.
- **/
+ * Get input
+ * @return input The input of this {@link FilteringModuleConfig} instance.
+ */
@Nonnull public FilteringConfig getInput() {
return input;
}
/**
- * Set the input of this {@link FilteringModuleConfig} instance.
- *
- * @param input The input of this {@link FilteringModuleConfig}
- */
+ * Set the input of this {@link FilteringModuleConfig} instance.
+ *
+ * @param input The input of this {@link FilteringModuleConfig}
+ */
public void setInput( @Nonnull final FilteringConfig input) {
this.input = input;
}
/**
- * Set the output of this {@link FilteringModuleConfig} instance and return the same instance.
- *
- * @param output The output of this {@link FilteringModuleConfig}
- * @return The same instance of this {@link FilteringModuleConfig} class
- */
+ * Set the output of this {@link FilteringModuleConfig} instance and return the same instance.
+ *
+ * @param output The output of this {@link FilteringModuleConfig}
+ * @return The same instance of this {@link FilteringModuleConfig} class
+ */
@Nonnull public FilteringModuleConfig output(@Nonnull final FilteringConfig output) {
this.output = output;
return this;
}
/**
- * Get output
- * @return output The output of this {@link FilteringModuleConfig} instance.
- **/
+ * Get output
+ * @return output The output of this {@link FilteringModuleConfig} instance.
+ */
@Nonnull public FilteringConfig getOutput() {
return output;
}
/**
- * Set the output of this {@link FilteringModuleConfig} instance.
- *
- * @param output The output of this {@link FilteringModuleConfig}
- */
+ * Set the output of this {@link FilteringModuleConfig} instance.
+ *
+ * @param output The output of this {@link FilteringModuleConfig}
+ */
public void setOutput( @Nonnull final FilteringConfig output) {
this.output = output;
}
@@ -188,5 +187,6 @@ private String toIndentedString(final java.lang.Object o) {
return o.toString().replace("\n", "\n ");
}
+
}
diff --git a/orchestration/src/main/java/com/sap/ai/sdk/orchestration/client/model/GenericModuleResult.java b/orchestration/src/main/java/com/sap/ai/sdk/orchestration/client/model/GenericModuleResult.java
index 7c475dc9..3438002e 100644
--- a/orchestration/src/main/java/com/sap/ai/sdk/orchestration/client/model/GenericModuleResult.java
+++ b/orchestration/src/main/java/com/sap/ai/sdk/orchestration/client/model/GenericModuleResult.java
@@ -38,7 +38,6 @@
/**
* Generic module result
*/
-
// CHECKSTYLE:OFF
public class GenericModuleResult
// CHECKSTYLE:ON
@@ -54,57 +53,57 @@ public class GenericModuleResult
private final Map cloudSdkCustomFields = new LinkedHashMap<>();
/**
- * Set the message of this {@link GenericModuleResult} instance and return the same instance.
- *
- * @param message Some message created from the module
- * @return The same instance of this {@link GenericModuleResult} class
- */
+ * Set the message of this {@link GenericModuleResult} instance and return the same instance.
+ *
+ * @param message Some message created from the module
+ * @return The same instance of this {@link GenericModuleResult} class
+ */
@Nonnull public GenericModuleResult message(@Nonnull final String message) {
this.message = message;
return this;
}
/**
- * Some message created from the module
- * @return message The message of this {@link GenericModuleResult} instance.
- **/
+ * Some message created from the module
+ * @return message The message of this {@link GenericModuleResult} instance.
+ */
@Nonnull public String getMessage() {
return message;
}
/**
- * Set the message of this {@link GenericModuleResult} instance.
- *
- * @param message Some message created from the module
- */
+ * Set the message of this {@link GenericModuleResult} instance.
+ *
+ * @param message Some message created from the module
+ */
public void setMessage( @Nonnull final String message) {
this.message = message;
}
/**
- * Set the data of this {@link GenericModuleResult} instance and return the same instance.
- *
- * @param data Additional data object from the module
- * @return The same instance of this {@link GenericModuleResult} class
- */
+ * Set the data of this {@link GenericModuleResult} instance and return the same instance.
+ *
+ * @param data Additional data object from the module
+ * @return The same instance of this {@link GenericModuleResult} class
+ */
@Nonnull public GenericModuleResult data(@Nonnull final Object data) {
this.data = data;
return this;
}
/**
- * Additional data object from the module
- * @return data The data of this {@link GenericModuleResult} instance.
- **/
+ * Additional data object from the module
+ * @return data The data of this {@link GenericModuleResult} instance.
+ */
@Nonnull public Object getData() {
return data;
}
/**
- * Set the data of this {@link GenericModuleResult} instance.
- *
- * @param data Additional data object from the module
- */
+ * Set the data of this {@link GenericModuleResult} instance.
+ *
+ * @param data Additional data object from the module
+ */
public void setData( @Nonnull final Object data) {
this.data = data;
}
@@ -187,5 +186,6 @@ private String toIndentedString(final java.lang.Object o) {
return o.toString().replace("\n", "\n ");
}
+
}
diff --git a/orchestration/src/main/java/com/sap/ai/sdk/orchestration/client/model/GroundingFilter.java b/orchestration/src/main/java/com/sap/ai/sdk/orchestration/client/model/GroundingFilter.java
index d44ec77d..75281af1 100644
--- a/orchestration/src/main/java/com/sap/ai/sdk/orchestration/client/model/GroundingFilter.java
+++ b/orchestration/src/main/java/com/sap/ai/sdk/orchestration/client/model/GroundingFilter.java
@@ -41,7 +41,6 @@
/**
* GroundingFilter
*/
-
// CHECKSTYLE:OFF
public class GroundingFilter
// CHECKSTYLE:ON
@@ -126,77 +125,77 @@ public enum DataRepositoryTypeEnum {
private final Map cloudSdkCustomFields = new LinkedHashMap<>();
/**
- * Set the id of this {@link GroundingFilter} instance and return the same instance.
- *
- * @param id The id of this {@link GroundingFilter}
- * @return The same instance of this {@link GroundingFilter} class
- */
+ * Set the id of this {@link GroundingFilter} instance and return the same instance.
+ *
+ * @param id The id of this {@link GroundingFilter}
+ * @return The same instance of this {@link GroundingFilter} class
+ */
@Nonnull public GroundingFilter id(@Nonnull final String id) {
this.id = id;
return this;
}
/**
- * Get id
- * @return id The id of this {@link GroundingFilter} instance.
- **/
+ * Get id
+ * @return id The id of this {@link GroundingFilter} instance.
+ */
@Nonnull public String getId() {
return id;
}
/**
- * Set the id of this {@link GroundingFilter} instance.
- *
- * @param id The id of this {@link GroundingFilter}
- */
+ * Set the id of this {@link GroundingFilter} instance.
+ *
+ * @param id The id of this {@link GroundingFilter}
+ */
public void setId( @Nonnull final String id) {
this.id = id;
}
/**
- * Set the searchConfiguration of this {@link GroundingFilter} instance and return the same instance.
- *
- * @param searchConfiguration The searchConfiguration of this {@link GroundingFilter}
- * @return The same instance of this {@link GroundingFilter} class
- */
+ * Set the searchConfiguration of this {@link GroundingFilter} instance and return the same instance.
+ *
+ * @param searchConfiguration The searchConfiguration of this {@link GroundingFilter}
+ * @return The same instance of this {@link GroundingFilter} class
+ */
@Nonnull public GroundingFilter searchConfiguration(@Nonnull final Object searchConfiguration) {
this.searchConfiguration = searchConfiguration;
return this;
}
/**
- * Get searchConfiguration
- * @return searchConfiguration The searchConfiguration of this {@link GroundingFilter} instance.
- **/
+ * Get searchConfiguration
+ * @return searchConfiguration The searchConfiguration of this {@link GroundingFilter} instance.
+ */
@Nonnull public Object getSearchConfiguration() {
return searchConfiguration;
}
/**
- * Set the searchConfiguration of this {@link GroundingFilter} instance.
- *
- * @param searchConfiguration The searchConfiguration of this {@link GroundingFilter}
- */
+ * Set the searchConfiguration of this {@link GroundingFilter} instance.
+ *
+ * @param searchConfiguration The searchConfiguration of this {@link GroundingFilter}
+ */
public void setSearchConfiguration( @Nonnull final Object searchConfiguration) {
this.searchConfiguration = searchConfiguration;
}
/**
- * Set the dataRepositories of this {@link GroundingFilter} instance and return the same instance.
- *
- * @param dataRepositories The dataRepositories of this {@link GroundingFilter}
- * @return The same instance of this {@link GroundingFilter} class
- */
+ * Set the dataRepositories of this {@link GroundingFilter} instance and return the same instance.
+ *
+ * @param dataRepositories The dataRepositories of this {@link GroundingFilter}
+ * @return The same instance of this {@link GroundingFilter} class
+ */
@Nonnull public GroundingFilter dataRepositories(@Nonnull final List dataRepositories) {
this.dataRepositories = dataRepositories;
return this;
}
/**
- * Add one dataRepositories instance to this {@link GroundingFilter}.
- * @param dataRepositoriesItem The dataRepositories that should be added
- * @return The same instance of type {@link GroundingFilter}
- */
- @Nonnull public GroundingFilter adddataRepositoriesItem( @Nonnull final String dataRepositoriesItem) {
+ * Add one dataRepositories instance to this {@link GroundingFilter}.
+ * @param dataRepositoriesItem The dataRepositories that should be added
+ * @return The same instance of type {@link GroundingFilter}
+ */
+ @Nonnull public GroundingFilter addDataRepositoriesItem( @Nonnull final String dataRepositoriesItem) {
if (this.dataRepositories == null) {
this.dataRepositories = new ArrayList<>();
}
@@ -205,66 +204,66 @@ public void setSearchConfiguration( @Nonnull final Object searchConfiguration) {
}
/**
- * Get dataRepositories
- * @return dataRepositories The dataRepositories of this {@link GroundingFilter} instance.
- **/
+ * Get dataRepositories
+ * @return dataRepositories The dataRepositories of this {@link GroundingFilter} instance.
+ */
@Nonnull public List getDataRepositories() {
return dataRepositories;
}
/**
- * Set the dataRepositories of this {@link GroundingFilter} instance.
- *
- * @param dataRepositories The dataRepositories of this {@link GroundingFilter}
- */
+ * Set the dataRepositories of this {@link GroundingFilter} instance.
+ *
+ * @param dataRepositories The dataRepositories of this {@link GroundingFilter}
+ */
public void setDataRepositories( @Nonnull final List dataRepositories) {
this.dataRepositories = dataRepositories;
}
/**
- * Set the dataRepositoryType of this {@link GroundingFilter} instance and return the same instance.
- *
- * @param dataRepositoryType The dataRepositoryType of this {@link GroundingFilter}
- * @return The same instance of this {@link GroundingFilter} class
- */
+ * Set the dataRepositoryType of this {@link GroundingFilter} instance and return the same instance.
+ *
+ * @param dataRepositoryType The dataRepositoryType of this {@link GroundingFilter}
+ * @return The same instance of this {@link GroundingFilter} class
+ */
@Nonnull public GroundingFilter dataRepositoryType(@Nonnull final DataRepositoryTypeEnum dataRepositoryType) {
this.dataRepositoryType = dataRepositoryType;
return this;
}
/**
- * Get dataRepositoryType
- * @return dataRepositoryType The dataRepositoryType of this {@link GroundingFilter} instance.
- **/
+ * Get dataRepositoryType
+ * @return dataRepositoryType The dataRepositoryType of this {@link GroundingFilter} instance.
+ */
@Nonnull public DataRepositoryTypeEnum getDataRepositoryType() {
return dataRepositoryType;
}
/**
- * Set the dataRepositoryType of this {@link GroundingFilter} instance.
- *
- * @param dataRepositoryType The dataRepositoryType of this {@link GroundingFilter}
- */
+ * Set the dataRepositoryType of this {@link GroundingFilter} instance.
+ *
+ * @param dataRepositoryType The dataRepositoryType of this {@link GroundingFilter}
+ */
public void setDataRepositoryType( @Nonnull final DataRepositoryTypeEnum dataRepositoryType) {
this.dataRepositoryType = dataRepositoryType;
}
/**
- * Set the dataRepositoryMetadata of this {@link GroundingFilter} instance and return the same instance.
- *
- * @param dataRepositoryMetadata The dataRepositoryMetadata of this {@link GroundingFilter}
- * @return The same instance of this {@link GroundingFilter} class
- */
+ * Set the dataRepositoryMetadata of this {@link GroundingFilter} instance and return the same instance.
+ *
+ * @param dataRepositoryMetadata The dataRepositoryMetadata of this {@link GroundingFilter}
+ * @return The same instance of this {@link GroundingFilter} class
+ */
@Nonnull public GroundingFilter dataRepositoryMetadata(@Nonnull final List