diff --git a/core/src/main/java/com/sap/ai/sdk/core/Core.java b/core/src/main/java/com/sap/ai/sdk/core/Core.java index 5d05230e2..0ccf5cc5a 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/Core.java +++ b/core/src/main/java/com/sap/ai/sdk/core/Core.java @@ -47,9 +47,8 @@ public class Core { */ @Nonnull public static ApiClient getOrchestrationClient(@Nonnull final String resourceGroup) { - return getClient( - getDestinationForDeployment(getOrchestrationDeployment(resourceGroup), resourceGroup)); - + return getClient( + getDestinationForDeployment(getOrchestrationDeployment(resourceGroup), resourceGroup)); } /** @@ -62,8 +61,7 @@ public static ApiClient getOrchestrationClient(@Nonnull final String resourceGro */ private static String getOrchestrationDeployment(@Nonnull final String resourceGroup) throws NoSuchElementException { - final var deployments = - new DeploymentApi(getClient(getDestination())).deploymentQuery(resourceGroup); + final var deployments = new DeploymentApi(getClient(getDestination())).deploymentQuery(resourceGroup); Objects.requireNonNull(deployments, "Deployment get request failed"); return deployments.getResources().stream() diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/ApplicationApi.java b/core/src/main/java/com/sap/ai/sdk/core/client/ApplicationApi.java index 787e0d7fb..69102a743 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/ApplicationApi.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/ApplicationApi.java @@ -7,16 +7,16 @@ import com.sap.cloud.sdk.services.openapi.core.AbstractOpenApiService; import com.sap.cloud.sdk.services.openapi.apiclient.ApiClient; -import com.sap.ai.sdk.core.client.model.BckndAllArgoCDApplicationData ; //NOPMD -import com.sap.ai.sdk.core.client.model.BckndArgoCDApplicationBaseData ; //NOPMD -import com.sap.ai.sdk.core.client.model.BckndArgoCDApplicationCreationResponse ; //NOPMD -import com.sap.ai.sdk.core.client.model.BckndArgoCDApplicationData ; //NOPMD -import com.sap.ai.sdk.core.client.model.BckndArgoCDApplicationDeletionResponse ; //NOPMD -import com.sap.ai.sdk.core.client.model.BckndArgoCDApplicationModificationResponse ; //NOPMD -import com.sap.ai.sdk.core.client.model.BckndArgoCDApplicationRefreshResponse ; //NOPMD -import com.sap.ai.sdk.core.client.model.BckndArgoCDApplicationStatus ; //NOPMD -import com.sap.ai.sdk.core.client.model.BckndErrorResponse ; //NOPMD -import com.sap.ai.sdk.core.client.model.KubesubmitV4ApplicationsCreateRequest ; //NOPMD +import com.sap.ai.sdk.core.client.model.BckndAllArgoCDApplicationData; +import com.sap.ai.sdk.core.client.model.BckndArgoCDApplicationBaseData; +import com.sap.ai.sdk.core.client.model.BckndArgoCDApplicationCreationResponse; +import com.sap.ai.sdk.core.client.model.BckndArgoCDApplicationData; +import com.sap.ai.sdk.core.client.model.BckndArgoCDApplicationDeletionResponse; +import com.sap.ai.sdk.core.client.model.BckndArgoCDApplicationModificationResponse; +import com.sap.ai.sdk.core.client.model.BckndArgoCDApplicationRefreshResponse; +import com.sap.ai.sdk.core.client.model.BckndArgoCDApplicationStatus; +import com.sap.ai.sdk.core.client.model.BckndErrorResponse; +import com.sap.ai.sdk.core.client.model.KubesubmitV4ApplicationsCreateRequest; import java.util.HashMap; import java.util.List; @@ -39,28 +39,27 @@ import com.sap.cloud.sdk.cloudplatform.connectivity.Destination; /** -* AI Core in version 2.33.0. -* -* Provides tools to manage your scenarios and workflows in SAP AI Core. Execute pipelines as a batch job, for example to pre-process or train your models, or perform batch inference. Serve inference requests of trained models. Deploy а trained machine learning model as a web service to serve inference requests with high performance. Register your own Docker registry, synchronize your AI content from your own git repository, and register your own object store for training data and trained models. -*/ - + * AI Core in version 2.33.0. + * + * Provides tools to manage your scenarios and workflows in SAP AI Core. Execute pipelines as a batch job, for example to pre-process or train your models, or perform batch inference. Serve inference requests of trained models. Deploy а trained machine learning model as a web service to serve inference requests with high performance. Register your own Docker registry, synchronize your AI content from your own git repository, and register your own object store for training data and trained models. + */ public class ApplicationApi extends AbstractOpenApiService { /** - * Instantiates this API class to invoke operations on the AI Core. - * - * @param httpDestination The destination that API should be used with - */ + * Instantiates this API class to invoke operations on the AI Core. + * + * @param httpDestination The destination that API should be used with + */ public ApplicationApi( @Nonnull final Destination httpDestination ) { super(httpDestination); } /** - * Instantiates this API class to invoke operations on the AI Core based on a given {@link ApiClient}. - * - * @param apiClient - * ApiClient to invoke the API on - */ + * Instantiates this API class to invoke operations on the AI Core based on a given {@link ApiClient}. + * + * @param apiClient + * ApiClient to invoke the API on + */ @Beta public ApplicationApi( @Nonnull final ApiClient apiClient ) { @@ -68,66 +67,6 @@ public ApplicationApi( @Nonnull final ApiClient apiClient ) } - /** - *

Return all applications

- *

Return all Argo CD application data objects.

- *

200 - All applications have been found and returned. - *

400 - The request was malformed and could thus not be processed. - *

0 - HTTP status codes 401, 403 or 500. Response body contains further details. - * @param authorization (optional) - Authorization bearer token containing a JWT token. - * @param $top (optional) - Number of results to display - * @param $skip (optional) - Number of results to be skipped from the ordered list of results - * @param $count (optional) - When the $count field is set to false, the response contains a count of the items present in the response. When the $count field is set to true, the response contains a count of all the items present on the server, and not just the ones in the response. When the $count field is not passed, it is false by default. - * @return BckndAllArgoCDApplicationData - * @throws OpenApiRequestException if an error occurs while attempting to invoke the API - */ - @Nullable public BckndAllArgoCDApplicationData all( @Nullable final String authorization, @Nullable final Integer $top, @Nullable final Integer $skip, @Nullable final Boolean $count) throws OpenApiRequestException { - final Object localVarPostBody = null; - - final String localVarPath = UriComponentsBuilder.fromPath("/admin/applications").build().toUriString(); - - final MultiValueMap localVarQueryParams = new LinkedMultiValueMap(); - final HttpHeaders localVarHeaderParams = new HttpHeaders(); - final MultiValueMap localVarFormParams = new LinkedMultiValueMap(); - - localVarQueryParams.putAll(apiClient.parameterToMultiValueMap(null, "$top", $top)); - localVarQueryParams.putAll(apiClient.parameterToMultiValueMap(null, "$skip", $skip)); - localVarQueryParams.putAll(apiClient.parameterToMultiValueMap(null, "$count", $count)); - - - if (authorization != null) - localVarHeaderParams.add("Authorization", apiClient.parameterToString(authorization)); - - final String[] localVarAccepts = { - "application/json" - }; - final List localVarAccept = apiClient.selectHeaderAccept(localVarAccepts); - final String[] localVarContentTypes = { }; - final MediaType localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes); - - final String[] localVarAuthNames = new String[] { "Oauth2" }; - - final ParameterizedTypeReference localVarReturnType = new ParameterizedTypeReference() {}; - return apiClient.invokeAPI(localVarPath, HttpMethod.GET, localVarQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAccept, localVarContentType, localVarAuthNames, localVarReturnType); - } - - /** - *

Return all applications

- *

Return all Argo CD application data objects.

- *

200 - All applications have been found and returned. - *

400 - The request was malformed and could thus not be processed. - *

0 - HTTP status codes 401, 403 or 500. Response body contains further details. -* @return BckndAllArgoCDApplicationData -* @throws OpenApiRequestException if an error occurs while attempting to invoke the API - */ - @Nullable public BckndAllArgoCDApplicationData all() throws OpenApiRequestException { - return all(null, null, null, null); - } - /** *

Create an application

*

Create an ArgoCD application to synchronise a repository.

@@ -141,7 +80,8 @@ public ApplicationApi( @Nonnull final ApiClient apiClient ) * @return BckndArgoCDApplicationCreationResponse * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public BckndArgoCDApplicationCreationResponse kubesubmitV4ApplicationsCreate( @Nonnull final KubesubmitV4ApplicationsCreateRequest kubesubmitV4ApplicationsCreateRequest, @Nullable final String authorization) throws OpenApiRequestException { + @Nonnull + public BckndArgoCDApplicationCreationResponse kubesubmitV4ApplicationsCreate( @Nonnull final KubesubmitV4ApplicationsCreateRequest kubesubmitV4ApplicationsCreateRequest, @Nullable final String authorization) throws OpenApiRequestException { final Object localVarPostBody = kubesubmitV4ApplicationsCreateRequest; // verify the required parameter 'kubesubmitV4ApplicationsCreateRequest' is set @@ -174,17 +114,18 @@ public ApplicationApi( @Nonnull final ApiClient apiClient ) } /** - *

Create an application

- *

Create an ArgoCD application to synchronise a repository.

+ *

Create an application

+ *

Create an ArgoCD application to synchronise a repository.

*

200 - The ArgoCD application has been created and will be eventually synchronised with the repository. *

400 - The request was malformed and could thus not be processed. *

0 - HTTP status codes 401, 403 or 500. Response body contains further details. -* @param kubesubmitV4ApplicationsCreateRequest - The value for the parameter kubesubmitV4ApplicationsCreateRequest -* @return BckndArgoCDApplicationCreationResponse -* @throws OpenApiRequestException if an error occurs while attempting to invoke the API + * @param kubesubmitV4ApplicationsCreateRequest + * The value for the parameter kubesubmitV4ApplicationsCreateRequest + * @return BckndArgoCDApplicationCreationResponse + * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public BckndArgoCDApplicationCreationResponse kubesubmitV4ApplicationsCreate( @Nonnull final KubesubmitV4ApplicationsCreateRequest kubesubmitV4ApplicationsCreateRequest) throws OpenApiRequestException { + @Nonnull + public BckndArgoCDApplicationCreationResponse kubesubmitV4ApplicationsCreate( @Nonnull final KubesubmitV4ApplicationsCreateRequest kubesubmitV4ApplicationsCreateRequest) throws OpenApiRequestException { return kubesubmitV4ApplicationsCreate(kubesubmitV4ApplicationsCreateRequest, null); } @@ -202,7 +143,8 @@ public ApplicationApi( @Nonnull final ApiClient apiClient ) * @return BckndArgoCDApplicationDeletionResponse * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public BckndArgoCDApplicationDeletionResponse kubesubmitV4ApplicationsDelete( @Nonnull final String applicationName, @Nullable final String authorization) throws OpenApiRequestException { + @Nonnull + public BckndArgoCDApplicationDeletionResponse kubesubmitV4ApplicationsDelete( @Nonnull final String applicationName, @Nullable final String authorization) throws OpenApiRequestException { final Object localVarPostBody = null; // verify the required parameter 'applicationName' is set @@ -236,18 +178,19 @@ public ApplicationApi( @Nonnull final ApiClient apiClient ) } /** - *

Delete application

- *

Delete an ArgoCD application

+ *

Delete application

+ *

Delete an ArgoCD application

*

200 - The argoCD application has been deleted successfully. *

404 - The specified resource was not found *

400 - The request was malformed and could thus not be processed. *

0 - HTTP status codes 401, 403 or 500. Response body contains further details. -* @param applicationName - Name of the ArgoCD application -* @return BckndArgoCDApplicationDeletionResponse -* @throws OpenApiRequestException if an error occurs while attempting to invoke the API + * @param applicationName + * Name of the ArgoCD application + * @return BckndArgoCDApplicationDeletionResponse + * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public BckndArgoCDApplicationDeletionResponse kubesubmitV4ApplicationsDelete( @Nonnull final String applicationName) throws OpenApiRequestException { + @Nonnull + public BckndArgoCDApplicationDeletionResponse kubesubmitV4ApplicationsDelete( @Nonnull final String applicationName) throws OpenApiRequestException { return kubesubmitV4ApplicationsDelete(applicationName, null); } @@ -265,7 +208,8 @@ public ApplicationApi( @Nonnull final ApiClient apiClient ) * @return BckndArgoCDApplicationData * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public BckndArgoCDApplicationData kubesubmitV4ApplicationsGet( @Nonnull final String applicationName, @Nullable final String authorization) throws OpenApiRequestException { + @Nonnull + public BckndArgoCDApplicationData kubesubmitV4ApplicationsGet( @Nonnull final String applicationName, @Nullable final String authorization) throws OpenApiRequestException { final Object localVarPostBody = null; // verify the required parameter 'applicationName' is set @@ -299,25 +243,88 @@ public ApplicationApi( @Nonnull final ApiClient apiClient ) } /** - *

Get ArgoCD application

- *

Retrieve the ArgoCD application details.

+ *

Get ArgoCD application

+ *

Retrieve the ArgoCD application details.

*

200 - The application has been found and returned. *

400 - The request was malformed and could thus not be processed. *

404 - The specified resource was not found *

0 - HTTP status codes 401, 403 or 500. Response body contains further details. -* @param applicationName - Name of the ArgoCD application -* @return BckndArgoCDApplicationData -* @throws OpenApiRequestException if an error occurs while attempting to invoke the API + * @param applicationName + * Name of the ArgoCD application + * @return BckndArgoCDApplicationData + * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public BckndArgoCDApplicationData kubesubmitV4ApplicationsGet( @Nonnull final String applicationName) throws OpenApiRequestException { + @Nonnull + public BckndArgoCDApplicationData kubesubmitV4ApplicationsGet( @Nonnull final String applicationName) throws OpenApiRequestException { return kubesubmitV4ApplicationsGet(applicationName, null); } /** - *

Makes ArgoDC refresh the specified application

- *

Schedules a refresh of the specified application that will be picked up by ArgoCD asynchronously

- *

202 - A refresh of the application has been scheduled + *

Return all applications

+ *

Return all Argo CD application data objects.

+ *

200 - All applications have been found and returned. + *

400 - The request was malformed and could thus not be processed. + *

0 - HTTP status codes 401, 403 or 500. Response body contains further details. + * @param authorization (optional) + Authorization bearer token containing a JWT token. + * @param $top (optional) + Number of results to display + * @param $skip (optional) + Number of results to be skipped from the ordered list of results + * @param $count (optional) + When the $count field is set to false, the response contains a count of the items present in the response. When the $count field is set to true, the response contains a count of all the items present on the server, and not just the ones in the response. When the $count field is not passed, it is false by default. + * @return BckndAllArgoCDApplicationData + * @throws OpenApiRequestException if an error occurs while attempting to invoke the API + */ + @Nonnull + public BckndAllArgoCDApplicationData kubesubmitV4ApplicationsGetAll( @Nullable final String authorization, @Nullable final Integer $top, @Nullable final Integer $skip, @Nullable final Boolean $count) throws OpenApiRequestException { + final Object localVarPostBody = null; + + final String localVarPath = UriComponentsBuilder.fromPath("/admin/applications").build().toUriString(); + + final MultiValueMap localVarQueryParams = new LinkedMultiValueMap(); + final HttpHeaders localVarHeaderParams = new HttpHeaders(); + final MultiValueMap localVarFormParams = new LinkedMultiValueMap(); + + localVarQueryParams.putAll(apiClient.parameterToMultiValueMap(null, "$top", $top)); + localVarQueryParams.putAll(apiClient.parameterToMultiValueMap(null, "$skip", $skip)); + localVarQueryParams.putAll(apiClient.parameterToMultiValueMap(null, "$count", $count)); + + + if (authorization != null) + localVarHeaderParams.add("Authorization", apiClient.parameterToString(authorization)); + + final String[] localVarAccepts = { + "application/json" + }; + final List localVarAccept = apiClient.selectHeaderAccept(localVarAccepts); + final String[] localVarContentTypes = { }; + final MediaType localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes); + + final String[] localVarAuthNames = new String[] { "Oauth2" }; + + final ParameterizedTypeReference localVarReturnType = new ParameterizedTypeReference() {}; + return apiClient.invokeAPI(localVarPath, HttpMethod.GET, localVarQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAccept, localVarContentType, localVarAuthNames, localVarReturnType); + } + + /** + *

Return all applications

+ *

Return all Argo CD application data objects.

+ *

200 - All applications have been found and returned. + *

400 - The request was malformed and could thus not be processed. + *

0 - HTTP status codes 401, 403 or 500. Response body contains further details. + * @return BckndAllArgoCDApplicationData + * @throws OpenApiRequestException if an error occurs while attempting to invoke the API + */ + @Nonnull + public BckndAllArgoCDApplicationData kubesubmitV4ApplicationsGetAll() throws OpenApiRequestException { + return kubesubmitV4ApplicationsGetAll(null, null, null, null); + } + + /** + *

Returns the ArgoCD application status

+ *

Returns the ArgoCD application health and sync status.

+ *

200 - The application status has been found and returned. *

400 - The request was malformed and could thus not be processed. *

404 - The specified resource was not found *

0 - HTTP status codes 401, 403 or 500. Response body contains further details. @@ -325,21 +332,22 @@ public ApplicationApi( @Nonnull final ApiClient apiClient ) Name of the ArgoCD application * @param authorization (optional) Authorization bearer token containing a JWT token. - * @return BckndArgoCDApplicationRefreshResponse + * @return BckndArgoCDApplicationStatus * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public BckndArgoCDApplicationRefreshResponse kubesubmitV4ApplicationsRefresh( @Nonnull final String applicationName, @Nullable final String authorization) throws OpenApiRequestException { + @Nonnull + public BckndArgoCDApplicationStatus kubesubmitV4ApplicationsGetStatus( @Nonnull final String applicationName, @Nullable final String authorization) throws OpenApiRequestException { final Object localVarPostBody = null; // verify the required parameter 'applicationName' is set if (applicationName == null) { - throw new OpenApiRequestException("Missing the required parameter 'applicationName' when calling kubesubmitV4ApplicationsRefresh"); + throw new OpenApiRequestException("Missing the required parameter 'applicationName' when calling kubesubmitV4ApplicationsGetStatus"); } // create path and map variables final Map localVarPathParams = new HashMap(); localVarPathParams.put("applicationName", applicationName); - final String localVarPath = UriComponentsBuilder.fromPath("/admin/applications/{applicationName}/refresh").buildAndExpand(localVarPathParams).toUriString(); + final String localVarPath = UriComponentsBuilder.fromPath("/admin/applications/{applicationName}/status").buildAndExpand(localVarPathParams).toUriString(); final MultiValueMap localVarQueryParams = new LinkedMultiValueMap(); final HttpHeaders localVarHeaderParams = new HttpHeaders(); @@ -357,59 +365,54 @@ public ApplicationApi( @Nonnull final ApiClient apiClient ) final String[] localVarAuthNames = new String[] { "Oauth2" }; - final ParameterizedTypeReference localVarReturnType = new ParameterizedTypeReference() {}; - return apiClient.invokeAPI(localVarPath, HttpMethod.POST, localVarQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAccept, localVarContentType, localVarAuthNames, localVarReturnType); + final ParameterizedTypeReference localVarReturnType = new ParameterizedTypeReference() {}; + return apiClient.invokeAPI(localVarPath, HttpMethod.GET, localVarQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAccept, localVarContentType, localVarAuthNames, localVarReturnType); } /** - *

Makes ArgoDC refresh the specified application

- *

Schedules a refresh of the specified application that will be picked up by ArgoCD asynchronously

- *

202 - A refresh of the application has been scheduled + *

Returns the ArgoCD application status

+ *

Returns the ArgoCD application health and sync status.

+ *

200 - The application status has been found and returned. *

400 - The request was malformed and could thus not be processed. *

404 - The specified resource was not found *

0 - HTTP status codes 401, 403 or 500. Response body contains further details. -* @param applicationName - Name of the ArgoCD application -* @return BckndArgoCDApplicationRefreshResponse -* @throws OpenApiRequestException if an error occurs while attempting to invoke the API + * @param applicationName + * Name of the ArgoCD application + * @return BckndArgoCDApplicationStatus + * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public BckndArgoCDApplicationRefreshResponse kubesubmitV4ApplicationsRefresh( @Nonnull final String applicationName) throws OpenApiRequestException { - return kubesubmitV4ApplicationsRefresh(applicationName, null); + @Nonnull + public BckndArgoCDApplicationStatus kubesubmitV4ApplicationsGetStatus( @Nonnull final String applicationName) throws OpenApiRequestException { + return kubesubmitV4ApplicationsGetStatus(applicationName, null); } /** - *

Update the ArgoCD application.

- *

Update the referenced ArgoCD application to synchronize the repository.

- *

200 - The ArgoCD application has been created and will be eventually synchronised with the repository. - *

404 - The specified resource was not found + *

Makes ArgoDC refresh the specified application

+ *

Schedules a refresh of the specified application that will be picked up by ArgoCD asynchronously

+ *

202 - A refresh of the application has been scheduled *

400 - The request was malformed and could thus not be processed. + *

404 - The specified resource was not found *

0 - HTTP status codes 401, 403 or 500. Response body contains further details. * @param applicationName (required) Name of the ArgoCD application - * @param bckndArgoCDApplicationBaseData (required) - The value for the parameter bckndArgoCDApplicationBaseData * @param authorization (optional) Authorization bearer token containing a JWT token. - * @return BckndArgoCDApplicationModificationResponse + * @return BckndArgoCDApplicationRefreshResponse * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public BckndArgoCDApplicationModificationResponse kubesubmitV4ApplicationsUpdate( @Nonnull final String applicationName, @Nonnull final BckndArgoCDApplicationBaseData bckndArgoCDApplicationBaseData, @Nullable final String authorization) throws OpenApiRequestException { - final Object localVarPostBody = bckndArgoCDApplicationBaseData; + @Nonnull + public BckndArgoCDApplicationRefreshResponse kubesubmitV4ApplicationsRefresh( @Nonnull final String applicationName, @Nullable final String authorization) throws OpenApiRequestException { + final Object localVarPostBody = null; // verify the required parameter 'applicationName' is set if (applicationName == null) { - throw new OpenApiRequestException("Missing the required parameter 'applicationName' when calling kubesubmitV4ApplicationsUpdate"); - } - - // verify the required parameter 'bckndArgoCDApplicationBaseData' is set - if (bckndArgoCDApplicationBaseData == null) { - throw new OpenApiRequestException("Missing the required parameter 'bckndArgoCDApplicationBaseData' when calling kubesubmitV4ApplicationsUpdate"); + throw new OpenApiRequestException("Missing the required parameter 'applicationName' when calling kubesubmitV4ApplicationsRefresh"); } // create path and map variables final Map localVarPathParams = new HashMap(); localVarPathParams.put("applicationName", applicationName); - final String localVarPath = UriComponentsBuilder.fromPath("/admin/applications/{applicationName}").buildAndExpand(localVarPathParams).toUriString(); + final String localVarPath = UriComponentsBuilder.fromPath("/admin/applications/{applicationName}/refresh").buildAndExpand(localVarPathParams).toUriString(); final MultiValueMap localVarQueryParams = new LinkedMultiValueMap(); final HttpHeaders localVarHeaderParams = new HttpHeaders(); @@ -422,61 +425,66 @@ public ApplicationApi( @Nonnull final ApiClient apiClient ) "application/json" }; final List localVarAccept = apiClient.selectHeaderAccept(localVarAccepts); - final String[] localVarContentTypes = { - "application/json" - }; + final String[] localVarContentTypes = { }; final MediaType localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes); final String[] localVarAuthNames = new String[] { "Oauth2" }; - final ParameterizedTypeReference localVarReturnType = new ParameterizedTypeReference() {}; - return apiClient.invokeAPI(localVarPath, HttpMethod.PATCH, localVarQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAccept, localVarContentType, localVarAuthNames, localVarReturnType); + final ParameterizedTypeReference localVarReturnType = new ParameterizedTypeReference() {}; + return apiClient.invokeAPI(localVarPath, HttpMethod.POST, localVarQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAccept, localVarContentType, localVarAuthNames, localVarReturnType); } /** - *

Update the ArgoCD application.

- *

Update the referenced ArgoCD application to synchronize the repository.

- *

200 - The ArgoCD application has been created and will be eventually synchronised with the repository. - *

404 - The specified resource was not found + *

Makes ArgoDC refresh the specified application

+ *

Schedules a refresh of the specified application that will be picked up by ArgoCD asynchronously

+ *

202 - A refresh of the application has been scheduled *

400 - The request was malformed and could thus not be processed. + *

404 - The specified resource was not found *

0 - HTTP status codes 401, 403 or 500. Response body contains further details. -* @param applicationName - Name of the ArgoCD application -* @param bckndArgoCDApplicationBaseData - The value for the parameter bckndArgoCDApplicationBaseData -* @return BckndArgoCDApplicationModificationResponse -* @throws OpenApiRequestException if an error occurs while attempting to invoke the API + * @param applicationName + * Name of the ArgoCD application + * @return BckndArgoCDApplicationRefreshResponse + * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public BckndArgoCDApplicationModificationResponse kubesubmitV4ApplicationsUpdate( @Nonnull final String applicationName, @Nonnull final BckndArgoCDApplicationBaseData bckndArgoCDApplicationBaseData) throws OpenApiRequestException { - return kubesubmitV4ApplicationsUpdate(applicationName, bckndArgoCDApplicationBaseData, null); + @Nonnull + public BckndArgoCDApplicationRefreshResponse kubesubmitV4ApplicationsRefresh( @Nonnull final String applicationName) throws OpenApiRequestException { + return kubesubmitV4ApplicationsRefresh(applicationName, null); } /** - *

Returns the ArgoCD application status

- *

Returns the ArgoCD application health and sync status.

- *

200 - The application status has been found and returned. - *

400 - The request was malformed and could thus not be processed. + *

Update the ArgoCD application.

+ *

Update the referenced ArgoCD application to synchronize the repository.

+ *

200 - The ArgoCD application has been created and will be eventually synchronised with the repository. *

404 - The specified resource was not found + *

400 - The request was malformed and could thus not be processed. *

0 - HTTP status codes 401, 403 or 500. Response body contains further details. * @param applicationName (required) Name of the ArgoCD application + * @param bckndArgoCDApplicationBaseData (required) + The value for the parameter bckndArgoCDApplicationBaseData * @param authorization (optional) Authorization bearer token containing a JWT token. - * @return BckndArgoCDApplicationStatus + * @return BckndArgoCDApplicationModificationResponse * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public BckndArgoCDApplicationStatus status( @Nonnull final String applicationName, @Nullable final String authorization) throws OpenApiRequestException { - final Object localVarPostBody = null; + @Nonnull + public BckndArgoCDApplicationModificationResponse kubesubmitV4ApplicationsUpdate( @Nonnull final String applicationName, @Nonnull final BckndArgoCDApplicationBaseData bckndArgoCDApplicationBaseData, @Nullable final String authorization) throws OpenApiRequestException { + final Object localVarPostBody = bckndArgoCDApplicationBaseData; // verify the required parameter 'applicationName' is set if (applicationName == null) { - throw new OpenApiRequestException("Missing the required parameter 'applicationName' when calling status"); + throw new OpenApiRequestException("Missing the required parameter 'applicationName' when calling kubesubmitV4ApplicationsUpdate"); + } + + // verify the required parameter 'bckndArgoCDApplicationBaseData' is set + if (bckndArgoCDApplicationBaseData == null) { + throw new OpenApiRequestException("Missing the required parameter 'bckndArgoCDApplicationBaseData' when calling kubesubmitV4ApplicationsUpdate"); } // create path and map variables final Map localVarPathParams = new HashMap(); localVarPathParams.put("applicationName", applicationName); - final String localVarPath = UriComponentsBuilder.fromPath("/admin/applications/{applicationName}/status").buildAndExpand(localVarPathParams).toUriString(); + final String localVarPath = UriComponentsBuilder.fromPath("/admin/applications/{applicationName}").buildAndExpand(localVarPathParams).toUriString(); final MultiValueMap localVarQueryParams = new LinkedMultiValueMap(); final HttpHeaders localVarHeaderParams = new HttpHeaders(); @@ -489,28 +497,33 @@ public ApplicationApi( @Nonnull final ApiClient apiClient ) "application/json" }; final List localVarAccept = apiClient.selectHeaderAccept(localVarAccepts); - final String[] localVarContentTypes = { }; + final String[] localVarContentTypes = { + "application/json" + }; final MediaType localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes); final String[] localVarAuthNames = new String[] { "Oauth2" }; - final ParameterizedTypeReference localVarReturnType = new ParameterizedTypeReference() {}; - return apiClient.invokeAPI(localVarPath, HttpMethod.GET, localVarQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAccept, localVarContentType, localVarAuthNames, localVarReturnType); + final ParameterizedTypeReference localVarReturnType = new ParameterizedTypeReference() {}; + return apiClient.invokeAPI(localVarPath, HttpMethod.PATCH, localVarQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAccept, localVarContentType, localVarAuthNames, localVarReturnType); } /** - *

Returns the ArgoCD application status

- *

Returns the ArgoCD application health and sync status.

- *

200 - The application status has been found and returned. - *

400 - The request was malformed and could thus not be processed. + *

Update the ArgoCD application.

+ *

Update the referenced ArgoCD application to synchronize the repository.

+ *

200 - The ArgoCD application has been created and will be eventually synchronised with the repository. *

404 - The specified resource was not found + *

400 - The request was malformed and could thus not be processed. *

0 - HTTP status codes 401, 403 or 500. Response body contains further details. -* @param applicationName - Name of the ArgoCD application -* @return BckndArgoCDApplicationStatus -* @throws OpenApiRequestException if an error occurs while attempting to invoke the API + * @param applicationName + * Name of the ArgoCD application + * @param bckndArgoCDApplicationBaseData + * The value for the parameter bckndArgoCDApplicationBaseData + * @return BckndArgoCDApplicationModificationResponse + * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public BckndArgoCDApplicationStatus status( @Nonnull final String applicationName) throws OpenApiRequestException { - return status(applicationName, null); + @Nonnull + public BckndArgoCDApplicationModificationResponse kubesubmitV4ApplicationsUpdate( @Nonnull final String applicationName, @Nonnull final BckndArgoCDApplicationBaseData bckndArgoCDApplicationBaseData) throws OpenApiRequestException { + return kubesubmitV4ApplicationsUpdate(applicationName, bckndArgoCDApplicationBaseData, null); } } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/ArtifactApi.java b/core/src/main/java/com/sap/ai/sdk/core/client/ArtifactApi.java index cbdd55f96..6082bdc7c 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/ArtifactApi.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/ArtifactApi.java @@ -7,11 +7,11 @@ import com.sap.cloud.sdk.services.openapi.core.AbstractOpenApiService; import com.sap.cloud.sdk.services.openapi.apiclient.ApiClient; -import com.sap.ai.sdk.core.client.model.AiArtifact ; //NOPMD -import com.sap.ai.sdk.core.client.model.AiArtifactCreationResponse ; //NOPMD -import com.sap.ai.sdk.core.client.model.AiArtifactList ; //NOPMD -import com.sap.ai.sdk.core.client.model.AiArtifactPostData ; //NOPMD -import com.sap.ai.sdk.core.client.model.ArtifactQuery400Response ; //NOPMD +import com.sap.ai.sdk.core.client.model.AiArtifact; +import com.sap.ai.sdk.core.client.model.AiArtifactCreationResponse; +import com.sap.ai.sdk.core.client.model.AiArtifactList; +import com.sap.ai.sdk.core.client.model.AiArtifactPostData; +import com.sap.ai.sdk.core.client.model.ArtifactQuery400Response; import java.util.HashMap; import java.util.List; @@ -34,28 +34,27 @@ import com.sap.cloud.sdk.cloudplatform.connectivity.Destination; /** -* AI Core in version 2.33.0. -* -* Provides tools to manage your scenarios and workflows in SAP AI Core. Execute pipelines as a batch job, for example to pre-process or train your models, or perform batch inference. Serve inference requests of trained models. Deploy а trained machine learning model as a web service to serve inference requests with high performance. Register your own Docker registry, synchronize your AI content from your own git repository, and register your own object store for training data and trained models. -*/ - + * AI Core in version 2.33.0. + * + * Provides tools to manage your scenarios and workflows in SAP AI Core. Execute pipelines as a batch job, for example to pre-process or train your models, or perform batch inference. Serve inference requests of trained models. Deploy а trained machine learning model as a web service to serve inference requests with high performance. Register your own Docker registry, synchronize your AI content from your own git repository, and register your own object store for training data and trained models. + */ public class ArtifactApi extends AbstractOpenApiService { /** - * Instantiates this API class to invoke operations on the AI Core. - * - * @param httpDestination The destination that API should be used with - */ + * Instantiates this API class to invoke operations on the AI Core. + * + * @param httpDestination The destination that API should be used with + */ public ArtifactApi( @Nonnull final Destination httpDestination ) { super(httpDestination); } /** - * Instantiates this API class to invoke operations on the AI Core based on a given {@link ApiClient}. - * - * @param apiClient - * ApiClient to invoke the API on - */ + * Instantiates this API class to invoke operations on the AI Core based on a given {@link ApiClient}. + * + * @param apiClient + * ApiClient to invoke the API on + */ @Beta public ArtifactApi( @Nonnull final ApiClient apiClient ) { @@ -87,7 +86,8 @@ public ArtifactApi( @Nonnull final ApiClient apiClient ) * @return Integer * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public Integer artifactCount( @Nonnull final String aiResourceGroup, @Nullable final String scenarioId, @Nullable final String executionId, @Nullable final String name, @Nullable final String kind, @Nullable final String $search, @Nullable final Boolean searchCaseInsensitive, @Nullable final List artifactLabelSelector) throws OpenApiRequestException { + @Nonnull + public Integer artifactCount( @Nonnull final String aiResourceGroup, @Nullable final String scenarioId, @Nullable final String executionId, @Nullable final String name, @Nullable final String kind, @Nullable final String $search, @Nullable final Boolean searchCaseInsensitive, @Nullable final List artifactLabelSelector) throws OpenApiRequestException { final Object localVarPostBody = null; // verify the required parameter 'aiResourceGroup' is set @@ -127,31 +127,33 @@ public ArtifactApi( @Nonnull final ApiClient apiClient ) } /** - *

Get number of artifacts

- *

Retrieve the number of available artifacts that match the specified filter criteria. Filter criteria include a scenarioId, executionId, an artifact name, artifact kind, or artifact labels. Search by substring of artifact name or description is also possible.

+ *

Get number of artifacts

+ *

Retrieve the number of available artifacts that match the specified filter criteria. Filter criteria include a scenarioId, executionId, an artifact name, artifact kind, or artifact labels. Search by substring of artifact name or description is also possible.

*

200 - Number of artifacts *

400 - The specification of the resource was incorrect -* @param aiResourceGroup - Specify a resource group id -* @return Integer -* @throws OpenApiRequestException if an error occurs while attempting to invoke the API + * @param aiResourceGroup + * Specify a resource group id + * @return Integer + * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public Integer artifactCount( @Nonnull final String aiResourceGroup) throws OpenApiRequestException { + @Nonnull + public Integer artifactCount( @Nonnull final String aiResourceGroup) throws OpenApiRequestException { return artifactCount(aiResourceGroup, null, null, null, null, null, null, null); } /** - *

Register artifact

- *

Register an artifact for use in a configuration, for example a model or a dataset.

+ *

Register artifact

+ *

Register an artifact for use in a configuration, for example a model or a dataset.

*

201 - The artifact has been registered successfully *

400 - The specification of the resource was incorrect -* @param aiResourceGroup - Specify a resource group id -* @param aiArtifactPostData - The value for the parameter aiArtifactPostData -* @return AiArtifactCreationResponse -* @throws OpenApiRequestException if an error occurs while attempting to invoke the API + * @param aiResourceGroup + * Specify a resource group id + * @param aiArtifactPostData + * The value for the parameter aiArtifactPostData + * @return AiArtifactCreationResponse + * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public AiArtifactCreationResponse artifactCreate( @Nonnull final String aiResourceGroup, @Nonnull final AiArtifactPostData aiArtifactPostData) throws OpenApiRequestException { + @Nonnull + public AiArtifactCreationResponse artifactCreate( @Nonnull final String aiResourceGroup, @Nonnull final AiArtifactPostData aiArtifactPostData) throws OpenApiRequestException { final Object localVarPostBody = aiArtifactPostData; // verify the required parameter 'aiResourceGroup' is set @@ -203,7 +205,8 @@ public ArtifactApi( @Nonnull final ApiClient apiClient ) * @return AiArtifact * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public AiArtifact artifactGet( @Nonnull final String aiResourceGroup, @Nonnull final String artifactId, @Nullable final String $expand) throws OpenApiRequestException { + @Nonnull + public AiArtifact artifactGet( @Nonnull final String aiResourceGroup, @Nonnull final String artifactId, @Nullable final String $expand) throws OpenApiRequestException { final Object localVarPostBody = null; // verify the required parameter 'aiResourceGroup' is set @@ -245,19 +248,20 @@ public ArtifactApi( @Nonnull final ApiClient apiClient ) } /** - *

Get artifact by ID

- *

Retrieve details for artifact with artifactId.

+ *

Get artifact by ID

+ *

Retrieve details for artifact with artifactId.

*

200 - An artifact *

400 - The specification of the resource was incorrect *

404 - The specified resource was not found -* @param aiResourceGroup - Specify a resource group id -* @param artifactId - Artifact identifier -* @return AiArtifact -* @throws OpenApiRequestException if an error occurs while attempting to invoke the API + * @param aiResourceGroup + * Specify a resource group id + * @param artifactId + * Artifact identifier + * @return AiArtifact + * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public AiArtifact artifactGet( @Nonnull final String aiResourceGroup, @Nonnull final String artifactId) throws OpenApiRequestException { + @Nonnull + public AiArtifact artifactGet( @Nonnull final String aiResourceGroup, @Nonnull final String artifactId) throws OpenApiRequestException { return artifactGet(aiResourceGroup, artifactId, null); } @@ -291,7 +295,8 @@ public ArtifactApi( @Nonnull final ApiClient apiClient ) * @return AiArtifactList * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public AiArtifactList artifactQuery( @Nonnull final String aiResourceGroup, @Nullable final String scenarioId, @Nullable final String executionId, @Nullable final String name, @Nullable final String kind, @Nullable final List artifactLabelSelector, @Nullable final Integer $top, @Nullable final Integer $skip, @Nullable final String $search, @Nullable final Boolean searchCaseInsensitive, @Nullable final String $expand) throws OpenApiRequestException { + @Nonnull + public AiArtifactList artifactQuery( @Nonnull final String aiResourceGroup, @Nullable final String scenarioId, @Nullable final String executionId, @Nullable final String name, @Nullable final String kind, @Nullable final List artifactLabelSelector, @Nullable final Integer $top, @Nullable final Integer $skip, @Nullable final String $search, @Nullable final Boolean searchCaseInsensitive, @Nullable final String $expand) throws OpenApiRequestException { final Object localVarPostBody = null; // verify the required parameter 'aiResourceGroup' is set @@ -334,16 +339,17 @@ public ArtifactApi( @Nonnull final ApiClient apiClient ) } /** - *

Get list of artifacts

- *

Retrieve a list of artifacts that matches the specified filter criteria. Filter criteria include scenario ID, execution ID, an artifact name, artifact kind, or artifact labels. Use top/skip parameters to paginate the result list. Search by substring of artifact name or description, if required.

+ *

Get list of artifacts

+ *

Retrieve a list of artifacts that matches the specified filter criteria. Filter criteria include scenario ID, execution ID, an artifact name, artifact kind, or artifact labels. Use top/skip parameters to paginate the result list. Search by substring of artifact name or description, if required.

*

200 - A list of artifacts *

400 - The specification of the resource was incorrect -* @param aiResourceGroup - Specify a resource group id -* @return AiArtifactList -* @throws OpenApiRequestException if an error occurs while attempting to invoke the API + * @param aiResourceGroup + * Specify a resource group id + * @return AiArtifactList + * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public AiArtifactList artifactQuery( @Nonnull final String aiResourceGroup) throws OpenApiRequestException { + @Nonnull + public AiArtifactList artifactQuery( @Nonnull final String aiResourceGroup) throws OpenApiRequestException { return artifactQuery(aiResourceGroup, null, null, null, null, null, null, null, null, null, null); } } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/ConfigurationApi.java b/core/src/main/java/com/sap/ai/sdk/core/client/ConfigurationApi.java index 3ab3ca9c0..3a5ba88fa 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/ConfigurationApi.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/ConfigurationApi.java @@ -7,11 +7,11 @@ import com.sap.cloud.sdk.services.openapi.core.AbstractOpenApiService; import com.sap.cloud.sdk.services.openapi.apiclient.ApiClient; -import com.sap.ai.sdk.core.client.model.AiConfiguration ; //NOPMD -import com.sap.ai.sdk.core.client.model.AiConfigurationBaseData ; //NOPMD -import com.sap.ai.sdk.core.client.model.AiConfigurationCreationResponse ; //NOPMD -import com.sap.ai.sdk.core.client.model.AiConfigurationList ; //NOPMD -import com.sap.ai.sdk.core.client.model.ArtifactQuery400Response ; //NOPMD +import com.sap.ai.sdk.core.client.model.AiConfiguration; +import com.sap.ai.sdk.core.client.model.AiConfigurationBaseData; +import com.sap.ai.sdk.core.client.model.AiConfigurationCreationResponse; +import com.sap.ai.sdk.core.client.model.AiConfigurationList; +import com.sap.ai.sdk.core.client.model.ArtifactQuery400Response; import java.util.HashMap; import java.util.List; @@ -34,28 +34,27 @@ import com.sap.cloud.sdk.cloudplatform.connectivity.Destination; /** -* AI Core in version 2.33.0. -* -* Provides tools to manage your scenarios and workflows in SAP AI Core. Execute pipelines as a batch job, for example to pre-process or train your models, or perform batch inference. Serve inference requests of trained models. Deploy а trained machine learning model as a web service to serve inference requests with high performance. Register your own Docker registry, synchronize your AI content from your own git repository, and register your own object store for training data and trained models. -*/ - + * AI Core in version 2.33.0. + * + * Provides tools to manage your scenarios and workflows in SAP AI Core. Execute pipelines as a batch job, for example to pre-process or train your models, or perform batch inference. Serve inference requests of trained models. Deploy а trained machine learning model as a web service to serve inference requests with high performance. Register your own Docker registry, synchronize your AI content from your own git repository, and register your own object store for training data and trained models. + */ public class ConfigurationApi extends AbstractOpenApiService { /** - * Instantiates this API class to invoke operations on the AI Core. - * - * @param httpDestination The destination that API should be used with - */ + * Instantiates this API class to invoke operations on the AI Core. + * + * @param httpDestination The destination that API should be used with + */ public ConfigurationApi( @Nonnull final Destination httpDestination ) { super(httpDestination); } /** - * Instantiates this API class to invoke operations on the AI Core based on a given {@link ApiClient}. - * - * @param apiClient - * ApiClient to invoke the API on - */ + * Instantiates this API class to invoke operations on the AI Core based on a given {@link ApiClient}. + * + * @param apiClient + * ApiClient to invoke the API on + */ @Beta public ConfigurationApi( @Nonnull final ApiClient apiClient ) { @@ -81,7 +80,8 @@ public ConfigurationApi( @Nonnull final ApiClient apiClient ) * @return Integer * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public Integer configurationCount( @Nonnull final String aiResourceGroup, @Nullable final String scenarioId, @Nullable final String $search, @Nullable final Boolean searchCaseInsensitive, @Nullable final List executableIds) throws OpenApiRequestException { + @Nonnull + public Integer configurationCount( @Nonnull final String aiResourceGroup, @Nullable final String scenarioId, @Nullable final String $search, @Nullable final Boolean searchCaseInsensitive, @Nullable final List executableIds) throws OpenApiRequestException { final Object localVarPostBody = null; // verify the required parameter 'aiResourceGroup' is set @@ -118,31 +118,33 @@ public ConfigurationApi( @Nonnull final ApiClient apiClient ) } /** - *

Get number of configurations

- *

Retrieve the number of available configurations that match the specified filter criteria. Filter criteria include a scenarioId or executableIdsList. Search by substring of configuration name is also possible.

+ *

Get number of configurations

+ *

Retrieve the number of available configurations that match the specified filter criteria. Filter criteria include a scenarioId or executableIdsList. Search by substring of configuration name is also possible.

*

200 - Number of configurations *

400 - The specification of the resource was incorrect -* @param aiResourceGroup - Specify a resource group id -* @return Integer -* @throws OpenApiRequestException if an error occurs while attempting to invoke the API + * @param aiResourceGroup + * Specify a resource group id + * @return Integer + * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public Integer configurationCount( @Nonnull final String aiResourceGroup) throws OpenApiRequestException { + @Nonnull + public Integer configurationCount( @Nonnull final String aiResourceGroup) throws OpenApiRequestException { return configurationCount(aiResourceGroup, null, null, null, null); } /** - *

Create configuration

- *

Create a new configuration linked to a specific scenario and executable for use in an execution or deployment.

+ *

Create configuration

+ *

Create a new configuration linked to a specific scenario and executable for use in an execution or deployment.

*

201 - The created configuration *

400 - The specification of the resource was incorrect -* @param aiResourceGroup - Specify a resource group id -* @param aiConfigurationBaseData - The value for the parameter aiConfigurationBaseData -* @return AiConfigurationCreationResponse -* @throws OpenApiRequestException if an error occurs while attempting to invoke the API + * @param aiResourceGroup + * Specify a resource group id + * @param aiConfigurationBaseData + * The value for the parameter aiConfigurationBaseData + * @return AiConfigurationCreationResponse + * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public AiConfigurationCreationResponse configurationCreate( @Nonnull final String aiResourceGroup, @Nonnull final AiConfigurationBaseData aiConfigurationBaseData) throws OpenApiRequestException { + @Nonnull + public AiConfigurationCreationResponse configurationCreate( @Nonnull final String aiResourceGroup, @Nonnull final AiConfigurationBaseData aiConfigurationBaseData) throws OpenApiRequestException { final Object localVarPostBody = aiConfigurationBaseData; // verify the required parameter 'aiResourceGroup' is set @@ -194,7 +196,8 @@ public ConfigurationApi( @Nonnull final ApiClient apiClient ) * @return AiConfiguration * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public AiConfiguration configurationGet( @Nonnull final String aiResourceGroup, @Nonnull final String configurationId, @Nullable final String $expand) throws OpenApiRequestException { + @Nonnull + public AiConfiguration configurationGet( @Nonnull final String aiResourceGroup, @Nonnull final String configurationId, @Nullable final String $expand) throws OpenApiRequestException { final Object localVarPostBody = null; // verify the required parameter 'aiResourceGroup' is set @@ -236,19 +239,20 @@ public ConfigurationApi( @Nonnull final ApiClient apiClient ) } /** - *

Get configuration by ID

- *

Retrieve details for configuration with configurationId.

+ *

Get configuration by ID

+ *

Retrieve details for configuration with configurationId.

*

200 - A configuration *

400 - The specification of the resource was incorrect *

404 - The specified resource was not found -* @param aiResourceGroup - Specify a resource group id -* @param configurationId - Configuration identifier -* @return AiConfiguration -* @throws OpenApiRequestException if an error occurs while attempting to invoke the API + * @param aiResourceGroup + * Specify a resource group id + * @param configurationId + * Configuration identifier + * @return AiConfiguration + * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public AiConfiguration configurationGet( @Nonnull final String aiResourceGroup, @Nonnull final String configurationId) throws OpenApiRequestException { + @Nonnull + public AiConfiguration configurationGet( @Nonnull final String aiResourceGroup, @Nonnull final String configurationId) throws OpenApiRequestException { return configurationGet(aiResourceGroup, configurationId, null); } @@ -276,7 +280,8 @@ public ConfigurationApi( @Nonnull final ApiClient apiClient ) * @return AiConfigurationList * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public AiConfigurationList configurationQuery( @Nonnull final String aiResourceGroup, @Nullable final String scenarioId, @Nullable final Integer $top, @Nullable final Integer $skip, @Nullable final List executableIds, @Nullable final String $search, @Nullable final Boolean searchCaseInsensitive, @Nullable final String $expand) throws OpenApiRequestException { + @Nonnull + public AiConfigurationList configurationQuery( @Nonnull final String aiResourceGroup, @Nullable final String scenarioId, @Nullable final Integer $top, @Nullable final Integer $skip, @Nullable final List executableIds, @Nullable final String $search, @Nullable final Boolean searchCaseInsensitive, @Nullable final String $expand) throws OpenApiRequestException { final Object localVarPostBody = null; // verify the required parameter 'aiResourceGroup' is set @@ -316,16 +321,17 @@ public ConfigurationApi( @Nonnull final ApiClient apiClient ) } /** - *

Get list of configurations

- *

Retrieve a list of configurations. Filter results by scenario ID or a list of executable IDs. Search for configurations containing the search string as substring in the configuration name.

+ *

Get list of configurations

+ *

Retrieve a list of configurations. Filter results by scenario ID or a list of executable IDs. Search for configurations containing the search string as substring in the configuration name.

*

200 - A list of configurations *

400 - The specification of the resource was incorrect -* @param aiResourceGroup - Specify a resource group id -* @return AiConfigurationList -* @throws OpenApiRequestException if an error occurs while attempting to invoke the API + * @param aiResourceGroup + * Specify a resource group id + * @return AiConfigurationList + * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public AiConfigurationList configurationQuery( @Nonnull final String aiResourceGroup) throws OpenApiRequestException { + @Nonnull + public AiConfigurationList configurationQuery( @Nonnull final String aiResourceGroup) throws OpenApiRequestException { return configurationQuery(aiResourceGroup, null, null, null, null, null, null, null); } } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/DeploymentApi.java b/core/src/main/java/com/sap/ai/sdk/core/client/DeploymentApi.java index 11032d381..7a83b9ffe 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/DeploymentApi.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/DeploymentApi.java @@ -7,19 +7,19 @@ import com.sap.cloud.sdk.services.openapi.core.AbstractOpenApiService; import com.sap.cloud.sdk.services.openapi.apiclient.ApiClient; -import com.sap.ai.sdk.core.client.model.AiDeploymentBulkModificationRequest ; //NOPMD -import com.sap.ai.sdk.core.client.model.AiDeploymentBulkModificationResponse ; //NOPMD -import com.sap.ai.sdk.core.client.model.AiDeploymentCreationRequest ; //NOPMD -import com.sap.ai.sdk.core.client.model.AiDeploymentCreationResponse ; //NOPMD -import com.sap.ai.sdk.core.client.model.AiDeploymentDeletionResponse ; //NOPMD -import com.sap.ai.sdk.core.client.model.AiDeploymentList ; //NOPMD -import com.sap.ai.sdk.core.client.model.AiDeploymentModificationRequest ; //NOPMD -import com.sap.ai.sdk.core.client.model.AiDeploymentModificationResponse ; //NOPMD -import com.sap.ai.sdk.core.client.model.AiDeploymentResponseWithDetails ; //NOPMD -import com.sap.ai.sdk.core.client.model.ArtifactQuery400Response ; //NOPMD -import java.time.OffsetDateTime ; //NOPMD -import com.sap.ai.sdk.core.client.model.RTAErrorResponse ; //NOPMD -import com.sap.ai.sdk.core.client.model.RTALogCommonResponse ; //NOPMD +import com.sap.ai.sdk.core.client.model.AiDeploymentBulkModificationRequest; +import com.sap.ai.sdk.core.client.model.AiDeploymentBulkModificationResponse; +import com.sap.ai.sdk.core.client.model.AiDeploymentCreationRequest; +import com.sap.ai.sdk.core.client.model.AiDeploymentCreationResponse; +import com.sap.ai.sdk.core.client.model.AiDeploymentDeletionResponse; +import com.sap.ai.sdk.core.client.model.AiDeploymentList; +import com.sap.ai.sdk.core.client.model.AiDeploymentModificationRequest; +import com.sap.ai.sdk.core.client.model.AiDeploymentModificationResponse; +import com.sap.ai.sdk.core.client.model.AiDeploymentResponseWithDetails; +import com.sap.ai.sdk.core.client.model.ArtifactQuery400Response; +import java.time.OffsetDateTime; +import com.sap.ai.sdk.core.client.model.RTAErrorResponse; +import com.sap.ai.sdk.core.client.model.RTALogCommonResponse; import java.util.HashMap; import java.util.List; @@ -42,35 +42,83 @@ import com.sap.cloud.sdk.cloudplatform.connectivity.Destination; /** -* AI Core in version 2.33.0. -* -* Provides tools to manage your scenarios and workflows in SAP AI Core. Execute pipelines as a batch job, for example to pre-process or train your models, or perform batch inference. Serve inference requests of trained models. Deploy а trained machine learning model as a web service to serve inference requests with high performance. Register your own Docker registry, synchronize your AI content from your own git repository, and register your own object store for training data and trained models. -*/ - + * AI Core in version 2.33.0. + * + * Provides tools to manage your scenarios and workflows in SAP AI Core. Execute pipelines as a batch job, for example to pre-process or train your models, or perform batch inference. Serve inference requests of trained models. Deploy а trained machine learning model as a web service to serve inference requests with high performance. Register your own Docker registry, synchronize your AI content from your own git repository, and register your own object store for training data and trained models. + */ public class DeploymentApi extends AbstractOpenApiService { /** - * Instantiates this API class to invoke operations on the AI Core. - * - * @param httpDestination The destination that API should be used with - */ + * Instantiates this API class to invoke operations on the AI Core. + * + * @param httpDestination The destination that API should be used with + */ public DeploymentApi( @Nonnull final Destination httpDestination ) { super(httpDestination); } /** - * Instantiates this API class to invoke operations on the AI Core based on a given {@link ApiClient}. - * - * @param apiClient - * ApiClient to invoke the API on - */ + * Instantiates this API class to invoke operations on the AI Core based on a given {@link ApiClient}. + * + * @param apiClient + * ApiClient to invoke the API on + */ @Beta public DeploymentApi( @Nonnull final ApiClient apiClient ) { super(apiClient); } - + /** + *

Patch multiple deployments

+ *

Update status of multiple deployments. stop or delete multiple deployments.

+ *

202 - The modification of the deployments have been scheduled successfully + *

400 - The specification of the resource was incorrect + * @param aiResourceGroup + * Specify a resource group id + * @param aiDeploymentBulkModificationRequest + * The value for the parameter aiDeploymentBulkModificationRequest + * @return AiDeploymentBulkModificationResponse + * @throws OpenApiRequestException if an error occurs while attempting to invoke the API + */ + @Nonnull + public AiDeploymentBulkModificationResponse deploymentBatchModify( @Nonnull final String aiResourceGroup, @Nonnull final AiDeploymentBulkModificationRequest aiDeploymentBulkModificationRequest) throws OpenApiRequestException { + final Object localVarPostBody = aiDeploymentBulkModificationRequest; + + // verify the required parameter 'aiResourceGroup' is set + if (aiResourceGroup == null) { + throw new OpenApiRequestException("Missing the required parameter 'aiResourceGroup' when calling deploymentBatchModify"); + } + + // verify the required parameter 'aiDeploymentBulkModificationRequest' is set + if (aiDeploymentBulkModificationRequest == null) { + throw new OpenApiRequestException("Missing the required parameter 'aiDeploymentBulkModificationRequest' when calling deploymentBatchModify"); + } + + final String localVarPath = UriComponentsBuilder.fromPath("/lm/deployments").build().toUriString(); + + final MultiValueMap localVarQueryParams = new LinkedMultiValueMap(); + final HttpHeaders localVarHeaderParams = new HttpHeaders(); + final MultiValueMap localVarFormParams = new LinkedMultiValueMap(); + + if (aiResourceGroup != null) + localVarHeaderParams.add("AI-Resource-Group", apiClient.parameterToString(aiResourceGroup)); + + final String[] localVarAccepts = { + "application/json" + }; + final List localVarAccept = apiClient.selectHeaderAccept(localVarAccepts); + final String[] localVarContentTypes = { + "application/merge-patch+json" + }; + final MediaType localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes); + + final String[] localVarAuthNames = new String[] { "Oauth2" }; + + final ParameterizedTypeReference localVarReturnType = new ParameterizedTypeReference() {}; + return apiClient.invokeAPI(localVarPath, HttpMethod.PATCH, localVarQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAccept, localVarContentType, localVarAuthNames, localVarReturnType); + } + /** *

Get number of deployments

*

Retrieve the number of available deployments. The number can be filtered by scenarioId, configurationId, executableIdsList or by deployment status.

@@ -89,7 +137,8 @@ public DeploymentApi( @Nonnull final ApiClient apiClient ) * @return Integer * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public Integer deploymentCount( @Nonnull final String aiResourceGroup, @Nullable final List executableIds, @Nullable final String configurationId, @Nullable final String scenarioId, @Nullable final String status) throws OpenApiRequestException { + @Nonnull + public Integer deploymentCount( @Nonnull final String aiResourceGroup, @Nullable final List executableIds, @Nullable final String configurationId, @Nullable final String scenarioId, @Nullable final String status) throws OpenApiRequestException { final Object localVarPostBody = null; // verify the required parameter 'aiResourceGroup' is set @@ -126,31 +175,33 @@ public DeploymentApi( @Nonnull final ApiClient apiClient ) } /** - *

Get number of deployments

- *

Retrieve the number of available deployments. The number can be filtered by scenarioId, configurationId, executableIdsList or by deployment status.

+ *

Get number of deployments

+ *

Retrieve the number of available deployments. The number can be filtered by scenarioId, configurationId, executableIdsList or by deployment status.

*

200 - Number of deployments *

400 - The specification of the resource was incorrect -* @param aiResourceGroup - Specify a resource group id -* @return Integer -* @throws OpenApiRequestException if an error occurs while attempting to invoke the API + * @param aiResourceGroup + * Specify a resource group id + * @return Integer + * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public Integer deploymentCount( @Nonnull final String aiResourceGroup) throws OpenApiRequestException { + @Nonnull + public Integer deploymentCount( @Nonnull final String aiResourceGroup) throws OpenApiRequestException { return deploymentCount(aiResourceGroup, null, null, null, null); } /** - *

Create deployment

- *

Create a deployment using the configuration specified by configurationId after synchronously checking the correctness of the configuration.

+ *

Create deployment

+ *

Create a deployment using the configuration specified by configurationId after synchronously checking the correctness of the configuration.

*

202 - The deployment has been scheduled successfully *

400 - The specification of the resource was incorrect -* @param aiResourceGroup - Specify a resource group id -* @param aiDeploymentCreationRequest - The value for the parameter aiDeploymentCreationRequest -* @return AiDeploymentCreationResponse -* @throws OpenApiRequestException if an error occurs while attempting to invoke the API + * @param aiResourceGroup + * Specify a resource group id + * @param aiDeploymentCreationRequest + * The value for the parameter aiDeploymentCreationRequest + * @return AiDeploymentCreationResponse + * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public AiDeploymentCreationResponse deploymentCreate( @Nonnull final String aiResourceGroup, @Nonnull final AiDeploymentCreationRequest aiDeploymentCreationRequest) throws OpenApiRequestException { + @Nonnull + public AiDeploymentCreationResponse deploymentCreate( @Nonnull final String aiResourceGroup, @Nonnull final AiDeploymentCreationRequest aiDeploymentCreationRequest) throws OpenApiRequestException { final Object localVarPostBody = aiDeploymentCreationRequest; // verify the required parameter 'aiResourceGroup' is set @@ -187,20 +238,21 @@ public DeploymentApi( @Nonnull final ApiClient apiClient ) return apiClient.invokeAPI(localVarPath, HttpMethod.POST, localVarQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAccept, localVarContentType, localVarAuthNames, localVarReturnType); } /** - *

Mark deployment as deleted

- *

Mark deployment with deploymentId as deleted.

+ *

Mark deployment as deleted

+ *

Mark deployment with deploymentId as deleted.

*

202 - The deletion of the deployment has been scheduled successfully *

400 - The specification of the resource was incorrect *

404 - The specified resource was not found *

412 - The service didn't meet the precondition needed to execute this operation -* @param aiResourceGroup - Specify a resource group id -* @param deploymentId - Deployment identifier -* @return AiDeploymentDeletionResponse -* @throws OpenApiRequestException if an error occurs while attempting to invoke the API + * @param aiResourceGroup + * Specify a resource group id + * @param deploymentId + * Deployment identifier + * @return AiDeploymentDeletionResponse + * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public AiDeploymentDeletionResponse deploymentDelete( @Nonnull final String aiResourceGroup, @Nonnull final String deploymentId) throws OpenApiRequestException { + @Nonnull + public AiDeploymentDeletionResponse deploymentDelete( @Nonnull final String aiResourceGroup, @Nonnull final String deploymentId) throws OpenApiRequestException { final Object localVarPostBody = null; // verify the required parameter 'aiResourceGroup' is set @@ -253,7 +305,8 @@ public DeploymentApi( @Nonnull final ApiClient apiClient ) * @return AiDeploymentResponseWithDetails * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public AiDeploymentResponseWithDetails deploymentGet( @Nonnull final String aiResourceGroup, @Nonnull final String deploymentId, @Nullable final String $select) throws OpenApiRequestException { + @Nonnull + public AiDeploymentResponseWithDetails deploymentGet( @Nonnull final String aiResourceGroup, @Nonnull final String deploymentId, @Nullable final String $select) throws OpenApiRequestException { final Object localVarPostBody = null; // verify the required parameter 'aiResourceGroup' is set @@ -295,38 +348,40 @@ public DeploymentApi( @Nonnull final ApiClient apiClient ) } /** - *

Get information about specific deployment

- *

Retrieve details for execution with deploymentId.

+ *

Get information about specific deployment

+ *

Retrieve details for execution with deploymentId.

*

200 - Information about the deployment *

400 - The specification of the resource was incorrect *

404 - The specified resource was not found -* @param aiResourceGroup - Specify a resource group id -* @param deploymentId - Deployment identifier -* @return AiDeploymentResponseWithDetails -* @throws OpenApiRequestException if an error occurs while attempting to invoke the API + * @param aiResourceGroup + * Specify a resource group id + * @param deploymentId + * Deployment identifier + * @return AiDeploymentResponseWithDetails + * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public AiDeploymentResponseWithDetails deploymentGet( @Nonnull final String aiResourceGroup, @Nonnull final String deploymentId) throws OpenApiRequestException { + @Nonnull + public AiDeploymentResponseWithDetails deploymentGet( @Nonnull final String aiResourceGroup, @Nonnull final String deploymentId) throws OpenApiRequestException { return deploymentGet(aiResourceGroup, deploymentId, null); } /** - *

Update target status or configuration of a deployment

- *

Update target status of a deployment to stop a deployment or change the configuration to be used by the deployment after synchronously checking the correctness of the configuration. A change of configuration is only allowed for RUNNING and PENDING deployments.

+ *

Update target status or configuration of a deployment

+ *

Update target status of a deployment to stop a deployment or change the configuration to be used by the deployment after synchronously checking the correctness of the configuration. A change of configuration is only allowed for RUNNING and PENDING deployments.

*

202 - The modification of the deployment has been scheduled successfully *

400 - The specification of the resource was incorrect *

404 - The specified resource was not found *

412 - The service didn't meet the precondition needed to execute this operation -* @param aiResourceGroup - Specify a resource group id -* @param deploymentId - Deployment identifier -* @param aiDeploymentModificationRequest - The value for the parameter aiDeploymentModificationRequest -* @return AiDeploymentModificationResponse -* @throws OpenApiRequestException if an error occurs while attempting to invoke the API + * @param aiResourceGroup + * Specify a resource group id + * @param deploymentId + * Deployment identifier + * @param aiDeploymentModificationRequest + * The value for the parameter aiDeploymentModificationRequest + * @return AiDeploymentModificationResponse + * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public AiDeploymentModificationResponse deploymentModify( @Nonnull final String aiResourceGroup, @Nonnull final String deploymentId, @Nonnull final AiDeploymentModificationRequest aiDeploymentModificationRequest) throws OpenApiRequestException { + @Nonnull + public AiDeploymentModificationResponse deploymentModify( @Nonnull final String aiResourceGroup, @Nonnull final String deploymentId, @Nonnull final AiDeploymentModificationRequest aiDeploymentModificationRequest) throws OpenApiRequestException { final Object localVarPostBody = aiDeploymentModificationRequest; // verify the required parameter 'aiResourceGroup' is set @@ -395,7 +450,8 @@ public DeploymentApi( @Nonnull final ApiClient apiClient ) * @return AiDeploymentList * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public AiDeploymentList deploymentQuery( @Nonnull final String aiResourceGroup, @Nullable final List executableIds, @Nullable final String configurationId, @Nullable final String scenarioId, @Nullable final String status, @Nullable final Integer $top, @Nullable final Integer $skip, @Nullable final String $select) throws OpenApiRequestException { + @Nonnull + public AiDeploymentList deploymentQuery( @Nonnull final String aiResourceGroup, @Nullable final List executableIds, @Nullable final String configurationId, @Nullable final String scenarioId, @Nullable final String status, @Nullable final Integer $top, @Nullable final Integer $skip, @Nullable final String $select) throws OpenApiRequestException { final Object localVarPostBody = null; // verify the required parameter 'aiResourceGroup' is set @@ -435,16 +491,17 @@ public DeploymentApi( @Nonnull final ApiClient apiClient ) } /** - *

Get list of deployments

- *

Retrieve a list of deployments that match the specified filter criteria. Filter criteria include a list of executableIds, a scenarioId, a configurationId, or a deployment status. With top/skip parameters it is possible to paginate the result list. With select parameter it is possible to select only status.

+ *

Get list of deployments

+ *

Retrieve a list of deployments that match the specified filter criteria. Filter criteria include a list of executableIds, a scenarioId, a configurationId, or a deployment status. With top/skip parameters it is possible to paginate the result list. With select parameter it is possible to select only status.

*

200 - A list of deployments *

400 - The specification of the resource was incorrect -* @param aiResourceGroup - Specify a resource group id -* @return AiDeploymentList -* @throws OpenApiRequestException if an error occurs while attempting to invoke the API + * @param aiResourceGroup + * Specify a resource group id + * @return AiDeploymentList + * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public AiDeploymentList deploymentQuery( @Nonnull final String aiResourceGroup) throws OpenApiRequestException { + @Nonnull + public AiDeploymentList deploymentQuery( @Nonnull final String aiResourceGroup) throws OpenApiRequestException { return deploymentQuery(aiResourceGroup, null, null, null, null, null, null, null); } @@ -471,12 +528,13 @@ public DeploymentApi( @Nonnull final ApiClient apiClient ) * @return RTALogCommonResponse * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public RTALogCommonResponse logs( @Nonnull final String deploymentId, @Nullable final String authorization, @Nullable final Integer $top, @Nullable final OffsetDateTime start, @Nullable final OffsetDateTime end, @Nullable final String $order) throws OpenApiRequestException { + @Nonnull + public RTALogCommonResponse kubesubmitV4DeploymentsGetLogs( @Nonnull final String deploymentId, @Nullable final String authorization, @Nullable final Integer $top, @Nullable final OffsetDateTime start, @Nullable final OffsetDateTime end, @Nullable final String $order) throws OpenApiRequestException { final Object localVarPostBody = null; // verify the required parameter 'deploymentId' is set if (deploymentId == null) { - throw new OpenApiRequestException("Missing the required parameter 'deploymentId' when calling logs"); + throw new OpenApiRequestException("Missing the required parameter 'deploymentId' when calling kubesubmitV4DeploymentsGetLogs"); } // create path and map variables @@ -511,67 +569,20 @@ public DeploymentApi( @Nonnull final ApiClient apiClient ) } /** - *

Get logs of specific deployment

- *

Retrieve logs of a deployment for getting insight into the deployment results or failures.

+ *

Get logs of specific deployment

+ *

Retrieve logs of a deployment for getting insight into the deployment results or failures.

*

200 - The query was processed successfully and logs of the requested deployment will be returned. *

400 - The request was malformed and could thus not be processed. *

401 - Lacks valid authentication credentials for the target resource. *

404 - The specified resource was not found *

0 - HTTP status codes 401, 403 or 500. Response body contains further details. -* @param deploymentId - Deployment identifier -* @return RTALogCommonResponse -* @throws OpenApiRequestException if an error occurs while attempting to invoke the API - */ - @Nullable public RTALogCommonResponse logs( @Nonnull final String deploymentId) throws OpenApiRequestException { - return logs(deploymentId, null, null, null, null, null); - } - /** - *

Patch multiple deployments

- *

Update status of multiple deployments. stop or delete multiple deployments.

- *

202 - The modification of the deployments have been scheduled successfully - *

400 - The specification of the resource was incorrect -* @param aiResourceGroup - Specify a resource group id -* @param aiDeploymentBulkModificationRequest - The value for the parameter aiDeploymentBulkModificationRequest -* @return AiDeploymentBulkModificationResponse -* @throws OpenApiRequestException if an error occurs while attempting to invoke the API + * @param deploymentId + * Deployment identifier + * @return RTALogCommonResponse + * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public AiDeploymentBulkModificationResponse modify( @Nonnull final String aiResourceGroup, @Nonnull final AiDeploymentBulkModificationRequest aiDeploymentBulkModificationRequest) throws OpenApiRequestException { - final Object localVarPostBody = aiDeploymentBulkModificationRequest; - - // verify the required parameter 'aiResourceGroup' is set - if (aiResourceGroup == null) { - throw new OpenApiRequestException("Missing the required parameter 'aiResourceGroup' when calling modify"); - } - - // verify the required parameter 'aiDeploymentBulkModificationRequest' is set - if (aiDeploymentBulkModificationRequest == null) { - throw new OpenApiRequestException("Missing the required parameter 'aiDeploymentBulkModificationRequest' when calling modify"); - } - - final String localVarPath = UriComponentsBuilder.fromPath("/lm/deployments").build().toUriString(); - - final MultiValueMap localVarQueryParams = new LinkedMultiValueMap(); - final HttpHeaders localVarHeaderParams = new HttpHeaders(); - final MultiValueMap localVarFormParams = new LinkedMultiValueMap(); - - if (aiResourceGroup != null) - localVarHeaderParams.add("AI-Resource-Group", apiClient.parameterToString(aiResourceGroup)); - - final String[] localVarAccepts = { - "application/json" - }; - final List localVarAccept = apiClient.selectHeaderAccept(localVarAccepts); - final String[] localVarContentTypes = { - "application/merge-patch+json" - }; - final MediaType localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes); - - final String[] localVarAuthNames = new String[] { "Oauth2" }; - - final ParameterizedTypeReference localVarReturnType = new ParameterizedTypeReference() {}; - return apiClient.invokeAPI(localVarPath, HttpMethod.PATCH, localVarQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAccept, localVarContentType, localVarAuthNames, localVarReturnType); + @Nonnull + public RTALogCommonResponse kubesubmitV4DeploymentsGetLogs( @Nonnull final String deploymentId) throws OpenApiRequestException { + return kubesubmitV4DeploymentsGetLogs(deploymentId, null, null, null, null, null); } } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/DockerRegistrySecretApi.java b/core/src/main/java/com/sap/ai/sdk/core/client/DockerRegistrySecretApi.java index 756ee856b..c3c2b5771 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/DockerRegistrySecretApi.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/DockerRegistrySecretApi.java @@ -7,14 +7,14 @@ import com.sap.cloud.sdk.services.openapi.core.AbstractOpenApiService; import com.sap.cloud.sdk.services.openapi.apiclient.ApiClient; -import com.sap.ai.sdk.core.client.model.BckndErrorResponse ; //NOPMD -import com.sap.ai.sdk.core.client.model.BcknddockerRegistrySecretCreationResponse ; //NOPMD -import com.sap.ai.sdk.core.client.model.BcknddockerRegistrySecretDeletionResponse ; //NOPMD -import com.sap.ai.sdk.core.client.model.BcknddockerRegistrySecretModificationResponse ; //NOPMD -import com.sap.ai.sdk.core.client.model.BcknddockerRegistrySecretStatus ; //NOPMD -import com.sap.ai.sdk.core.client.model.BcknddockerRegistrySecretStatusResponse ; //NOPMD -import com.sap.ai.sdk.core.client.model.BcknddockerRegistrySecretWithSensitiveDataRequest ; //NOPMD -import com.sap.ai.sdk.core.client.model.KubesubmitV4DockerRegistrySecretsCreateRequest ; //NOPMD +import com.sap.ai.sdk.core.client.model.BckndErrorResponse; +import com.sap.ai.sdk.core.client.model.BcknddockerRegistrySecretCreationResponse; +import com.sap.ai.sdk.core.client.model.BcknddockerRegistrySecretDeletionResponse; +import com.sap.ai.sdk.core.client.model.BcknddockerRegistrySecretModificationResponse; +import com.sap.ai.sdk.core.client.model.BcknddockerRegistrySecretStatus; +import com.sap.ai.sdk.core.client.model.BcknddockerRegistrySecretStatusResponse; +import com.sap.ai.sdk.core.client.model.BcknddockerRegistrySecretWithSensitiveDataRequest; +import com.sap.ai.sdk.core.client.model.KubesubmitV4DockerRegistrySecretsCreateRequest; import java.util.HashMap; import java.util.List; @@ -37,28 +37,27 @@ import com.sap.cloud.sdk.cloudplatform.connectivity.Destination; /** -* AI Core in version 2.33.0. -* -* Provides tools to manage your scenarios and workflows in SAP AI Core. Execute pipelines as a batch job, for example to pre-process or train your models, or perform batch inference. Serve inference requests of trained models. Deploy а trained machine learning model as a web service to serve inference requests with high performance. Register your own Docker registry, synchronize your AI content from your own git repository, and register your own object store for training data and trained models. -*/ - + * AI Core in version 2.33.0. + * + * Provides tools to manage your scenarios and workflows in SAP AI Core. Execute pipelines as a batch job, for example to pre-process or train your models, or perform batch inference. Serve inference requests of trained models. Deploy а trained machine learning model as a web service to serve inference requests with high performance. Register your own Docker registry, synchronize your AI content from your own git repository, and register your own object store for training data and trained models. + */ public class DockerRegistrySecretApi extends AbstractOpenApiService { /** - * Instantiates this API class to invoke operations on the AI Core. - * - * @param httpDestination The destination that API should be used with - */ + * Instantiates this API class to invoke operations on the AI Core. + * + * @param httpDestination The destination that API should be used with + */ public DockerRegistrySecretApi( @Nonnull final Destination httpDestination ) { super(httpDestination); } /** - * Instantiates this API class to invoke operations on the AI Core based on a given {@link ApiClient}. - * - * @param apiClient - * ApiClient to invoke the API on - */ + * Instantiates this API class to invoke operations on the AI Core based on a given {@link ApiClient}. + * + * @param apiClient + * ApiClient to invoke the API on + */ @Beta public DockerRegistrySecretApi( @Nonnull final ApiClient apiClient ) { @@ -79,12 +78,13 @@ public DockerRegistrySecretApi( @Nonnull final ApiClient apiClient ) * @return BcknddockerRegistrySecretCreationResponse * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public BcknddockerRegistrySecretCreationResponse registrySecretsCreate( @Nonnull final KubesubmitV4DockerRegistrySecretsCreateRequest kubesubmitV4DockerRegistrySecretsCreateRequest, @Nullable final String authorization) throws OpenApiRequestException { + @Nonnull + public BcknddockerRegistrySecretCreationResponse kubesubmitV4DockerRegistrySecretsCreate( @Nonnull final KubesubmitV4DockerRegistrySecretsCreateRequest kubesubmitV4DockerRegistrySecretsCreateRequest, @Nullable final String authorization) throws OpenApiRequestException { final Object localVarPostBody = kubesubmitV4DockerRegistrySecretsCreateRequest; // verify the required parameter 'kubesubmitV4DockerRegistrySecretsCreateRequest' is set if (kubesubmitV4DockerRegistrySecretsCreateRequest == null) { - throw new OpenApiRequestException("Missing the required parameter 'kubesubmitV4DockerRegistrySecretsCreateRequest' when calling registrySecretsCreate"); + throw new OpenApiRequestException("Missing the required parameter 'kubesubmitV4DockerRegistrySecretsCreateRequest' when calling kubesubmitV4DockerRegistrySecretsCreate"); } final String localVarPath = UriComponentsBuilder.fromPath("/admin/dockerRegistrySecrets").build().toUriString(); @@ -112,18 +112,19 @@ public DockerRegistrySecretApi( @Nonnull final ApiClient apiClient ) } /** - *

Create a secret

- *

Create a secret based on the configuration in the request body.

+ *

Create a secret

+ *

Create a secret based on the configuration in the request body.

*

202 - The request to create a k8s secret based on the given configuration has been accepted. *

400 - One of the following failure cases has occurred: <ul> <li> Neither JSON nor YAML was able to be parsed. <li> The request was invalidly formatted *

0 - HTTP status codes 401, 403 or 500. Response body contains further details. -* @param kubesubmitV4DockerRegistrySecretsCreateRequest - The value for the parameter kubesubmitV4DockerRegistrySecretsCreateRequest -* @return BcknddockerRegistrySecretCreationResponse -* @throws OpenApiRequestException if an error occurs while attempting to invoke the API + * @param kubesubmitV4DockerRegistrySecretsCreateRequest + * The value for the parameter kubesubmitV4DockerRegistrySecretsCreateRequest + * @return BcknddockerRegistrySecretCreationResponse + * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public BcknddockerRegistrySecretCreationResponse registrySecretsCreate( @Nonnull final KubesubmitV4DockerRegistrySecretsCreateRequest kubesubmitV4DockerRegistrySecretsCreateRequest) throws OpenApiRequestException { - return registrySecretsCreate(kubesubmitV4DockerRegistrySecretsCreateRequest, null); + @Nonnull + public BcknddockerRegistrySecretCreationResponse kubesubmitV4DockerRegistrySecretsCreate( @Nonnull final KubesubmitV4DockerRegistrySecretsCreateRequest kubesubmitV4DockerRegistrySecretsCreateRequest) throws OpenApiRequestException { + return kubesubmitV4DockerRegistrySecretsCreate(kubesubmitV4DockerRegistrySecretsCreateRequest, null); } /** @@ -140,12 +141,13 @@ public DockerRegistrySecretApi( @Nonnull final ApiClient apiClient ) * @return BcknddockerRegistrySecretDeletionResponse * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public BcknddockerRegistrySecretDeletionResponse registrySecretsDelete( @Nonnull final String dockerRegistryName, @Nullable final String authorization) throws OpenApiRequestException { + @Nonnull + public BcknddockerRegistrySecretDeletionResponse kubesubmitV4DockerRegistrySecretsDelete( @Nonnull final String dockerRegistryName, @Nullable final String authorization) throws OpenApiRequestException { final Object localVarPostBody = null; // verify the required parameter 'dockerRegistryName' is set if (dockerRegistryName == null) { - throw new OpenApiRequestException("Missing the required parameter 'dockerRegistryName' when calling registrySecretsDelete"); + throw new OpenApiRequestException("Missing the required parameter 'dockerRegistryName' when calling kubesubmitV4DockerRegistrySecretsDelete"); } // create path and map variables @@ -174,19 +176,20 @@ public DockerRegistrySecretApi( @Nonnull final ApiClient apiClient ) } /** - *

Delete docker registry secret

- *

Delete a secret with the name of dockerRegistryName if it exists.

+ *

Delete docker registry secret

+ *

Delete a secret with the name of dockerRegistryName if it exists.

*

202 - The request to delete the secret has been accepted. *

404 - The specified resource was not found *

400 - The request was malformed and could thus not be processed. *

0 - HTTP status codes 401, 403 or 500. Response body contains further details. -* @param dockerRegistryName - Name of the docker Registry store for the secret. -* @return BcknddockerRegistrySecretDeletionResponse -* @throws OpenApiRequestException if an error occurs while attempting to invoke the API + * @param dockerRegistryName + * Name of the docker Registry store for the secret. + * @return BcknddockerRegistrySecretDeletionResponse + * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public BcknddockerRegistrySecretDeletionResponse registrySecretsDelete( @Nonnull final String dockerRegistryName) throws OpenApiRequestException { - return registrySecretsDelete(dockerRegistryName, null); + @Nonnull + public BcknddockerRegistrySecretDeletionResponse kubesubmitV4DockerRegistrySecretsDelete( @Nonnull final String dockerRegistryName) throws OpenApiRequestException { + return kubesubmitV4DockerRegistrySecretsDelete(dockerRegistryName, null); } /** @@ -203,12 +206,13 @@ public DockerRegistrySecretApi( @Nonnull final ApiClient apiClient ) * @return BcknddockerRegistrySecretStatus * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public BcknddockerRegistrySecretStatus registrySecretsGet( @Nonnull final String dockerRegistryName, @Nullable final String authorization) throws OpenApiRequestException { + @Nonnull + public BcknddockerRegistrySecretStatus kubesubmitV4DockerRegistrySecretsGet( @Nonnull final String dockerRegistryName, @Nullable final String authorization) throws OpenApiRequestException { final Object localVarPostBody = null; // verify the required parameter 'dockerRegistryName' is set if (dockerRegistryName == null) { - throw new OpenApiRequestException("Missing the required parameter 'dockerRegistryName' when calling registrySecretsGet"); + throw new OpenApiRequestException("Missing the required parameter 'dockerRegistryName' when calling kubesubmitV4DockerRegistrySecretsGet"); } // create path and map variables @@ -237,19 +241,20 @@ public DockerRegistrySecretApi( @Nonnull final ApiClient apiClient ) } /** - *

Returns the of metadata of secrets which match the query parameter.

- *

Retrieve the stored secret metadata which matches the parameter dockerRegistryName. The base64 encoded field for the stored secret is not returned.

+ *

Returns the of metadata of secrets which match the query parameter.

+ *

Retrieve the stored secret metadata which matches the parameter dockerRegistryName. The base64 encoded field for the stored secret is not returned.

*

200 - The request was processed successfully and the metadata of the of stored secrets wil be returned. *

400 - The request was malformed and could thus not be processed. *

404 - The specified resource was not found *

0 - HTTP status codes 401, 403 or 500. Response body contains further details. -* @param dockerRegistryName - Name of the docker Registry store for the secret. -* @return BcknddockerRegistrySecretStatus -* @throws OpenApiRequestException if an error occurs while attempting to invoke the API + * @param dockerRegistryName + * Name of the docker Registry store for the secret. + * @return BcknddockerRegistrySecretStatus + * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public BcknddockerRegistrySecretStatus registrySecretsGet( @Nonnull final String dockerRegistryName) throws OpenApiRequestException { - return registrySecretsGet(dockerRegistryName, null); + @Nonnull + public BcknddockerRegistrySecretStatus kubesubmitV4DockerRegistrySecretsGet( @Nonnull final String dockerRegistryName) throws OpenApiRequestException { + return kubesubmitV4DockerRegistrySecretsGet(dockerRegistryName, null); } /** @@ -268,17 +273,18 @@ public DockerRegistrySecretApi( @Nonnull final ApiClient apiClient ) * @return BcknddockerRegistrySecretModificationResponse * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public BcknddockerRegistrySecretModificationResponse registrySecretsPatch( @Nonnull final String dockerRegistryName, @Nonnull final BcknddockerRegistrySecretWithSensitiveDataRequest bcknddockerRegistrySecretWithSensitiveDataRequest, @Nullable final String authorization) throws OpenApiRequestException { + @Nonnull + public BcknddockerRegistrySecretModificationResponse kubesubmitV4DockerRegistrySecretsPatch( @Nonnull final String dockerRegistryName, @Nonnull final BcknddockerRegistrySecretWithSensitiveDataRequest bcknddockerRegistrySecretWithSensitiveDataRequest, @Nullable final String authorization) throws OpenApiRequestException { final Object localVarPostBody = bcknddockerRegistrySecretWithSensitiveDataRequest; // verify the required parameter 'dockerRegistryName' is set if (dockerRegistryName == null) { - throw new OpenApiRequestException("Missing the required parameter 'dockerRegistryName' when calling registrySecretsPatch"); + throw new OpenApiRequestException("Missing the required parameter 'dockerRegistryName' when calling kubesubmitV4DockerRegistrySecretsPatch"); } // verify the required parameter 'bcknddockerRegistrySecretWithSensitiveDataRequest' is set if (bcknddockerRegistrySecretWithSensitiveDataRequest == null) { - throw new OpenApiRequestException("Missing the required parameter 'bcknddockerRegistrySecretWithSensitiveDataRequest' when calling registrySecretsPatch"); + throw new OpenApiRequestException("Missing the required parameter 'bcknddockerRegistrySecretWithSensitiveDataRequest' when calling kubesubmitV4DockerRegistrySecretsPatch"); } // create path and map variables @@ -309,21 +315,22 @@ public DockerRegistrySecretApi( @Nonnull final ApiClient apiClient ) } /** - *

Update a secret

- *

Update a secret with name of dockerRegistryName if it exists.

+ *

Update a secret

+ *

Update a secret with name of dockerRegistryName if it exists.

*

202 - The request to update the secret based on the the given configuration has been accepted. *

404 - The specified resource was not found *

400 - The request was malformed and could thus not be processed. *

0 - HTTP status codes 401, 403 or 500. Response body contains further details. -* @param dockerRegistryName - Name of the docker Registry store for the secret. -* @param bcknddockerRegistrySecretWithSensitiveDataRequest - The value for the parameter bcknddockerRegistrySecretWithSensitiveDataRequest -* @return BcknddockerRegistrySecretModificationResponse -* @throws OpenApiRequestException if an error occurs while attempting to invoke the API + * @param dockerRegistryName + * Name of the docker Registry store for the secret. + * @param bcknddockerRegistrySecretWithSensitiveDataRequest + * The value for the parameter bcknddockerRegistrySecretWithSensitiveDataRequest + * @return BcknddockerRegistrySecretModificationResponse + * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public BcknddockerRegistrySecretModificationResponse registrySecretsPatch( @Nonnull final String dockerRegistryName, @Nonnull final BcknddockerRegistrySecretWithSensitiveDataRequest bcknddockerRegistrySecretWithSensitiveDataRequest) throws OpenApiRequestException { - return registrySecretsPatch(dockerRegistryName, bcknddockerRegistrySecretWithSensitiveDataRequest, null); + @Nonnull + public BcknddockerRegistrySecretModificationResponse kubesubmitV4DockerRegistrySecretsPatch( @Nonnull final String dockerRegistryName, @Nonnull final BcknddockerRegistrySecretWithSensitiveDataRequest bcknddockerRegistrySecretWithSensitiveDataRequest) throws OpenApiRequestException { + return kubesubmitV4DockerRegistrySecretsPatch(dockerRegistryName, bcknddockerRegistrySecretWithSensitiveDataRequest, null); } /** @@ -343,7 +350,8 @@ public DockerRegistrySecretApi( @Nonnull final ApiClient apiClient ) * @return BcknddockerRegistrySecretStatusResponse * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public BcknddockerRegistrySecretStatusResponse registrySecretsQuery( @Nullable final Integer $top, @Nullable final Integer $skip, @Nullable final Boolean $count, @Nullable final String authorization) throws OpenApiRequestException { + @Nonnull + public BcknddockerRegistrySecretStatusResponse kubesubmitV4DockerRegistrySecretsQuery( @Nullable final Integer $top, @Nullable final Integer $skip, @Nullable final Boolean $count, @Nullable final String authorization) throws OpenApiRequestException { final Object localVarPostBody = null; final String localVarPath = UriComponentsBuilder.fromPath("/admin/dockerRegistrySecrets").build().toUriString(); @@ -374,15 +382,16 @@ public DockerRegistrySecretApi( @Nonnull final ApiClient apiClient ) } /** - *

Get a list of metadata of secrets.

- *

Retrieve a list of metadata of the stored secrets

+ *

Get a list of metadata of secrets.

+ *

Retrieve a list of metadata of the stored secrets

*

200 - The request was successful and the requested metadata for the secret will be returned. This includes a list of attributes of the stored secret like - creationTimestamp, namespace etc. The secret's data field is not returned. *

400 - The request was malformed and could thus not be processed. *

0 - HTTP status codes 401, 403 or 500. Response body contains further details. -* @return BcknddockerRegistrySecretStatusResponse -* @throws OpenApiRequestException if an error occurs while attempting to invoke the API + * @return BcknddockerRegistrySecretStatusResponse + * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public BcknddockerRegistrySecretStatusResponse registrySecretsQuery() throws OpenApiRequestException { - return registrySecretsQuery(null, null, null, null); + @Nonnull + public BcknddockerRegistrySecretStatusResponse kubesubmitV4DockerRegistrySecretsQuery() throws OpenApiRequestException { + return kubesubmitV4DockerRegistrySecretsQuery(null, null, null, null); } } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/ExecutableApi.java b/core/src/main/java/com/sap/ai/sdk/core/client/ExecutableApi.java index 130d506f2..5a9629f74 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/ExecutableApi.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/ExecutableApi.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.core.client.model.AiExecutable ; //NOPMD -import com.sap.ai.sdk.core.client.model.AiExecutableList ; //NOPMD -import com.sap.ai.sdk.core.client.model.ArtifactQuery400Response ; //NOPMD +import com.sap.ai.sdk.core.client.model.AiExecutable; +import com.sap.ai.sdk.core.client.model.AiExecutableList; +import com.sap.ai.sdk.core.client.model.ArtifactQuery400Response; import java.util.HashMap; import java.util.List; @@ -32,28 +32,27 @@ import com.sap.cloud.sdk.cloudplatform.connectivity.Destination; /** -* AI Core in version 2.33.0. -* -* Provides tools to manage your scenarios and workflows in SAP AI Core. Execute pipelines as a batch job, for example to pre-process or train your models, or perform batch inference. Serve inference requests of trained models. Deploy а trained machine learning model as a web service to serve inference requests with high performance. Register your own Docker registry, synchronize your AI content from your own git repository, and register your own object store for training data and trained models. -*/ - + * AI Core in version 2.33.0. + * + * Provides tools to manage your scenarios and workflows in SAP AI Core. Execute pipelines as a batch job, for example to pre-process or train your models, or perform batch inference. Serve inference requests of trained models. Deploy а trained machine learning model as a web service to serve inference requests with high performance. Register your own Docker registry, synchronize your AI content from your own git repository, and register your own object store for training data and trained models. + */ public class ExecutableApi extends AbstractOpenApiService { /** - * Instantiates this API class to invoke operations on the AI Core. - * - * @param httpDestination The destination that API should be used with - */ + * Instantiates this API class to invoke operations on the AI Core. + * + * @param httpDestination The destination that API should be used with + */ public ExecutableApi( @Nonnull final Destination httpDestination ) { super(httpDestination); } /** - * Instantiates this API class to invoke operations on the AI Core based on a given {@link ApiClient}. - * - * @param apiClient - * ApiClient to invoke the API on - */ + * Instantiates this API class to invoke operations on the AI Core based on a given {@link ApiClient}. + * + * @param apiClient + * ApiClient to invoke the API on + */ @Beta public ExecutableApi( @Nonnull final ApiClient apiClient ) { @@ -61,21 +60,22 @@ public ExecutableApi( @Nonnull final ApiClient apiClient ) } /** - *

Get details about specific executable

- *

Retrieve details about an executable identified by executableId belonging to a scenario identified by scenarioId.

+ *

Get details about specific executable

+ *

Retrieve details about an executable identified by executableId belonging to a scenario identified by scenarioId.

*

200 - An Executable *

400 - The specification of the resource was incorrect *

404 - The specified resource was not found -* @param scenarioId - Scenario identifier -* @param executableId - Executable identifier -* @param aiResourceGroup - Specify a resource group id -* @return AiExecutable -* @throws OpenApiRequestException if an error occurs while attempting to invoke the API + * @param scenarioId + * Scenario identifier + * @param executableId + * Executable identifier + * @param aiResourceGroup + * Specify a resource group id + * @return AiExecutable + * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public AiExecutable executableGet( @Nonnull final String scenarioId, @Nonnull final String executableId, @Nonnull final String aiResourceGroup) throws OpenApiRequestException { + @Nonnull + public AiExecutable executableGet( @Nonnull final String scenarioId, @Nonnull final String executableId, @Nonnull final String aiResourceGroup) throws OpenApiRequestException { final Object localVarPostBody = null; // verify the required parameter 'scenarioId' is set @@ -133,7 +133,8 @@ public ExecutableApi( @Nonnull final ApiClient apiClient ) * @return AiExecutableList * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public AiExecutableList executableQuery( @Nonnull final String scenarioId, @Nonnull final String aiResourceGroup, @Nullable final String versionId) throws OpenApiRequestException { + @Nonnull + public AiExecutableList executableQuery( @Nonnull final String scenarioId, @Nonnull final String aiResourceGroup, @Nullable final String versionId) throws OpenApiRequestException { final Object localVarPostBody = null; // verify the required parameter 'scenarioId' is set @@ -175,18 +176,19 @@ public ExecutableApi( @Nonnull final ApiClient apiClient ) } /** - *

Get list of executables

- *

Retrieve a list of executables for a scenario. Filter by version ID, if required.

+ *

Get list of executables

+ *

Retrieve a list of executables for a scenario. Filter by version ID, if required.

*

200 - A list of executables *

400 - The specification of the resource was incorrect -* @param scenarioId - Scenario identifier -* @param aiResourceGroup - Specify a resource group id -* @return AiExecutableList -* @throws OpenApiRequestException if an error occurs while attempting to invoke the API + * @param scenarioId + * Scenario identifier + * @param aiResourceGroup + * Specify a resource group id + * @return AiExecutableList + * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public AiExecutableList executableQuery( @Nonnull final String scenarioId, @Nonnull final String aiResourceGroup) throws OpenApiRequestException { + @Nonnull + public AiExecutableList executableQuery( @Nonnull final String scenarioId, @Nonnull final String aiResourceGroup) throws OpenApiRequestException { return executableQuery(scenarioId, aiResourceGroup, null); } } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/ExecutionApi.java b/core/src/main/java/com/sap/ai/sdk/core/client/ExecutionApi.java index 6f1d3b5f4..13fa2e931 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/ExecutionApi.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/ExecutionApi.java @@ -7,19 +7,19 @@ import com.sap.cloud.sdk.services.openapi.core.AbstractOpenApiService; import com.sap.cloud.sdk.services.openapi.apiclient.ApiClient; -import com.sap.ai.sdk.core.client.model.AiEnactmentCreationRequest ; //NOPMD -import com.sap.ai.sdk.core.client.model.AiExecutionBulkModificationRequest ; //NOPMD -import com.sap.ai.sdk.core.client.model.AiExecutionBulkModificationResponse ; //NOPMD -import com.sap.ai.sdk.core.client.model.AiExecutionCreationResponse ; //NOPMD -import com.sap.ai.sdk.core.client.model.AiExecutionDeletionResponse ; //NOPMD -import com.sap.ai.sdk.core.client.model.AiExecutionList ; //NOPMD -import com.sap.ai.sdk.core.client.model.AiExecutionModificationRequest ; //NOPMD -import com.sap.ai.sdk.core.client.model.AiExecutionModificationResponse ; //NOPMD -import com.sap.ai.sdk.core.client.model.AiExecutionResponseWithDetails ; //NOPMD -import com.sap.ai.sdk.core.client.model.ArtifactQuery400Response ; //NOPMD -import java.time.OffsetDateTime ; //NOPMD -import com.sap.ai.sdk.core.client.model.RTAErrorResponse ; //NOPMD -import com.sap.ai.sdk.core.client.model.RTALogCommonResponse ; //NOPMD +import com.sap.ai.sdk.core.client.model.AiEnactmentCreationRequest; +import com.sap.ai.sdk.core.client.model.AiExecutionBulkModificationRequest; +import com.sap.ai.sdk.core.client.model.AiExecutionBulkModificationResponse; +import com.sap.ai.sdk.core.client.model.AiExecutionCreationResponse; +import com.sap.ai.sdk.core.client.model.AiExecutionDeletionResponse; +import com.sap.ai.sdk.core.client.model.AiExecutionList; +import com.sap.ai.sdk.core.client.model.AiExecutionModificationRequest; +import com.sap.ai.sdk.core.client.model.AiExecutionModificationResponse; +import com.sap.ai.sdk.core.client.model.AiExecutionResponseWithDetails; +import com.sap.ai.sdk.core.client.model.ArtifactQuery400Response; +import java.time.OffsetDateTime; +import com.sap.ai.sdk.core.client.model.RTAErrorResponse; +import com.sap.ai.sdk.core.client.model.RTALogCommonResponse; import java.util.HashMap; import java.util.List; @@ -42,35 +42,83 @@ import com.sap.cloud.sdk.cloudplatform.connectivity.Destination; /** -* AI Core in version 2.33.0. -* -* Provides tools to manage your scenarios and workflows in SAP AI Core. Execute pipelines as a batch job, for example to pre-process or train your models, or perform batch inference. Serve inference requests of trained models. Deploy а trained machine learning model as a web service to serve inference requests with high performance. Register your own Docker registry, synchronize your AI content from your own git repository, and register your own object store for training data and trained models. -*/ - + * AI Core in version 2.33.0. + * + * Provides tools to manage your scenarios and workflows in SAP AI Core. Execute pipelines as a batch job, for example to pre-process or train your models, or perform batch inference. Serve inference requests of trained models. Deploy а trained machine learning model as a web service to serve inference requests with high performance. Register your own Docker registry, synchronize your AI content from your own git repository, and register your own object store for training data and trained models. + */ public class ExecutionApi extends AbstractOpenApiService { /** - * Instantiates this API class to invoke operations on the AI Core. - * - * @param httpDestination The destination that API should be used with - */ + * Instantiates this API class to invoke operations on the AI Core. + * + * @param httpDestination The destination that API should be used with + */ public ExecutionApi( @Nonnull final Destination httpDestination ) { super(httpDestination); } /** - * Instantiates this API class to invoke operations on the AI Core based on a given {@link ApiClient}. - * - * @param apiClient - * ApiClient to invoke the API on - */ + * Instantiates this API class to invoke operations on the AI Core based on a given {@link ApiClient}. + * + * @param apiClient + * ApiClient to invoke the API on + */ @Beta public ExecutionApi( @Nonnull final ApiClient apiClient ) { super(apiClient); } - + /** + *

Patch multiple executions

+ *

Patch multiple executions' status to stopped or deleted.

+ *

202 - The modification of the executions have been scheduled successfully + *

400 - The specification of the resource was incorrect + * @param aiResourceGroup + * Specify a resource group id + * @param aiExecutionBulkModificationRequest + * The value for the parameter aiExecutionBulkModificationRequest + * @return AiExecutionBulkModificationResponse + * @throws OpenApiRequestException if an error occurs while attempting to invoke the API + */ + @Nonnull + public AiExecutionBulkModificationResponse executionBatchModify( @Nonnull final String aiResourceGroup, @Nonnull final AiExecutionBulkModificationRequest aiExecutionBulkModificationRequest) throws OpenApiRequestException { + final Object localVarPostBody = aiExecutionBulkModificationRequest; + + // verify the required parameter 'aiResourceGroup' is set + if (aiResourceGroup == null) { + throw new OpenApiRequestException("Missing the required parameter 'aiResourceGroup' when calling executionBatchModify"); + } + + // verify the required parameter 'aiExecutionBulkModificationRequest' is set + if (aiExecutionBulkModificationRequest == null) { + throw new OpenApiRequestException("Missing the required parameter 'aiExecutionBulkModificationRequest' when calling executionBatchModify"); + } + + final String localVarPath = UriComponentsBuilder.fromPath("/lm/executions").build().toUriString(); + + final MultiValueMap localVarQueryParams = new LinkedMultiValueMap(); + final HttpHeaders localVarHeaderParams = new HttpHeaders(); + final MultiValueMap localVarFormParams = new LinkedMultiValueMap(); + + if (aiResourceGroup != null) + localVarHeaderParams.add("AI-Resource-Group", apiClient.parameterToString(aiResourceGroup)); + + final String[] localVarAccepts = { + "application/json" + }; + final List localVarAccept = apiClient.selectHeaderAccept(localVarAccepts); + final String[] localVarContentTypes = { + "application/merge-patch+json" + }; + final MediaType localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes); + + final String[] localVarAuthNames = new String[] { "Oauth2" }; + + final ParameterizedTypeReference localVarReturnType = new ParameterizedTypeReference() {}; + return apiClient.invokeAPI(localVarPath, HttpMethod.PATCH, localVarQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAccept, localVarContentType, localVarAuthNames, localVarReturnType); + } + /** *

Get number of executions

*

Retrieve the number of available executions. The number can be filtered by scenarioId, configurationId, executableIdsList or by execution status.

@@ -91,7 +139,8 @@ public ExecutionApi( @Nonnull final ApiClient apiClient ) * @return Integer * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public Integer executionCount( @Nonnull final String aiResourceGroup, @Nullable final List executableIds, @Nullable final String configurationId, @Nullable final String scenarioId, @Nullable final String executionScheduleId, @Nullable final String status) throws OpenApiRequestException { + @Nonnull + public Integer executionCount( @Nonnull final String aiResourceGroup, @Nullable final List executableIds, @Nullable final String configurationId, @Nullable final String scenarioId, @Nullable final String executionScheduleId, @Nullable final String status) throws OpenApiRequestException { final Object localVarPostBody = null; // verify the required parameter 'aiResourceGroup' is set @@ -129,31 +178,33 @@ public ExecutionApi( @Nonnull final ApiClient apiClient ) } /** - *

Get number of executions

- *

Retrieve the number of available executions. The number can be filtered by scenarioId, configurationId, executableIdsList or by execution status.

+ *

Get number of executions

+ *

Retrieve the number of available executions. The number can be filtered by scenarioId, configurationId, executableIdsList or by execution status.

*

200 - Number of executions *

400 - The specification of the resource was incorrect -* @param aiResourceGroup - Specify a resource group id -* @return Integer -* @throws OpenApiRequestException if an error occurs while attempting to invoke the API + * @param aiResourceGroup + * Specify a resource group id + * @return Integer + * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public Integer executionCount( @Nonnull final String aiResourceGroup) throws OpenApiRequestException { + @Nonnull + public Integer executionCount( @Nonnull final String aiResourceGroup) throws OpenApiRequestException { return executionCount(aiResourceGroup, null, null, null, null, null); } /** - *

Create execution

- *

Create an execution using the configuration specified by configurationId.

+ *

Create execution

+ *

Create an execution using the configuration specified by configurationId.

*

202 - The execution has been scheduled successfully *

400 - The specification of the resource was incorrect -* @param aiResourceGroup - Specify a resource group id -* @param aiEnactmentCreationRequest - The value for the parameter aiEnactmentCreationRequest -* @return AiExecutionCreationResponse -* @throws OpenApiRequestException if an error occurs while attempting to invoke the API + * @param aiResourceGroup + * Specify a resource group id + * @param aiEnactmentCreationRequest + * The value for the parameter aiEnactmentCreationRequest + * @return AiExecutionCreationResponse + * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public AiExecutionCreationResponse executionCreate( @Nonnull final String aiResourceGroup, @Nonnull final AiEnactmentCreationRequest aiEnactmentCreationRequest) throws OpenApiRequestException { + @Nonnull + public AiExecutionCreationResponse executionCreate( @Nonnull final String aiResourceGroup, @Nonnull final AiEnactmentCreationRequest aiEnactmentCreationRequest) throws OpenApiRequestException { final Object localVarPostBody = aiEnactmentCreationRequest; // verify the required parameter 'aiResourceGroup' is set @@ -190,20 +241,21 @@ public ExecutionApi( @Nonnull final ApiClient apiClient ) return apiClient.invokeAPI(localVarPath, HttpMethod.POST, localVarQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAccept, localVarContentType, localVarAuthNames, localVarReturnType); } /** - *

Mark execution as deleted

- *

Mark the execution with executionId as deleted.

+ *

Mark execution as deleted

+ *

Mark the execution with executionId as deleted.

*

202 - The deletion of the execution has been scheduled successfully *

400 - The specification of the resource was incorrect *

404 - The specified resource was not found *

412 - The service didn't meet the precondition needed to execute this operation -* @param aiResourceGroup - Specify a resource group id -* @param executionId - Execution identifier -* @return AiExecutionDeletionResponse -* @throws OpenApiRequestException if an error occurs while attempting to invoke the API + * @param aiResourceGroup + * Specify a resource group id + * @param executionId + * Execution identifier + * @return AiExecutionDeletionResponse + * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public AiExecutionDeletionResponse executionDelete( @Nonnull final String aiResourceGroup, @Nonnull final String executionId) throws OpenApiRequestException { + @Nonnull + public AiExecutionDeletionResponse executionDelete( @Nonnull final String aiResourceGroup, @Nonnull final String executionId) throws OpenApiRequestException { final Object localVarPostBody = null; // verify the required parameter 'aiResourceGroup' is set @@ -256,7 +308,8 @@ public ExecutionApi( @Nonnull final ApiClient apiClient ) * @return AiExecutionResponseWithDetails * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public AiExecutionResponseWithDetails executionGet( @Nonnull final String aiResourceGroup, @Nonnull final String executionId, @Nullable final String $select) throws OpenApiRequestException { + @Nonnull + public AiExecutionResponseWithDetails executionGet( @Nonnull final String aiResourceGroup, @Nonnull final String executionId, @Nullable final String $select) throws OpenApiRequestException { final Object localVarPostBody = null; // verify the required parameter 'aiResourceGroup' is set @@ -298,38 +351,40 @@ public ExecutionApi( @Nonnull final ApiClient apiClient ) } /** - *

Get information about a specific execution

- *

Retrieve details for execution with executionId.

+ *

Get information about a specific execution

+ *

Retrieve details for execution with executionId.

*

200 - Information about the execution *

400 - The specification of the resource was incorrect *

404 - The specified resource was not found -* @param aiResourceGroup - Specify a resource group id -* @param executionId - Execution identifier -* @return AiExecutionResponseWithDetails -* @throws OpenApiRequestException if an error occurs while attempting to invoke the API + * @param aiResourceGroup + * Specify a resource group id + * @param executionId + * Execution identifier + * @return AiExecutionResponseWithDetails + * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public AiExecutionResponseWithDetails executionGet( @Nonnull final String aiResourceGroup, @Nonnull final String executionId) throws OpenApiRequestException { + @Nonnull + public AiExecutionResponseWithDetails executionGet( @Nonnull final String aiResourceGroup, @Nonnull final String executionId) throws OpenApiRequestException { return executionGet(aiResourceGroup, executionId, null); } /** - *

Update target status of an execution

- *

Update target status of the execution to stop an execution.

+ *

Update target status of an execution

+ *

Update target status of the execution to stop an execution.

*

202 - The modification of the execution has been scheduled successfully *

400 - The specification of the resource was incorrect *

404 - The specified resource was not found *

412 - The service didn't meet the precondition needed to execute this operation -* @param aiResourceGroup - Specify a resource group id -* @param executionId - Execution identifier -* @param aiExecutionModificationRequest - The value for the parameter aiExecutionModificationRequest -* @return AiExecutionModificationResponse -* @throws OpenApiRequestException if an error occurs while attempting to invoke the API + * @param aiResourceGroup + * Specify a resource group id + * @param executionId + * Execution identifier + * @param aiExecutionModificationRequest + * The value for the parameter aiExecutionModificationRequest + * @return AiExecutionModificationResponse + * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public AiExecutionModificationResponse executionModify( @Nonnull final String aiResourceGroup, @Nonnull final String executionId, @Nonnull final AiExecutionModificationRequest aiExecutionModificationRequest) throws OpenApiRequestException { + @Nonnull + public AiExecutionModificationResponse executionModify( @Nonnull final String aiResourceGroup, @Nonnull final String executionId, @Nonnull final AiExecutionModificationRequest aiExecutionModificationRequest) throws OpenApiRequestException { final Object localVarPostBody = aiExecutionModificationRequest; // verify the required parameter 'aiResourceGroup' is set @@ -400,7 +455,8 @@ public ExecutionApi( @Nonnull final ApiClient apiClient ) * @return AiExecutionList * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public AiExecutionList executionQuery( @Nonnull final String aiResourceGroup, @Nullable final List executableIds, @Nullable final String configurationId, @Nullable final String scenarioId, @Nullable final String executionScheduleId, @Nullable final String status, @Nullable final Integer $top, @Nullable final Integer $skip, @Nullable final String $select) throws OpenApiRequestException { + @Nonnull + public AiExecutionList executionQuery( @Nonnull final String aiResourceGroup, @Nullable final List executableIds, @Nullable final String configurationId, @Nullable final String scenarioId, @Nullable final String executionScheduleId, @Nullable final String status, @Nullable final Integer $top, @Nullable final Integer $skip, @Nullable final String $select) throws OpenApiRequestException { final Object localVarPostBody = null; // verify the required parameter 'aiResourceGroup' is set @@ -441,16 +497,17 @@ public ExecutionApi( @Nonnull final ApiClient apiClient ) } /** - *

Get list of executions

- *

Retrieve a list of executions that match the specified filter criteria. Filter criteria include a list of executableIds, a scenarioId, a configurationId, or a execution status. With top/skip parameters it is possible to paginate the result list. With select parameter it is possible to select only status.

+ *

Get list of executions

+ *

Retrieve a list of executions that match the specified filter criteria. Filter criteria include a list of executableIds, a scenarioId, a configurationId, or a execution status. With top/skip parameters it is possible to paginate the result list. With select parameter it is possible to select only status.

*

200 - A list of executions *

400 - The specification of the resource was incorrect -* @param aiResourceGroup - Specify a resource group id -* @return AiExecutionList -* @throws OpenApiRequestException if an error occurs while attempting to invoke the API + * @param aiResourceGroup + * Specify a resource group id + * @return AiExecutionList + * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public AiExecutionList executionQuery( @Nonnull final String aiResourceGroup) throws OpenApiRequestException { + @Nonnull + public AiExecutionList executionQuery( @Nonnull final String aiResourceGroup) throws OpenApiRequestException { return executionQuery(aiResourceGroup, null, null, null, null, null, null, null, null); } @@ -477,12 +534,13 @@ public ExecutionApi( @Nonnull final ApiClient apiClient ) * @return RTALogCommonResponse * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public RTALogCommonResponse logs( @Nonnull final String executionId, @Nullable final String authorization, @Nullable final Integer $top, @Nullable final OffsetDateTime start, @Nullable final OffsetDateTime end, @Nullable final String $order) throws OpenApiRequestException { + @Nonnull + public RTALogCommonResponse kubesubmitV4ExecutionsGetLogs( @Nonnull final String executionId, @Nullable final String authorization, @Nullable final Integer $top, @Nullable final OffsetDateTime start, @Nullable final OffsetDateTime end, @Nullable final String $order) throws OpenApiRequestException { final Object localVarPostBody = null; // verify the required parameter 'executionId' is set if (executionId == null) { - throw new OpenApiRequestException("Missing the required parameter 'executionId' when calling logs"); + throw new OpenApiRequestException("Missing the required parameter 'executionId' when calling kubesubmitV4ExecutionsGetLogs"); } // create path and map variables @@ -517,67 +575,20 @@ public ExecutionApi( @Nonnull final ApiClient apiClient ) } /** - *

Get logs of specific execution

- *

Retrieve logs of an execution for getting insight into the execution results or failures.

+ *

Get logs of specific execution

+ *

Retrieve logs of an execution for getting insight into the execution results or failures.

*

200 - The query was processed successfully and logs of the requested execution will be returned. *

400 - The request was malformed and could thus not be processed. *

401 - Lacks valid authentication credentials for the target resource. *

404 - The specified resource was not found *

0 - HTTP status codes 401, 403 or 500. Response body contains further details. -* @param executionId - Execution identifier -* @return RTALogCommonResponse -* @throws OpenApiRequestException if an error occurs while attempting to invoke the API - */ - @Nullable public RTALogCommonResponse logs( @Nonnull final String executionId) throws OpenApiRequestException { - return logs(executionId, null, null, null, null, null); - } - /** - *

Patch multiple executions

- *

Patch multiple executions' status to stopped or deleted.

- *

202 - The modification of the executions have been scheduled successfully - *

400 - The specification of the resource was incorrect -* @param aiResourceGroup - Specify a resource group id -* @param aiExecutionBulkModificationRequest - The value for the parameter aiExecutionBulkModificationRequest -* @return AiExecutionBulkModificationResponse -* @throws OpenApiRequestException if an error occurs while attempting to invoke the API + * @param executionId + * Execution identifier + * @return RTALogCommonResponse + * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public AiExecutionBulkModificationResponse modify( @Nonnull final String aiResourceGroup, @Nonnull final AiExecutionBulkModificationRequest aiExecutionBulkModificationRequest) throws OpenApiRequestException { - final Object localVarPostBody = aiExecutionBulkModificationRequest; - - // verify the required parameter 'aiResourceGroup' is set - if (aiResourceGroup == null) { - throw new OpenApiRequestException("Missing the required parameter 'aiResourceGroup' when calling modify"); - } - - // verify the required parameter 'aiExecutionBulkModificationRequest' is set - if (aiExecutionBulkModificationRequest == null) { - throw new OpenApiRequestException("Missing the required parameter 'aiExecutionBulkModificationRequest' when calling modify"); - } - - final String localVarPath = UriComponentsBuilder.fromPath("/lm/executions").build().toUriString(); - - final MultiValueMap localVarQueryParams = new LinkedMultiValueMap(); - final HttpHeaders localVarHeaderParams = new HttpHeaders(); - final MultiValueMap localVarFormParams = new LinkedMultiValueMap(); - - if (aiResourceGroup != null) - localVarHeaderParams.add("AI-Resource-Group", apiClient.parameterToString(aiResourceGroup)); - - final String[] localVarAccepts = { - "application/json" - }; - final List localVarAccept = apiClient.selectHeaderAccept(localVarAccepts); - final String[] localVarContentTypes = { - "application/merge-patch+json" - }; - final MediaType localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes); - - final String[] localVarAuthNames = new String[] { "Oauth2" }; - - final ParameterizedTypeReference localVarReturnType = new ParameterizedTypeReference() {}; - return apiClient.invokeAPI(localVarPath, HttpMethod.PATCH, localVarQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAccept, localVarContentType, localVarAuthNames, localVarReturnType); + @Nonnull + public RTALogCommonResponse kubesubmitV4ExecutionsGetLogs( @Nonnull final String executionId) throws OpenApiRequestException { + return kubesubmitV4ExecutionsGetLogs(executionId, null, null, null, null, null); } } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/ExecutionScheduleApi.java b/core/src/main/java/com/sap/ai/sdk/core/client/ExecutionScheduleApi.java index 25115df5f..e518638b9 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/ExecutionScheduleApi.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/ExecutionScheduleApi.java @@ -7,14 +7,14 @@ import com.sap.cloud.sdk.services.openapi.core.AbstractOpenApiService; import com.sap.cloud.sdk.services.openapi.apiclient.ApiClient; -import com.sap.ai.sdk.core.client.model.AiExecutionSchedule ; //NOPMD -import com.sap.ai.sdk.core.client.model.AiExecutionScheduleCreationData ; //NOPMD -import com.sap.ai.sdk.core.client.model.AiExecutionScheduleCreationResponse ; //NOPMD -import com.sap.ai.sdk.core.client.model.AiExecutionScheduleDeletionResponse ; //NOPMD -import com.sap.ai.sdk.core.client.model.AiExecutionScheduleList ; //NOPMD -import com.sap.ai.sdk.core.client.model.AiExecutionScheduleModificationRequest ; //NOPMD -import com.sap.ai.sdk.core.client.model.AiExecutionScheduleModificationResponse ; //NOPMD -import com.sap.ai.sdk.core.client.model.ArtifactQuery400Response ; //NOPMD +import com.sap.ai.sdk.core.client.model.AiExecutionSchedule; +import com.sap.ai.sdk.core.client.model.AiExecutionScheduleCreationData; +import com.sap.ai.sdk.core.client.model.AiExecutionScheduleCreationResponse; +import com.sap.ai.sdk.core.client.model.AiExecutionScheduleDeletionResponse; +import com.sap.ai.sdk.core.client.model.AiExecutionScheduleList; +import com.sap.ai.sdk.core.client.model.AiExecutionScheduleModificationRequest; +import com.sap.ai.sdk.core.client.model.AiExecutionScheduleModificationResponse; +import com.sap.ai.sdk.core.client.model.ArtifactQuery400Response; import java.util.HashMap; import java.util.List; @@ -37,28 +37,27 @@ import com.sap.cloud.sdk.cloudplatform.connectivity.Destination; /** -* AI Core in version 2.33.0. -* -* Provides tools to manage your scenarios and workflows in SAP AI Core. Execute pipelines as a batch job, for example to pre-process or train your models, or perform batch inference. Serve inference requests of trained models. Deploy а trained machine learning model as a web service to serve inference requests with high performance. Register your own Docker registry, synchronize your AI content from your own git repository, and register your own object store for training data and trained models. -*/ - + * AI Core in version 2.33.0. + * + * Provides tools to manage your scenarios and workflows in SAP AI Core. Execute pipelines as a batch job, for example to pre-process or train your models, or perform batch inference. Serve inference requests of trained models. Deploy а trained machine learning model as a web service to serve inference requests with high performance. Register your own Docker registry, synchronize your AI content from your own git repository, and register your own object store for training data and trained models. + */ public class ExecutionScheduleApi extends AbstractOpenApiService { /** - * Instantiates this API class to invoke operations on the AI Core. - * - * @param httpDestination The destination that API should be used with - */ + * Instantiates this API class to invoke operations on the AI Core. + * + * @param httpDestination The destination that API should be used with + */ public ExecutionScheduleApi( @Nonnull final Destination httpDestination ) { super(httpDestination); } /** - * Instantiates this API class to invoke operations on the AI Core based on a given {@link ApiClient}. - * - * @param apiClient - * ApiClient to invoke the API on - */ + * Instantiates this API class to invoke operations on the AI Core based on a given {@link ApiClient}. + * + * @param apiClient + * ApiClient to invoke the API on + */ @Beta public ExecutionScheduleApi( @Nonnull final ApiClient apiClient ) { @@ -80,12 +79,13 @@ public ExecutionScheduleApi( @Nonnull final ApiClient apiClient ) * @return Integer * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public Integer scheduleCount( @Nonnull final String aiResourceGroup, @Nullable final String configurationId, @Nullable final String status) throws OpenApiRequestException { + @Nonnull + public Integer executionScheduleCount( @Nonnull final String aiResourceGroup, @Nullable final String configurationId, @Nullable final String status) throws OpenApiRequestException { final Object localVarPostBody = null; // verify the required parameter 'aiResourceGroup' is set if (aiResourceGroup == null) { - throw new OpenApiRequestException("Missing the required parameter 'aiResourceGroup' when calling scheduleCount"); + throw new OpenApiRequestException("Missing the required parameter 'aiResourceGroup' when calling executionScheduleCount"); } final String localVarPath = UriComponentsBuilder.fromPath("/lm/executionSchedules/$count").build().toUriString(); @@ -115,41 +115,43 @@ public ExecutionScheduleApi( @Nonnull final ApiClient apiClient ) } /** - *

Get number of execution schedules

- *

Retrieve the number of scheduled executions. The number can be filtered by configurationId or executionScheduleStatus.

+ *

Get number of execution schedules

+ *

Retrieve the number of scheduled executions. The number can be filtered by configurationId or executionScheduleStatus.

*

200 - Number of execution schedules *

400 - The specification of the resource was incorrect -* @param aiResourceGroup - Specify a resource group id -* @return Integer -* @throws OpenApiRequestException if an error occurs while attempting to invoke the API + * @param aiResourceGroup + * Specify a resource group id + * @return Integer + * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public Integer scheduleCount( @Nonnull final String aiResourceGroup) throws OpenApiRequestException { - return scheduleCount(aiResourceGroup, null, null); + @Nonnull + public Integer executionScheduleCount( @Nonnull final String aiResourceGroup) throws OpenApiRequestException { + return executionScheduleCount(aiResourceGroup, null, null); } /** - *

Create execution schedule

- *

Create an execution schedule using the configuration specified by configurationId, and schedule.

+ *

Create execution schedule

+ *

Create an execution schedule using the configuration specified by configurationId, and schedule.

*

202 - The execution schedule has been created successfully *

400 - The specification of the resource was incorrect -* @param aiResourceGroup - Specify a resource group id -* @param aiExecutionScheduleCreationData - The value for the parameter aiExecutionScheduleCreationData -* @return AiExecutionScheduleCreationResponse -* @throws OpenApiRequestException if an error occurs while attempting to invoke the API + * @param aiResourceGroup + * Specify a resource group id + * @param aiExecutionScheduleCreationData + * The value for the parameter aiExecutionScheduleCreationData + * @return AiExecutionScheduleCreationResponse + * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public AiExecutionScheduleCreationResponse scheduleCreate( @Nonnull final String aiResourceGroup, @Nonnull final AiExecutionScheduleCreationData aiExecutionScheduleCreationData) throws OpenApiRequestException { + @Nonnull + public AiExecutionScheduleCreationResponse executionScheduleCreate( @Nonnull final String aiResourceGroup, @Nonnull final AiExecutionScheduleCreationData aiExecutionScheduleCreationData) throws OpenApiRequestException { final Object localVarPostBody = aiExecutionScheduleCreationData; // verify the required parameter 'aiResourceGroup' is set if (aiResourceGroup == null) { - throw new OpenApiRequestException("Missing the required parameter 'aiResourceGroup' when calling scheduleCreate"); + throw new OpenApiRequestException("Missing the required parameter 'aiResourceGroup' when calling executionScheduleCreate"); } // verify the required parameter 'aiExecutionScheduleCreationData' is set if (aiExecutionScheduleCreationData == null) { - throw new OpenApiRequestException("Missing the required parameter 'aiExecutionScheduleCreationData' when calling scheduleCreate"); + throw new OpenApiRequestException("Missing the required parameter 'aiExecutionScheduleCreationData' when calling executionScheduleCreate"); } final String localVarPath = UriComponentsBuilder.fromPath("/lm/executionSchedules").build().toUriString(); @@ -176,29 +178,30 @@ public ExecutionScheduleApi( @Nonnull final ApiClient apiClient ) return apiClient.invokeAPI(localVarPath, HttpMethod.POST, localVarQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAccept, localVarContentType, localVarAuthNames, localVarReturnType); } /** - *

Delete execution schedule

- *

Delete the execution schedule with executionScheduleId.

+ *

Delete execution schedule

+ *

Delete the execution schedule with executionScheduleId.

*

202 - The execution schedule has been deleted successfully *

400 - The specification of the resource was incorrect *

404 - The specified resource was not found -* @param aiResourceGroup - Specify a resource group id -* @param executionScheduleId - Execution Schedule identifier -* @return AiExecutionScheduleDeletionResponse -* @throws OpenApiRequestException if an error occurs while attempting to invoke the API + * @param aiResourceGroup + * Specify a resource group id + * @param executionScheduleId + * Execution Schedule identifier + * @return AiExecutionScheduleDeletionResponse + * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public AiExecutionScheduleDeletionResponse scheduleDelete( @Nonnull final String aiResourceGroup, @Nonnull final String executionScheduleId) throws OpenApiRequestException { + @Nonnull + public AiExecutionScheduleDeletionResponse executionScheduleDelete( @Nonnull final String aiResourceGroup, @Nonnull final String executionScheduleId) throws OpenApiRequestException { final Object localVarPostBody = null; // verify the required parameter 'aiResourceGroup' is set if (aiResourceGroup == null) { - throw new OpenApiRequestException("Missing the required parameter 'aiResourceGroup' when calling scheduleDelete"); + throw new OpenApiRequestException("Missing the required parameter 'aiResourceGroup' when calling executionScheduleDelete"); } // verify the required parameter 'executionScheduleId' is set if (executionScheduleId == null) { - throw new OpenApiRequestException("Missing the required parameter 'executionScheduleId' when calling scheduleDelete"); + throw new OpenApiRequestException("Missing the required parameter 'executionScheduleId' when calling executionScheduleDelete"); } // create path and map variables @@ -226,29 +229,30 @@ public ExecutionScheduleApi( @Nonnull final ApiClient apiClient ) return apiClient.invokeAPI(localVarPath, HttpMethod.DELETE, localVarQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAccept, localVarContentType, localVarAuthNames, localVarReturnType); } /** - *

Get information about an execution schedule

- *

Retrieve details for execution schedule with executionScheduleId.

+ *

Get information about an execution schedule

+ *

Retrieve details for execution schedule with executionScheduleId.

*

200 - Information about the execution schedule *

400 - The specification of the resource was incorrect *

404 - The specified resource was not found -* @param aiResourceGroup - Specify a resource group id -* @param executionScheduleId - Execution Schedule identifier -* @return AiExecutionSchedule -* @throws OpenApiRequestException if an error occurs while attempting to invoke the API + * @param aiResourceGroup + * Specify a resource group id + * @param executionScheduleId + * Execution Schedule identifier + * @return AiExecutionSchedule + * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public AiExecutionSchedule scheduleGet( @Nonnull final String aiResourceGroup, @Nonnull final String executionScheduleId) throws OpenApiRequestException { + @Nonnull + public AiExecutionSchedule executionScheduleGet( @Nonnull final String aiResourceGroup, @Nonnull final String executionScheduleId) throws OpenApiRequestException { final Object localVarPostBody = null; // verify the required parameter 'aiResourceGroup' is set if (aiResourceGroup == null) { - throw new OpenApiRequestException("Missing the required parameter 'aiResourceGroup' when calling scheduleGet"); + throw new OpenApiRequestException("Missing the required parameter 'aiResourceGroup' when calling executionScheduleGet"); } // verify the required parameter 'executionScheduleId' is set if (executionScheduleId == null) { - throw new OpenApiRequestException("Missing the required parameter 'executionScheduleId' when calling scheduleGet"); + throw new OpenApiRequestException("Missing the required parameter 'executionScheduleId' when calling executionScheduleGet"); } // create path and map variables @@ -276,36 +280,37 @@ public ExecutionScheduleApi( @Nonnull final ApiClient apiClient ) return apiClient.invokeAPI(localVarPath, HttpMethod.GET, localVarQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAccept, localVarContentType, localVarAuthNames, localVarReturnType); } /** - *

Update an execution schedule

- *

Update details of an execution schedule

+ *

Update an execution schedule

+ *

Update details of an execution schedule

*

202 - The execution schedule has been modified successfully *

400 - The specification of the resource was incorrect *

404 - The specified resource was not found -* @param aiResourceGroup - Specify a resource group id -* @param executionScheduleId - Execution Schedule identifier -* @param aiExecutionScheduleModificationRequest - The value for the parameter aiExecutionScheduleModificationRequest -* @return AiExecutionScheduleModificationResponse -* @throws OpenApiRequestException if an error occurs while attempting to invoke the API + * @param aiResourceGroup + * Specify a resource group id + * @param executionScheduleId + * Execution Schedule identifier + * @param aiExecutionScheduleModificationRequest + * The value for the parameter aiExecutionScheduleModificationRequest + * @return AiExecutionScheduleModificationResponse + * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public AiExecutionScheduleModificationResponse scheduleModify( @Nonnull final String aiResourceGroup, @Nonnull final String executionScheduleId, @Nonnull final AiExecutionScheduleModificationRequest aiExecutionScheduleModificationRequest) throws OpenApiRequestException { + @Nonnull + public AiExecutionScheduleModificationResponse executionScheduleModify( @Nonnull final String aiResourceGroup, @Nonnull final String executionScheduleId, @Nonnull final AiExecutionScheduleModificationRequest aiExecutionScheduleModificationRequest) throws OpenApiRequestException { final Object localVarPostBody = aiExecutionScheduleModificationRequest; // verify the required parameter 'aiResourceGroup' is set if (aiResourceGroup == null) { - throw new OpenApiRequestException("Missing the required parameter 'aiResourceGroup' when calling scheduleModify"); + throw new OpenApiRequestException("Missing the required parameter 'aiResourceGroup' when calling executionScheduleModify"); } // verify the required parameter 'executionScheduleId' is set if (executionScheduleId == null) { - throw new OpenApiRequestException("Missing the required parameter 'executionScheduleId' when calling scheduleModify"); + throw new OpenApiRequestException("Missing the required parameter 'executionScheduleId' when calling executionScheduleModify"); } // verify the required parameter 'aiExecutionScheduleModificationRequest' is set if (aiExecutionScheduleModificationRequest == null) { - throw new OpenApiRequestException("Missing the required parameter 'aiExecutionScheduleModificationRequest' when calling scheduleModify"); + throw new OpenApiRequestException("Missing the required parameter 'aiExecutionScheduleModificationRequest' when calling executionScheduleModify"); } // create path and map variables @@ -353,12 +358,13 @@ public ExecutionScheduleApi( @Nonnull final ApiClient apiClient ) * @return AiExecutionScheduleList * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public AiExecutionScheduleList scheduleQuery( @Nonnull final String aiResourceGroup, @Nullable final String configurationId, @Nullable final String status, @Nullable final Integer $top, @Nullable final Integer $skip) throws OpenApiRequestException { + @Nonnull + public AiExecutionScheduleList executionScheduleQuery( @Nonnull final String aiResourceGroup, @Nullable final String configurationId, @Nullable final String status, @Nullable final Integer $top, @Nullable final Integer $skip) throws OpenApiRequestException { final Object localVarPostBody = null; // verify the required parameter 'aiResourceGroup' is set if (aiResourceGroup == null) { - throw new OpenApiRequestException("Missing the required parameter 'aiResourceGroup' when calling scheduleQuery"); + throw new OpenApiRequestException("Missing the required parameter 'aiResourceGroup' when calling executionScheduleQuery"); } final String localVarPath = UriComponentsBuilder.fromPath("/lm/executionSchedules").build().toUriString(); @@ -390,16 +396,17 @@ public ExecutionScheduleApi( @Nonnull final ApiClient apiClient ) } /** - *

Get list of execution schedules

- *

Retrieve a list of execution schedules that match the specified filter criteria. Filter criteria include executionScheduleStatus or a configurationId. With top/skip parameters it is possible to paginate the result list.

+ *

Get list of execution schedules

+ *

Retrieve a list of execution schedules that match the specified filter criteria. Filter criteria include executionScheduleStatus or a configurationId. With top/skip parameters it is possible to paginate the result list.

*

200 - A list of execution schedules *

400 - The specification of the resource was incorrect -* @param aiResourceGroup - Specify a resource group id -* @return AiExecutionScheduleList -* @throws OpenApiRequestException if an error occurs while attempting to invoke the API + * @param aiResourceGroup + * Specify a resource group id + * @return AiExecutionScheduleList + * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public AiExecutionScheduleList scheduleQuery( @Nonnull final String aiResourceGroup) throws OpenApiRequestException { - return scheduleQuery(aiResourceGroup, null, null, null, null); + @Nonnull + public AiExecutionScheduleList executionScheduleQuery( @Nonnull final String aiResourceGroup) throws OpenApiRequestException { + return executionScheduleQuery(aiResourceGroup, null, null, null, null); } } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/FileApi.java b/core/src/main/java/com/sap/ai/sdk/core/client/FileApi.java index f1ec8e0d6..b1e17d3c2 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/FileApi.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/FileApi.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.core.client.model.DSetFileCreationResponse ; //NOPMD -import java.io.File ; //NOPMD -import com.sap.ai.sdk.core.client.model.FileDownload400Response ; //NOPMD +import com.sap.ai.sdk.core.client.model.DSetFileCreationResponse; +import java.io.File; +import com.sap.ai.sdk.core.client.model.FileDownload400Response; import java.util.HashMap; import java.util.List; @@ -32,28 +32,27 @@ import com.sap.cloud.sdk.cloudplatform.connectivity.Destination; /** -* AI Core in version 2.33.0. -* -* Provides tools to manage your scenarios and workflows in SAP AI Core. Execute pipelines as a batch job, for example to pre-process or train your models, or perform batch inference. Serve inference requests of trained models. Deploy а trained machine learning model as a web service to serve inference requests with high performance. Register your own Docker registry, synchronize your AI content from your own git repository, and register your own object store for training data and trained models. -*/ - + * AI Core in version 2.33.0. + * + * Provides tools to manage your scenarios and workflows in SAP AI Core. Execute pipelines as a batch job, for example to pre-process or train your models, or perform batch inference. Serve inference requests of trained models. Deploy а trained machine learning model as a web service to serve inference requests with high performance. Register your own Docker registry, synchronize your AI content from your own git repository, and register your own object store for training data and trained models. + */ public class FileApi extends AbstractOpenApiService { /** - * Instantiates this API class to invoke operations on the AI Core. - * - * @param httpDestination The destination that API should be used with - */ + * Instantiates this API class to invoke operations on the AI Core. + * + * @param httpDestination The destination that API should be used with + */ public FileApi( @Nonnull final Destination httpDestination ) { super(httpDestination); } /** - * Instantiates this API class to invoke operations on the AI Core based on a given {@link ApiClient}. - * - * @param apiClient - * ApiClient to invoke the API on - */ + * Instantiates this API class to invoke operations on the AI Core based on a given {@link ApiClient}. + * + * @param apiClient + * ApiClient to invoke the API on + */ @Beta public FileApi( @Nonnull final ApiClient apiClient ) { @@ -74,7 +73,8 @@ public FileApi( @Nonnull final ApiClient apiClient ) * @return An OpenApiResponse containing the status code of the HttpResponse. * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nonnull public OpenApiResponse fileDelete( @Nonnull final String path, @Nullable final String aiResourceGroup) throws OpenApiRequestException { + @Nonnull + public OpenApiResponse fileDelete( @Nonnull final String path, @Nullable final String aiResourceGroup) throws OpenApiRequestException { final Object localVarPostBody = null; // verify the required parameter 'path' is set @@ -109,17 +109,18 @@ public FileApi( @Nonnull final ApiClient apiClient ) } /** - *

Delete file

- *

Delete the file specified by the path parameter.

+ *

Delete file

+ *

Delete the file specified by the path parameter.

*

204 - The request was processed successfully. *

400 - The specification of the resource was incorrect *

404 - The specified resource was not found -* @param path - path relative to the object store root URL in the secret -* @return An OpenApiResponse containing the status code of the HttpResponse. -* @throws OpenApiRequestException if an error occurs while attempting to invoke the API + * @param path + * path relative to the object store root URL in the secret + * @return An OpenApiResponse containing the status code of the HttpResponse. + * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nonnull public OpenApiResponse fileDelete( @Nonnull final String path) throws OpenApiRequestException { + @Nonnull + public OpenApiResponse fileDelete( @Nonnull final String path) throws OpenApiRequestException { return fileDelete(path, null); } @@ -136,7 +137,8 @@ public FileApi( @Nonnull final ApiClient apiClient ) * @return File * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public File fileDownload( @Nonnull final String path, @Nullable final String aiResourceGroup) throws OpenApiRequestException { + @Nonnull + public File fileDownload( @Nonnull final String path, @Nullable final String aiResourceGroup) throws OpenApiRequestException { final Object localVarPostBody = null; // verify the required parameter 'path' is set @@ -170,17 +172,18 @@ public FileApi( @Nonnull final ApiClient apiClient ) } /** - *

Download file

- *

Endpoint for downloading file. The path must point to an individual file.

+ *

Download file

+ *

Endpoint for downloading file. The path must point to an individual file.

*

200 - OK *

400 - The specification of the resource was incorrect *

404 - The specified resource was not found -* @param path - path relative to the object store root URL in the secret -* @return File -* @throws OpenApiRequestException if an error occurs while attempting to invoke the API + * @param path + * path relative to the object store root URL in the secret + * @return File + * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public File fileDownload( @Nonnull final String path) throws OpenApiRequestException { + @Nonnull + public File fileDownload( @Nonnull final String path) throws OpenApiRequestException { return fileDownload(path, null); } @@ -202,7 +205,8 @@ public FileApi( @Nonnull final ApiClient apiClient ) * @return DSetFileCreationResponse * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public DSetFileCreationResponse fileUpload( @Nonnull final String path, @Nullable final String aiResourceGroup, @Nullable final Boolean overwrite, @Nullable final String body) throws OpenApiRequestException { + @Nonnull + public DSetFileCreationResponse fileUpload( @Nonnull final String path, @Nullable final String aiResourceGroup, @Nullable final Boolean overwrite, @Nullable final String body) throws OpenApiRequestException { final Object localVarPostBody = body; // verify the required parameter 'path' is set @@ -239,18 +243,19 @@ public FileApi( @Nonnull final ApiClient apiClient ) } /** - *

Upload file (size <= 100Mb)

- *

Endpoint for uploading file. The maximum file size depends on the actual implementation but must not exceed 100MB. The actual file size limit can be obtained by querying the AI API Runtime Capabilities Endpoint and checking the limits in the section of the `fileUpload` extension. Path cannot be a prefix, it must be a path to an object. Clients may group the objects in any manner they choose by specifying path prefixes. Allowed mime-types will be decided by the implementation. Content-Type header can be set to \"application/octet-stream\" but the implementation is responsible for detecting the actual mime type and checking against the allowed list of mime types. For security reasons, implementations cannot trust the mime type sent by the client. Example URLs: /files/dar/schemas/schema.json /files/icr/datasets/training/20201001/20201001-01.csv /files/icr/datasets/training/20201001/20201001-02.csv /files/mask-detection/training/mask-detection-20210301.tar.gz

+ *

Upload file (size <= 100Mb)

+ *

Endpoint for uploading file. The maximum file size depends on the actual implementation but must not exceed 100MB. The actual file size limit can be obtained by querying the AI API Runtime Capabilities Endpoint and checking the limits in the section of the `fileUpload` extension. Path cannot be a prefix, it must be a path to an object. Clients may group the objects in any manner they choose by specifying path prefixes. Allowed mime-types will be decided by the implementation. Content-Type header can be set to \"application/octet-stream\" but the implementation is responsible for detecting the actual mime type and checking against the allowed list of mime types. For security reasons, implementations cannot trust the mime type sent by the client. Example URLs: /files/dar/schemas/schema.json /files/icr/datasets/training/20201001/20201001-01.csv /files/icr/datasets/training/20201001/20201001-02.csv /files/mask-detection/training/mask-detection-20210301.tar.gz

*

201 - Created *

400 - The specification of the resource was incorrect *

409 - The specified file already exists and cannot be overwritten. *

413 - The file size exceeds the supported limit. -* @param path - path relative to the object store root URL in the secret -* @return DSetFileCreationResponse -* @throws OpenApiRequestException if an error occurs while attempting to invoke the API + * @param path + * path relative to the object store root URL in the secret + * @return DSetFileCreationResponse + * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public DSetFileCreationResponse fileUpload( @Nonnull final String path) throws OpenApiRequestException { + @Nonnull + public DSetFileCreationResponse fileUpload( @Nonnull final String path) throws OpenApiRequestException { return fileUpload(path, null, null, null); } } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/KpiApi.java b/core/src/main/java/com/sap/ai/sdk/core/client/KpiApi.java index 0f4089e6b..febf8646e 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/KpiApi.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/KpiApi.java @@ -7,10 +7,10 @@ import com.sap.cloud.sdk.services.openapi.core.AbstractOpenApiService; import com.sap.cloud.sdk.services.openapi.apiclient.ApiClient; -import com.sap.ai.sdk.core.client.model.KpiColumnName ; //NOPMD -import com.sap.ai.sdk.core.client.model.KpiGet400Response ; //NOPMD -import com.sap.ai.sdk.core.client.model.KpiResultSet ; //NOPMD -import java.util.Set ; //NOPMD +import com.sap.ai.sdk.core.client.model.KpiColumnName; +import com.sap.ai.sdk.core.client.model.KpiGet400Response; +import com.sap.ai.sdk.core.client.model.KpiResultSet; +import java.util.Set; import java.util.HashMap; import java.util.List; @@ -33,28 +33,27 @@ import com.sap.cloud.sdk.cloudplatform.connectivity.Destination; /** -* AI Core in version 2.33.0. -* -* Provides tools to manage your scenarios and workflows in SAP AI Core. Execute pipelines as a batch job, for example to pre-process or train your models, or perform batch inference. Serve inference requests of trained models. Deploy а trained machine learning model as a web service to serve inference requests with high performance. Register your own Docker registry, synchronize your AI content from your own git repository, and register your own object store for training data and trained models. -*/ - + * AI Core in version 2.33.0. + * + * Provides tools to manage your scenarios and workflows in SAP AI Core. Execute pipelines as a batch job, for example to pre-process or train your models, or perform batch inference. Serve inference requests of trained models. Deploy а trained machine learning model as a web service to serve inference requests with high performance. Register your own Docker registry, synchronize your AI content from your own git repository, and register your own object store for training data and trained models. + */ public class KpiApi extends AbstractOpenApiService { /** - * Instantiates this API class to invoke operations on the AI Core. - * - * @param httpDestination The destination that API should be used with - */ + * Instantiates this API class to invoke operations on the AI Core. + * + * @param httpDestination The destination that API should be used with + */ public KpiApi( @Nonnull final Destination httpDestination ) { super(httpDestination); } /** - * Instantiates this API class to invoke operations on the AI Core based on a given {@link ApiClient}. - * - * @param apiClient - * ApiClient to invoke the API on - */ + * Instantiates this API class to invoke operations on the AI Core based on a given {@link ApiClient}. + * + * @param apiClient + * ApiClient to invoke the API on + */ @Beta public KpiApi( @Nonnull final ApiClient apiClient ) { @@ -74,7 +73,8 @@ public KpiApi( @Nonnull final ApiClient apiClient ) * @return KpiResultSet * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public KpiResultSet kpiGet( @Nullable final Set $select) throws OpenApiRequestException { + @Nonnull + public KpiResultSet kpiGet( @Nullable final Set $select) throws OpenApiRequestException { final Object localVarPostBody = null; final String localVarPath = UriComponentsBuilder.fromPath("/analytics/kpis").build().toUriString(); @@ -100,16 +100,17 @@ public KpiApi( @Nonnull final ApiClient apiClient ) } /** - *

Get KPIs

- *

Retrieve the number of executions, artifacts, and deployments for each resource group, scenario, and executable. The columns to be returned can be specified in a query parameter.

+ *

Get KPIs

+ *

Retrieve the number of executions, artifacts, and deployments for each resource group, scenario, and executable. The columns to be returned can be specified in a query parameter.

*

200 - KPIs *

400 - Invalid request *

404 - The specified resource was not found *

429 - Too many requests -* @return KpiResultSet -* @throws OpenApiRequestException if an error occurs while attempting to invoke the API + * @return KpiResultSet + * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public KpiResultSet kpiGet() throws OpenApiRequestException { + @Nonnull + public KpiResultSet kpiGet() throws OpenApiRequestException { return kpiGet(null); } } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/MetaApi.java b/core/src/main/java/com/sap/ai/sdk/core/client/MetaApi.java index 70d9f5711..f2a1d3567 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/MetaApi.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/MetaApi.java @@ -7,8 +7,8 @@ import com.sap.cloud.sdk.services.openapi.core.AbstractOpenApiService; import com.sap.cloud.sdk.services.openapi.apiclient.ApiClient; -import com.sap.ai.sdk.core.client.model.MetaCapabilities ; //NOPMD -import com.sap.ai.sdk.core.client.model.MetaGet404Response ; //NOPMD +import com.sap.ai.sdk.core.client.model.MetaCapabilities; +import com.sap.ai.sdk.core.client.model.MetaGet404Response; import java.util.HashMap; import java.util.List; @@ -31,28 +31,27 @@ import com.sap.cloud.sdk.cloudplatform.connectivity.Destination; /** -* AI Core in version 2.33.0. -* -* Provides tools to manage your scenarios and workflows in SAP AI Core. Execute pipelines as a batch job, for example to pre-process or train your models, or perform batch inference. Serve inference requests of trained models. Deploy а trained machine learning model as a web service to serve inference requests with high performance. Register your own Docker registry, synchronize your AI content from your own git repository, and register your own object store for training data and trained models. -*/ - + * AI Core in version 2.33.0. + * + * Provides tools to manage your scenarios and workflows in SAP AI Core. Execute pipelines as a batch job, for example to pre-process or train your models, or perform batch inference. Serve inference requests of trained models. Deploy а trained machine learning model as a web service to serve inference requests with high performance. Register your own Docker registry, synchronize your AI content from your own git repository, and register your own object store for training data and trained models. + */ public class MetaApi extends AbstractOpenApiService { /** - * Instantiates this API class to invoke operations on the AI Core. - * - * @param httpDestination The destination that API should be used with - */ + * Instantiates this API class to invoke operations on the AI Core. + * + * @param httpDestination The destination that API should be used with + */ public MetaApi( @Nonnull final Destination httpDestination ) { super(httpDestination); } /** - * Instantiates this API class to invoke operations on the AI Core based on a given {@link ApiClient}. - * - * @param apiClient - * ApiClient to invoke the API on - */ + * Instantiates this API class to invoke operations on the AI Core based on a given {@link ApiClient}. + * + * @param apiClient + * ApiClient to invoke the API on + */ @Beta public MetaApi( @Nonnull final ApiClient apiClient ) { @@ -60,14 +59,15 @@ public MetaApi( @Nonnull final ApiClient apiClient ) } /** - *

Meta information about API

- *

Meta information about an implementation of AI API, describing its capabilities, limits and extensions

+ *

Meta information about API

+ *

Meta information about an implementation of AI API, describing its capabilities, limits and extensions

*

200 - Description of the implementation *

404 - The specified resource was not found -* @return MetaCapabilities -* @throws OpenApiRequestException if an error occurs while attempting to invoke the API + * @return MetaCapabilities + * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public MetaCapabilities metaGet() throws OpenApiRequestException { + @Nonnull + public MetaCapabilities metaGet() throws OpenApiRequestException { final Object localVarPostBody = null; final String localVarPath = UriComponentsBuilder.fromPath("/lm/meta").build().toUriString(); diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/MetricsApi.java b/core/src/main/java/com/sap/ai/sdk/core/client/MetricsApi.java index bd9f92575..89c2617f6 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/MetricsApi.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/MetricsApi.java @@ -7,11 +7,11 @@ import com.sap.cloud.sdk.services.openapi.core.AbstractOpenApiService; import com.sap.cloud.sdk.services.openapi.apiclient.ApiClient; -import com.sap.ai.sdk.core.client.model.MetricsFind400Response ; //NOPMD -import com.sap.ai.sdk.core.client.model.TrckDeleteMetricsResponse ; //NOPMD -import com.sap.ai.sdk.core.client.model.TrckExecutionId ; //NOPMD -import com.sap.ai.sdk.core.client.model.TrckGetMetricResourceList ; //NOPMD -import com.sap.ai.sdk.core.client.model.TrckMetricResource ; //NOPMD +import com.sap.ai.sdk.core.client.model.MetricsFind400Response; +import com.sap.ai.sdk.core.client.model.TrckDeleteMetricsResponse; +import com.sap.ai.sdk.core.client.model.TrckExecutionId; +import com.sap.ai.sdk.core.client.model.TrckGetMetricResourceList; +import com.sap.ai.sdk.core.client.model.TrckMetricResource; import java.util.HashMap; import java.util.List; @@ -34,28 +34,27 @@ import com.sap.cloud.sdk.cloudplatform.connectivity.Destination; /** -* AI Core in version 2.33.0. -* -* Provides tools to manage your scenarios and workflows in SAP AI Core. Execute pipelines as a batch job, for example to pre-process or train your models, or perform batch inference. Serve inference requests of trained models. Deploy а trained machine learning model as a web service to serve inference requests with high performance. Register your own Docker registry, synchronize your AI content from your own git repository, and register your own object store for training data and trained models. -*/ - + * AI Core in version 2.33.0. + * + * Provides tools to manage your scenarios and workflows in SAP AI Core. Execute pipelines as a batch job, for example to pre-process or train your models, or perform batch inference. Serve inference requests of trained models. Deploy а trained machine learning model as a web service to serve inference requests with high performance. Register your own Docker registry, synchronize your AI content from your own git repository, and register your own object store for training data and trained models. + */ public class MetricsApi extends AbstractOpenApiService { /** - * Instantiates this API class to invoke operations on the AI Core. - * - * @param httpDestination The destination that API should be used with - */ + * Instantiates this API class to invoke operations on the AI Core. + * + * @param httpDestination The destination that API should be used with + */ public MetricsApi( @Nonnull final Destination httpDestination ) { super(httpDestination); } /** - * Instantiates this API class to invoke operations on the AI Core based on a given {@link ApiClient}. - * - * @param apiClient - * ApiClient to invoke the API on - */ + * Instantiates this API class to invoke operations on the AI Core based on a given {@link ApiClient}. + * + * @param apiClient + * ApiClient to invoke the API on + */ @Beta public MetricsApi( @Nonnull final ApiClient apiClient ) { @@ -63,18 +62,19 @@ public MetricsApi( @Nonnull final ApiClient apiClient ) } /** - *

Delete metrics, tags, or labels

- *

Delete metrics, tags, or labels associated with an execution.

+ *

Delete metrics, tags, or labels

+ *

Delete metrics, tags, or labels associated with an execution.

*

200 - Metric Resource was successfully deleted *

404 - The specified resource was not found -* @param aiResourceGroup - Specify a resource group id -* @param executionId - The Id of an execution -* @return TrckDeleteMetricsResponse -* @throws OpenApiRequestException if an error occurs while attempting to invoke the API + * @param aiResourceGroup + * Specify a resource group id + * @param executionId + * The Id of an execution + * @return TrckDeleteMetricsResponse + * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public TrckDeleteMetricsResponse metricsDelete( @Nonnull final String aiResourceGroup, @Nonnull final TrckExecutionId executionId) throws OpenApiRequestException { + @Nonnull + public TrckDeleteMetricsResponse metricsDelete( @Nonnull final String aiResourceGroup, @Nonnull final TrckExecutionId executionId) throws OpenApiRequestException { final Object localVarPostBody = null; // verify the required parameter 'aiResourceGroup' is set @@ -128,7 +128,8 @@ executionIds parameter allows filtering of metric resource using single or multi * @return TrckGetMetricResourceList * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public TrckGetMetricResourceList metricsFind( @Nonnull final String aiResourceGroup, @Nullable final String $filter, @Nullable final List executionIds, @Nullable final List $select) throws OpenApiRequestException { + @Nonnull + public TrckGetMetricResourceList metricsFind( @Nonnull final String aiResourceGroup, @Nullable final String $filter, @Nullable final List executionIds, @Nullable final List $select) throws OpenApiRequestException { final Object localVarPostBody = null; // verify the required parameter 'aiResourceGroup' is set @@ -164,33 +165,35 @@ executionIds parameter allows filtering of metric resource using single or multi } /** - *

Get metrics according to specified filter conditions.

- *

Retrieve metrics, labels, or tags according to filter conditions. One query parameter is mandatory, either execution ID or filter. Use up to 10 execution IDs in a query parameter.

+ *

Get metrics according to specified filter conditions.

+ *

Retrieve metrics, labels, or tags according to filter conditions. One query parameter is mandatory, either execution ID or filter. Use up to 10 execution IDs in a query parameter.

*

200 - List of tracking metadata, where each item includes metrics, labels, tags and customInfo. If $select query parameter is specified, each item will include only the resources specified in $select. *

400 - The specification of the resource was incorrect *

501 - Operation is not Supported. -* @param aiResourceGroup - Specify a resource group id -* @return TrckGetMetricResourceList -* @throws OpenApiRequestException if an error occurs while attempting to invoke the API + * @param aiResourceGroup + * Specify a resource group id + * @return TrckGetMetricResourceList + * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public TrckGetMetricResourceList metricsFind( @Nonnull final String aiResourceGroup) throws OpenApiRequestException { + @Nonnull + public TrckGetMetricResourceList metricsFind( @Nonnull final String aiResourceGroup) throws OpenApiRequestException { return metricsFind(aiResourceGroup, null, null, null); } /** - *

Create or update metrics, tags, or labels

- *

Update or create metrics, tags, or labels associated with an execution.

+ *

Create or update metrics, tags, or labels

+ *

Update or create metrics, tags, or labels associated with an execution.

*

204 - Metrics was successfully updated/created *

400 - The specification of the resource was incorrect *

413 - request entity is larger than limits defined by server. -* @param aiResourceGroup - Specify a resource group id -* @param trckMetricResource - The value for the parameter trckMetricResource -* @return An OpenApiResponse containing the status code of the HttpResponse. -* @throws OpenApiRequestException if an error occurs while attempting to invoke the API + * @param aiResourceGroup + * Specify a resource group id + * @param trckMetricResource + * The value for the parameter trckMetricResource + * @return An OpenApiResponse containing the status code of the HttpResponse. + * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nonnull public OpenApiResponse metricsPatch( @Nonnull final String aiResourceGroup, @Nonnull final TrckMetricResource trckMetricResource) throws OpenApiRequestException { + @Nonnull + public OpenApiResponse metricsPatch( @Nonnull final String aiResourceGroup, @Nonnull final TrckMetricResource trckMetricResource) throws OpenApiRequestException { final Object localVarPostBody = trckMetricResource; // verify the required parameter 'aiResourceGroup' is set diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/ObjectStoreSecretApi.java b/core/src/main/java/com/sap/ai/sdk/core/client/ObjectStoreSecretApi.java index 4aad9f46c..c35b222e1 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/ObjectStoreSecretApi.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/ObjectStoreSecretApi.java @@ -7,14 +7,14 @@ import com.sap.cloud.sdk.services.openapi.core.AbstractOpenApiService; import com.sap.cloud.sdk.services.openapi.apiclient.ApiClient; -import com.sap.ai.sdk.core.client.model.BckndErrorResponse ; //NOPMD -import com.sap.ai.sdk.core.client.model.BckndobjectStoreSecretCreationResponse ; //NOPMD -import com.sap.ai.sdk.core.client.model.BckndobjectStoreSecretDeletionResponse ; //NOPMD -import com.sap.ai.sdk.core.client.model.BckndobjectStoreSecretModificationResponse ; //NOPMD -import com.sap.ai.sdk.core.client.model.BckndobjectStoreSecretStatus ; //NOPMD -import com.sap.ai.sdk.core.client.model.BckndobjectStoreSecretStatusResponse ; //NOPMD -import com.sap.ai.sdk.core.client.model.BckndobjectStoreSecretWithSensitiveDataRequest ; //NOPMD -import com.sap.ai.sdk.core.client.model.BckndobjectStoreSecretWithSensitiveDataRequestForPostCall ; //NOPMD +import com.sap.ai.sdk.core.client.model.BckndErrorResponse; +import com.sap.ai.sdk.core.client.model.BckndobjectStoreSecretCreationResponse; +import com.sap.ai.sdk.core.client.model.BckndobjectStoreSecretDeletionResponse; +import com.sap.ai.sdk.core.client.model.BckndobjectStoreSecretModificationResponse; +import com.sap.ai.sdk.core.client.model.BckndobjectStoreSecretStatus; +import com.sap.ai.sdk.core.client.model.BckndobjectStoreSecretStatusResponse; +import com.sap.ai.sdk.core.client.model.BckndobjectStoreSecretWithSensitiveDataRequest; +import com.sap.ai.sdk.core.client.model.BckndobjectStoreSecretWithSensitiveDataRequestForPostCall; import java.util.HashMap; import java.util.List; @@ -37,28 +37,27 @@ import com.sap.cloud.sdk.cloudplatform.connectivity.Destination; /** -* AI Core in version 2.33.0. -* -* Provides tools to manage your scenarios and workflows in SAP AI Core. Execute pipelines as a batch job, for example to pre-process or train your models, or perform batch inference. Serve inference requests of trained models. Deploy а trained machine learning model as a web service to serve inference requests with high performance. Register your own Docker registry, synchronize your AI content from your own git repository, and register your own object store for training data and trained models. -*/ - + * AI Core in version 2.33.0. + * + * Provides tools to manage your scenarios and workflows in SAP AI Core. Execute pipelines as a batch job, for example to pre-process or train your models, or perform batch inference. Serve inference requests of trained models. Deploy а trained machine learning model as a web service to serve inference requests with high performance. Register your own Docker registry, synchronize your AI content from your own git repository, and register your own object store for training data and trained models. + */ public class ObjectStoreSecretApi extends AbstractOpenApiService { /** - * Instantiates this API class to invoke operations on the AI Core. - * - * @param httpDestination The destination that API should be used with - */ + * Instantiates this API class to invoke operations on the AI Core. + * + * @param httpDestination The destination that API should be used with + */ public ObjectStoreSecretApi( @Nonnull final Destination httpDestination ) { super(httpDestination); } /** - * Instantiates this API class to invoke operations on the AI Core based on a given {@link ApiClient}. - * - * @param apiClient - * ApiClient to invoke the API on - */ + * Instantiates this API class to invoke operations on the AI Core based on a given {@link ApiClient}. + * + * @param apiClient + * ApiClient to invoke the API on + */ @Beta public ObjectStoreSecretApi( @Nonnull final ApiClient apiClient ) { @@ -81,12 +80,13 @@ public ObjectStoreSecretApi( @Nonnull final ApiClient apiClient ) * @return BckndobjectStoreSecretCreationResponse * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public BckndobjectStoreSecretCreationResponse storeSecretsCreate( @Nonnull final BckndobjectStoreSecretWithSensitiveDataRequestForPostCall bckndobjectStoreSecretWithSensitiveDataRequestForPostCall, @Nullable final String authorization, @Nullable final String aiResourceGroup) throws OpenApiRequestException { + @Nonnull + public BckndobjectStoreSecretCreationResponse kubesubmitV4ObjectStoreSecretsCreate( @Nonnull final BckndobjectStoreSecretWithSensitiveDataRequestForPostCall bckndobjectStoreSecretWithSensitiveDataRequestForPostCall, @Nullable final String authorization, @Nullable final String aiResourceGroup) throws OpenApiRequestException { final Object localVarPostBody = bckndobjectStoreSecretWithSensitiveDataRequestForPostCall; // verify the required parameter 'bckndobjectStoreSecretWithSensitiveDataRequestForPostCall' is set if (bckndobjectStoreSecretWithSensitiveDataRequestForPostCall == null) { - throw new OpenApiRequestException("Missing the required parameter 'bckndobjectStoreSecretWithSensitiveDataRequestForPostCall' when calling storeSecretsCreate"); + throw new OpenApiRequestException("Missing the required parameter 'bckndobjectStoreSecretWithSensitiveDataRequestForPostCall' when calling kubesubmitV4ObjectStoreSecretsCreate"); } final String localVarPath = UriComponentsBuilder.fromPath("/admin/objectStoreSecrets").build().toUriString(); @@ -116,18 +116,19 @@ public ObjectStoreSecretApi( @Nonnull final ApiClient apiClient ) } /** - *

Create a secret

- *

Create a secret based on the configuration in the request body

+ *

Create a secret

+ *

Create a secret based on the configuration in the request body

*

202 - The request to create a k8s secret based on the given configuration has been accepted. *

400 - One of the following failure cases has occurred: <ul> <li> Neither JSON nor YAML was able to be parsed. <li> The request was invalidly formatted *

0 - HTTP status codes 401, 403 or 500. Response body contains further details. -* @param bckndobjectStoreSecretWithSensitiveDataRequestForPostCall - The value for the parameter bckndobjectStoreSecretWithSensitiveDataRequestForPostCall -* @return BckndobjectStoreSecretCreationResponse -* @throws OpenApiRequestException if an error occurs while attempting to invoke the API + * @param bckndobjectStoreSecretWithSensitiveDataRequestForPostCall + * The value for the parameter bckndobjectStoreSecretWithSensitiveDataRequestForPostCall + * @return BckndobjectStoreSecretCreationResponse + * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public BckndobjectStoreSecretCreationResponse storeSecretsCreate( @Nonnull final BckndobjectStoreSecretWithSensitiveDataRequestForPostCall bckndobjectStoreSecretWithSensitiveDataRequestForPostCall) throws OpenApiRequestException { - return storeSecretsCreate(bckndobjectStoreSecretWithSensitiveDataRequestForPostCall, null, null); + @Nonnull + public BckndobjectStoreSecretCreationResponse kubesubmitV4ObjectStoreSecretsCreate( @Nonnull final BckndobjectStoreSecretWithSensitiveDataRequestForPostCall bckndobjectStoreSecretWithSensitiveDataRequestForPostCall) throws OpenApiRequestException { + return kubesubmitV4ObjectStoreSecretsCreate(bckndobjectStoreSecretWithSensitiveDataRequestForPostCall, null, null); } /** @@ -146,12 +147,13 @@ public ObjectStoreSecretApi( @Nonnull final ApiClient apiClient ) * @return BckndobjectStoreSecretDeletionResponse * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public BckndobjectStoreSecretDeletionResponse storeSecretsDelete( @Nonnull final String objectStoreName, @Nullable final String authorization, @Nullable final String aiResourceGroup) throws OpenApiRequestException { + @Nonnull + public BckndobjectStoreSecretDeletionResponse kubesubmitV4ObjectStoreSecretsDelete( @Nonnull final String objectStoreName, @Nullable final String authorization, @Nullable final String aiResourceGroup) throws OpenApiRequestException { final Object localVarPostBody = null; // verify the required parameter 'objectStoreName' is set if (objectStoreName == null) { - throw new OpenApiRequestException("Missing the required parameter 'objectStoreName' when calling storeSecretsDelete"); + throw new OpenApiRequestException("Missing the required parameter 'objectStoreName' when calling kubesubmitV4ObjectStoreSecretsDelete"); } // create path and map variables @@ -182,19 +184,20 @@ public ObjectStoreSecretApi( @Nonnull final ApiClient apiClient ) } /** - *

Delete object store secret

- *

Delete a secret with the name of objectStoreName if it exists.

+ *

Delete object store secret

+ *

Delete a secret with the name of objectStoreName if it exists.

*

202 - The request to delete the secret has been accepted. *

404 - The specified resource was not found *

400 - The request was malformed and could thus not be processed. *

0 - HTTP status codes 401, 403 or 500. Response body contains further details. -* @param objectStoreName - Name of the object store for the secret. -* @return BckndobjectStoreSecretDeletionResponse -* @throws OpenApiRequestException if an error occurs while attempting to invoke the API + * @param objectStoreName + * Name of the object store for the secret. + * @return BckndobjectStoreSecretDeletionResponse + * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public BckndobjectStoreSecretDeletionResponse storeSecretsDelete( @Nonnull final String objectStoreName) throws OpenApiRequestException { - return storeSecretsDelete(objectStoreName, null, null); + @Nonnull + public BckndobjectStoreSecretDeletionResponse kubesubmitV4ObjectStoreSecretsDelete( @Nonnull final String objectStoreName) throws OpenApiRequestException { + return kubesubmitV4ObjectStoreSecretsDelete(objectStoreName, null, null); } /** @@ -213,12 +216,13 @@ public ObjectStoreSecretApi( @Nonnull final ApiClient apiClient ) * @return BckndobjectStoreSecretStatus * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public BckndobjectStoreSecretStatus storeSecretsGet( @Nonnull final String objectStoreName, @Nullable final String authorization, @Nullable final String aiResourceGroup) throws OpenApiRequestException { + @Nonnull + public BckndobjectStoreSecretStatus kubesubmitV4ObjectStoreSecretsGet( @Nonnull final String objectStoreName, @Nullable final String authorization, @Nullable final String aiResourceGroup) throws OpenApiRequestException { final Object localVarPostBody = null; // verify the required parameter 'objectStoreName' is set if (objectStoreName == null) { - throw new OpenApiRequestException("Missing the required parameter 'objectStoreName' when calling storeSecretsGet"); + throw new OpenApiRequestException("Missing the required parameter 'objectStoreName' when calling kubesubmitV4ObjectStoreSecretsGet"); } // create path and map variables @@ -249,19 +253,20 @@ public ObjectStoreSecretApi( @Nonnull final ApiClient apiClient ) } /** - *

Returns the of metadata of secrets which match the query parameter.

- *

This retrieves the metadata of the stored secret which match the parameter objectStoreName. The fetched secret is constructed like objectStoreName-object-store-secret The base64 encoded field for the stored secret is not returned.

+ *

Returns the of metadata of secrets which match the query parameter.

+ *

This retrieves the metadata of the stored secret which match the parameter objectStoreName. The fetched secret is constructed like objectStoreName-object-store-secret The base64 encoded field for the stored secret is not returned.

*

200 - The request was processed successfully and the metadata of the of stored secrets wil be returned. *

400 - The request was malformed and could thus not be processed. *

404 - The specified resource was not found *

0 - HTTP status codes 401, 403 or 500. Response body contains further details. -* @param objectStoreName - Name of the object store for the secret. -* @return BckndobjectStoreSecretStatus -* @throws OpenApiRequestException if an error occurs while attempting to invoke the API + * @param objectStoreName + * Name of the object store for the secret. + * @return BckndobjectStoreSecretStatus + * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public BckndobjectStoreSecretStatus storeSecretsGet( @Nonnull final String objectStoreName) throws OpenApiRequestException { - return storeSecretsGet(objectStoreName, null, null); + @Nonnull + public BckndobjectStoreSecretStatus kubesubmitV4ObjectStoreSecretsGet( @Nonnull final String objectStoreName) throws OpenApiRequestException { + return kubesubmitV4ObjectStoreSecretsGet(objectStoreName, null, null); } /** @@ -282,17 +287,18 @@ public ObjectStoreSecretApi( @Nonnull final ApiClient apiClient ) * @return BckndobjectStoreSecretModificationResponse * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public BckndobjectStoreSecretModificationResponse storeSecretsPatch( @Nonnull final String objectStoreName, @Nonnull final BckndobjectStoreSecretWithSensitiveDataRequest bckndobjectStoreSecretWithSensitiveDataRequest, @Nullable final String authorization, @Nullable final String aiResourceGroup) throws OpenApiRequestException { + @Nonnull + public BckndobjectStoreSecretModificationResponse kubesubmitV4ObjectStoreSecretsPatch( @Nonnull final String objectStoreName, @Nonnull final BckndobjectStoreSecretWithSensitiveDataRequest bckndobjectStoreSecretWithSensitiveDataRequest, @Nullable final String authorization, @Nullable final String aiResourceGroup) throws OpenApiRequestException { final Object localVarPostBody = bckndobjectStoreSecretWithSensitiveDataRequest; // verify the required parameter 'objectStoreName' is set if (objectStoreName == null) { - throw new OpenApiRequestException("Missing the required parameter 'objectStoreName' when calling storeSecretsPatch"); + throw new OpenApiRequestException("Missing the required parameter 'objectStoreName' when calling kubesubmitV4ObjectStoreSecretsPatch"); } // verify the required parameter 'bckndobjectStoreSecretWithSensitiveDataRequest' is set if (bckndobjectStoreSecretWithSensitiveDataRequest == null) { - throw new OpenApiRequestException("Missing the required parameter 'bckndobjectStoreSecretWithSensitiveDataRequest' when calling storeSecretsPatch"); + throw new OpenApiRequestException("Missing the required parameter 'bckndobjectStoreSecretWithSensitiveDataRequest' when calling kubesubmitV4ObjectStoreSecretsPatch"); } // create path and map variables @@ -325,21 +331,22 @@ public ObjectStoreSecretApi( @Nonnull final ApiClient apiClient ) } /** - *

Update object store secret

- *

Update a secret with name of objectStoreName if it exists.

+ *

Update object store secret

+ *

Update a secret with name of objectStoreName if it exists.

*

202 - The request to update the secret based on the given configuration has been accepted. *

404 - The specified resource was not found *

400 - The request was malformed and could thus not be processed. *

0 - HTTP status codes 401, 403 or 500. Response body contains further details. -* @param objectStoreName - Name of the object store for the secret. -* @param bckndobjectStoreSecretWithSensitiveDataRequest - The value for the parameter bckndobjectStoreSecretWithSensitiveDataRequest -* @return BckndobjectStoreSecretModificationResponse -* @throws OpenApiRequestException if an error occurs while attempting to invoke the API + * @param objectStoreName + * Name of the object store for the secret. + * @param bckndobjectStoreSecretWithSensitiveDataRequest + * The value for the parameter bckndobjectStoreSecretWithSensitiveDataRequest + * @return BckndobjectStoreSecretModificationResponse + * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public BckndobjectStoreSecretModificationResponse storeSecretsPatch( @Nonnull final String objectStoreName, @Nonnull final BckndobjectStoreSecretWithSensitiveDataRequest bckndobjectStoreSecretWithSensitiveDataRequest) throws OpenApiRequestException { - return storeSecretsPatch(objectStoreName, bckndobjectStoreSecretWithSensitiveDataRequest, null, null); + @Nonnull + public BckndobjectStoreSecretModificationResponse kubesubmitV4ObjectStoreSecretsPatch( @Nonnull final String objectStoreName, @Nonnull final BckndobjectStoreSecretWithSensitiveDataRequest bckndobjectStoreSecretWithSensitiveDataRequest) throws OpenApiRequestException { + return kubesubmitV4ObjectStoreSecretsPatch(objectStoreName, bckndobjectStoreSecretWithSensitiveDataRequest, null, null); } /** @@ -361,7 +368,8 @@ public ObjectStoreSecretApi( @Nonnull final ApiClient apiClient ) * @return BckndobjectStoreSecretStatusResponse * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public BckndobjectStoreSecretStatusResponse storeSecretsQuery( @Nullable final Integer $top, @Nullable final Integer $skip, @Nullable final Boolean $count, @Nullable final String authorization, @Nullable final String aiResourceGroup) throws OpenApiRequestException { + @Nonnull + public BckndobjectStoreSecretStatusResponse kubesubmitV4ObjectStoreSecretsQuery( @Nullable final Integer $top, @Nullable final Integer $skip, @Nullable final Boolean $count, @Nullable final String authorization, @Nullable final String aiResourceGroup) throws OpenApiRequestException { final Object localVarPostBody = null; final String localVarPath = UriComponentsBuilder.fromPath("/admin/objectStoreSecrets").build().toUriString(); @@ -394,15 +402,16 @@ public ObjectStoreSecretApi( @Nonnull final ApiClient apiClient ) } /** - *

Get a list of metadata of available secrets.

- *

Retrieve a list of metadata of the stored secrets.

+ *

Get a list of metadata of available secrets.

+ *

Retrieve a list of metadata of the stored secrets.

*

200 - The request was successful and the requested metadata for the secret will be returned. This includes a list of attributes of the stored secret like - creationTimestamp, namespace etc. The secret's data field is not returned. *

400 - The request was malformed and could thus not be processed. *

0 - HTTP status codes 401, 403 or 500. Response body contains further details. -* @return BckndobjectStoreSecretStatusResponse -* @throws OpenApiRequestException if an error occurs while attempting to invoke the API + * @return BckndobjectStoreSecretStatusResponse + * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public BckndobjectStoreSecretStatusResponse storeSecretsQuery() throws OpenApiRequestException { - return storeSecretsQuery(null, null, null, null, null); + @Nonnull + public BckndobjectStoreSecretStatusResponse kubesubmitV4ObjectStoreSecretsQuery() throws OpenApiRequestException { + return kubesubmitV4ObjectStoreSecretsQuery(null, null, null, null, null); } } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/RepositoryApi.java b/core/src/main/java/com/sap/ai/sdk/core/client/RepositoryApi.java index 2880bc873..09d68563f 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/RepositoryApi.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/RepositoryApi.java @@ -7,14 +7,14 @@ import com.sap.cloud.sdk.services.openapi.core.AbstractOpenApiService; import com.sap.cloud.sdk.services.openapi.apiclient.ApiClient; -import com.sap.ai.sdk.core.client.model.BckndArgoCDRepositoryCreationResponse ; //NOPMD -import com.sap.ai.sdk.core.client.model.BckndArgoCDRepositoryCredentials ; //NOPMD -import com.sap.ai.sdk.core.client.model.BckndArgoCDRepositoryData ; //NOPMD -import com.sap.ai.sdk.core.client.model.BckndArgoCDRepositoryDataResponse ; //NOPMD -import com.sap.ai.sdk.core.client.model.BckndArgoCDRepositoryDeletionResponse ; //NOPMD -import com.sap.ai.sdk.core.client.model.BckndArgoCDRepositoryDetails ; //NOPMD -import com.sap.ai.sdk.core.client.model.BckndArgoCDRepositoryModificationResponse ; //NOPMD -import com.sap.ai.sdk.core.client.model.BckndErrorResponse ; //NOPMD +import com.sap.ai.sdk.core.client.model.BckndArgoCDRepositoryCreationResponse; +import com.sap.ai.sdk.core.client.model.BckndArgoCDRepositoryCredentials; +import com.sap.ai.sdk.core.client.model.BckndArgoCDRepositoryData; +import com.sap.ai.sdk.core.client.model.BckndArgoCDRepositoryDataResponse; +import com.sap.ai.sdk.core.client.model.BckndArgoCDRepositoryDeletionResponse; +import com.sap.ai.sdk.core.client.model.BckndArgoCDRepositoryDetails; +import com.sap.ai.sdk.core.client.model.BckndArgoCDRepositoryModificationResponse; +import com.sap.ai.sdk.core.client.model.BckndErrorResponse; import java.util.HashMap; import java.util.List; @@ -37,28 +37,27 @@ import com.sap.cloud.sdk.cloudplatform.connectivity.Destination; /** -* AI Core in version 2.33.0. -* -* Provides tools to manage your scenarios and workflows in SAP AI Core. Execute pipelines as a batch job, for example to pre-process or train your models, or perform batch inference. Serve inference requests of trained models. Deploy а trained machine learning model as a web service to serve inference requests with high performance. Register your own Docker registry, synchronize your AI content from your own git repository, and register your own object store for training data and trained models. -*/ - + * AI Core in version 2.33.0. + * + * Provides tools to manage your scenarios and workflows in SAP AI Core. Execute pipelines as a batch job, for example to pre-process or train your models, or perform batch inference. Serve inference requests of trained models. Deploy а trained machine learning model as a web service to serve inference requests with high performance. Register your own Docker registry, synchronize your AI content from your own git repository, and register your own object store for training data and trained models. + */ public class RepositoryApi extends AbstractOpenApiService { /** - * Instantiates this API class to invoke operations on the AI Core. - * - * @param httpDestination The destination that API should be used with - */ + * Instantiates this API class to invoke operations on the AI Core. + * + * @param httpDestination The destination that API should be used with + */ public RepositoryApi( @Nonnull final Destination httpDestination ) { super(httpDestination); } /** - * Instantiates this API class to invoke operations on the AI Core based on a given {@link ApiClient}. - * - * @param apiClient - * ApiClient to invoke the API on - */ + * Instantiates this API class to invoke operations on the AI Core based on a given {@link ApiClient}. + * + * @param apiClient + * ApiClient to invoke the API on + */ @Beta public RepositoryApi( @Nonnull final ApiClient apiClient ) { @@ -66,66 +65,6 @@ public RepositoryApi( @Nonnull final ApiClient apiClient ) } - /** - *

List all GitOps repositories for a tenant

- *

Retrieve a list of all GitOps repositories for a tenant.

- *

200 - Returns a list of all GitOps repositories for the tenant. - *

400 - The request was malformed and could thus not be processed. - *

0 - HTTP status codes 401, 403 or 500. Response body contains further details. - * @param authorization (optional) - Authorization bearer token containing a JWT token. - * @param $top (optional) - Number of results to display - * @param $skip (optional) - Number of results to be skipped from the ordered list of results - * @param $count (optional) - When the $count field is set to false, the response contains a count of the items present in the response. When the $count field is set to true, the response contains a count of all the items present on the server, and not just the ones in the response. When the $count field is not passed, it is false by default. - * @return BckndArgoCDRepositoryDataResponse - * @throws OpenApiRequestException if an error occurs while attempting to invoke the API - */ - @Nullable public BckndArgoCDRepositoryDataResponse all( @Nullable final String authorization, @Nullable final Integer $top, @Nullable final Integer $skip, @Nullable final Boolean $count) throws OpenApiRequestException { - final Object localVarPostBody = null; - - final String localVarPath = UriComponentsBuilder.fromPath("/admin/repositories").build().toUriString(); - - final MultiValueMap localVarQueryParams = new LinkedMultiValueMap(); - final HttpHeaders localVarHeaderParams = new HttpHeaders(); - final MultiValueMap localVarFormParams = new LinkedMultiValueMap(); - - localVarQueryParams.putAll(apiClient.parameterToMultiValueMap(null, "$top", $top)); - localVarQueryParams.putAll(apiClient.parameterToMultiValueMap(null, "$skip", $skip)); - localVarQueryParams.putAll(apiClient.parameterToMultiValueMap(null, "$count", $count)); - - - if (authorization != null) - localVarHeaderParams.add("Authorization", apiClient.parameterToString(authorization)); - - final String[] localVarAccepts = { - "application/json" - }; - final List localVarAccept = apiClient.selectHeaderAccept(localVarAccepts); - final String[] localVarContentTypes = { }; - final MediaType localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes); - - final String[] localVarAuthNames = new String[] { "Oauth2" }; - - final ParameterizedTypeReference localVarReturnType = new ParameterizedTypeReference() {}; - return apiClient.invokeAPI(localVarPath, HttpMethod.GET, localVarQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAccept, localVarContentType, localVarAuthNames, localVarReturnType); - } - - /** - *

List all GitOps repositories for a tenant

- *

Retrieve a list of all GitOps repositories for a tenant.

- *

200 - Returns a list of all GitOps repositories for the tenant. - *

400 - The request was malformed and could thus not be processed. - *

0 - HTTP status codes 401, 403 or 500. Response body contains further details. -* @return BckndArgoCDRepositoryDataResponse -* @throws OpenApiRequestException if an error occurs while attempting to invoke the API - */ - @Nullable public BckndArgoCDRepositoryDataResponse all() throws OpenApiRequestException { - return all(null, null, null, null); - } - /** *

On-board a new GitOps repository

*

On-board a new GitOps repository as specified in the content payload

@@ -140,7 +79,8 @@ public RepositoryApi( @Nonnull final ApiClient apiClient ) * @return BckndArgoCDRepositoryCreationResponse * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public BckndArgoCDRepositoryCreationResponse kubesubmitV4RepositoriesCreate( @Nonnull final BckndArgoCDRepositoryData bckndArgoCDRepositoryData, @Nullable final String authorization) throws OpenApiRequestException { + @Nonnull + public BckndArgoCDRepositoryCreationResponse kubesubmitV4RepositoriesCreate( @Nonnull final BckndArgoCDRepositoryData bckndArgoCDRepositoryData, @Nullable final String authorization) throws OpenApiRequestException { final Object localVarPostBody = bckndArgoCDRepositoryData; // verify the required parameter 'bckndArgoCDRepositoryData' is set @@ -173,18 +113,19 @@ public RepositoryApi( @Nonnull final ApiClient apiClient ) } /** - *

On-board a new GitOps repository

- *

On-board a new GitOps repository as specified in the content payload

+ *

On-board a new GitOps repository

+ *

On-board a new GitOps repository as specified in the content payload

*

200 - The repository has been on-boarded *

409 - The provided repository already exists *

400 - The request was malformed and could thus not be processed. *

0 - HTTP status codes 401, 403 or 500. Response body contains further details. -* @param bckndArgoCDRepositoryData - The value for the parameter bckndArgoCDRepositoryData -* @return BckndArgoCDRepositoryCreationResponse -* @throws OpenApiRequestException if an error occurs while attempting to invoke the API + * @param bckndArgoCDRepositoryData + * The value for the parameter bckndArgoCDRepositoryData + * @return BckndArgoCDRepositoryCreationResponse + * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public BckndArgoCDRepositoryCreationResponse kubesubmitV4RepositoriesCreate( @Nonnull final BckndArgoCDRepositoryData bckndArgoCDRepositoryData) throws OpenApiRequestException { + @Nonnull + public BckndArgoCDRepositoryCreationResponse kubesubmitV4RepositoriesCreate( @Nonnull final BckndArgoCDRepositoryData bckndArgoCDRepositoryData) throws OpenApiRequestException { return kubesubmitV4RepositoriesCreate(bckndArgoCDRepositoryData, null); } @@ -202,7 +143,8 @@ public RepositoryApi( @Nonnull final ApiClient apiClient ) * @return BckndArgoCDRepositoryDeletionResponse * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public BckndArgoCDRepositoryDeletionResponse kubesubmitV4RepositoriesDelete( @Nonnull final String repositoryName, @Nullable final String authorization) throws OpenApiRequestException { + @Nonnull + public BckndArgoCDRepositoryDeletionResponse kubesubmitV4RepositoriesDelete( @Nonnull final String repositoryName, @Nullable final String authorization) throws OpenApiRequestException { final Object localVarPostBody = null; // verify the required parameter 'repositoryName' is set @@ -236,18 +178,19 @@ public RepositoryApi( @Nonnull final ApiClient apiClient ) } /** - *

Off-board a repository.

- *

Remove a repository from GitOps.

+ *

Off-board a repository.

+ *

Remove a repository from GitOps.

*

200 - The repository has been off-boarded successfully. *

404 - The specified resource was not found *

400 - The request was malformed and could thus not be processed. *

0 - HTTP status codes 401, 403 or 500. Response body contains further details. -* @param repositoryName - Name of the repository -* @return BckndArgoCDRepositoryDeletionResponse -* @throws OpenApiRequestException if an error occurs while attempting to invoke the API + * @param repositoryName + * Name of the repository + * @return BckndArgoCDRepositoryDeletionResponse + * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public BckndArgoCDRepositoryDeletionResponse kubesubmitV4RepositoriesDelete( @Nonnull final String repositoryName) throws OpenApiRequestException { + @Nonnull + public BckndArgoCDRepositoryDeletionResponse kubesubmitV4RepositoriesDelete( @Nonnull final String repositoryName) throws OpenApiRequestException { return kubesubmitV4RepositoriesDelete(repositoryName, null); } @@ -265,7 +208,8 @@ public RepositoryApi( @Nonnull final ApiClient apiClient ) * @return BckndArgoCDRepositoryDetails * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public BckndArgoCDRepositoryDetails kubesubmitV4RepositoriesGet( @Nonnull final String repositoryName, @Nullable final String authorization) throws OpenApiRequestException { + @Nonnull + public BckndArgoCDRepositoryDetails kubesubmitV4RepositoriesGet( @Nonnull final String repositoryName, @Nullable final String authorization) throws OpenApiRequestException { final Object localVarPostBody = null; // verify the required parameter 'repositoryName' is set @@ -299,21 +243,84 @@ public RepositoryApi( @Nonnull final ApiClient apiClient ) } /** - *

Get the access details for a repository

- *

Retrieve the access details for a repository if it exists.

+ *

Get the access details for a repository

+ *

Retrieve the access details for a repository if it exists.

*

200 - The repository details have been found and returned. *

400 - The request was malformed and could thus not be processed. *

404 - The specified resource was not found *

0 - HTTP status codes 401, 403 or 500. Response body contains further details. -* @param repositoryName - Name of the repository -* @return BckndArgoCDRepositoryDetails -* @throws OpenApiRequestException if an error occurs while attempting to invoke the API + * @param repositoryName + * Name of the repository + * @return BckndArgoCDRepositoryDetails + * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public BckndArgoCDRepositoryDetails kubesubmitV4RepositoriesGet( @Nonnull final String repositoryName) throws OpenApiRequestException { + @Nonnull + public BckndArgoCDRepositoryDetails kubesubmitV4RepositoriesGet( @Nonnull final String repositoryName) throws OpenApiRequestException { return kubesubmitV4RepositoriesGet(repositoryName, null); } + /** + *

List all GitOps repositories for a tenant

+ *

Retrieve a list of all GitOps repositories for a tenant.

+ *

200 - Returns a list of all GitOps repositories for the tenant. + *

400 - The request was malformed and could thus not be processed. + *

0 - HTTP status codes 401, 403 or 500. Response body contains further details. + * @param authorization (optional) + Authorization bearer token containing a JWT token. + * @param $top (optional) + Number of results to display + * @param $skip (optional) + Number of results to be skipped from the ordered list of results + * @param $count (optional) + When the $count field is set to false, the response contains a count of the items present in the response. When the $count field is set to true, the response contains a count of all the items present on the server, and not just the ones in the response. When the $count field is not passed, it is false by default. + * @return BckndArgoCDRepositoryDataResponse + * @throws OpenApiRequestException if an error occurs while attempting to invoke the API + */ + @Nonnull + public BckndArgoCDRepositoryDataResponse kubesubmitV4RepositoriesGetAll( @Nullable final String authorization, @Nullable final Integer $top, @Nullable final Integer $skip, @Nullable final Boolean $count) throws OpenApiRequestException { + final Object localVarPostBody = null; + + final String localVarPath = UriComponentsBuilder.fromPath("/admin/repositories").build().toUriString(); + + final MultiValueMap localVarQueryParams = new LinkedMultiValueMap(); + final HttpHeaders localVarHeaderParams = new HttpHeaders(); + final MultiValueMap localVarFormParams = new LinkedMultiValueMap(); + + localVarQueryParams.putAll(apiClient.parameterToMultiValueMap(null, "$top", $top)); + localVarQueryParams.putAll(apiClient.parameterToMultiValueMap(null, "$skip", $skip)); + localVarQueryParams.putAll(apiClient.parameterToMultiValueMap(null, "$count", $count)); + + + if (authorization != null) + localVarHeaderParams.add("Authorization", apiClient.parameterToString(authorization)); + + final String[] localVarAccepts = { + "application/json" + }; + final List localVarAccept = apiClient.selectHeaderAccept(localVarAccepts); + final String[] localVarContentTypes = { }; + final MediaType localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes); + + final String[] localVarAuthNames = new String[] { "Oauth2" }; + + final ParameterizedTypeReference localVarReturnType = new ParameterizedTypeReference() {}; + return apiClient.invokeAPI(localVarPath, HttpMethod.GET, localVarQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAccept, localVarContentType, localVarAuthNames, localVarReturnType); + } + + /** + *

List all GitOps repositories for a tenant

+ *

Retrieve a list of all GitOps repositories for a tenant.

+ *

200 - Returns a list of all GitOps repositories for the tenant. + *

400 - The request was malformed and could thus not be processed. + *

0 - HTTP status codes 401, 403 or 500. Response body contains further details. + * @return BckndArgoCDRepositoryDataResponse + * @throws OpenApiRequestException if an error occurs while attempting to invoke the API + */ + @Nonnull + public BckndArgoCDRepositoryDataResponse kubesubmitV4RepositoriesGetAll() throws OpenApiRequestException { + return kubesubmitV4RepositoriesGetAll(null, null, null, null); + } + /** *

Update the repository credentials.

*

Update the referenced repository credentials to synchronize a repository.

@@ -330,7 +337,8 @@ public RepositoryApi( @Nonnull final ApiClient apiClient ) * @return BckndArgoCDRepositoryModificationResponse * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public BckndArgoCDRepositoryModificationResponse kubesubmitV4RepositoriesUpdate( @Nonnull final String repositoryName, @Nonnull final BckndArgoCDRepositoryCredentials bckndArgoCDRepositoryCredentials, @Nullable final String authorization) throws OpenApiRequestException { + @Nonnull + public BckndArgoCDRepositoryModificationResponse kubesubmitV4RepositoriesUpdate( @Nonnull final String repositoryName, @Nonnull final BckndArgoCDRepositoryCredentials bckndArgoCDRepositoryCredentials, @Nullable final String authorization) throws OpenApiRequestException { final Object localVarPostBody = bckndArgoCDRepositoryCredentials; // verify the required parameter 'repositoryName' is set @@ -371,20 +379,21 @@ public RepositoryApi( @Nonnull final ApiClient apiClient ) } /** - *

Update the repository credentials.

- *

Update the referenced repository credentials to synchronize a repository.

+ *

Update the repository credentials.

+ *

Update the referenced repository credentials to synchronize a repository.

*

200 - The repository credentials have been updated and will eventually be synced. *

404 - The specified resource was not found *

400 - The request was malformed and could thus not be processed. *

0 - HTTP status codes 401, 403 or 500. Response body contains further details. -* @param repositoryName - Name of the repository -* @param bckndArgoCDRepositoryCredentials - The value for the parameter bckndArgoCDRepositoryCredentials -* @return BckndArgoCDRepositoryModificationResponse -* @throws OpenApiRequestException if an error occurs while attempting to invoke the API + * @param repositoryName + * Name of the repository + * @param bckndArgoCDRepositoryCredentials + * The value for the parameter bckndArgoCDRepositoryCredentials + * @return BckndArgoCDRepositoryModificationResponse + * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public BckndArgoCDRepositoryModificationResponse kubesubmitV4RepositoriesUpdate( @Nonnull final String repositoryName, @Nonnull final BckndArgoCDRepositoryCredentials bckndArgoCDRepositoryCredentials) throws OpenApiRequestException { + @Nonnull + public BckndArgoCDRepositoryModificationResponse kubesubmitV4RepositoriesUpdate( @Nonnull final String repositoryName, @Nonnull final BckndArgoCDRepositoryCredentials bckndArgoCDRepositoryCredentials) throws OpenApiRequestException { return kubesubmitV4RepositoriesUpdate(repositoryName, bckndArgoCDRepositoryCredentials, null); } } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/ResourceApi.java b/core/src/main/java/com/sap/ai/sdk/core/client/ResourceApi.java index 991a64aa4..c4b720485 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/ResourceApi.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/ResourceApi.java @@ -7,10 +7,10 @@ import com.sap.cloud.sdk.services.openapi.core.AbstractOpenApiService; import com.sap.cloud.sdk.services.openapi.apiclient.ApiClient; -import com.sap.ai.sdk.core.client.model.BckndErrorResponse ; //NOPMD -import com.sap.ai.sdk.core.client.model.BckndResourceGetResponse ; //NOPMD -import com.sap.ai.sdk.core.client.model.BckndResourcePatchBody ; //NOPMD -import com.sap.ai.sdk.core.client.model.BckndResourcePatchResponse ; //NOPMD +import com.sap.ai.sdk.core.client.model.BckndErrorResponse; +import com.sap.ai.sdk.core.client.model.BckndResourceGetResponse; +import com.sap.ai.sdk.core.client.model.BckndResourcePatchBody; +import com.sap.ai.sdk.core.client.model.BckndResourcePatchResponse; import java.util.HashMap; import java.util.List; @@ -33,28 +33,27 @@ import com.sap.cloud.sdk.cloudplatform.connectivity.Destination; /** -* AI Core in version 2.33.0. -* -* Provides tools to manage your scenarios and workflows in SAP AI Core. Execute pipelines as a batch job, for example to pre-process or train your models, or perform batch inference. Serve inference requests of trained models. Deploy а trained machine learning model as a web service to serve inference requests with high performance. Register your own Docker registry, synchronize your AI content from your own git repository, and register your own object store for training data and trained models. -*/ - + * AI Core in version 2.33.0. + * + * Provides tools to manage your scenarios and workflows in SAP AI Core. Execute pipelines as a batch job, for example to pre-process or train your models, or perform batch inference. Serve inference requests of trained models. Deploy а trained machine learning model as a web service to serve inference requests with high performance. Register your own Docker registry, synchronize your AI content from your own git repository, and register your own object store for training data and trained models. + */ public class ResourceApi extends AbstractOpenApiService { /** - * Instantiates this API class to invoke operations on the AI Core. - * - * @param httpDestination The destination that API should be used with - */ + * Instantiates this API class to invoke operations on the AI Core. + * + * @param httpDestination The destination that API should be used with + */ public ResourceApi( @Nonnull final Destination httpDestination ) { super(httpDestination); } /** - * Instantiates this API class to invoke operations on the AI Core based on a given {@link ApiClient}. - * - * @param apiClient - * ApiClient to invoke the API on - */ + * Instantiates this API class to invoke operations on the AI Core based on a given {@link ApiClient}. + * + * @param apiClient + * ApiClient to invoke the API on + */ @Beta public ResourceApi( @Nonnull final ApiClient apiClient ) { @@ -73,7 +72,8 @@ public ResourceApi( @Nonnull final ApiClient apiClient ) * @return BckndResourceGetResponse * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public BckndResourceGetResponse kubesubmitV4ResourcesGet( @Nullable final String authorization) throws OpenApiRequestException { + @Nonnull + public BckndResourceGetResponse kubesubmitV4ResourcesGet( @Nullable final String authorization) throws OpenApiRequestException { final Object localVarPostBody = null; final String localVarPath = UriComponentsBuilder.fromPath("/admin/resources/nodes").build().toUriString(); @@ -99,15 +99,16 @@ public ResourceApi( @Nonnull final ApiClient apiClient ) } /** - *

Get node request status corresponding to tenant

- *

Lists all hot spare nodes, used nodes and total nodes corresponding to tenant.

+ *

Get node request status corresponding to tenant

+ *

Lists all hot spare nodes, used nodes and total nodes corresponding to tenant.

*

200 - Reserved resource status were fetched *

400 - The request was malformed and could thus not be processed. *

0 - HTTP status codes 401, 403 or 500. Response body contains further details. -* @return BckndResourceGetResponse -* @throws OpenApiRequestException if an error occurs while attempting to invoke the API + * @return BckndResourceGetResponse + * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public BckndResourceGetResponse kubesubmitV4ResourcesGet() throws OpenApiRequestException { + @Nonnull + public BckndResourceGetResponse kubesubmitV4ResourcesGet() throws OpenApiRequestException { return kubesubmitV4ResourcesGet(null); } @@ -124,7 +125,8 @@ public ResourceApi( @Nonnull final ApiClient apiClient ) * @return BckndResourcePatchResponse * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public BckndResourcePatchResponse kubesubmitV4ResourcesPatch( @Nonnull final BckndResourcePatchBody bckndResourcePatchBody, @Nullable final String authorization) throws OpenApiRequestException { + @Nonnull + public BckndResourcePatchResponse kubesubmitV4ResourcesPatch( @Nonnull final BckndResourcePatchBody bckndResourcePatchBody, @Nullable final String authorization) throws OpenApiRequestException { final Object localVarPostBody = bckndResourcePatchBody; // verify the required parameter 'bckndResourcePatchBody' is set @@ -157,17 +159,18 @@ public ResourceApi( @Nonnull final ApiClient apiClient ) } /** - *

Set reserved resources corresponding to tenant

- *

Set hot spare nodes corresponding to tenant at main tenant level.

+ *

Set reserved resources corresponding to tenant

+ *

Set hot spare nodes corresponding to tenant at main tenant level.

*

200 - Reserved resource has been set. *

400 - The request was malformed and could thus not be processed. *

0 - HTTP status codes 401, 403 or 500. Response body contains further details. -* @param bckndResourcePatchBody - The value for the parameter bckndResourcePatchBody -* @return BckndResourcePatchResponse -* @throws OpenApiRequestException if an error occurs while attempting to invoke the API + * @param bckndResourcePatchBody + * The value for the parameter bckndResourcePatchBody + * @return BckndResourcePatchResponse + * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public BckndResourcePatchResponse kubesubmitV4ResourcesPatch( @Nonnull final BckndResourcePatchBody bckndResourcePatchBody) throws OpenApiRequestException { + @Nonnull + public BckndResourcePatchResponse kubesubmitV4ResourcesPatch( @Nonnull final BckndResourcePatchBody bckndResourcePatchBody) throws OpenApiRequestException { return kubesubmitV4ResourcesPatch(bckndResourcePatchBody, null); } } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/ResourceGroupApi.java b/core/src/main/java/com/sap/ai/sdk/core/client/ResourceGroupApi.java index d5a192a98..278f521a5 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/ResourceGroupApi.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/ResourceGroupApi.java @@ -7,13 +7,13 @@ import com.sap.cloud.sdk.services.openapi.core.AbstractOpenApiService; import com.sap.cloud.sdk.services.openapi.apiclient.ApiClient; -import com.sap.ai.sdk.core.client.model.BckndErrorResponse ; //NOPMD -import com.sap.ai.sdk.core.client.model.BckndResourceGroup ; //NOPMD -import com.sap.ai.sdk.core.client.model.BckndResourceGroupBase ; //NOPMD -import com.sap.ai.sdk.core.client.model.BckndResourceGroupDeletionResponse ; //NOPMD -import com.sap.ai.sdk.core.client.model.BckndResourceGroupList ; //NOPMD -import com.sap.ai.sdk.core.client.model.BckndResourceGroupPatchRequest ; //NOPMD -import com.sap.ai.sdk.core.client.model.BckndResourceGroupsPostRequest ; //NOPMD +import com.sap.ai.sdk.core.client.model.BckndErrorResponse; +import com.sap.ai.sdk.core.client.model.BckndResourceGroup; +import com.sap.ai.sdk.core.client.model.BckndResourceGroupBase; +import com.sap.ai.sdk.core.client.model.BckndResourceGroupDeletionResponse; +import com.sap.ai.sdk.core.client.model.BckndResourceGroupList; +import com.sap.ai.sdk.core.client.model.BckndResourceGroupPatchRequest; +import com.sap.ai.sdk.core.client.model.BckndResourceGroupsPostRequest; import java.util.HashMap; import java.util.List; @@ -36,28 +36,27 @@ import com.sap.cloud.sdk.cloudplatform.connectivity.Destination; /** -* AI Core in version 2.33.0. -* -* Provides tools to manage your scenarios and workflows in SAP AI Core. Execute pipelines as a batch job, for example to pre-process or train your models, or perform batch inference. Serve inference requests of trained models. Deploy а trained machine learning model as a web service to serve inference requests with high performance. Register your own Docker registry, synchronize your AI content from your own git repository, and register your own object store for training data and trained models. -*/ - + * AI Core in version 2.33.0. + * + * Provides tools to manage your scenarios and workflows in SAP AI Core. Execute pipelines as a batch job, for example to pre-process or train your models, or perform batch inference. Serve inference requests of trained models. Deploy а trained machine learning model as a web service to serve inference requests with high performance. Register your own Docker registry, synchronize your AI content from your own git repository, and register your own object store for training data and trained models. + */ public class ResourceGroupApi extends AbstractOpenApiService { /** - * Instantiates this API class to invoke operations on the AI Core. - * - * @param httpDestination The destination that API should be used with - */ + * Instantiates this API class to invoke operations on the AI Core. + * + * @param httpDestination The destination that API should be used with + */ public ResourceGroupApi( @Nonnull final Destination httpDestination ) { super(httpDestination); } /** - * Instantiates this API class to invoke operations on the AI Core based on a given {@link ApiClient}. - * - * @param apiClient - * ApiClient to invoke the API on - */ + * Instantiates this API class to invoke operations on the AI Core based on a given {@link ApiClient}. + * + * @param apiClient + * ApiClient to invoke the API on + */ @Beta public ResourceGroupApi( @Nonnull final ApiClient apiClient ) { @@ -65,76 +64,6 @@ public ResourceGroupApi( @Nonnull final ApiClient apiClient ) } - /** - *

Gets all resource groups of a given tenant

- *

Retrieve a list of resource groups for a given tenant.

- *

200 - A list of resource groups - *

400 - The request was malformed and could thus not be processed. - *

0 - HTTP status codes 401, 403 or 500. Response body contains further details. - * @param authorization (optional) - Authorization bearer token containing a JWT token. - * @param $top (optional) - Number of results to display - * @param $skip (optional) - Number of results to be skipped from the ordered list of results - * @param $count (optional) - When the $count field is set to false, the response contains a count of the items present in the response. When the $count field is set to true, the response contains a count of all the items present on the server, and not just the ones in the response. When the $count field is not passed, it is false by default. - * @param prefer (optional) - <p> One can use the HTTP Prefer header to configure the \"maxpagesize\" of this endpoint. \"maxpagesize\" is the maximum number of resourcegroups to return for a request to this endpoint. If more resourcegroups exist, the response will include a \"Link\" HTTP header. This header will include the URL for getting the next batch of resourcegroups. <p> The \"maxpagesize\" preference and the \"continueToken\" parameter together enable splitting a large list of resourcegroups to small chunks. This feature can help to reduce the response time of a single list-resourcegroup request when the client has a large number resourcegroups in the system. <p> By default, the \"maxpagesize\" is not set, which means retrieving all resourcegroups in a single request. <p> Setting a maxpagesize may return fewer than the requested amount of resourcegroups (up to zero) in the event all requested resourcegroups are filtered out. The client should only use the presence of the Link header in the response to determine whether more resourcegroups are available. If \"maxpagesize\" is specified and the response does not include a Link header, the client may assume that no more resourcegroups are available. - * @param continueToken (optional) - <p> A token for getting more resourcegroups from the service. It is encoded in the URL returned via a \"Link\" HTTP header of a response of this endpoint if the original request specified \"maxpagesize\" in a \"Prefer\" HTTP header and the number of available resourcegroups is larger than the number specified by \"maxpagesize\". Do <b>NOT</b> use the \"continueToken\" parameter in other scenarios. <p> The server may reject a continue token that it does not recognize. If the specified continue token is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error. In this case, the client must restart their list request without the continue token. - * @param labelSelector (optional - filter by labels. Pass in pairs in the form of 'key=value' and / or 'key!=value' separated by commas and the result will be filtered to only those scenarios containing and / or not containing all given key/values - * @return BckndResourceGroupList - * @throws OpenApiRequestException if an error occurs while attempting to invoke the API - */ - @Nullable public BckndResourceGroupList all( @Nullable final String authorization, @Nullable final Integer $top, @Nullable final Integer $skip, @Nullable final Boolean $count, @Nullable final String prefer, @Nullable final String continueToken, @Nullable final List labelSelector) throws OpenApiRequestException { - final Object localVarPostBody = null; - - final String localVarPath = UriComponentsBuilder.fromPath("/admin/resourceGroups").build().toUriString(); - - final MultiValueMap localVarQueryParams = new LinkedMultiValueMap(); - final HttpHeaders localVarHeaderParams = new HttpHeaders(); - final MultiValueMap localVarFormParams = new LinkedMultiValueMap(); - - localVarQueryParams.putAll(apiClient.parameterToMultiValueMap(null, "$top", $top)); - localVarQueryParams.putAll(apiClient.parameterToMultiValueMap(null, "$skip", $skip)); - localVarQueryParams.putAll(apiClient.parameterToMultiValueMap(null, "$count", $count)); - localVarQueryParams.putAll(apiClient.parameterToMultiValueMap(null, "continueToken", continueToken)); - localVarQueryParams.putAll(apiClient.parameterToMultiValueMap(ApiClient.CollectionFormat.valueOf("csv".toUpperCase(Locale.ROOT)), "labelSelector", labelSelector)); - - - if (authorization != null) - localVarHeaderParams.add("Authorization", apiClient.parameterToString(authorization)); - if (prefer != null) - localVarHeaderParams.add("Prefer", apiClient.parameterToString(prefer)); - - final String[] localVarAccepts = { - "application/json" - }; - final List localVarAccept = apiClient.selectHeaderAccept(localVarAccepts); - final String[] localVarContentTypes = { }; - final MediaType localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes); - - final String[] localVarAuthNames = new String[] { "Oauth2" }; - - final ParameterizedTypeReference localVarReturnType = new ParameterizedTypeReference() {}; - return apiClient.invokeAPI(localVarPath, HttpMethod.GET, localVarQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAccept, localVarContentType, localVarAuthNames, localVarReturnType); - } - - /** - *

Gets all resource groups of a given tenant

- *

Retrieve a list of resource groups for a given tenant.

- *

200 - A list of resource groups - *

400 - The request was malformed and could thus not be processed. - *

0 - HTTP status codes 401, 403 or 500. Response body contains further details. -* @return BckndResourceGroupList -* @throws OpenApiRequestException if an error occurs while attempting to invoke the API - */ - @Nullable public BckndResourceGroupList all() throws OpenApiRequestException { - return all(null, null, null, null, null, null, null); - } - /** *

Creates a resource group

*

Create resource group to a given main tenant. The length of resource group id must be between 3 and 253.

@@ -148,7 +77,8 @@ public ResourceGroupApi( @Nonnull final ApiClient apiClient ) * @return BckndResourceGroupBase * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public BckndResourceGroupBase kubesubmitV4ResourcegroupsCreate( @Nonnull final BckndResourceGroupsPostRequest bckndResourceGroupsPostRequest, @Nullable final String authorization) throws OpenApiRequestException { + @Nonnull + public BckndResourceGroupBase kubesubmitV4ResourcegroupsCreate( @Nonnull final BckndResourceGroupsPostRequest bckndResourceGroupsPostRequest, @Nullable final String authorization) throws OpenApiRequestException { final Object localVarPostBody = bckndResourceGroupsPostRequest; // verify the required parameter 'bckndResourceGroupsPostRequest' is set @@ -181,17 +111,18 @@ public ResourceGroupApi( @Nonnull final ApiClient apiClient ) } /** - *

Creates a resource group

- *

Create resource group to a given main tenant. The length of resource group id must be between 3 and 253.

+ *

Creates a resource group

+ *

Create resource group to a given main tenant. The length of resource group id must be between 3 and 253.

*

202 - A resource group base object *

400 - The request was malformed and could thus not be processed. *

0 - HTTP status codes 401, 403 or 500. Response body contains further details. -* @param bckndResourceGroupsPostRequest - The value for the parameter bckndResourceGroupsPostRequest -* @return BckndResourceGroupBase -* @throws OpenApiRequestException if an error occurs while attempting to invoke the API + * @param bckndResourceGroupsPostRequest + * The value for the parameter bckndResourceGroupsPostRequest + * @return BckndResourceGroupBase + * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public BckndResourceGroupBase kubesubmitV4ResourcegroupsCreate( @Nonnull final BckndResourceGroupsPostRequest bckndResourceGroupsPostRequest) throws OpenApiRequestException { + @Nonnull + public BckndResourceGroupBase kubesubmitV4ResourcegroupsCreate( @Nonnull final BckndResourceGroupsPostRequest bckndResourceGroupsPostRequest) throws OpenApiRequestException { return kubesubmitV4ResourcegroupsCreate(bckndResourceGroupsPostRequest, null); } @@ -209,7 +140,8 @@ public ResourceGroupApi( @Nonnull final ApiClient apiClient ) * @return BckndResourceGroupDeletionResponse * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public BckndResourceGroupDeletionResponse kubesubmitV4ResourcegroupsDelete( @Nonnull final String resourceGroupId, @Nullable final String authorization) throws OpenApiRequestException { + @Nonnull + public BckndResourceGroupDeletionResponse kubesubmitV4ResourcegroupsDelete( @Nonnull final String resourceGroupId, @Nullable final String authorization) throws OpenApiRequestException { final Object localVarPostBody = null; // verify the required parameter 'resourceGroupId' is set @@ -243,18 +175,19 @@ public ResourceGroupApi( @Nonnull final ApiClient apiClient ) } /** - *

Delete a resource group

- *

Delete a resource group of a given main tenant.

+ *

Delete a resource group

+ *

Delete a resource group of a given main tenant.

*

202 - The deletion of the resource group has been scheduled successfully *

404 - The specified resource was not found *

400 - The request was malformed and could thus not be processed. *

0 - HTTP status codes 401, 403 or 500. Response body contains further details. -* @param resourceGroupId - Resource group identifier -* @return BckndResourceGroupDeletionResponse -* @throws OpenApiRequestException if an error occurs while attempting to invoke the API + * @param resourceGroupId + * Resource group identifier + * @return BckndResourceGroupDeletionResponse + * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public BckndResourceGroupDeletionResponse kubesubmitV4ResourcegroupsDelete( @Nonnull final String resourceGroupId) throws OpenApiRequestException { + @Nonnull + public BckndResourceGroupDeletionResponse kubesubmitV4ResourcegroupsDelete( @Nonnull final String resourceGroupId) throws OpenApiRequestException { return kubesubmitV4ResourcegroupsDelete(resourceGroupId, null); } @@ -272,7 +205,8 @@ public ResourceGroupApi( @Nonnull final ApiClient apiClient ) * @return BckndResourceGroup * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public BckndResourceGroup kubesubmitV4ResourcegroupsGet( @Nonnull final String resourceGroupId, @Nullable final String authorization) throws OpenApiRequestException { + @Nonnull + public BckndResourceGroup kubesubmitV4ResourcegroupsGet( @Nonnull final String resourceGroupId, @Nullable final String authorization) throws OpenApiRequestException { final Object localVarPostBody = null; // verify the required parameter 'resourceGroupId' is set @@ -306,21 +240,94 @@ public ResourceGroupApi( @Nonnull final ApiClient apiClient ) } /** - *

Get a resource group

- *

Get a resource group of a given main tenant.

+ *

Get a resource group

+ *

Get a resource group of a given main tenant.

*

200 - A resource group object *

400 - The request was malformed and could thus not be processed. *

404 - The specified resource was not found *

0 - HTTP status codes 401, 403 or 500. Response body contains further details. -* @param resourceGroupId - Resource group identifier -* @return BckndResourceGroup -* @throws OpenApiRequestException if an error occurs while attempting to invoke the API + * @param resourceGroupId + * Resource group identifier + * @return BckndResourceGroup + * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public BckndResourceGroup kubesubmitV4ResourcegroupsGet( @Nonnull final String resourceGroupId) throws OpenApiRequestException { + @Nonnull + public BckndResourceGroup kubesubmitV4ResourcegroupsGet( @Nonnull final String resourceGroupId) throws OpenApiRequestException { return kubesubmitV4ResourcegroupsGet(resourceGroupId, null); } + /** + *

Gets all resource groups of a given tenant

+ *

Retrieve a list of resource groups for a given tenant.

+ *

200 - A list of resource groups + *

400 - The request was malformed and could thus not be processed. + *

0 - HTTP status codes 401, 403 or 500. Response body contains further details. + * @param authorization (optional) + Authorization bearer token containing a JWT token. + * @param $top (optional) + Number of results to display + * @param $skip (optional) + Number of results to be skipped from the ordered list of results + * @param $count (optional) + When the $count field is set to false, the response contains a count of the items present in the response. When the $count field is set to true, the response contains a count of all the items present on the server, and not just the ones in the response. When the $count field is not passed, it is false by default. + * @param prefer (optional) + <p> One can use the HTTP Prefer header to configure the \"maxpagesize\" of this endpoint. \"maxpagesize\" is the maximum number of resourcegroups to return for a request to this endpoint. If more resourcegroups exist, the response will include a \"Link\" HTTP header. This header will include the URL for getting the next batch of resourcegroups. <p> The \"maxpagesize\" preference and the \"continueToken\" parameter together enable splitting a large list of resourcegroups to small chunks. This feature can help to reduce the response time of a single list-resourcegroup request when the client has a large number resourcegroups in the system. <p> By default, the \"maxpagesize\" is not set, which means retrieving all resourcegroups in a single request. <p> Setting a maxpagesize may return fewer than the requested amount of resourcegroups (up to zero) in the event all requested resourcegroups are filtered out. The client should only use the presence of the Link header in the response to determine whether more resourcegroups are available. If \"maxpagesize\" is specified and the response does not include a Link header, the client may assume that no more resourcegroups are available. + * @param continueToken (optional) + <p> A token for getting more resourcegroups from the service. It is encoded in the URL returned via a \"Link\" HTTP header of a response of this endpoint if the original request specified \"maxpagesize\" in a \"Prefer\" HTTP header and the number of available resourcegroups is larger than the number specified by \"maxpagesize\". Do <b>NOT</b> use the \"continueToken\" parameter in other scenarios. <p> The server may reject a continue token that it does not recognize. If the specified continue token is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error. In this case, the client must restart their list request without the continue token. + * @param labelSelector (optional + filter by labels. Pass in pairs in the form of 'key=value' and / or 'key!=value' separated by commas and the result will be filtered to only those scenarios containing and / or not containing all given key/values + * @return BckndResourceGroupList + * @throws OpenApiRequestException if an error occurs while attempting to invoke the API + */ + @Nonnull + public BckndResourceGroupList kubesubmitV4ResourcegroupsGetAll( @Nullable final String authorization, @Nullable final Integer $top, @Nullable final Integer $skip, @Nullable final Boolean $count, @Nullable final String prefer, @Nullable final String continueToken, @Nullable final List labelSelector) throws OpenApiRequestException { + final Object localVarPostBody = null; + + final String localVarPath = UriComponentsBuilder.fromPath("/admin/resourceGroups").build().toUriString(); + + final MultiValueMap localVarQueryParams = new LinkedMultiValueMap(); + final HttpHeaders localVarHeaderParams = new HttpHeaders(); + final MultiValueMap localVarFormParams = new LinkedMultiValueMap(); + + localVarQueryParams.putAll(apiClient.parameterToMultiValueMap(null, "$top", $top)); + localVarQueryParams.putAll(apiClient.parameterToMultiValueMap(null, "$skip", $skip)); + localVarQueryParams.putAll(apiClient.parameterToMultiValueMap(null, "$count", $count)); + localVarQueryParams.putAll(apiClient.parameterToMultiValueMap(null, "continueToken", continueToken)); + localVarQueryParams.putAll(apiClient.parameterToMultiValueMap(ApiClient.CollectionFormat.valueOf("csv".toUpperCase(Locale.ROOT)), "labelSelector", labelSelector)); + + + if (authorization != null) + localVarHeaderParams.add("Authorization", apiClient.parameterToString(authorization)); + if (prefer != null) + localVarHeaderParams.add("Prefer", apiClient.parameterToString(prefer)); + + final String[] localVarAccepts = { + "application/json" + }; + final List localVarAccept = apiClient.selectHeaderAccept(localVarAccepts); + final String[] localVarContentTypes = { }; + final MediaType localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes); + + final String[] localVarAuthNames = new String[] { "Oauth2" }; + + final ParameterizedTypeReference localVarReturnType = new ParameterizedTypeReference() {}; + return apiClient.invokeAPI(localVarPath, HttpMethod.GET, localVarQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAccept, localVarContentType, localVarAuthNames, localVarReturnType); + } + + /** + *

Gets all resource groups of a given tenant

+ *

Retrieve a list of resource groups for a given tenant.

+ *

200 - A list of resource groups + *

400 - The request was malformed and could thus not be processed. + *

0 - HTTP status codes 401, 403 or 500. Response body contains further details. + * @return BckndResourceGroupList + * @throws OpenApiRequestException if an error occurs while attempting to invoke the API + */ + @Nonnull + public BckndResourceGroupList kubesubmitV4ResourcegroupsGetAll() throws OpenApiRequestException { + return kubesubmitV4ResourcegroupsGetAll(null, null, null, null, null, null, null); + } + /** *

Change some characteristics of the resource group

*

Replace some characteristics of the resource group, for instance labels.

@@ -336,7 +343,8 @@ public ResourceGroupApi( @Nonnull final ApiClient apiClient ) * @return An OpenApiResponse containing the status code of the HttpResponse. * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nonnull public OpenApiResponse kubesubmitV4ResourcegroupsPatch( @Nonnull final String resourceGroupId, @Nonnull final BckndResourceGroupPatchRequest bckndResourceGroupPatchRequest, @Nullable final String authorization) throws OpenApiRequestException { + @Nonnull + public OpenApiResponse kubesubmitV4ResourcegroupsPatch( @Nonnull final String resourceGroupId, @Nonnull final BckndResourceGroupPatchRequest bckndResourceGroupPatchRequest, @Nullable final String authorization) throws OpenApiRequestException { final Object localVarPostBody = bckndResourceGroupPatchRequest; // verify the required parameter 'resourceGroupId' is set @@ -378,19 +386,20 @@ public ResourceGroupApi( @Nonnull final ApiClient apiClient ) } /** - *

Change some characteristics of the resource group

- *

Replace some characteristics of the resource group, for instance labels.

+ *

Change some characteristics of the resource group

+ *

Replace some characteristics of the resource group, for instance labels.

*

202 - Resource group changes accepted. *

404 - The specified resource was not found *

0 - HTTP status codes 401, 403 or 500. Response body contains further details. -* @param resourceGroupId - Resource group identifier -* @param bckndResourceGroupPatchRequest - The value for the parameter bckndResourceGroupPatchRequest -* @return An OpenApiResponse containing the status code of the HttpResponse. -* @throws OpenApiRequestException if an error occurs while attempting to invoke the API + * @param resourceGroupId + * Resource group identifier + * @param bckndResourceGroupPatchRequest + * The value for the parameter bckndResourceGroupPatchRequest + * @return An OpenApiResponse containing the status code of the HttpResponse. + * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nonnull public OpenApiResponse kubesubmitV4ResourcegroupsPatch( @Nonnull final String resourceGroupId, @Nonnull final BckndResourceGroupPatchRequest bckndResourceGroupPatchRequest) throws OpenApiRequestException { + @Nonnull + public OpenApiResponse kubesubmitV4ResourcegroupsPatch( @Nonnull final String resourceGroupId, @Nonnull final BckndResourceGroupPatchRequest bckndResourceGroupPatchRequest) throws OpenApiRequestException { return kubesubmitV4ResourcegroupsPatch(resourceGroupId, bckndResourceGroupPatchRequest, null); } } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/ResourceQuotaApi.java b/core/src/main/java/com/sap/ai/sdk/core/client/ResourceQuotaApi.java index beb53390d..bef4d34f6 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/ResourceQuotaApi.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/ResourceQuotaApi.java @@ -7,10 +7,10 @@ import com.sap.cloud.sdk.services.openapi.core.AbstractOpenApiService; import com.sap.cloud.sdk.services.openapi.apiclient.ApiClient; -import com.sap.ai.sdk.core.client.model.BckndCommonResourceQuotaResponse ; //NOPMD -import com.sap.ai.sdk.core.client.model.BckndDeploymentResourceQuotaResponse ; //NOPMD -import com.sap.ai.sdk.core.client.model.BckndErrorResponse ; //NOPMD -import com.sap.ai.sdk.core.client.model.BckndExecutableResourceQuotaResponse ; //NOPMD +import com.sap.ai.sdk.core.client.model.BckndCommonResourceQuotaResponse; +import com.sap.ai.sdk.core.client.model.BckndDeploymentResourceQuotaResponse; +import com.sap.ai.sdk.core.client.model.BckndErrorResponse; +import com.sap.ai.sdk.core.client.model.BckndExecutableResourceQuotaResponse; import java.util.HashMap; import java.util.List; @@ -33,28 +33,27 @@ import com.sap.cloud.sdk.cloudplatform.connectivity.Destination; /** -* AI Core in version 2.33.0. -* -* Provides tools to manage your scenarios and workflows in SAP AI Core. Execute pipelines as a batch job, for example to pre-process or train your models, or perform batch inference. Serve inference requests of trained models. Deploy а trained machine learning model as a web service to serve inference requests with high performance. Register your own Docker registry, synchronize your AI content from your own git repository, and register your own object store for training data and trained models. -*/ - + * AI Core in version 2.33.0. + * + * Provides tools to manage your scenarios and workflows in SAP AI Core. Execute pipelines as a batch job, for example to pre-process or train your models, or perform batch inference. Serve inference requests of trained models. Deploy а trained machine learning model as a web service to serve inference requests with high performance. Register your own Docker registry, synchronize your AI content from your own git repository, and register your own object store for training data and trained models. + */ public class ResourceQuotaApi extends AbstractOpenApiService { /** - * Instantiates this API class to invoke operations on the AI Core. - * - * @param httpDestination The destination that API should be used with - */ + * Instantiates this API class to invoke operations on the AI Core. + * + * @param httpDestination The destination that API should be used with + */ public ResourceQuotaApi( @Nonnull final Destination httpDestination ) { super(httpDestination); } /** - * Instantiates this API class to invoke operations on the AI Core based on a given {@link ApiClient}. - * - * @param apiClient - * ApiClient to invoke the API on - */ + * Instantiates this API class to invoke operations on the AI Core based on a given {@link ApiClient}. + * + * @param apiClient + * ApiClient to invoke the API on + */ @Beta public ResourceQuotaApi( @Nonnull final ApiClient apiClient ) { @@ -74,7 +73,8 @@ public ResourceQuotaApi( @Nonnull final ApiClient apiClient ) * @return BckndCommonResourceQuotaResponse * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public BckndCommonResourceQuotaResponse quotaGetApplicationQuota( @Nullable final String authorization, @Nullable final Boolean quotaOnly) throws OpenApiRequestException { + @Nonnull + public BckndCommonResourceQuotaResponse kubesubmitV4ResourceQuotaGetApplicationQuota( @Nullable final String authorization, @Nullable final Boolean quotaOnly) throws OpenApiRequestException { final Object localVarPostBody = null; final String localVarPath = UriComponentsBuilder.fromPath("/admin/resourceQuota/applications").build().toUriString(); @@ -103,15 +103,16 @@ public ResourceQuotaApi( @Nonnull final ApiClient apiClient ) } /** - *

Get the quota for applications

- *

Get the details about quota and usage for applications

+ *

Get the quota for applications

+ *

Get the details about quota and usage for applications

*

200 - quota for applications *

0 - HTTP status codes 401, 403 or 500. Response body contains further details. -* @return BckndCommonResourceQuotaResponse -* @throws OpenApiRequestException if an error occurs while attempting to invoke the API + * @return BckndCommonResourceQuotaResponse + * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public BckndCommonResourceQuotaResponse quotaGetApplicationQuota() throws OpenApiRequestException { - return quotaGetApplicationQuota(null, null); + @Nonnull + public BckndCommonResourceQuotaResponse kubesubmitV4ResourceQuotaGetApplicationQuota() throws OpenApiRequestException { + return kubesubmitV4ResourceQuotaGetApplicationQuota(null, null); } /** @@ -127,7 +128,8 @@ public ResourceQuotaApi( @Nonnull final ApiClient apiClient ) * @return BckndDeploymentResourceQuotaResponse * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public BckndDeploymentResourceQuotaResponse quotaGetDeploymentQuota( @Nullable final String authorization, @Nullable final Boolean quotaOnly) throws OpenApiRequestException { + @Nonnull + public BckndDeploymentResourceQuotaResponse kubesubmitV4ResourceQuotaGetDeploymentQuota( @Nullable final String authorization, @Nullable final Boolean quotaOnly) throws OpenApiRequestException { final Object localVarPostBody = null; final String localVarPath = UriComponentsBuilder.fromPath("/admin/resourceQuota/deployments").build().toUriString(); @@ -156,16 +158,17 @@ public ResourceQuotaApi( @Nonnull final ApiClient apiClient ) } /** - *

Get the quota for deployments

- *

Get the details about quota and usage for deployments

+ *

Get the quota for deployments

+ *

Get the details about quota and usage for deployments

*

200 - A resource quota object *

400 - The request was malformed and could thus not be processed. *

0 - HTTP status codes 401, 403 or 500. Response body contains further details. -* @return BckndDeploymentResourceQuotaResponse -* @throws OpenApiRequestException if an error occurs while attempting to invoke the API + * @return BckndDeploymentResourceQuotaResponse + * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public BckndDeploymentResourceQuotaResponse quotaGetDeploymentQuota() throws OpenApiRequestException { - return quotaGetDeploymentQuota(null, null); + @Nonnull + public BckndDeploymentResourceQuotaResponse kubesubmitV4ResourceQuotaGetDeploymentQuota() throws OpenApiRequestException { + return kubesubmitV4ResourceQuotaGetDeploymentQuota(null, null); } /** @@ -180,7 +183,8 @@ public ResourceQuotaApi( @Nonnull final ApiClient apiClient ) * @return BckndCommonResourceQuotaResponse * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public BckndCommonResourceQuotaResponse quotaGetDockerRegistrySecretQuota( @Nullable final String authorization, @Nullable final Boolean quotaOnly) throws OpenApiRequestException { + @Nonnull + public BckndCommonResourceQuotaResponse kubesubmitV4ResourceQuotaGetDockerRegistrySecretQuota( @Nullable final String authorization, @Nullable final Boolean quotaOnly) throws OpenApiRequestException { final Object localVarPostBody = null; final String localVarPath = UriComponentsBuilder.fromPath("/admin/resourceQuota/dockerRegistrySecrets").build().toUriString(); @@ -209,15 +213,16 @@ public ResourceQuotaApi( @Nonnull final ApiClient apiClient ) } /** - *

Get the quota for docker registry secrets

- *

Get the details about quota and usage for docker registry secrets

+ *

Get the quota for docker registry secrets

+ *

Get the details about quota and usage for docker registry secrets

*

200 - quota for generic secrets on the tenant level *

0 - HTTP status codes 401, 403 or 500. Response body contains further details. -* @return BckndCommonResourceQuotaResponse -* @throws OpenApiRequestException if an error occurs while attempting to invoke the API + * @return BckndCommonResourceQuotaResponse + * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public BckndCommonResourceQuotaResponse quotaGetDockerRegistrySecretQuota() throws OpenApiRequestException { - return quotaGetDockerRegistrySecretQuota(null, null); + @Nonnull + public BckndCommonResourceQuotaResponse kubesubmitV4ResourceQuotaGetDockerRegistrySecretQuota() throws OpenApiRequestException { + return kubesubmitV4ResourceQuotaGetDockerRegistrySecretQuota(null, null); } /** @@ -232,7 +237,8 @@ public ResourceQuotaApi( @Nonnull final ApiClient apiClient ) * @return BckndExecutableResourceQuotaResponse * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public BckndExecutableResourceQuotaResponse quotaGetExecutableQuota( @Nullable final String authorization, @Nullable final Boolean quotaOnly) throws OpenApiRequestException { + @Nonnull + public BckndExecutableResourceQuotaResponse kubesubmitV4ResourceQuotaGetExecutableQuota( @Nullable final String authorization, @Nullable final Boolean quotaOnly) throws OpenApiRequestException { final Object localVarPostBody = null; final String localVarPath = UriComponentsBuilder.fromPath("/admin/resourceQuota/executables").build().toUriString(); @@ -261,15 +267,16 @@ public ResourceQuotaApi( @Nonnull final ApiClient apiClient ) } /** - *

Get the quota for executables

- *

Get the details about quota and usage for executables

+ *

Get the quota for executables

+ *

Get the details about quota and usage for executables

*

200 - quota for executable *

0 - HTTP status codes 401, 403 or 500. Response body contains further details. -* @return BckndExecutableResourceQuotaResponse -* @throws OpenApiRequestException if an error occurs while attempting to invoke the API + * @return BckndExecutableResourceQuotaResponse + * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public BckndExecutableResourceQuotaResponse quotaGetExecutableQuota() throws OpenApiRequestException { - return quotaGetExecutableQuota(null, null); + @Nonnull + public BckndExecutableResourceQuotaResponse kubesubmitV4ResourceQuotaGetExecutableQuota() throws OpenApiRequestException { + return kubesubmitV4ResourceQuotaGetExecutableQuota(null, null); } /** @@ -284,7 +291,8 @@ public ResourceQuotaApi( @Nonnull final ApiClient apiClient ) * @return BckndCommonResourceQuotaResponse * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public BckndCommonResourceQuotaResponse quotaGetGenericSecretQuota( @Nullable final String authorization, @Nullable final Boolean quotaOnly) throws OpenApiRequestException { + @Nonnull + public BckndCommonResourceQuotaResponse kubesubmitV4ResourceQuotaGetGenericSecretQuota( @Nullable final String authorization, @Nullable final Boolean quotaOnly) throws OpenApiRequestException { final Object localVarPostBody = null; final String localVarPath = UriComponentsBuilder.fromPath("/admin/resourceQuota/secrets").build().toUriString(); @@ -313,15 +321,16 @@ public ResourceQuotaApi( @Nonnull final ApiClient apiClient ) } /** - *

Get the quota for tenant-level generic secrets

- *

Get the details about quota and usage for tenant-level generic secrets

+ *

Get the quota for tenant-level generic secrets

+ *

Get the details about quota and usage for tenant-level generic secrets

*

200 - quota for generic secrets on the tenant level *

0 - HTTP status codes 401, 403 or 500. Response body contains further details. -* @return BckndCommonResourceQuotaResponse -* @throws OpenApiRequestException if an error occurs while attempting to invoke the API + * @return BckndCommonResourceQuotaResponse + * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public BckndCommonResourceQuotaResponse quotaGetGenericSecretQuota() throws OpenApiRequestException { - return quotaGetGenericSecretQuota(null, null); + @Nonnull + public BckndCommonResourceQuotaResponse kubesubmitV4ResourceQuotaGetGenericSecretQuota() throws OpenApiRequestException { + return kubesubmitV4ResourceQuotaGetGenericSecretQuota(null, null); } /** @@ -336,7 +345,8 @@ public ResourceQuotaApi( @Nonnull final ApiClient apiClient ) * @return BckndCommonResourceQuotaResponse * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public BckndCommonResourceQuotaResponse quotaGetRepositoryQuota( @Nullable final String authorization, @Nullable final Boolean quotaOnly) throws OpenApiRequestException { + @Nonnull + public BckndCommonResourceQuotaResponse kubesubmitV4ResourceQuotaGetRepositoryQuota( @Nullable final String authorization, @Nullable final Boolean quotaOnly) throws OpenApiRequestException { final Object localVarPostBody = null; final String localVarPath = UriComponentsBuilder.fromPath("/admin/resourceQuota/repositories").build().toUriString(); @@ -365,15 +375,16 @@ public ResourceQuotaApi( @Nonnull final ApiClient apiClient ) } /** - *

Get the quota for repositories

- *

Get the details about quota and usage for repositories

+ *

Get the quota for repositories

+ *

Get the details about quota and usage for repositories

*

200 - quota for repositories *

0 - HTTP status codes 401, 403 or 500. Response body contains further details. -* @return BckndCommonResourceQuotaResponse -* @throws OpenApiRequestException if an error occurs while attempting to invoke the API + * @return BckndCommonResourceQuotaResponse + * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public BckndCommonResourceQuotaResponse quotaGetRepositoryQuota() throws OpenApiRequestException { - return quotaGetRepositoryQuota(null, null); + @Nonnull + public BckndCommonResourceQuotaResponse kubesubmitV4ResourceQuotaGetRepositoryQuota() throws OpenApiRequestException { + return kubesubmitV4ResourceQuotaGetRepositoryQuota(null, null); } /** @@ -388,7 +399,8 @@ public ResourceQuotaApi( @Nonnull final ApiClient apiClient ) * @return BckndCommonResourceQuotaResponse * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public BckndCommonResourceQuotaResponse quotaGetResourceGroupQuota( @Nullable final String authorization, @Nullable final Boolean quotaOnly) throws OpenApiRequestException { + @Nonnull + public BckndCommonResourceQuotaResponse kubesubmitV4ResourceQuotaGetResourceGroupQuota( @Nullable final String authorization, @Nullable final Boolean quotaOnly) throws OpenApiRequestException { final Object localVarPostBody = null; final String localVarPath = UriComponentsBuilder.fromPath("/admin/resourceQuota/resourceGroups").build().toUriString(); @@ -417,14 +429,15 @@ public ResourceQuotaApi( @Nonnull final ApiClient apiClient ) } /** - *

Get the quota for resource groups

- *

Get the details about quota and usage for resource groups

+ *

Get the quota for resource groups

+ *

Get the details about quota and usage for resource groups

*

200 - quota for resourcegroups *

0 - HTTP status codes 401, 403 or 500. Response body contains further details. -* @return BckndCommonResourceQuotaResponse -* @throws OpenApiRequestException if an error occurs while attempting to invoke the API + * @return BckndCommonResourceQuotaResponse + * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public BckndCommonResourceQuotaResponse quotaGetResourceGroupQuota() throws OpenApiRequestException { - return quotaGetResourceGroupQuota(null, null); + @Nonnull + public BckndCommonResourceQuotaResponse kubesubmitV4ResourceQuotaGetResourceGroupQuota() throws OpenApiRequestException { + return kubesubmitV4ResourceQuotaGetResourceGroupQuota(null, null); } } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/ScenarioApi.java b/core/src/main/java/com/sap/ai/sdk/core/client/ScenarioApi.java index 6dc645572..6ab2d68d2 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/ScenarioApi.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/ScenarioApi.java @@ -7,11 +7,11 @@ import com.sap.cloud.sdk.services.openapi.core.AbstractOpenApiService; import com.sap.cloud.sdk.services.openapi.apiclient.ApiClient; -import com.sap.ai.sdk.core.client.model.AiModelList ; //NOPMD -import com.sap.ai.sdk.core.client.model.AiScenario ; //NOPMD -import com.sap.ai.sdk.core.client.model.AiScenarioList ; //NOPMD -import com.sap.ai.sdk.core.client.model.AiVersionList ; //NOPMD -import com.sap.ai.sdk.core.client.model.ArtifactQuery400Response ; //NOPMD +import com.sap.ai.sdk.core.client.model.AiModelList; +import com.sap.ai.sdk.core.client.model.AiScenario; +import com.sap.ai.sdk.core.client.model.AiScenarioList; +import com.sap.ai.sdk.core.client.model.AiVersionList; +import com.sap.ai.sdk.core.client.model.ArtifactQuery400Response; import java.util.HashMap; import java.util.List; @@ -34,28 +34,27 @@ import com.sap.cloud.sdk.cloudplatform.connectivity.Destination; /** -* AI Core in version 2.33.0. -* -* Provides tools to manage your scenarios and workflows in SAP AI Core. Execute pipelines as a batch job, for example to pre-process or train your models, or perform batch inference. Serve inference requests of trained models. Deploy а trained machine learning model as a web service to serve inference requests with high performance. Register your own Docker registry, synchronize your AI content from your own git repository, and register your own object store for training data and trained models. -*/ - + * AI Core in version 2.33.0. + * + * Provides tools to manage your scenarios and workflows in SAP AI Core. Execute pipelines as a batch job, for example to pre-process or train your models, or perform batch inference. Serve inference requests of trained models. Deploy а trained machine learning model as a web service to serve inference requests with high performance. Register your own Docker registry, synchronize your AI content from your own git repository, and register your own object store for training data and trained models. + */ public class ScenarioApi extends AbstractOpenApiService { /** - * Instantiates this API class to invoke operations on the AI Core. - * - * @param httpDestination The destination that API should be used with - */ + * Instantiates this API class to invoke operations on the AI Core. + * + * @param httpDestination The destination that API should be used with + */ public ScenarioApi( @Nonnull final Destination httpDestination ) { super(httpDestination); } /** - * Instantiates this API class to invoke operations on the AI Core based on a given {@link ApiClient}. - * - * @param apiClient - * ApiClient to invoke the API on - */ + * Instantiates this API class to invoke operations on the AI Core based on a given {@link ApiClient}. + * + * @param apiClient + * ApiClient to invoke the API on + */ @Beta public ScenarioApi( @Nonnull final ApiClient apiClient ) { @@ -63,18 +62,19 @@ public ScenarioApi( @Nonnull final ApiClient apiClient ) } /** - *

Get information about all models available in LLM global scenario

- *

Retrieve information about all models available in LLM global scenario

+ *

Get information about all models available in LLM global scenario

+ *

Retrieve information about all models available in LLM global scenario

*

200 - The request was successful and information of all LLM models will be returned. *

400 - The specification of the resource was incorrect -* @param scenarioId - Scenario identifier -* @param aiResourceGroup - Specify a resource group id -* @return AiModelList -* @throws OpenApiRequestException if an error occurs while attempting to invoke the API + * @param scenarioId + * Scenario identifier + * @param aiResourceGroup + * Specify a resource group id + * @return AiModelList + * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public AiModelList modelsGet( @Nonnull final String scenarioId, @Nonnull final String aiResourceGroup) throws OpenApiRequestException { + @Nonnull + public AiModelList modelsGet( @Nonnull final String scenarioId, @Nonnull final String aiResourceGroup) throws OpenApiRequestException { final Object localVarPostBody = null; // verify the required parameter 'scenarioId' is set @@ -112,19 +112,20 @@ public ScenarioApi( @Nonnull final ApiClient apiClient ) return apiClient.invokeAPI(localVarPath, HttpMethod.GET, localVarQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAccept, localVarContentType, localVarAuthNames, localVarReturnType); } /** - *

Get scenario by id

- *

Retrieve details for a scenario specified by scenarioId.

+ *

Get scenario by id

+ *

Retrieve details for a scenario specified by scenarioId.

*

200 - A scenario *

400 - The specification of the resource was incorrect *

404 - The specified resource was not found -* @param aiResourceGroup - Specify a resource group id -* @param scenarioId - Scenario identifier -* @return AiScenario -* @throws OpenApiRequestException if an error occurs while attempting to invoke the API + * @param aiResourceGroup + * Specify a resource group id + * @param scenarioId + * Scenario identifier + * @return AiScenario + * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public AiScenario scenarioGet( @Nonnull final String aiResourceGroup, @Nonnull final String scenarioId) throws OpenApiRequestException { + @Nonnull + public AiScenario scenarioGet( @Nonnull final String aiResourceGroup, @Nonnull final String scenarioId) throws OpenApiRequestException { final Object localVarPostBody = null; // verify the required parameter 'aiResourceGroup' is set @@ -162,15 +163,16 @@ public ScenarioApi( @Nonnull final ApiClient apiClient ) return apiClient.invokeAPI(localVarPath, HttpMethod.GET, localVarQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAccept, localVarContentType, localVarAuthNames, localVarReturnType); } /** - *

Get list of scenarios

- *

Retrieve a list of all available scenarios.

+ *

Get list of scenarios

+ *

Retrieve a list of all available scenarios.

*

200 - A list of scenarios -* @param aiResourceGroup - Specify a resource group id -* @return AiScenarioList -* @throws OpenApiRequestException if an error occurs while attempting to invoke the API + * @param aiResourceGroup + * Specify a resource group id + * @return AiScenarioList + * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public AiScenarioList scenarioQuery( @Nonnull final String aiResourceGroup) throws OpenApiRequestException { + @Nonnull + public AiScenarioList scenarioQuery( @Nonnull final String aiResourceGroup) throws OpenApiRequestException { final Object localVarPostBody = null; // verify the required parameter 'aiResourceGroup' is set @@ -214,17 +216,18 @@ public ScenarioApi( @Nonnull final ApiClient apiClient ) * @return AiVersionList * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public AiVersionList versions( @Nonnull final String aiResourceGroup, @Nonnull final String scenarioId, @Nullable final List labelSelector) throws OpenApiRequestException { + @Nonnull + public AiVersionList scenarioQueryVersions( @Nonnull final String aiResourceGroup, @Nonnull final String scenarioId, @Nullable final List labelSelector) throws OpenApiRequestException { final Object localVarPostBody = null; // verify the required parameter 'aiResourceGroup' is set if (aiResourceGroup == null) { - throw new OpenApiRequestException("Missing the required parameter 'aiResourceGroup' when calling versions"); + throw new OpenApiRequestException("Missing the required parameter 'aiResourceGroup' when calling scenarioQueryVersions"); } // verify the required parameter 'scenarioId' is set if (scenarioId == null) { - throw new OpenApiRequestException("Missing the required parameter 'scenarioId' when calling versions"); + throw new OpenApiRequestException("Missing the required parameter 'scenarioId' when calling scenarioQueryVersions"); } // create path and map variables @@ -256,18 +259,19 @@ public ScenarioApi( @Nonnull final ApiClient apiClient ) } /** - *

Get list of versions for scenario

- *

Retrieve a list of scenario versions based on the versions of executables available within that scenario.

+ *

Get list of versions for scenario

+ *

Retrieve a list of scenario versions based on the versions of executables available within that scenario.

*

200 - A list of versions for the scenario *

400 - The specification of the resource was incorrect -* @param aiResourceGroup - Specify a resource group id -* @param scenarioId - Scenario identifier -* @return AiVersionList -* @throws OpenApiRequestException if an error occurs while attempting to invoke the API + * @param aiResourceGroup + * Specify a resource group id + * @param scenarioId + * Scenario identifier + * @return AiVersionList + * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public AiVersionList versions( @Nonnull final String aiResourceGroup, @Nonnull final String scenarioId) throws OpenApiRequestException { - return versions(aiResourceGroup, scenarioId, null); + @Nonnull + public AiVersionList scenarioQueryVersions( @Nonnull final String aiResourceGroup, @Nonnull final String scenarioId) throws OpenApiRequestException { + return scenarioQueryVersions(aiResourceGroup, scenarioId, null); } } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/SecretApi.java b/core/src/main/java/com/sap/ai/sdk/core/client/SecretApi.java index c5ad47165..39c8a7ed2 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/SecretApi.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/SecretApi.java @@ -7,11 +7,11 @@ import com.sap.cloud.sdk.services.openapi.core.AbstractOpenApiService; import com.sap.cloud.sdk.services.openapi.apiclient.ApiClient; -import com.sap.ai.sdk.core.client.model.BckndErrorResponse ; //NOPMD -import com.sap.ai.sdk.core.client.model.BckndGenericSecretDataResponse ; //NOPMD -import com.sap.ai.sdk.core.client.model.BckndGenericSecretPatchBody ; //NOPMD -import com.sap.ai.sdk.core.client.model.BckndGenericSecretPostBody ; //NOPMD -import com.sap.ai.sdk.core.client.model.BckndListGenericSecretsResponse ; //NOPMD +import com.sap.ai.sdk.core.client.model.BckndErrorResponse; +import com.sap.ai.sdk.core.client.model.BckndGenericSecretDataResponse; +import com.sap.ai.sdk.core.client.model.BckndGenericSecretPatchBody; +import com.sap.ai.sdk.core.client.model.BckndGenericSecretPostBody; +import com.sap.ai.sdk.core.client.model.BckndListGenericSecretsResponse; import java.util.HashMap; import java.util.List; @@ -34,28 +34,27 @@ import com.sap.cloud.sdk.cloudplatform.connectivity.Destination; /** -* AI Core in version 2.33.0. -* -* Provides tools to manage your scenarios and workflows in SAP AI Core. Execute pipelines as a batch job, for example to pre-process or train your models, or perform batch inference. Serve inference requests of trained models. Deploy а trained machine learning model as a web service to serve inference requests with high performance. Register your own Docker registry, synchronize your AI content from your own git repository, and register your own object store for training data and trained models. -*/ - + * AI Core in version 2.33.0. + * + * Provides tools to manage your scenarios and workflows in SAP AI Core. Execute pipelines as a batch job, for example to pre-process or train your models, or perform batch inference. Serve inference requests of trained models. Deploy а trained machine learning model as a web service to serve inference requests with high performance. Register your own Docker registry, synchronize your AI content from your own git repository, and register your own object store for training data and trained models. + */ public class SecretApi extends AbstractOpenApiService { /** - * Instantiates this API class to invoke operations on the AI Core. - * - * @param httpDestination The destination that API should be used with - */ + * Instantiates this API class to invoke operations on the AI Core. + * + * @param httpDestination The destination that API should be used with + */ public SecretApi( @Nonnull final Destination httpDestination ) { super(httpDestination); } /** - * Instantiates this API class to invoke operations on the AI Core based on a given {@link ApiClient}. - * - * @param apiClient - * ApiClient to invoke the API on - */ + * Instantiates this API class to invoke operations on the AI Core based on a given {@link ApiClient}. + * + * @param apiClient + * ApiClient to invoke the API on + */ @Beta public SecretApi( @Nonnull final ApiClient apiClient ) { @@ -80,12 +79,13 @@ public SecretApi( @Nonnull final ApiClient apiClient ) * @return BckndGenericSecretDataResponse * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public BckndGenericSecretDataResponse secretsCreate( @Nonnull final BckndGenericSecretPostBody bckndGenericSecretPostBody, @Nullable final String authorization, @Nullable final String aiResourceGroup, @Nullable final Boolean aiTenantScope) throws OpenApiRequestException { + @Nonnull + public BckndGenericSecretDataResponse kubesubmitV4GenericSecretsCreate( @Nonnull final BckndGenericSecretPostBody bckndGenericSecretPostBody, @Nullable final String authorization, @Nullable final String aiResourceGroup, @Nullable final Boolean aiTenantScope) throws OpenApiRequestException { final Object localVarPostBody = bckndGenericSecretPostBody; // verify the required parameter 'bckndGenericSecretPostBody' is set if (bckndGenericSecretPostBody == null) { - throw new OpenApiRequestException("Missing the required parameter 'bckndGenericSecretPostBody' when calling secretsCreate"); + throw new OpenApiRequestException("Missing the required parameter 'bckndGenericSecretPostBody' when calling kubesubmitV4GenericSecretsCreate"); } final String localVarPath = UriComponentsBuilder.fromPath("/admin/secrets").build().toUriString(); @@ -117,18 +117,19 @@ public SecretApi( @Nonnull final ApiClient apiClient ) } /** - *

Create a new generic secret

- *

Create a new generic secret in the corresponding resource group or at main tenant level.

+ *

Create a new generic secret

+ *

Create a new generic secret in the corresponding resource group or at main tenant level.

*

200 - Secret has been created *

400 - The request was malformed and could thus not be processed. *

0 - HTTP status codes 401, 403 or 500. Response body contains further details. -* @param bckndGenericSecretPostBody - The value for the parameter bckndGenericSecretPostBody -* @return BckndGenericSecretDataResponse -* @throws OpenApiRequestException if an error occurs while attempting to invoke the API + * @param bckndGenericSecretPostBody + * The value for the parameter bckndGenericSecretPostBody + * @return BckndGenericSecretDataResponse + * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public BckndGenericSecretDataResponse secretsCreate( @Nonnull final BckndGenericSecretPostBody bckndGenericSecretPostBody) throws OpenApiRequestException { - return secretsCreate(bckndGenericSecretPostBody, null, null, null); + @Nonnull + public BckndGenericSecretDataResponse kubesubmitV4GenericSecretsCreate( @Nonnull final BckndGenericSecretPostBody bckndGenericSecretPostBody) throws OpenApiRequestException { + return kubesubmitV4GenericSecretsCreate(bckndGenericSecretPostBody, null, null, null); } /** @@ -149,12 +150,13 @@ public SecretApi( @Nonnull final ApiClient apiClient ) * @return An OpenApiResponse containing the status code of the HttpResponse. * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nonnull public OpenApiResponse secretsDelete( @Nonnull final String secretName, @Nullable final String authorization, @Nullable final String aiResourceGroup, @Nullable final Boolean aiTenantScope) throws OpenApiRequestException { + @Nonnull + public OpenApiResponse kubesubmitV4GenericSecretsDelete( @Nonnull final String secretName, @Nullable final String authorization, @Nullable final String aiResourceGroup, @Nullable final Boolean aiTenantScope) throws OpenApiRequestException { final Object localVarPostBody = null; // verify the required parameter 'secretName' is set if (secretName == null) { - throw new OpenApiRequestException("Missing the required parameter 'secretName' when calling secretsDelete"); + throw new OpenApiRequestException("Missing the required parameter 'secretName' when calling kubesubmitV4GenericSecretsDelete"); } // create path and map variables @@ -188,19 +190,20 @@ public SecretApi( @Nonnull final ApiClient apiClient ) } /** - *

Deletes the secret

- *

Deletes the secret from provided resource group namespace

+ *

Deletes the secret

+ *

Deletes the secret from provided resource group namespace

*

200 - The secret has been removed *

404 - The specified resource was not found *

400 - The request was malformed and could thus not be processed. *

0 - HTTP status codes 401, 403 or 500. Response body contains further details. -* @param secretName - The value for the parameter secretName -* @return An OpenApiResponse containing the status code of the HttpResponse. -* @throws OpenApiRequestException if an error occurs while attempting to invoke the API + * @param secretName + * The value for the parameter secretName + * @return An OpenApiResponse containing the status code of the HttpResponse. + * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nonnull public OpenApiResponse secretsDelete( @Nonnull final String secretName) throws OpenApiRequestException { - return secretsDelete(secretName, null, null, null); + @Nonnull + public OpenApiResponse kubesubmitV4GenericSecretsDelete( @Nonnull final String secretName) throws OpenApiRequestException { + return kubesubmitV4GenericSecretsDelete(secretName, null, null, null); } /** @@ -224,7 +227,8 @@ public SecretApi( @Nonnull final ApiClient apiClient ) * @return BckndListGenericSecretsResponse * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public BckndListGenericSecretsResponse secretsGet( @Nullable final String authorization, @Nullable final Integer $top, @Nullable final Integer $skip, @Nullable final Boolean $count, @Nullable final String aiResourceGroup, @Nullable final Boolean aiTenantScope) throws OpenApiRequestException { + @Nonnull + public BckndListGenericSecretsResponse kubesubmitV4GenericSecretsGet( @Nullable final String authorization, @Nullable final Integer $top, @Nullable final Integer $skip, @Nullable final Boolean $count, @Nullable final String aiResourceGroup, @Nullable final Boolean aiTenantScope) throws OpenApiRequestException { final Object localVarPostBody = null; final String localVarPath = UriComponentsBuilder.fromPath("/admin/secrets").build().toUriString(); @@ -259,16 +263,17 @@ public SecretApi( @Nonnull final ApiClient apiClient ) } /** - *

Lists all secrets corresponding to tenant

- *

Lists all secrets corresponding to tenant. This retrieves metadata only, not the secret data itself.

+ *

Lists all secrets corresponding to tenant

+ *

Lists all secrets corresponding to tenant. This retrieves metadata only, not the secret data itself.

*

200 - The secrets were fetched *

400 - The request was malformed and could thus not be processed. *

0 - HTTP status codes 401, 403 or 500. Response body contains further details. -* @return BckndListGenericSecretsResponse -* @throws OpenApiRequestException if an error occurs while attempting to invoke the API + * @return BckndListGenericSecretsResponse + * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public BckndListGenericSecretsResponse secretsGet() throws OpenApiRequestException { - return secretsGet(null, null, null, null, null, null); + @Nonnull + public BckndListGenericSecretsResponse kubesubmitV4GenericSecretsGet() throws OpenApiRequestException { + return kubesubmitV4GenericSecretsGet(null, null, null, null, null, null); } /** @@ -291,17 +296,18 @@ public SecretApi( @Nonnull final ApiClient apiClient ) * @return BckndGenericSecretDataResponse * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public BckndGenericSecretDataResponse secretsUpdate( @Nonnull final String secretName, @Nonnull final BckndGenericSecretPatchBody bckndGenericSecretPatchBody, @Nullable final String authorization, @Nullable final String aiResourceGroup, @Nullable final Boolean aiTenantScope) throws OpenApiRequestException { + @Nonnull + public BckndGenericSecretDataResponse kubesubmitV4GenericSecretsUpdate( @Nonnull final String secretName, @Nonnull final BckndGenericSecretPatchBody bckndGenericSecretPatchBody, @Nullable final String authorization, @Nullable final String aiResourceGroup, @Nullable final Boolean aiTenantScope) throws OpenApiRequestException { final Object localVarPostBody = bckndGenericSecretPatchBody; // verify the required parameter 'secretName' is set if (secretName == null) { - throw new OpenApiRequestException("Missing the required parameter 'secretName' when calling secretsUpdate"); + throw new OpenApiRequestException("Missing the required parameter 'secretName' when calling kubesubmitV4GenericSecretsUpdate"); } // verify the required parameter 'bckndGenericSecretPatchBody' is set if (bckndGenericSecretPatchBody == null) { - throw new OpenApiRequestException("Missing the required parameter 'bckndGenericSecretPatchBody' when calling secretsUpdate"); + throw new OpenApiRequestException("Missing the required parameter 'bckndGenericSecretPatchBody' when calling kubesubmitV4GenericSecretsUpdate"); } // create path and map variables @@ -336,20 +342,21 @@ public SecretApi( @Nonnull final ApiClient apiClient ) } /** - *

Update secret credentials

- *

Update secret credentials. Replace secret data with the provided data.

+ *

Update secret credentials

+ *

Update secret credentials. Replace secret data with the provided data.

*

200 - The secret has been updated *

404 - The specified resource was not found *

400 - The request was malformed and could thus not be processed. *

0 - HTTP status codes 401, 403 or 500. Response body contains further details. -* @param secretName - The value for the parameter secretName -* @param bckndGenericSecretPatchBody - The value for the parameter bckndGenericSecretPatchBody -* @return BckndGenericSecretDataResponse -* @throws OpenApiRequestException if an error occurs while attempting to invoke the API + * @param secretName + * The value for the parameter secretName + * @param bckndGenericSecretPatchBody + * The value for the parameter bckndGenericSecretPatchBody + * @return BckndGenericSecretDataResponse + * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public BckndGenericSecretDataResponse secretsUpdate( @Nonnull final String secretName, @Nonnull final BckndGenericSecretPatchBody bckndGenericSecretPatchBody) throws OpenApiRequestException { - return secretsUpdate(secretName, bckndGenericSecretPatchBody, null, null, null); + @Nonnull + public BckndGenericSecretDataResponse kubesubmitV4GenericSecretsUpdate( @Nonnull final String secretName, @Nonnull final BckndGenericSecretPatchBody bckndGenericSecretPatchBody) throws OpenApiRequestException { + return kubesubmitV4GenericSecretsUpdate(secretName, bckndGenericSecretPatchBody, null, null, null); } } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/ServiceApi.java b/core/src/main/java/com/sap/ai/sdk/core/client/ServiceApi.java index fbf2f27a1..dea762f85 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/ServiceApi.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/ServiceApi.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.core.client.model.BckndErrorResponse ; //NOPMD -import com.sap.ai.sdk.core.client.model.BckndExtendedService ; //NOPMD -import com.sap.ai.sdk.core.client.model.BckndServiceList ; //NOPMD +import com.sap.ai.sdk.core.client.model.BckndErrorResponse; +import com.sap.ai.sdk.core.client.model.BckndExtendedService; +import com.sap.ai.sdk.core.client.model.BckndServiceList; import java.util.HashMap; import java.util.List; @@ -32,28 +32,27 @@ import com.sap.cloud.sdk.cloudplatform.connectivity.Destination; /** -* AI Core in version 2.33.0. -* -* Provides tools to manage your scenarios and workflows in SAP AI Core. Execute pipelines as a batch job, for example to pre-process or train your models, or perform batch inference. Serve inference requests of trained models. Deploy а trained machine learning model as a web service to serve inference requests with high performance. Register your own Docker registry, synchronize your AI content from your own git repository, and register your own object store for training data and trained models. -*/ - + * AI Core in version 2.33.0. + * + * Provides tools to manage your scenarios and workflows in SAP AI Core. Execute pipelines as a batch job, for example to pre-process or train your models, or perform batch inference. Serve inference requests of trained models. Deploy а trained machine learning model as a web service to serve inference requests with high performance. Register your own Docker registry, synchronize your AI content from your own git repository, and register your own object store for training data and trained models. + */ public class ServiceApi extends AbstractOpenApiService { /** - * Instantiates this API class to invoke operations on the AI Core. - * - * @param httpDestination The destination that API should be used with - */ + * Instantiates this API class to invoke operations on the AI Core. + * + * @param httpDestination The destination that API should be used with + */ public ServiceApi( @Nonnull final Destination httpDestination ) { super(httpDestination); } /** - * Instantiates this API class to invoke operations on the AI Core based on a given {@link ApiClient}. - * - * @param apiClient - * ApiClient to invoke the API on - */ + * Instantiates this API class to invoke operations on the AI Core based on a given {@link ApiClient}. + * + * @param apiClient + * ApiClient to invoke the API on + */ @Beta public ServiceApi( @Nonnull final ApiClient apiClient ) { @@ -62,20 +61,32 @@ public ServiceApi( @Nonnull final ApiClient apiClient ) /** - *

Gets all services of a given main tenant

- *

Retrieve a list of services for a given main tenant.

- *

200 - A list of services + *

Get a service

+ *

Get an service of a given main tenant.

+ *

200 - A service object *

400 - The request was malformed and could thus not be processed. + *

404 - The specified resource was not found *

0 - HTTP status codes 401, 403 or 500. Response body contains further details. + * @param serviceName (required) + Name of the Service * @param authorization (optional) Authorization bearer token containing a JWT token. - * @return BckndServiceList + * @return BckndExtendedService * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public BckndServiceList all( @Nullable final String authorization) throws OpenApiRequestException { + @Nonnull + public BckndExtendedService kubesubmitV4AiservicesGet( @Nonnull final String serviceName, @Nullable final String authorization) throws OpenApiRequestException { final Object localVarPostBody = null; - final String localVarPath = UriComponentsBuilder.fromPath("/admin/services").build().toUriString(); + // verify the required parameter 'serviceName' is set + if (serviceName == null) { + throw new OpenApiRequestException("Missing the required parameter 'serviceName' when calling kubesubmitV4AiservicesGet"); + } + + // create path and map variables + final Map localVarPathParams = new HashMap(); + localVarPathParams.put("ServiceName", serviceName); + final String localVarPath = UriComponentsBuilder.fromPath("/admin/services/{ServiceName}").buildAndExpand(localVarPathParams).toUriString(); final MultiValueMap localVarQueryParams = new LinkedMultiValueMap(); final HttpHeaders localVarHeaderParams = new HttpHeaders(); @@ -93,49 +104,43 @@ public ServiceApi( @Nonnull final ApiClient apiClient ) final String[] localVarAuthNames = new String[] { "Oauth2" }; - final ParameterizedTypeReference localVarReturnType = new ParameterizedTypeReference() {}; + final ParameterizedTypeReference localVarReturnType = new ParameterizedTypeReference() {}; return apiClient.invokeAPI(localVarPath, HttpMethod.GET, localVarQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAccept, localVarContentType, localVarAuthNames, localVarReturnType); } /** - *

Gets all services of a given main tenant

- *

Retrieve a list of services for a given main tenant.

- *

200 - A list of services + *

Get a service

+ *

Get an service of a given main tenant.

+ *

200 - A service object *

400 - The request was malformed and could thus not be processed. + *

404 - The specified resource was not found *

0 - HTTP status codes 401, 403 or 500. Response body contains further details. -* @return BckndServiceList -* @throws OpenApiRequestException if an error occurs while attempting to invoke the API + * @param serviceName + * Name of the Service + * @return BckndExtendedService + * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public BckndServiceList all() throws OpenApiRequestException { - return all(null); + @Nonnull + public BckndExtendedService kubesubmitV4AiservicesGet( @Nonnull final String serviceName) throws OpenApiRequestException { + return kubesubmitV4AiservicesGet(serviceName, null); } /** - *

Get a service

- *

Get an service of a given main tenant.

- *

200 - A service object + *

Gets all services of a given main tenant

+ *

Retrieve a list of services for a given main tenant.

+ *

200 - A list of services *

400 - The request was malformed and could thus not be processed. - *

404 - The specified resource was not found *

0 - HTTP status codes 401, 403 or 500. Response body contains further details. - * @param serviceName (required) - Name of the Service * @param authorization (optional) Authorization bearer token containing a JWT token. - * @return BckndExtendedService + * @return BckndServiceList * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public BckndExtendedService kubesubmitV4AiservicesGet( @Nonnull final String serviceName, @Nullable final String authorization) throws OpenApiRequestException { + @Nonnull + public BckndServiceList kubesubmitV4AiservicesGetAll( @Nullable final String authorization) throws OpenApiRequestException { final Object localVarPostBody = null; - // verify the required parameter 'serviceName' is set - if (serviceName == null) { - throw new OpenApiRequestException("Missing the required parameter 'serviceName' when calling kubesubmitV4AiservicesGet"); - } - - // create path and map variables - final Map localVarPathParams = new HashMap(); - localVarPathParams.put("ServiceName", serviceName); - final String localVarPath = UriComponentsBuilder.fromPath("/admin/services/{ServiceName}").buildAndExpand(localVarPathParams).toUriString(); + final String localVarPath = UriComponentsBuilder.fromPath("/admin/services").build().toUriString(); final MultiValueMap localVarQueryParams = new LinkedMultiValueMap(); final HttpHeaders localVarHeaderParams = new HttpHeaders(); @@ -153,23 +158,21 @@ public ServiceApi( @Nonnull final ApiClient apiClient ) final String[] localVarAuthNames = new String[] { "Oauth2" }; - final ParameterizedTypeReference localVarReturnType = new ParameterizedTypeReference() {}; + final ParameterizedTypeReference localVarReturnType = new ParameterizedTypeReference() {}; return apiClient.invokeAPI(localVarPath, HttpMethod.GET, localVarQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAccept, localVarContentType, localVarAuthNames, localVarReturnType); } /** - *

Get a service

- *

Get an service of a given main tenant.

- *

200 - A service object + *

Gets all services of a given main tenant

+ *

Retrieve a list of services for a given main tenant.

+ *

200 - A list of services *

400 - The request was malformed and could thus not be processed. - *

404 - The specified resource was not found *

0 - HTTP status codes 401, 403 or 500. Response body contains further details. -* @param serviceName - Name of the Service -* @return BckndExtendedService -* @throws OpenApiRequestException if an error occurs while attempting to invoke the API + * @return BckndServiceList + * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ - @Nullable public BckndExtendedService kubesubmitV4AiservicesGet( @Nonnull final String serviceName) throws OpenApiRequestException { - return kubesubmitV4AiservicesGet(serviceName, null); + @Nonnull + public BckndServiceList kubesubmitV4AiservicesGetAll() throws OpenApiRequestException { + return kubesubmitV4AiservicesGetAll(null); } } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/AiApiError.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/AiApiError.java index 4a617e24e..3840aa969 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/AiApiError.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/AiApiError.java @@ -38,7 +38,6 @@ /** * AiApiError */ - // CHECKSTYLE:OFF public class AiApiError // CHECKSTYLE:ON @@ -63,141 +62,141 @@ public class AiApiError private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the code of this {@link AiApiError} instance and return the same instance. - * - * @param code Descriptive error code (not http status code) - * @return The same instance of this {@link AiApiError} class - */ + * Set the code of this {@link AiApiError} instance and return the same instance. + * + * @param code Descriptive error code (not http status code) + * @return The same instance of this {@link AiApiError} class + */ @Nonnull public AiApiError code(@Nonnull final String code) { this.code = code; return this; } /** - * Descriptive error code (not http status code) - * @return code The code of this {@link AiApiError} instance. - **/ + * Descriptive error code (not http status code) + * @return code The code of this {@link AiApiError} instance. + */ @Nonnull public String getCode() { return code; } /** - * Set the code of this {@link AiApiError} instance. - * - * @param code Descriptive error code (not http status code) - */ + * Set the code of this {@link AiApiError} instance. + * + * @param code Descriptive error code (not http status code) + */ public void setCode( @Nonnull final String code) { this.code = code; } /** - * Set the message of this {@link AiApiError} instance and return the same instance. - * - * @param message Plaintext error description - * @return The same instance of this {@link AiApiError} class - */ + * Set the message of this {@link AiApiError} instance and return the same instance. + * + * @param message Plaintext error description + * @return The same instance of this {@link AiApiError} class + */ @Nonnull public AiApiError message(@Nonnull final String message) { this.message = message; return this; } /** - * Plaintext error description - * @return message The message of this {@link AiApiError} instance. - **/ + * Plaintext error description + * @return message The message of this {@link AiApiError} instance. + */ @Nonnull public String getMessage() { return message; } /** - * Set the message of this {@link AiApiError} instance. - * - * @param message Plaintext error description - */ + * Set the message of this {@link AiApiError} instance. + * + * @param message Plaintext error description + */ public void setMessage( @Nonnull final String message) { this.message = message; } /** - * Set the requestId of this {@link AiApiError} instance and return the same instance. - * - * @param requestId ID of the individual request - * @return The same instance of this {@link AiApiError} class - */ + * Set the requestId of this {@link AiApiError} instance and return the same instance. + * + * @param requestId ID of the individual request + * @return The same instance of this {@link AiApiError} class + */ @Nonnull public AiApiError requestId(@Nonnull final String requestId) { this.requestId = requestId; return this; } /** - * ID of the individual request - * @return requestId The requestId of this {@link AiApiError} instance. - **/ + * ID of the individual request + * @return requestId The requestId of this {@link AiApiError} instance. + */ @Nonnull public String getRequestId() { return requestId; } /** - * Set the requestId of this {@link AiApiError} instance. - * - * @param requestId ID of the individual request - */ + * Set the requestId of this {@link AiApiError} instance. + * + * @param requestId ID of the individual request + */ public void setRequestId( @Nonnull final String requestId) { this.requestId = requestId; } /** - * Set the target of this {@link AiApiError} instance and return the same instance. - * - * @param target Invoked URL - * @return The same instance of this {@link AiApiError} class - */ + * Set the target of this {@link AiApiError} instance and return the same instance. + * + * @param target Invoked URL + * @return The same instance of this {@link AiApiError} class + */ @Nonnull public AiApiError target(@Nonnull final String target) { this.target = target; return this; } /** - * Invoked URL - * @return target The target of this {@link AiApiError} instance. - **/ + * Invoked URL + * @return target The target of this {@link AiApiError} instance. + */ @Nonnull public String getTarget() { return target; } /** - * Set the target of this {@link AiApiError} instance. - * - * @param target Invoked URL - */ + * Set the target of this {@link AiApiError} instance. + * + * @param target Invoked URL + */ public void setTarget( @Nonnull final String target) { this.target = target; } /** - * Set the details of this {@link AiApiError} instance and return the same instance. - * - * @param details Optional details of the error message - * @return The same instance of this {@link AiApiError} class - */ + * Set the details of this {@link AiApiError} instance and return the same instance. + * + * @param details Optional details of the error message + * @return The same instance of this {@link AiApiError} class + */ @Nonnull public AiApiError details(@Nonnull final Object details) { this.details = details; return this; } /** - * Optional details of the error message - * @return details The details of this {@link AiApiError} instance. - **/ + * Optional details of the error message + * @return details The details of this {@link AiApiError} instance. + */ @Nonnull public Object getDetails() { return details; } /** - * Set the details of this {@link AiApiError} instance. - * - * @param details Optional details of the error message - */ + * Set the details of this {@link AiApiError} instance. + * + * @param details Optional details of the error message + */ public void setDetails( @Nonnull final Object details) { this.details = details; } @@ -286,5 +285,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/AiApiErrorWithId.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/AiApiErrorWithId.java index 91eef2536..38a39e523 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/AiApiErrorWithId.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/AiApiErrorWithId.java @@ -39,7 +39,6 @@ /** * AiApiErrorWithId */ - // CHECKSTYLE:OFF public class AiApiErrorWithId // CHECKSTYLE:ON @@ -55,57 +54,57 @@ public class AiApiErrorWithId private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the id of this {@link AiApiErrorWithId} instance and return the same instance. - * - * @param id Generic ID - * @return The same instance of this {@link AiApiErrorWithId} class - */ + * Set the id of this {@link AiApiErrorWithId} instance and return the same instance. + * + * @param id Generic ID + * @return The same instance of this {@link AiApiErrorWithId} class + */ @Nonnull public AiApiErrorWithId id(@Nonnull final String id) { this.id = id; return this; } /** - * Generic ID - * @return id The id of this {@link AiApiErrorWithId} instance. - **/ + * Generic ID + * @return id The id of this {@link AiApiErrorWithId} instance. + */ @Nonnull public String getId() { return id; } /** - * Set the id of this {@link AiApiErrorWithId} instance. - * - * @param id Generic ID - */ + * Set the id of this {@link AiApiErrorWithId} instance. + * + * @param id Generic ID + */ public void setId( @Nonnull final String id) { this.id = id; } /** - * Set the error of this {@link AiApiErrorWithId} instance and return the same instance. - * - * @param error The error of this {@link AiApiErrorWithId} - * @return The same instance of this {@link AiApiErrorWithId} class - */ + * Set the error of this {@link AiApiErrorWithId} instance and return the same instance. + * + * @param error The error of this {@link AiApiErrorWithId} + * @return The same instance of this {@link AiApiErrorWithId} class + */ @Nonnull public AiApiErrorWithId error(@Nonnull final AiApiError error) { this.error = error; return this; } /** - * Get error - * @return error The error of this {@link AiApiErrorWithId} instance. - **/ + * Get error + * @return error The error of this {@link AiApiErrorWithId} instance. + */ @Nonnull public AiApiError getError() { return error; } /** - * Set the error of this {@link AiApiErrorWithId} instance. - * - * @param error The error of this {@link AiApiErrorWithId} - */ + * Set the error of this {@link AiApiErrorWithId} instance. + * + * @param error The error of this {@link AiApiErrorWithId} + */ public void setError( @Nonnull final AiApiError error) { this.error = error; } @@ -188,5 +187,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/AiArtifact.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/AiArtifact.java index afa9c166d..402f93f63 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/AiArtifact.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/AiArtifact.java @@ -44,7 +44,6 @@ /** * Base data of the artifact; this is the data that can be provided when the artifact is created; `name` and `kind` are required because they constitute important semantic filtering criteria for use in training / inference executables (`name` is a semantic handle of the artifact within a scenario and `kind` specifies the type of usage, e.g. you would only want to allow models in the model operator). */ - // CHECKSTYLE:OFF public class AiArtifact // CHECKSTYLE:ON @@ -154,21 +153,21 @@ public enum KindEnum { private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the labels of this {@link AiArtifact} instance and return the same instance. - * - * @param labels Arbitrary labels as meta information - * @return The same instance of this {@link AiArtifact} class - */ + * Set the labels of this {@link AiArtifact} instance and return the same instance. + * + * @param labels Arbitrary labels as meta information + * @return The same instance of this {@link AiArtifact} class + */ @Nonnull public AiArtifact labels(@Nonnull final List labels) { this.labels = labels; return this; } /** - * Add one labels instance to this {@link AiArtifact}. - * @param labelsItem The labels that should be added - * @return The same instance of type {@link AiArtifact} - */ - @Nonnull public AiArtifact addlabelsItem( @Nonnull final AiLabel labelsItem) { + * Add one labels instance to this {@link AiArtifact}. + * @param labelsItem The labels that should be added + * @return The same instance of type {@link AiArtifact} + */ + @Nonnull public AiArtifact addLabelsItem( @Nonnull final AiLabel labelsItem) { if (this.labels == null) { this.labels = new ArrayList<>(); } @@ -177,326 +176,326 @@ public enum KindEnum { } /** - * Arbitrary labels as meta information - * @return labels The labels of this {@link AiArtifact} instance. - **/ + * Arbitrary labels as meta information + * @return labels The labels of this {@link AiArtifact} instance. + */ @Nonnull public List getLabels() { return labels; } /** - * Set the labels of this {@link AiArtifact} instance. - * - * @param labels Arbitrary labels as meta information - */ + * Set the labels of this {@link AiArtifact} instance. + * + * @param labels Arbitrary labels as meta information + */ public void setLabels( @Nonnull final List labels) { this.labels = labels; } /** - * Set the name of this {@link AiArtifact} instance and return the same instance. - * - * @param name Name of the artifact - * @return The same instance of this {@link AiArtifact} class - */ + * Set the name of this {@link AiArtifact} instance and return the same instance. + * + * @param name Name of the artifact + * @return The same instance of this {@link AiArtifact} class + */ @Nonnull public AiArtifact name(@Nonnull final String name) { this.name = name; return this; } /** - * Name of the artifact - * @return name The name of this {@link AiArtifact} instance. - **/ + * Name of the artifact + * @return name The name of this {@link AiArtifact} instance. + */ @Nonnull public String getName() { return name; } /** - * Set the name of this {@link AiArtifact} instance. - * - * @param name Name of the artifact - */ + * Set the name of this {@link AiArtifact} instance. + * + * @param name Name of the artifact + */ public void setName( @Nonnull final String name) { this.name = name; } /** - * Set the kind of this {@link AiArtifact} instance and return the same instance. - * - * @param kind Kind of the artifact, i.e. model or dataset - * @return The same instance of this {@link AiArtifact} class - */ + * Set the kind of this {@link AiArtifact} instance and return the same instance. + * + * @param kind Kind of the artifact, i.e. model or dataset + * @return The same instance of this {@link AiArtifact} class + */ @Nonnull public AiArtifact kind(@Nonnull final KindEnum kind) { this.kind = kind; return this; } /** - * Kind of the artifact, i.e. model or dataset - * @return kind The kind of this {@link AiArtifact} instance. - **/ + * Kind of the artifact, i.e. model or dataset + * @return kind The kind of this {@link AiArtifact} instance. + */ @Nonnull public KindEnum getKind() { return kind; } /** - * Set the kind of this {@link AiArtifact} instance. - * - * @param kind Kind of the artifact, i.e. model or dataset - */ + * Set the kind of this {@link AiArtifact} instance. + * + * @param kind Kind of the artifact, i.e. model or dataset + */ public void setKind( @Nonnull final KindEnum kind) { this.kind = kind; } /** - * Set the url of this {@link AiArtifact} instance and return the same instance. - * - * @param url Reference to the location of the artifact. - * @return The same instance of this {@link AiArtifact} class - */ + * Set the url of this {@link AiArtifact} instance and return the same instance. + * + * @param url Reference to the location of the artifact. + * @return The same instance of this {@link AiArtifact} class + */ @Nonnull public AiArtifact url(@Nonnull final String url) { this.url = url; return this; } /** - * Reference to the location of the artifact. - * @return url The url of this {@link AiArtifact} instance. - **/ + * Reference to the location of the artifact. + * @return url The url of this {@link AiArtifact} instance. + */ @Nonnull public String getUrl() { return url; } /** - * Set the url of this {@link AiArtifact} instance. - * - * @param url Reference to the location of the artifact. - */ + * Set the url of this {@link AiArtifact} instance. + * + * @param url Reference to the location of the artifact. + */ public void setUrl( @Nonnull final String url) { this.url = url; } /** - * Set the description of this {@link AiArtifact} instance and return the same instance. - * - * @param description Description of the artifact - * @return The same instance of this {@link AiArtifact} class - */ + * Set the description of this {@link AiArtifact} instance and return the same instance. + * + * @param description Description of the artifact + * @return The same instance of this {@link AiArtifact} class + */ @Nonnull public AiArtifact description(@Nonnull final String description) { this.description = description; return this; } /** - * Description of the artifact - * @return description The description of this {@link AiArtifact} instance. - **/ + * Description of the artifact + * @return description The description of this {@link AiArtifact} instance. + */ @Nonnull public String getDescription() { return description; } /** - * Set the description of this {@link AiArtifact} instance. - * - * @param description Description of the artifact - */ + * Set the description of this {@link AiArtifact} instance. + * + * @param description Description of the artifact + */ public void setDescription( @Nonnull final String description) { this.description = description; } /** - * Set the id of this {@link AiArtifact} instance and return the same instance. - * - * @param id ID of the artifact - * @return The same instance of this {@link AiArtifact} class - */ + * Set the id of this {@link AiArtifact} instance and return the same instance. + * + * @param id ID of the artifact + * @return The same instance of this {@link AiArtifact} class + */ @Nonnull public AiArtifact id(@Nonnull final String id) { this.id = id; return this; } /** - * ID of the artifact - * @return id The id of this {@link AiArtifact} instance. - **/ + * ID of the artifact + * @return id The id of this {@link AiArtifact} instance. + */ @Nonnull public String getId() { return id; } /** - * Set the id of this {@link AiArtifact} instance. - * - * @param id ID of the artifact - */ + * Set the id of this {@link AiArtifact} instance. + * + * @param id ID of the artifact + */ public void setId( @Nonnull final String id) { this.id = id; } /** - * Set the scenarioId of this {@link AiArtifact} instance and return the same instance. - * - * @param scenarioId ID of the scenario - * @return The same instance of this {@link AiArtifact} class - */ + * Set the scenarioId of this {@link AiArtifact} instance and return the same instance. + * + * @param scenarioId ID of the scenario + * @return The same instance of this {@link AiArtifact} class + */ @Nonnull public AiArtifact scenarioId(@Nonnull final String scenarioId) { this.scenarioId = scenarioId; return this; } /** - * ID of the scenario - * @return scenarioId The scenarioId of this {@link AiArtifact} instance. - **/ + * ID of the scenario + * @return scenarioId The scenarioId of this {@link AiArtifact} instance. + */ @Nonnull public String getScenarioId() { return scenarioId; } /** - * Set the scenarioId of this {@link AiArtifact} instance. - * - * @param scenarioId ID of the scenario - */ + * Set the scenarioId of this {@link AiArtifact} instance. + * + * @param scenarioId ID of the scenario + */ public void setScenarioId( @Nonnull final String scenarioId) { this.scenarioId = scenarioId; } /** - * Set the configurationId of this {@link AiArtifact} instance and return the same instance. - * - * @param configurationId ID of the configuration - * @return The same instance of this {@link AiArtifact} class - */ + * Set the configurationId of this {@link AiArtifact} instance and return the same instance. + * + * @param configurationId ID of the configuration + * @return The same instance of this {@link AiArtifact} class + */ @Nonnull public AiArtifact configurationId(@Nonnull final String configurationId) { this.configurationId = configurationId; return this; } /** - * ID of the configuration - * @return configurationId The configurationId of this {@link AiArtifact} instance. - **/ + * ID of the configuration + * @return configurationId The configurationId of this {@link AiArtifact} instance. + */ @Nonnull public String getConfigurationId() { return configurationId; } /** - * Set the configurationId of this {@link AiArtifact} instance. - * - * @param configurationId ID of the configuration - */ + * Set the configurationId of this {@link AiArtifact} instance. + * + * @param configurationId ID of the configuration + */ public void setConfigurationId( @Nonnull final String configurationId) { this.configurationId = configurationId; } /** - * Set the executionId of this {@link AiArtifact} instance and return the same instance. - * - * @param executionId ID of the execution - * @return The same instance of this {@link AiArtifact} class - */ + * Set the executionId of this {@link AiArtifact} instance and return the same instance. + * + * @param executionId ID of the execution + * @return The same instance of this {@link AiArtifact} class + */ @Nonnull public AiArtifact executionId(@Nonnull final String executionId) { this.executionId = executionId; return this; } /** - * ID of the execution - * @return executionId The executionId of this {@link AiArtifact} instance. - **/ + * ID of the execution + * @return executionId The executionId of this {@link AiArtifact} instance. + */ @Nonnull public String getExecutionId() { return executionId; } /** - * Set the executionId of this {@link AiArtifact} instance. - * - * @param executionId ID of the execution - */ + * Set the executionId of this {@link AiArtifact} instance. + * + * @param executionId ID of the execution + */ public void setExecutionId( @Nonnull final String executionId) { this.executionId = executionId; } /** - * Set the createdAt of this {@link AiArtifact} instance and return the same instance. - * - * @param createdAt Timestamp of resource creation - * @return The same instance of this {@link AiArtifact} class - */ + * Set the createdAt of this {@link AiArtifact} instance and return the same instance. + * + * @param createdAt Timestamp of resource creation + * @return The same instance of this {@link AiArtifact} class + */ @Nonnull public AiArtifact createdAt(@Nonnull final OffsetDateTime createdAt) { this.createdAt = createdAt; return this; } /** - * Timestamp of resource creation - * @return createdAt The createdAt of this {@link AiArtifact} instance. - **/ + * Timestamp of resource creation + * @return createdAt The createdAt of this {@link AiArtifact} instance. + */ @Nonnull public OffsetDateTime getCreatedAt() { return createdAt; } /** - * Set the createdAt of this {@link AiArtifact} instance. - * - * @param createdAt Timestamp of resource creation - */ + * Set the createdAt of this {@link AiArtifact} instance. + * + * @param createdAt Timestamp of resource creation + */ public void setCreatedAt( @Nonnull final OffsetDateTime createdAt) { this.createdAt = createdAt; } /** - * Set the modifiedAt of this {@link AiArtifact} instance and return the same instance. - * - * @param modifiedAt Timestamp of latest resource modification - * @return The same instance of this {@link AiArtifact} class - */ + * Set the modifiedAt of this {@link AiArtifact} instance and return the same instance. + * + * @param modifiedAt Timestamp of latest resource modification + * @return The same instance of this {@link AiArtifact} class + */ @Nonnull public AiArtifact modifiedAt(@Nonnull final OffsetDateTime modifiedAt) { this.modifiedAt = modifiedAt; return this; } /** - * Timestamp of latest resource modification - * @return modifiedAt The modifiedAt of this {@link AiArtifact} instance. - **/ + * Timestamp of latest resource modification + * @return modifiedAt The modifiedAt of this {@link AiArtifact} instance. + */ @Nonnull public OffsetDateTime getModifiedAt() { return modifiedAt; } /** - * Set the modifiedAt of this {@link AiArtifact} instance. - * - * @param modifiedAt Timestamp of latest resource modification - */ + * Set the modifiedAt of this {@link AiArtifact} instance. + * + * @param modifiedAt Timestamp of latest resource modification + */ public void setModifiedAt( @Nonnull final OffsetDateTime modifiedAt) { this.modifiedAt = modifiedAt; } /** - * Set the scenario of this {@link AiArtifact} instance and return the same instance. - * - * @param scenario The scenario of this {@link AiArtifact} - * @return The same instance of this {@link AiArtifact} class - */ + * Set the scenario of this {@link AiArtifact} instance and return the same instance. + * + * @param scenario The scenario of this {@link AiArtifact} + * @return The same instance of this {@link AiArtifact} class + */ @Nonnull public AiArtifact scenario(@Nonnull final AiScenario scenario) { this.scenario = scenario; return this; } /** - * Get scenario - * @return scenario The scenario of this {@link AiArtifact} instance. - **/ + * Get scenario + * @return scenario The scenario of this {@link AiArtifact} instance. + */ @Nonnull public AiScenario getScenario() { return scenario; } /** - * Set the scenario of this {@link AiArtifact} instance. - * - * @param scenario The scenario of this {@link AiArtifact} - */ + * Set the scenario of this {@link AiArtifact} instance. + * + * @param scenario The scenario of this {@link AiArtifact} + */ public void setScenario( @Nonnull final AiScenario scenario) { this.scenario = scenario; } @@ -599,5 +598,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/AiArtifactArgumentBinding.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/AiArtifactArgumentBinding.java index e7b36979c..c32525f3d 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/AiArtifactArgumentBinding.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/AiArtifactArgumentBinding.java @@ -38,7 +38,6 @@ /** * Required for execution Result of activation */ - // CHECKSTYLE:OFF public class AiArtifactArgumentBinding // CHECKSTYLE:ON @@ -54,57 +53,57 @@ public class AiArtifactArgumentBinding private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the key of this {@link AiArtifactArgumentBinding} instance and return the same instance. - * - * @param key The key of this {@link AiArtifactArgumentBinding} - * @return The same instance of this {@link AiArtifactArgumentBinding} class - */ + * Set the key of this {@link AiArtifactArgumentBinding} instance and return the same instance. + * + * @param key The key of this {@link AiArtifactArgumentBinding} + * @return The same instance of this {@link AiArtifactArgumentBinding} class + */ @Nonnull public AiArtifactArgumentBinding key(@Nonnull final String key) { this.key = key; return this; } /** - * Get key - * @return key The key of this {@link AiArtifactArgumentBinding} instance. - **/ + * Get key + * @return key The key of this {@link AiArtifactArgumentBinding} instance. + */ @Nonnull public String getKey() { return key; } /** - * Set the key of this {@link AiArtifactArgumentBinding} instance. - * - * @param key The key of this {@link AiArtifactArgumentBinding} - */ + * Set the key of this {@link AiArtifactArgumentBinding} instance. + * + * @param key The key of this {@link AiArtifactArgumentBinding} + */ public void setKey( @Nonnull final String key) { this.key = key; } /** - * Set the artifactId of this {@link AiArtifactArgumentBinding} instance and return the same instance. - * - * @param artifactId ID of the artifact - * @return The same instance of this {@link AiArtifactArgumentBinding} class - */ + * Set the artifactId of this {@link AiArtifactArgumentBinding} instance and return the same instance. + * + * @param artifactId ID of the artifact + * @return The same instance of this {@link AiArtifactArgumentBinding} class + */ @Nonnull public AiArtifactArgumentBinding artifactId(@Nonnull final String artifactId) { this.artifactId = artifactId; return this; } /** - * ID of the artifact - * @return artifactId The artifactId of this {@link AiArtifactArgumentBinding} instance. - **/ + * ID of the artifact + * @return artifactId The artifactId of this {@link AiArtifactArgumentBinding} instance. + */ @Nonnull public String getArtifactId() { return artifactId; } /** - * Set the artifactId of this {@link AiArtifactArgumentBinding} instance. - * - * @param artifactId ID of the artifact - */ + * Set the artifactId of this {@link AiArtifactArgumentBinding} instance. + * + * @param artifactId ID of the artifact + */ public void setArtifactId( @Nonnull final String artifactId) { this.artifactId = artifactId; } @@ -187,5 +186,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/AiArtifactCreationResponse.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/AiArtifactCreationResponse.java index b7ce4892b..3510cdd10 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/AiArtifactCreationResponse.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/AiArtifactCreationResponse.java @@ -38,7 +38,6 @@ /** * AiArtifactCreationResponse */ - // CHECKSTYLE:OFF public class AiArtifactCreationResponse // CHECKSTYLE:ON @@ -57,85 +56,85 @@ public class AiArtifactCreationResponse private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the id of this {@link AiArtifactCreationResponse} instance and return the same instance. - * - * @param id Generic ID - * @return The same instance of this {@link AiArtifactCreationResponse} class - */ + * Set the id of this {@link AiArtifactCreationResponse} instance and return the same instance. + * + * @param id Generic ID + * @return The same instance of this {@link AiArtifactCreationResponse} class + */ @Nonnull public AiArtifactCreationResponse id(@Nonnull final String id) { this.id = id; return this; } /** - * Generic ID - * @return id The id of this {@link AiArtifactCreationResponse} instance. - **/ + * Generic ID + * @return id The id of this {@link AiArtifactCreationResponse} instance. + */ @Nonnull public String getId() { return id; } /** - * Set the id of this {@link AiArtifactCreationResponse} instance. - * - * @param id Generic ID - */ + * Set the id of this {@link AiArtifactCreationResponse} instance. + * + * @param id Generic ID + */ public void setId( @Nonnull final String id) { this.id = id; } /** - * Set the message of this {@link AiArtifactCreationResponse} instance and return the same instance. - * - * @param message Message - * @return The same instance of this {@link AiArtifactCreationResponse} class - */ + * Set the message of this {@link AiArtifactCreationResponse} instance and return the same instance. + * + * @param message Message + * @return The same instance of this {@link AiArtifactCreationResponse} class + */ @Nonnull public AiArtifactCreationResponse message(@Nonnull final String message) { this.message = message; return this; } /** - * Message - * @return message The message of this {@link AiArtifactCreationResponse} instance. - **/ + * Message + * @return message The message of this {@link AiArtifactCreationResponse} instance. + */ @Nonnull public String getMessage() { return message; } /** - * Set the message of this {@link AiArtifactCreationResponse} instance. - * - * @param message Message - */ + * Set the message of this {@link AiArtifactCreationResponse} instance. + * + * @param message Message + */ public void setMessage( @Nonnull final String message) { this.message = message; } /** - * Set the url of this {@link AiArtifactCreationResponse} instance and return the same instance. - * - * @param url Reference to the location of the artifact. - * @return The same instance of this {@link AiArtifactCreationResponse} class - */ + * Set the url of this {@link AiArtifactCreationResponse} instance and return the same instance. + * + * @param url Reference to the location of the artifact. + * @return The same instance of this {@link AiArtifactCreationResponse} class + */ @Nonnull public AiArtifactCreationResponse url(@Nonnull final String url) { this.url = url; return this; } /** - * Reference to the location of the artifact. - * @return url The url of this {@link AiArtifactCreationResponse} instance. - **/ + * Reference to the location of the artifact. + * @return url The url of this {@link AiArtifactCreationResponse} instance. + */ @Nonnull public String getUrl() { return url; } /** - * Set the url of this {@link AiArtifactCreationResponse} instance. - * - * @param url Reference to the location of the artifact. - */ + * Set the url of this {@link AiArtifactCreationResponse} instance. + * + * @param url Reference to the location of the artifact. + */ public void setUrl( @Nonnull final String url) { this.url = url; } @@ -220,5 +219,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/AiArtifactList.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/AiArtifactList.java index 0c23470d3..dab1e5a0c 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/AiArtifactList.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/AiArtifactList.java @@ -42,7 +42,6 @@ /** * AiArtifactList */ - // CHECKSTYLE:OFF public class AiArtifactList // CHECKSTYLE:ON @@ -58,49 +57,49 @@ public class AiArtifactList private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the count of this {@link AiArtifactList} instance and return the same instance. - * - * @param count Number of the resource instances in the list - * @return The same instance of this {@link AiArtifactList} class - */ + * Set the count of this {@link AiArtifactList} instance and return the same instance. + * + * @param count Number of the resource instances in the list + * @return The same instance of this {@link AiArtifactList} class + */ @Nonnull public AiArtifactList count(@Nonnull final Integer count) { this.count = count; return this; } /** - * Number of the resource instances in the list - * @return count The count of this {@link AiArtifactList} instance. - **/ + * Number of the resource instances in the list + * @return count The count of this {@link AiArtifactList} instance. + */ @Nonnull public Integer getCount() { return count; } /** - * Set the count of this {@link AiArtifactList} instance. - * - * @param count Number of the resource instances in the list - */ + * Set the count of this {@link AiArtifactList} instance. + * + * @param count Number of the resource instances in the list + */ public void setCount( @Nonnull final Integer count) { this.count = count; } /** - * Set the resources of this {@link AiArtifactList} instance and return the same instance. - * - * @param resources The resources of this {@link AiArtifactList} - * @return The same instance of this {@link AiArtifactList} class - */ + * Set the resources of this {@link AiArtifactList} instance and return the same instance. + * + * @param resources The resources of this {@link AiArtifactList} + * @return The same instance of this {@link AiArtifactList} class + */ @Nonnull public AiArtifactList resources(@Nonnull final List resources) { this.resources = resources; return this; } /** - * Add one resources instance to this {@link AiArtifactList}. - * @param resourcesItem The resources that should be added - * @return The same instance of type {@link AiArtifactList} - */ - @Nonnull public AiArtifactList addresourcesItem( @Nonnull final AiArtifact resourcesItem) { + * Add one resources instance to this {@link AiArtifactList}. + * @param resourcesItem The resources that should be added + * @return The same instance of type {@link AiArtifactList} + */ + @Nonnull public AiArtifactList addResourcesItem( @Nonnull final AiArtifact resourcesItem) { if (this.resources == null) { this.resources = new ArrayList<>(); } @@ -109,18 +108,18 @@ public void setCount( @Nonnull final Integer count) { } /** - * Get resources - * @return resources The resources of this {@link AiArtifactList} instance. - **/ + * Get resources + * @return resources The resources of this {@link AiArtifactList} instance. + */ @Nonnull public List getResources() { return resources; } /** - * Set the resources of this {@link AiArtifactList} instance. - * - * @param resources The resources of this {@link AiArtifactList} - */ + * Set the resources of this {@link AiArtifactList} instance. + * + * @param resources The resources of this {@link AiArtifactList} + */ public void setResources( @Nonnull final List resources) { this.resources = resources; } @@ -203,5 +202,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/AiArtifactPostData.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/AiArtifactPostData.java index 7725fb382..eb7efecfe 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/AiArtifactPostData.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/AiArtifactPostData.java @@ -42,7 +42,6 @@ /** * Base data of the artifact; this is the data that can be provided when the artifact is created; `name` and `kind` are required because they constitute important semantic filtering criteria for use in training / inference executables (`name` is a semantic handle of the artifact within a scenario and `kind` specifies the type of usage, e.g. you would only want to allow models in the model operator). */ - // CHECKSTYLE:OFF public class AiArtifactPostData // CHECKSTYLE:ON @@ -134,21 +133,21 @@ public enum KindEnum { private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the labels of this {@link AiArtifactPostData} instance and return the same instance. - * - * @param labels Arbitrary labels as meta information - * @return The same instance of this {@link AiArtifactPostData} class - */ + * Set the labels of this {@link AiArtifactPostData} instance and return the same instance. + * + * @param labels Arbitrary labels as meta information + * @return The same instance of this {@link AiArtifactPostData} class + */ @Nonnull public AiArtifactPostData labels(@Nonnull final List labels) { this.labels = labels; return this; } /** - * Add one labels instance to this {@link AiArtifactPostData}. - * @param labelsItem The labels that should be added - * @return The same instance of type {@link AiArtifactPostData} - */ - @Nonnull public AiArtifactPostData addlabelsItem( @Nonnull final AiLabel labelsItem) { + * Add one labels instance to this {@link AiArtifactPostData}. + * @param labelsItem The labels that should be added + * @return The same instance of type {@link AiArtifactPostData} + */ + @Nonnull public AiArtifactPostData addLabelsItem( @Nonnull final AiLabel labelsItem) { if (this.labels == null) { this.labels = new ArrayList<>(); } @@ -157,158 +156,158 @@ public enum KindEnum { } /** - * Arbitrary labels as meta information - * @return labels The labels of this {@link AiArtifactPostData} instance. - **/ + * Arbitrary labels as meta information + * @return labels The labels of this {@link AiArtifactPostData} instance. + */ @Nonnull public List getLabels() { return labels; } /** - * Set the labels of this {@link AiArtifactPostData} instance. - * - * @param labels Arbitrary labels as meta information - */ + * Set the labels of this {@link AiArtifactPostData} instance. + * + * @param labels Arbitrary labels as meta information + */ public void setLabels( @Nonnull final List labels) { this.labels = labels; } /** - * Set the name of this {@link AiArtifactPostData} instance and return the same instance. - * - * @param name Name of the artifact - * @return The same instance of this {@link AiArtifactPostData} class - */ + * Set the name of this {@link AiArtifactPostData} instance and return the same instance. + * + * @param name Name of the artifact + * @return The same instance of this {@link AiArtifactPostData} class + */ @Nonnull public AiArtifactPostData name(@Nonnull final String name) { this.name = name; return this; } /** - * Name of the artifact - * @return name The name of this {@link AiArtifactPostData} instance. - **/ + * Name of the artifact + * @return name The name of this {@link AiArtifactPostData} instance. + */ @Nonnull public String getName() { return name; } /** - * Set the name of this {@link AiArtifactPostData} instance. - * - * @param name Name of the artifact - */ + * Set the name of this {@link AiArtifactPostData} instance. + * + * @param name Name of the artifact + */ public void setName( @Nonnull final String name) { this.name = name; } /** - * Set the kind of this {@link AiArtifactPostData} instance and return the same instance. - * - * @param kind Kind of the artifact, i.e. model or dataset - * @return The same instance of this {@link AiArtifactPostData} class - */ + * Set the kind of this {@link AiArtifactPostData} instance and return the same instance. + * + * @param kind Kind of the artifact, i.e. model or dataset + * @return The same instance of this {@link AiArtifactPostData} class + */ @Nonnull public AiArtifactPostData kind(@Nonnull final KindEnum kind) { this.kind = kind; return this; } /** - * Kind of the artifact, i.e. model or dataset - * @return kind The kind of this {@link AiArtifactPostData} instance. - **/ + * Kind of the artifact, i.e. model or dataset + * @return kind The kind of this {@link AiArtifactPostData} instance. + */ @Nonnull public KindEnum getKind() { return kind; } /** - * Set the kind of this {@link AiArtifactPostData} instance. - * - * @param kind Kind of the artifact, i.e. model or dataset - */ + * Set the kind of this {@link AiArtifactPostData} instance. + * + * @param kind Kind of the artifact, i.e. model or dataset + */ public void setKind( @Nonnull final KindEnum kind) { this.kind = kind; } /** - * Set the url of this {@link AiArtifactPostData} instance and return the same instance. - * - * @param url Reference to the location of the artifact. - * @return The same instance of this {@link AiArtifactPostData} class - */ + * Set the url of this {@link AiArtifactPostData} instance and return the same instance. + * + * @param url Reference to the location of the artifact. + * @return The same instance of this {@link AiArtifactPostData} class + */ @Nonnull public AiArtifactPostData url(@Nonnull final String url) { this.url = url; return this; } /** - * Reference to the location of the artifact. - * @return url The url of this {@link AiArtifactPostData} instance. - **/ + * Reference to the location of the artifact. + * @return url The url of this {@link AiArtifactPostData} instance. + */ @Nonnull public String getUrl() { return url; } /** - * Set the url of this {@link AiArtifactPostData} instance. - * - * @param url Reference to the location of the artifact. - */ + * Set the url of this {@link AiArtifactPostData} instance. + * + * @param url Reference to the location of the artifact. + */ public void setUrl( @Nonnull final String url) { this.url = url; } /** - * Set the description of this {@link AiArtifactPostData} instance and return the same instance. - * - * @param description Description of the artifact - * @return The same instance of this {@link AiArtifactPostData} class - */ + * Set the description of this {@link AiArtifactPostData} instance and return the same instance. + * + * @param description Description of the artifact + * @return The same instance of this {@link AiArtifactPostData} class + */ @Nonnull public AiArtifactPostData description(@Nonnull final String description) { this.description = description; return this; } /** - * Description of the artifact - * @return description The description of this {@link AiArtifactPostData} instance. - **/ + * Description of the artifact + * @return description The description of this {@link AiArtifactPostData} instance. + */ @Nonnull public String getDescription() { return description; } /** - * Set the description of this {@link AiArtifactPostData} instance. - * - * @param description Description of the artifact - */ + * Set the description of this {@link AiArtifactPostData} instance. + * + * @param description Description of the artifact + */ public void setDescription( @Nonnull final String description) { this.description = description; } /** - * Set the scenarioId of this {@link AiArtifactPostData} instance and return the same instance. - * - * @param scenarioId ID of the scenario - * @return The same instance of this {@link AiArtifactPostData} class - */ + * Set the scenarioId of this {@link AiArtifactPostData} instance and return the same instance. + * + * @param scenarioId ID of the scenario + * @return The same instance of this {@link AiArtifactPostData} class + */ @Nonnull public AiArtifactPostData scenarioId(@Nonnull final String scenarioId) { this.scenarioId = scenarioId; return this; } /** - * ID of the scenario - * @return scenarioId The scenarioId of this {@link AiArtifactPostData} instance. - **/ + * ID of the scenario + * @return scenarioId The scenarioId of this {@link AiArtifactPostData} instance. + */ @Nonnull public String getScenarioId() { return scenarioId; } /** - * Set the scenarioId of this {@link AiArtifactPostData} instance. - * - * @param scenarioId ID of the scenario - */ + * Set the scenarioId of this {@link AiArtifactPostData} instance. + * + * @param scenarioId ID of the scenario + */ public void setScenarioId( @Nonnull final String scenarioId) { this.scenarioId = scenarioId; } @@ -399,5 +398,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/AiConfiguration.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/AiConfiguration.java index 8ad937e6b..79c6a44b9 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/AiConfiguration.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/AiConfiguration.java @@ -45,7 +45,6 @@ /** * AiConfiguration */ - // CHECKSTYLE:OFF public class AiConfiguration // CHECKSTYLE:ON @@ -79,105 +78,105 @@ public class AiConfiguration private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the name of this {@link AiConfiguration} instance and return the same instance. - * - * @param name Name of the configuration - * @return The same instance of this {@link AiConfiguration} class - */ + * Set the name of this {@link AiConfiguration} instance and return the same instance. + * + * @param name Name of the configuration + * @return The same instance of this {@link AiConfiguration} class + */ @Nonnull public AiConfiguration name(@Nonnull final String name) { this.name = name; return this; } /** - * Name of the configuration - * @return name The name of this {@link AiConfiguration} instance. - **/ + * Name of the configuration + * @return name The name of this {@link AiConfiguration} instance. + */ @Nonnull public String getName() { return name; } /** - * Set the name of this {@link AiConfiguration} instance. - * - * @param name Name of the configuration - */ + * Set the name of this {@link AiConfiguration} instance. + * + * @param name Name of the configuration + */ public void setName( @Nonnull final String name) { this.name = name; } /** - * Set the executableId of this {@link AiConfiguration} instance and return the same instance. - * - * @param executableId ID of the executable - * @return The same instance of this {@link AiConfiguration} class - */ + * Set the executableId of this {@link AiConfiguration} instance and return the same instance. + * + * @param executableId ID of the executable + * @return The same instance of this {@link AiConfiguration} class + */ @Nonnull public AiConfiguration executableId(@Nonnull final String executableId) { this.executableId = executableId; return this; } /** - * ID of the executable - * @return executableId The executableId of this {@link AiConfiguration} instance. - **/ + * ID of the executable + * @return executableId The executableId of this {@link AiConfiguration} instance. + */ @Nonnull public String getExecutableId() { return executableId; } /** - * Set the executableId of this {@link AiConfiguration} instance. - * - * @param executableId ID of the executable - */ + * Set the executableId of this {@link AiConfiguration} instance. + * + * @param executableId ID of the executable + */ public void setExecutableId( @Nonnull final String executableId) { this.executableId = executableId; } /** - * Set the scenarioId of this {@link AiConfiguration} instance and return the same instance. - * - * @param scenarioId ID of the scenario - * @return The same instance of this {@link AiConfiguration} class - */ + * Set the scenarioId of this {@link AiConfiguration} instance and return the same instance. + * + * @param scenarioId ID of the scenario + * @return The same instance of this {@link AiConfiguration} class + */ @Nonnull public AiConfiguration scenarioId(@Nonnull final String scenarioId) { this.scenarioId = scenarioId; return this; } /** - * ID of the scenario - * @return scenarioId The scenarioId of this {@link AiConfiguration} instance. - **/ + * ID of the scenario + * @return scenarioId The scenarioId of this {@link AiConfiguration} instance. + */ @Nonnull public String getScenarioId() { return scenarioId; } /** - * Set the scenarioId of this {@link AiConfiguration} instance. - * - * @param scenarioId ID of the scenario - */ + * Set the scenarioId of this {@link AiConfiguration} instance. + * + * @param scenarioId ID of the scenario + */ public void setScenarioId( @Nonnull final String scenarioId) { this.scenarioId = scenarioId; } /** - * Set the parameterBindings of this {@link AiConfiguration} instance and return the same instance. - * - * @param parameterBindings The parameterBindings of this {@link AiConfiguration} - * @return The same instance of this {@link AiConfiguration} class - */ + * Set the parameterBindings of this {@link AiConfiguration} instance and return the same instance. + * + * @param parameterBindings The parameterBindings of this {@link AiConfiguration} + * @return The same instance of this {@link AiConfiguration} class + */ @Nonnull public AiConfiguration parameterBindings(@Nonnull final List parameterBindings) { this.parameterBindings = parameterBindings; return this; } /** - * Add one parameterBindings instance to this {@link AiConfiguration}. - * @param parameterBindingsItem The parameterBindings that should be added - * @return The same instance of type {@link AiConfiguration} - */ - @Nonnull public AiConfiguration addparameterBindingsItem( @Nonnull final AiParameterArgumentBinding parameterBindingsItem) { + * Add one parameterBindings instance to this {@link AiConfiguration}. + * @param parameterBindingsItem The parameterBindings that should be added + * @return The same instance of type {@link AiConfiguration} + */ + @Nonnull public AiConfiguration addParameterBindingsItem( @Nonnull final AiParameterArgumentBinding parameterBindingsItem) { if (this.parameterBindings == null) { this.parameterBindings = new ArrayList<>(); } @@ -186,38 +185,38 @@ public void setScenarioId( @Nonnull final String scenarioId) { } /** - * Get parameterBindings - * @return parameterBindings The parameterBindings of this {@link AiConfiguration} instance. - **/ + * Get parameterBindings + * @return parameterBindings The parameterBindings of this {@link AiConfiguration} instance. + */ @Nonnull public List getParameterBindings() { return parameterBindings; } /** - * Set the parameterBindings of this {@link AiConfiguration} instance. - * - * @param parameterBindings The parameterBindings of this {@link AiConfiguration} - */ + * Set the parameterBindings of this {@link AiConfiguration} instance. + * + * @param parameterBindings The parameterBindings of this {@link AiConfiguration} + */ public void setParameterBindings( @Nonnull final List parameterBindings) { this.parameterBindings = parameterBindings; } /** - * Set the inputArtifactBindings of this {@link AiConfiguration} instance and return the same instance. - * - * @param inputArtifactBindings The inputArtifactBindings of this {@link AiConfiguration} - * @return The same instance of this {@link AiConfiguration} class - */ + * Set the inputArtifactBindings of this {@link AiConfiguration} instance and return the same instance. + * + * @param inputArtifactBindings The inputArtifactBindings of this {@link AiConfiguration} + * @return The same instance of this {@link AiConfiguration} class + */ @Nonnull public AiConfiguration inputArtifactBindings(@Nonnull final List inputArtifactBindings) { this.inputArtifactBindings = inputArtifactBindings; return this; } /** - * Add one inputArtifactBindings instance to this {@link AiConfiguration}. - * @param inputArtifactBindingsItem The inputArtifactBindings that should be added - * @return The same instance of type {@link AiConfiguration} - */ - @Nonnull public AiConfiguration addinputArtifactBindingsItem( @Nonnull final AiArtifactArgumentBinding inputArtifactBindingsItem) { + * Add one inputArtifactBindings instance to this {@link AiConfiguration}. + * @param inputArtifactBindingsItem The inputArtifactBindings that should be added + * @return The same instance of type {@link AiConfiguration} + */ + @Nonnull public AiConfiguration addInputArtifactBindingsItem( @Nonnull final AiArtifactArgumentBinding inputArtifactBindingsItem) { if (this.inputArtifactBindings == null) { this.inputArtifactBindings = new ArrayList<>(); } @@ -226,102 +225,102 @@ public void setParameterBindings( @Nonnull final List getInputArtifactBindings() { return inputArtifactBindings; } /** - * Set the inputArtifactBindings of this {@link AiConfiguration} instance. - * - * @param inputArtifactBindings The inputArtifactBindings of this {@link AiConfiguration} - */ + * Set the inputArtifactBindings of this {@link AiConfiguration} instance. + * + * @param inputArtifactBindings The inputArtifactBindings of this {@link AiConfiguration} + */ public void setInputArtifactBindings( @Nonnull final List inputArtifactBindings) { this.inputArtifactBindings = inputArtifactBindings; } /** - * Set the id of this {@link AiConfiguration} instance and return the same instance. - * - * @param id ID of the configuration - * @return The same instance of this {@link AiConfiguration} class - */ + * Set the id of this {@link AiConfiguration} instance and return the same instance. + * + * @param id ID of the configuration + * @return The same instance of this {@link AiConfiguration} class + */ @Nonnull public AiConfiguration id(@Nonnull final String id) { this.id = id; return this; } /** - * ID of the configuration - * @return id The id of this {@link AiConfiguration} instance. - **/ + * ID of the configuration + * @return id The id of this {@link AiConfiguration} instance. + */ @Nonnull public String getId() { return id; } /** - * Set the id of this {@link AiConfiguration} instance. - * - * @param id ID of the configuration - */ + * Set the id of this {@link AiConfiguration} instance. + * + * @param id ID of the configuration + */ public void setId( @Nonnull final String id) { this.id = id; } /** - * Set the createdAt of this {@link AiConfiguration} instance and return the same instance. - * - * @param createdAt Timestamp of resource creation - * @return The same instance of this {@link AiConfiguration} class - */ + * Set the createdAt of this {@link AiConfiguration} instance and return the same instance. + * + * @param createdAt Timestamp of resource creation + * @return The same instance of this {@link AiConfiguration} class + */ @Nonnull public AiConfiguration createdAt(@Nonnull final OffsetDateTime createdAt) { this.createdAt = createdAt; return this; } /** - * Timestamp of resource creation - * @return createdAt The createdAt of this {@link AiConfiguration} instance. - **/ + * Timestamp of resource creation + * @return createdAt The createdAt of this {@link AiConfiguration} instance. + */ @Nonnull public OffsetDateTime getCreatedAt() { return createdAt; } /** - * Set the createdAt of this {@link AiConfiguration} instance. - * - * @param createdAt Timestamp of resource creation - */ + * Set the createdAt of this {@link AiConfiguration} instance. + * + * @param createdAt Timestamp of resource creation + */ public void setCreatedAt( @Nonnull final OffsetDateTime createdAt) { this.createdAt = createdAt; } /** - * Set the scenario of this {@link AiConfiguration} instance and return the same instance. - * - * @param scenario The scenario of this {@link AiConfiguration} - * @return The same instance of this {@link AiConfiguration} class - */ + * Set the scenario of this {@link AiConfiguration} instance and return the same instance. + * + * @param scenario The scenario of this {@link AiConfiguration} + * @return The same instance of this {@link AiConfiguration} class + */ @Nonnull public AiConfiguration scenario(@Nonnull final AiScenario scenario) { this.scenario = scenario; return this; } /** - * Get scenario - * @return scenario The scenario of this {@link AiConfiguration} instance. - **/ + * Get scenario + * @return scenario The scenario of this {@link AiConfiguration} instance. + */ @Nonnull public AiScenario getScenario() { return scenario; } /** - * Set the scenario of this {@link AiConfiguration} instance. - * - * @param scenario The scenario of this {@link AiConfiguration} - */ + * Set the scenario of this {@link AiConfiguration} instance. + * + * @param scenario The scenario of this {@link AiConfiguration} + */ public void setScenario( @Nonnull final AiScenario scenario) { this.scenario = scenario; } @@ -416,5 +415,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/AiConfigurationBaseData.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/AiConfigurationBaseData.java index ec0489631..38ec239af 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/AiConfigurationBaseData.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/AiConfigurationBaseData.java @@ -43,7 +43,6 @@ /** * AiConfigurationBaseData */ - // CHECKSTYLE:OFF public class AiConfigurationBaseData // CHECKSTYLE:ON @@ -68,105 +67,105 @@ public class AiConfigurationBaseData private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the name of this {@link AiConfigurationBaseData} instance and return the same instance. - * - * @param name Name of the configuration - * @return The same instance of this {@link AiConfigurationBaseData} class - */ + * Set the name of this {@link AiConfigurationBaseData} instance and return the same instance. + * + * @param name Name of the configuration + * @return The same instance of this {@link AiConfigurationBaseData} class + */ @Nonnull public AiConfigurationBaseData name(@Nonnull final String name) { this.name = name; return this; } /** - * Name of the configuration - * @return name The name of this {@link AiConfigurationBaseData} instance. - **/ + * Name of the configuration + * @return name The name of this {@link AiConfigurationBaseData} instance. + */ @Nonnull public String getName() { return name; } /** - * Set the name of this {@link AiConfigurationBaseData} instance. - * - * @param name Name of the configuration - */ + * Set the name of this {@link AiConfigurationBaseData} instance. + * + * @param name Name of the configuration + */ public void setName( @Nonnull final String name) { this.name = name; } /** - * Set the executableId of this {@link AiConfigurationBaseData} instance and return the same instance. - * - * @param executableId ID of the executable - * @return The same instance of this {@link AiConfigurationBaseData} class - */ + * Set the executableId of this {@link AiConfigurationBaseData} instance and return the same instance. + * + * @param executableId ID of the executable + * @return The same instance of this {@link AiConfigurationBaseData} class + */ @Nonnull public AiConfigurationBaseData executableId(@Nonnull final String executableId) { this.executableId = executableId; return this; } /** - * ID of the executable - * @return executableId The executableId of this {@link AiConfigurationBaseData} instance. - **/ + * ID of the executable + * @return executableId The executableId of this {@link AiConfigurationBaseData} instance. + */ @Nonnull public String getExecutableId() { return executableId; } /** - * Set the executableId of this {@link AiConfigurationBaseData} instance. - * - * @param executableId ID of the executable - */ + * Set the executableId of this {@link AiConfigurationBaseData} instance. + * + * @param executableId ID of the executable + */ public void setExecutableId( @Nonnull final String executableId) { this.executableId = executableId; } /** - * Set the scenarioId of this {@link AiConfigurationBaseData} instance and return the same instance. - * - * @param scenarioId ID of the scenario - * @return The same instance of this {@link AiConfigurationBaseData} class - */ + * Set the scenarioId of this {@link AiConfigurationBaseData} instance and return the same instance. + * + * @param scenarioId ID of the scenario + * @return The same instance of this {@link AiConfigurationBaseData} class + */ @Nonnull public AiConfigurationBaseData scenarioId(@Nonnull final String scenarioId) { this.scenarioId = scenarioId; return this; } /** - * ID of the scenario - * @return scenarioId The scenarioId of this {@link AiConfigurationBaseData} instance. - **/ + * ID of the scenario + * @return scenarioId The scenarioId of this {@link AiConfigurationBaseData} instance. + */ @Nonnull public String getScenarioId() { return scenarioId; } /** - * Set the scenarioId of this {@link AiConfigurationBaseData} instance. - * - * @param scenarioId ID of the scenario - */ + * Set the scenarioId of this {@link AiConfigurationBaseData} instance. + * + * @param scenarioId ID of the scenario + */ public void setScenarioId( @Nonnull final String scenarioId) { this.scenarioId = scenarioId; } /** - * Set the parameterBindings of this {@link AiConfigurationBaseData} instance and return the same instance. - * - * @param parameterBindings The parameterBindings of this {@link AiConfigurationBaseData} - * @return The same instance of this {@link AiConfigurationBaseData} class - */ + * Set the parameterBindings of this {@link AiConfigurationBaseData} instance and return the same instance. + * + * @param parameterBindings The parameterBindings of this {@link AiConfigurationBaseData} + * @return The same instance of this {@link AiConfigurationBaseData} class + */ @Nonnull public AiConfigurationBaseData parameterBindings(@Nonnull final List parameterBindings) { this.parameterBindings = parameterBindings; return this; } /** - * Add one parameterBindings instance to this {@link AiConfigurationBaseData}. - * @param parameterBindingsItem The parameterBindings that should be added - * @return The same instance of type {@link AiConfigurationBaseData} - */ - @Nonnull public AiConfigurationBaseData addparameterBindingsItem( @Nonnull final AiParameterArgumentBinding parameterBindingsItem) { + * Add one parameterBindings instance to this {@link AiConfigurationBaseData}. + * @param parameterBindingsItem The parameterBindings that should be added + * @return The same instance of type {@link AiConfigurationBaseData} + */ + @Nonnull public AiConfigurationBaseData addParameterBindingsItem( @Nonnull final AiParameterArgumentBinding parameterBindingsItem) { if (this.parameterBindings == null) { this.parameterBindings = new ArrayList<>(); } @@ -175,38 +174,38 @@ public void setScenarioId( @Nonnull final String scenarioId) { } /** - * Get parameterBindings - * @return parameterBindings The parameterBindings of this {@link AiConfigurationBaseData} instance. - **/ + * Get parameterBindings + * @return parameterBindings The parameterBindings of this {@link AiConfigurationBaseData} instance. + */ @Nonnull public List getParameterBindings() { return parameterBindings; } /** - * Set the parameterBindings of this {@link AiConfigurationBaseData} instance. - * - * @param parameterBindings The parameterBindings of this {@link AiConfigurationBaseData} - */ + * Set the parameterBindings of this {@link AiConfigurationBaseData} instance. + * + * @param parameterBindings The parameterBindings of this {@link AiConfigurationBaseData} + */ public void setParameterBindings( @Nonnull final List parameterBindings) { this.parameterBindings = parameterBindings; } /** - * Set the inputArtifactBindings of this {@link AiConfigurationBaseData} instance and return the same instance. - * - * @param inputArtifactBindings The inputArtifactBindings of this {@link AiConfigurationBaseData} - * @return The same instance of this {@link AiConfigurationBaseData} class - */ + * Set the inputArtifactBindings of this {@link AiConfigurationBaseData} instance and return the same instance. + * + * @param inputArtifactBindings The inputArtifactBindings of this {@link AiConfigurationBaseData} + * @return The same instance of this {@link AiConfigurationBaseData} class + */ @Nonnull public AiConfigurationBaseData inputArtifactBindings(@Nonnull final List inputArtifactBindings) { this.inputArtifactBindings = inputArtifactBindings; return this; } /** - * Add one inputArtifactBindings instance to this {@link AiConfigurationBaseData}. - * @param inputArtifactBindingsItem The inputArtifactBindings that should be added - * @return The same instance of type {@link AiConfigurationBaseData} - */ - @Nonnull public AiConfigurationBaseData addinputArtifactBindingsItem( @Nonnull final AiArtifactArgumentBinding inputArtifactBindingsItem) { + * Add one inputArtifactBindings instance to this {@link AiConfigurationBaseData}. + * @param inputArtifactBindingsItem The inputArtifactBindings that should be added + * @return The same instance of type {@link AiConfigurationBaseData} + */ + @Nonnull public AiConfigurationBaseData addInputArtifactBindingsItem( @Nonnull final AiArtifactArgumentBinding inputArtifactBindingsItem) { if (this.inputArtifactBindings == null) { this.inputArtifactBindings = new ArrayList<>(); } @@ -215,18 +214,18 @@ public void setParameterBindings( @Nonnull final List getInputArtifactBindings() { return inputArtifactBindings; } /** - * Set the inputArtifactBindings of this {@link AiConfigurationBaseData} instance. - * - * @param inputArtifactBindings The inputArtifactBindings of this {@link AiConfigurationBaseData} - */ + * Set the inputArtifactBindings of this {@link AiConfigurationBaseData} instance. + * + * @param inputArtifactBindings The inputArtifactBindings of this {@link AiConfigurationBaseData} + */ public void setInputArtifactBindings( @Nonnull final List inputArtifactBindings) { this.inputArtifactBindings = inputArtifactBindings; } @@ -315,5 +314,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/AiConfigurationCreationResponse.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/AiConfigurationCreationResponse.java index a6b939ab6..94e7f39e5 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/AiConfigurationCreationResponse.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/AiConfigurationCreationResponse.java @@ -38,7 +38,6 @@ /** * AiConfigurationCreationResponse */ - // CHECKSTYLE:OFF public class AiConfigurationCreationResponse // CHECKSTYLE:ON @@ -54,57 +53,57 @@ public class AiConfigurationCreationResponse private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the id of this {@link AiConfigurationCreationResponse} instance and return the same instance. - * - * @param id Generic ID - * @return The same instance of this {@link AiConfigurationCreationResponse} class - */ + * Set the id of this {@link AiConfigurationCreationResponse} instance and return the same instance. + * + * @param id Generic ID + * @return The same instance of this {@link AiConfigurationCreationResponse} class + */ @Nonnull public AiConfigurationCreationResponse id(@Nonnull final String id) { this.id = id; return this; } /** - * Generic ID - * @return id The id of this {@link AiConfigurationCreationResponse} instance. - **/ + * Generic ID + * @return id The id of this {@link AiConfigurationCreationResponse} instance. + */ @Nonnull public String getId() { return id; } /** - * Set the id of this {@link AiConfigurationCreationResponse} instance. - * - * @param id Generic ID - */ + * Set the id of this {@link AiConfigurationCreationResponse} instance. + * + * @param id Generic ID + */ public void setId( @Nonnull final String id) { this.id = id; } /** - * Set the message of this {@link AiConfigurationCreationResponse} instance and return the same instance. - * - * @param message Message - * @return The same instance of this {@link AiConfigurationCreationResponse} class - */ + * Set the message of this {@link AiConfigurationCreationResponse} instance and return the same instance. + * + * @param message Message + * @return The same instance of this {@link AiConfigurationCreationResponse} class + */ @Nonnull public AiConfigurationCreationResponse message(@Nonnull final String message) { this.message = message; return this; } /** - * Message - * @return message The message of this {@link AiConfigurationCreationResponse} instance. - **/ + * Message + * @return message The message of this {@link AiConfigurationCreationResponse} instance. + */ @Nonnull public String getMessage() { return message; } /** - * Set the message of this {@link AiConfigurationCreationResponse} instance. - * - * @param message Message - */ + * Set the message of this {@link AiConfigurationCreationResponse} instance. + * + * @param message Message + */ public void setMessage( @Nonnull final String message) { this.message = message; } @@ -187,5 +186,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/AiConfigurationList.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/AiConfigurationList.java index f106f5236..85be21107 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/AiConfigurationList.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/AiConfigurationList.java @@ -42,7 +42,6 @@ /** * AiConfigurationList */ - // CHECKSTYLE:OFF public class AiConfigurationList // CHECKSTYLE:ON @@ -58,49 +57,49 @@ public class AiConfigurationList private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the count of this {@link AiConfigurationList} instance and return the same instance. - * - * @param count Number of the resource instances in the list - * @return The same instance of this {@link AiConfigurationList} class - */ + * Set the count of this {@link AiConfigurationList} instance and return the same instance. + * + * @param count Number of the resource instances in the list + * @return The same instance of this {@link AiConfigurationList} class + */ @Nonnull public AiConfigurationList count(@Nonnull final Integer count) { this.count = count; return this; } /** - * Number of the resource instances in the list - * @return count The count of this {@link AiConfigurationList} instance. - **/ + * Number of the resource instances in the list + * @return count The count of this {@link AiConfigurationList} instance. + */ @Nonnull public Integer getCount() { return count; } /** - * Set the count of this {@link AiConfigurationList} instance. - * - * @param count Number of the resource instances in the list - */ + * Set the count of this {@link AiConfigurationList} instance. + * + * @param count Number of the resource instances in the list + */ public void setCount( @Nonnull final Integer count) { this.count = count; } /** - * Set the resources of this {@link AiConfigurationList} instance and return the same instance. - * - * @param resources The resources of this {@link AiConfigurationList} - * @return The same instance of this {@link AiConfigurationList} class - */ + * Set the resources of this {@link AiConfigurationList} instance and return the same instance. + * + * @param resources The resources of this {@link AiConfigurationList} + * @return The same instance of this {@link AiConfigurationList} class + */ @Nonnull public AiConfigurationList resources(@Nonnull final List resources) { this.resources = resources; return this; } /** - * Add one resources instance to this {@link AiConfigurationList}. - * @param resourcesItem The resources that should be added - * @return The same instance of type {@link AiConfigurationList} - */ - @Nonnull public AiConfigurationList addresourcesItem( @Nonnull final AiConfiguration resourcesItem) { + * Add one resources instance to this {@link AiConfigurationList}. + * @param resourcesItem The resources that should be added + * @return The same instance of type {@link AiConfigurationList} + */ + @Nonnull public AiConfigurationList addResourcesItem( @Nonnull final AiConfiguration resourcesItem) { if (this.resources == null) { this.resources = new ArrayList<>(); } @@ -109,18 +108,18 @@ public void setCount( @Nonnull final Integer count) { } /** - * Get resources - * @return resources The resources of this {@link AiConfigurationList} instance. - **/ + * Get resources + * @return resources The resources of this {@link AiConfigurationList} instance. + */ @Nonnull public List getResources() { return resources; } /** - * Set the resources of this {@link AiConfigurationList} instance. - * - * @param resources The resources of this {@link AiConfigurationList} - */ + * Set the resources of this {@link AiConfigurationList} instance. + * + * @param resources The resources of this {@link AiConfigurationList} + */ public void setResources( @Nonnull final List resources) { this.resources = resources; } @@ -203,5 +202,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/AiDeployment.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/AiDeployment.java index bd49ac736..3836c270b 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/AiDeployment.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/AiDeployment.java @@ -41,7 +41,6 @@ /** * Detailed data about a deployment */ - // CHECKSTYLE:OFF public class AiDeployment // CHECKSTYLE:ON @@ -225,477 +224,477 @@ public enum LastOperationEnum { private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the id of this {@link AiDeployment} instance and return the same instance. - * - * @param id ID of the deployment - * @return The same instance of this {@link AiDeployment} class - */ + * Set the id of this {@link AiDeployment} instance and return the same instance. + * + * @param id ID of the deployment + * @return The same instance of this {@link AiDeployment} class + */ @Nonnull public AiDeployment id(@Nonnull final String id) { this.id = id; return this; } /** - * ID of the deployment - * @return id The id of this {@link AiDeployment} instance. - **/ + * ID of the deployment + * @return id The id of this {@link AiDeployment} instance. + */ @Nonnull public String getId() { return id; } /** - * Set the id of this {@link AiDeployment} instance. - * - * @param id ID of the deployment - */ + * Set the id of this {@link AiDeployment} instance. + * + * @param id ID of the deployment + */ public void setId( @Nonnull final String id) { this.id = id; } /** - * Set the deploymentUrl of this {@link AiDeployment} instance and return the same instance. - * - * @param deploymentUrl Consumption URL of the deployment - * @return The same instance of this {@link AiDeployment} class - */ + * Set the deploymentUrl of this {@link AiDeployment} instance and return the same instance. + * + * @param deploymentUrl Consumption URL of the deployment + * @return The same instance of this {@link AiDeployment} class + */ @Nonnull public AiDeployment deploymentUrl(@Nonnull final String deploymentUrl) { this.deploymentUrl = deploymentUrl; return this; } /** - * Consumption URL of the deployment - * @return deploymentUrl The deploymentUrl of this {@link AiDeployment} instance. - **/ + * Consumption URL of the deployment + * @return deploymentUrl The deploymentUrl of this {@link AiDeployment} instance. + */ @Nonnull public String getDeploymentUrl() { return deploymentUrl; } /** - * Set the deploymentUrl of this {@link AiDeployment} instance. - * - * @param deploymentUrl Consumption URL of the deployment - */ + * Set the deploymentUrl of this {@link AiDeployment} instance. + * + * @param deploymentUrl Consumption URL of the deployment + */ public void setDeploymentUrl( @Nonnull final String deploymentUrl) { this.deploymentUrl = deploymentUrl; } /** - * Set the configurationId of this {@link AiDeployment} instance and return the same instance. - * - * @param configurationId ID of the configuration - * @return The same instance of this {@link AiDeployment} class - */ + * Set the configurationId of this {@link AiDeployment} instance and return the same instance. + * + * @param configurationId ID of the configuration + * @return The same instance of this {@link AiDeployment} class + */ @Nonnull public AiDeployment configurationId(@Nonnull final String configurationId) { this.configurationId = configurationId; return this; } /** - * ID of the configuration - * @return configurationId The configurationId of this {@link AiDeployment} instance. - **/ + * ID of the configuration + * @return configurationId The configurationId of this {@link AiDeployment} instance. + */ @Nonnull public String getConfigurationId() { return configurationId; } /** - * Set the configurationId of this {@link AiDeployment} instance. - * - * @param configurationId ID of the configuration - */ + * Set the configurationId of this {@link AiDeployment} instance. + * + * @param configurationId ID of the configuration + */ public void setConfigurationId( @Nonnull final String configurationId) { this.configurationId = configurationId; } /** - * Set the configurationName of this {@link AiDeployment} instance and return the same instance. - * - * @param configurationName Name of the configuration - * @return The same instance of this {@link AiDeployment} class - */ + * Set the configurationName of this {@link AiDeployment} instance and return the same instance. + * + * @param configurationName Name of the configuration + * @return The same instance of this {@link AiDeployment} class + */ @Nonnull public AiDeployment configurationName(@Nonnull final String configurationName) { this.configurationName = configurationName; return this; } /** - * Name of the configuration - * @return configurationName The configurationName of this {@link AiDeployment} instance. - **/ + * Name of the configuration + * @return configurationName The configurationName of this {@link AiDeployment} instance. + */ @Nonnull public String getConfigurationName() { return configurationName; } /** - * Set the configurationName of this {@link AiDeployment} instance. - * - * @param configurationName Name of the configuration - */ + * Set the configurationName of this {@link AiDeployment} instance. + * + * @param configurationName Name of the configuration + */ public void setConfigurationName( @Nonnull final String configurationName) { this.configurationName = configurationName; } /** - * Set the scenarioId of this {@link AiDeployment} instance and return the same instance. - * - * @param scenarioId ID of the scenario - * @return The same instance of this {@link AiDeployment} class - */ + * Set the scenarioId of this {@link AiDeployment} instance and return the same instance. + * + * @param scenarioId ID of the scenario + * @return The same instance of this {@link AiDeployment} class + */ @Nonnull public AiDeployment scenarioId(@Nonnull final String scenarioId) { this.scenarioId = scenarioId; return this; } /** - * ID of the scenario - * @return scenarioId The scenarioId of this {@link AiDeployment} instance. - **/ + * ID of the scenario + * @return scenarioId The scenarioId of this {@link AiDeployment} instance. + */ @Nonnull public String getScenarioId() { return scenarioId; } /** - * Set the scenarioId of this {@link AiDeployment} instance. - * - * @param scenarioId ID of the scenario - */ + * Set the scenarioId of this {@link AiDeployment} instance. + * + * @param scenarioId ID of the scenario + */ public void setScenarioId( @Nonnull final String scenarioId) { this.scenarioId = scenarioId; } /** - * Set the status of this {@link AiDeployment} instance and return the same instance. - * - * @param status The status of this {@link AiDeployment} - * @return The same instance of this {@link AiDeployment} class - */ + * Set the status of this {@link AiDeployment} instance and return the same instance. + * + * @param status The status of this {@link AiDeployment} + * @return The same instance of this {@link AiDeployment} class + */ @Nonnull public AiDeployment status(@Nonnull final AiDeploymentStatus status) { this.status = status; return this; } /** - * Get status - * @return status The status of this {@link AiDeployment} instance. - **/ + * Get status + * @return status The status of this {@link AiDeployment} instance. + */ @Nonnull public AiDeploymentStatus getStatus() { return status; } /** - * Set the status of this {@link AiDeployment} instance. - * - * @param status The status of this {@link AiDeployment} - */ + * Set the status of this {@link AiDeployment} instance. + * + * @param status The status of this {@link AiDeployment} + */ public void setStatus( @Nonnull final AiDeploymentStatus status) { this.status = status; } /** - * Set the statusMessage of this {@link AiDeployment} instance and return the same instance. - * - * @param statusMessage Deployment status message - * @return The same instance of this {@link AiDeployment} class - */ + * Set the statusMessage of this {@link AiDeployment} instance and return the same instance. + * + * @param statusMessage Deployment status message + * @return The same instance of this {@link AiDeployment} class + */ @Nonnull public AiDeployment statusMessage(@Nonnull final String statusMessage) { this.statusMessage = statusMessage; return this; } /** - * Deployment status message - * @return statusMessage The statusMessage of this {@link AiDeployment} instance. - **/ + * Deployment status message + * @return statusMessage The statusMessage of this {@link AiDeployment} instance. + */ @Nonnull public String getStatusMessage() { return statusMessage; } /** - * Set the statusMessage of this {@link AiDeployment} instance. - * - * @param statusMessage Deployment status message - */ + * Set the statusMessage of this {@link AiDeployment} instance. + * + * @param statusMessage Deployment status message + */ public void setStatusMessage( @Nonnull final String statusMessage) { this.statusMessage = statusMessage; } /** - * Set the targetStatus of this {@link AiDeployment} instance and return the same instance. - * - * @param targetStatus Deployment target status - * @return The same instance of this {@link AiDeployment} class - */ + * Set the targetStatus of this {@link AiDeployment} instance and return the same instance. + * + * @param targetStatus Deployment target status + * @return The same instance of this {@link AiDeployment} class + */ @Nonnull public AiDeployment targetStatus(@Nonnull final TargetStatusEnum targetStatus) { this.targetStatus = targetStatus; return this; } /** - * Deployment target status - * @return targetStatus The targetStatus of this {@link AiDeployment} instance. - **/ + * Deployment target status + * @return targetStatus The targetStatus of this {@link AiDeployment} instance. + */ @Nonnull public TargetStatusEnum getTargetStatus() { return targetStatus; } /** - * Set the targetStatus of this {@link AiDeployment} instance. - * - * @param targetStatus Deployment target status - */ + * Set the targetStatus of this {@link AiDeployment} instance. + * + * @param targetStatus Deployment target status + */ public void setTargetStatus( @Nonnull final TargetStatusEnum targetStatus) { this.targetStatus = targetStatus; } /** - * Set the lastOperation of this {@link AiDeployment} instance and return the same instance. - * - * @param lastOperation The lastOperation of this {@link AiDeployment} - * @return The same instance of this {@link AiDeployment} class - */ + * Set the lastOperation of this {@link AiDeployment} instance and return the same instance. + * + * @param lastOperation The lastOperation of this {@link AiDeployment} + * @return The same instance of this {@link AiDeployment} class + */ @Nonnull public AiDeployment lastOperation(@Nonnull final LastOperationEnum lastOperation) { this.lastOperation = lastOperation; return this; } /** - * Get lastOperation - * @return lastOperation The lastOperation of this {@link AiDeployment} instance. - **/ + * Get lastOperation + * @return lastOperation The lastOperation of this {@link AiDeployment} instance. + */ @Nonnull public LastOperationEnum getLastOperation() { return lastOperation; } /** - * Set the lastOperation of this {@link AiDeployment} instance. - * - * @param lastOperation The lastOperation of this {@link AiDeployment} - */ + * Set the lastOperation of this {@link AiDeployment} instance. + * + * @param lastOperation The lastOperation of this {@link AiDeployment} + */ public void setLastOperation( @Nonnull final LastOperationEnum lastOperation) { this.lastOperation = lastOperation; } /** - * Set the latestRunningConfigurationId of this {@link AiDeployment} instance and return the same instance. - * - * @param latestRunningConfigurationId configurationId that was running before a PATCH operation has modified the configurationId of the deployment. This can be used for a manual rollback in case the new configurationId results in a DEAD deployment - * @return The same instance of this {@link AiDeployment} class - */ + * Set the latestRunningConfigurationId of this {@link AiDeployment} instance and return the same instance. + * + * @param latestRunningConfigurationId configurationId that was running before a PATCH operation has modified the configurationId of the deployment. This can be used for a manual rollback in case the new configurationId results in a DEAD deployment + * @return The same instance of this {@link AiDeployment} class + */ @Nonnull public AiDeployment latestRunningConfigurationId(@Nonnull final String latestRunningConfigurationId) { this.latestRunningConfigurationId = latestRunningConfigurationId; return this; } /** - * configurationId that was running before a PATCH operation has modified the configurationId of the deployment. This can be used for a manual rollback in case the new configurationId results in a DEAD deployment - * @return latestRunningConfigurationId The latestRunningConfigurationId of this {@link AiDeployment} instance. - **/ + * configurationId that was running before a PATCH operation has modified the configurationId of the deployment. This can be used for a manual rollback in case the new configurationId results in a DEAD deployment + * @return latestRunningConfigurationId The latestRunningConfigurationId of this {@link AiDeployment} instance. + */ @Nonnull public String getLatestRunningConfigurationId() { return latestRunningConfigurationId; } /** - * Set the latestRunningConfigurationId of this {@link AiDeployment} instance. - * - * @param latestRunningConfigurationId configurationId that was running before a PATCH operation has modified the configurationId of the deployment. This can be used for a manual rollback in case the new configurationId results in a DEAD deployment - */ + * Set the latestRunningConfigurationId of this {@link AiDeployment} instance. + * + * @param latestRunningConfigurationId configurationId that was running before a PATCH operation has modified the configurationId of the deployment. This can be used for a manual rollback in case the new configurationId results in a DEAD deployment + */ public void setLatestRunningConfigurationId( @Nonnull final String latestRunningConfigurationId) { this.latestRunningConfigurationId = latestRunningConfigurationId; } /** - * Set the ttl of this {@link AiDeployment} instance and return the same instance. - * - * @param ttl Time to live for a deployment. Its value can be either null or a number followed by the unit (any of following values, minutes(m|M), hours(h|H) or days(d|D)) - * @return The same instance of this {@link AiDeployment} class - */ + * Set the ttl of this {@link AiDeployment} instance and return the same instance. + * + * @param ttl Time to live for a deployment. Its value can be either null or a number followed by the unit (any of following values, minutes(m|M), hours(h|H) or days(d|D)) + * @return The same instance of this {@link AiDeployment} class + */ @Nonnull public AiDeployment ttl(@Nonnull final String ttl) { this.ttl = ttl; return this; } /** - * Time to live for a deployment. Its value can be either null or a number followed by the unit (any of following values, minutes(m|M), hours(h|H) or days(d|D)) - * @return ttl The ttl of this {@link AiDeployment} instance. - **/ + * Time to live for a deployment. Its value can be either null or a number followed by the unit (any of following values, minutes(m|M), hours(h|H) or days(d|D)) + * @return ttl The ttl of this {@link AiDeployment} instance. + */ @Nonnull public String getTtl() { return ttl; } /** - * Set the ttl of this {@link AiDeployment} instance. - * - * @param ttl Time to live for a deployment. Its value can be either null or a number followed by the unit (any of following values, minutes(m|M), hours(h|H) or days(d|D)) - */ + * Set the ttl of this {@link AiDeployment} instance. + * + * @param ttl Time to live for a deployment. Its value can be either null or a number followed by the unit (any of following values, minutes(m|M), hours(h|H) or days(d|D)) + */ public void setTtl( @Nonnull final String ttl) { this.ttl = ttl; } /** - * Set the details of this {@link AiDeployment} instance and return the same instance. - * - * @param details The details of this {@link AiDeployment} - * @return The same instance of this {@link AiDeployment} class - */ + * Set the details of this {@link AiDeployment} instance and return the same instance. + * + * @param details The details of this {@link AiDeployment} + * @return The same instance of this {@link AiDeployment} class + */ @Nonnull public AiDeployment details(@Nonnull final AiDeploymentDetails details) { this.details = details; return this; } /** - * Get details - * @return details The details of this {@link AiDeployment} instance. - **/ + * Get details + * @return details The details of this {@link AiDeployment} instance. + */ @Nonnull public AiDeploymentDetails getDetails() { return details; } /** - * Set the details of this {@link AiDeployment} instance. - * - * @param details The details of this {@link AiDeployment} - */ + * Set the details of this {@link AiDeployment} instance. + * + * @param details The details of this {@link AiDeployment} + */ public void setDetails( @Nonnull final AiDeploymentDetails details) { this.details = details; } /** - * Set the createdAt of this {@link AiDeployment} instance and return the same instance. - * - * @param createdAt Timestamp of resource creation - * @return The same instance of this {@link AiDeployment} class - */ + * Set the createdAt of this {@link AiDeployment} instance and return the same instance. + * + * @param createdAt Timestamp of resource creation + * @return The same instance of this {@link AiDeployment} class + */ @Nonnull public AiDeployment createdAt(@Nonnull final OffsetDateTime createdAt) { this.createdAt = createdAt; return this; } /** - * Timestamp of resource creation - * @return createdAt The createdAt of this {@link AiDeployment} instance. - **/ + * Timestamp of resource creation + * @return createdAt The createdAt of this {@link AiDeployment} instance. + */ @Nonnull public OffsetDateTime getCreatedAt() { return createdAt; } /** - * Set the createdAt of this {@link AiDeployment} instance. - * - * @param createdAt Timestamp of resource creation - */ + * Set the createdAt of this {@link AiDeployment} instance. + * + * @param createdAt Timestamp of resource creation + */ public void setCreatedAt( @Nonnull final OffsetDateTime createdAt) { this.createdAt = createdAt; } /** - * Set the modifiedAt of this {@link AiDeployment} instance and return the same instance. - * - * @param modifiedAt Timestamp of latest resource modification - * @return The same instance of this {@link AiDeployment} class - */ + * Set the modifiedAt of this {@link AiDeployment} instance and return the same instance. + * + * @param modifiedAt Timestamp of latest resource modification + * @return The same instance of this {@link AiDeployment} class + */ @Nonnull public AiDeployment modifiedAt(@Nonnull final OffsetDateTime modifiedAt) { this.modifiedAt = modifiedAt; return this; } /** - * Timestamp of latest resource modification - * @return modifiedAt The modifiedAt of this {@link AiDeployment} instance. - **/ + * Timestamp of latest resource modification + * @return modifiedAt The modifiedAt of this {@link AiDeployment} instance. + */ @Nonnull public OffsetDateTime getModifiedAt() { return modifiedAt; } /** - * Set the modifiedAt of this {@link AiDeployment} instance. - * - * @param modifiedAt Timestamp of latest resource modification - */ + * Set the modifiedAt of this {@link AiDeployment} instance. + * + * @param modifiedAt Timestamp of latest resource modification + */ public void setModifiedAt( @Nonnull final OffsetDateTime modifiedAt) { this.modifiedAt = modifiedAt; } /** - * Set the submissionTime of this {@link AiDeployment} instance and return the same instance. - * - * @param submissionTime Timestamp of job submitted - * @return The same instance of this {@link AiDeployment} class - */ + * Set the submissionTime of this {@link AiDeployment} instance and return the same instance. + * + * @param submissionTime Timestamp of job submitted + * @return The same instance of this {@link AiDeployment} class + */ @Nonnull public AiDeployment submissionTime(@Nonnull final OffsetDateTime submissionTime) { this.submissionTime = submissionTime; return this; } /** - * Timestamp of job submitted - * @return submissionTime The submissionTime of this {@link AiDeployment} instance. - **/ + * Timestamp of job submitted + * @return submissionTime The submissionTime of this {@link AiDeployment} instance. + */ @Nonnull public OffsetDateTime getSubmissionTime() { return submissionTime; } /** - * Set the submissionTime of this {@link AiDeployment} instance. - * - * @param submissionTime Timestamp of job submitted - */ + * Set the submissionTime of this {@link AiDeployment} instance. + * + * @param submissionTime Timestamp of job submitted + */ public void setSubmissionTime( @Nonnull final OffsetDateTime submissionTime) { this.submissionTime = submissionTime; } /** - * Set the startTime of this {@link AiDeployment} instance and return the same instance. - * - * @param startTime Timestamp of job status changed to RUNNING - * @return The same instance of this {@link AiDeployment} class - */ + * Set the startTime of this {@link AiDeployment} instance and return the same instance. + * + * @param startTime Timestamp of job status changed to RUNNING + * @return The same instance of this {@link AiDeployment} class + */ @Nonnull public AiDeployment startTime(@Nonnull final OffsetDateTime startTime) { this.startTime = startTime; return this; } /** - * Timestamp of job status changed to RUNNING - * @return startTime The startTime of this {@link AiDeployment} instance. - **/ + * Timestamp of job status changed to RUNNING + * @return startTime The startTime of this {@link AiDeployment} instance. + */ @Nonnull public OffsetDateTime getStartTime() { return startTime; } /** - * Set the startTime of this {@link AiDeployment} instance. - * - * @param startTime Timestamp of job status changed to RUNNING - */ + * Set the startTime of this {@link AiDeployment} instance. + * + * @param startTime Timestamp of job status changed to RUNNING + */ public void setStartTime( @Nonnull final OffsetDateTime startTime) { this.startTime = startTime; } /** - * Set the completionTime of this {@link AiDeployment} instance and return the same instance. - * - * @param completionTime Timestamp of job status changed to COMPLETED/DEAD/STOPPED - * @return The same instance of this {@link AiDeployment} class - */ + * Set the completionTime of this {@link AiDeployment} instance and return the same instance. + * + * @param completionTime Timestamp of job status changed to COMPLETED/DEAD/STOPPED + * @return The same instance of this {@link AiDeployment} class + */ @Nonnull public AiDeployment completionTime(@Nonnull final OffsetDateTime completionTime) { this.completionTime = completionTime; return this; } /** - * Timestamp of job status changed to COMPLETED/DEAD/STOPPED - * @return completionTime The completionTime of this {@link AiDeployment} instance. - **/ + * Timestamp of job status changed to COMPLETED/DEAD/STOPPED + * @return completionTime The completionTime of this {@link AiDeployment} instance. + */ @Nonnull public OffsetDateTime getCompletionTime() { return completionTime; } /** - * Set the completionTime of this {@link AiDeployment} instance. - * - * @param completionTime Timestamp of job status changed to COMPLETED/DEAD/STOPPED - */ + * Set the completionTime of this {@link AiDeployment} instance. + * + * @param completionTime Timestamp of job status changed to COMPLETED/DEAD/STOPPED + */ public void setCompletionTime( @Nonnull final OffsetDateTime completionTime) { this.completionTime = completionTime; } @@ -808,5 +807,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/AiDeploymentBulkModificationRequest.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/AiDeploymentBulkModificationRequest.java index 09e5d56c0..d469d4837 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/AiDeploymentBulkModificationRequest.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/AiDeploymentBulkModificationRequest.java @@ -42,7 +42,6 @@ /** * Request object for changing the target status of multiple deployments */ - // CHECKSTYLE:OFF public class AiDeploymentBulkModificationRequest // CHECKSTYLE:ON @@ -55,21 +54,21 @@ public class AiDeploymentBulkModificationRequest private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the deployments of this {@link AiDeploymentBulkModificationRequest} instance and return the same instance. - * - * @param deployments The deployments of this {@link AiDeploymentBulkModificationRequest} - * @return The same instance of this {@link AiDeploymentBulkModificationRequest} class - */ + * Set the deployments of this {@link AiDeploymentBulkModificationRequest} instance and return the same instance. + * + * @param deployments The deployments of this {@link AiDeploymentBulkModificationRequest} + * @return The same instance of this {@link AiDeploymentBulkModificationRequest} class + */ @Nonnull public AiDeploymentBulkModificationRequest deployments(@Nonnull final Set deployments) { this.deployments = deployments; return this; } /** - * Add one deployments instance to this {@link AiDeploymentBulkModificationRequest}. - * @param deploymentsItem The deployments that should be added - * @return The same instance of type {@link AiDeploymentBulkModificationRequest} - */ - @Nonnull public AiDeploymentBulkModificationRequest adddeploymentsItem( @Nonnull final AiDeploymentModificationRequestWithIdentifier deploymentsItem) { + * Add one deployments instance to this {@link AiDeploymentBulkModificationRequest}. + * @param deploymentsItem The deployments that should be added + * @return The same instance of type {@link AiDeploymentBulkModificationRequest} + */ + @Nonnull public AiDeploymentBulkModificationRequest addDeploymentsItem( @Nonnull final AiDeploymentModificationRequestWithIdentifier deploymentsItem) { if (this.deployments == null) { this.deployments = new LinkedHashSet<>(); } @@ -78,18 +77,18 @@ public class AiDeploymentBulkModificationRequest } /** - * Get deployments - * @return deployments The deployments of this {@link AiDeploymentBulkModificationRequest} instance. - **/ + * Get deployments + * @return deployments The deployments of this {@link AiDeploymentBulkModificationRequest} instance. + */ @Nonnull public Set getDeployments() { return deployments; } /** - * Set the deployments of this {@link AiDeploymentBulkModificationRequest} instance. - * - * @param deployments The deployments of this {@link AiDeploymentBulkModificationRequest} - */ + * Set the deployments of this {@link AiDeploymentBulkModificationRequest} instance. + * + * @param deployments The deployments of this {@link AiDeploymentBulkModificationRequest} + */ public void setDeployments( @Nonnull final Set deployments) { this.deployments = deployments; } @@ -170,5 +169,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/AiDeploymentBulkModificationResponse.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/AiDeploymentBulkModificationResponse.java index bc19f389b..cef2ee64d 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/AiDeploymentBulkModificationResponse.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/AiDeploymentBulkModificationResponse.java @@ -42,7 +42,6 @@ /** * Response object with array of deployments */ - // CHECKSTYLE:OFF public class AiDeploymentBulkModificationResponse // CHECKSTYLE:ON @@ -55,21 +54,21 @@ public class AiDeploymentBulkModificationResponse private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the deployments of this {@link AiDeploymentBulkModificationResponse} instance and return the same instance. - * - * @param deployments The deployments of this {@link AiDeploymentBulkModificationResponse} - * @return The same instance of this {@link AiDeploymentBulkModificationResponse} class - */ + * Set the deployments of this {@link AiDeploymentBulkModificationResponse} instance and return the same instance. + * + * @param deployments The deployments of this {@link AiDeploymentBulkModificationResponse} + * @return The same instance of this {@link AiDeploymentBulkModificationResponse} class + */ @Nonnull public AiDeploymentBulkModificationResponse deployments(@Nonnull final List deployments) { this.deployments = deployments; return this; } /** - * Add one deployments instance to this {@link AiDeploymentBulkModificationResponse}. - * @param deploymentsItem The deployments that should be added - * @return The same instance of type {@link AiDeploymentBulkModificationResponse} - */ - @Nonnull public AiDeploymentBulkModificationResponse adddeploymentsItem( @Nonnull final AiDeploymentModificationResponseListInner deploymentsItem) { + * Add one deployments instance to this {@link AiDeploymentBulkModificationResponse}. + * @param deploymentsItem The deployments that should be added + * @return The same instance of type {@link AiDeploymentBulkModificationResponse} + */ + @Nonnull public AiDeploymentBulkModificationResponse addDeploymentsItem( @Nonnull final AiDeploymentModificationResponseListInner deploymentsItem) { if (this.deployments == null) { this.deployments = new ArrayList<>(); } @@ -78,18 +77,18 @@ public class AiDeploymentBulkModificationResponse } /** - * Get deployments - * @return deployments The deployments of this {@link AiDeploymentBulkModificationResponse} instance. - **/ + * Get deployments + * @return deployments The deployments of this {@link AiDeploymentBulkModificationResponse} instance. + */ @Nonnull public List getDeployments() { return deployments; } /** - * Set the deployments of this {@link AiDeploymentBulkModificationResponse} instance. - * - * @param deployments The deployments of this {@link AiDeploymentBulkModificationResponse} - */ + * Set the deployments of this {@link AiDeploymentBulkModificationResponse} instance. + * + * @param deployments The deployments of this {@link AiDeploymentBulkModificationResponse} + */ public void setDeployments( @Nonnull final List deployments) { this.deployments = deployments; } @@ -170,5 +169,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/AiDeploymentCreationRequest.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/AiDeploymentCreationRequest.java index b65beb4aa..e2f17521d 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/AiDeploymentCreationRequest.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/AiDeploymentCreationRequest.java @@ -38,7 +38,6 @@ /** * Request object for creating an execution or an deployment */ - // CHECKSTYLE:OFF public class AiDeploymentCreationRequest // CHECKSTYLE:ON @@ -54,57 +53,57 @@ public class AiDeploymentCreationRequest private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the ttl of this {@link AiDeploymentCreationRequest} instance and return the same instance. - * - * @param ttl Time to live for a deployment. Its value can be either null or a number followed by the unit (any of following values, minutes(m|M), hours(h|H) or days(d|D)) - * @return The same instance of this {@link AiDeploymentCreationRequest} class - */ + * Set the ttl of this {@link AiDeploymentCreationRequest} instance and return the same instance. + * + * @param ttl Time to live for a deployment. Its value can be either null or a number followed by the unit (any of following values, minutes(m|M), hours(h|H) or days(d|D)) + * @return The same instance of this {@link AiDeploymentCreationRequest} class + */ @Nonnull public AiDeploymentCreationRequest ttl(@Nonnull final String ttl) { this.ttl = ttl; return this; } /** - * Time to live for a deployment. Its value can be either null or a number followed by the unit (any of following values, minutes(m|M), hours(h|H) or days(d|D)) - * @return ttl The ttl of this {@link AiDeploymentCreationRequest} instance. - **/ + * Time to live for a deployment. Its value can be either null or a number followed by the unit (any of following values, minutes(m|M), hours(h|H) or days(d|D)) + * @return ttl The ttl of this {@link AiDeploymentCreationRequest} instance. + */ @Nonnull public String getTtl() { return ttl; } /** - * Set the ttl of this {@link AiDeploymentCreationRequest} instance. - * - * @param ttl Time to live for a deployment. Its value can be either null or a number followed by the unit (any of following values, minutes(m|M), hours(h|H) or days(d|D)) - */ + * Set the ttl of this {@link AiDeploymentCreationRequest} instance. + * + * @param ttl Time to live for a deployment. Its value can be either null or a number followed by the unit (any of following values, minutes(m|M), hours(h|H) or days(d|D)) + */ public void setTtl( @Nonnull final String ttl) { this.ttl = ttl; } /** - * Set the configurationId of this {@link AiDeploymentCreationRequest} instance and return the same instance. - * - * @param configurationId ID of the configuration - * @return The same instance of this {@link AiDeploymentCreationRequest} class - */ + * Set the configurationId of this {@link AiDeploymentCreationRequest} instance and return the same instance. + * + * @param configurationId ID of the configuration + * @return The same instance of this {@link AiDeploymentCreationRequest} class + */ @Nonnull public AiDeploymentCreationRequest configurationId(@Nonnull final String configurationId) { this.configurationId = configurationId; return this; } /** - * ID of the configuration - * @return configurationId The configurationId of this {@link AiDeploymentCreationRequest} instance. - **/ + * ID of the configuration + * @return configurationId The configurationId of this {@link AiDeploymentCreationRequest} instance. + */ @Nonnull public String getConfigurationId() { return configurationId; } /** - * Set the configurationId of this {@link AiDeploymentCreationRequest} instance. - * - * @param configurationId ID of the configuration - */ + * Set the configurationId of this {@link AiDeploymentCreationRequest} instance. + * + * @param configurationId ID of the configuration + */ public void setConfigurationId( @Nonnull final String configurationId) { this.configurationId = configurationId; } @@ -187,5 +186,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/AiDeploymentCreationResponse.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/AiDeploymentCreationResponse.java index 2093fbcf5..5e39a55ab 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/AiDeploymentCreationResponse.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/AiDeploymentCreationResponse.java @@ -39,7 +39,6 @@ /** * AiDeploymentCreationResponse */ - // CHECKSTYLE:OFF public class AiDeploymentCreationResponse // CHECKSTYLE:ON @@ -64,141 +63,141 @@ public class AiDeploymentCreationResponse private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the id of this {@link AiDeploymentCreationResponse} instance and return the same instance. - * - * @param id Generic ID - * @return The same instance of this {@link AiDeploymentCreationResponse} class - */ + * Set the id of this {@link AiDeploymentCreationResponse} instance and return the same instance. + * + * @param id Generic ID + * @return The same instance of this {@link AiDeploymentCreationResponse} class + */ @Nonnull public AiDeploymentCreationResponse id(@Nonnull final String id) { this.id = id; return this; } /** - * Generic ID - * @return id The id of this {@link AiDeploymentCreationResponse} instance. - **/ + * Generic ID + * @return id The id of this {@link AiDeploymentCreationResponse} instance. + */ @Nonnull public String getId() { return id; } /** - * Set the id of this {@link AiDeploymentCreationResponse} instance. - * - * @param id Generic ID - */ + * Set the id of this {@link AiDeploymentCreationResponse} instance. + * + * @param id Generic ID + */ public void setId( @Nonnull final String id) { this.id = id; } /** - * Set the message of this {@link AiDeploymentCreationResponse} instance and return the same instance. - * - * @param message Message - * @return The same instance of this {@link AiDeploymentCreationResponse} class - */ + * Set the message of this {@link AiDeploymentCreationResponse} instance and return the same instance. + * + * @param message Message + * @return The same instance of this {@link AiDeploymentCreationResponse} class + */ @Nonnull public AiDeploymentCreationResponse message(@Nonnull final String message) { this.message = message; return this; } /** - * Message - * @return message The message of this {@link AiDeploymentCreationResponse} instance. - **/ + * Message + * @return message The message of this {@link AiDeploymentCreationResponse} instance. + */ @Nonnull public String getMessage() { return message; } /** - * Set the message of this {@link AiDeploymentCreationResponse} instance. - * - * @param message Message - */ + * Set the message of this {@link AiDeploymentCreationResponse} instance. + * + * @param message Message + */ public void setMessage( @Nonnull final String message) { this.message = message; } /** - * Set the deploymentUrl of this {@link AiDeploymentCreationResponse} instance and return the same instance. - * - * @param deploymentUrl Consumption URL of the deployment - * @return The same instance of this {@link AiDeploymentCreationResponse} class - */ + * Set the deploymentUrl of this {@link AiDeploymentCreationResponse} instance and return the same instance. + * + * @param deploymentUrl Consumption URL of the deployment + * @return The same instance of this {@link AiDeploymentCreationResponse} class + */ @Nonnull public AiDeploymentCreationResponse deploymentUrl(@Nonnull final String deploymentUrl) { this.deploymentUrl = deploymentUrl; return this; } /** - * Consumption URL of the deployment - * @return deploymentUrl The deploymentUrl of this {@link AiDeploymentCreationResponse} instance. - **/ + * Consumption URL of the deployment + * @return deploymentUrl The deploymentUrl of this {@link AiDeploymentCreationResponse} instance. + */ @Nonnull public String getDeploymentUrl() { return deploymentUrl; } /** - * Set the deploymentUrl of this {@link AiDeploymentCreationResponse} instance. - * - * @param deploymentUrl Consumption URL of the deployment - */ + * Set the deploymentUrl of this {@link AiDeploymentCreationResponse} instance. + * + * @param deploymentUrl Consumption URL of the deployment + */ public void setDeploymentUrl( @Nonnull final String deploymentUrl) { this.deploymentUrl = deploymentUrl; } /** - * Set the status of this {@link AiDeploymentCreationResponse} instance and return the same instance. - * - * @param status The status of this {@link AiDeploymentCreationResponse} - * @return The same instance of this {@link AiDeploymentCreationResponse} class - */ + * Set the status of this {@link AiDeploymentCreationResponse} instance and return the same instance. + * + * @param status The status of this {@link AiDeploymentCreationResponse} + * @return The same instance of this {@link AiDeploymentCreationResponse} class + */ @Nonnull public AiDeploymentCreationResponse status(@Nonnull final AiExecutionStatus status) { this.status = status; return this; } /** - * Get status - * @return status The status of this {@link AiDeploymentCreationResponse} instance. - **/ + * Get status + * @return status The status of this {@link AiDeploymentCreationResponse} instance. + */ @Nonnull public AiExecutionStatus getStatus() { return status; } /** - * Set the status of this {@link AiDeploymentCreationResponse} instance. - * - * @param status The status of this {@link AiDeploymentCreationResponse} - */ + * Set the status of this {@link AiDeploymentCreationResponse} instance. + * + * @param status The status of this {@link AiDeploymentCreationResponse} + */ public void setStatus( @Nonnull final AiExecutionStatus status) { this.status = status; } /** - * Set the ttl of this {@link AiDeploymentCreationResponse} instance and return the same instance. - * - * @param ttl Time to live for a deployment. Its value can be either null or a number followed by the unit (any of following values, minutes(m|M), hours(h|H) or days(d|D)) - * @return The same instance of this {@link AiDeploymentCreationResponse} class - */ + * Set the ttl of this {@link AiDeploymentCreationResponse} instance and return the same instance. + * + * @param ttl Time to live for a deployment. Its value can be either null or a number followed by the unit (any of following values, minutes(m|M), hours(h|H) or days(d|D)) + * @return The same instance of this {@link AiDeploymentCreationResponse} class + */ @Nonnull public AiDeploymentCreationResponse ttl(@Nonnull final String ttl) { this.ttl = ttl; return this; } /** - * Time to live for a deployment. Its value can be either null or a number followed by the unit (any of following values, minutes(m|M), hours(h|H) or days(d|D)) - * @return ttl The ttl of this {@link AiDeploymentCreationResponse} instance. - **/ + * Time to live for a deployment. Its value can be either null or a number followed by the unit (any of following values, minutes(m|M), hours(h|H) or days(d|D)) + * @return ttl The ttl of this {@link AiDeploymentCreationResponse} instance. + */ @Nonnull public String getTtl() { return ttl; } /** - * Set the ttl of this {@link AiDeploymentCreationResponse} instance. - * - * @param ttl Time to live for a deployment. Its value can be either null or a number followed by the unit (any of following values, minutes(m|M), hours(h|H) or days(d|D)) - */ + * Set the ttl of this {@link AiDeploymentCreationResponse} instance. + * + * @param ttl Time to live for a deployment. Its value can be either null or a number followed by the unit (any of following values, minutes(m|M), hours(h|H) or days(d|D)) + */ public void setTtl( @Nonnull final String ttl) { this.ttl = ttl; } @@ -287,5 +286,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/AiDeploymentDeletionResponse.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/AiDeploymentDeletionResponse.java index 967b5369c..e804b56d4 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/AiDeploymentDeletionResponse.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/AiDeploymentDeletionResponse.java @@ -38,7 +38,6 @@ /** * AiDeploymentDeletionResponse */ - // CHECKSTYLE:OFF public class AiDeploymentDeletionResponse // CHECKSTYLE:ON @@ -54,57 +53,57 @@ public class AiDeploymentDeletionResponse private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the id of this {@link AiDeploymentDeletionResponse} instance and return the same instance. - * - * @param id Generic ID - * @return The same instance of this {@link AiDeploymentDeletionResponse} class - */ + * Set the id of this {@link AiDeploymentDeletionResponse} instance and return the same instance. + * + * @param id Generic ID + * @return The same instance of this {@link AiDeploymentDeletionResponse} class + */ @Nonnull public AiDeploymentDeletionResponse id(@Nonnull final String id) { this.id = id; return this; } /** - * Generic ID - * @return id The id of this {@link AiDeploymentDeletionResponse} instance. - **/ + * Generic ID + * @return id The id of this {@link AiDeploymentDeletionResponse} instance. + */ @Nonnull public String getId() { return id; } /** - * Set the id of this {@link AiDeploymentDeletionResponse} instance. - * - * @param id Generic ID - */ + * Set the id of this {@link AiDeploymentDeletionResponse} instance. + * + * @param id Generic ID + */ public void setId( @Nonnull final String id) { this.id = id; } /** - * Set the message of this {@link AiDeploymentDeletionResponse} instance and return the same instance. - * - * @param message Message - * @return The same instance of this {@link AiDeploymentDeletionResponse} class - */ + * Set the message of this {@link AiDeploymentDeletionResponse} instance and return the same instance. + * + * @param message Message + * @return The same instance of this {@link AiDeploymentDeletionResponse} class + */ @Nonnull public AiDeploymentDeletionResponse message(@Nonnull final String message) { this.message = message; return this; } /** - * Message - * @return message The message of this {@link AiDeploymentDeletionResponse} instance. - **/ + * Message + * @return message The message of this {@link AiDeploymentDeletionResponse} instance. + */ @Nonnull public String getMessage() { return message; } /** - * Set the message of this {@link AiDeploymentDeletionResponse} instance. - * - * @param message Message - */ + * Set the message of this {@link AiDeploymentDeletionResponse} instance. + * + * @param message Message + */ public void setMessage( @Nonnull final String message) { this.message = message; } @@ -187,5 +186,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/AiDeploymentDetails.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/AiDeploymentDetails.java index 65b2fe5ff..4bf5d47e5 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/AiDeploymentDetails.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/AiDeploymentDetails.java @@ -40,7 +40,6 @@ /** * Detail information about a deployment (including predefined sections: `scaling` and `resources`). JSON String representation of this object is limited to 5000 characters */ - // CHECKSTYLE:OFF public class AiDeploymentDetails // CHECKSTYLE:ON @@ -56,57 +55,57 @@ public class AiDeploymentDetails private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the scaling of this {@link AiDeploymentDetails} instance and return the same instance. - * - * @param scaling The scaling of this {@link AiDeploymentDetails} - * @return The same instance of this {@link AiDeploymentDetails} class - */ + * Set the scaling of this {@link AiDeploymentDetails} instance and return the same instance. + * + * @param scaling The scaling of this {@link AiDeploymentDetails} + * @return The same instance of this {@link AiDeploymentDetails} class + */ @Nonnull public AiDeploymentDetails scaling(@Nonnull final AiScalingDetails scaling) { this.scaling = scaling; return this; } /** - * Get scaling - * @return scaling The scaling of this {@link AiDeploymentDetails} instance. - **/ + * Get scaling + * @return scaling The scaling of this {@link AiDeploymentDetails} instance. + */ @Nonnull public AiScalingDetails getScaling() { return scaling; } /** - * Set the scaling of this {@link AiDeploymentDetails} instance. - * - * @param scaling The scaling of this {@link AiDeploymentDetails} - */ + * Set the scaling of this {@link AiDeploymentDetails} instance. + * + * @param scaling The scaling of this {@link AiDeploymentDetails} + */ public void setScaling( @Nonnull final AiScalingDetails scaling) { this.scaling = scaling; } /** - * Set the resources of this {@link AiDeploymentDetails} instance and return the same instance. - * - * @param resources The resources of this {@link AiDeploymentDetails} - * @return The same instance of this {@link AiDeploymentDetails} class - */ + * Set the resources of this {@link AiDeploymentDetails} instance and return the same instance. + * + * @param resources The resources of this {@link AiDeploymentDetails} + * @return The same instance of this {@link AiDeploymentDetails} class + */ @Nonnull public AiDeploymentDetails resources(@Nonnull final AiResourcesDetails resources) { this.resources = resources; return this; } /** - * Get resources - * @return resources The resources of this {@link AiDeploymentDetails} instance. - **/ + * Get resources + * @return resources The resources of this {@link AiDeploymentDetails} instance. + */ @Nonnull public AiResourcesDetails getResources() { return resources; } /** - * Set the resources of this {@link AiDeploymentDetails} instance. - * - * @param resources The resources of this {@link AiDeploymentDetails} - */ + * Set the resources of this {@link AiDeploymentDetails} instance. + * + * @param resources The resources of this {@link AiDeploymentDetails} + */ public void setResources( @Nonnull final AiResourcesDetails resources) { this.resources = resources; } @@ -189,5 +188,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/AiDeploymentList.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/AiDeploymentList.java index 6e1467d12..ac1d831e2 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/AiDeploymentList.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/AiDeploymentList.java @@ -42,7 +42,6 @@ /** * AiDeploymentList */ - // CHECKSTYLE:OFF public class AiDeploymentList // CHECKSTYLE:ON @@ -58,49 +57,49 @@ public class AiDeploymentList private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the count of this {@link AiDeploymentList} instance and return the same instance. - * - * @param count Number of the resource instances in the list - * @return The same instance of this {@link AiDeploymentList} class - */ + * Set the count of this {@link AiDeploymentList} instance and return the same instance. + * + * @param count Number of the resource instances in the list + * @return The same instance of this {@link AiDeploymentList} class + */ @Nonnull public AiDeploymentList count(@Nonnull final Integer count) { this.count = count; return this; } /** - * Number of the resource instances in the list - * @return count The count of this {@link AiDeploymentList} instance. - **/ + * Number of the resource instances in the list + * @return count The count of this {@link AiDeploymentList} instance. + */ @Nonnull public Integer getCount() { return count; } /** - * Set the count of this {@link AiDeploymentList} instance. - * - * @param count Number of the resource instances in the list - */ + * Set the count of this {@link AiDeploymentList} instance. + * + * @param count Number of the resource instances in the list + */ public void setCount( @Nonnull final Integer count) { this.count = count; } /** - * Set the resources of this {@link AiDeploymentList} instance and return the same instance. - * - * @param resources The resources of this {@link AiDeploymentList} - * @return The same instance of this {@link AiDeploymentList} class - */ + * Set the resources of this {@link AiDeploymentList} instance and return the same instance. + * + * @param resources The resources of this {@link AiDeploymentList} + * @return The same instance of this {@link AiDeploymentList} class + */ @Nonnull public AiDeploymentList resources(@Nonnull final List resources) { this.resources = resources; return this; } /** - * Add one resources instance to this {@link AiDeploymentList}. - * @param resourcesItem The resources that should be added - * @return The same instance of type {@link AiDeploymentList} - */ - @Nonnull public AiDeploymentList addresourcesItem( @Nonnull final AiDeployment resourcesItem) { + * Add one resources instance to this {@link AiDeploymentList}. + * @param resourcesItem The resources that should be added + * @return The same instance of type {@link AiDeploymentList} + */ + @Nonnull public AiDeploymentList addResourcesItem( @Nonnull final AiDeployment resourcesItem) { if (this.resources == null) { this.resources = new ArrayList<>(); } @@ -109,18 +108,18 @@ public void setCount( @Nonnull final Integer count) { } /** - * Get resources - * @return resources The resources of this {@link AiDeploymentList} instance. - **/ + * Get resources + * @return resources The resources of this {@link AiDeploymentList} instance. + */ @Nonnull public List getResources() { return resources; } /** - * Set the resources of this {@link AiDeploymentList} instance. - * - * @param resources The resources of this {@link AiDeploymentList} - */ + * Set the resources of this {@link AiDeploymentList} instance. + * + * @param resources The resources of this {@link AiDeploymentList} + */ public void setResources( @Nonnull final List resources) { this.resources = resources; } @@ -203,5 +202,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/AiDeploymentModificationRequest.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/AiDeploymentModificationRequest.java index ad1144a52..93159b8d9 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/AiDeploymentModificationRequest.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/AiDeploymentModificationRequest.java @@ -39,7 +39,6 @@ /** * Request object for changing the target status of a deployment (currently only STOPPED is supported) */ - // CHECKSTYLE:OFF public class AiDeploymentModificationRequest // CHECKSTYLE:ON @@ -55,57 +54,57 @@ public class AiDeploymentModificationRequest private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the targetStatus of this {@link AiDeploymentModificationRequest} instance and return the same instance. - * - * @param targetStatus The targetStatus of this {@link AiDeploymentModificationRequest} - * @return The same instance of this {@link AiDeploymentModificationRequest} class - */ + * Set the targetStatus of this {@link AiDeploymentModificationRequest} instance and return the same instance. + * + * @param targetStatus The targetStatus of this {@link AiDeploymentModificationRequest} + * @return The same instance of this {@link AiDeploymentModificationRequest} class + */ @Nonnull public AiDeploymentModificationRequest targetStatus(@Nonnull final AiDeploymentTargetStatus targetStatus) { this.targetStatus = targetStatus; return this; } /** - * Get targetStatus - * @return targetStatus The targetStatus of this {@link AiDeploymentModificationRequest} instance. - **/ + * Get targetStatus + * @return targetStatus The targetStatus of this {@link AiDeploymentModificationRequest} instance. + */ @Nonnull public AiDeploymentTargetStatus getTargetStatus() { return targetStatus; } /** - * Set the targetStatus of this {@link AiDeploymentModificationRequest} instance. - * - * @param targetStatus The targetStatus of this {@link AiDeploymentModificationRequest} - */ + * Set the targetStatus of this {@link AiDeploymentModificationRequest} instance. + * + * @param targetStatus The targetStatus of this {@link AiDeploymentModificationRequest} + */ public void setTargetStatus( @Nonnull final AiDeploymentTargetStatus targetStatus) { this.targetStatus = targetStatus; } /** - * Set the configurationId of this {@link AiDeploymentModificationRequest} instance and return the same instance. - * - * @param configurationId ID of the configuration - * @return The same instance of this {@link AiDeploymentModificationRequest} class - */ + * Set the configurationId of this {@link AiDeploymentModificationRequest} instance and return the same instance. + * + * @param configurationId ID of the configuration + * @return The same instance of this {@link AiDeploymentModificationRequest} class + */ @Nonnull public AiDeploymentModificationRequest configurationId(@Nonnull final String configurationId) { this.configurationId = configurationId; return this; } /** - * ID of the configuration - * @return configurationId The configurationId of this {@link AiDeploymentModificationRequest} instance. - **/ + * ID of the configuration + * @return configurationId The configurationId of this {@link AiDeploymentModificationRequest} instance. + */ @Nonnull public String getConfigurationId() { return configurationId; } /** - * Set the configurationId of this {@link AiDeploymentModificationRequest} instance. - * - * @param configurationId ID of the configuration - */ + * Set the configurationId of this {@link AiDeploymentModificationRequest} instance. + * + * @param configurationId ID of the configuration + */ public void setConfigurationId( @Nonnull final String configurationId) { this.configurationId = configurationId; } @@ -188,5 +187,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/AiDeploymentModificationRequestWithIdentifier.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/AiDeploymentModificationRequestWithIdentifier.java index 27be3be97..5a955b358 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/AiDeploymentModificationRequestWithIdentifier.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/AiDeploymentModificationRequestWithIdentifier.java @@ -38,7 +38,6 @@ /** * Request object for changing the target status of a deployment ( STOPPED and DELETED are supported) */ - // CHECKSTYLE:OFF public class AiDeploymentModificationRequestWithIdentifier // CHECKSTYLE:ON @@ -108,57 +107,57 @@ public enum TargetStatusEnum { private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the id of this {@link AiDeploymentModificationRequestWithIdentifier} instance and return the same instance. - * - * @param id ID of the deployment - * @return The same instance of this {@link AiDeploymentModificationRequestWithIdentifier} class - */ + * Set the id of this {@link AiDeploymentModificationRequestWithIdentifier} instance and return the same instance. + * + * @param id ID of the deployment + * @return The same instance of this {@link AiDeploymentModificationRequestWithIdentifier} class + */ @Nonnull public AiDeploymentModificationRequestWithIdentifier id(@Nonnull final String id) { this.id = id; return this; } /** - * ID of the deployment - * @return id The id of this {@link AiDeploymentModificationRequestWithIdentifier} instance. - **/ + * ID of the deployment + * @return id The id of this {@link AiDeploymentModificationRequestWithIdentifier} instance. + */ @Nonnull public String getId() { return id; } /** - * Set the id of this {@link AiDeploymentModificationRequestWithIdentifier} instance. - * - * @param id ID of the deployment - */ + * Set the id of this {@link AiDeploymentModificationRequestWithIdentifier} instance. + * + * @param id ID of the deployment + */ public void setId( @Nonnull final String id) { this.id = id; } /** - * Set the targetStatus of this {@link AiDeploymentModificationRequestWithIdentifier} instance and return the same instance. - * - * @param targetStatus Deployment target status - * @return The same instance of this {@link AiDeploymentModificationRequestWithIdentifier} class - */ + * Set the targetStatus of this {@link AiDeploymentModificationRequestWithIdentifier} instance and return the same instance. + * + * @param targetStatus Deployment target status + * @return The same instance of this {@link AiDeploymentModificationRequestWithIdentifier} class + */ @Nonnull public AiDeploymentModificationRequestWithIdentifier targetStatus(@Nonnull final TargetStatusEnum targetStatus) { this.targetStatus = targetStatus; return this; } /** - * Deployment target status - * @return targetStatus The targetStatus of this {@link AiDeploymentModificationRequestWithIdentifier} instance. - **/ + * Deployment target status + * @return targetStatus The targetStatus of this {@link AiDeploymentModificationRequestWithIdentifier} instance. + */ @Nonnull public TargetStatusEnum getTargetStatus() { return targetStatus; } /** - * Set the targetStatus of this {@link AiDeploymentModificationRequestWithIdentifier} instance. - * - * @param targetStatus Deployment target status - */ + * Set the targetStatus of this {@link AiDeploymentModificationRequestWithIdentifier} instance. + * + * @param targetStatus Deployment target status + */ public void setTargetStatus( @Nonnull final TargetStatusEnum targetStatus) { this.targetStatus = targetStatus; } @@ -241,5 +240,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/AiDeploymentModificationResponse.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/AiDeploymentModificationResponse.java index e9ee0d570..54ac40a4d 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/AiDeploymentModificationResponse.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/AiDeploymentModificationResponse.java @@ -38,7 +38,6 @@ /** * AiDeploymentModificationResponse */ - // CHECKSTYLE:OFF public class AiDeploymentModificationResponse // CHECKSTYLE:ON @@ -54,57 +53,57 @@ public class AiDeploymentModificationResponse private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the id of this {@link AiDeploymentModificationResponse} instance and return the same instance. - * - * @param id Generic ID - * @return The same instance of this {@link AiDeploymentModificationResponse} class - */ + * Set the id of this {@link AiDeploymentModificationResponse} instance and return the same instance. + * + * @param id Generic ID + * @return The same instance of this {@link AiDeploymentModificationResponse} class + */ @Nonnull public AiDeploymentModificationResponse id(@Nonnull final String id) { this.id = id; return this; } /** - * Generic ID - * @return id The id of this {@link AiDeploymentModificationResponse} instance. - **/ + * Generic ID + * @return id The id of this {@link AiDeploymentModificationResponse} instance. + */ @Nonnull public String getId() { return id; } /** - * Set the id of this {@link AiDeploymentModificationResponse} instance. - * - * @param id Generic ID - */ + * Set the id of this {@link AiDeploymentModificationResponse} instance. + * + * @param id Generic ID + */ public void setId( @Nonnull final String id) { this.id = id; } /** - * Set the message of this {@link AiDeploymentModificationResponse} instance and return the same instance. - * - * @param message Message - * @return The same instance of this {@link AiDeploymentModificationResponse} class - */ + * Set the message of this {@link AiDeploymentModificationResponse} instance and return the same instance. + * + * @param message Message + * @return The same instance of this {@link AiDeploymentModificationResponse} class + */ @Nonnull public AiDeploymentModificationResponse message(@Nonnull final String message) { this.message = message; return this; } /** - * Message - * @return message The message of this {@link AiDeploymentModificationResponse} instance. - **/ + * Message + * @return message The message of this {@link AiDeploymentModificationResponse} instance. + */ @Nonnull public String getMessage() { return message; } /** - * Set the message of this {@link AiDeploymentModificationResponse} instance. - * - * @param message Message - */ + * Set the message of this {@link AiDeploymentModificationResponse} instance. + * + * @param message Message + */ public void setMessage( @Nonnull final String message) { this.message = message; } @@ -187,5 +186,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/AiDeploymentModificationResponseListInner.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/AiDeploymentModificationResponseListInner.java index f7b46c750..d870fdb7e 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/AiDeploymentModificationResponseListInner.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/AiDeploymentModificationResponseListInner.java @@ -41,7 +41,6 @@ /** * AiDeploymentModificationResponseListInner */ - // CHECKSTYLE:OFF public class AiDeploymentModificationResponseListInner // CHECKSTYLE:ON @@ -60,85 +59,85 @@ public class AiDeploymentModificationResponseListInner private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the id of this {@link AiDeploymentModificationResponseListInner} instance and return the same instance. - * - * @param id Generic ID - * @return The same instance of this {@link AiDeploymentModificationResponseListInner} class - */ + * Set the id of this {@link AiDeploymentModificationResponseListInner} instance and return the same instance. + * + * @param id Generic ID + * @return The same instance of this {@link AiDeploymentModificationResponseListInner} class + */ @Nonnull public AiDeploymentModificationResponseListInner id(@Nonnull final String id) { this.id = id; return this; } /** - * Generic ID - * @return id The id of this {@link AiDeploymentModificationResponseListInner} instance. - **/ + * Generic ID + * @return id The id of this {@link AiDeploymentModificationResponseListInner} instance. + */ @Nonnull public String getId() { return id; } /** - * Set the id of this {@link AiDeploymentModificationResponseListInner} instance. - * - * @param id Generic ID - */ + * Set the id of this {@link AiDeploymentModificationResponseListInner} instance. + * + * @param id Generic ID + */ public void setId( @Nonnull final String id) { this.id = id; } /** - * Set the message of this {@link AiDeploymentModificationResponseListInner} instance and return the same instance. - * - * @param message Message - * @return The same instance of this {@link AiDeploymentModificationResponseListInner} class - */ + * Set the message of this {@link AiDeploymentModificationResponseListInner} instance and return the same instance. + * + * @param message Message + * @return The same instance of this {@link AiDeploymentModificationResponseListInner} class + */ @Nonnull public AiDeploymentModificationResponseListInner message(@Nonnull final String message) { this.message = message; return this; } /** - * Message - * @return message The message of this {@link AiDeploymentModificationResponseListInner} instance. - **/ + * Message + * @return message The message of this {@link AiDeploymentModificationResponseListInner} instance. + */ @Nonnull public String getMessage() { return message; } /** - * Set the message of this {@link AiDeploymentModificationResponseListInner} instance. - * - * @param message Message - */ + * Set the message of this {@link AiDeploymentModificationResponseListInner} instance. + * + * @param message Message + */ public void setMessage( @Nonnull final String message) { this.message = message; } /** - * Set the error of this {@link AiDeploymentModificationResponseListInner} instance and return the same instance. - * - * @param error The error of this {@link AiDeploymentModificationResponseListInner} - * @return The same instance of this {@link AiDeploymentModificationResponseListInner} class - */ + * Set the error of this {@link AiDeploymentModificationResponseListInner} instance and return the same instance. + * + * @param error The error of this {@link AiDeploymentModificationResponseListInner} + * @return The same instance of this {@link AiDeploymentModificationResponseListInner} class + */ @Nonnull public AiDeploymentModificationResponseListInner error(@Nonnull final AiApiError error) { this.error = error; return this; } /** - * Get error - * @return error The error of this {@link AiDeploymentModificationResponseListInner} instance. - **/ + * Get error + * @return error The error of this {@link AiDeploymentModificationResponseListInner} instance. + */ @Nonnull public AiApiError getError() { return error; } /** - * Set the error of this {@link AiDeploymentModificationResponseListInner} instance. - * - * @param error The error of this {@link AiDeploymentModificationResponseListInner} - */ + * Set the error of this {@link AiDeploymentModificationResponseListInner} instance. + * + * @param error The error of this {@link AiDeploymentModificationResponseListInner} + */ public void setError( @Nonnull final AiApiError error) { this.error = error; } @@ -223,5 +222,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/AiDeploymentResponseWithDetails.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/AiDeploymentResponseWithDetails.java index 39a6bad6e..ef83c650b 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/AiDeploymentResponseWithDetails.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/AiDeploymentResponseWithDetails.java @@ -41,7 +41,6 @@ /** * Detail properties of the deployment */ - // CHECKSTYLE:OFF public class AiDeploymentResponseWithDetails // CHECKSTYLE:ON @@ -228,505 +227,505 @@ public enum LastOperationEnum { private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the id of this {@link AiDeploymentResponseWithDetails} instance and return the same instance. - * - * @param id ID of the deployment - * @return The same instance of this {@link AiDeploymentResponseWithDetails} class - */ + * Set the id of this {@link AiDeploymentResponseWithDetails} instance and return the same instance. + * + * @param id ID of the deployment + * @return The same instance of this {@link AiDeploymentResponseWithDetails} class + */ @Nonnull public AiDeploymentResponseWithDetails id(@Nonnull final String id) { this.id = id; return this; } /** - * ID of the deployment - * @return id The id of this {@link AiDeploymentResponseWithDetails} instance. - **/ + * ID of the deployment + * @return id The id of this {@link AiDeploymentResponseWithDetails} instance. + */ @Nonnull public String getId() { return id; } /** - * Set the id of this {@link AiDeploymentResponseWithDetails} instance. - * - * @param id ID of the deployment - */ + * Set the id of this {@link AiDeploymentResponseWithDetails} instance. + * + * @param id ID of the deployment + */ public void setId( @Nonnull final String id) { this.id = id; } /** - * Set the deploymentUrl of this {@link AiDeploymentResponseWithDetails} instance and return the same instance. - * - * @param deploymentUrl Consumption URL of the deployment - * @return The same instance of this {@link AiDeploymentResponseWithDetails} class - */ + * Set the deploymentUrl of this {@link AiDeploymentResponseWithDetails} instance and return the same instance. + * + * @param deploymentUrl Consumption URL of the deployment + * @return The same instance of this {@link AiDeploymentResponseWithDetails} class + */ @Nonnull public AiDeploymentResponseWithDetails deploymentUrl(@Nonnull final String deploymentUrl) { this.deploymentUrl = deploymentUrl; return this; } /** - * Consumption URL of the deployment - * @return deploymentUrl The deploymentUrl of this {@link AiDeploymentResponseWithDetails} instance. - **/ + * Consumption URL of the deployment + * @return deploymentUrl The deploymentUrl of this {@link AiDeploymentResponseWithDetails} instance. + */ @Nonnull public String getDeploymentUrl() { return deploymentUrl; } /** - * Set the deploymentUrl of this {@link AiDeploymentResponseWithDetails} instance. - * - * @param deploymentUrl Consumption URL of the deployment - */ + * Set the deploymentUrl of this {@link AiDeploymentResponseWithDetails} instance. + * + * @param deploymentUrl Consumption URL of the deployment + */ public void setDeploymentUrl( @Nonnull final String deploymentUrl) { this.deploymentUrl = deploymentUrl; } /** - * Set the configurationId of this {@link AiDeploymentResponseWithDetails} instance and return the same instance. - * - * @param configurationId ID of the configuration - * @return The same instance of this {@link AiDeploymentResponseWithDetails} class - */ + * Set the configurationId of this {@link AiDeploymentResponseWithDetails} instance and return the same instance. + * + * @param configurationId ID of the configuration + * @return The same instance of this {@link AiDeploymentResponseWithDetails} class + */ @Nonnull public AiDeploymentResponseWithDetails configurationId(@Nonnull final String configurationId) { this.configurationId = configurationId; return this; } /** - * ID of the configuration - * @return configurationId The configurationId of this {@link AiDeploymentResponseWithDetails} instance. - **/ + * ID of the configuration + * @return configurationId The configurationId of this {@link AiDeploymentResponseWithDetails} instance. + */ @Nonnull public String getConfigurationId() { return configurationId; } /** - * Set the configurationId of this {@link AiDeploymentResponseWithDetails} instance. - * - * @param configurationId ID of the configuration - */ + * Set the configurationId of this {@link AiDeploymentResponseWithDetails} instance. + * + * @param configurationId ID of the configuration + */ public void setConfigurationId( @Nonnull final String configurationId) { this.configurationId = configurationId; } /** - * Set the configurationName of this {@link AiDeploymentResponseWithDetails} instance and return the same instance. - * - * @param configurationName Name of the configuration - * @return The same instance of this {@link AiDeploymentResponseWithDetails} class - */ + * Set the configurationName of this {@link AiDeploymentResponseWithDetails} instance and return the same instance. + * + * @param configurationName Name of the configuration + * @return The same instance of this {@link AiDeploymentResponseWithDetails} class + */ @Nonnull public AiDeploymentResponseWithDetails configurationName(@Nonnull final String configurationName) { this.configurationName = configurationName; return this; } /** - * Name of the configuration - * @return configurationName The configurationName of this {@link AiDeploymentResponseWithDetails} instance. - **/ + * Name of the configuration + * @return configurationName The configurationName of this {@link AiDeploymentResponseWithDetails} instance. + */ @Nonnull public String getConfigurationName() { return configurationName; } /** - * Set the configurationName of this {@link AiDeploymentResponseWithDetails} instance. - * - * @param configurationName Name of the configuration - */ + * Set the configurationName of this {@link AiDeploymentResponseWithDetails} instance. + * + * @param configurationName Name of the configuration + */ public void setConfigurationName( @Nonnull final String configurationName) { this.configurationName = configurationName; } /** - * Set the scenarioId of this {@link AiDeploymentResponseWithDetails} instance and return the same instance. - * - * @param scenarioId ID of the scenario - * @return The same instance of this {@link AiDeploymentResponseWithDetails} class - */ + * Set the scenarioId of this {@link AiDeploymentResponseWithDetails} instance and return the same instance. + * + * @param scenarioId ID of the scenario + * @return The same instance of this {@link AiDeploymentResponseWithDetails} class + */ @Nonnull public AiDeploymentResponseWithDetails scenarioId(@Nonnull final String scenarioId) { this.scenarioId = scenarioId; return this; } /** - * ID of the scenario - * @return scenarioId The scenarioId of this {@link AiDeploymentResponseWithDetails} instance. - **/ + * ID of the scenario + * @return scenarioId The scenarioId of this {@link AiDeploymentResponseWithDetails} instance. + */ @Nonnull public String getScenarioId() { return scenarioId; } /** - * Set the scenarioId of this {@link AiDeploymentResponseWithDetails} instance. - * - * @param scenarioId ID of the scenario - */ + * Set the scenarioId of this {@link AiDeploymentResponseWithDetails} instance. + * + * @param scenarioId ID of the scenario + */ public void setScenarioId( @Nonnull final String scenarioId) { this.scenarioId = scenarioId; } /** - * Set the status of this {@link AiDeploymentResponseWithDetails} instance and return the same instance. - * - * @param status The status of this {@link AiDeploymentResponseWithDetails} - * @return The same instance of this {@link AiDeploymentResponseWithDetails} class - */ + * Set the status of this {@link AiDeploymentResponseWithDetails} instance and return the same instance. + * + * @param status The status of this {@link AiDeploymentResponseWithDetails} + * @return The same instance of this {@link AiDeploymentResponseWithDetails} class + */ @Nonnull public AiDeploymentResponseWithDetails status(@Nonnull final AiDeploymentStatus status) { this.status = status; return this; } /** - * Get status - * @return status The status of this {@link AiDeploymentResponseWithDetails} instance. - **/ + * Get status + * @return status The status of this {@link AiDeploymentResponseWithDetails} instance. + */ @Nonnull public AiDeploymentStatus getStatus() { return status; } /** - * Set the status of this {@link AiDeploymentResponseWithDetails} instance. - * - * @param status The status of this {@link AiDeploymentResponseWithDetails} - */ + * Set the status of this {@link AiDeploymentResponseWithDetails} instance. + * + * @param status The status of this {@link AiDeploymentResponseWithDetails} + */ public void setStatus( @Nonnull final AiDeploymentStatus status) { this.status = status; } /** - * Set the statusMessage of this {@link AiDeploymentResponseWithDetails} instance and return the same instance. - * - * @param statusMessage Deployment status message - * @return The same instance of this {@link AiDeploymentResponseWithDetails} class - */ + * Set the statusMessage of this {@link AiDeploymentResponseWithDetails} instance and return the same instance. + * + * @param statusMessage Deployment status message + * @return The same instance of this {@link AiDeploymentResponseWithDetails} class + */ @Nonnull public AiDeploymentResponseWithDetails statusMessage(@Nonnull final String statusMessage) { this.statusMessage = statusMessage; return this; } /** - * Deployment status message - * @return statusMessage The statusMessage of this {@link AiDeploymentResponseWithDetails} instance. - **/ + * Deployment status message + * @return statusMessage The statusMessage of this {@link AiDeploymentResponseWithDetails} instance. + */ @Nonnull public String getStatusMessage() { return statusMessage; } /** - * Set the statusMessage of this {@link AiDeploymentResponseWithDetails} instance. - * - * @param statusMessage Deployment status message - */ + * Set the statusMessage of this {@link AiDeploymentResponseWithDetails} instance. + * + * @param statusMessage Deployment status message + */ public void setStatusMessage( @Nonnull final String statusMessage) { this.statusMessage = statusMessage; } /** - * Set the targetStatus of this {@link AiDeploymentResponseWithDetails} instance and return the same instance. - * - * @param targetStatus Deployment target status - * @return The same instance of this {@link AiDeploymentResponseWithDetails} class - */ + * Set the targetStatus of this {@link AiDeploymentResponseWithDetails} instance and return the same instance. + * + * @param targetStatus Deployment target status + * @return The same instance of this {@link AiDeploymentResponseWithDetails} class + */ @Nonnull public AiDeploymentResponseWithDetails targetStatus(@Nonnull final TargetStatusEnum targetStatus) { this.targetStatus = targetStatus; return this; } /** - * Deployment target status - * @return targetStatus The targetStatus of this {@link AiDeploymentResponseWithDetails} instance. - **/ + * Deployment target status + * @return targetStatus The targetStatus of this {@link AiDeploymentResponseWithDetails} instance. + */ @Nonnull public TargetStatusEnum getTargetStatus() { return targetStatus; } /** - * Set the targetStatus of this {@link AiDeploymentResponseWithDetails} instance. - * - * @param targetStatus Deployment target status - */ + * Set the targetStatus of this {@link AiDeploymentResponseWithDetails} instance. + * + * @param targetStatus Deployment target status + */ public void setTargetStatus( @Nonnull final TargetStatusEnum targetStatus) { this.targetStatus = targetStatus; } /** - * Set the lastOperation of this {@link AiDeploymentResponseWithDetails} instance and return the same instance. - * - * @param lastOperation The lastOperation of this {@link AiDeploymentResponseWithDetails} - * @return The same instance of this {@link AiDeploymentResponseWithDetails} class - */ + * Set the lastOperation of this {@link AiDeploymentResponseWithDetails} instance and return the same instance. + * + * @param lastOperation The lastOperation of this {@link AiDeploymentResponseWithDetails} + * @return The same instance of this {@link AiDeploymentResponseWithDetails} class + */ @Nonnull public AiDeploymentResponseWithDetails lastOperation(@Nonnull final LastOperationEnum lastOperation) { this.lastOperation = lastOperation; return this; } /** - * Get lastOperation - * @return lastOperation The lastOperation of this {@link AiDeploymentResponseWithDetails} instance. - **/ + * Get lastOperation + * @return lastOperation The lastOperation of this {@link AiDeploymentResponseWithDetails} instance. + */ @Nonnull public LastOperationEnum getLastOperation() { return lastOperation; } /** - * Set the lastOperation of this {@link AiDeploymentResponseWithDetails} instance. - * - * @param lastOperation The lastOperation of this {@link AiDeploymentResponseWithDetails} - */ + * Set the lastOperation of this {@link AiDeploymentResponseWithDetails} instance. + * + * @param lastOperation The lastOperation of this {@link AiDeploymentResponseWithDetails} + */ public void setLastOperation( @Nonnull final LastOperationEnum lastOperation) { this.lastOperation = lastOperation; } /** - * Set the latestRunningConfigurationId of this {@link AiDeploymentResponseWithDetails} instance and return the same instance. - * - * @param latestRunningConfigurationId configurationId that was running before a PATCH operation has modified the configurationId of the deployment. This can be used for a manual rollback in case the new configurationId results in a DEAD deployment - * @return The same instance of this {@link AiDeploymentResponseWithDetails} class - */ + * Set the latestRunningConfigurationId of this {@link AiDeploymentResponseWithDetails} instance and return the same instance. + * + * @param latestRunningConfigurationId configurationId that was running before a PATCH operation has modified the configurationId of the deployment. This can be used for a manual rollback in case the new configurationId results in a DEAD deployment + * @return The same instance of this {@link AiDeploymentResponseWithDetails} class + */ @Nonnull public AiDeploymentResponseWithDetails latestRunningConfigurationId(@Nonnull final String latestRunningConfigurationId) { this.latestRunningConfigurationId = latestRunningConfigurationId; return this; } /** - * configurationId that was running before a PATCH operation has modified the configurationId of the deployment. This can be used for a manual rollback in case the new configurationId results in a DEAD deployment - * @return latestRunningConfigurationId The latestRunningConfigurationId of this {@link AiDeploymentResponseWithDetails} instance. - **/ + * configurationId that was running before a PATCH operation has modified the configurationId of the deployment. This can be used for a manual rollback in case the new configurationId results in a DEAD deployment + * @return latestRunningConfigurationId The latestRunningConfigurationId of this {@link AiDeploymentResponseWithDetails} instance. + */ @Nonnull public String getLatestRunningConfigurationId() { return latestRunningConfigurationId; } /** - * Set the latestRunningConfigurationId of this {@link AiDeploymentResponseWithDetails} instance. - * - * @param latestRunningConfigurationId configurationId that was running before a PATCH operation has modified the configurationId of the deployment. This can be used for a manual rollback in case the new configurationId results in a DEAD deployment - */ + * Set the latestRunningConfigurationId of this {@link AiDeploymentResponseWithDetails} instance. + * + * @param latestRunningConfigurationId configurationId that was running before a PATCH operation has modified the configurationId of the deployment. This can be used for a manual rollback in case the new configurationId results in a DEAD deployment + */ public void setLatestRunningConfigurationId( @Nonnull final String latestRunningConfigurationId) { this.latestRunningConfigurationId = latestRunningConfigurationId; } /** - * Set the ttl of this {@link AiDeploymentResponseWithDetails} instance and return the same instance. - * - * @param ttl Time to live for a deployment. Its value can be either null or a number followed by the unit (any of following values, minutes(m|M), hours(h|H) or days(d|D)) - * @return The same instance of this {@link AiDeploymentResponseWithDetails} class - */ + * Set the ttl of this {@link AiDeploymentResponseWithDetails} instance and return the same instance. + * + * @param ttl Time to live for a deployment. Its value can be either null or a number followed by the unit (any of following values, minutes(m|M), hours(h|H) or days(d|D)) + * @return The same instance of this {@link AiDeploymentResponseWithDetails} class + */ @Nonnull public AiDeploymentResponseWithDetails ttl(@Nonnull final String ttl) { this.ttl = ttl; return this; } /** - * Time to live for a deployment. Its value can be either null or a number followed by the unit (any of following values, minutes(m|M), hours(h|H) or days(d|D)) - * @return ttl The ttl of this {@link AiDeploymentResponseWithDetails} instance. - **/ + * Time to live for a deployment. Its value can be either null or a number followed by the unit (any of following values, minutes(m|M), hours(h|H) or days(d|D)) + * @return ttl The ttl of this {@link AiDeploymentResponseWithDetails} instance. + */ @Nonnull public String getTtl() { return ttl; } /** - * Set the ttl of this {@link AiDeploymentResponseWithDetails} instance. - * - * @param ttl Time to live for a deployment. Its value can be either null or a number followed by the unit (any of following values, minutes(m|M), hours(h|H) or days(d|D)) - */ + * Set the ttl of this {@link AiDeploymentResponseWithDetails} instance. + * + * @param ttl Time to live for a deployment. Its value can be either null or a number followed by the unit (any of following values, minutes(m|M), hours(h|H) or days(d|D)) + */ public void setTtl( @Nonnull final String ttl) { this.ttl = ttl; } /** - * Set the details of this {@link AiDeploymentResponseWithDetails} instance and return the same instance. - * - * @param details The details of this {@link AiDeploymentResponseWithDetails} - * @return The same instance of this {@link AiDeploymentResponseWithDetails} class - */ + * Set the details of this {@link AiDeploymentResponseWithDetails} instance and return the same instance. + * + * @param details The details of this {@link AiDeploymentResponseWithDetails} + * @return The same instance of this {@link AiDeploymentResponseWithDetails} class + */ @Nonnull public AiDeploymentResponseWithDetails details(@Nonnull final AiDeploymentDetails details) { this.details = details; return this; } /** - * Get details - * @return details The details of this {@link AiDeploymentResponseWithDetails} instance. - **/ + * Get details + * @return details The details of this {@link AiDeploymentResponseWithDetails} instance. + */ @Nonnull public AiDeploymentDetails getDetails() { return details; } /** - * Set the details of this {@link AiDeploymentResponseWithDetails} instance. - * - * @param details The details of this {@link AiDeploymentResponseWithDetails} - */ + * Set the details of this {@link AiDeploymentResponseWithDetails} instance. + * + * @param details The details of this {@link AiDeploymentResponseWithDetails} + */ public void setDetails( @Nonnull final AiDeploymentDetails details) { this.details = details; } /** - * Set the createdAt of this {@link AiDeploymentResponseWithDetails} instance and return the same instance. - * - * @param createdAt Timestamp of resource creation - * @return The same instance of this {@link AiDeploymentResponseWithDetails} class - */ + * Set the createdAt of this {@link AiDeploymentResponseWithDetails} instance and return the same instance. + * + * @param createdAt Timestamp of resource creation + * @return The same instance of this {@link AiDeploymentResponseWithDetails} class + */ @Nonnull public AiDeploymentResponseWithDetails createdAt(@Nonnull final OffsetDateTime createdAt) { this.createdAt = createdAt; return this; } /** - * Timestamp of resource creation - * @return createdAt The createdAt of this {@link AiDeploymentResponseWithDetails} instance. - **/ + * Timestamp of resource creation + * @return createdAt The createdAt of this {@link AiDeploymentResponseWithDetails} instance. + */ @Nonnull public OffsetDateTime getCreatedAt() { return createdAt; } /** - * Set the createdAt of this {@link AiDeploymentResponseWithDetails} instance. - * - * @param createdAt Timestamp of resource creation - */ + * Set the createdAt of this {@link AiDeploymentResponseWithDetails} instance. + * + * @param createdAt Timestamp of resource creation + */ public void setCreatedAt( @Nonnull final OffsetDateTime createdAt) { this.createdAt = createdAt; } /** - * Set the modifiedAt of this {@link AiDeploymentResponseWithDetails} instance and return the same instance. - * - * @param modifiedAt Timestamp of latest resource modification - * @return The same instance of this {@link AiDeploymentResponseWithDetails} class - */ + * Set the modifiedAt of this {@link AiDeploymentResponseWithDetails} instance and return the same instance. + * + * @param modifiedAt Timestamp of latest resource modification + * @return The same instance of this {@link AiDeploymentResponseWithDetails} class + */ @Nonnull public AiDeploymentResponseWithDetails modifiedAt(@Nonnull final OffsetDateTime modifiedAt) { this.modifiedAt = modifiedAt; return this; } /** - * Timestamp of latest resource modification - * @return modifiedAt The modifiedAt of this {@link AiDeploymentResponseWithDetails} instance. - **/ + * Timestamp of latest resource modification + * @return modifiedAt The modifiedAt of this {@link AiDeploymentResponseWithDetails} instance. + */ @Nonnull public OffsetDateTime getModifiedAt() { return modifiedAt; } /** - * Set the modifiedAt of this {@link AiDeploymentResponseWithDetails} instance. - * - * @param modifiedAt Timestamp of latest resource modification - */ + * Set the modifiedAt of this {@link AiDeploymentResponseWithDetails} instance. + * + * @param modifiedAt Timestamp of latest resource modification + */ public void setModifiedAt( @Nonnull final OffsetDateTime modifiedAt) { this.modifiedAt = modifiedAt; } /** - * Set the submissionTime of this {@link AiDeploymentResponseWithDetails} instance and return the same instance. - * - * @param submissionTime Timestamp of job submitted - * @return The same instance of this {@link AiDeploymentResponseWithDetails} class - */ + * Set the submissionTime of this {@link AiDeploymentResponseWithDetails} instance and return the same instance. + * + * @param submissionTime Timestamp of job submitted + * @return The same instance of this {@link AiDeploymentResponseWithDetails} class + */ @Nonnull public AiDeploymentResponseWithDetails submissionTime(@Nonnull final OffsetDateTime submissionTime) { this.submissionTime = submissionTime; return this; } /** - * Timestamp of job submitted - * @return submissionTime The submissionTime of this {@link AiDeploymentResponseWithDetails} instance. - **/ + * Timestamp of job submitted + * @return submissionTime The submissionTime of this {@link AiDeploymentResponseWithDetails} instance. + */ @Nonnull public OffsetDateTime getSubmissionTime() { return submissionTime; } /** - * Set the submissionTime of this {@link AiDeploymentResponseWithDetails} instance. - * - * @param submissionTime Timestamp of job submitted - */ + * Set the submissionTime of this {@link AiDeploymentResponseWithDetails} instance. + * + * @param submissionTime Timestamp of job submitted + */ public void setSubmissionTime( @Nonnull final OffsetDateTime submissionTime) { this.submissionTime = submissionTime; } /** - * Set the startTime of this {@link AiDeploymentResponseWithDetails} instance and return the same instance. - * - * @param startTime Timestamp of job status changed to RUNNING - * @return The same instance of this {@link AiDeploymentResponseWithDetails} class - */ + * Set the startTime of this {@link AiDeploymentResponseWithDetails} instance and return the same instance. + * + * @param startTime Timestamp of job status changed to RUNNING + * @return The same instance of this {@link AiDeploymentResponseWithDetails} class + */ @Nonnull public AiDeploymentResponseWithDetails startTime(@Nonnull final OffsetDateTime startTime) { this.startTime = startTime; return this; } /** - * Timestamp of job status changed to RUNNING - * @return startTime The startTime of this {@link AiDeploymentResponseWithDetails} instance. - **/ + * Timestamp of job status changed to RUNNING + * @return startTime The startTime of this {@link AiDeploymentResponseWithDetails} instance. + */ @Nonnull public OffsetDateTime getStartTime() { return startTime; } /** - * Set the startTime of this {@link AiDeploymentResponseWithDetails} instance. - * - * @param startTime Timestamp of job status changed to RUNNING - */ + * Set the startTime of this {@link AiDeploymentResponseWithDetails} instance. + * + * @param startTime Timestamp of job status changed to RUNNING + */ public void setStartTime( @Nonnull final OffsetDateTime startTime) { this.startTime = startTime; } /** - * Set the completionTime of this {@link AiDeploymentResponseWithDetails} instance and return the same instance. - * - * @param completionTime Timestamp of job status changed to COMPLETED/DEAD/STOPPED - * @return The same instance of this {@link AiDeploymentResponseWithDetails} class - */ + * Set the completionTime of this {@link AiDeploymentResponseWithDetails} instance and return the same instance. + * + * @param completionTime Timestamp of job status changed to COMPLETED/DEAD/STOPPED + * @return The same instance of this {@link AiDeploymentResponseWithDetails} class + */ @Nonnull public AiDeploymentResponseWithDetails completionTime(@Nonnull final OffsetDateTime completionTime) { this.completionTime = completionTime; return this; } /** - * Timestamp of job status changed to COMPLETED/DEAD/STOPPED - * @return completionTime The completionTime of this {@link AiDeploymentResponseWithDetails} instance. - **/ + * Timestamp of job status changed to COMPLETED/DEAD/STOPPED + * @return completionTime The completionTime of this {@link AiDeploymentResponseWithDetails} instance. + */ @Nonnull public OffsetDateTime getCompletionTime() { return completionTime; } /** - * Set the completionTime of this {@link AiDeploymentResponseWithDetails} instance. - * - * @param completionTime Timestamp of job status changed to COMPLETED/DEAD/STOPPED - */ + * Set the completionTime of this {@link AiDeploymentResponseWithDetails} instance. + * + * @param completionTime Timestamp of job status changed to COMPLETED/DEAD/STOPPED + */ public void setCompletionTime( @Nonnull final OffsetDateTime completionTime) { this.completionTime = completionTime; } /** - * Set the statusDetails of this {@link AiDeploymentResponseWithDetails} instance and return the same instance. - * - * @param statusDetails Current status details of the deployment - * @return The same instance of this {@link AiDeploymentResponseWithDetails} class - */ + * Set the statusDetails of this {@link AiDeploymentResponseWithDetails} instance and return the same instance. + * + * @param statusDetails Current status details of the deployment + * @return The same instance of this {@link AiDeploymentResponseWithDetails} class + */ @Nonnull public AiDeploymentResponseWithDetails statusDetails(@Nonnull final Object statusDetails) { this.statusDetails = statusDetails; return this; } /** - * Current status details of the deployment - * @return statusDetails The statusDetails of this {@link AiDeploymentResponseWithDetails} instance. - **/ + * Current status details of the deployment + * @return statusDetails The statusDetails of this {@link AiDeploymentResponseWithDetails} instance. + */ @Nonnull public Object getStatusDetails() { return statusDetails; } /** - * Set the statusDetails of this {@link AiDeploymentResponseWithDetails} instance. - * - * @param statusDetails Current status details of the deployment - */ + * Set the statusDetails of this {@link AiDeploymentResponseWithDetails} instance. + * + * @param statusDetails Current status details of the deployment + */ public void setStatusDetails( @Nonnull final Object statusDetails) { this.statusDetails = statusDetails; } @@ -841,5 +840,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/AiEnactmentCreationRequest.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/AiEnactmentCreationRequest.java index 221d27398..7f4a7078c 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/AiEnactmentCreationRequest.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/AiEnactmentCreationRequest.java @@ -38,7 +38,6 @@ /** * Request object for creating an execution or an deployment */ - // CHECKSTYLE:OFF public class AiEnactmentCreationRequest // CHECKSTYLE:ON @@ -51,29 +50,29 @@ public class AiEnactmentCreationRequest private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the configurationId of this {@link AiEnactmentCreationRequest} instance and return the same instance. - * - * @param configurationId ID of the configuration - * @return The same instance of this {@link AiEnactmentCreationRequest} class - */ + * Set the configurationId of this {@link AiEnactmentCreationRequest} instance and return the same instance. + * + * @param configurationId ID of the configuration + * @return The same instance of this {@link AiEnactmentCreationRequest} class + */ @Nonnull public AiEnactmentCreationRequest configurationId(@Nonnull final String configurationId) { this.configurationId = configurationId; return this; } /** - * ID of the configuration - * @return configurationId The configurationId of this {@link AiEnactmentCreationRequest} instance. - **/ + * ID of the configuration + * @return configurationId The configurationId of this {@link AiEnactmentCreationRequest} instance. + */ @Nonnull public String getConfigurationId() { return configurationId; } /** - * Set the configurationId of this {@link AiEnactmentCreationRequest} instance. - * - * @param configurationId ID of the configuration - */ + * Set the configurationId of this {@link AiEnactmentCreationRequest} instance. + * + * @param configurationId ID of the configuration + */ public void setConfigurationId( @Nonnull final String configurationId) { this.configurationId = configurationId; } @@ -154,5 +153,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/AiExecutable.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/AiExecutable.java index df0ec13c8..0899472bf 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/AiExecutable.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/AiExecutable.java @@ -45,7 +45,6 @@ /** * An ML executable consists of a set of ML tasks, flows between tasks, dependencies between tasks, models (or model versions?). */ - // CHECKSTYLE:OFF public class AiExecutable // CHECKSTYLE:ON @@ -91,21 +90,21 @@ public class AiExecutable private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the labels of this {@link AiExecutable} instance and return the same instance. - * - * @param labels Arbitrary labels as meta information - * @return The same instance of this {@link AiExecutable} class - */ + * Set the labels of this {@link AiExecutable} instance and return the same instance. + * + * @param labels Arbitrary labels as meta information + * @return The same instance of this {@link AiExecutable} class + */ @Nonnull public AiExecutable labels(@Nonnull final List labels) { this.labels = labels; return this; } /** - * Add one labels instance to this {@link AiExecutable}. - * @param labelsItem The labels that should be added - * @return The same instance of type {@link AiExecutable} - */ - @Nonnull public AiExecutable addlabelsItem( @Nonnull final AiLabel labelsItem) { + * Add one labels instance to this {@link AiExecutable}. + * @param labelsItem The labels that should be added + * @return The same instance of type {@link AiExecutable} + */ + @Nonnull public AiExecutable addLabelsItem( @Nonnull final AiLabel labelsItem) { if (this.labels == null) { this.labels = new ArrayList<>(); } @@ -114,178 +113,178 @@ public class AiExecutable } /** - * Arbitrary labels as meta information - * @return labels The labels of this {@link AiExecutable} instance. - **/ + * Arbitrary labels as meta information + * @return labels The labels of this {@link AiExecutable} instance. + */ @Nonnull public List getLabels() { return labels; } /** - * Set the labels of this {@link AiExecutable} instance. - * - * @param labels Arbitrary labels as meta information - */ + * Set the labels of this {@link AiExecutable} instance. + * + * @param labels Arbitrary labels as meta information + */ public void setLabels( @Nonnull final List labels) { this.labels = labels; } /** - * Set the name of this {@link AiExecutable} instance and return the same instance. - * - * @param name Name of the executable - * @return The same instance of this {@link AiExecutable} class - */ + * Set the name of this {@link AiExecutable} instance and return the same instance. + * + * @param name Name of the executable + * @return The same instance of this {@link AiExecutable} class + */ @Nonnull public AiExecutable name(@Nonnull final String name) { this.name = name; return this; } /** - * Name of the executable - * @return name The name of this {@link AiExecutable} instance. - **/ + * Name of the executable + * @return name The name of this {@link AiExecutable} instance. + */ @Nonnull public String getName() { return name; } /** - * Set the name of this {@link AiExecutable} instance. - * - * @param name Name of the executable - */ + * Set the name of this {@link AiExecutable} instance. + * + * @param name Name of the executable + */ public void setName( @Nonnull final String name) { this.name = name; } /** - * Set the description of this {@link AiExecutable} instance and return the same instance. - * - * @param description Description of the executable - * @return The same instance of this {@link AiExecutable} class - */ + * Set the description of this {@link AiExecutable} instance and return the same instance. + * + * @param description Description of the executable + * @return The same instance of this {@link AiExecutable} class + */ @Nonnull public AiExecutable description(@Nonnull final String description) { this.description = description; return this; } /** - * Description of the executable - * @return description The description of this {@link AiExecutable} instance. - **/ + * Description of the executable + * @return description The description of this {@link AiExecutable} instance. + */ @Nonnull public String getDescription() { return description; } /** - * Set the description of this {@link AiExecutable} instance. - * - * @param description Description of the executable - */ + * Set the description of this {@link AiExecutable} instance. + * + * @param description Description of the executable + */ public void setDescription( @Nonnull final String description) { this.description = description; } /** - * Set the id of this {@link AiExecutable} instance and return the same instance. - * - * @param id ID of the executable - * @return The same instance of this {@link AiExecutable} class - */ + * Set the id of this {@link AiExecutable} instance and return the same instance. + * + * @param id ID of the executable + * @return The same instance of this {@link AiExecutable} class + */ @Nonnull public AiExecutable id(@Nonnull final String id) { this.id = id; return this; } /** - * ID of the executable - * @return id The id of this {@link AiExecutable} instance. - **/ + * ID of the executable + * @return id The id of this {@link AiExecutable} instance. + */ @Nonnull public String getId() { return id; } /** - * Set the id of this {@link AiExecutable} instance. - * - * @param id ID of the executable - */ + * Set the id of this {@link AiExecutable} instance. + * + * @param id ID of the executable + */ public void setId( @Nonnull final String id) { this.id = id; } /** - * Set the scenarioId of this {@link AiExecutable} instance and return the same instance. - * - * @param scenarioId ID of the scenario - * @return The same instance of this {@link AiExecutable} class - */ + * Set the scenarioId of this {@link AiExecutable} instance and return the same instance. + * + * @param scenarioId ID of the scenario + * @return The same instance of this {@link AiExecutable} class + */ @Nonnull public AiExecutable scenarioId(@Nonnull final String scenarioId) { this.scenarioId = scenarioId; return this; } /** - * ID of the scenario - * @return scenarioId The scenarioId of this {@link AiExecutable} instance. - **/ + * ID of the scenario + * @return scenarioId The scenarioId of this {@link AiExecutable} instance. + */ @Nonnull public String getScenarioId() { return scenarioId; } /** - * Set the scenarioId of this {@link AiExecutable} instance. - * - * @param scenarioId ID of the scenario - */ + * Set the scenarioId of this {@link AiExecutable} instance. + * + * @param scenarioId ID of the scenario + */ public void setScenarioId( @Nonnull final String scenarioId) { this.scenarioId = scenarioId; } /** - * Set the versionId of this {@link AiExecutable} instance and return the same instance. - * - * @param versionId Version ID - * @return The same instance of this {@link AiExecutable} class - */ + * Set the versionId of this {@link AiExecutable} instance and return the same instance. + * + * @param versionId Version ID + * @return The same instance of this {@link AiExecutable} class + */ @Nonnull public AiExecutable versionId(@Nonnull final String versionId) { this.versionId = versionId; return this; } /** - * Version ID - * @return versionId The versionId of this {@link AiExecutable} instance. - **/ + * Version ID + * @return versionId The versionId of this {@link AiExecutable} instance. + */ @Nonnull public String getVersionId() { return versionId; } /** - * Set the versionId of this {@link AiExecutable} instance. - * - * @param versionId Version ID - */ + * Set the versionId of this {@link AiExecutable} instance. + * + * @param versionId Version ID + */ public void setVersionId( @Nonnull final String versionId) { this.versionId = versionId; } /** - * Set the parameters of this {@link AiExecutable} instance and return the same instance. - * - * @param parameters Executable parameters - * @return The same instance of this {@link AiExecutable} class - */ + * Set the parameters of this {@link AiExecutable} instance and return the same instance. + * + * @param parameters Executable parameters + * @return The same instance of this {@link AiExecutable} class + */ @Nonnull public AiExecutable parameters(@Nonnull final List parameters) { this.parameters = parameters; return this; } /** - * Add one parameters instance to this {@link AiExecutable}. - * @param parametersItem The parameters that should be added - * @return The same instance of type {@link AiExecutable} - */ - @Nonnull public AiExecutable addparametersItem( @Nonnull final AiExecutableParameter parametersItem) { + * Add one parameters instance to this {@link AiExecutable}. + * @param parametersItem The parameters that should be added + * @return The same instance of type {@link AiExecutable} + */ + @Nonnull public AiExecutable addParametersItem( @Nonnull final AiExecutableParameter parametersItem) { if (this.parameters == null) { this.parameters = new ArrayList<>(); } @@ -294,38 +293,38 @@ public void setVersionId( @Nonnull final String versionId) { } /** - * Executable parameters - * @return parameters The parameters of this {@link AiExecutable} instance. - **/ + * Executable parameters + * @return parameters The parameters of this {@link AiExecutable} instance. + */ @Nonnull public List getParameters() { return parameters; } /** - * Set the parameters of this {@link AiExecutable} instance. - * - * @param parameters Executable parameters - */ + * Set the parameters of this {@link AiExecutable} instance. + * + * @param parameters Executable parameters + */ public void setParameters( @Nonnull final List parameters) { this.parameters = parameters; } /** - * Set the inputArtifacts of this {@link AiExecutable} instance and return the same instance. - * - * @param inputArtifacts Executable parameters - * @return The same instance of this {@link AiExecutable} class - */ + * Set the inputArtifacts of this {@link AiExecutable} instance and return the same instance. + * + * @param inputArtifacts Executable parameters + * @return The same instance of this {@link AiExecutable} class + */ @Nonnull public AiExecutable inputArtifacts(@Nonnull final List inputArtifacts) { this.inputArtifacts = inputArtifacts; return this; } /** - * Add one inputArtifacts instance to this {@link AiExecutable}. - * @param inputArtifactsItem The inputArtifacts that should be added - * @return The same instance of type {@link AiExecutable} - */ - @Nonnull public AiExecutable addinputArtifactsItem( @Nonnull final AiExecutableArtifact inputArtifactsItem) { + * Add one inputArtifacts instance to this {@link AiExecutable}. + * @param inputArtifactsItem The inputArtifacts that should be added + * @return The same instance of type {@link AiExecutable} + */ + @Nonnull public AiExecutable addInputArtifactsItem( @Nonnull final AiExecutableArtifact inputArtifactsItem) { if (this.inputArtifacts == null) { this.inputArtifacts = new ArrayList<>(); } @@ -334,38 +333,38 @@ public void setParameters( @Nonnull final List parameters } /** - * Executable parameters - * @return inputArtifacts The inputArtifacts of this {@link AiExecutable} instance. - **/ + * Executable parameters + * @return inputArtifacts The inputArtifacts of this {@link AiExecutable} instance. + */ @Nonnull public List getInputArtifacts() { return inputArtifacts; } /** - * Set the inputArtifacts of this {@link AiExecutable} instance. - * - * @param inputArtifacts Executable parameters - */ + * Set the inputArtifacts of this {@link AiExecutable} instance. + * + * @param inputArtifacts Executable parameters + */ public void setInputArtifacts( @Nonnull final List inputArtifacts) { this.inputArtifacts = inputArtifacts; } /** - * Set the outputArtifacts of this {@link AiExecutable} instance and return the same instance. - * - * @param outputArtifacts Executable parameters - * @return The same instance of this {@link AiExecutable} class - */ + * Set the outputArtifacts of this {@link AiExecutable} instance and return the same instance. + * + * @param outputArtifacts Executable parameters + * @return The same instance of this {@link AiExecutable} class + */ @Nonnull public AiExecutable outputArtifacts(@Nonnull final List outputArtifacts) { this.outputArtifacts = outputArtifacts; return this; } /** - * Add one outputArtifacts instance to this {@link AiExecutable}. - * @param outputArtifactsItem The outputArtifacts that should be added - * @return The same instance of type {@link AiExecutable} - */ - @Nonnull public AiExecutable addoutputArtifactsItem( @Nonnull final AiExecutableArtifact outputArtifactsItem) { + * Add one outputArtifacts instance to this {@link AiExecutable}. + * @param outputArtifactsItem The outputArtifacts that should be added + * @return The same instance of type {@link AiExecutable} + */ + @Nonnull public AiExecutable addOutputArtifactsItem( @Nonnull final AiExecutableArtifact outputArtifactsItem) { if (this.outputArtifacts == null) { this.outputArtifacts = new ArrayList<>(); } @@ -374,102 +373,102 @@ public void setInputArtifacts( @Nonnull final List inputAr } /** - * Executable parameters - * @return outputArtifacts The outputArtifacts of this {@link AiExecutable} instance. - **/ + * Executable parameters + * @return outputArtifacts The outputArtifacts of this {@link AiExecutable} instance. + */ @Nonnull public List getOutputArtifacts() { return outputArtifacts; } /** - * Set the outputArtifacts of this {@link AiExecutable} instance. - * - * @param outputArtifacts Executable parameters - */ + * Set the outputArtifacts of this {@link AiExecutable} instance. + * + * @param outputArtifacts Executable parameters + */ public void setOutputArtifacts( @Nonnull final List outputArtifacts) { this.outputArtifacts = outputArtifacts; } /** - * Set the deployable of this {@link AiExecutable} instance and return the same instance. - * - * @param deployable Whether this executable is deployable - * @return The same instance of this {@link AiExecutable} class - */ + * Set the deployable of this {@link AiExecutable} instance and return the same instance. + * + * @param deployable Whether this executable is deployable + * @return The same instance of this {@link AiExecutable} class + */ @Nonnull public AiExecutable deployable(@Nonnull final Boolean deployable) { this.deployable = deployable; return this; } /** - * Whether this executable is deployable - * @return deployable The deployable of this {@link AiExecutable} instance. - **/ + * Whether this executable is deployable + * @return deployable The deployable of this {@link AiExecutable} instance. + */ @Nonnull public Boolean isDeployable() { return deployable; } /** - * Set the deployable of this {@link AiExecutable} instance. - * - * @param deployable Whether this executable is deployable - */ + * Set the deployable of this {@link AiExecutable} instance. + * + * @param deployable Whether this executable is deployable + */ public void setDeployable( @Nonnull final Boolean deployable) { this.deployable = deployable; } /** - * Set the createdAt of this {@link AiExecutable} instance and return the same instance. - * - * @param createdAt Timestamp of resource creation - * @return The same instance of this {@link AiExecutable} class - */ + * Set the createdAt of this {@link AiExecutable} instance and return the same instance. + * + * @param createdAt Timestamp of resource creation + * @return The same instance of this {@link AiExecutable} class + */ @Nonnull public AiExecutable createdAt(@Nonnull final OffsetDateTime createdAt) { this.createdAt = createdAt; return this; } /** - * Timestamp of resource creation - * @return createdAt The createdAt of this {@link AiExecutable} instance. - **/ + * Timestamp of resource creation + * @return createdAt The createdAt of this {@link AiExecutable} instance. + */ @Nonnull public OffsetDateTime getCreatedAt() { return createdAt; } /** - * Set the createdAt of this {@link AiExecutable} instance. - * - * @param createdAt Timestamp of resource creation - */ + * Set the createdAt of this {@link AiExecutable} instance. + * + * @param createdAt Timestamp of resource creation + */ public void setCreatedAt( @Nonnull final OffsetDateTime createdAt) { this.createdAt = createdAt; } /** - * Set the modifiedAt of this {@link AiExecutable} instance and return the same instance. - * - * @param modifiedAt Timestamp of latest resource modification - * @return The same instance of this {@link AiExecutable} class - */ + * Set the modifiedAt of this {@link AiExecutable} instance and return the same instance. + * + * @param modifiedAt Timestamp of latest resource modification + * @return The same instance of this {@link AiExecutable} class + */ @Nonnull public AiExecutable modifiedAt(@Nonnull final OffsetDateTime modifiedAt) { this.modifiedAt = modifiedAt; return this; } /** - * Timestamp of latest resource modification - * @return modifiedAt The modifiedAt of this {@link AiExecutable} instance. - **/ + * Timestamp of latest resource modification + * @return modifiedAt The modifiedAt of this {@link AiExecutable} instance. + */ @Nonnull public OffsetDateTime getModifiedAt() { return modifiedAt; } /** - * Set the modifiedAt of this {@link AiExecutable} instance. - * - * @param modifiedAt Timestamp of latest resource modification - */ + * Set the modifiedAt of this {@link AiExecutable} instance. + * + * @param modifiedAt Timestamp of latest resource modification + */ public void setModifiedAt( @Nonnull final OffsetDateTime modifiedAt) { this.modifiedAt = modifiedAt; } @@ -572,5 +571,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/AiExecutableArtifact.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/AiExecutableArtifact.java index 6e8317cb1..69f560464 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/AiExecutableArtifact.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/AiExecutableArtifact.java @@ -42,7 +42,6 @@ /** * AiExecutableArtifact */ - // CHECKSTYLE:OFF public class AiExecutableArtifact // CHECKSTYLE:ON @@ -64,105 +63,105 @@ public class AiExecutableArtifact private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the name of this {@link AiExecutableArtifact} instance and return the same instance. - * - * @param name Name of the executable input artifacts - * @return The same instance of this {@link AiExecutableArtifact} class - */ + * Set the name of this {@link AiExecutableArtifact} instance and return the same instance. + * + * @param name Name of the executable input artifacts + * @return The same instance of this {@link AiExecutableArtifact} class + */ @Nonnull public AiExecutableArtifact name(@Nonnull final String name) { this.name = name; return this; } /** - * Name of the executable input artifacts - * @return name The name of this {@link AiExecutableArtifact} instance. - **/ + * Name of the executable input artifacts + * @return name The name of this {@link AiExecutableArtifact} instance. + */ @Nonnull public String getName() { return name; } /** - * Set the name of this {@link AiExecutableArtifact} instance. - * - * @param name Name of the executable input artifacts - */ + * Set the name of this {@link AiExecutableArtifact} instance. + * + * @param name Name of the executable input artifacts + */ public void setName( @Nonnull final String name) { this.name = name; } /** - * Set the kind of this {@link AiExecutableArtifact} instance and return the same instance. - * - * @param kind Artifact kind (model, dataset, other) - * @return The same instance of this {@link AiExecutableArtifact} class - */ + * Set the kind of this {@link AiExecutableArtifact} instance and return the same instance. + * + * @param kind Artifact kind (model, dataset, other) + * @return The same instance of this {@link AiExecutableArtifact} class + */ @Nonnull public AiExecutableArtifact kind(@Nonnull final String kind) { this.kind = kind; return this; } /** - * Artifact kind (model, dataset, other) - * @return kind The kind of this {@link AiExecutableArtifact} instance. - **/ + * Artifact kind (model, dataset, other) + * @return kind The kind of this {@link AiExecutableArtifact} instance. + */ @Nonnull public String getKind() { return kind; } /** - * Set the kind of this {@link AiExecutableArtifact} instance. - * - * @param kind Artifact kind (model, dataset, other) - */ + * Set the kind of this {@link AiExecutableArtifact} instance. + * + * @param kind Artifact kind (model, dataset, other) + */ public void setKind( @Nonnull final String kind) { this.kind = kind; } /** - * Set the description of this {@link AiExecutableArtifact} instance and return the same instance. - * - * @param description Description of the signature argument - * @return The same instance of this {@link AiExecutableArtifact} class - */ + * Set the description of this {@link AiExecutableArtifact} instance and return the same instance. + * + * @param description Description of the signature argument + * @return The same instance of this {@link AiExecutableArtifact} class + */ @Nonnull public AiExecutableArtifact description(@Nonnull final String description) { this.description = description; return this; } /** - * Description of the signature argument - * @return description The description of this {@link AiExecutableArtifact} instance. - **/ + * Description of the signature argument + * @return description The description of this {@link AiExecutableArtifact} instance. + */ @Nonnull public String getDescription() { return description; } /** - * Set the description of this {@link AiExecutableArtifact} instance. - * - * @param description Description of the signature argument - */ + * Set the description of this {@link AiExecutableArtifact} instance. + * + * @param description Description of the signature argument + */ public void setDescription( @Nonnull final String description) { this.description = description; } /** - * Set the labels of this {@link AiExecutableArtifact} instance and return the same instance. - * - * @param labels Arbitrary labels as meta information - * @return The same instance of this {@link AiExecutableArtifact} class - */ + * Set the labels of this {@link AiExecutableArtifact} instance and return the same instance. + * + * @param labels Arbitrary labels as meta information + * @return The same instance of this {@link AiExecutableArtifact} class + */ @Nonnull public AiExecutableArtifact labels(@Nonnull final List labels) { this.labels = labels; return this; } /** - * Add one labels instance to this {@link AiExecutableArtifact}. - * @param labelsItem The labels that should be added - * @return The same instance of type {@link AiExecutableArtifact} - */ - @Nonnull public AiExecutableArtifact addlabelsItem( @Nonnull final AiLabel labelsItem) { + * Add one labels instance to this {@link AiExecutableArtifact}. + * @param labelsItem The labels that should be added + * @return The same instance of type {@link AiExecutableArtifact} + */ + @Nonnull public AiExecutableArtifact addLabelsItem( @Nonnull final AiLabel labelsItem) { if (this.labels == null) { this.labels = new ArrayList<>(); } @@ -171,18 +170,18 @@ public void setDescription( @Nonnull final String description) { } /** - * Arbitrary labels as meta information - * @return labels The labels of this {@link AiExecutableArtifact} instance. - **/ + * Arbitrary labels as meta information + * @return labels The labels of this {@link AiExecutableArtifact} instance. + */ @Nonnull public List getLabels() { return labels; } /** - * Set the labels of this {@link AiExecutableArtifact} instance. - * - * @param labels Arbitrary labels as meta information - */ + * Set the labels of this {@link AiExecutableArtifact} instance. + * + * @param labels Arbitrary labels as meta information + */ public void setLabels( @Nonnull final List labels) { this.labels = labels; } @@ -269,5 +268,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/AiExecutableList.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/AiExecutableList.java index c55d3299f..71a40aeca 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/AiExecutableList.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/AiExecutableList.java @@ -42,7 +42,6 @@ /** * AiExecutableList */ - // CHECKSTYLE:OFF public class AiExecutableList // CHECKSTYLE:ON @@ -58,49 +57,49 @@ public class AiExecutableList private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the count of this {@link AiExecutableList} instance and return the same instance. - * - * @param count Number of the resource instances in the list - * @return The same instance of this {@link AiExecutableList} class - */ + * Set the count of this {@link AiExecutableList} instance and return the same instance. + * + * @param count Number of the resource instances in the list + * @return The same instance of this {@link AiExecutableList} class + */ @Nonnull public AiExecutableList count(@Nonnull final Integer count) { this.count = count; return this; } /** - * Number of the resource instances in the list - * @return count The count of this {@link AiExecutableList} instance. - **/ + * Number of the resource instances in the list + * @return count The count of this {@link AiExecutableList} instance. + */ @Nonnull public Integer getCount() { return count; } /** - * Set the count of this {@link AiExecutableList} instance. - * - * @param count Number of the resource instances in the list - */ + * Set the count of this {@link AiExecutableList} instance. + * + * @param count Number of the resource instances in the list + */ public void setCount( @Nonnull final Integer count) { this.count = count; } /** - * Set the resources of this {@link AiExecutableList} instance and return the same instance. - * - * @param resources The resources of this {@link AiExecutableList} - * @return The same instance of this {@link AiExecutableList} class - */ + * Set the resources of this {@link AiExecutableList} instance and return the same instance. + * + * @param resources The resources of this {@link AiExecutableList} + * @return The same instance of this {@link AiExecutableList} class + */ @Nonnull public AiExecutableList resources(@Nonnull final List resources) { this.resources = resources; return this; } /** - * Add one resources instance to this {@link AiExecutableList}. - * @param resourcesItem The resources that should be added - * @return The same instance of type {@link AiExecutableList} - */ - @Nonnull public AiExecutableList addresourcesItem( @Nonnull final AiExecutable resourcesItem) { + * Add one resources instance to this {@link AiExecutableList}. + * @param resourcesItem The resources that should be added + * @return The same instance of type {@link AiExecutableList} + */ + @Nonnull public AiExecutableList addResourcesItem( @Nonnull final AiExecutable resourcesItem) { if (this.resources == null) { this.resources = new ArrayList<>(); } @@ -109,18 +108,18 @@ public void setCount( @Nonnull final Integer count) { } /** - * Get resources - * @return resources The resources of this {@link AiExecutableList} instance. - **/ + * Get resources + * @return resources The resources of this {@link AiExecutableList} instance. + */ @Nonnull public List getResources() { return resources; } /** - * Set the resources of this {@link AiExecutableList} instance. - * - * @param resources The resources of this {@link AiExecutableList} - */ + * Set the resources of this {@link AiExecutableList} instance. + * + * @param resources The resources of this {@link AiExecutableList} + */ public void setResources( @Nonnull final List resources) { this.resources = resources; } @@ -203,5 +202,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/AiExecutableParameter.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/AiExecutableParameter.java index 7bb5fa449..53d419cc9 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/AiExecutableParameter.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/AiExecutableParameter.java @@ -38,7 +38,6 @@ /** * AiExecutableParameter */ - // CHECKSTYLE:OFF public class AiExecutableParameter // CHECKSTYLE:ON @@ -109,113 +108,113 @@ public enum TypeEnum { private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the name of this {@link AiExecutableParameter} instance and return the same instance. - * - * @param name Name of the executable parameter - * @return The same instance of this {@link AiExecutableParameter} class - */ + * Set the name of this {@link AiExecutableParameter} instance and return the same instance. + * + * @param name Name of the executable parameter + * @return The same instance of this {@link AiExecutableParameter} class + */ @Nonnull public AiExecutableParameter name(@Nonnull final String name) { this.name = name; return this; } /** - * Name of the executable parameter - * @return name The name of this {@link AiExecutableParameter} instance. - **/ + * Name of the executable parameter + * @return name The name of this {@link AiExecutableParameter} instance. + */ @Nonnull public String getName() { return name; } /** - * Set the name of this {@link AiExecutableParameter} instance. - * - * @param name Name of the executable parameter - */ + * Set the name of this {@link AiExecutableParameter} instance. + * + * @param name Name of the executable parameter + */ public void setName( @Nonnull final String name) { this.name = name; } /** - * Set the description of this {@link AiExecutableParameter} instance and return the same instance. - * - * @param description Description of the signature argument - * @return The same instance of this {@link AiExecutableParameter} class - */ + * Set the description of this {@link AiExecutableParameter} instance and return the same instance. + * + * @param description Description of the signature argument + * @return The same instance of this {@link AiExecutableParameter} class + */ @Nonnull public AiExecutableParameter description(@Nonnull final String description) { this.description = description; return this; } /** - * Description of the signature argument - * @return description The description of this {@link AiExecutableParameter} instance. - **/ + * Description of the signature argument + * @return description The description of this {@link AiExecutableParameter} instance. + */ @Nonnull public String getDescription() { return description; } /** - * Set the description of this {@link AiExecutableParameter} instance. - * - * @param description Description of the signature argument - */ + * Set the description of this {@link AiExecutableParameter} instance. + * + * @param description Description of the signature argument + */ public void setDescription( @Nonnull final String description) { this.description = description; } /** - * Set the _default of this {@link AiExecutableParameter} instance and return the same instance. - * - * @param _default Default value of the signature argument - * @return The same instance of this {@link AiExecutableParameter} class - */ + * Set the _default of this {@link AiExecutableParameter} instance and return the same instance. + * + * @param _default Default value of the signature argument + * @return The same instance of this {@link AiExecutableParameter} class + */ @Nonnull public AiExecutableParameter _default(@Nonnull final String _default) { this._default = _default; return this; } /** - * Default value of the signature argument - * @return _default The _default of this {@link AiExecutableParameter} instance. - **/ + * Default value of the signature argument + * @return _default The _default of this {@link AiExecutableParameter} instance. + */ @Nonnull public String getDefault() { return _default; } /** - * Set the _default of this {@link AiExecutableParameter} instance. - * - * @param _default Default value of the signature argument - */ + * Set the _default of this {@link AiExecutableParameter} instance. + * + * @param _default Default value of the signature argument + */ public void setDefault( @Nonnull final String _default) { this._default = _default; } /** - * Set the type of this {@link AiExecutableParameter} instance and return the same instance. - * - * @param type Type of the executable parameter - * @return The same instance of this {@link AiExecutableParameter} class - */ + * Set the type of this {@link AiExecutableParameter} instance and return the same instance. + * + * @param type Type of the executable parameter + * @return The same instance of this {@link AiExecutableParameter} class + */ @Nonnull public AiExecutableParameter type(@Nonnull final TypeEnum type) { this.type = type; return this; } /** - * Type of the executable parameter - * @return type The type of this {@link AiExecutableParameter} instance. - **/ + * Type of the executable parameter + * @return type The type of this {@link AiExecutableParameter} instance. + */ @Nonnull public TypeEnum getType() { return type; } /** - * Set the type of this {@link AiExecutableParameter} instance. - * - * @param type Type of the executable parameter - */ + * Set the type of this {@link AiExecutableParameter} instance. + * + * @param type Type of the executable parameter + */ public void setType( @Nonnull final TypeEnum type) { this.type = type; } @@ -302,5 +301,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/AiExecution.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/AiExecution.java index 89302b93b..971e98ae5 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/AiExecution.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/AiExecution.java @@ -44,7 +44,6 @@ /** * Execution that may generate artifacts */ - // CHECKSTYLE:OFF public class AiExecution // CHECKSTYLE:ON @@ -160,217 +159,217 @@ public enum TargetStatusEnum { private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the id of this {@link AiExecution} instance and return the same instance. - * - * @param id ID of the execution - * @return The same instance of this {@link AiExecution} class - */ + * Set the id of this {@link AiExecution} instance and return the same instance. + * + * @param id ID of the execution + * @return The same instance of this {@link AiExecution} class + */ @Nonnull public AiExecution id(@Nonnull final String id) { this.id = id; return this; } /** - * ID of the execution - * @return id The id of this {@link AiExecution} instance. - **/ + * ID of the execution + * @return id The id of this {@link AiExecution} instance. + */ @Nonnull public String getId() { return id; } /** - * Set the id of this {@link AiExecution} instance. - * - * @param id ID of the execution - */ + * Set the id of this {@link AiExecution} instance. + * + * @param id ID of the execution + */ public void setId( @Nonnull final String id) { this.id = id; } /** - * Set the configurationId of this {@link AiExecution} instance and return the same instance. - * - * @param configurationId ID of the configuration - * @return The same instance of this {@link AiExecution} class - */ + * Set the configurationId of this {@link AiExecution} instance and return the same instance. + * + * @param configurationId ID of the configuration + * @return The same instance of this {@link AiExecution} class + */ @Nonnull public AiExecution configurationId(@Nonnull final String configurationId) { this.configurationId = configurationId; return this; } /** - * ID of the configuration - * @return configurationId The configurationId of this {@link AiExecution} instance. - **/ + * ID of the configuration + * @return configurationId The configurationId of this {@link AiExecution} instance. + */ @Nonnull public String getConfigurationId() { return configurationId; } /** - * Set the configurationId of this {@link AiExecution} instance. - * - * @param configurationId ID of the configuration - */ + * Set the configurationId of this {@link AiExecution} instance. + * + * @param configurationId ID of the configuration + */ public void setConfigurationId( @Nonnull final String configurationId) { this.configurationId = configurationId; } /** - * Set the configurationName of this {@link AiExecution} instance and return the same instance. - * - * @param configurationName Name of the configuration - * @return The same instance of this {@link AiExecution} class - */ + * Set the configurationName of this {@link AiExecution} instance and return the same instance. + * + * @param configurationName Name of the configuration + * @return The same instance of this {@link AiExecution} class + */ @Nonnull public AiExecution configurationName(@Nonnull final String configurationName) { this.configurationName = configurationName; return this; } /** - * Name of the configuration - * @return configurationName The configurationName of this {@link AiExecution} instance. - **/ + * Name of the configuration + * @return configurationName The configurationName of this {@link AiExecution} instance. + */ @Nonnull public String getConfigurationName() { return configurationName; } /** - * Set the configurationName of this {@link AiExecution} instance. - * - * @param configurationName Name of the configuration - */ + * Set the configurationName of this {@link AiExecution} instance. + * + * @param configurationName Name of the configuration + */ public void setConfigurationName( @Nonnull final String configurationName) { this.configurationName = configurationName; } /** - * Set the scenarioId of this {@link AiExecution} instance and return the same instance. - * - * @param scenarioId ID of the scenario - * @return The same instance of this {@link AiExecution} class - */ + * Set the scenarioId of this {@link AiExecution} instance and return the same instance. + * + * @param scenarioId ID of the scenario + * @return The same instance of this {@link AiExecution} class + */ @Nonnull public AiExecution scenarioId(@Nonnull final String scenarioId) { this.scenarioId = scenarioId; return this; } /** - * ID of the scenario - * @return scenarioId The scenarioId of this {@link AiExecution} instance. - **/ + * ID of the scenario + * @return scenarioId The scenarioId of this {@link AiExecution} instance. + */ @Nonnull public String getScenarioId() { return scenarioId; } /** - * Set the scenarioId of this {@link AiExecution} instance. - * - * @param scenarioId ID of the scenario - */ + * Set the scenarioId of this {@link AiExecution} instance. + * + * @param scenarioId ID of the scenario + */ public void setScenarioId( @Nonnull final String scenarioId) { this.scenarioId = scenarioId; } /** - * Set the targetStatus of this {@link AiExecution} instance and return the same instance. - * - * @param targetStatus Target status of the execution - * @return The same instance of this {@link AiExecution} class - */ + * Set the targetStatus of this {@link AiExecution} instance and return the same instance. + * + * @param targetStatus Target status of the execution + * @return The same instance of this {@link AiExecution} class + */ @Nonnull public AiExecution targetStatus(@Nonnull final TargetStatusEnum targetStatus) { this.targetStatus = targetStatus; return this; } /** - * Target status of the execution - * @return targetStatus The targetStatus of this {@link AiExecution} instance. - **/ + * Target status of the execution + * @return targetStatus The targetStatus of this {@link AiExecution} instance. + */ @Nonnull public TargetStatusEnum getTargetStatus() { return targetStatus; } /** - * Set the targetStatus of this {@link AiExecution} instance. - * - * @param targetStatus Target status of the execution - */ + * Set the targetStatus of this {@link AiExecution} instance. + * + * @param targetStatus Target status of the execution + */ public void setTargetStatus( @Nonnull final TargetStatusEnum targetStatus) { this.targetStatus = targetStatus; } /** - * Set the status of this {@link AiExecution} instance and return the same instance. - * - * @param status The status of this {@link AiExecution} - * @return The same instance of this {@link AiExecution} class - */ + * Set the status of this {@link AiExecution} instance and return the same instance. + * + * @param status The status of this {@link AiExecution} + * @return The same instance of this {@link AiExecution} class + */ @Nonnull public AiExecution status(@Nonnull final AiExecutionStatus status) { this.status = status; return this; } /** - * Get status - * @return status The status of this {@link AiExecution} instance. - **/ + * Get status + * @return status The status of this {@link AiExecution} instance. + */ @Nonnull public AiExecutionStatus getStatus() { return status; } /** - * Set the status of this {@link AiExecution} instance. - * - * @param status The status of this {@link AiExecution} - */ + * Set the status of this {@link AiExecution} instance. + * + * @param status The status of this {@link AiExecution} + */ public void setStatus( @Nonnull final AiExecutionStatus status) { this.status = status; } /** - * Set the statusMessage of this {@link AiExecution} instance and return the same instance. - * - * @param statusMessage Execution status message - * @return The same instance of this {@link AiExecution} class - */ + * Set the statusMessage of this {@link AiExecution} instance and return the same instance. + * + * @param statusMessage Execution status message + * @return The same instance of this {@link AiExecution} class + */ @Nonnull public AiExecution statusMessage(@Nonnull final String statusMessage) { this.statusMessage = statusMessage; return this; } /** - * Execution status message - * @return statusMessage The statusMessage of this {@link AiExecution} instance. - **/ + * Execution status message + * @return statusMessage The statusMessage of this {@link AiExecution} instance. + */ @Nonnull public String getStatusMessage() { return statusMessage; } /** - * Set the statusMessage of this {@link AiExecution} instance. - * - * @param statusMessage Execution status message - */ + * Set the statusMessage of this {@link AiExecution} instance. + * + * @param statusMessage Execution status message + */ public void setStatusMessage( @Nonnull final String statusMessage) { this.statusMessage = statusMessage; } /** - * Set the outputArtifacts of this {@link AiExecution} instance and return the same instance. - * - * @param outputArtifacts The outputArtifacts of this {@link AiExecution} - * @return The same instance of this {@link AiExecution} class - */ + * Set the outputArtifacts of this {@link AiExecution} instance and return the same instance. + * + * @param outputArtifacts The outputArtifacts of this {@link AiExecution} + * @return The same instance of this {@link AiExecution} class + */ @Nonnull public AiExecution outputArtifacts(@Nonnull final List outputArtifacts) { this.outputArtifacts = outputArtifacts; return this; } /** - * Add one outputArtifacts instance to this {@link AiExecution}. - * @param outputArtifactsItem The outputArtifacts that should be added - * @return The same instance of type {@link AiExecution} - */ - @Nonnull public AiExecution addoutputArtifactsItem( @Nonnull final AiArtifact outputArtifactsItem) { + * Add one outputArtifacts instance to this {@link AiExecution}. + * @param outputArtifactsItem The outputArtifacts that should be added + * @return The same instance of type {@link AiExecution} + */ + @Nonnull public AiExecution addOutputArtifactsItem( @Nonnull final AiArtifact outputArtifactsItem) { if (this.outputArtifacts == null) { this.outputArtifacts = new ArrayList<>(); } @@ -379,186 +378,186 @@ public void setStatusMessage( @Nonnull final String statusMessage) { } /** - * Get outputArtifacts - * @return outputArtifacts The outputArtifacts of this {@link AiExecution} instance. - **/ + * Get outputArtifacts + * @return outputArtifacts The outputArtifacts of this {@link AiExecution} instance. + */ @Nonnull public List getOutputArtifacts() { return outputArtifacts; } /** - * Set the outputArtifacts of this {@link AiExecution} instance. - * - * @param outputArtifacts The outputArtifacts of this {@link AiExecution} - */ + * Set the outputArtifacts of this {@link AiExecution} instance. + * + * @param outputArtifacts The outputArtifacts of this {@link AiExecution} + */ public void setOutputArtifacts( @Nonnull final List outputArtifacts) { this.outputArtifacts = outputArtifacts; } /** - * Set the executionScheduleId of this {@link AiExecution} instance and return the same instance. - * - * @param executionScheduleId ID of the execution schedule - * @return The same instance of this {@link AiExecution} class - */ + * Set the executionScheduleId of this {@link AiExecution} instance and return the same instance. + * + * @param executionScheduleId ID of the execution schedule + * @return The same instance of this {@link AiExecution} class + */ @Nonnull public AiExecution executionScheduleId(@Nonnull final String executionScheduleId) { this.executionScheduleId = executionScheduleId; return this; } /** - * ID of the execution schedule - * @return executionScheduleId The executionScheduleId of this {@link AiExecution} instance. - **/ + * ID of the execution schedule + * @return executionScheduleId The executionScheduleId of this {@link AiExecution} instance. + */ @Nonnull public String getExecutionScheduleId() { return executionScheduleId; } /** - * Set the executionScheduleId of this {@link AiExecution} instance. - * - * @param executionScheduleId ID of the execution schedule - */ + * Set the executionScheduleId of this {@link AiExecution} instance. + * + * @param executionScheduleId ID of the execution schedule + */ public void setExecutionScheduleId( @Nonnull final String executionScheduleId) { this.executionScheduleId = executionScheduleId; } /** - * Set the createdAt of this {@link AiExecution} instance and return the same instance. - * - * @param createdAt Timestamp of resource creation - * @return The same instance of this {@link AiExecution} class - */ + * Set the createdAt of this {@link AiExecution} instance and return the same instance. + * + * @param createdAt Timestamp of resource creation + * @return The same instance of this {@link AiExecution} class + */ @Nonnull public AiExecution createdAt(@Nonnull final OffsetDateTime createdAt) { this.createdAt = createdAt; return this; } /** - * Timestamp of resource creation - * @return createdAt The createdAt of this {@link AiExecution} instance. - **/ + * Timestamp of resource creation + * @return createdAt The createdAt of this {@link AiExecution} instance. + */ @Nonnull public OffsetDateTime getCreatedAt() { return createdAt; } /** - * Set the createdAt of this {@link AiExecution} instance. - * - * @param createdAt Timestamp of resource creation - */ + * Set the createdAt of this {@link AiExecution} instance. + * + * @param createdAt Timestamp of resource creation + */ public void setCreatedAt( @Nonnull final OffsetDateTime createdAt) { this.createdAt = createdAt; } /** - * Set the modifiedAt of this {@link AiExecution} instance and return the same instance. - * - * @param modifiedAt Timestamp of latest resource modification - * @return The same instance of this {@link AiExecution} class - */ + * Set the modifiedAt of this {@link AiExecution} instance and return the same instance. + * + * @param modifiedAt Timestamp of latest resource modification + * @return The same instance of this {@link AiExecution} class + */ @Nonnull public AiExecution modifiedAt(@Nonnull final OffsetDateTime modifiedAt) { this.modifiedAt = modifiedAt; return this; } /** - * Timestamp of latest resource modification - * @return modifiedAt The modifiedAt of this {@link AiExecution} instance. - **/ + * Timestamp of latest resource modification + * @return modifiedAt The modifiedAt of this {@link AiExecution} instance. + */ @Nonnull public OffsetDateTime getModifiedAt() { return modifiedAt; } /** - * Set the modifiedAt of this {@link AiExecution} instance. - * - * @param modifiedAt Timestamp of latest resource modification - */ + * Set the modifiedAt of this {@link AiExecution} instance. + * + * @param modifiedAt Timestamp of latest resource modification + */ public void setModifiedAt( @Nonnull final OffsetDateTime modifiedAt) { this.modifiedAt = modifiedAt; } /** - * Set the submissionTime of this {@link AiExecution} instance and return the same instance. - * - * @param submissionTime Timestamp of job submitted - * @return The same instance of this {@link AiExecution} class - */ + * Set the submissionTime of this {@link AiExecution} instance and return the same instance. + * + * @param submissionTime Timestamp of job submitted + * @return The same instance of this {@link AiExecution} class + */ @Nonnull public AiExecution submissionTime(@Nonnull final OffsetDateTime submissionTime) { this.submissionTime = submissionTime; return this; } /** - * Timestamp of job submitted - * @return submissionTime The submissionTime of this {@link AiExecution} instance. - **/ + * Timestamp of job submitted + * @return submissionTime The submissionTime of this {@link AiExecution} instance. + */ @Nonnull public OffsetDateTime getSubmissionTime() { return submissionTime; } /** - * Set the submissionTime of this {@link AiExecution} instance. - * - * @param submissionTime Timestamp of job submitted - */ + * Set the submissionTime of this {@link AiExecution} instance. + * + * @param submissionTime Timestamp of job submitted + */ public void setSubmissionTime( @Nonnull final OffsetDateTime submissionTime) { this.submissionTime = submissionTime; } /** - * Set the startTime of this {@link AiExecution} instance and return the same instance. - * - * @param startTime Timestamp of job status changed to RUNNING - * @return The same instance of this {@link AiExecution} class - */ + * Set the startTime of this {@link AiExecution} instance and return the same instance. + * + * @param startTime Timestamp of job status changed to RUNNING + * @return The same instance of this {@link AiExecution} class + */ @Nonnull public AiExecution startTime(@Nonnull final OffsetDateTime startTime) { this.startTime = startTime; return this; } /** - * Timestamp of job status changed to RUNNING - * @return startTime The startTime of this {@link AiExecution} instance. - **/ + * Timestamp of job status changed to RUNNING + * @return startTime The startTime of this {@link AiExecution} instance. + */ @Nonnull public OffsetDateTime getStartTime() { return startTime; } /** - * Set the startTime of this {@link AiExecution} instance. - * - * @param startTime Timestamp of job status changed to RUNNING - */ + * Set the startTime of this {@link AiExecution} instance. + * + * @param startTime Timestamp of job status changed to RUNNING + */ public void setStartTime( @Nonnull final OffsetDateTime startTime) { this.startTime = startTime; } /** - * Set the completionTime of this {@link AiExecution} instance and return the same instance. - * - * @param completionTime Timestamp of job status changed to COMPLETED/DEAD/STOPPED - * @return The same instance of this {@link AiExecution} class - */ + * Set the completionTime of this {@link AiExecution} instance and return the same instance. + * + * @param completionTime Timestamp of job status changed to COMPLETED/DEAD/STOPPED + * @return The same instance of this {@link AiExecution} class + */ @Nonnull public AiExecution completionTime(@Nonnull final OffsetDateTime completionTime) { this.completionTime = completionTime; return this; } /** - * Timestamp of job status changed to COMPLETED/DEAD/STOPPED - * @return completionTime The completionTime of this {@link AiExecution} instance. - **/ + * Timestamp of job status changed to COMPLETED/DEAD/STOPPED + * @return completionTime The completionTime of this {@link AiExecution} instance. + */ @Nonnull public OffsetDateTime getCompletionTime() { return completionTime; } /** - * Set the completionTime of this {@link AiExecution} instance. - * - * @param completionTime Timestamp of job status changed to COMPLETED/DEAD/STOPPED - */ + * Set the completionTime of this {@link AiExecution} instance. + * + * @param completionTime Timestamp of job status changed to COMPLETED/DEAD/STOPPED + */ public void setCompletionTime( @Nonnull final OffsetDateTime completionTime) { this.completionTime = completionTime; } @@ -665,5 +664,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/AiExecutionBulkModificationRequest.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/AiExecutionBulkModificationRequest.java index 79b696d27..9fb79fc4b 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/AiExecutionBulkModificationRequest.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/AiExecutionBulkModificationRequest.java @@ -42,7 +42,6 @@ /** * Request object to change status of multiple executions */ - // CHECKSTYLE:OFF public class AiExecutionBulkModificationRequest // CHECKSTYLE:ON @@ -55,21 +54,21 @@ public class AiExecutionBulkModificationRequest private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the executions of this {@link AiExecutionBulkModificationRequest} instance and return the same instance. - * - * @param executions The executions of this {@link AiExecutionBulkModificationRequest} - * @return The same instance of this {@link AiExecutionBulkModificationRequest} class - */ + * Set the executions of this {@link AiExecutionBulkModificationRequest} instance and return the same instance. + * + * @param executions The executions of this {@link AiExecutionBulkModificationRequest} + * @return The same instance of this {@link AiExecutionBulkModificationRequest} class + */ @Nonnull public AiExecutionBulkModificationRequest executions(@Nonnull final Set executions) { this.executions = executions; return this; } /** - * Add one executions instance to this {@link AiExecutionBulkModificationRequest}. - * @param executionsItem The executions that should be added - * @return The same instance of type {@link AiExecutionBulkModificationRequest} - */ - @Nonnull public AiExecutionBulkModificationRequest addexecutionsItem( @Nonnull final AiExecutionModificationRequestWithIdentifier executionsItem) { + * Add one executions instance to this {@link AiExecutionBulkModificationRequest}. + * @param executionsItem The executions that should be added + * @return The same instance of type {@link AiExecutionBulkModificationRequest} + */ + @Nonnull public AiExecutionBulkModificationRequest addExecutionsItem( @Nonnull final AiExecutionModificationRequestWithIdentifier executionsItem) { if (this.executions == null) { this.executions = new LinkedHashSet<>(); } @@ -78,18 +77,18 @@ public class AiExecutionBulkModificationRequest } /** - * Get executions - * @return executions The executions of this {@link AiExecutionBulkModificationRequest} instance. - **/ + * Get executions + * @return executions The executions of this {@link AiExecutionBulkModificationRequest} instance. + */ @Nonnull public Set getExecutions() { return executions; } /** - * Set the executions of this {@link AiExecutionBulkModificationRequest} instance. - * - * @param executions The executions of this {@link AiExecutionBulkModificationRequest} - */ + * Set the executions of this {@link AiExecutionBulkModificationRequest} instance. + * + * @param executions The executions of this {@link AiExecutionBulkModificationRequest} + */ public void setExecutions( @Nonnull final Set executions) { this.executions = executions; } @@ -170,5 +169,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/AiExecutionBulkModificationResponse.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/AiExecutionBulkModificationResponse.java index 51c8fe1d2..7c118cb2b 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/AiExecutionBulkModificationResponse.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/AiExecutionBulkModificationResponse.java @@ -42,7 +42,6 @@ /** * Response object with array of executions and its status */ - // CHECKSTYLE:OFF public class AiExecutionBulkModificationResponse // CHECKSTYLE:ON @@ -55,21 +54,21 @@ public class AiExecutionBulkModificationResponse private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the executions of this {@link AiExecutionBulkModificationResponse} instance and return the same instance. - * - * @param executions The executions of this {@link AiExecutionBulkModificationResponse} - * @return The same instance of this {@link AiExecutionBulkModificationResponse} class - */ + * Set the executions of this {@link AiExecutionBulkModificationResponse} instance and return the same instance. + * + * @param executions The executions of this {@link AiExecutionBulkModificationResponse} + * @return The same instance of this {@link AiExecutionBulkModificationResponse} class + */ @Nonnull public AiExecutionBulkModificationResponse executions(@Nonnull final List executions) { this.executions = executions; return this; } /** - * Add one executions instance to this {@link AiExecutionBulkModificationResponse}. - * @param executionsItem The executions that should be added - * @return The same instance of type {@link AiExecutionBulkModificationResponse} - */ - @Nonnull public AiExecutionBulkModificationResponse addexecutionsItem( @Nonnull final AiExecutionModificationResponseListInner executionsItem) { + * Add one executions instance to this {@link AiExecutionBulkModificationResponse}. + * @param executionsItem The executions that should be added + * @return The same instance of type {@link AiExecutionBulkModificationResponse} + */ + @Nonnull public AiExecutionBulkModificationResponse addExecutionsItem( @Nonnull final AiExecutionModificationResponseListInner executionsItem) { if (this.executions == null) { this.executions = new ArrayList<>(); } @@ -78,18 +77,18 @@ public class AiExecutionBulkModificationResponse } /** - * Get executions - * @return executions The executions of this {@link AiExecutionBulkModificationResponse} instance. - **/ + * Get executions + * @return executions The executions of this {@link AiExecutionBulkModificationResponse} instance. + */ @Nonnull public List getExecutions() { return executions; } /** - * Set the executions of this {@link AiExecutionBulkModificationResponse} instance. - * - * @param executions The executions of this {@link AiExecutionBulkModificationResponse} - */ + * Set the executions of this {@link AiExecutionBulkModificationResponse} instance. + * + * @param executions The executions of this {@link AiExecutionBulkModificationResponse} + */ public void setExecutions( @Nonnull final List executions) { this.executions = executions; } @@ -170,5 +169,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/AiExecutionCreationResponse.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/AiExecutionCreationResponse.java index 8f64d313e..62720d9c8 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/AiExecutionCreationResponse.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/AiExecutionCreationResponse.java @@ -39,7 +39,6 @@ /** * AiExecutionCreationResponse */ - // CHECKSTYLE:OFF public class AiExecutionCreationResponse // CHECKSTYLE:ON @@ -58,85 +57,85 @@ public class AiExecutionCreationResponse private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the id of this {@link AiExecutionCreationResponse} instance and return the same instance. - * - * @param id Generic ID - * @return The same instance of this {@link AiExecutionCreationResponse} class - */ + * Set the id of this {@link AiExecutionCreationResponse} instance and return the same instance. + * + * @param id Generic ID + * @return The same instance of this {@link AiExecutionCreationResponse} class + */ @Nonnull public AiExecutionCreationResponse id(@Nonnull final String id) { this.id = id; return this; } /** - * Generic ID - * @return id The id of this {@link AiExecutionCreationResponse} instance. - **/ + * Generic ID + * @return id The id of this {@link AiExecutionCreationResponse} instance. + */ @Nonnull public String getId() { return id; } /** - * Set the id of this {@link AiExecutionCreationResponse} instance. - * - * @param id Generic ID - */ + * Set the id of this {@link AiExecutionCreationResponse} instance. + * + * @param id Generic ID + */ public void setId( @Nonnull final String id) { this.id = id; } /** - * Set the message of this {@link AiExecutionCreationResponse} instance and return the same instance. - * - * @param message Message - * @return The same instance of this {@link AiExecutionCreationResponse} class - */ + * Set the message of this {@link AiExecutionCreationResponse} instance and return the same instance. + * + * @param message Message + * @return The same instance of this {@link AiExecutionCreationResponse} class + */ @Nonnull public AiExecutionCreationResponse message(@Nonnull final String message) { this.message = message; return this; } /** - * Message - * @return message The message of this {@link AiExecutionCreationResponse} instance. - **/ + * Message + * @return message The message of this {@link AiExecutionCreationResponse} instance. + */ @Nonnull public String getMessage() { return message; } /** - * Set the message of this {@link AiExecutionCreationResponse} instance. - * - * @param message Message - */ + * Set the message of this {@link AiExecutionCreationResponse} instance. + * + * @param message Message + */ public void setMessage( @Nonnull final String message) { this.message = message; } /** - * Set the status of this {@link AiExecutionCreationResponse} instance and return the same instance. - * - * @param status The status of this {@link AiExecutionCreationResponse} - * @return The same instance of this {@link AiExecutionCreationResponse} class - */ + * Set the status of this {@link AiExecutionCreationResponse} instance and return the same instance. + * + * @param status The status of this {@link AiExecutionCreationResponse} + * @return The same instance of this {@link AiExecutionCreationResponse} class + */ @Nonnull public AiExecutionCreationResponse status(@Nonnull final AiExecutionStatus status) { this.status = status; return this; } /** - * Get status - * @return status The status of this {@link AiExecutionCreationResponse} instance. - **/ + * Get status + * @return status The status of this {@link AiExecutionCreationResponse} instance. + */ @Nonnull public AiExecutionStatus getStatus() { return status; } /** - * Set the status of this {@link AiExecutionCreationResponse} instance. - * - * @param status The status of this {@link AiExecutionCreationResponse} - */ + * Set the status of this {@link AiExecutionCreationResponse} instance. + * + * @param status The status of this {@link AiExecutionCreationResponse} + */ public void setStatus( @Nonnull final AiExecutionStatus status) { this.status = status; } @@ -221,5 +220,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/AiExecutionDeletionResponse.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/AiExecutionDeletionResponse.java index f7130d80a..203c963ca 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/AiExecutionDeletionResponse.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/AiExecutionDeletionResponse.java @@ -38,7 +38,6 @@ /** * AiExecutionDeletionResponse */ - // CHECKSTYLE:OFF public class AiExecutionDeletionResponse // CHECKSTYLE:ON @@ -54,57 +53,57 @@ public class AiExecutionDeletionResponse private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the id of this {@link AiExecutionDeletionResponse} instance and return the same instance. - * - * @param id Generic ID - * @return The same instance of this {@link AiExecutionDeletionResponse} class - */ + * Set the id of this {@link AiExecutionDeletionResponse} instance and return the same instance. + * + * @param id Generic ID + * @return The same instance of this {@link AiExecutionDeletionResponse} class + */ @Nonnull public AiExecutionDeletionResponse id(@Nonnull final String id) { this.id = id; return this; } /** - * Generic ID - * @return id The id of this {@link AiExecutionDeletionResponse} instance. - **/ + * Generic ID + * @return id The id of this {@link AiExecutionDeletionResponse} instance. + */ @Nonnull public String getId() { return id; } /** - * Set the id of this {@link AiExecutionDeletionResponse} instance. - * - * @param id Generic ID - */ + * Set the id of this {@link AiExecutionDeletionResponse} instance. + * + * @param id Generic ID + */ public void setId( @Nonnull final String id) { this.id = id; } /** - * Set the message of this {@link AiExecutionDeletionResponse} instance and return the same instance. - * - * @param message Message - * @return The same instance of this {@link AiExecutionDeletionResponse} class - */ + * Set the message of this {@link AiExecutionDeletionResponse} instance and return the same instance. + * + * @param message Message + * @return The same instance of this {@link AiExecutionDeletionResponse} class + */ @Nonnull public AiExecutionDeletionResponse message(@Nonnull final String message) { this.message = message; return this; } /** - * Message - * @return message The message of this {@link AiExecutionDeletionResponse} instance. - **/ + * Message + * @return message The message of this {@link AiExecutionDeletionResponse} instance. + */ @Nonnull public String getMessage() { return message; } /** - * Set the message of this {@link AiExecutionDeletionResponse} instance. - * - * @param message Message - */ + * Set the message of this {@link AiExecutionDeletionResponse} instance. + * + * @param message Message + */ public void setMessage( @Nonnull final String message) { this.message = message; } @@ -187,5 +186,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/AiExecutionList.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/AiExecutionList.java index eb2189492..f95a460bc 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/AiExecutionList.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/AiExecutionList.java @@ -42,7 +42,6 @@ /** * AiExecutionList */ - // CHECKSTYLE:OFF public class AiExecutionList // CHECKSTYLE:ON @@ -58,49 +57,49 @@ public class AiExecutionList private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the count of this {@link AiExecutionList} instance and return the same instance. - * - * @param count Number of the resource instances in the list - * @return The same instance of this {@link AiExecutionList} class - */ + * Set the count of this {@link AiExecutionList} instance and return the same instance. + * + * @param count Number of the resource instances in the list + * @return The same instance of this {@link AiExecutionList} class + */ @Nonnull public AiExecutionList count(@Nonnull final Integer count) { this.count = count; return this; } /** - * Number of the resource instances in the list - * @return count The count of this {@link AiExecutionList} instance. - **/ + * Number of the resource instances in the list + * @return count The count of this {@link AiExecutionList} instance. + */ @Nonnull public Integer getCount() { return count; } /** - * Set the count of this {@link AiExecutionList} instance. - * - * @param count Number of the resource instances in the list - */ + * Set the count of this {@link AiExecutionList} instance. + * + * @param count Number of the resource instances in the list + */ public void setCount( @Nonnull final Integer count) { this.count = count; } /** - * Set the resources of this {@link AiExecutionList} instance and return the same instance. - * - * @param resources The resources of this {@link AiExecutionList} - * @return The same instance of this {@link AiExecutionList} class - */ + * Set the resources of this {@link AiExecutionList} instance and return the same instance. + * + * @param resources The resources of this {@link AiExecutionList} + * @return The same instance of this {@link AiExecutionList} class + */ @Nonnull public AiExecutionList resources(@Nonnull final List resources) { this.resources = resources; return this; } /** - * Add one resources instance to this {@link AiExecutionList}. - * @param resourcesItem The resources that should be added - * @return The same instance of type {@link AiExecutionList} - */ - @Nonnull public AiExecutionList addresourcesItem( @Nonnull final AiExecution resourcesItem) { + * Add one resources instance to this {@link AiExecutionList}. + * @param resourcesItem The resources that should be added + * @return The same instance of type {@link AiExecutionList} + */ + @Nonnull public AiExecutionList addResourcesItem( @Nonnull final AiExecution resourcesItem) { if (this.resources == null) { this.resources = new ArrayList<>(); } @@ -109,18 +108,18 @@ public void setCount( @Nonnull final Integer count) { } /** - * Get resources - * @return resources The resources of this {@link AiExecutionList} instance. - **/ + * Get resources + * @return resources The resources of this {@link AiExecutionList} instance. + */ @Nonnull public List getResources() { return resources; } /** - * Set the resources of this {@link AiExecutionList} instance. - * - * @param resources The resources of this {@link AiExecutionList} - */ + * Set the resources of this {@link AiExecutionList} instance. + * + * @param resources The resources of this {@link AiExecutionList} + */ public void setResources( @Nonnull final List resources) { this.resources = resources; } @@ -203,5 +202,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/AiExecutionModificationRequest.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/AiExecutionModificationRequest.java index 7b2c5984c..930eea1e6 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/AiExecutionModificationRequest.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/AiExecutionModificationRequest.java @@ -38,7 +38,6 @@ /** * Request object for changing the target status of an execution (currently only STOPPED is supported) */ - // CHECKSTYLE:OFF public class AiExecutionModificationRequest // CHECKSTYLE:ON @@ -100,29 +99,29 @@ public enum TargetStatusEnum { private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the targetStatus of this {@link AiExecutionModificationRequest} instance and return the same instance. - * - * @param targetStatus Desired target status of the execution (currently only STOPPED is supported) - * @return The same instance of this {@link AiExecutionModificationRequest} class - */ + * Set the targetStatus of this {@link AiExecutionModificationRequest} instance and return the same instance. + * + * @param targetStatus Desired target status of the execution (currently only STOPPED is supported) + * @return The same instance of this {@link AiExecutionModificationRequest} class + */ @Nonnull public AiExecutionModificationRequest targetStatus(@Nonnull final TargetStatusEnum targetStatus) { this.targetStatus = targetStatus; return this; } /** - * Desired target status of the execution (currently only STOPPED is supported) - * @return targetStatus The targetStatus of this {@link AiExecutionModificationRequest} instance. - **/ + * Desired target status of the execution (currently only STOPPED is supported) + * @return targetStatus The targetStatus of this {@link AiExecutionModificationRequest} instance. + */ @Nonnull public TargetStatusEnum getTargetStatus() { return targetStatus; } /** - * Set the targetStatus of this {@link AiExecutionModificationRequest} instance. - * - * @param targetStatus Desired target status of the execution (currently only STOPPED is supported) - */ + * Set the targetStatus of this {@link AiExecutionModificationRequest} instance. + * + * @param targetStatus Desired target status of the execution (currently only STOPPED is supported) + */ public void setTargetStatus( @Nonnull final TargetStatusEnum targetStatus) { this.targetStatus = targetStatus; } @@ -203,5 +202,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/AiExecutionModificationRequestWithIdentifier.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/AiExecutionModificationRequestWithIdentifier.java index b54679add..1d4245508 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/AiExecutionModificationRequestWithIdentifier.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/AiExecutionModificationRequestWithIdentifier.java @@ -38,7 +38,6 @@ /** * Request object for changing the target status of an execution (currently STOPPED and DELETED are supported) */ - // CHECKSTYLE:OFF public class AiExecutionModificationRequestWithIdentifier // CHECKSTYLE:ON @@ -108,57 +107,57 @@ public enum TargetStatusEnum { private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the id of this {@link AiExecutionModificationRequestWithIdentifier} instance and return the same instance. - * - * @param id ID of the execution - * @return The same instance of this {@link AiExecutionModificationRequestWithIdentifier} class - */ + * Set the id of this {@link AiExecutionModificationRequestWithIdentifier} instance and return the same instance. + * + * @param id ID of the execution + * @return The same instance of this {@link AiExecutionModificationRequestWithIdentifier} class + */ @Nonnull public AiExecutionModificationRequestWithIdentifier id(@Nonnull final String id) { this.id = id; return this; } /** - * ID of the execution - * @return id The id of this {@link AiExecutionModificationRequestWithIdentifier} instance. - **/ + * ID of the execution + * @return id The id of this {@link AiExecutionModificationRequestWithIdentifier} instance. + */ @Nonnull public String getId() { return id; } /** - * Set the id of this {@link AiExecutionModificationRequestWithIdentifier} instance. - * - * @param id ID of the execution - */ + * Set the id of this {@link AiExecutionModificationRequestWithIdentifier} instance. + * + * @param id ID of the execution + */ public void setId( @Nonnull final String id) { this.id = id; } /** - * Set the targetStatus of this {@link AiExecutionModificationRequestWithIdentifier} instance and return the same instance. - * - * @param targetStatus Desired target status of the execution (currently STOPPED and DELETED are supported) - * @return The same instance of this {@link AiExecutionModificationRequestWithIdentifier} class - */ + * Set the targetStatus of this {@link AiExecutionModificationRequestWithIdentifier} instance and return the same instance. + * + * @param targetStatus Desired target status of the execution (currently STOPPED and DELETED are supported) + * @return The same instance of this {@link AiExecutionModificationRequestWithIdentifier} class + */ @Nonnull public AiExecutionModificationRequestWithIdentifier targetStatus(@Nonnull final TargetStatusEnum targetStatus) { this.targetStatus = targetStatus; return this; } /** - * Desired target status of the execution (currently STOPPED and DELETED are supported) - * @return targetStatus The targetStatus of this {@link AiExecutionModificationRequestWithIdentifier} instance. - **/ + * Desired target status of the execution (currently STOPPED and DELETED are supported) + * @return targetStatus The targetStatus of this {@link AiExecutionModificationRequestWithIdentifier} instance. + */ @Nonnull public TargetStatusEnum getTargetStatus() { return targetStatus; } /** - * Set the targetStatus of this {@link AiExecutionModificationRequestWithIdentifier} instance. - * - * @param targetStatus Desired target status of the execution (currently STOPPED and DELETED are supported) - */ + * Set the targetStatus of this {@link AiExecutionModificationRequestWithIdentifier} instance. + * + * @param targetStatus Desired target status of the execution (currently STOPPED and DELETED are supported) + */ public void setTargetStatus( @Nonnull final TargetStatusEnum targetStatus) { this.targetStatus = targetStatus; } @@ -241,5 +240,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/AiExecutionModificationResponse.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/AiExecutionModificationResponse.java index 02d2af905..8c38a6ad6 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/AiExecutionModificationResponse.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/AiExecutionModificationResponse.java @@ -38,7 +38,6 @@ /** * AiExecutionModificationResponse */ - // CHECKSTYLE:OFF public class AiExecutionModificationResponse // CHECKSTYLE:ON @@ -54,57 +53,57 @@ public class AiExecutionModificationResponse private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the id of this {@link AiExecutionModificationResponse} instance and return the same instance. - * - * @param id Generic ID - * @return The same instance of this {@link AiExecutionModificationResponse} class - */ + * Set the id of this {@link AiExecutionModificationResponse} instance and return the same instance. + * + * @param id Generic ID + * @return The same instance of this {@link AiExecutionModificationResponse} class + */ @Nonnull public AiExecutionModificationResponse id(@Nonnull final String id) { this.id = id; return this; } /** - * Generic ID - * @return id The id of this {@link AiExecutionModificationResponse} instance. - **/ + * Generic ID + * @return id The id of this {@link AiExecutionModificationResponse} instance. + */ @Nonnull public String getId() { return id; } /** - * Set the id of this {@link AiExecutionModificationResponse} instance. - * - * @param id Generic ID - */ + * Set the id of this {@link AiExecutionModificationResponse} instance. + * + * @param id Generic ID + */ public void setId( @Nonnull final String id) { this.id = id; } /** - * Set the message of this {@link AiExecutionModificationResponse} instance and return the same instance. - * - * @param message Message - * @return The same instance of this {@link AiExecutionModificationResponse} class - */ + * Set the message of this {@link AiExecutionModificationResponse} instance and return the same instance. + * + * @param message Message + * @return The same instance of this {@link AiExecutionModificationResponse} class + */ @Nonnull public AiExecutionModificationResponse message(@Nonnull final String message) { this.message = message; return this; } /** - * Message - * @return message The message of this {@link AiExecutionModificationResponse} instance. - **/ + * Message + * @return message The message of this {@link AiExecutionModificationResponse} instance. + */ @Nonnull public String getMessage() { return message; } /** - * Set the message of this {@link AiExecutionModificationResponse} instance. - * - * @param message Message - */ + * Set the message of this {@link AiExecutionModificationResponse} instance. + * + * @param message Message + */ public void setMessage( @Nonnull final String message) { this.message = message; } @@ -187,5 +186,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/AiExecutionModificationResponseListInner.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/AiExecutionModificationResponseListInner.java index 46f5f702f..4a502bbc6 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/AiExecutionModificationResponseListInner.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/AiExecutionModificationResponseListInner.java @@ -41,7 +41,6 @@ /** * AiExecutionModificationResponseListInner */ - // CHECKSTYLE:OFF public class AiExecutionModificationResponseListInner // CHECKSTYLE:ON @@ -60,85 +59,85 @@ public class AiExecutionModificationResponseListInner private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the id of this {@link AiExecutionModificationResponseListInner} instance and return the same instance. - * - * @param id Generic ID - * @return The same instance of this {@link AiExecutionModificationResponseListInner} class - */ + * Set the id of this {@link AiExecutionModificationResponseListInner} instance and return the same instance. + * + * @param id Generic ID + * @return The same instance of this {@link AiExecutionModificationResponseListInner} class + */ @Nonnull public AiExecutionModificationResponseListInner id(@Nonnull final String id) { this.id = id; return this; } /** - * Generic ID - * @return id The id of this {@link AiExecutionModificationResponseListInner} instance. - **/ + * Generic ID + * @return id The id of this {@link AiExecutionModificationResponseListInner} instance. + */ @Nonnull public String getId() { return id; } /** - * Set the id of this {@link AiExecutionModificationResponseListInner} instance. - * - * @param id Generic ID - */ + * Set the id of this {@link AiExecutionModificationResponseListInner} instance. + * + * @param id Generic ID + */ public void setId( @Nonnull final String id) { this.id = id; } /** - * Set the message of this {@link AiExecutionModificationResponseListInner} instance and return the same instance. - * - * @param message Message - * @return The same instance of this {@link AiExecutionModificationResponseListInner} class - */ + * Set the message of this {@link AiExecutionModificationResponseListInner} instance and return the same instance. + * + * @param message Message + * @return The same instance of this {@link AiExecutionModificationResponseListInner} class + */ @Nonnull public AiExecutionModificationResponseListInner message(@Nonnull final String message) { this.message = message; return this; } /** - * Message - * @return message The message of this {@link AiExecutionModificationResponseListInner} instance. - **/ + * Message + * @return message The message of this {@link AiExecutionModificationResponseListInner} instance. + */ @Nonnull public String getMessage() { return message; } /** - * Set the message of this {@link AiExecutionModificationResponseListInner} instance. - * - * @param message Message - */ + * Set the message of this {@link AiExecutionModificationResponseListInner} instance. + * + * @param message Message + */ public void setMessage( @Nonnull final String message) { this.message = message; } /** - * Set the error of this {@link AiExecutionModificationResponseListInner} instance and return the same instance. - * - * @param error The error of this {@link AiExecutionModificationResponseListInner} - * @return The same instance of this {@link AiExecutionModificationResponseListInner} class - */ + * Set the error of this {@link AiExecutionModificationResponseListInner} instance and return the same instance. + * + * @param error The error of this {@link AiExecutionModificationResponseListInner} + * @return The same instance of this {@link AiExecutionModificationResponseListInner} class + */ @Nonnull public AiExecutionModificationResponseListInner error(@Nonnull final AiApiError error) { this.error = error; return this; } /** - * Get error - * @return error The error of this {@link AiExecutionModificationResponseListInner} instance. - **/ + * Get error + * @return error The error of this {@link AiExecutionModificationResponseListInner} instance. + */ @Nonnull public AiApiError getError() { return error; } /** - * Set the error of this {@link AiExecutionModificationResponseListInner} instance. - * - * @param error The error of this {@link AiExecutionModificationResponseListInner} - */ + * Set the error of this {@link AiExecutionModificationResponseListInner} instance. + * + * @param error The error of this {@link AiExecutionModificationResponseListInner} + */ public void setError( @Nonnull final AiApiError error) { this.error = error; } @@ -223,5 +222,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/AiExecutionResponseWithDetails.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/AiExecutionResponseWithDetails.java index b3ee37692..592aa4675 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/AiExecutionResponseWithDetails.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/AiExecutionResponseWithDetails.java @@ -44,7 +44,6 @@ /** * Execution that may generate artifacts */ - // CHECKSTYLE:OFF public class AiExecutionResponseWithDetails // CHECKSTYLE:ON @@ -163,217 +162,217 @@ public enum TargetStatusEnum { private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the id of this {@link AiExecutionResponseWithDetails} instance and return the same instance. - * - * @param id ID of the execution - * @return The same instance of this {@link AiExecutionResponseWithDetails} class - */ + * Set the id of this {@link AiExecutionResponseWithDetails} instance and return the same instance. + * + * @param id ID of the execution + * @return The same instance of this {@link AiExecutionResponseWithDetails} class + */ @Nonnull public AiExecutionResponseWithDetails id(@Nonnull final String id) { this.id = id; return this; } /** - * ID of the execution - * @return id The id of this {@link AiExecutionResponseWithDetails} instance. - **/ + * ID of the execution + * @return id The id of this {@link AiExecutionResponseWithDetails} instance. + */ @Nonnull public String getId() { return id; } /** - * Set the id of this {@link AiExecutionResponseWithDetails} instance. - * - * @param id ID of the execution - */ + * Set the id of this {@link AiExecutionResponseWithDetails} instance. + * + * @param id ID of the execution + */ public void setId( @Nonnull final String id) { this.id = id; } /** - * Set the configurationId of this {@link AiExecutionResponseWithDetails} instance and return the same instance. - * - * @param configurationId ID of the configuration - * @return The same instance of this {@link AiExecutionResponseWithDetails} class - */ + * Set the configurationId of this {@link AiExecutionResponseWithDetails} instance and return the same instance. + * + * @param configurationId ID of the configuration + * @return The same instance of this {@link AiExecutionResponseWithDetails} class + */ @Nonnull public AiExecutionResponseWithDetails configurationId(@Nonnull final String configurationId) { this.configurationId = configurationId; return this; } /** - * ID of the configuration - * @return configurationId The configurationId of this {@link AiExecutionResponseWithDetails} instance. - **/ + * ID of the configuration + * @return configurationId The configurationId of this {@link AiExecutionResponseWithDetails} instance. + */ @Nonnull public String getConfigurationId() { return configurationId; } /** - * Set the configurationId of this {@link AiExecutionResponseWithDetails} instance. - * - * @param configurationId ID of the configuration - */ + * Set the configurationId of this {@link AiExecutionResponseWithDetails} instance. + * + * @param configurationId ID of the configuration + */ public void setConfigurationId( @Nonnull final String configurationId) { this.configurationId = configurationId; } /** - * Set the configurationName of this {@link AiExecutionResponseWithDetails} instance and return the same instance. - * - * @param configurationName Name of the configuration - * @return The same instance of this {@link AiExecutionResponseWithDetails} class - */ + * Set the configurationName of this {@link AiExecutionResponseWithDetails} instance and return the same instance. + * + * @param configurationName Name of the configuration + * @return The same instance of this {@link AiExecutionResponseWithDetails} class + */ @Nonnull public AiExecutionResponseWithDetails configurationName(@Nonnull final String configurationName) { this.configurationName = configurationName; return this; } /** - * Name of the configuration - * @return configurationName The configurationName of this {@link AiExecutionResponseWithDetails} instance. - **/ + * Name of the configuration + * @return configurationName The configurationName of this {@link AiExecutionResponseWithDetails} instance. + */ @Nonnull public String getConfigurationName() { return configurationName; } /** - * Set the configurationName of this {@link AiExecutionResponseWithDetails} instance. - * - * @param configurationName Name of the configuration - */ + * Set the configurationName of this {@link AiExecutionResponseWithDetails} instance. + * + * @param configurationName Name of the configuration + */ public void setConfigurationName( @Nonnull final String configurationName) { this.configurationName = configurationName; } /** - * Set the scenarioId of this {@link AiExecutionResponseWithDetails} instance and return the same instance. - * - * @param scenarioId ID of the scenario - * @return The same instance of this {@link AiExecutionResponseWithDetails} class - */ + * Set the scenarioId of this {@link AiExecutionResponseWithDetails} instance and return the same instance. + * + * @param scenarioId ID of the scenario + * @return The same instance of this {@link AiExecutionResponseWithDetails} class + */ @Nonnull public AiExecutionResponseWithDetails scenarioId(@Nonnull final String scenarioId) { this.scenarioId = scenarioId; return this; } /** - * ID of the scenario - * @return scenarioId The scenarioId of this {@link AiExecutionResponseWithDetails} instance. - **/ + * ID of the scenario + * @return scenarioId The scenarioId of this {@link AiExecutionResponseWithDetails} instance. + */ @Nonnull public String getScenarioId() { return scenarioId; } /** - * Set the scenarioId of this {@link AiExecutionResponseWithDetails} instance. - * - * @param scenarioId ID of the scenario - */ + * Set the scenarioId of this {@link AiExecutionResponseWithDetails} instance. + * + * @param scenarioId ID of the scenario + */ public void setScenarioId( @Nonnull final String scenarioId) { this.scenarioId = scenarioId; } /** - * Set the targetStatus of this {@link AiExecutionResponseWithDetails} instance and return the same instance. - * - * @param targetStatus Target status of the execution - * @return The same instance of this {@link AiExecutionResponseWithDetails} class - */ + * Set the targetStatus of this {@link AiExecutionResponseWithDetails} instance and return the same instance. + * + * @param targetStatus Target status of the execution + * @return The same instance of this {@link AiExecutionResponseWithDetails} class + */ @Nonnull public AiExecutionResponseWithDetails targetStatus(@Nonnull final TargetStatusEnum targetStatus) { this.targetStatus = targetStatus; return this; } /** - * Target status of the execution - * @return targetStatus The targetStatus of this {@link AiExecutionResponseWithDetails} instance. - **/ + * Target status of the execution + * @return targetStatus The targetStatus of this {@link AiExecutionResponseWithDetails} instance. + */ @Nonnull public TargetStatusEnum getTargetStatus() { return targetStatus; } /** - * Set the targetStatus of this {@link AiExecutionResponseWithDetails} instance. - * - * @param targetStatus Target status of the execution - */ + * Set the targetStatus of this {@link AiExecutionResponseWithDetails} instance. + * + * @param targetStatus Target status of the execution + */ public void setTargetStatus( @Nonnull final TargetStatusEnum targetStatus) { this.targetStatus = targetStatus; } /** - * Set the status of this {@link AiExecutionResponseWithDetails} instance and return the same instance. - * - * @param status The status of this {@link AiExecutionResponseWithDetails} - * @return The same instance of this {@link AiExecutionResponseWithDetails} class - */ + * Set the status of this {@link AiExecutionResponseWithDetails} instance and return the same instance. + * + * @param status The status of this {@link AiExecutionResponseWithDetails} + * @return The same instance of this {@link AiExecutionResponseWithDetails} class + */ @Nonnull public AiExecutionResponseWithDetails status(@Nonnull final AiExecutionStatus status) { this.status = status; return this; } /** - * Get status - * @return status The status of this {@link AiExecutionResponseWithDetails} instance. - **/ + * Get status + * @return status The status of this {@link AiExecutionResponseWithDetails} instance. + */ @Nonnull public AiExecutionStatus getStatus() { return status; } /** - * Set the status of this {@link AiExecutionResponseWithDetails} instance. - * - * @param status The status of this {@link AiExecutionResponseWithDetails} - */ + * Set the status of this {@link AiExecutionResponseWithDetails} instance. + * + * @param status The status of this {@link AiExecutionResponseWithDetails} + */ public void setStatus( @Nonnull final AiExecutionStatus status) { this.status = status; } /** - * Set the statusMessage of this {@link AiExecutionResponseWithDetails} instance and return the same instance. - * - * @param statusMessage Execution status message - * @return The same instance of this {@link AiExecutionResponseWithDetails} class - */ + * Set the statusMessage of this {@link AiExecutionResponseWithDetails} instance and return the same instance. + * + * @param statusMessage Execution status message + * @return The same instance of this {@link AiExecutionResponseWithDetails} class + */ @Nonnull public AiExecutionResponseWithDetails statusMessage(@Nonnull final String statusMessage) { this.statusMessage = statusMessage; return this; } /** - * Execution status message - * @return statusMessage The statusMessage of this {@link AiExecutionResponseWithDetails} instance. - **/ + * Execution status message + * @return statusMessage The statusMessage of this {@link AiExecutionResponseWithDetails} instance. + */ @Nonnull public String getStatusMessage() { return statusMessage; } /** - * Set the statusMessage of this {@link AiExecutionResponseWithDetails} instance. - * - * @param statusMessage Execution status message - */ + * Set the statusMessage of this {@link AiExecutionResponseWithDetails} instance. + * + * @param statusMessage Execution status message + */ public void setStatusMessage( @Nonnull final String statusMessage) { this.statusMessage = statusMessage; } /** - * Set the outputArtifacts of this {@link AiExecutionResponseWithDetails} instance and return the same instance. - * - * @param outputArtifacts The outputArtifacts of this {@link AiExecutionResponseWithDetails} - * @return The same instance of this {@link AiExecutionResponseWithDetails} class - */ + * Set the outputArtifacts of this {@link AiExecutionResponseWithDetails} instance and return the same instance. + * + * @param outputArtifacts The outputArtifacts of this {@link AiExecutionResponseWithDetails} + * @return The same instance of this {@link AiExecutionResponseWithDetails} class + */ @Nonnull public AiExecutionResponseWithDetails outputArtifacts(@Nonnull final List outputArtifacts) { this.outputArtifacts = outputArtifacts; return this; } /** - * Add one outputArtifacts instance to this {@link AiExecutionResponseWithDetails}. - * @param outputArtifactsItem The outputArtifacts that should be added - * @return The same instance of type {@link AiExecutionResponseWithDetails} - */ - @Nonnull public AiExecutionResponseWithDetails addoutputArtifactsItem( @Nonnull final AiArtifact outputArtifactsItem) { + * Add one outputArtifacts instance to this {@link AiExecutionResponseWithDetails}. + * @param outputArtifactsItem The outputArtifacts that should be added + * @return The same instance of type {@link AiExecutionResponseWithDetails} + */ + @Nonnull public AiExecutionResponseWithDetails addOutputArtifactsItem( @Nonnull final AiArtifact outputArtifactsItem) { if (this.outputArtifacts == null) { this.outputArtifacts = new ArrayList<>(); } @@ -382,214 +381,214 @@ public void setStatusMessage( @Nonnull final String statusMessage) { } /** - * Get outputArtifacts - * @return outputArtifacts The outputArtifacts of this {@link AiExecutionResponseWithDetails} instance. - **/ + * Get outputArtifacts + * @return outputArtifacts The outputArtifacts of this {@link AiExecutionResponseWithDetails} instance. + */ @Nonnull public List getOutputArtifacts() { return outputArtifacts; } /** - * Set the outputArtifacts of this {@link AiExecutionResponseWithDetails} instance. - * - * @param outputArtifacts The outputArtifacts of this {@link AiExecutionResponseWithDetails} - */ + * Set the outputArtifacts of this {@link AiExecutionResponseWithDetails} instance. + * + * @param outputArtifacts The outputArtifacts of this {@link AiExecutionResponseWithDetails} + */ public void setOutputArtifacts( @Nonnull final List outputArtifacts) { this.outputArtifacts = outputArtifacts; } /** - * Set the executionScheduleId of this {@link AiExecutionResponseWithDetails} instance and return the same instance. - * - * @param executionScheduleId ID of the execution schedule - * @return The same instance of this {@link AiExecutionResponseWithDetails} class - */ + * Set the executionScheduleId of this {@link AiExecutionResponseWithDetails} instance and return the same instance. + * + * @param executionScheduleId ID of the execution schedule + * @return The same instance of this {@link AiExecutionResponseWithDetails} class + */ @Nonnull public AiExecutionResponseWithDetails executionScheduleId(@Nonnull final String executionScheduleId) { this.executionScheduleId = executionScheduleId; return this; } /** - * ID of the execution schedule - * @return executionScheduleId The executionScheduleId of this {@link AiExecutionResponseWithDetails} instance. - **/ + * ID of the execution schedule + * @return executionScheduleId The executionScheduleId of this {@link AiExecutionResponseWithDetails} instance. + */ @Nonnull public String getExecutionScheduleId() { return executionScheduleId; } /** - * Set the executionScheduleId of this {@link AiExecutionResponseWithDetails} instance. - * - * @param executionScheduleId ID of the execution schedule - */ + * Set the executionScheduleId of this {@link AiExecutionResponseWithDetails} instance. + * + * @param executionScheduleId ID of the execution schedule + */ public void setExecutionScheduleId( @Nonnull final String executionScheduleId) { this.executionScheduleId = executionScheduleId; } /** - * Set the createdAt of this {@link AiExecutionResponseWithDetails} instance and return the same instance. - * - * @param createdAt Timestamp of resource creation - * @return The same instance of this {@link AiExecutionResponseWithDetails} class - */ + * Set the createdAt of this {@link AiExecutionResponseWithDetails} instance and return the same instance. + * + * @param createdAt Timestamp of resource creation + * @return The same instance of this {@link AiExecutionResponseWithDetails} class + */ @Nonnull public AiExecutionResponseWithDetails createdAt(@Nonnull final OffsetDateTime createdAt) { this.createdAt = createdAt; return this; } /** - * Timestamp of resource creation - * @return createdAt The createdAt of this {@link AiExecutionResponseWithDetails} instance. - **/ + * Timestamp of resource creation + * @return createdAt The createdAt of this {@link AiExecutionResponseWithDetails} instance. + */ @Nonnull public OffsetDateTime getCreatedAt() { return createdAt; } /** - * Set the createdAt of this {@link AiExecutionResponseWithDetails} instance. - * - * @param createdAt Timestamp of resource creation - */ + * Set the createdAt of this {@link AiExecutionResponseWithDetails} instance. + * + * @param createdAt Timestamp of resource creation + */ public void setCreatedAt( @Nonnull final OffsetDateTime createdAt) { this.createdAt = createdAt; } /** - * Set the modifiedAt of this {@link AiExecutionResponseWithDetails} instance and return the same instance. - * - * @param modifiedAt Timestamp of latest resource modification - * @return The same instance of this {@link AiExecutionResponseWithDetails} class - */ + * Set the modifiedAt of this {@link AiExecutionResponseWithDetails} instance and return the same instance. + * + * @param modifiedAt Timestamp of latest resource modification + * @return The same instance of this {@link AiExecutionResponseWithDetails} class + */ @Nonnull public AiExecutionResponseWithDetails modifiedAt(@Nonnull final OffsetDateTime modifiedAt) { this.modifiedAt = modifiedAt; return this; } /** - * Timestamp of latest resource modification - * @return modifiedAt The modifiedAt of this {@link AiExecutionResponseWithDetails} instance. - **/ + * Timestamp of latest resource modification + * @return modifiedAt The modifiedAt of this {@link AiExecutionResponseWithDetails} instance. + */ @Nonnull public OffsetDateTime getModifiedAt() { return modifiedAt; } /** - * Set the modifiedAt of this {@link AiExecutionResponseWithDetails} instance. - * - * @param modifiedAt Timestamp of latest resource modification - */ + * Set the modifiedAt of this {@link AiExecutionResponseWithDetails} instance. + * + * @param modifiedAt Timestamp of latest resource modification + */ public void setModifiedAt( @Nonnull final OffsetDateTime modifiedAt) { this.modifiedAt = modifiedAt; } /** - * Set the submissionTime of this {@link AiExecutionResponseWithDetails} instance and return the same instance. - * - * @param submissionTime Timestamp of job submitted - * @return The same instance of this {@link AiExecutionResponseWithDetails} class - */ + * Set the submissionTime of this {@link AiExecutionResponseWithDetails} instance and return the same instance. + * + * @param submissionTime Timestamp of job submitted + * @return The same instance of this {@link AiExecutionResponseWithDetails} class + */ @Nonnull public AiExecutionResponseWithDetails submissionTime(@Nonnull final OffsetDateTime submissionTime) { this.submissionTime = submissionTime; return this; } /** - * Timestamp of job submitted - * @return submissionTime The submissionTime of this {@link AiExecutionResponseWithDetails} instance. - **/ + * Timestamp of job submitted + * @return submissionTime The submissionTime of this {@link AiExecutionResponseWithDetails} instance. + */ @Nonnull public OffsetDateTime getSubmissionTime() { return submissionTime; } /** - * Set the submissionTime of this {@link AiExecutionResponseWithDetails} instance. - * - * @param submissionTime Timestamp of job submitted - */ + * Set the submissionTime of this {@link AiExecutionResponseWithDetails} instance. + * + * @param submissionTime Timestamp of job submitted + */ public void setSubmissionTime( @Nonnull final OffsetDateTime submissionTime) { this.submissionTime = submissionTime; } /** - * Set the startTime of this {@link AiExecutionResponseWithDetails} instance and return the same instance. - * - * @param startTime Timestamp of job status changed to RUNNING - * @return The same instance of this {@link AiExecutionResponseWithDetails} class - */ + * Set the startTime of this {@link AiExecutionResponseWithDetails} instance and return the same instance. + * + * @param startTime Timestamp of job status changed to RUNNING + * @return The same instance of this {@link AiExecutionResponseWithDetails} class + */ @Nonnull public AiExecutionResponseWithDetails startTime(@Nonnull final OffsetDateTime startTime) { this.startTime = startTime; return this; } /** - * Timestamp of job status changed to RUNNING - * @return startTime The startTime of this {@link AiExecutionResponseWithDetails} instance. - **/ + * Timestamp of job status changed to RUNNING + * @return startTime The startTime of this {@link AiExecutionResponseWithDetails} instance. + */ @Nonnull public OffsetDateTime getStartTime() { return startTime; } /** - * Set the startTime of this {@link AiExecutionResponseWithDetails} instance. - * - * @param startTime Timestamp of job status changed to RUNNING - */ + * Set the startTime of this {@link AiExecutionResponseWithDetails} instance. + * + * @param startTime Timestamp of job status changed to RUNNING + */ public void setStartTime( @Nonnull final OffsetDateTime startTime) { this.startTime = startTime; } /** - * Set the completionTime of this {@link AiExecutionResponseWithDetails} instance and return the same instance. - * - * @param completionTime Timestamp of job status changed to COMPLETED/DEAD/STOPPED - * @return The same instance of this {@link AiExecutionResponseWithDetails} class - */ + * Set the completionTime of this {@link AiExecutionResponseWithDetails} instance and return the same instance. + * + * @param completionTime Timestamp of job status changed to COMPLETED/DEAD/STOPPED + * @return The same instance of this {@link AiExecutionResponseWithDetails} class + */ @Nonnull public AiExecutionResponseWithDetails completionTime(@Nonnull final OffsetDateTime completionTime) { this.completionTime = completionTime; return this; } /** - * Timestamp of job status changed to COMPLETED/DEAD/STOPPED - * @return completionTime The completionTime of this {@link AiExecutionResponseWithDetails} instance. - **/ + * Timestamp of job status changed to COMPLETED/DEAD/STOPPED + * @return completionTime The completionTime of this {@link AiExecutionResponseWithDetails} instance. + */ @Nonnull public OffsetDateTime getCompletionTime() { return completionTime; } /** - * Set the completionTime of this {@link AiExecutionResponseWithDetails} instance. - * - * @param completionTime Timestamp of job status changed to COMPLETED/DEAD/STOPPED - */ + * Set the completionTime of this {@link AiExecutionResponseWithDetails} instance. + * + * @param completionTime Timestamp of job status changed to COMPLETED/DEAD/STOPPED + */ public void setCompletionTime( @Nonnull final OffsetDateTime completionTime) { this.completionTime = completionTime; } /** - * Set the statusDetails of this {@link AiExecutionResponseWithDetails} instance and return the same instance. - * - * @param statusDetails Current status details of the execution - * @return The same instance of this {@link AiExecutionResponseWithDetails} class - */ + * Set the statusDetails of this {@link AiExecutionResponseWithDetails} instance and return the same instance. + * + * @param statusDetails Current status details of the execution + * @return The same instance of this {@link AiExecutionResponseWithDetails} class + */ @Nonnull public AiExecutionResponseWithDetails statusDetails(@Nonnull final Object statusDetails) { this.statusDetails = statusDetails; return this; } /** - * Current status details of the execution - * @return statusDetails The statusDetails of this {@link AiExecutionResponseWithDetails} instance. - **/ + * Current status details of the execution + * @return statusDetails The statusDetails of this {@link AiExecutionResponseWithDetails} instance. + */ @Nonnull public Object getStatusDetails() { return statusDetails; } /** - * Set the statusDetails of this {@link AiExecutionResponseWithDetails} instance. - * - * @param statusDetails Current status details of the execution - */ + * Set the statusDetails of this {@link AiExecutionResponseWithDetails} instance. + * + * @param statusDetails Current status details of the execution + */ public void setStatusDetails( @Nonnull final Object statusDetails) { this.statusDetails = statusDetails; } @@ -698,5 +697,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/AiExecutionSchedule.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/AiExecutionSchedule.java index 7d84e4390..141ff597b 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/AiExecutionSchedule.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/AiExecutionSchedule.java @@ -40,7 +40,6 @@ /** * Data about execution schedule */ - // CHECKSTYLE:OFF public class AiExecutionSchedule // CHECKSTYLE:ON @@ -77,253 +76,253 @@ public class AiExecutionSchedule private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the cron of this {@link AiExecutionSchedule} instance and return the same instance. - * - * @param cron Cron defining the schedule to run the executions. - * @return The same instance of this {@link AiExecutionSchedule} class - */ + * Set the cron of this {@link AiExecutionSchedule} instance and return the same instance. + * + * @param cron Cron defining the schedule to run the executions. + * @return The same instance of this {@link AiExecutionSchedule} class + */ @Nonnull public AiExecutionSchedule cron(@Nonnull final String cron) { this.cron = cron; return this; } /** - * Cron defining the schedule to run the executions. - * @return cron The cron of this {@link AiExecutionSchedule} instance. - **/ + * Cron defining the schedule to run the executions. + * @return cron The cron of this {@link AiExecutionSchedule} instance. + */ @Nonnull public String getCron() { return cron; } /** - * Set the cron of this {@link AiExecutionSchedule} instance. - * - * @param cron Cron defining the schedule to run the executions. - */ + * Set the cron of this {@link AiExecutionSchedule} instance. + * + * @param cron Cron defining the schedule to run the executions. + */ public void setCron( @Nonnull final String cron) { this.cron = cron; } /** - * Set the name of this {@link AiExecutionSchedule} instance and return the same instance. - * - * @param name Name of the execution schedule - * @return The same instance of this {@link AiExecutionSchedule} class - */ + * Set the name of this {@link AiExecutionSchedule} instance and return the same instance. + * + * @param name Name of the execution schedule + * @return The same instance of this {@link AiExecutionSchedule} class + */ @Nonnull public AiExecutionSchedule name(@Nonnull final String name) { this.name = name; return this; } /** - * Name of the execution schedule - * @return name The name of this {@link AiExecutionSchedule} instance. - **/ + * Name of the execution schedule + * @return name The name of this {@link AiExecutionSchedule} instance. + */ @Nonnull public String getName() { return name; } /** - * Set the name of this {@link AiExecutionSchedule} instance. - * - * @param name Name of the execution schedule - */ + * Set the name of this {@link AiExecutionSchedule} instance. + * + * @param name Name of the execution schedule + */ public void setName( @Nonnull final String name) { this.name = name; } /** - * Set the configurationId of this {@link AiExecutionSchedule} instance and return the same instance. - * - * @param configurationId ID of the configuration - * @return The same instance of this {@link AiExecutionSchedule} class - */ + * Set the configurationId of this {@link AiExecutionSchedule} instance and return the same instance. + * + * @param configurationId ID of the configuration + * @return The same instance of this {@link AiExecutionSchedule} class + */ @Nonnull public AiExecutionSchedule configurationId(@Nonnull final String configurationId) { this.configurationId = configurationId; return this; } /** - * ID of the configuration - * @return configurationId The configurationId of this {@link AiExecutionSchedule} instance. - **/ + * ID of the configuration + * @return configurationId The configurationId of this {@link AiExecutionSchedule} instance. + */ @Nonnull public String getConfigurationId() { return configurationId; } /** - * Set the configurationId of this {@link AiExecutionSchedule} instance. - * - * @param configurationId ID of the configuration - */ + * Set the configurationId of this {@link AiExecutionSchedule} instance. + * + * @param configurationId ID of the configuration + */ public void setConfigurationId( @Nonnull final String configurationId) { this.configurationId = configurationId; } /** - * Set the start of this {@link AiExecutionSchedule} instance and return the same instance. - * - * @param start Timestamp, defining when the executions should start running periodically, defaults to now - * @return The same instance of this {@link AiExecutionSchedule} class - */ + * Set the start of this {@link AiExecutionSchedule} instance and return the same instance. + * + * @param start Timestamp, defining when the executions should start running periodically, defaults to now + * @return The same instance of this {@link AiExecutionSchedule} class + */ @Nonnull public AiExecutionSchedule start(@Nonnull final OffsetDateTime start) { this.start = start; return this; } /** - * Timestamp, defining when the executions should start running periodically, defaults to now - * @return start The start of this {@link AiExecutionSchedule} instance. - **/ + * Timestamp, defining when the executions should start running periodically, defaults to now + * @return start The start of this {@link AiExecutionSchedule} instance. + */ @Nonnull public OffsetDateTime getStart() { return start; } /** - * Set the start of this {@link AiExecutionSchedule} instance. - * - * @param start Timestamp, defining when the executions should start running periodically, defaults to now - */ + * Set the start of this {@link AiExecutionSchedule} instance. + * + * @param start Timestamp, defining when the executions should start running periodically, defaults to now + */ public void setStart( @Nonnull final OffsetDateTime start) { this.start = start; } /** - * Set the end of this {@link AiExecutionSchedule} instance and return the same instance. - * - * @param end Timestamp, defining when the executions should stop running - * @return The same instance of this {@link AiExecutionSchedule} class - */ + * Set the end of this {@link AiExecutionSchedule} instance and return the same instance. + * + * @param end Timestamp, defining when the executions should stop running + * @return The same instance of this {@link AiExecutionSchedule} class + */ @Nonnull public AiExecutionSchedule end(@Nonnull final OffsetDateTime end) { this.end = end; return this; } /** - * Timestamp, defining when the executions should stop running - * @return end The end of this {@link AiExecutionSchedule} instance. - **/ + * Timestamp, defining when the executions should stop running + * @return end The end of this {@link AiExecutionSchedule} instance. + */ @Nonnull public OffsetDateTime getEnd() { return end; } /** - * Set the end of this {@link AiExecutionSchedule} instance. - * - * @param end Timestamp, defining when the executions should stop running - */ + * Set the end of this {@link AiExecutionSchedule} instance. + * + * @param end Timestamp, defining when the executions should stop running + */ public void setEnd( @Nonnull final OffsetDateTime end) { this.end = end; } /** - * Set the id of this {@link AiExecutionSchedule} instance and return the same instance. - * - * @param id ID of the execution schedule - * @return The same instance of this {@link AiExecutionSchedule} class - */ + * Set the id of this {@link AiExecutionSchedule} instance and return the same instance. + * + * @param id ID of the execution schedule + * @return The same instance of this {@link AiExecutionSchedule} class + */ @Nonnull public AiExecutionSchedule id(@Nonnull final String id) { this.id = id; return this; } /** - * ID of the execution schedule - * @return id The id of this {@link AiExecutionSchedule} instance. - **/ + * ID of the execution schedule + * @return id The id of this {@link AiExecutionSchedule} instance. + */ @Nonnull public String getId() { return id; } /** - * Set the id of this {@link AiExecutionSchedule} instance. - * - * @param id ID of the execution schedule - */ + * Set the id of this {@link AiExecutionSchedule} instance. + * + * @param id ID of the execution schedule + */ public void setId( @Nonnull final String id) { this.id = id; } /** - * Set the status of this {@link AiExecutionSchedule} instance and return the same instance. - * - * @param status The status of this {@link AiExecutionSchedule} - * @return The same instance of this {@link AiExecutionSchedule} class - */ + * Set the status of this {@link AiExecutionSchedule} instance and return the same instance. + * + * @param status The status of this {@link AiExecutionSchedule} + * @return The same instance of this {@link AiExecutionSchedule} class + */ @Nonnull public AiExecutionSchedule status(@Nonnull final AiExecutionScheduleStatus status) { this.status = status; return this; } /** - * Get status - * @return status The status of this {@link AiExecutionSchedule} instance. - **/ + * Get status + * @return status The status of this {@link AiExecutionSchedule} instance. + */ @Nonnull public AiExecutionScheduleStatus getStatus() { return status; } /** - * Set the status of this {@link AiExecutionSchedule} instance. - * - * @param status The status of this {@link AiExecutionSchedule} - */ + * Set the status of this {@link AiExecutionSchedule} instance. + * + * @param status The status of this {@link AiExecutionSchedule} + */ public void setStatus( @Nonnull final AiExecutionScheduleStatus status) { this.status = status; } /** - * Set the createdAt of this {@link AiExecutionSchedule} instance and return the same instance. - * - * @param createdAt Timestamp of resource creation - * @return The same instance of this {@link AiExecutionSchedule} class - */ + * Set the createdAt of this {@link AiExecutionSchedule} instance and return the same instance. + * + * @param createdAt Timestamp of resource creation + * @return The same instance of this {@link AiExecutionSchedule} class + */ @Nonnull public AiExecutionSchedule createdAt(@Nonnull final OffsetDateTime createdAt) { this.createdAt = createdAt; return this; } /** - * Timestamp of resource creation - * @return createdAt The createdAt of this {@link AiExecutionSchedule} instance. - **/ + * Timestamp of resource creation + * @return createdAt The createdAt of this {@link AiExecutionSchedule} instance. + */ @Nonnull public OffsetDateTime getCreatedAt() { return createdAt; } /** - * Set the createdAt of this {@link AiExecutionSchedule} instance. - * - * @param createdAt Timestamp of resource creation - */ + * Set the createdAt of this {@link AiExecutionSchedule} instance. + * + * @param createdAt Timestamp of resource creation + */ public void setCreatedAt( @Nonnull final OffsetDateTime createdAt) { this.createdAt = createdAt; } /** - * Set the modifiedAt of this {@link AiExecutionSchedule} instance and return the same instance. - * - * @param modifiedAt Timestamp of latest resource modification - * @return The same instance of this {@link AiExecutionSchedule} class - */ + * Set the modifiedAt of this {@link AiExecutionSchedule} instance and return the same instance. + * + * @param modifiedAt Timestamp of latest resource modification + * @return The same instance of this {@link AiExecutionSchedule} class + */ @Nonnull public AiExecutionSchedule modifiedAt(@Nonnull final OffsetDateTime modifiedAt) { this.modifiedAt = modifiedAt; return this; } /** - * Timestamp of latest resource modification - * @return modifiedAt The modifiedAt of this {@link AiExecutionSchedule} instance. - **/ + * Timestamp of latest resource modification + * @return modifiedAt The modifiedAt of this {@link AiExecutionSchedule} instance. + */ @Nonnull public OffsetDateTime getModifiedAt() { return modifiedAt; } /** - * Set the modifiedAt of this {@link AiExecutionSchedule} instance. - * - * @param modifiedAt Timestamp of latest resource modification - */ + * Set the modifiedAt of this {@link AiExecutionSchedule} instance. + * + * @param modifiedAt Timestamp of latest resource modification + */ public void setModifiedAt( @Nonnull final OffsetDateTime modifiedAt) { this.modifiedAt = modifiedAt; } @@ -420,5 +419,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/AiExecutionScheduleCreationData.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/AiExecutionScheduleCreationData.java index dbb51959f..097891f52 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/AiExecutionScheduleCreationData.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/AiExecutionScheduleCreationData.java @@ -39,7 +39,6 @@ /** * Start and end an execution schedule. */ - // CHECKSTYLE:OFF public class AiExecutionScheduleCreationData // CHECKSTYLE:ON @@ -64,141 +63,141 @@ public class AiExecutionScheduleCreationData private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the cron of this {@link AiExecutionScheduleCreationData} instance and return the same instance. - * - * @param cron Cron defining the schedule to run the executions. - * @return The same instance of this {@link AiExecutionScheduleCreationData} class - */ + * Set the cron of this {@link AiExecutionScheduleCreationData} instance and return the same instance. + * + * @param cron Cron defining the schedule to run the executions. + * @return The same instance of this {@link AiExecutionScheduleCreationData} class + */ @Nonnull public AiExecutionScheduleCreationData cron(@Nonnull final String cron) { this.cron = cron; return this; } /** - * Cron defining the schedule to run the executions. - * @return cron The cron of this {@link AiExecutionScheduleCreationData} instance. - **/ + * Cron defining the schedule to run the executions. + * @return cron The cron of this {@link AiExecutionScheduleCreationData} instance. + */ @Nonnull public String getCron() { return cron; } /** - * Set the cron of this {@link AiExecutionScheduleCreationData} instance. - * - * @param cron Cron defining the schedule to run the executions. - */ + * Set the cron of this {@link AiExecutionScheduleCreationData} instance. + * + * @param cron Cron defining the schedule to run the executions. + */ public void setCron( @Nonnull final String cron) { this.cron = cron; } /** - * Set the name of this {@link AiExecutionScheduleCreationData} instance and return the same instance. - * - * @param name Name of the execution schedule - * @return The same instance of this {@link AiExecutionScheduleCreationData} class - */ + * Set the name of this {@link AiExecutionScheduleCreationData} instance and return the same instance. + * + * @param name Name of the execution schedule + * @return The same instance of this {@link AiExecutionScheduleCreationData} class + */ @Nonnull public AiExecutionScheduleCreationData name(@Nonnull final String name) { this.name = name; return this; } /** - * Name of the execution schedule - * @return name The name of this {@link AiExecutionScheduleCreationData} instance. - **/ + * Name of the execution schedule + * @return name The name of this {@link AiExecutionScheduleCreationData} instance. + */ @Nonnull public String getName() { return name; } /** - * Set the name of this {@link AiExecutionScheduleCreationData} instance. - * - * @param name Name of the execution schedule - */ + * Set the name of this {@link AiExecutionScheduleCreationData} instance. + * + * @param name Name of the execution schedule + */ public void setName( @Nonnull final String name) { this.name = name; } /** - * Set the configurationId of this {@link AiExecutionScheduleCreationData} instance and return the same instance. - * - * @param configurationId ID of the configuration - * @return The same instance of this {@link AiExecutionScheduleCreationData} class - */ + * Set the configurationId of this {@link AiExecutionScheduleCreationData} instance and return the same instance. + * + * @param configurationId ID of the configuration + * @return The same instance of this {@link AiExecutionScheduleCreationData} class + */ @Nonnull public AiExecutionScheduleCreationData configurationId(@Nonnull final String configurationId) { this.configurationId = configurationId; return this; } /** - * ID of the configuration - * @return configurationId The configurationId of this {@link AiExecutionScheduleCreationData} instance. - **/ + * ID of the configuration + * @return configurationId The configurationId of this {@link AiExecutionScheduleCreationData} instance. + */ @Nonnull public String getConfigurationId() { return configurationId; } /** - * Set the configurationId of this {@link AiExecutionScheduleCreationData} instance. - * - * @param configurationId ID of the configuration - */ + * Set the configurationId of this {@link AiExecutionScheduleCreationData} instance. + * + * @param configurationId ID of the configuration + */ public void setConfigurationId( @Nonnull final String configurationId) { this.configurationId = configurationId; } /** - * Set the start of this {@link AiExecutionScheduleCreationData} instance and return the same instance. - * - * @param start Timestamp, defining when the executions should start running periodically, defaults to now - * @return The same instance of this {@link AiExecutionScheduleCreationData} class - */ + * Set the start of this {@link AiExecutionScheduleCreationData} instance and return the same instance. + * + * @param start Timestamp, defining when the executions should start running periodically, defaults to now + * @return The same instance of this {@link AiExecutionScheduleCreationData} class + */ @Nonnull public AiExecutionScheduleCreationData start(@Nonnull final OffsetDateTime start) { this.start = start; return this; } /** - * Timestamp, defining when the executions should start running periodically, defaults to now - * @return start The start of this {@link AiExecutionScheduleCreationData} instance. - **/ + * Timestamp, defining when the executions should start running periodically, defaults to now + * @return start The start of this {@link AiExecutionScheduleCreationData} instance. + */ @Nonnull public OffsetDateTime getStart() { return start; } /** - * Set the start of this {@link AiExecutionScheduleCreationData} instance. - * - * @param start Timestamp, defining when the executions should start running periodically, defaults to now - */ + * Set the start of this {@link AiExecutionScheduleCreationData} instance. + * + * @param start Timestamp, defining when the executions should start running periodically, defaults to now + */ public void setStart( @Nonnull final OffsetDateTime start) { this.start = start; } /** - * Set the end of this {@link AiExecutionScheduleCreationData} instance and return the same instance. - * - * @param end Timestamp, defining when the executions should stop running - * @return The same instance of this {@link AiExecutionScheduleCreationData} class - */ + * Set the end of this {@link AiExecutionScheduleCreationData} instance and return the same instance. + * + * @param end Timestamp, defining when the executions should stop running + * @return The same instance of this {@link AiExecutionScheduleCreationData} class + */ @Nonnull public AiExecutionScheduleCreationData end(@Nonnull final OffsetDateTime end) { this.end = end; return this; } /** - * Timestamp, defining when the executions should stop running - * @return end The end of this {@link AiExecutionScheduleCreationData} instance. - **/ + * Timestamp, defining when the executions should stop running + * @return end The end of this {@link AiExecutionScheduleCreationData} instance. + */ @Nonnull public OffsetDateTime getEnd() { return end; } /** - * Set the end of this {@link AiExecutionScheduleCreationData} instance. - * - * @param end Timestamp, defining when the executions should stop running - */ + * Set the end of this {@link AiExecutionScheduleCreationData} instance. + * + * @param end Timestamp, defining when the executions should stop running + */ public void setEnd( @Nonnull final OffsetDateTime end) { this.end = end; } @@ -287,5 +286,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/AiExecutionScheduleCreationResponse.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/AiExecutionScheduleCreationResponse.java index c2b5913e0..79fe8c9e9 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/AiExecutionScheduleCreationResponse.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/AiExecutionScheduleCreationResponse.java @@ -38,7 +38,6 @@ /** * AiExecutionScheduleCreationResponse */ - // CHECKSTYLE:OFF public class AiExecutionScheduleCreationResponse // CHECKSTYLE:ON @@ -54,57 +53,57 @@ public class AiExecutionScheduleCreationResponse private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the id of this {@link AiExecutionScheduleCreationResponse} instance and return the same instance. - * - * @param id Generic ID - * @return The same instance of this {@link AiExecutionScheduleCreationResponse} class - */ + * Set the id of this {@link AiExecutionScheduleCreationResponse} instance and return the same instance. + * + * @param id Generic ID + * @return The same instance of this {@link AiExecutionScheduleCreationResponse} class + */ @Nonnull public AiExecutionScheduleCreationResponse id(@Nonnull final String id) { this.id = id; return this; } /** - * Generic ID - * @return id The id of this {@link AiExecutionScheduleCreationResponse} instance. - **/ + * Generic ID + * @return id The id of this {@link AiExecutionScheduleCreationResponse} instance. + */ @Nonnull public String getId() { return id; } /** - * Set the id of this {@link AiExecutionScheduleCreationResponse} instance. - * - * @param id Generic ID - */ + * Set the id of this {@link AiExecutionScheduleCreationResponse} instance. + * + * @param id Generic ID + */ public void setId( @Nonnull final String id) { this.id = id; } /** - * Set the message of this {@link AiExecutionScheduleCreationResponse} instance and return the same instance. - * - * @param message Message - * @return The same instance of this {@link AiExecutionScheduleCreationResponse} class - */ + * Set the message of this {@link AiExecutionScheduleCreationResponse} instance and return the same instance. + * + * @param message Message + * @return The same instance of this {@link AiExecutionScheduleCreationResponse} class + */ @Nonnull public AiExecutionScheduleCreationResponse message(@Nonnull final String message) { this.message = message; return this; } /** - * Message - * @return message The message of this {@link AiExecutionScheduleCreationResponse} instance. - **/ + * Message + * @return message The message of this {@link AiExecutionScheduleCreationResponse} instance. + */ @Nonnull public String getMessage() { return message; } /** - * Set the message of this {@link AiExecutionScheduleCreationResponse} instance. - * - * @param message Message - */ + * Set the message of this {@link AiExecutionScheduleCreationResponse} instance. + * + * @param message Message + */ public void setMessage( @Nonnull final String message) { this.message = message; } @@ -187,5 +186,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/AiExecutionScheduleDeletionResponse.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/AiExecutionScheduleDeletionResponse.java index 0937f9eb4..c8ea19464 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/AiExecutionScheduleDeletionResponse.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/AiExecutionScheduleDeletionResponse.java @@ -38,7 +38,6 @@ /** * AiExecutionScheduleDeletionResponse */ - // CHECKSTYLE:OFF public class AiExecutionScheduleDeletionResponse // CHECKSTYLE:ON @@ -54,57 +53,57 @@ public class AiExecutionScheduleDeletionResponse private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the id of this {@link AiExecutionScheduleDeletionResponse} instance and return the same instance. - * - * @param id Generic ID - * @return The same instance of this {@link AiExecutionScheduleDeletionResponse} class - */ + * Set the id of this {@link AiExecutionScheduleDeletionResponse} instance and return the same instance. + * + * @param id Generic ID + * @return The same instance of this {@link AiExecutionScheduleDeletionResponse} class + */ @Nonnull public AiExecutionScheduleDeletionResponse id(@Nonnull final String id) { this.id = id; return this; } /** - * Generic ID - * @return id The id of this {@link AiExecutionScheduleDeletionResponse} instance. - **/ + * Generic ID + * @return id The id of this {@link AiExecutionScheduleDeletionResponse} instance. + */ @Nonnull public String getId() { return id; } /** - * Set the id of this {@link AiExecutionScheduleDeletionResponse} instance. - * - * @param id Generic ID - */ + * Set the id of this {@link AiExecutionScheduleDeletionResponse} instance. + * + * @param id Generic ID + */ public void setId( @Nonnull final String id) { this.id = id; } /** - * Set the message of this {@link AiExecutionScheduleDeletionResponse} instance and return the same instance. - * - * @param message Message - * @return The same instance of this {@link AiExecutionScheduleDeletionResponse} class - */ + * Set the message of this {@link AiExecutionScheduleDeletionResponse} instance and return the same instance. + * + * @param message Message + * @return The same instance of this {@link AiExecutionScheduleDeletionResponse} class + */ @Nonnull public AiExecutionScheduleDeletionResponse message(@Nonnull final String message) { this.message = message; return this; } /** - * Message - * @return message The message of this {@link AiExecutionScheduleDeletionResponse} instance. - **/ + * Message + * @return message The message of this {@link AiExecutionScheduleDeletionResponse} instance. + */ @Nonnull public String getMessage() { return message; } /** - * Set the message of this {@link AiExecutionScheduleDeletionResponse} instance. - * - * @param message Message - */ + * Set the message of this {@link AiExecutionScheduleDeletionResponse} instance. + * + * @param message Message + */ public void setMessage( @Nonnull final String message) { this.message = message; } @@ -187,5 +186,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/AiExecutionScheduleList.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/AiExecutionScheduleList.java index 48d385e45..9a3e15465 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/AiExecutionScheduleList.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/AiExecutionScheduleList.java @@ -42,7 +42,6 @@ /** * AiExecutionScheduleList */ - // CHECKSTYLE:OFF public class AiExecutionScheduleList // CHECKSTYLE:ON @@ -58,49 +57,49 @@ public class AiExecutionScheduleList private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the count of this {@link AiExecutionScheduleList} instance and return the same instance. - * - * @param count Number of the resource instances in the list - * @return The same instance of this {@link AiExecutionScheduleList} class - */ + * Set the count of this {@link AiExecutionScheduleList} instance and return the same instance. + * + * @param count Number of the resource instances in the list + * @return The same instance of this {@link AiExecutionScheduleList} class + */ @Nonnull public AiExecutionScheduleList count(@Nonnull final Integer count) { this.count = count; return this; } /** - * Number of the resource instances in the list - * @return count The count of this {@link AiExecutionScheduleList} instance. - **/ + * Number of the resource instances in the list + * @return count The count of this {@link AiExecutionScheduleList} instance. + */ @Nonnull public Integer getCount() { return count; } /** - * Set the count of this {@link AiExecutionScheduleList} instance. - * - * @param count Number of the resource instances in the list - */ + * Set the count of this {@link AiExecutionScheduleList} instance. + * + * @param count Number of the resource instances in the list + */ public void setCount( @Nonnull final Integer count) { this.count = count; } /** - * Set the resources of this {@link AiExecutionScheduleList} instance and return the same instance. - * - * @param resources The resources of this {@link AiExecutionScheduleList} - * @return The same instance of this {@link AiExecutionScheduleList} class - */ + * Set the resources of this {@link AiExecutionScheduleList} instance and return the same instance. + * + * @param resources The resources of this {@link AiExecutionScheduleList} + * @return The same instance of this {@link AiExecutionScheduleList} class + */ @Nonnull public AiExecutionScheduleList resources(@Nonnull final List resources) { this.resources = resources; return this; } /** - * Add one resources instance to this {@link AiExecutionScheduleList}. - * @param resourcesItem The resources that should be added - * @return The same instance of type {@link AiExecutionScheduleList} - */ - @Nonnull public AiExecutionScheduleList addresourcesItem( @Nonnull final AiExecutionSchedule resourcesItem) { + * Add one resources instance to this {@link AiExecutionScheduleList}. + * @param resourcesItem The resources that should be added + * @return The same instance of type {@link AiExecutionScheduleList} + */ + @Nonnull public AiExecutionScheduleList addResourcesItem( @Nonnull final AiExecutionSchedule resourcesItem) { if (this.resources == null) { this.resources = new ArrayList<>(); } @@ -109,18 +108,18 @@ public void setCount( @Nonnull final Integer count) { } /** - * Get resources - * @return resources The resources of this {@link AiExecutionScheduleList} instance. - **/ + * Get resources + * @return resources The resources of this {@link AiExecutionScheduleList} instance. + */ @Nonnull public List getResources() { return resources; } /** - * Set the resources of this {@link AiExecutionScheduleList} instance. - * - * @param resources The resources of this {@link AiExecutionScheduleList} - */ + * Set the resources of this {@link AiExecutionScheduleList} instance. + * + * @param resources The resources of this {@link AiExecutionScheduleList} + */ public void setResources( @Nonnull final List resources) { this.resources = resources; } @@ -203,5 +202,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/AiExecutionScheduleModificationRequest.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/AiExecutionScheduleModificationRequest.java index 8c517e703..b9d577319 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/AiExecutionScheduleModificationRequest.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/AiExecutionScheduleModificationRequest.java @@ -40,7 +40,6 @@ /** * Request object for changing the execution schedule */ - // CHECKSTYLE:OFF public class AiExecutionScheduleModificationRequest // CHECKSTYLE:ON @@ -65,141 +64,141 @@ public class AiExecutionScheduleModificationRequest private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the cron of this {@link AiExecutionScheduleModificationRequest} instance and return the same instance. - * - * @param cron Cron defining the schedule to run the executions. - * @return The same instance of this {@link AiExecutionScheduleModificationRequest} class - */ + * Set the cron of this {@link AiExecutionScheduleModificationRequest} instance and return the same instance. + * + * @param cron Cron defining the schedule to run the executions. + * @return The same instance of this {@link AiExecutionScheduleModificationRequest} class + */ @Nonnull public AiExecutionScheduleModificationRequest cron(@Nonnull final String cron) { this.cron = cron; return this; } /** - * Cron defining the schedule to run the executions. - * @return cron The cron of this {@link AiExecutionScheduleModificationRequest} instance. - **/ + * Cron defining the schedule to run the executions. + * @return cron The cron of this {@link AiExecutionScheduleModificationRequest} instance. + */ @Nonnull public String getCron() { return cron; } /** - * Set the cron of this {@link AiExecutionScheduleModificationRequest} instance. - * - * @param cron Cron defining the schedule to run the executions. - */ + * Set the cron of this {@link AiExecutionScheduleModificationRequest} instance. + * + * @param cron Cron defining the schedule to run the executions. + */ public void setCron( @Nonnull final String cron) { this.cron = cron; } /** - * Set the start of this {@link AiExecutionScheduleModificationRequest} instance and return the same instance. - * - * @param start Timestamp, defining when the executions should start running periodically, defaults to now - * @return The same instance of this {@link AiExecutionScheduleModificationRequest} class - */ + * Set the start of this {@link AiExecutionScheduleModificationRequest} instance and return the same instance. + * + * @param start Timestamp, defining when the executions should start running periodically, defaults to now + * @return The same instance of this {@link AiExecutionScheduleModificationRequest} class + */ @Nonnull public AiExecutionScheduleModificationRequest start(@Nonnull final OffsetDateTime start) { this.start = start; return this; } /** - * Timestamp, defining when the executions should start running periodically, defaults to now - * @return start The start of this {@link AiExecutionScheduleModificationRequest} instance. - **/ + * Timestamp, defining when the executions should start running periodically, defaults to now + * @return start The start of this {@link AiExecutionScheduleModificationRequest} instance. + */ @Nonnull public OffsetDateTime getStart() { return start; } /** - * Set the start of this {@link AiExecutionScheduleModificationRequest} instance. - * - * @param start Timestamp, defining when the executions should start running periodically, defaults to now - */ + * Set the start of this {@link AiExecutionScheduleModificationRequest} instance. + * + * @param start Timestamp, defining when the executions should start running periodically, defaults to now + */ public void setStart( @Nonnull final OffsetDateTime start) { this.start = start; } /** - * Set the end of this {@link AiExecutionScheduleModificationRequest} instance and return the same instance. - * - * @param end Timestamp, defining when the executions should stop running - * @return The same instance of this {@link AiExecutionScheduleModificationRequest} class - */ + * Set the end of this {@link AiExecutionScheduleModificationRequest} instance and return the same instance. + * + * @param end Timestamp, defining when the executions should stop running + * @return The same instance of this {@link AiExecutionScheduleModificationRequest} class + */ @Nonnull public AiExecutionScheduleModificationRequest end(@Nonnull final OffsetDateTime end) { this.end = end; return this; } /** - * Timestamp, defining when the executions should stop running - * @return end The end of this {@link AiExecutionScheduleModificationRequest} instance. - **/ + * Timestamp, defining when the executions should stop running + * @return end The end of this {@link AiExecutionScheduleModificationRequest} instance. + */ @Nonnull public OffsetDateTime getEnd() { return end; } /** - * Set the end of this {@link AiExecutionScheduleModificationRequest} instance. - * - * @param end Timestamp, defining when the executions should stop running - */ + * Set the end of this {@link AiExecutionScheduleModificationRequest} instance. + * + * @param end Timestamp, defining when the executions should stop running + */ public void setEnd( @Nonnull final OffsetDateTime end) { this.end = end; } /** - * Set the configurationId of this {@link AiExecutionScheduleModificationRequest} instance and return the same instance. - * - * @param configurationId ID of the configuration - * @return The same instance of this {@link AiExecutionScheduleModificationRequest} class - */ + * Set the configurationId of this {@link AiExecutionScheduleModificationRequest} instance and return the same instance. + * + * @param configurationId ID of the configuration + * @return The same instance of this {@link AiExecutionScheduleModificationRequest} class + */ @Nonnull public AiExecutionScheduleModificationRequest configurationId(@Nonnull final String configurationId) { this.configurationId = configurationId; return this; } /** - * ID of the configuration - * @return configurationId The configurationId of this {@link AiExecutionScheduleModificationRequest} instance. - **/ + * ID of the configuration + * @return configurationId The configurationId of this {@link AiExecutionScheduleModificationRequest} instance. + */ @Nonnull public String getConfigurationId() { return configurationId; } /** - * Set the configurationId of this {@link AiExecutionScheduleModificationRequest} instance. - * - * @param configurationId ID of the configuration - */ + * Set the configurationId of this {@link AiExecutionScheduleModificationRequest} instance. + * + * @param configurationId ID of the configuration + */ public void setConfigurationId( @Nonnull final String configurationId) { this.configurationId = configurationId; } /** - * Set the status of this {@link AiExecutionScheduleModificationRequest} instance and return the same instance. - * - * @param status The status of this {@link AiExecutionScheduleModificationRequest} - * @return The same instance of this {@link AiExecutionScheduleModificationRequest} class - */ + * Set the status of this {@link AiExecutionScheduleModificationRequest} instance and return the same instance. + * + * @param status The status of this {@link AiExecutionScheduleModificationRequest} + * @return The same instance of this {@link AiExecutionScheduleModificationRequest} class + */ @Nonnull public AiExecutionScheduleModificationRequest status(@Nonnull final AiExecutionScheduleStatus status) { this.status = status; return this; } /** - * Get status - * @return status The status of this {@link AiExecutionScheduleModificationRequest} instance. - **/ + * Get status + * @return status The status of this {@link AiExecutionScheduleModificationRequest} instance. + */ @Nonnull public AiExecutionScheduleStatus getStatus() { return status; } /** - * Set the status of this {@link AiExecutionScheduleModificationRequest} instance. - * - * @param status The status of this {@link AiExecutionScheduleModificationRequest} - */ + * Set the status of this {@link AiExecutionScheduleModificationRequest} instance. + * + * @param status The status of this {@link AiExecutionScheduleModificationRequest} + */ public void setStatus( @Nonnull final AiExecutionScheduleStatus status) { this.status = status; } @@ -288,5 +287,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/AiExecutionScheduleModificationResponse.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/AiExecutionScheduleModificationResponse.java index fcab84bd6..2a03e6d4b 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/AiExecutionScheduleModificationResponse.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/AiExecutionScheduleModificationResponse.java @@ -38,7 +38,6 @@ /** * AiExecutionScheduleModificationResponse */ - // CHECKSTYLE:OFF public class AiExecutionScheduleModificationResponse // CHECKSTYLE:ON @@ -54,57 +53,57 @@ public class AiExecutionScheduleModificationResponse private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the id of this {@link AiExecutionScheduleModificationResponse} instance and return the same instance. - * - * @param id Generic ID - * @return The same instance of this {@link AiExecutionScheduleModificationResponse} class - */ + * Set the id of this {@link AiExecutionScheduleModificationResponse} instance and return the same instance. + * + * @param id Generic ID + * @return The same instance of this {@link AiExecutionScheduleModificationResponse} class + */ @Nonnull public AiExecutionScheduleModificationResponse id(@Nonnull final String id) { this.id = id; return this; } /** - * Generic ID - * @return id The id of this {@link AiExecutionScheduleModificationResponse} instance. - **/ + * Generic ID + * @return id The id of this {@link AiExecutionScheduleModificationResponse} instance. + */ @Nonnull public String getId() { return id; } /** - * Set the id of this {@link AiExecutionScheduleModificationResponse} instance. - * - * @param id Generic ID - */ + * Set the id of this {@link AiExecutionScheduleModificationResponse} instance. + * + * @param id Generic ID + */ public void setId( @Nonnull final String id) { this.id = id; } /** - * Set the message of this {@link AiExecutionScheduleModificationResponse} instance and return the same instance. - * - * @param message Message - * @return The same instance of this {@link AiExecutionScheduleModificationResponse} class - */ + * Set the message of this {@link AiExecutionScheduleModificationResponse} instance and return the same instance. + * + * @param message Message + * @return The same instance of this {@link AiExecutionScheduleModificationResponse} class + */ @Nonnull public AiExecutionScheduleModificationResponse message(@Nonnull final String message) { this.message = message; return this; } /** - * Message - * @return message The message of this {@link AiExecutionScheduleModificationResponse} instance. - **/ + * Message + * @return message The message of this {@link AiExecutionScheduleModificationResponse} instance. + */ @Nonnull public String getMessage() { return message; } /** - * Set the message of this {@link AiExecutionScheduleModificationResponse} instance. - * - * @param message Message - */ + * Set the message of this {@link AiExecutionScheduleModificationResponse} instance. + * + * @param message Message + */ public void setMessage( @Nonnull final String message) { this.message = message; } @@ -187,5 +186,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/AiLabel.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/AiLabel.java index f17185e82..8501e84ff 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/AiLabel.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/AiLabel.java @@ -38,7 +38,6 @@ /** * AiLabel */ - // CHECKSTYLE:OFF public class AiLabel // CHECKSTYLE:ON @@ -54,57 +53,57 @@ public class AiLabel private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the key of this {@link AiLabel} instance and return the same instance. - * - * @param key The key of this {@link AiLabel} - * @return The same instance of this {@link AiLabel} class - */ + * Set the key of this {@link AiLabel} instance and return the same instance. + * + * @param key The key of this {@link AiLabel} + * @return The same instance of this {@link AiLabel} class + */ @Nonnull public AiLabel key(@Nonnull final String key) { this.key = key; return this; } /** - * Get key - * @return key The key of this {@link AiLabel} instance. - **/ + * Get key + * @return key The key of this {@link AiLabel} instance. + */ @Nonnull public String getKey() { return key; } /** - * Set the key of this {@link AiLabel} instance. - * - * @param key The key of this {@link AiLabel} - */ + * Set the key of this {@link AiLabel} instance. + * + * @param key The key of this {@link AiLabel} + */ public void setKey( @Nonnull final String key) { this.key = key; } /** - * Set the value of this {@link AiLabel} instance and return the same instance. - * - * @param value The value of this {@link AiLabel} - * @return The same instance of this {@link AiLabel} class - */ + * Set the value of this {@link AiLabel} instance and return the same instance. + * + * @param value The value of this {@link AiLabel} + * @return The same instance of this {@link AiLabel} class + */ @Nonnull public AiLabel value(@Nonnull final String value) { this.value = value; return this; } /** - * Get value - * @return value The value of this {@link AiLabel} instance. - **/ + * Get value + * @return value The value of this {@link AiLabel} instance. + */ @Nonnull public String getValue() { return value; } /** - * Set the value of this {@link AiLabel} instance. - * - * @param value The value of this {@link AiLabel} - */ + * Set the value of this {@link AiLabel} instance. + * + * @param value The value of this {@link AiLabel} + */ public void setValue( @Nonnull final String value) { this.value = value; } @@ -187,5 +186,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/AiLogCommonData.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/AiLogCommonData.java index e0939f765..17b57eaa2 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/AiLogCommonData.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/AiLogCommonData.java @@ -42,7 +42,6 @@ /** * AiLogCommonData */ - // CHECKSTYLE:OFF public class AiLogCommonData // CHECKSTYLE:ON @@ -55,21 +54,21 @@ public class AiLogCommonData private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the result of this {@link AiLogCommonData} instance and return the same instance. - * - * @param result The result of this {@link AiLogCommonData} - * @return The same instance of this {@link AiLogCommonData} class - */ + * Set the result of this {@link AiLogCommonData} instance and return the same instance. + * + * @param result The result of this {@link AiLogCommonData} + * @return The same instance of this {@link AiLogCommonData} class + */ @Nonnull public AiLogCommonData result(@Nonnull final List result) { this.result = result; return this; } /** - * Add one result instance to this {@link AiLogCommonData}. - * @param resultItem The result that should be added - * @return The same instance of type {@link AiLogCommonData} - */ - @Nonnull public AiLogCommonData addresultItem( @Nonnull final AiLogCommonResultItem resultItem) { + * Add one result instance to this {@link AiLogCommonData}. + * @param resultItem The result that should be added + * @return The same instance of type {@link AiLogCommonData} + */ + @Nonnull public AiLogCommonData addResultItem( @Nonnull final AiLogCommonResultItem resultItem) { if (this.result == null) { this.result = new ArrayList<>(); } @@ -78,18 +77,18 @@ public class AiLogCommonData } /** - * Get result - * @return result The result of this {@link AiLogCommonData} instance. - **/ + * Get result + * @return result The result of this {@link AiLogCommonData} instance. + */ @Nonnull public List getResult() { return result; } /** - * Set the result of this {@link AiLogCommonData} instance. - * - * @param result The result of this {@link AiLogCommonData} - */ + * Set the result of this {@link AiLogCommonData} instance. + * + * @param result The result of this {@link AiLogCommonData} + */ public void setResult( @Nonnull final List result) { this.result = result; } @@ -170,5 +169,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/AiLogCommonResultItem.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/AiLogCommonResultItem.java index b12480e1a..c73e2daa9 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/AiLogCommonResultItem.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/AiLogCommonResultItem.java @@ -39,7 +39,6 @@ /** * Common log record. */ - // CHECKSTYLE:OFF public class AiLogCommonResultItem // CHECKSTYLE:ON @@ -55,57 +54,57 @@ public class AiLogCommonResultItem private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the timestamp of this {@link AiLogCommonResultItem} instance and return the same instance. - * - * @param timestamp Datetime in RFC 3339. - * @return The same instance of this {@link AiLogCommonResultItem} class - */ + * Set the timestamp of this {@link AiLogCommonResultItem} instance and return the same instance. + * + * @param timestamp Datetime in RFC 3339. + * @return The same instance of this {@link AiLogCommonResultItem} class + */ @Nonnull public AiLogCommonResultItem timestamp(@Nonnull final OffsetDateTime timestamp) { this.timestamp = timestamp; return this; } /** - * Datetime in RFC 3339. - * @return timestamp The timestamp of this {@link AiLogCommonResultItem} instance. - **/ + * Datetime in RFC 3339. + * @return timestamp The timestamp of this {@link AiLogCommonResultItem} instance. + */ @Nonnull public OffsetDateTime getTimestamp() { return timestamp; } /** - * Set the timestamp of this {@link AiLogCommonResultItem} instance. - * - * @param timestamp Datetime in RFC 3339. - */ + * Set the timestamp of this {@link AiLogCommonResultItem} instance. + * + * @param timestamp Datetime in RFC 3339. + */ public void setTimestamp( @Nonnull final OffsetDateTime timestamp) { this.timestamp = timestamp; } /** - * Set the msg of this {@link AiLogCommonResultItem} instance and return the same instance. - * - * @param msg message content. - * @return The same instance of this {@link AiLogCommonResultItem} class - */ + * Set the msg of this {@link AiLogCommonResultItem} instance and return the same instance. + * + * @param msg message content. + * @return The same instance of this {@link AiLogCommonResultItem} class + */ @Nonnull public AiLogCommonResultItem msg(@Nonnull final String msg) { this.msg = msg; return this; } /** - * message content. - * @return msg The msg of this {@link AiLogCommonResultItem} instance. - **/ + * message content. + * @return msg The msg of this {@link AiLogCommonResultItem} instance. + */ @Nonnull public String getMsg() { return msg; } /** - * Set the msg of this {@link AiLogCommonResultItem} instance. - * - * @param msg message content. - */ + * Set the msg of this {@link AiLogCommonResultItem} instance. + * + * @param msg message content. + */ public void setMsg( @Nonnull final String msg) { this.msg = msg; } @@ -188,5 +187,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/AiModelBaseData.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/AiModelBaseData.java index 5517d6afd..1caa20893 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/AiModelBaseData.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/AiModelBaseData.java @@ -42,7 +42,6 @@ /** * AiModelBaseData */ - // CHECKSTYLE:OFF public class AiModelBaseData // CHECKSTYLE:ON @@ -64,105 +63,105 @@ public class AiModelBaseData private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the model of this {@link AiModelBaseData} instance and return the same instance. - * - * @param model Name of the model - * @return The same instance of this {@link AiModelBaseData} class - */ + * Set the model of this {@link AiModelBaseData} instance and return the same instance. + * + * @param model Name of the model + * @return The same instance of this {@link AiModelBaseData} class + */ @Nonnull public AiModelBaseData model(@Nonnull final String model) { this.model = model; return this; } /** - * Name of the model - * @return model The model of this {@link AiModelBaseData} instance. - **/ + * Name of the model + * @return model The model of this {@link AiModelBaseData} instance. + */ @Nonnull public String getModel() { return model; } /** - * Set the model of this {@link AiModelBaseData} instance. - * - * @param model Name of the model - */ + * Set the model of this {@link AiModelBaseData} instance. + * + * @param model Name of the model + */ public void setModel( @Nonnull final String model) { this.model = model; } /** - * Set the executableId of this {@link AiModelBaseData} instance and return the same instance. - * - * @param executableId ID of the executable - * @return The same instance of this {@link AiModelBaseData} class - */ + * Set the executableId of this {@link AiModelBaseData} instance and return the same instance. + * + * @param executableId ID of the executable + * @return The same instance of this {@link AiModelBaseData} class + */ @Nonnull public AiModelBaseData executableId(@Nonnull final String executableId) { this.executableId = executableId; return this; } /** - * ID of the executable - * @return executableId The executableId of this {@link AiModelBaseData} instance. - **/ + * ID of the executable + * @return executableId The executableId of this {@link AiModelBaseData} instance. + */ @Nonnull public String getExecutableId() { return executableId; } /** - * Set the executableId of this {@link AiModelBaseData} instance. - * - * @param executableId ID of the executable - */ + * Set the executableId of this {@link AiModelBaseData} instance. + * + * @param executableId ID of the executable + */ public void setExecutableId( @Nonnull final String executableId) { this.executableId = executableId; } /** - * Set the description of this {@link AiModelBaseData} instance and return the same instance. - * - * @param description Description of the model and its capabilities - * @return The same instance of this {@link AiModelBaseData} class - */ + * Set the description of this {@link AiModelBaseData} instance and return the same instance. + * + * @param description Description of the model and its capabilities + * @return The same instance of this {@link AiModelBaseData} class + */ @Nonnull public AiModelBaseData description(@Nonnull final String description) { this.description = description; return this; } /** - * Description of the model and its capabilities - * @return description The description of this {@link AiModelBaseData} instance. - **/ + * Description of the model and its capabilities + * @return description The description of this {@link AiModelBaseData} instance. + */ @Nonnull public String getDescription() { return description; } /** - * Set the description of this {@link AiModelBaseData} instance. - * - * @param description Description of the model and its capabilities - */ + * Set the description of this {@link AiModelBaseData} instance. + * + * @param description Description of the model and its capabilities + */ public void setDescription( @Nonnull final String description) { this.description = description; } /** - * Set the versions of this {@link AiModelBaseData} instance and return the same instance. - * - * @param versions List of model versions that the model object has - * @return The same instance of this {@link AiModelBaseData} class - */ + * Set the versions of this {@link AiModelBaseData} instance and return the same instance. + * + * @param versions List of model versions that the model object has + * @return The same instance of this {@link AiModelBaseData} class + */ @Nonnull public AiModelBaseData versions(@Nonnull final List versions) { this.versions = versions; return this; } /** - * Add one versions instance to this {@link AiModelBaseData}. - * @param versionsItem The versions that should be added - * @return The same instance of type {@link AiModelBaseData} - */ - @Nonnull public AiModelBaseData addversionsItem( @Nonnull final AiModelVersion versionsItem) { + * Add one versions instance to this {@link AiModelBaseData}. + * @param versionsItem The versions that should be added + * @return The same instance of type {@link AiModelBaseData} + */ + @Nonnull public AiModelBaseData addVersionsItem( @Nonnull final AiModelVersion versionsItem) { if (this.versions == null) { this.versions = new ArrayList<>(); } @@ -171,18 +170,18 @@ public void setDescription( @Nonnull final String description) { } /** - * List of model versions that the model object has - * @return versions The versions of this {@link AiModelBaseData} instance. - **/ + * List of model versions that the model object has + * @return versions The versions of this {@link AiModelBaseData} instance. + */ @Nonnull public List getVersions() { return versions; } /** - * Set the versions of this {@link AiModelBaseData} instance. - * - * @param versions List of model versions that the model object has - */ + * Set the versions of this {@link AiModelBaseData} instance. + * + * @param versions List of model versions that the model object has + */ public void setVersions( @Nonnull final List versions) { this.versions = versions; } @@ -269,5 +268,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/AiModelList.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/AiModelList.java index f03e099b2..024ac55aa 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/AiModelList.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/AiModelList.java @@ -42,7 +42,6 @@ /** * AiModelList */ - // CHECKSTYLE:OFF public class AiModelList // CHECKSTYLE:ON @@ -58,49 +57,49 @@ public class AiModelList private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the count of this {@link AiModelList} instance and return the same instance. - * - * @param count Number of the resource instances in the list - * @return The same instance of this {@link AiModelList} class - */ + * Set the count of this {@link AiModelList} instance and return the same instance. + * + * @param count Number of the resource instances in the list + * @return The same instance of this {@link AiModelList} class + */ @Nonnull public AiModelList count(@Nonnull final Integer count) { this.count = count; return this; } /** - * Number of the resource instances in the list - * @return count The count of this {@link AiModelList} instance. - **/ + * Number of the resource instances in the list + * @return count The count of this {@link AiModelList} instance. + */ @Nonnull public Integer getCount() { return count; } /** - * Set the count of this {@link AiModelList} instance. - * - * @param count Number of the resource instances in the list - */ + * Set the count of this {@link AiModelList} instance. + * + * @param count Number of the resource instances in the list + */ public void setCount( @Nonnull final Integer count) { this.count = count; } /** - * Set the resources of this {@link AiModelList} instance and return the same instance. - * - * @param resources The resources of this {@link AiModelList} - * @return The same instance of this {@link AiModelList} class - */ + * Set the resources of this {@link AiModelList} instance and return the same instance. + * + * @param resources The resources of this {@link AiModelList} + * @return The same instance of this {@link AiModelList} class + */ @Nonnull public AiModelList resources(@Nonnull final List resources) { this.resources = resources; return this; } /** - * Add one resources instance to this {@link AiModelList}. - * @param resourcesItem The resources that should be added - * @return The same instance of type {@link AiModelList} - */ - @Nonnull public AiModelList addresourcesItem( @Nonnull final AiModelBaseData resourcesItem) { + * Add one resources instance to this {@link AiModelList}. + * @param resourcesItem The resources that should be added + * @return The same instance of type {@link AiModelList} + */ + @Nonnull public AiModelList addResourcesItem( @Nonnull final AiModelBaseData resourcesItem) { if (this.resources == null) { this.resources = new ArrayList<>(); } @@ -109,18 +108,18 @@ public void setCount( @Nonnull final Integer count) { } /** - * Get resources - * @return resources The resources of this {@link AiModelList} instance. - **/ + * Get resources + * @return resources The resources of this {@link AiModelList} instance. + */ @Nonnull public List getResources() { return resources; } /** - * Set the resources of this {@link AiModelList} instance. - * - * @param resources The resources of this {@link AiModelList} - */ + * Set the resources of this {@link AiModelList} instance. + * + * @param resources The resources of this {@link AiModelList} + */ public void setResources( @Nonnull final List resources) { this.resources = resources; } @@ -203,5 +202,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/AiModelVersion.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/AiModelVersion.java index 7142dd032..f08f71940 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/AiModelVersion.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/AiModelVersion.java @@ -38,7 +38,6 @@ /** * Model version information including whether it is latest version */ - // CHECKSTYLE:OFF public class AiModelVersion // CHECKSTYLE:ON @@ -54,57 +53,57 @@ public class AiModelVersion private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the name of this {@link AiModelVersion} instance and return the same instance. - * - * @param name Name of model version - * @return The same instance of this {@link AiModelVersion} class - */ + * Set the name of this {@link AiModelVersion} instance and return the same instance. + * + * @param name Name of model version + * @return The same instance of this {@link AiModelVersion} class + */ @Nonnull public AiModelVersion name(@Nonnull final String name) { this.name = name; return this; } /** - * Name of model version - * @return name The name of this {@link AiModelVersion} instance. - **/ + * Name of model version + * @return name The name of this {@link AiModelVersion} instance. + */ @Nonnull public String getName() { return name; } /** - * Set the name of this {@link AiModelVersion} instance. - * - * @param name Name of model version - */ + * Set the name of this {@link AiModelVersion} instance. + * + * @param name Name of model version + */ public void setName( @Nonnull final String name) { this.name = name; } /** - * Set the isLatest of this {@link AiModelVersion} instance and return the same instance. - * - * @param isLatest Displays whether it is the latest version offered for the model - * @return The same instance of this {@link AiModelVersion} class - */ + * Set the isLatest of this {@link AiModelVersion} instance and return the same instance. + * + * @param isLatest Displays whether it is the latest version offered for the model + * @return The same instance of this {@link AiModelVersion} class + */ @Nonnull public AiModelVersion isLatest(@Nonnull final Boolean isLatest) { this.isLatest = isLatest; return this; } /** - * Displays whether it is the latest version offered for the model - * @return isLatest The isLatest of this {@link AiModelVersion} instance. - **/ + * Displays whether it is the latest version offered for the model + * @return isLatest The isLatest of this {@link AiModelVersion} instance. + */ @Nonnull public Boolean isIsLatest() { return isLatest; } /** - * Set the isLatest of this {@link AiModelVersion} instance. - * - * @param isLatest Displays whether it is the latest version offered for the model - */ + * Set the isLatest of this {@link AiModelVersion} instance. + * + * @param isLatest Displays whether it is the latest version offered for the model + */ public void setIsLatest( @Nonnull final Boolean isLatest) { this.isLatest = isLatest; } @@ -187,5 +186,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/AiParameterArgumentBinding.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/AiParameterArgumentBinding.java index d3a887486..44ded82c4 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/AiParameterArgumentBinding.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/AiParameterArgumentBinding.java @@ -38,7 +38,6 @@ /** * Required for execution Result of activation */ - // CHECKSTYLE:OFF public class AiParameterArgumentBinding // CHECKSTYLE:ON @@ -54,57 +53,57 @@ public class AiParameterArgumentBinding private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the key of this {@link AiParameterArgumentBinding} instance and return the same instance. - * - * @param key The key of this {@link AiParameterArgumentBinding} - * @return The same instance of this {@link AiParameterArgumentBinding} class - */ + * Set the key of this {@link AiParameterArgumentBinding} instance and return the same instance. + * + * @param key The key of this {@link AiParameterArgumentBinding} + * @return The same instance of this {@link AiParameterArgumentBinding} class + */ @Nonnull public AiParameterArgumentBinding key(@Nonnull final String key) { this.key = key; return this; } /** - * Get key - * @return key The key of this {@link AiParameterArgumentBinding} instance. - **/ + * Get key + * @return key The key of this {@link AiParameterArgumentBinding} instance. + */ @Nonnull public String getKey() { return key; } /** - * Set the key of this {@link AiParameterArgumentBinding} instance. - * - * @param key The key of this {@link AiParameterArgumentBinding} - */ + * Set the key of this {@link AiParameterArgumentBinding} instance. + * + * @param key The key of this {@link AiParameterArgumentBinding} + */ public void setKey( @Nonnull final String key) { this.key = key; } /** - * Set the value of this {@link AiParameterArgumentBinding} instance and return the same instance. - * - * @param value The value of this {@link AiParameterArgumentBinding} - * @return The same instance of this {@link AiParameterArgumentBinding} class - */ + * Set the value of this {@link AiParameterArgumentBinding} instance and return the same instance. + * + * @param value The value of this {@link AiParameterArgumentBinding} + * @return The same instance of this {@link AiParameterArgumentBinding} class + */ @Nonnull public AiParameterArgumentBinding value(@Nonnull final String value) { this.value = value; return this; } /** - * Get value - * @return value The value of this {@link AiParameterArgumentBinding} instance. - **/ + * Get value + * @return value The value of this {@link AiParameterArgumentBinding} instance. + */ @Nonnull public String getValue() { return value; } /** - * Set the value of this {@link AiParameterArgumentBinding} instance. - * - * @param value The value of this {@link AiParameterArgumentBinding} - */ + * Set the value of this {@link AiParameterArgumentBinding} instance. + * + * @param value The value of this {@link AiParameterArgumentBinding} + */ public void setValue( @Nonnull final String value) { this.value = value; } @@ -187,5 +186,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/AiResourcesDetails.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/AiResourcesDetails.java index 365c18590..55f16c3bb 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/AiResourcesDetails.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/AiResourcesDetails.java @@ -38,7 +38,6 @@ /** * Resources details of a deployment */ - // CHECKSTYLE:OFF public class AiResourcesDetails // CHECKSTYLE:ON @@ -51,29 +50,29 @@ public class AiResourcesDetails private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the backendDetails of this {@link AiResourcesDetails} instance and return the same instance. - * - * @param backendDetails backend-specific details of the deployment - * @return The same instance of this {@link AiResourcesDetails} class - */ + * Set the backendDetails of this {@link AiResourcesDetails} instance and return the same instance. + * + * @param backendDetails backend-specific details of the deployment + * @return The same instance of this {@link AiResourcesDetails} class + */ @Nonnull public AiResourcesDetails backendDetails(@Nonnull final Object backendDetails) { this.backendDetails = backendDetails; return this; } /** - * backend-specific details of the deployment - * @return backendDetails The backendDetails of this {@link AiResourcesDetails} instance. - **/ + * backend-specific details of the deployment + * @return backendDetails The backendDetails of this {@link AiResourcesDetails} instance. + */ @Nonnull public Object getBackendDetails() { return backendDetails; } /** - * Set the backendDetails of this {@link AiResourcesDetails} instance. - * - * @param backendDetails backend-specific details of the deployment - */ + * Set the backendDetails of this {@link AiResourcesDetails} instance. + * + * @param backendDetails backend-specific details of the deployment + */ public void setBackendDetails( @Nonnull final Object backendDetails) { this.backendDetails = backendDetails; } @@ -154,5 +153,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/AiScalingDetails.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/AiScalingDetails.java index b7696d8f0..9bda4cffd 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/AiScalingDetails.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/AiScalingDetails.java @@ -38,7 +38,6 @@ /** * Scaling details of a deployment */ - // CHECKSTYLE:OFF public class AiScalingDetails // CHECKSTYLE:ON @@ -51,29 +50,29 @@ public class AiScalingDetails private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the backendDetails of this {@link AiScalingDetails} instance and return the same instance. - * - * @param backendDetails backend-specific details of the deployment - * @return The same instance of this {@link AiScalingDetails} class - */ + * Set the backendDetails of this {@link AiScalingDetails} instance and return the same instance. + * + * @param backendDetails backend-specific details of the deployment + * @return The same instance of this {@link AiScalingDetails} class + */ @Nonnull public AiScalingDetails backendDetails(@Nonnull final Object backendDetails) { this.backendDetails = backendDetails; return this; } /** - * backend-specific details of the deployment - * @return backendDetails The backendDetails of this {@link AiScalingDetails} instance. - **/ + * backend-specific details of the deployment + * @return backendDetails The backendDetails of this {@link AiScalingDetails} instance. + */ @Nonnull public Object getBackendDetails() { return backendDetails; } /** - * Set the backendDetails of this {@link AiScalingDetails} instance. - * - * @param backendDetails backend-specific details of the deployment - */ + * Set the backendDetails of this {@link AiScalingDetails} instance. + * + * @param backendDetails backend-specific details of the deployment + */ public void setBackendDetails( @Nonnull final Object backendDetails) { this.backendDetails = backendDetails; } @@ -154,5 +153,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/AiScenario.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/AiScenario.java index 491b0d90f..88799ad38 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/AiScenario.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/AiScenario.java @@ -43,7 +43,6 @@ /** * An ML Scenario consists of a number of executables. E.g., there can be one or several training executables, an inference (deployment) executable. An ML Scenario is versioned. */ - // CHECKSTYLE:OFF public class AiScenario // CHECKSTYLE:ON @@ -71,77 +70,77 @@ public class AiScenario private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the name of this {@link AiScenario} instance and return the same instance. - * - * @param name Name of the scenario - * @return The same instance of this {@link AiScenario} class - */ + * Set the name of this {@link AiScenario} instance and return the same instance. + * + * @param name Name of the scenario + * @return The same instance of this {@link AiScenario} class + */ @Nonnull public AiScenario name(@Nonnull final String name) { this.name = name; return this; } /** - * Name of the scenario - * @return name The name of this {@link AiScenario} instance. - **/ + * Name of the scenario + * @return name The name of this {@link AiScenario} instance. + */ @Nonnull public String getName() { return name; } /** - * Set the name of this {@link AiScenario} instance. - * - * @param name Name of the scenario - */ + * Set the name of this {@link AiScenario} instance. + * + * @param name Name of the scenario + */ public void setName( @Nonnull final String name) { this.name = name; } /** - * Set the description of this {@link AiScenario} instance and return the same instance. - * - * @param description Description of the scenario - * @return The same instance of this {@link AiScenario} class - */ + * Set the description of this {@link AiScenario} instance and return the same instance. + * + * @param description Description of the scenario + * @return The same instance of this {@link AiScenario} class + */ @Nonnull public AiScenario description(@Nonnull final String description) { this.description = description; return this; } /** - * Description of the scenario - * @return description The description of this {@link AiScenario} instance. - **/ + * Description of the scenario + * @return description The description of this {@link AiScenario} instance. + */ @Nonnull public String getDescription() { return description; } /** - * Set the description of this {@link AiScenario} instance. - * - * @param description Description of the scenario - */ + * Set the description of this {@link AiScenario} instance. + * + * @param description Description of the scenario + */ public void setDescription( @Nonnull final String description) { this.description = description; } /** - * Set the labels of this {@link AiScenario} instance and return the same instance. - * - * @param labels Arbitrary labels as meta information - * @return The same instance of this {@link AiScenario} class - */ + * Set the labels of this {@link AiScenario} instance and return the same instance. + * + * @param labels Arbitrary labels as meta information + * @return The same instance of this {@link AiScenario} class + */ @Nonnull public AiScenario labels(@Nonnull final List labels) { this.labels = labels; return this; } /** - * Add one labels instance to this {@link AiScenario}. - * @param labelsItem The labels that should be added - * @return The same instance of type {@link AiScenario} - */ - @Nonnull public AiScenario addlabelsItem( @Nonnull final AiScenarioLabel labelsItem) { + * Add one labels instance to this {@link AiScenario}. + * @param labelsItem The labels that should be added + * @return The same instance of type {@link AiScenario} + */ + @Nonnull public AiScenario addLabelsItem( @Nonnull final AiScenarioLabel labelsItem) { if (this.labels == null) { this.labels = new ArrayList<>(); } @@ -150,102 +149,102 @@ public void setDescription( @Nonnull final String description) { } /** - * Arbitrary labels as meta information - * @return labels The labels of this {@link AiScenario} instance. - **/ + * Arbitrary labels as meta information + * @return labels The labels of this {@link AiScenario} instance. + */ @Nonnull public List getLabels() { return labels; } /** - * Set the labels of this {@link AiScenario} instance. - * - * @param labels Arbitrary labels as meta information - */ + * Set the labels of this {@link AiScenario} instance. + * + * @param labels Arbitrary labels as meta information + */ public void setLabels( @Nonnull final List labels) { this.labels = labels; } /** - * Set the id of this {@link AiScenario} instance and return the same instance. - * - * @param id ID of the scenario - * @return The same instance of this {@link AiScenario} class - */ + * Set the id of this {@link AiScenario} instance and return the same instance. + * + * @param id ID of the scenario + * @return The same instance of this {@link AiScenario} class + */ @Nonnull public AiScenario id(@Nonnull final String id) { this.id = id; return this; } /** - * ID of the scenario - * @return id The id of this {@link AiScenario} instance. - **/ + * ID of the scenario + * @return id The id of this {@link AiScenario} instance. + */ @Nonnull public String getId() { return id; } /** - * Set the id of this {@link AiScenario} instance. - * - * @param id ID of the scenario - */ + * Set the id of this {@link AiScenario} instance. + * + * @param id ID of the scenario + */ public void setId( @Nonnull final String id) { this.id = id; } /** - * Set the createdAt of this {@link AiScenario} instance and return the same instance. - * - * @param createdAt Timestamp of resource creation - * @return The same instance of this {@link AiScenario} class - */ + * Set the createdAt of this {@link AiScenario} instance and return the same instance. + * + * @param createdAt Timestamp of resource creation + * @return The same instance of this {@link AiScenario} class + */ @Nonnull public AiScenario createdAt(@Nonnull final OffsetDateTime createdAt) { this.createdAt = createdAt; return this; } /** - * Timestamp of resource creation - * @return createdAt The createdAt of this {@link AiScenario} instance. - **/ + * Timestamp of resource creation + * @return createdAt The createdAt of this {@link AiScenario} instance. + */ @Nonnull public OffsetDateTime getCreatedAt() { return createdAt; } /** - * Set the createdAt of this {@link AiScenario} instance. - * - * @param createdAt Timestamp of resource creation - */ + * Set the createdAt of this {@link AiScenario} instance. + * + * @param createdAt Timestamp of resource creation + */ public void setCreatedAt( @Nonnull final OffsetDateTime createdAt) { this.createdAt = createdAt; } /** - * Set the modifiedAt of this {@link AiScenario} instance and return the same instance. - * - * @param modifiedAt Timestamp of latest resource modification - * @return The same instance of this {@link AiScenario} class - */ + * Set the modifiedAt of this {@link AiScenario} instance and return the same instance. + * + * @param modifiedAt Timestamp of latest resource modification + * @return The same instance of this {@link AiScenario} class + */ @Nonnull public AiScenario modifiedAt(@Nonnull final OffsetDateTime modifiedAt) { this.modifiedAt = modifiedAt; return this; } /** - * Timestamp of latest resource modification - * @return modifiedAt The modifiedAt of this {@link AiScenario} instance. - **/ + * Timestamp of latest resource modification + * @return modifiedAt The modifiedAt of this {@link AiScenario} instance. + */ @Nonnull public OffsetDateTime getModifiedAt() { return modifiedAt; } /** - * Set the modifiedAt of this {@link AiScenario} instance. - * - * @param modifiedAt Timestamp of latest resource modification - */ + * Set the modifiedAt of this {@link AiScenario} instance. + * + * @param modifiedAt Timestamp of latest resource modification + */ public void setModifiedAt( @Nonnull final OffsetDateTime modifiedAt) { this.modifiedAt = modifiedAt; } @@ -336,5 +335,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/AiScenarioLabel.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/AiScenarioLabel.java index 9ed679c08..7f6330683 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/AiScenarioLabel.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/AiScenarioLabel.java @@ -38,7 +38,6 @@ /** * AiScenarioLabel */ - // CHECKSTYLE:OFF public class AiScenarioLabel // CHECKSTYLE:ON @@ -54,57 +53,57 @@ public class AiScenarioLabel private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the key of this {@link AiScenarioLabel} instance and return the same instance. - * - * @param key The key of this {@link AiScenarioLabel} - * @return The same instance of this {@link AiScenarioLabel} class - */ + * Set the key of this {@link AiScenarioLabel} instance and return the same instance. + * + * @param key The key of this {@link AiScenarioLabel} + * @return The same instance of this {@link AiScenarioLabel} class + */ @Nonnull public AiScenarioLabel key(@Nonnull final String key) { this.key = key; return this; } /** - * Get key - * @return key The key of this {@link AiScenarioLabel} instance. - **/ + * Get key + * @return key The key of this {@link AiScenarioLabel} instance. + */ @Nonnull public String getKey() { return key; } /** - * Set the key of this {@link AiScenarioLabel} instance. - * - * @param key The key of this {@link AiScenarioLabel} - */ + * Set the key of this {@link AiScenarioLabel} instance. + * + * @param key The key of this {@link AiScenarioLabel} + */ public void setKey( @Nonnull final String key) { this.key = key; } /** - * Set the value of this {@link AiScenarioLabel} instance and return the same instance. - * - * @param value The value of this {@link AiScenarioLabel} - * @return The same instance of this {@link AiScenarioLabel} class - */ + * Set the value of this {@link AiScenarioLabel} instance and return the same instance. + * + * @param value The value of this {@link AiScenarioLabel} + * @return The same instance of this {@link AiScenarioLabel} class + */ @Nonnull public AiScenarioLabel value(@Nonnull final String value) { this.value = value; return this; } /** - * Get value - * @return value The value of this {@link AiScenarioLabel} instance. - **/ + * Get value + * @return value The value of this {@link AiScenarioLabel} instance. + */ @Nonnull public String getValue() { return value; } /** - * Set the value of this {@link AiScenarioLabel} instance. - * - * @param value The value of this {@link AiScenarioLabel} - */ + * Set the value of this {@link AiScenarioLabel} instance. + * + * @param value The value of this {@link AiScenarioLabel} + */ public void setValue( @Nonnull final String value) { this.value = value; } @@ -187,5 +186,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/AiScenarioList.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/AiScenarioList.java index d7394f2df..09cdcf0c4 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/AiScenarioList.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/AiScenarioList.java @@ -42,7 +42,6 @@ /** * AiScenarioList */ - // CHECKSTYLE:OFF public class AiScenarioList // CHECKSTYLE:ON @@ -58,49 +57,49 @@ public class AiScenarioList private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the count of this {@link AiScenarioList} instance and return the same instance. - * - * @param count Number of the resource instances in the list - * @return The same instance of this {@link AiScenarioList} class - */ + * Set the count of this {@link AiScenarioList} instance and return the same instance. + * + * @param count Number of the resource instances in the list + * @return The same instance of this {@link AiScenarioList} class + */ @Nonnull public AiScenarioList count(@Nonnull final Integer count) { this.count = count; return this; } /** - * Number of the resource instances in the list - * @return count The count of this {@link AiScenarioList} instance. - **/ + * Number of the resource instances in the list + * @return count The count of this {@link AiScenarioList} instance. + */ @Nonnull public Integer getCount() { return count; } /** - * Set the count of this {@link AiScenarioList} instance. - * - * @param count Number of the resource instances in the list - */ + * Set the count of this {@link AiScenarioList} instance. + * + * @param count Number of the resource instances in the list + */ public void setCount( @Nonnull final Integer count) { this.count = count; } /** - * Set the resources of this {@link AiScenarioList} instance and return the same instance. - * - * @param resources The resources of this {@link AiScenarioList} - * @return The same instance of this {@link AiScenarioList} class - */ + * Set the resources of this {@link AiScenarioList} instance and return the same instance. + * + * @param resources The resources of this {@link AiScenarioList} + * @return The same instance of this {@link AiScenarioList} class + */ @Nonnull public AiScenarioList resources(@Nonnull final List resources) { this.resources = resources; return this; } /** - * Add one resources instance to this {@link AiScenarioList}. - * @param resourcesItem The resources that should be added - * @return The same instance of type {@link AiScenarioList} - */ - @Nonnull public AiScenarioList addresourcesItem( @Nonnull final AiScenario resourcesItem) { + * Add one resources instance to this {@link AiScenarioList}. + * @param resourcesItem The resources that should be added + * @return The same instance of type {@link AiScenarioList} + */ + @Nonnull public AiScenarioList addResourcesItem( @Nonnull final AiScenario resourcesItem) { if (this.resources == null) { this.resources = new ArrayList<>(); } @@ -109,18 +108,18 @@ public void setCount( @Nonnull final Integer count) { } /** - * Get resources - * @return resources The resources of this {@link AiScenarioList} instance. - **/ + * Get resources + * @return resources The resources of this {@link AiScenarioList} instance. + */ @Nonnull public List getResources() { return resources; } /** - * Set the resources of this {@link AiScenarioList} instance. - * - * @param resources The resources of this {@link AiScenarioList} - */ + * Set the resources of this {@link AiScenarioList} instance. + * + * @param resources The resources of this {@link AiScenarioList} + */ public void setResources( @Nonnull final List resources) { this.resources = resources; } @@ -203,5 +202,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/AiVersion.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/AiVersion.java index fefcc686a..6d1b0f2aa 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/AiVersion.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/AiVersion.java @@ -39,7 +39,6 @@ /** * AiVersion */ - // CHECKSTYLE:OFF public class AiVersion // CHECKSTYLE:ON @@ -64,141 +63,141 @@ public class AiVersion private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the description of this {@link AiVersion} instance and return the same instance. - * - * @param description Version description - * @return The same instance of this {@link AiVersion} class - */ + * Set the description of this {@link AiVersion} instance and return the same instance. + * + * @param description Version description + * @return The same instance of this {@link AiVersion} class + */ @Nonnull public AiVersion description(@Nonnull final String description) { this.description = description; return this; } /** - * Version description - * @return description The description of this {@link AiVersion} instance. - **/ + * Version description + * @return description The description of this {@link AiVersion} instance. + */ @Nonnull public String getDescription() { return description; } /** - * Set the description of this {@link AiVersion} instance. - * - * @param description Version description - */ + * Set the description of this {@link AiVersion} instance. + * + * @param description Version description + */ public void setDescription( @Nonnull final String description) { this.description = description; } /** - * Set the id of this {@link AiVersion} instance and return the same instance. - * - * @param id Version ID - * @return The same instance of this {@link AiVersion} class - */ + * Set the id of this {@link AiVersion} instance and return the same instance. + * + * @param id Version ID + * @return The same instance of this {@link AiVersion} class + */ @Nonnull public AiVersion id(@Nonnull final String id) { this.id = id; return this; } /** - * Version ID - * @return id The id of this {@link AiVersion} instance. - **/ + * Version ID + * @return id The id of this {@link AiVersion} instance. + */ @Nonnull public String getId() { return id; } /** - * Set the id of this {@link AiVersion} instance. - * - * @param id Version ID - */ + * Set the id of this {@link AiVersion} instance. + * + * @param id Version ID + */ public void setId( @Nonnull final String id) { this.id = id; } /** - * Set the scenarioId of this {@link AiVersion} instance and return the same instance. - * - * @param scenarioId ID of the scenario - * @return The same instance of this {@link AiVersion} class - */ + * Set the scenarioId of this {@link AiVersion} instance and return the same instance. + * + * @param scenarioId ID of the scenario + * @return The same instance of this {@link AiVersion} class + */ @Nonnull public AiVersion scenarioId(@Nonnull final String scenarioId) { this.scenarioId = scenarioId; return this; } /** - * ID of the scenario - * @return scenarioId The scenarioId of this {@link AiVersion} instance. - **/ + * ID of the scenario + * @return scenarioId The scenarioId of this {@link AiVersion} instance. + */ @Nonnull public String getScenarioId() { return scenarioId; } /** - * Set the scenarioId of this {@link AiVersion} instance. - * - * @param scenarioId ID of the scenario - */ + * Set the scenarioId of this {@link AiVersion} instance. + * + * @param scenarioId ID of the scenario + */ public void setScenarioId( @Nonnull final String scenarioId) { this.scenarioId = scenarioId; } /** - * Set the createdAt of this {@link AiVersion} instance and return the same instance. - * - * @param createdAt Timestamp of resource creation - * @return The same instance of this {@link AiVersion} class - */ + * Set the createdAt of this {@link AiVersion} instance and return the same instance. + * + * @param createdAt Timestamp of resource creation + * @return The same instance of this {@link AiVersion} class + */ @Nonnull public AiVersion createdAt(@Nonnull final OffsetDateTime createdAt) { this.createdAt = createdAt; return this; } /** - * Timestamp of resource creation - * @return createdAt The createdAt of this {@link AiVersion} instance. - **/ + * Timestamp of resource creation + * @return createdAt The createdAt of this {@link AiVersion} instance. + */ @Nonnull public OffsetDateTime getCreatedAt() { return createdAt; } /** - * Set the createdAt of this {@link AiVersion} instance. - * - * @param createdAt Timestamp of resource creation - */ + * Set the createdAt of this {@link AiVersion} instance. + * + * @param createdAt Timestamp of resource creation + */ public void setCreatedAt( @Nonnull final OffsetDateTime createdAt) { this.createdAt = createdAt; } /** - * Set the modifiedAt of this {@link AiVersion} instance and return the same instance. - * - * @param modifiedAt Timestamp of latest resource modification - * @return The same instance of this {@link AiVersion} class - */ + * Set the modifiedAt of this {@link AiVersion} instance and return the same instance. + * + * @param modifiedAt Timestamp of latest resource modification + * @return The same instance of this {@link AiVersion} class + */ @Nonnull public AiVersion modifiedAt(@Nonnull final OffsetDateTime modifiedAt) { this.modifiedAt = modifiedAt; return this; } /** - * Timestamp of latest resource modification - * @return modifiedAt The modifiedAt of this {@link AiVersion} instance. - **/ + * Timestamp of latest resource modification + * @return modifiedAt The modifiedAt of this {@link AiVersion} instance. + */ @Nonnull public OffsetDateTime getModifiedAt() { return modifiedAt; } /** - * Set the modifiedAt of this {@link AiVersion} instance. - * - * @param modifiedAt Timestamp of latest resource modification - */ + * Set the modifiedAt of this {@link AiVersion} instance. + * + * @param modifiedAt Timestamp of latest resource modification + */ public void setModifiedAt( @Nonnull final OffsetDateTime modifiedAt) { this.modifiedAt = modifiedAt; } @@ -287,5 +286,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/AiVersionList.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/AiVersionList.java index 85f7ef35b..10a2fe6b1 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/AiVersionList.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/AiVersionList.java @@ -42,7 +42,6 @@ /** * AiVersionList */ - // CHECKSTYLE:OFF public class AiVersionList // CHECKSTYLE:ON @@ -58,49 +57,49 @@ public class AiVersionList private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the count of this {@link AiVersionList} instance and return the same instance. - * - * @param count Number of the resource instances in the list - * @return The same instance of this {@link AiVersionList} class - */ + * Set the count of this {@link AiVersionList} instance and return the same instance. + * + * @param count Number of the resource instances in the list + * @return The same instance of this {@link AiVersionList} class + */ @Nonnull public AiVersionList count(@Nonnull final Integer count) { this.count = count; return this; } /** - * Number of the resource instances in the list - * @return count The count of this {@link AiVersionList} instance. - **/ + * Number of the resource instances in the list + * @return count The count of this {@link AiVersionList} instance. + */ @Nonnull public Integer getCount() { return count; } /** - * Set the count of this {@link AiVersionList} instance. - * - * @param count Number of the resource instances in the list - */ + * Set the count of this {@link AiVersionList} instance. + * + * @param count Number of the resource instances in the list + */ public void setCount( @Nonnull final Integer count) { this.count = count; } /** - * Set the resources of this {@link AiVersionList} instance and return the same instance. - * - * @param resources The resources of this {@link AiVersionList} - * @return The same instance of this {@link AiVersionList} class - */ + * Set the resources of this {@link AiVersionList} instance and return the same instance. + * + * @param resources The resources of this {@link AiVersionList} + * @return The same instance of this {@link AiVersionList} class + */ @Nonnull public AiVersionList resources(@Nonnull final List resources) { this.resources = resources; return this; } /** - * Add one resources instance to this {@link AiVersionList}. - * @param resourcesItem The resources that should be added - * @return The same instance of type {@link AiVersionList} - */ - @Nonnull public AiVersionList addresourcesItem( @Nonnull final AiVersion resourcesItem) { + * Add one resources instance to this {@link AiVersionList}. + * @param resourcesItem The resources that should be added + * @return The same instance of type {@link AiVersionList} + */ + @Nonnull public AiVersionList addResourcesItem( @Nonnull final AiVersion resourcesItem) { if (this.resources == null) { this.resources = new ArrayList<>(); } @@ -109,18 +108,18 @@ public void setCount( @Nonnull final Integer count) { } /** - * Get resources - * @return resources The resources of this {@link AiVersionList} instance. - **/ + * Get resources + * @return resources The resources of this {@link AiVersionList} instance. + */ @Nonnull public List getResources() { return resources; } /** - * Set the resources of this {@link AiVersionList} instance. - * - * @param resources The resources of this {@link AiVersionList} - */ + * Set the resources of this {@link AiVersionList} instance. + * + * @param resources The resources of this {@link AiVersionList} + */ public void setResources( @Nonnull final List resources) { this.resources = resources; } @@ -203,5 +202,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/ArtifactQuery400Response.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/ArtifactQuery400Response.java index 5f576b4e7..bf86ecde4 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/ArtifactQuery400Response.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/ArtifactQuery400Response.java @@ -39,7 +39,6 @@ /** * ArtifactQuery400Response */ - // CHECKSTYLE:OFF public class ArtifactQuery400Response // CHECKSTYLE:ON @@ -52,29 +51,29 @@ public class ArtifactQuery400Response private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the error of this {@link ArtifactQuery400Response} instance and return the same instance. - * - * @param error The error of this {@link ArtifactQuery400Response} - * @return The same instance of this {@link ArtifactQuery400Response} class - */ + * Set the error of this {@link ArtifactQuery400Response} instance and return the same instance. + * + * @param error The error of this {@link ArtifactQuery400Response} + * @return The same instance of this {@link ArtifactQuery400Response} class + */ @Nonnull public ArtifactQuery400Response error(@Nonnull final AiApiError error) { this.error = error; return this; } /** - * Get error - * @return error The error of this {@link ArtifactQuery400Response} instance. - **/ + * Get error + * @return error The error of this {@link ArtifactQuery400Response} instance. + */ @Nonnull public AiApiError getError() { return error; } /** - * Set the error of this {@link ArtifactQuery400Response} instance. - * - * @param error The error of this {@link ArtifactQuery400Response} - */ + * Set the error of this {@link ArtifactQuery400Response} instance. + * + * @param error The error of this {@link ArtifactQuery400Response} + */ public void setError( @Nonnull final AiApiError error) { this.error = error; } @@ -155,5 +154,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndAllArgoCDApplicationData.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndAllArgoCDApplicationData.java index 41c28fdc6..0521fe9eb 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndAllArgoCDApplicationData.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndAllArgoCDApplicationData.java @@ -42,7 +42,6 @@ /** * list of applications */ - // CHECKSTYLE:OFF public class BckndAllArgoCDApplicationData // CHECKSTYLE:ON @@ -58,49 +57,49 @@ public class BckndAllArgoCDApplicationData private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the count of this {@link BckndAllArgoCDApplicationData} instance and return the same instance. - * - * @param count Number of the resource instances in the list - * @return The same instance of this {@link BckndAllArgoCDApplicationData} class - */ + * Set the count of this {@link BckndAllArgoCDApplicationData} instance and return the same instance. + * + * @param count Number of the resource instances in the list + * @return The same instance of this {@link BckndAllArgoCDApplicationData} class + */ @Nonnull public BckndAllArgoCDApplicationData count(@Nonnull final Integer count) { this.count = count; return this; } /** - * Number of the resource instances in the list - * @return count The count of this {@link BckndAllArgoCDApplicationData} instance. - **/ + * Number of the resource instances in the list + * @return count The count of this {@link BckndAllArgoCDApplicationData} instance. + */ @Nonnull public Integer getCount() { return count; } /** - * Set the count of this {@link BckndAllArgoCDApplicationData} instance. - * - * @param count Number of the resource instances in the list - */ + * Set the count of this {@link BckndAllArgoCDApplicationData} instance. + * + * @param count Number of the resource instances in the list + */ public void setCount( @Nonnull final Integer count) { this.count = count; } /** - * Set the resources of this {@link BckndAllArgoCDApplicationData} instance and return the same instance. - * - * @param resources The resources of this {@link BckndAllArgoCDApplicationData} - * @return The same instance of this {@link BckndAllArgoCDApplicationData} class - */ + * Set the resources of this {@link BckndAllArgoCDApplicationData} instance and return the same instance. + * + * @param resources The resources of this {@link BckndAllArgoCDApplicationData} + * @return The same instance of this {@link BckndAllArgoCDApplicationData} class + */ @Nonnull public BckndAllArgoCDApplicationData resources(@Nonnull final List resources) { this.resources = resources; return this; } /** - * Add one resources instance to this {@link BckndAllArgoCDApplicationData}. - * @param resourcesItem The resources that should be added - * @return The same instance of type {@link BckndAllArgoCDApplicationData} - */ - @Nonnull public BckndAllArgoCDApplicationData addresourcesItem( @Nonnull final BckndArgoCDApplicationData resourcesItem) { + * Add one resources instance to this {@link BckndAllArgoCDApplicationData}. + * @param resourcesItem The resources that should be added + * @return The same instance of type {@link BckndAllArgoCDApplicationData} + */ + @Nonnull public BckndAllArgoCDApplicationData addResourcesItem( @Nonnull final BckndArgoCDApplicationData resourcesItem) { if (this.resources == null) { this.resources = new ArrayList<>(); } @@ -109,18 +108,18 @@ public void setCount( @Nonnull final Integer count) { } /** - * Get resources - * @return resources The resources of this {@link BckndAllArgoCDApplicationData} instance. - **/ + * Get resources + * @return resources The resources of this {@link BckndAllArgoCDApplicationData} instance. + */ @Nonnull public List getResources() { return resources; } /** - * Set the resources of this {@link BckndAllArgoCDApplicationData} instance. - * - * @param resources The resources of this {@link BckndAllArgoCDApplicationData} - */ + * Set the resources of this {@link BckndAllArgoCDApplicationData} instance. + * + * @param resources The resources of this {@link BckndAllArgoCDApplicationData} + */ public void setResources( @Nonnull final List resources) { this.resources = resources; } @@ -203,5 +202,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndArgoCDApplicationBaseData.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndArgoCDApplicationBaseData.java index b1d4d8c97..0516e2cbd 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndArgoCDApplicationBaseData.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndArgoCDApplicationBaseData.java @@ -38,7 +38,6 @@ /** * BckndArgoCDApplicationBaseData */ - // CHECKSTYLE:OFF public class BckndArgoCDApplicationBaseData // CHECKSTYLE:ON @@ -57,85 +56,85 @@ public class BckndArgoCDApplicationBaseData private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the repositoryUrl of this {@link BckndArgoCDApplicationBaseData} instance and return the same instance. - * - * @param repositoryUrl URL of the repository to synchronise - * @return The same instance of this {@link BckndArgoCDApplicationBaseData} class - */ + * Set the repositoryUrl of this {@link BckndArgoCDApplicationBaseData} instance and return the same instance. + * + * @param repositoryUrl URL of the repository to synchronise + * @return The same instance of this {@link BckndArgoCDApplicationBaseData} class + */ @Nonnull public BckndArgoCDApplicationBaseData repositoryUrl(@Nonnull final String repositoryUrl) { this.repositoryUrl = repositoryUrl; return this; } /** - * URL of the repository to synchronise - * @return repositoryUrl The repositoryUrl of this {@link BckndArgoCDApplicationBaseData} instance. - **/ + * URL of the repository to synchronise + * @return repositoryUrl The repositoryUrl of this {@link BckndArgoCDApplicationBaseData} instance. + */ @Nonnull public String getRepositoryUrl() { return repositoryUrl; } /** - * Set the repositoryUrl of this {@link BckndArgoCDApplicationBaseData} instance. - * - * @param repositoryUrl URL of the repository to synchronise - */ + * Set the repositoryUrl of this {@link BckndArgoCDApplicationBaseData} instance. + * + * @param repositoryUrl URL of the repository to synchronise + */ public void setRepositoryUrl( @Nonnull final String repositoryUrl) { this.repositoryUrl = repositoryUrl; } /** - * Set the revision of this {@link BckndArgoCDApplicationBaseData} instance and return the same instance. - * - * @param revision revision to synchronise - * @return The same instance of this {@link BckndArgoCDApplicationBaseData} class - */ + * Set the revision of this {@link BckndArgoCDApplicationBaseData} instance and return the same instance. + * + * @param revision revision to synchronise + * @return The same instance of this {@link BckndArgoCDApplicationBaseData} class + */ @Nonnull public BckndArgoCDApplicationBaseData revision(@Nonnull final String revision) { this.revision = revision; return this; } /** - * revision to synchronise - * @return revision The revision of this {@link BckndArgoCDApplicationBaseData} instance. - **/ + * revision to synchronise + * @return revision The revision of this {@link BckndArgoCDApplicationBaseData} instance. + */ @Nonnull public String getRevision() { return revision; } /** - * Set the revision of this {@link BckndArgoCDApplicationBaseData} instance. - * - * @param revision revision to synchronise - */ + * Set the revision of this {@link BckndArgoCDApplicationBaseData} instance. + * + * @param revision revision to synchronise + */ public void setRevision( @Nonnull final String revision) { this.revision = revision; } /** - * Set the path of this {@link BckndArgoCDApplicationBaseData} instance and return the same instance. - * - * @param path path within the repository to synchronise - * @return The same instance of this {@link BckndArgoCDApplicationBaseData} class - */ + * Set the path of this {@link BckndArgoCDApplicationBaseData} instance and return the same instance. + * + * @param path path within the repository to synchronise + * @return The same instance of this {@link BckndArgoCDApplicationBaseData} class + */ @Nonnull public BckndArgoCDApplicationBaseData path(@Nonnull final String path) { this.path = path; return this; } /** - * path within the repository to synchronise - * @return path The path of this {@link BckndArgoCDApplicationBaseData} instance. - **/ + * path within the repository to synchronise + * @return path The path of this {@link BckndArgoCDApplicationBaseData} instance. + */ @Nonnull public String getPath() { return path; } /** - * Set the path of this {@link BckndArgoCDApplicationBaseData} instance. - * - * @param path path within the repository to synchronise - */ + * Set the path of this {@link BckndArgoCDApplicationBaseData} instance. + * + * @param path path within the repository to synchronise + */ public void setPath( @Nonnull final String path) { this.path = path; } @@ -220,5 +219,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndArgoCDApplicationCreationResponse.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndArgoCDApplicationCreationResponse.java index 4dfe573fe..629d770ca 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndArgoCDApplicationCreationResponse.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndArgoCDApplicationCreationResponse.java @@ -38,7 +38,6 @@ /** * BckndArgoCDApplicationCreationResponse */ - // CHECKSTYLE:OFF public class BckndArgoCDApplicationCreationResponse // CHECKSTYLE:ON @@ -54,57 +53,57 @@ public class BckndArgoCDApplicationCreationResponse private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the id of this {@link BckndArgoCDApplicationCreationResponse} instance and return the same instance. - * - * @param id Generic ID - * @return The same instance of this {@link BckndArgoCDApplicationCreationResponse} class - */ + * Set the id of this {@link BckndArgoCDApplicationCreationResponse} instance and return the same instance. + * + * @param id Generic ID + * @return The same instance of this {@link BckndArgoCDApplicationCreationResponse} class + */ @Nonnull public BckndArgoCDApplicationCreationResponse id(@Nonnull final String id) { this.id = id; return this; } /** - * Generic ID - * @return id The id of this {@link BckndArgoCDApplicationCreationResponse} instance. - **/ + * Generic ID + * @return id The id of this {@link BckndArgoCDApplicationCreationResponse} instance. + */ @Nonnull public String getId() { return id; } /** - * Set the id of this {@link BckndArgoCDApplicationCreationResponse} instance. - * - * @param id Generic ID - */ + * Set the id of this {@link BckndArgoCDApplicationCreationResponse} instance. + * + * @param id Generic ID + */ public void setId( @Nonnull final String id) { this.id = id; } /** - * Set the message of this {@link BckndArgoCDApplicationCreationResponse} instance and return the same instance. - * - * @param message Message - * @return The same instance of this {@link BckndArgoCDApplicationCreationResponse} class - */ + * Set the message of this {@link BckndArgoCDApplicationCreationResponse} instance and return the same instance. + * + * @param message Message + * @return The same instance of this {@link BckndArgoCDApplicationCreationResponse} class + */ @Nonnull public BckndArgoCDApplicationCreationResponse message(@Nonnull final String message) { this.message = message; return this; } /** - * Message - * @return message The message of this {@link BckndArgoCDApplicationCreationResponse} instance. - **/ + * Message + * @return message The message of this {@link BckndArgoCDApplicationCreationResponse} instance. + */ @Nonnull public String getMessage() { return message; } /** - * Set the message of this {@link BckndArgoCDApplicationCreationResponse} instance. - * - * @param message Message - */ + * Set the message of this {@link BckndArgoCDApplicationCreationResponse} instance. + * + * @param message Message + */ public void setMessage( @Nonnull final String message) { this.message = message; } @@ -187,5 +186,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndArgoCDApplicationData.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndArgoCDApplicationData.java index f14f7b364..62fd1ab7d 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndArgoCDApplicationData.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndArgoCDApplicationData.java @@ -38,7 +38,6 @@ /** * BckndArgoCDApplicationData */ - // CHECKSTYLE:OFF public class BckndArgoCDApplicationData // CHECKSTYLE:ON @@ -60,113 +59,113 @@ public class BckndArgoCDApplicationData private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the repositoryUrl of this {@link BckndArgoCDApplicationData} instance and return the same instance. - * - * @param repositoryUrl URL of the repository to synchronise - * @return The same instance of this {@link BckndArgoCDApplicationData} class - */ + * Set the repositoryUrl of this {@link BckndArgoCDApplicationData} instance and return the same instance. + * + * @param repositoryUrl URL of the repository to synchronise + * @return The same instance of this {@link BckndArgoCDApplicationData} class + */ @Nonnull public BckndArgoCDApplicationData repositoryUrl(@Nonnull final String repositoryUrl) { this.repositoryUrl = repositoryUrl; return this; } /** - * URL of the repository to synchronise - * @return repositoryUrl The repositoryUrl of this {@link BckndArgoCDApplicationData} instance. - **/ + * URL of the repository to synchronise + * @return repositoryUrl The repositoryUrl of this {@link BckndArgoCDApplicationData} instance. + */ @Nonnull public String getRepositoryUrl() { return repositoryUrl; } /** - * Set the repositoryUrl of this {@link BckndArgoCDApplicationData} instance. - * - * @param repositoryUrl URL of the repository to synchronise - */ + * Set the repositoryUrl of this {@link BckndArgoCDApplicationData} instance. + * + * @param repositoryUrl URL of the repository to synchronise + */ public void setRepositoryUrl( @Nonnull final String repositoryUrl) { this.repositoryUrl = repositoryUrl; } /** - * Set the revision of this {@link BckndArgoCDApplicationData} instance and return the same instance. - * - * @param revision revision to synchronise - * @return The same instance of this {@link BckndArgoCDApplicationData} class - */ + * Set the revision of this {@link BckndArgoCDApplicationData} instance and return the same instance. + * + * @param revision revision to synchronise + * @return The same instance of this {@link BckndArgoCDApplicationData} class + */ @Nonnull public BckndArgoCDApplicationData revision(@Nonnull final String revision) { this.revision = revision; return this; } /** - * revision to synchronise - * @return revision The revision of this {@link BckndArgoCDApplicationData} instance. - **/ + * revision to synchronise + * @return revision The revision of this {@link BckndArgoCDApplicationData} instance. + */ @Nonnull public String getRevision() { return revision; } /** - * Set the revision of this {@link BckndArgoCDApplicationData} instance. - * - * @param revision revision to synchronise - */ + * Set the revision of this {@link BckndArgoCDApplicationData} instance. + * + * @param revision revision to synchronise + */ public void setRevision( @Nonnull final String revision) { this.revision = revision; } /** - * Set the path of this {@link BckndArgoCDApplicationData} instance and return the same instance. - * - * @param path path within the repository to synchronise - * @return The same instance of this {@link BckndArgoCDApplicationData} class - */ + * Set the path of this {@link BckndArgoCDApplicationData} instance and return the same instance. + * + * @param path path within the repository to synchronise + * @return The same instance of this {@link BckndArgoCDApplicationData} class + */ @Nonnull public BckndArgoCDApplicationData path(@Nonnull final String path) { this.path = path; return this; } /** - * path within the repository to synchronise - * @return path The path of this {@link BckndArgoCDApplicationData} instance. - **/ + * path within the repository to synchronise + * @return path The path of this {@link BckndArgoCDApplicationData} instance. + */ @Nonnull public String getPath() { return path; } /** - * Set the path of this {@link BckndArgoCDApplicationData} instance. - * - * @param path path within the repository to synchronise - */ + * Set the path of this {@link BckndArgoCDApplicationData} instance. + * + * @param path path within the repository to synchronise + */ public void setPath( @Nonnull final String path) { this.path = path; } /** - * Set the applicationName of this {@link BckndArgoCDApplicationData} instance and return the same instance. - * - * @param applicationName ArgoCD application name - * @return The same instance of this {@link BckndArgoCDApplicationData} class - */ + * Set the applicationName of this {@link BckndArgoCDApplicationData} instance and return the same instance. + * + * @param applicationName ArgoCD application name + * @return The same instance of this {@link BckndArgoCDApplicationData} class + */ @Nonnull public BckndArgoCDApplicationData applicationName(@Nonnull final String applicationName) { this.applicationName = applicationName; return this; } /** - * ArgoCD application name - * @return applicationName The applicationName of this {@link BckndArgoCDApplicationData} instance. - **/ + * ArgoCD application name + * @return applicationName The applicationName of this {@link BckndArgoCDApplicationData} instance. + */ @Nonnull public String getApplicationName() { return applicationName; } /** - * Set the applicationName of this {@link BckndArgoCDApplicationData} instance. - * - * @param applicationName ArgoCD application name - */ + * Set the applicationName of this {@link BckndArgoCDApplicationData} instance. + * + * @param applicationName ArgoCD application name + */ public void setApplicationName( @Nonnull final String applicationName) { this.applicationName = applicationName; } @@ -253,5 +252,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndArgoCDApplicationDataRepoName.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndArgoCDApplicationDataRepoName.java index 9c2ba8775..8601bdffe 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndArgoCDApplicationDataRepoName.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndArgoCDApplicationDataRepoName.java @@ -38,7 +38,6 @@ /** * BckndArgoCDApplicationDataRepoName */ - // CHECKSTYLE:OFF public class BckndArgoCDApplicationDataRepoName // CHECKSTYLE:ON @@ -60,113 +59,113 @@ public class BckndArgoCDApplicationDataRepoName private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the repositoryName of this {@link BckndArgoCDApplicationDataRepoName} instance and return the same instance. - * - * @param repositoryName Name of the repository to synchronise - * @return The same instance of this {@link BckndArgoCDApplicationDataRepoName} class - */ + * Set the repositoryName of this {@link BckndArgoCDApplicationDataRepoName} instance and return the same instance. + * + * @param repositoryName Name of the repository to synchronise + * @return The same instance of this {@link BckndArgoCDApplicationDataRepoName} class + */ @Nonnull public BckndArgoCDApplicationDataRepoName repositoryName(@Nonnull final String repositoryName) { this.repositoryName = repositoryName; return this; } /** - * Name of the repository to synchronise - * @return repositoryName The repositoryName of this {@link BckndArgoCDApplicationDataRepoName} instance. - **/ + * Name of the repository to synchronise + * @return repositoryName The repositoryName of this {@link BckndArgoCDApplicationDataRepoName} instance. + */ @Nonnull public String getRepositoryName() { return repositoryName; } /** - * Set the repositoryName of this {@link BckndArgoCDApplicationDataRepoName} instance. - * - * @param repositoryName Name of the repository to synchronise - */ + * Set the repositoryName of this {@link BckndArgoCDApplicationDataRepoName} instance. + * + * @param repositoryName Name of the repository to synchronise + */ public void setRepositoryName( @Nonnull final String repositoryName) { this.repositoryName = repositoryName; } /** - * Set the revision of this {@link BckndArgoCDApplicationDataRepoName} instance and return the same instance. - * - * @param revision revision to synchronise - * @return The same instance of this {@link BckndArgoCDApplicationDataRepoName} class - */ + * Set the revision of this {@link BckndArgoCDApplicationDataRepoName} instance and return the same instance. + * + * @param revision revision to synchronise + * @return The same instance of this {@link BckndArgoCDApplicationDataRepoName} class + */ @Nonnull public BckndArgoCDApplicationDataRepoName revision(@Nonnull final String revision) { this.revision = revision; return this; } /** - * revision to synchronise - * @return revision The revision of this {@link BckndArgoCDApplicationDataRepoName} instance. - **/ + * revision to synchronise + * @return revision The revision of this {@link BckndArgoCDApplicationDataRepoName} instance. + */ @Nonnull public String getRevision() { return revision; } /** - * Set the revision of this {@link BckndArgoCDApplicationDataRepoName} instance. - * - * @param revision revision to synchronise - */ + * Set the revision of this {@link BckndArgoCDApplicationDataRepoName} instance. + * + * @param revision revision to synchronise + */ public void setRevision( @Nonnull final String revision) { this.revision = revision; } /** - * Set the path of this {@link BckndArgoCDApplicationDataRepoName} instance and return the same instance. - * - * @param path path within the repository to synchronise - * @return The same instance of this {@link BckndArgoCDApplicationDataRepoName} class - */ + * Set the path of this {@link BckndArgoCDApplicationDataRepoName} instance and return the same instance. + * + * @param path path within the repository to synchronise + * @return The same instance of this {@link BckndArgoCDApplicationDataRepoName} class + */ @Nonnull public BckndArgoCDApplicationDataRepoName path(@Nonnull final String path) { this.path = path; return this; } /** - * path within the repository to synchronise - * @return path The path of this {@link BckndArgoCDApplicationDataRepoName} instance. - **/ + * path within the repository to synchronise + * @return path The path of this {@link BckndArgoCDApplicationDataRepoName} instance. + */ @Nonnull public String getPath() { return path; } /** - * Set the path of this {@link BckndArgoCDApplicationDataRepoName} instance. - * - * @param path path within the repository to synchronise - */ + * Set the path of this {@link BckndArgoCDApplicationDataRepoName} instance. + * + * @param path path within the repository to synchronise + */ public void setPath( @Nonnull final String path) { this.path = path; } /** - * Set the applicationName of this {@link BckndArgoCDApplicationDataRepoName} instance and return the same instance. - * - * @param applicationName ArgoCD application name - * @return The same instance of this {@link BckndArgoCDApplicationDataRepoName} class - */ + * Set the applicationName of this {@link BckndArgoCDApplicationDataRepoName} instance and return the same instance. + * + * @param applicationName ArgoCD application name + * @return The same instance of this {@link BckndArgoCDApplicationDataRepoName} class + */ @Nonnull public BckndArgoCDApplicationDataRepoName applicationName(@Nonnull final String applicationName) { this.applicationName = applicationName; return this; } /** - * ArgoCD application name - * @return applicationName The applicationName of this {@link BckndArgoCDApplicationDataRepoName} instance. - **/ + * ArgoCD application name + * @return applicationName The applicationName of this {@link BckndArgoCDApplicationDataRepoName} instance. + */ @Nonnull public String getApplicationName() { return applicationName; } /** - * Set the applicationName of this {@link BckndArgoCDApplicationDataRepoName} instance. - * - * @param applicationName ArgoCD application name - */ + * Set the applicationName of this {@link BckndArgoCDApplicationDataRepoName} instance. + * + * @param applicationName ArgoCD application name + */ public void setApplicationName( @Nonnull final String applicationName) { this.applicationName = applicationName; } @@ -253,5 +252,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndArgoCDApplicationDeletionResponse.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndArgoCDApplicationDeletionResponse.java index 16da60f50..a85ba2dff 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndArgoCDApplicationDeletionResponse.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndArgoCDApplicationDeletionResponse.java @@ -38,7 +38,6 @@ /** * BckndArgoCDApplicationDeletionResponse */ - // CHECKSTYLE:OFF public class BckndArgoCDApplicationDeletionResponse // CHECKSTYLE:ON @@ -54,57 +53,57 @@ public class BckndArgoCDApplicationDeletionResponse private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the id of this {@link BckndArgoCDApplicationDeletionResponse} instance and return the same instance. - * - * @param id Generic ID - * @return The same instance of this {@link BckndArgoCDApplicationDeletionResponse} class - */ + * Set the id of this {@link BckndArgoCDApplicationDeletionResponse} instance and return the same instance. + * + * @param id Generic ID + * @return The same instance of this {@link BckndArgoCDApplicationDeletionResponse} class + */ @Nonnull public BckndArgoCDApplicationDeletionResponse id(@Nonnull final String id) { this.id = id; return this; } /** - * Generic ID - * @return id The id of this {@link BckndArgoCDApplicationDeletionResponse} instance. - **/ + * Generic ID + * @return id The id of this {@link BckndArgoCDApplicationDeletionResponse} instance. + */ @Nonnull public String getId() { return id; } /** - * Set the id of this {@link BckndArgoCDApplicationDeletionResponse} instance. - * - * @param id Generic ID - */ + * Set the id of this {@link BckndArgoCDApplicationDeletionResponse} instance. + * + * @param id Generic ID + */ public void setId( @Nonnull final String id) { this.id = id; } /** - * Set the message of this {@link BckndArgoCDApplicationDeletionResponse} instance and return the same instance. - * - * @param message Message - * @return The same instance of this {@link BckndArgoCDApplicationDeletionResponse} class - */ + * Set the message of this {@link BckndArgoCDApplicationDeletionResponse} instance and return the same instance. + * + * @param message Message + * @return The same instance of this {@link BckndArgoCDApplicationDeletionResponse} class + */ @Nonnull public BckndArgoCDApplicationDeletionResponse message(@Nonnull final String message) { this.message = message; return this; } /** - * Message - * @return message The message of this {@link BckndArgoCDApplicationDeletionResponse} instance. - **/ + * Message + * @return message The message of this {@link BckndArgoCDApplicationDeletionResponse} instance. + */ @Nonnull public String getMessage() { return message; } /** - * Set the message of this {@link BckndArgoCDApplicationDeletionResponse} instance. - * - * @param message Message - */ + * Set the message of this {@link BckndArgoCDApplicationDeletionResponse} instance. + * + * @param message Message + */ public void setMessage( @Nonnull final String message) { this.message = message; } @@ -187,5 +186,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndArgoCDApplicationModificationResponse.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndArgoCDApplicationModificationResponse.java index f3fedebdd..b617f08cf 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndArgoCDApplicationModificationResponse.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndArgoCDApplicationModificationResponse.java @@ -38,7 +38,6 @@ /** * BckndArgoCDApplicationModificationResponse */ - // CHECKSTYLE:OFF public class BckndArgoCDApplicationModificationResponse // CHECKSTYLE:ON @@ -54,57 +53,57 @@ public class BckndArgoCDApplicationModificationResponse private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the id of this {@link BckndArgoCDApplicationModificationResponse} instance and return the same instance. - * - * @param id Generic ID - * @return The same instance of this {@link BckndArgoCDApplicationModificationResponse} class - */ + * Set the id of this {@link BckndArgoCDApplicationModificationResponse} instance and return the same instance. + * + * @param id Generic ID + * @return The same instance of this {@link BckndArgoCDApplicationModificationResponse} class + */ @Nonnull public BckndArgoCDApplicationModificationResponse id(@Nonnull final String id) { this.id = id; return this; } /** - * Generic ID - * @return id The id of this {@link BckndArgoCDApplicationModificationResponse} instance. - **/ + * Generic ID + * @return id The id of this {@link BckndArgoCDApplicationModificationResponse} instance. + */ @Nonnull public String getId() { return id; } /** - * Set the id of this {@link BckndArgoCDApplicationModificationResponse} instance. - * - * @param id Generic ID - */ + * Set the id of this {@link BckndArgoCDApplicationModificationResponse} instance. + * + * @param id Generic ID + */ public void setId( @Nonnull final String id) { this.id = id; } /** - * Set the message of this {@link BckndArgoCDApplicationModificationResponse} instance and return the same instance. - * - * @param message Message - * @return The same instance of this {@link BckndArgoCDApplicationModificationResponse} class - */ + * Set the message of this {@link BckndArgoCDApplicationModificationResponse} instance and return the same instance. + * + * @param message Message + * @return The same instance of this {@link BckndArgoCDApplicationModificationResponse} class + */ @Nonnull public BckndArgoCDApplicationModificationResponse message(@Nonnull final String message) { this.message = message; return this; } /** - * Message - * @return message The message of this {@link BckndArgoCDApplicationModificationResponse} instance. - **/ + * Message + * @return message The message of this {@link BckndArgoCDApplicationModificationResponse} instance. + */ @Nonnull public String getMessage() { return message; } /** - * Set the message of this {@link BckndArgoCDApplicationModificationResponse} instance. - * - * @param message Message - */ + * Set the message of this {@link BckndArgoCDApplicationModificationResponse} instance. + * + * @param message Message + */ public void setMessage( @Nonnull final String message) { this.message = message; } @@ -187,5 +186,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndArgoCDApplicationRefreshResponse.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndArgoCDApplicationRefreshResponse.java index 81b81b0c1..da5399dc2 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndArgoCDApplicationRefreshResponse.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndArgoCDApplicationRefreshResponse.java @@ -38,7 +38,6 @@ /** * BckndArgoCDApplicationRefreshResponse */ - // CHECKSTYLE:OFF public class BckndArgoCDApplicationRefreshResponse // CHECKSTYLE:ON @@ -54,57 +53,57 @@ public class BckndArgoCDApplicationRefreshResponse private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the id of this {@link BckndArgoCDApplicationRefreshResponse} instance and return the same instance. - * - * @param id Generic ID - * @return The same instance of this {@link BckndArgoCDApplicationRefreshResponse} class - */ + * Set the id of this {@link BckndArgoCDApplicationRefreshResponse} instance and return the same instance. + * + * @param id Generic ID + * @return The same instance of this {@link BckndArgoCDApplicationRefreshResponse} class + */ @Nonnull public BckndArgoCDApplicationRefreshResponse id(@Nonnull final String id) { this.id = id; return this; } /** - * Generic ID - * @return id The id of this {@link BckndArgoCDApplicationRefreshResponse} instance. - **/ + * Generic ID + * @return id The id of this {@link BckndArgoCDApplicationRefreshResponse} instance. + */ @Nonnull public String getId() { return id; } /** - * Set the id of this {@link BckndArgoCDApplicationRefreshResponse} instance. - * - * @param id Generic ID - */ + * Set the id of this {@link BckndArgoCDApplicationRefreshResponse} instance. + * + * @param id Generic ID + */ public void setId( @Nonnull final String id) { this.id = id; } /** - * Set the message of this {@link BckndArgoCDApplicationRefreshResponse} instance and return the same instance. - * - * @param message Message - * @return The same instance of this {@link BckndArgoCDApplicationRefreshResponse} class - */ + * Set the message of this {@link BckndArgoCDApplicationRefreshResponse} instance and return the same instance. + * + * @param message Message + * @return The same instance of this {@link BckndArgoCDApplicationRefreshResponse} class + */ @Nonnull public BckndArgoCDApplicationRefreshResponse message(@Nonnull final String message) { this.message = message; return this; } /** - * Message - * @return message The message of this {@link BckndArgoCDApplicationRefreshResponse} instance. - **/ + * Message + * @return message The message of this {@link BckndArgoCDApplicationRefreshResponse} instance. + */ @Nonnull public String getMessage() { return message; } /** - * Set the message of this {@link BckndArgoCDApplicationRefreshResponse} instance. - * - * @param message Message - */ + * Set the message of this {@link BckndArgoCDApplicationRefreshResponse} instance. + * + * @param message Message + */ public void setMessage( @Nonnull final String message) { this.message = message; } @@ -187,5 +186,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndArgoCDApplicationStatus.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndArgoCDApplicationStatus.java index 4b1c206c8..f01854bc5 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndArgoCDApplicationStatus.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndArgoCDApplicationStatus.java @@ -43,7 +43,6 @@ /** * ArgoCD application definition and status */ - // CHECKSTYLE:OFF public class BckndArgoCDApplicationStatus // CHECKSTYLE:ON @@ -80,217 +79,217 @@ public class BckndArgoCDApplicationStatus private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the healthStatus of this {@link BckndArgoCDApplicationStatus} instance and return the same instance. - * - * @param healthStatus ArgoCD application health status - * @return The same instance of this {@link BckndArgoCDApplicationStatus} class - */ + * Set the healthStatus of this {@link BckndArgoCDApplicationStatus} instance and return the same instance. + * + * @param healthStatus ArgoCD application health status + * @return The same instance of this {@link BckndArgoCDApplicationStatus} class + */ @Nonnull public BckndArgoCDApplicationStatus healthStatus(@Nonnull final String healthStatus) { this.healthStatus = healthStatus; return this; } /** - * ArgoCD application health status - * @return healthStatus The healthStatus of this {@link BckndArgoCDApplicationStatus} instance. - **/ + * ArgoCD application health status + * @return healthStatus The healthStatus of this {@link BckndArgoCDApplicationStatus} instance. + */ @Nonnull public String getHealthStatus() { return healthStatus; } /** - * Set the healthStatus of this {@link BckndArgoCDApplicationStatus} instance. - * - * @param healthStatus ArgoCD application health status - */ + * Set the healthStatus of this {@link BckndArgoCDApplicationStatus} instance. + * + * @param healthStatus ArgoCD application health status + */ public void setHealthStatus( @Nonnull final String healthStatus) { this.healthStatus = healthStatus; } /** - * Set the syncStatus of this {@link BckndArgoCDApplicationStatus} instance and return the same instance. - * - * @param syncStatus ArgoCD application sync status - * @return The same instance of this {@link BckndArgoCDApplicationStatus} class - */ + * Set the syncStatus of this {@link BckndArgoCDApplicationStatus} instance and return the same instance. + * + * @param syncStatus ArgoCD application sync status + * @return The same instance of this {@link BckndArgoCDApplicationStatus} class + */ @Nonnull public BckndArgoCDApplicationStatus syncStatus(@Nonnull final String syncStatus) { this.syncStatus = syncStatus; return this; } /** - * ArgoCD application sync status - * @return syncStatus The syncStatus of this {@link BckndArgoCDApplicationStatus} instance. - **/ + * ArgoCD application sync status + * @return syncStatus The syncStatus of this {@link BckndArgoCDApplicationStatus} instance. + */ @Nonnull public String getSyncStatus() { return syncStatus; } /** - * Set the syncStatus of this {@link BckndArgoCDApplicationStatus} instance. - * - * @param syncStatus ArgoCD application sync status - */ + * Set the syncStatus of this {@link BckndArgoCDApplicationStatus} instance. + * + * @param syncStatus ArgoCD application sync status + */ public void setSyncStatus( @Nonnull final String syncStatus) { this.syncStatus = syncStatus; } /** - * Set the message of this {@link BckndArgoCDApplicationStatus} instance and return the same instance. - * - * @param message ArgoCD application health status message - * @return The same instance of this {@link BckndArgoCDApplicationStatus} class - */ + * Set the message of this {@link BckndArgoCDApplicationStatus} instance and return the same instance. + * + * @param message ArgoCD application health status message + * @return The same instance of this {@link BckndArgoCDApplicationStatus} class + */ @Nonnull public BckndArgoCDApplicationStatus message(@Nonnull final String message) { this.message = message; return this; } /** - * ArgoCD application health status message - * @return message The message of this {@link BckndArgoCDApplicationStatus} instance. - **/ + * ArgoCD application health status message + * @return message The message of this {@link BckndArgoCDApplicationStatus} instance. + */ @Nonnull public String getMessage() { return message; } /** - * Set the message of this {@link BckndArgoCDApplicationStatus} instance. - * - * @param message ArgoCD application health status message - */ + * Set the message of this {@link BckndArgoCDApplicationStatus} instance. + * + * @param message ArgoCD application health status message + */ public void setMessage( @Nonnull final String message) { this.message = message; } /** - * Set the source of this {@link BckndArgoCDApplicationStatus} instance and return the same instance. - * - * @param source The source of this {@link BckndArgoCDApplicationStatus} - * @return The same instance of this {@link BckndArgoCDApplicationStatus} class - */ + * Set the source of this {@link BckndArgoCDApplicationStatus} instance and return the same instance. + * + * @param source The source of this {@link BckndArgoCDApplicationStatus} + * @return The same instance of this {@link BckndArgoCDApplicationStatus} class + */ @Nonnull public BckndArgoCDApplicationStatus source(@Nonnull final BckndArgoCDApplicationStatusSource source) { this.source = source; return this; } /** - * Get source - * @return source The source of this {@link BckndArgoCDApplicationStatus} instance. - **/ + * Get source + * @return source The source of this {@link BckndArgoCDApplicationStatus} instance. + */ @Nonnull public BckndArgoCDApplicationStatusSource getSource() { return source; } /** - * Set the source of this {@link BckndArgoCDApplicationStatus} instance. - * - * @param source The source of this {@link BckndArgoCDApplicationStatus} - */ + * Set the source of this {@link BckndArgoCDApplicationStatus} instance. + * + * @param source The source of this {@link BckndArgoCDApplicationStatus} + */ public void setSource( @Nonnull final BckndArgoCDApplicationStatusSource source) { this.source = source; } /** - * Set the syncFinishedAt of this {@link BckndArgoCDApplicationStatus} instance and return the same instance. - * - * @param syncFinishedAt Gets the timestamp information related to the sync state of the ArgoCD application - * @return The same instance of this {@link BckndArgoCDApplicationStatus} class - */ + * Set the syncFinishedAt of this {@link BckndArgoCDApplicationStatus} instance and return the same instance. + * + * @param syncFinishedAt Gets the timestamp information related to the sync state of the ArgoCD application + * @return The same instance of this {@link BckndArgoCDApplicationStatus} class + */ @Nonnull public BckndArgoCDApplicationStatus syncFinishedAt(@Nonnull final String syncFinishedAt) { this.syncFinishedAt = syncFinishedAt; return this; } /** - * Gets the timestamp information related to the sync state of the ArgoCD application - * @return syncFinishedAt The syncFinishedAt of this {@link BckndArgoCDApplicationStatus} instance. - **/ + * Gets the timestamp information related to the sync state of the ArgoCD application + * @return syncFinishedAt The syncFinishedAt of this {@link BckndArgoCDApplicationStatus} instance. + */ @Nonnull public String getSyncFinishedAt() { return syncFinishedAt; } /** - * Set the syncFinishedAt of this {@link BckndArgoCDApplicationStatus} instance. - * - * @param syncFinishedAt Gets the timestamp information related to the sync state of the ArgoCD application - */ + * Set the syncFinishedAt of this {@link BckndArgoCDApplicationStatus} instance. + * + * @param syncFinishedAt Gets the timestamp information related to the sync state of the ArgoCD application + */ public void setSyncFinishedAt( @Nonnull final String syncFinishedAt) { this.syncFinishedAt = syncFinishedAt; } /** - * Set the syncStartedAt of this {@link BckndArgoCDApplicationStatus} instance and return the same instance. - * - * @param syncStartedAt Get timestamp information related to the sync state of the ArgoCD application - * @return The same instance of this {@link BckndArgoCDApplicationStatus} class - */ + * Set the syncStartedAt of this {@link BckndArgoCDApplicationStatus} instance and return the same instance. + * + * @param syncStartedAt Get timestamp information related to the sync state of the ArgoCD application + * @return The same instance of this {@link BckndArgoCDApplicationStatus} class + */ @Nonnull public BckndArgoCDApplicationStatus syncStartedAt(@Nonnull final String syncStartedAt) { this.syncStartedAt = syncStartedAt; return this; } /** - * Get timestamp information related to the sync state of the ArgoCD application - * @return syncStartedAt The syncStartedAt of this {@link BckndArgoCDApplicationStatus} instance. - **/ + * Get timestamp information related to the sync state of the ArgoCD application + * @return syncStartedAt The syncStartedAt of this {@link BckndArgoCDApplicationStatus} instance. + */ @Nonnull public String getSyncStartedAt() { return syncStartedAt; } /** - * Set the syncStartedAt of this {@link BckndArgoCDApplicationStatus} instance. - * - * @param syncStartedAt Get timestamp information related to the sync state of the ArgoCD application - */ + * Set the syncStartedAt of this {@link BckndArgoCDApplicationStatus} instance. + * + * @param syncStartedAt Get timestamp information related to the sync state of the ArgoCD application + */ public void setSyncStartedAt( @Nonnull final String syncStartedAt) { this.syncStartedAt = syncStartedAt; } /** - * Set the reconciledAt of this {@link BckndArgoCDApplicationStatus} instance and return the same instance. - * - * @param reconciledAt Get timestamp information related to the sync state of the ArgoCD application - * @return The same instance of this {@link BckndArgoCDApplicationStatus} class - */ + * Set the reconciledAt of this {@link BckndArgoCDApplicationStatus} instance and return the same instance. + * + * @param reconciledAt Get timestamp information related to the sync state of the ArgoCD application + * @return The same instance of this {@link BckndArgoCDApplicationStatus} class + */ @Nonnull public BckndArgoCDApplicationStatus reconciledAt(@Nonnull final String reconciledAt) { this.reconciledAt = reconciledAt; return this; } /** - * Get timestamp information related to the sync state of the ArgoCD application - * @return reconciledAt The reconciledAt of this {@link BckndArgoCDApplicationStatus} instance. - **/ + * Get timestamp information related to the sync state of the ArgoCD application + * @return reconciledAt The reconciledAt of this {@link BckndArgoCDApplicationStatus} instance. + */ @Nonnull public String getReconciledAt() { return reconciledAt; } /** - * Set the reconciledAt of this {@link BckndArgoCDApplicationStatus} instance. - * - * @param reconciledAt Get timestamp information related to the sync state of the ArgoCD application - */ + * Set the reconciledAt of this {@link BckndArgoCDApplicationStatus} instance. + * + * @param reconciledAt Get timestamp information related to the sync state of the ArgoCD application + */ public void setReconciledAt( @Nonnull final String reconciledAt) { this.reconciledAt = reconciledAt; } /** - * Set the syncResourcesStatus of this {@link BckndArgoCDApplicationStatus} instance and return the same instance. - * - * @param syncResourcesStatus Status of all resources that need to be synchronized with the gitops repo - * @return The same instance of this {@link BckndArgoCDApplicationStatus} class - */ + * Set the syncResourcesStatus of this {@link BckndArgoCDApplicationStatus} instance and return the same instance. + * + * @param syncResourcesStatus Status of all resources that need to be synchronized with the gitops repo + * @return The same instance of this {@link BckndArgoCDApplicationStatus} class + */ @Nonnull public BckndArgoCDApplicationStatus syncResourcesStatus(@Nonnull final List syncResourcesStatus) { this.syncResourcesStatus = syncResourcesStatus; return this; } /** - * Add one syncResourcesStatus instance to this {@link BckndArgoCDApplicationStatus}. - * @param syncResourcesStatusItem The syncResourcesStatus that should be added - * @return The same instance of type {@link BckndArgoCDApplicationStatus} - */ - @Nonnull public BckndArgoCDApplicationStatus addsyncResourcesStatusItem( @Nonnull final BckndArgoCDApplicationStatusSyncResourcesStatusInner syncResourcesStatusItem) { + * Add one syncResourcesStatus instance to this {@link BckndArgoCDApplicationStatus}. + * @param syncResourcesStatusItem The syncResourcesStatus that should be added + * @return The same instance of type {@link BckndArgoCDApplicationStatus} + */ + @Nonnull public BckndArgoCDApplicationStatus addSyncResourcesStatusItem( @Nonnull final BckndArgoCDApplicationStatusSyncResourcesStatusInner syncResourcesStatusItem) { if (this.syncResourcesStatus == null) { this.syncResourcesStatus = new ArrayList<>(); } @@ -299,38 +298,38 @@ public void setReconciledAt( @Nonnull final String reconciledAt) { } /** - * Status of all resources that need to be synchronized with the gitops repo - * @return syncResourcesStatus The syncResourcesStatus of this {@link BckndArgoCDApplicationStatus} instance. - **/ + * Status of all resources that need to be synchronized with the gitops repo + * @return syncResourcesStatus The syncResourcesStatus of this {@link BckndArgoCDApplicationStatus} instance. + */ @Nonnull public List getSyncResourcesStatus() { return syncResourcesStatus; } /** - * Set the syncResourcesStatus of this {@link BckndArgoCDApplicationStatus} instance. - * - * @param syncResourcesStatus Status of all resources that need to be synchronized with the gitops repo - */ + * Set the syncResourcesStatus of this {@link BckndArgoCDApplicationStatus} instance. + * + * @param syncResourcesStatus Status of all resources that need to be synchronized with the gitops repo + */ public void setSyncResourcesStatus( @Nonnull final List syncResourcesStatus) { this.syncResourcesStatus = syncResourcesStatus; } /** - * Set the syncRessourcesStatus of this {@link BckndArgoCDApplicationStatus} instance and return the same instance. - * - * @param syncRessourcesStatus Status of all resources that need to be synchronized with the gitops repo. Misspelled and deprecated, use syncResourcesStatus instead. - * @return The same instance of this {@link BckndArgoCDApplicationStatus} class - */ + * Set the syncRessourcesStatus of this {@link BckndArgoCDApplicationStatus} instance and return the same instance. + * + * @param syncRessourcesStatus Status of all resources that need to be synchronized with the gitops repo. Misspelled and deprecated, use syncResourcesStatus instead. + * @return The same instance of this {@link BckndArgoCDApplicationStatus} class + */ @Nonnull public BckndArgoCDApplicationStatus syncRessourcesStatus(@Nonnull final List syncRessourcesStatus) { this.syncRessourcesStatus = syncRessourcesStatus; return this; } /** - * Add one syncRessourcesStatus instance to this {@link BckndArgoCDApplicationStatus}. - * @param syncRessourcesStatusItem The syncRessourcesStatus that should be added - * @return The same instance of type {@link BckndArgoCDApplicationStatus} - */ - @Nonnull public BckndArgoCDApplicationStatus addsyncRessourcesStatusItem( @Nonnull final BckndArgoCDApplicationStatusSyncResourcesStatusInner syncRessourcesStatusItem) { + * Add one syncRessourcesStatus instance to this {@link BckndArgoCDApplicationStatus}. + * @param syncRessourcesStatusItem The syncRessourcesStatus that should be added + * @return The same instance of type {@link BckndArgoCDApplicationStatus} + */ + @Nonnull public BckndArgoCDApplicationStatus addSyncRessourcesStatusItem( @Nonnull final BckndArgoCDApplicationStatusSyncResourcesStatusInner syncRessourcesStatusItem) { if (this.syncRessourcesStatus == null) { this.syncRessourcesStatus = new ArrayList<>(); } @@ -339,20 +338,20 @@ public void setSyncResourcesStatus( @Nonnull final List getSyncRessourcesStatus() { return syncRessourcesStatus; } /** - * Set the syncRessourcesStatus of this {@link BckndArgoCDApplicationStatus} instance. - * - * @param syncRessourcesStatus Status of all resources that need to be synchronized with the gitops repo. Misspelled and deprecated, use syncResourcesStatus instead. - */ + * Set the syncRessourcesStatus of this {@link BckndArgoCDApplicationStatus} instance. + * + * @param syncRessourcesStatus Status of all resources that need to be synchronized with the gitops repo. Misspelled and deprecated, use syncResourcesStatus instead. + */ public void setSyncRessourcesStatus( @Nonnull final List syncRessourcesStatus) { this.syncRessourcesStatus = syncRessourcesStatus; } @@ -449,5 +448,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndArgoCDApplicationStatusSource.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndArgoCDApplicationStatusSource.java index fe1be755a..486840db5 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndArgoCDApplicationStatusSource.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndArgoCDApplicationStatusSource.java @@ -38,7 +38,6 @@ /** * Information about the ArgoCD application itself */ - // CHECKSTYLE:OFF public class BckndArgoCDApplicationStatusSource // CHECKSTYLE:ON @@ -57,85 +56,85 @@ public class BckndArgoCDApplicationStatusSource private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the repoURL of this {@link BckndArgoCDApplicationStatusSource} instance and return the same instance. - * - * @param repoURL URL of the repository - * @return The same instance of this {@link BckndArgoCDApplicationStatusSource} class - */ + * Set the repoURL of this {@link BckndArgoCDApplicationStatusSource} instance and return the same instance. + * + * @param repoURL URL of the repository + * @return The same instance of this {@link BckndArgoCDApplicationStatusSource} class + */ @Nonnull public BckndArgoCDApplicationStatusSource repoURL(@Nonnull final String repoURL) { this.repoURL = repoURL; return this; } /** - * URL of the repository - * @return repoURL The repoURL of this {@link BckndArgoCDApplicationStatusSource} instance. - **/ + * URL of the repository + * @return repoURL The repoURL of this {@link BckndArgoCDApplicationStatusSource} instance. + */ @Nonnull public String getRepoURL() { return repoURL; } /** - * Set the repoURL of this {@link BckndArgoCDApplicationStatusSource} instance. - * - * @param repoURL URL of the repository - */ + * Set the repoURL of this {@link BckndArgoCDApplicationStatusSource} instance. + * + * @param repoURL URL of the repository + */ public void setRepoURL( @Nonnull final String repoURL) { this.repoURL = repoURL; } /** - * Set the path of this {@link BckndArgoCDApplicationStatusSource} instance and return the same instance. - * - * @param path Path of the repository - * @return The same instance of this {@link BckndArgoCDApplicationStatusSource} class - */ + * Set the path of this {@link BckndArgoCDApplicationStatusSource} instance and return the same instance. + * + * @param path Path of the repository + * @return The same instance of this {@link BckndArgoCDApplicationStatusSource} class + */ @Nonnull public BckndArgoCDApplicationStatusSource path(@Nonnull final String path) { this.path = path; return this; } /** - * Path of the repository - * @return path The path of this {@link BckndArgoCDApplicationStatusSource} instance. - **/ + * Path of the repository + * @return path The path of this {@link BckndArgoCDApplicationStatusSource} instance. + */ @Nonnull public String getPath() { return path; } /** - * Set the path of this {@link BckndArgoCDApplicationStatusSource} instance. - * - * @param path Path of the repository - */ + * Set the path of this {@link BckndArgoCDApplicationStatusSource} instance. + * + * @param path Path of the repository + */ public void setPath( @Nonnull final String path) { this.path = path; } /** - * Set the revision of this {@link BckndArgoCDApplicationStatusSource} instance and return the same instance. - * - * @param revision Revision number of the ArgoCD application - * @return The same instance of this {@link BckndArgoCDApplicationStatusSource} class - */ + * Set the revision of this {@link BckndArgoCDApplicationStatusSource} instance and return the same instance. + * + * @param revision Revision number of the ArgoCD application + * @return The same instance of this {@link BckndArgoCDApplicationStatusSource} class + */ @Nonnull public BckndArgoCDApplicationStatusSource revision(@Nonnull final String revision) { this.revision = revision; return this; } /** - * Revision number of the ArgoCD application - * @return revision The revision of this {@link BckndArgoCDApplicationStatusSource} instance. - **/ + * Revision number of the ArgoCD application + * @return revision The revision of this {@link BckndArgoCDApplicationStatusSource} instance. + */ @Nonnull public String getRevision() { return revision; } /** - * Set the revision of this {@link BckndArgoCDApplicationStatusSource} instance. - * - * @param revision Revision number of the ArgoCD application - */ + * Set the revision of this {@link BckndArgoCDApplicationStatusSource} instance. + * + * @param revision Revision number of the ArgoCD application + */ public void setRevision( @Nonnull final String revision) { this.revision = revision; } @@ -220,5 +219,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndArgoCDApplicationStatusSyncResourcesStatusInner.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndArgoCDApplicationStatusSyncResourcesStatusInner.java index c9fa3dd22..db2d7c4d5 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndArgoCDApplicationStatusSyncResourcesStatusInner.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndArgoCDApplicationStatusSyncResourcesStatusInner.java @@ -38,7 +38,6 @@ /** * BckndArgoCDApplicationStatusSyncResourcesStatusInner */ - // CHECKSTYLE:OFF public class BckndArgoCDApplicationStatusSyncResourcesStatusInner // CHECKSTYLE:ON @@ -60,113 +59,113 @@ public class BckndArgoCDApplicationStatusSyncResourcesStatusInner private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the name of this {@link BckndArgoCDApplicationStatusSyncResourcesStatusInner} instance and return the same instance. - * - * @param name ArgoCD application object name - * @return The same instance of this {@link BckndArgoCDApplicationStatusSyncResourcesStatusInner} class - */ + * Set the name of this {@link BckndArgoCDApplicationStatusSyncResourcesStatusInner} instance and return the same instance. + * + * @param name ArgoCD application object name + * @return The same instance of this {@link BckndArgoCDApplicationStatusSyncResourcesStatusInner} class + */ @Nonnull public BckndArgoCDApplicationStatusSyncResourcesStatusInner name(@Nonnull final String name) { this.name = name; return this; } /** - * ArgoCD application object name - * @return name The name of this {@link BckndArgoCDApplicationStatusSyncResourcesStatusInner} instance. - **/ + * ArgoCD application object name + * @return name The name of this {@link BckndArgoCDApplicationStatusSyncResourcesStatusInner} instance. + */ @Nonnull public String getName() { return name; } /** - * Set the name of this {@link BckndArgoCDApplicationStatusSyncResourcesStatusInner} instance. - * - * @param name ArgoCD application object name - */ + * Set the name of this {@link BckndArgoCDApplicationStatusSyncResourcesStatusInner} instance. + * + * @param name ArgoCD application object name + */ public void setName( @Nonnull final String name) { this.name = name; } /** - * Set the kind of this {@link BckndArgoCDApplicationStatusSyncResourcesStatusInner} instance and return the same instance. - * - * @param kind ArgoCD application object kind - * @return The same instance of this {@link BckndArgoCDApplicationStatusSyncResourcesStatusInner} class - */ + * Set the kind of this {@link BckndArgoCDApplicationStatusSyncResourcesStatusInner} instance and return the same instance. + * + * @param kind ArgoCD application object kind + * @return The same instance of this {@link BckndArgoCDApplicationStatusSyncResourcesStatusInner} class + */ @Nonnull public BckndArgoCDApplicationStatusSyncResourcesStatusInner kind(@Nonnull final String kind) { this.kind = kind; return this; } /** - * ArgoCD application object kind - * @return kind The kind of this {@link BckndArgoCDApplicationStatusSyncResourcesStatusInner} instance. - **/ + * ArgoCD application object kind + * @return kind The kind of this {@link BckndArgoCDApplicationStatusSyncResourcesStatusInner} instance. + */ @Nonnull public String getKind() { return kind; } /** - * Set the kind of this {@link BckndArgoCDApplicationStatusSyncResourcesStatusInner} instance. - * - * @param kind ArgoCD application object kind - */ + * Set the kind of this {@link BckndArgoCDApplicationStatusSyncResourcesStatusInner} instance. + * + * @param kind ArgoCD application object kind + */ public void setKind( @Nonnull final String kind) { this.kind = kind; } /** - * Set the status of this {@link BckndArgoCDApplicationStatusSyncResourcesStatusInner} instance and return the same instance. - * - * @param status ArgoCD application object sync status - * @return The same instance of this {@link BckndArgoCDApplicationStatusSyncResourcesStatusInner} class - */ + * Set the status of this {@link BckndArgoCDApplicationStatusSyncResourcesStatusInner} instance and return the same instance. + * + * @param status ArgoCD application object sync status + * @return The same instance of this {@link BckndArgoCDApplicationStatusSyncResourcesStatusInner} class + */ @Nonnull public BckndArgoCDApplicationStatusSyncResourcesStatusInner status(@Nonnull final String status) { this.status = status; return this; } /** - * ArgoCD application object sync status - * @return status The status of this {@link BckndArgoCDApplicationStatusSyncResourcesStatusInner} instance. - **/ + * ArgoCD application object sync status + * @return status The status of this {@link BckndArgoCDApplicationStatusSyncResourcesStatusInner} instance. + */ @Nonnull public String getStatus() { return status; } /** - * Set the status of this {@link BckndArgoCDApplicationStatusSyncResourcesStatusInner} instance. - * - * @param status ArgoCD application object sync status - */ + * Set the status of this {@link BckndArgoCDApplicationStatusSyncResourcesStatusInner} instance. + * + * @param status ArgoCD application object sync status + */ public void setStatus( @Nonnull final String status) { this.status = status; } /** - * Set the message of this {@link BckndArgoCDApplicationStatusSyncResourcesStatusInner} instance and return the same instance. - * - * @param message ArgoCD application object message - * @return The same instance of this {@link BckndArgoCDApplicationStatusSyncResourcesStatusInner} class - */ + * Set the message of this {@link BckndArgoCDApplicationStatusSyncResourcesStatusInner} instance and return the same instance. + * + * @param message ArgoCD application object message + * @return The same instance of this {@link BckndArgoCDApplicationStatusSyncResourcesStatusInner} class + */ @Nonnull public BckndArgoCDApplicationStatusSyncResourcesStatusInner message(@Nonnull final String message) { this.message = message; return this; } /** - * ArgoCD application object message - * @return message The message of this {@link BckndArgoCDApplicationStatusSyncResourcesStatusInner} instance. - **/ + * ArgoCD application object message + * @return message The message of this {@link BckndArgoCDApplicationStatusSyncResourcesStatusInner} instance. + */ @Nonnull public String getMessage() { return message; } /** - * Set the message of this {@link BckndArgoCDApplicationStatusSyncResourcesStatusInner} instance. - * - * @param message ArgoCD application object message - */ + * Set the message of this {@link BckndArgoCDApplicationStatusSyncResourcesStatusInner} instance. + * + * @param message ArgoCD application object message + */ public void setMessage( @Nonnull final String message) { this.message = message; } @@ -253,5 +252,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndArgoCDRepositoryCreationResponse.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndArgoCDRepositoryCreationResponse.java index a0732916a..f84e77b37 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndArgoCDRepositoryCreationResponse.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndArgoCDRepositoryCreationResponse.java @@ -38,7 +38,6 @@ /** * BckndArgoCDRepositoryCreationResponse */ - // CHECKSTYLE:OFF public class BckndArgoCDRepositoryCreationResponse // CHECKSTYLE:ON @@ -54,57 +53,57 @@ public class BckndArgoCDRepositoryCreationResponse private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the id of this {@link BckndArgoCDRepositoryCreationResponse} instance and return the same instance. - * - * @param id Generic ID - * @return The same instance of this {@link BckndArgoCDRepositoryCreationResponse} class - */ + * Set the id of this {@link BckndArgoCDRepositoryCreationResponse} instance and return the same instance. + * + * @param id Generic ID + * @return The same instance of this {@link BckndArgoCDRepositoryCreationResponse} class + */ @Nonnull public BckndArgoCDRepositoryCreationResponse id(@Nonnull final String id) { this.id = id; return this; } /** - * Generic ID - * @return id The id of this {@link BckndArgoCDRepositoryCreationResponse} instance. - **/ + * Generic ID + * @return id The id of this {@link BckndArgoCDRepositoryCreationResponse} instance. + */ @Nonnull public String getId() { return id; } /** - * Set the id of this {@link BckndArgoCDRepositoryCreationResponse} instance. - * - * @param id Generic ID - */ + * Set the id of this {@link BckndArgoCDRepositoryCreationResponse} instance. + * + * @param id Generic ID + */ public void setId( @Nonnull final String id) { this.id = id; } /** - * Set the message of this {@link BckndArgoCDRepositoryCreationResponse} instance and return the same instance. - * - * @param message Message - * @return The same instance of this {@link BckndArgoCDRepositoryCreationResponse} class - */ + * Set the message of this {@link BckndArgoCDRepositoryCreationResponse} instance and return the same instance. + * + * @param message Message + * @return The same instance of this {@link BckndArgoCDRepositoryCreationResponse} class + */ @Nonnull public BckndArgoCDRepositoryCreationResponse message(@Nonnull final String message) { this.message = message; return this; } /** - * Message - * @return message The message of this {@link BckndArgoCDRepositoryCreationResponse} instance. - **/ + * Message + * @return message The message of this {@link BckndArgoCDRepositoryCreationResponse} instance. + */ @Nonnull public String getMessage() { return message; } /** - * Set the message of this {@link BckndArgoCDRepositoryCreationResponse} instance. - * - * @param message Message - */ + * Set the message of this {@link BckndArgoCDRepositoryCreationResponse} instance. + * + * @param message Message + */ public void setMessage( @Nonnull final String message) { this.message = message; } @@ -187,5 +186,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndArgoCDRepositoryCredentials.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndArgoCDRepositoryCredentials.java index d841baac8..6af0ecb3b 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndArgoCDRepositoryCredentials.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndArgoCDRepositoryCredentials.java @@ -38,7 +38,6 @@ /** * BckndArgoCDRepositoryCredentials */ - // CHECKSTYLE:OFF public class BckndArgoCDRepositoryCredentials // CHECKSTYLE:ON @@ -54,57 +53,57 @@ public class BckndArgoCDRepositoryCredentials private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the username of this {@link BckndArgoCDRepositoryCredentials} instance and return the same instance. - * - * @param username Username for read-access to the repository - * @return The same instance of this {@link BckndArgoCDRepositoryCredentials} class - */ + * Set the username of this {@link BckndArgoCDRepositoryCredentials} instance and return the same instance. + * + * @param username Username for read-access to the repository + * @return The same instance of this {@link BckndArgoCDRepositoryCredentials} class + */ @Nonnull public BckndArgoCDRepositoryCredentials username(@Nonnull final String username) { this.username = username; return this; } /** - * Username for read-access to the repository - * @return username The username of this {@link BckndArgoCDRepositoryCredentials} instance. - **/ + * Username for read-access to the repository + * @return username The username of this {@link BckndArgoCDRepositoryCredentials} instance. + */ @Nonnull public String getUsername() { return username; } /** - * Set the username of this {@link BckndArgoCDRepositoryCredentials} instance. - * - * @param username Username for read-access to the repository - */ + * Set the username of this {@link BckndArgoCDRepositoryCredentials} instance. + * + * @param username Username for read-access to the repository + */ public void setUsername( @Nonnull final String username) { this.username = username; } /** - * Set the password of this {@link BckndArgoCDRepositoryCredentials} instance and return the same instance. - * - * @param password Password for read-access to the repository - * @return The same instance of this {@link BckndArgoCDRepositoryCredentials} class - */ + * Set the password of this {@link BckndArgoCDRepositoryCredentials} instance and return the same instance. + * + * @param password Password for read-access to the repository + * @return The same instance of this {@link BckndArgoCDRepositoryCredentials} class + */ @Nonnull public BckndArgoCDRepositoryCredentials password(@Nonnull final String password) { this.password = password; return this; } /** - * Password for read-access to the repository - * @return password The password of this {@link BckndArgoCDRepositoryCredentials} instance. - **/ + * Password for read-access to the repository + * @return password The password of this {@link BckndArgoCDRepositoryCredentials} instance. + */ @Nonnull public String getPassword() { return password; } /** - * Set the password of this {@link BckndArgoCDRepositoryCredentials} instance. - * - * @param password Password for read-access to the repository - */ + * Set the password of this {@link BckndArgoCDRepositoryCredentials} instance. + * + * @param password Password for read-access to the repository + */ public void setPassword( @Nonnull final String password) { this.password = password; } @@ -187,5 +186,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndArgoCDRepositoryData.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndArgoCDRepositoryData.java index c58be3d9d..148b634c4 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndArgoCDRepositoryData.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndArgoCDRepositoryData.java @@ -38,7 +38,6 @@ /** * BckndArgoCDRepositoryData */ - // CHECKSTYLE:OFF public class BckndArgoCDRepositoryData // CHECKSTYLE:ON @@ -60,113 +59,113 @@ public class BckndArgoCDRepositoryData private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the name of this {@link BckndArgoCDRepositoryData} instance and return the same instance. - * - * @param name Name of the repository - * @return The same instance of this {@link BckndArgoCDRepositoryData} class - */ + * Set the name of this {@link BckndArgoCDRepositoryData} instance and return the same instance. + * + * @param name Name of the repository + * @return The same instance of this {@link BckndArgoCDRepositoryData} class + */ @Nonnull public BckndArgoCDRepositoryData name(@Nonnull final String name) { this.name = name; return this; } /** - * Name of the repository - * @return name The name of this {@link BckndArgoCDRepositoryData} instance. - **/ + * Name of the repository + * @return name The name of this {@link BckndArgoCDRepositoryData} instance. + */ @Nonnull public String getName() { return name; } /** - * Set the name of this {@link BckndArgoCDRepositoryData} instance. - * - * @param name Name of the repository - */ + * Set the name of this {@link BckndArgoCDRepositoryData} instance. + * + * @param name Name of the repository + */ public void setName( @Nonnull final String name) { this.name = name; } /** - * Set the url of this {@link BckndArgoCDRepositoryData} instance and return the same instance. - * - * @param url URL of the repository to synchronise - * @return The same instance of this {@link BckndArgoCDRepositoryData} class - */ + * Set the url of this {@link BckndArgoCDRepositoryData} instance and return the same instance. + * + * @param url URL of the repository to synchronise + * @return The same instance of this {@link BckndArgoCDRepositoryData} class + */ @Nonnull public BckndArgoCDRepositoryData url(@Nonnull final String url) { this.url = url; return this; } /** - * URL of the repository to synchronise - * @return url The url of this {@link BckndArgoCDRepositoryData} instance. - **/ + * URL of the repository to synchronise + * @return url The url of this {@link BckndArgoCDRepositoryData} instance. + */ @Nonnull public String getUrl() { return url; } /** - * Set the url of this {@link BckndArgoCDRepositoryData} instance. - * - * @param url URL of the repository to synchronise - */ + * Set the url of this {@link BckndArgoCDRepositoryData} instance. + * + * @param url URL of the repository to synchronise + */ public void setUrl( @Nonnull final String url) { this.url = url; } /** - * Set the username of this {@link BckndArgoCDRepositoryData} instance and return the same instance. - * - * @param username Username for read-access to the repository - * @return The same instance of this {@link BckndArgoCDRepositoryData} class - */ + * Set the username of this {@link BckndArgoCDRepositoryData} instance and return the same instance. + * + * @param username Username for read-access to the repository + * @return The same instance of this {@link BckndArgoCDRepositoryData} class + */ @Nonnull public BckndArgoCDRepositoryData username(@Nonnull final String username) { this.username = username; return this; } /** - * Username for read-access to the repository - * @return username The username of this {@link BckndArgoCDRepositoryData} instance. - **/ + * Username for read-access to the repository + * @return username The username of this {@link BckndArgoCDRepositoryData} instance. + */ @Nonnull public String getUsername() { return username; } /** - * Set the username of this {@link BckndArgoCDRepositoryData} instance. - * - * @param username Username for read-access to the repository - */ + * Set the username of this {@link BckndArgoCDRepositoryData} instance. + * + * @param username Username for read-access to the repository + */ public void setUsername( @Nonnull final String username) { this.username = username; } /** - * Set the password of this {@link BckndArgoCDRepositoryData} instance and return the same instance. - * - * @param password Password for read-access to the repository - * @return The same instance of this {@link BckndArgoCDRepositoryData} class - */ + * Set the password of this {@link BckndArgoCDRepositoryData} instance and return the same instance. + * + * @param password Password for read-access to the repository + * @return The same instance of this {@link BckndArgoCDRepositoryData} class + */ @Nonnull public BckndArgoCDRepositoryData password(@Nonnull final String password) { this.password = password; return this; } /** - * Password for read-access to the repository - * @return password The password of this {@link BckndArgoCDRepositoryData} instance. - **/ + * Password for read-access to the repository + * @return password The password of this {@link BckndArgoCDRepositoryData} instance. + */ @Nonnull public String getPassword() { return password; } /** - * Set the password of this {@link BckndArgoCDRepositoryData} instance. - * - * @param password Password for read-access to the repository - */ + * Set the password of this {@link BckndArgoCDRepositoryData} instance. + * + * @param password Password for read-access to the repository + */ public void setPassword( @Nonnull final String password) { this.password = password; } @@ -253,5 +252,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndArgoCDRepositoryDataResponse.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndArgoCDRepositoryDataResponse.java index d7fa4bb59..e89f9f929 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndArgoCDRepositoryDataResponse.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndArgoCDRepositoryDataResponse.java @@ -42,7 +42,6 @@ /** * This represents a list of GitOps repositories for the tenant. */ - // CHECKSTYLE:OFF public class BckndArgoCDRepositoryDataResponse // CHECKSTYLE:ON @@ -58,49 +57,49 @@ public class BckndArgoCDRepositoryDataResponse private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the count of this {@link BckndArgoCDRepositoryDataResponse} instance and return the same instance. - * - * @param count Number of the resource instances in the list - * @return The same instance of this {@link BckndArgoCDRepositoryDataResponse} class - */ + * Set the count of this {@link BckndArgoCDRepositoryDataResponse} instance and return the same instance. + * + * @param count Number of the resource instances in the list + * @return The same instance of this {@link BckndArgoCDRepositoryDataResponse} class + */ @Nonnull public BckndArgoCDRepositoryDataResponse count(@Nonnull final Integer count) { this.count = count; return this; } /** - * Number of the resource instances in the list - * @return count The count of this {@link BckndArgoCDRepositoryDataResponse} instance. - **/ + * Number of the resource instances in the list + * @return count The count of this {@link BckndArgoCDRepositoryDataResponse} instance. + */ @Nonnull public Integer getCount() { return count; } /** - * Set the count of this {@link BckndArgoCDRepositoryDataResponse} instance. - * - * @param count Number of the resource instances in the list - */ + * Set the count of this {@link BckndArgoCDRepositoryDataResponse} instance. + * + * @param count Number of the resource instances in the list + */ public void setCount( @Nonnull final Integer count) { this.count = count; } /** - * Set the resources of this {@link BckndArgoCDRepositoryDataResponse} instance and return the same instance. - * - * @param resources The resources of this {@link BckndArgoCDRepositoryDataResponse} - * @return The same instance of this {@link BckndArgoCDRepositoryDataResponse} class - */ + * Set the resources of this {@link BckndArgoCDRepositoryDataResponse} instance and return the same instance. + * + * @param resources The resources of this {@link BckndArgoCDRepositoryDataResponse} + * @return The same instance of this {@link BckndArgoCDRepositoryDataResponse} class + */ @Nonnull public BckndArgoCDRepositoryDataResponse resources(@Nonnull final List resources) { this.resources = resources; return this; } /** - * Add one resources instance to this {@link BckndArgoCDRepositoryDataResponse}. - * @param resourcesItem The resources that should be added - * @return The same instance of type {@link BckndArgoCDRepositoryDataResponse} - */ - @Nonnull public BckndArgoCDRepositoryDataResponse addresourcesItem( @Nonnull final BckndArgoCDRepositoryDetails resourcesItem) { + * Add one resources instance to this {@link BckndArgoCDRepositoryDataResponse}. + * @param resourcesItem The resources that should be added + * @return The same instance of type {@link BckndArgoCDRepositoryDataResponse} + */ + @Nonnull public BckndArgoCDRepositoryDataResponse addResourcesItem( @Nonnull final BckndArgoCDRepositoryDetails resourcesItem) { if (this.resources == null) { this.resources = new ArrayList<>(); } @@ -109,18 +108,18 @@ public void setCount( @Nonnull final Integer count) { } /** - * Get resources - * @return resources The resources of this {@link BckndArgoCDRepositoryDataResponse} instance. - **/ + * Get resources + * @return resources The resources of this {@link BckndArgoCDRepositoryDataResponse} instance. + */ @Nonnull public List getResources() { return resources; } /** - * Set the resources of this {@link BckndArgoCDRepositoryDataResponse} instance. - * - * @param resources The resources of this {@link BckndArgoCDRepositoryDataResponse} - */ + * Set the resources of this {@link BckndArgoCDRepositoryDataResponse} instance. + * + * @param resources The resources of this {@link BckndArgoCDRepositoryDataResponse} + */ public void setResources( @Nonnull final List resources) { this.resources = resources; } @@ -203,5 +202,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndArgoCDRepositoryDeletionResponse.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndArgoCDRepositoryDeletionResponse.java index 7705b60ec..f95230c26 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndArgoCDRepositoryDeletionResponse.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndArgoCDRepositoryDeletionResponse.java @@ -38,7 +38,6 @@ /** * BckndArgoCDRepositoryDeletionResponse */ - // CHECKSTYLE:OFF public class BckndArgoCDRepositoryDeletionResponse // CHECKSTYLE:ON @@ -54,57 +53,57 @@ public class BckndArgoCDRepositoryDeletionResponse private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the id of this {@link BckndArgoCDRepositoryDeletionResponse} instance and return the same instance. - * - * @param id Generic ID - * @return The same instance of this {@link BckndArgoCDRepositoryDeletionResponse} class - */ + * Set the id of this {@link BckndArgoCDRepositoryDeletionResponse} instance and return the same instance. + * + * @param id Generic ID + * @return The same instance of this {@link BckndArgoCDRepositoryDeletionResponse} class + */ @Nonnull public BckndArgoCDRepositoryDeletionResponse id(@Nonnull final String id) { this.id = id; return this; } /** - * Generic ID - * @return id The id of this {@link BckndArgoCDRepositoryDeletionResponse} instance. - **/ + * Generic ID + * @return id The id of this {@link BckndArgoCDRepositoryDeletionResponse} instance. + */ @Nonnull public String getId() { return id; } /** - * Set the id of this {@link BckndArgoCDRepositoryDeletionResponse} instance. - * - * @param id Generic ID - */ + * Set the id of this {@link BckndArgoCDRepositoryDeletionResponse} instance. + * + * @param id Generic ID + */ public void setId( @Nonnull final String id) { this.id = id; } /** - * Set the message of this {@link BckndArgoCDRepositoryDeletionResponse} instance and return the same instance. - * - * @param message Message - * @return The same instance of this {@link BckndArgoCDRepositoryDeletionResponse} class - */ + * Set the message of this {@link BckndArgoCDRepositoryDeletionResponse} instance and return the same instance. + * + * @param message Message + * @return The same instance of this {@link BckndArgoCDRepositoryDeletionResponse} class + */ @Nonnull public BckndArgoCDRepositoryDeletionResponse message(@Nonnull final String message) { this.message = message; return this; } /** - * Message - * @return message The message of this {@link BckndArgoCDRepositoryDeletionResponse} instance. - **/ + * Message + * @return message The message of this {@link BckndArgoCDRepositoryDeletionResponse} instance. + */ @Nonnull public String getMessage() { return message; } /** - * Set the message of this {@link BckndArgoCDRepositoryDeletionResponse} instance. - * - * @param message Message - */ + * Set the message of this {@link BckndArgoCDRepositoryDeletionResponse} instance. + * + * @param message Message + */ public void setMessage( @Nonnull final String message) { this.message = message; } @@ -187,5 +186,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndArgoCDRepositoryDetails.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndArgoCDRepositoryDetails.java index b44a273df..8d4d800f4 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndArgoCDRepositoryDetails.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndArgoCDRepositoryDetails.java @@ -38,7 +38,6 @@ /** * Repository details */ - // CHECKSTYLE:OFF public class BckndArgoCDRepositoryDetails // CHECKSTYLE:ON @@ -116,85 +115,85 @@ public enum StatusEnum { private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the name of this {@link BckndArgoCDRepositoryDetails} instance and return the same instance. - * - * @param name The name of the repository - * @return The same instance of this {@link BckndArgoCDRepositoryDetails} class - */ + * Set the name of this {@link BckndArgoCDRepositoryDetails} instance and return the same instance. + * + * @param name The name of the repository + * @return The same instance of this {@link BckndArgoCDRepositoryDetails} class + */ @Nonnull public BckndArgoCDRepositoryDetails name(@Nonnull final String name) { this.name = name; return this; } /** - * The name of the repository - * @return name The name of this {@link BckndArgoCDRepositoryDetails} instance. - **/ + * The name of the repository + * @return name The name of this {@link BckndArgoCDRepositoryDetails} instance. + */ @Nonnull public String getName() { return name; } /** - * Set the name of this {@link BckndArgoCDRepositoryDetails} instance. - * - * @param name The name of the repository - */ + * Set the name of this {@link BckndArgoCDRepositoryDetails} instance. + * + * @param name The name of the repository + */ public void setName( @Nonnull final String name) { this.name = name; } /** - * Set the url of this {@link BckndArgoCDRepositoryDetails} instance and return the same instance. - * - * @param url The repository URL - * @return The same instance of this {@link BckndArgoCDRepositoryDetails} class - */ + * Set the url of this {@link BckndArgoCDRepositoryDetails} instance and return the same instance. + * + * @param url The repository URL + * @return The same instance of this {@link BckndArgoCDRepositoryDetails} class + */ @Nonnull public BckndArgoCDRepositoryDetails url(@Nonnull final String url) { this.url = url; return this; } /** - * The repository URL - * @return url The url of this {@link BckndArgoCDRepositoryDetails} instance. - **/ + * The repository URL + * @return url The url of this {@link BckndArgoCDRepositoryDetails} instance. + */ @Nonnull public String getUrl() { return url; } /** - * Set the url of this {@link BckndArgoCDRepositoryDetails} instance. - * - * @param url The repository URL - */ + * Set the url of this {@link BckndArgoCDRepositoryDetails} instance. + * + * @param url The repository URL + */ public void setUrl( @Nonnull final String url) { this.url = url; } /** - * Set the status of this {@link BckndArgoCDRepositoryDetails} instance and return the same instance. - * - * @param status The status of the repository's on-boarding - * @return The same instance of this {@link BckndArgoCDRepositoryDetails} class - */ + * Set the status of this {@link BckndArgoCDRepositoryDetails} instance and return the same instance. + * + * @param status The status of the repository's on-boarding + * @return The same instance of this {@link BckndArgoCDRepositoryDetails} class + */ @Nonnull public BckndArgoCDRepositoryDetails status(@Nonnull final StatusEnum status) { this.status = status; return this; } /** - * The status of the repository's on-boarding - * @return status The status of this {@link BckndArgoCDRepositoryDetails} instance. - **/ + * The status of the repository's on-boarding + * @return status The status of this {@link BckndArgoCDRepositoryDetails} instance. + */ @Nonnull public StatusEnum getStatus() { return status; } /** - * Set the status of this {@link BckndArgoCDRepositoryDetails} instance. - * - * @param status The status of the repository's on-boarding - */ + * Set the status of this {@link BckndArgoCDRepositoryDetails} instance. + * + * @param status The status of the repository's on-boarding + */ public void setStatus( @Nonnull final StatusEnum status) { this.status = status; } @@ -279,5 +278,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndArgoCDRepositoryModificationResponse.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndArgoCDRepositoryModificationResponse.java index 3b578a366..9c721a18c 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndArgoCDRepositoryModificationResponse.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndArgoCDRepositoryModificationResponse.java @@ -38,7 +38,6 @@ /** * BckndArgoCDRepositoryModificationResponse */ - // CHECKSTYLE:OFF public class BckndArgoCDRepositoryModificationResponse // CHECKSTYLE:ON @@ -54,57 +53,57 @@ public class BckndArgoCDRepositoryModificationResponse private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the id of this {@link BckndArgoCDRepositoryModificationResponse} instance and return the same instance. - * - * @param id Generic ID - * @return The same instance of this {@link BckndArgoCDRepositoryModificationResponse} class - */ + * Set the id of this {@link BckndArgoCDRepositoryModificationResponse} instance and return the same instance. + * + * @param id Generic ID + * @return The same instance of this {@link BckndArgoCDRepositoryModificationResponse} class + */ @Nonnull public BckndArgoCDRepositoryModificationResponse id(@Nonnull final String id) { this.id = id; return this; } /** - * Generic ID - * @return id The id of this {@link BckndArgoCDRepositoryModificationResponse} instance. - **/ + * Generic ID + * @return id The id of this {@link BckndArgoCDRepositoryModificationResponse} instance. + */ @Nonnull public String getId() { return id; } /** - * Set the id of this {@link BckndArgoCDRepositoryModificationResponse} instance. - * - * @param id Generic ID - */ + * Set the id of this {@link BckndArgoCDRepositoryModificationResponse} instance. + * + * @param id Generic ID + */ public void setId( @Nonnull final String id) { this.id = id; } /** - * Set the message of this {@link BckndArgoCDRepositoryModificationResponse} instance and return the same instance. - * - * @param message Message - * @return The same instance of this {@link BckndArgoCDRepositoryModificationResponse} class - */ + * Set the message of this {@link BckndArgoCDRepositoryModificationResponse} instance and return the same instance. + * + * @param message Message + * @return The same instance of this {@link BckndArgoCDRepositoryModificationResponse} class + */ @Nonnull public BckndArgoCDRepositoryModificationResponse message(@Nonnull final String message) { this.message = message; return this; } /** - * Message - * @return message The message of this {@link BckndArgoCDRepositoryModificationResponse} instance. - **/ + * Message + * @return message The message of this {@link BckndArgoCDRepositoryModificationResponse} instance. + */ @Nonnull public String getMessage() { return message; } /** - * Set the message of this {@link BckndArgoCDRepositoryModificationResponse} instance. - * - * @param message Message - */ + * Set the message of this {@link BckndArgoCDRepositoryModificationResponse} instance. + * + * @param message Message + */ public void setMessage( @Nonnull final String message) { this.message = message; } @@ -187,5 +186,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndCommonResourceQuotaResponse.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndCommonResourceQuotaResponse.java index cf2678201..3f8efa1df 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndCommonResourceQuotaResponse.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndCommonResourceQuotaResponse.java @@ -40,7 +40,6 @@ /** * BckndCommonResourceQuotaResponse */ - // CHECKSTYLE:OFF public class BckndCommonResourceQuotaResponse // CHECKSTYLE:ON @@ -56,57 +55,57 @@ public class BckndCommonResourceQuotaResponse private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the usage of this {@link BckndCommonResourceQuotaResponse} instance and return the same instance. - * - * @param usage The usage of this {@link BckndCommonResourceQuotaResponse} - * @return The same instance of this {@link BckndCommonResourceQuotaResponse} class - */ + * Set the usage of this {@link BckndCommonResourceQuotaResponse} instance and return the same instance. + * + * @param usage The usage of this {@link BckndCommonResourceQuotaResponse} + * @return The same instance of this {@link BckndCommonResourceQuotaResponse} class + */ @Nonnull public BckndCommonResourceQuotaResponse usage(@Nonnull final BckndCommonResourceQuotaResponseUsage usage) { this.usage = usage; return this; } /** - * Get usage - * @return usage The usage of this {@link BckndCommonResourceQuotaResponse} instance. - **/ + * Get usage + * @return usage The usage of this {@link BckndCommonResourceQuotaResponse} instance. + */ @Nonnull public BckndCommonResourceQuotaResponseUsage getUsage() { return usage; } /** - * Set the usage of this {@link BckndCommonResourceQuotaResponse} instance. - * - * @param usage The usage of this {@link BckndCommonResourceQuotaResponse} - */ + * Set the usage of this {@link BckndCommonResourceQuotaResponse} instance. + * + * @param usage The usage of this {@link BckndCommonResourceQuotaResponse} + */ public void setUsage( @Nonnull final BckndCommonResourceQuotaResponseUsage usage) { this.usage = usage; } /** - * Set the quota of this {@link BckndCommonResourceQuotaResponse} instance and return the same instance. - * - * @param quota The quota of this {@link BckndCommonResourceQuotaResponse} - * @return The same instance of this {@link BckndCommonResourceQuotaResponse} class - */ + * Set the quota of this {@link BckndCommonResourceQuotaResponse} instance and return the same instance. + * + * @param quota The quota of this {@link BckndCommonResourceQuotaResponse} + * @return The same instance of this {@link BckndCommonResourceQuotaResponse} class + */ @Nonnull public BckndCommonResourceQuotaResponse quota(@Nonnull final BckndCommonResourceQuotaResponseQuota quota) { this.quota = quota; return this; } /** - * Get quota - * @return quota The quota of this {@link BckndCommonResourceQuotaResponse} instance. - **/ + * Get quota + * @return quota The quota of this {@link BckndCommonResourceQuotaResponse} instance. + */ @Nonnull public BckndCommonResourceQuotaResponseQuota getQuota() { return quota; } /** - * Set the quota of this {@link BckndCommonResourceQuotaResponse} instance. - * - * @param quota The quota of this {@link BckndCommonResourceQuotaResponse} - */ + * Set the quota of this {@link BckndCommonResourceQuotaResponse} instance. + * + * @param quota The quota of this {@link BckndCommonResourceQuotaResponse} + */ public void setQuota( @Nonnull final BckndCommonResourceQuotaResponseQuota quota) { this.quota = quota; } @@ -189,5 +188,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndCommonResourceQuotaResponseQuota.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndCommonResourceQuotaResponseQuota.java index 4f0456e47..7e4cc0589 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndCommonResourceQuotaResponseQuota.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndCommonResourceQuotaResponseQuota.java @@ -38,7 +38,6 @@ /** * BckndCommonResourceQuotaResponseQuota */ - // CHECKSTYLE:OFF public class BckndCommonResourceQuotaResponseQuota // CHECKSTYLE:ON @@ -51,29 +50,29 @@ public class BckndCommonResourceQuotaResponseQuota private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the maxCount of this {@link BckndCommonResourceQuotaResponseQuota} instance and return the same instance. - * - * @param maxCount The value can be 0(disabled) or a positive integer defining the maximum allowed number - * @return The same instance of this {@link BckndCommonResourceQuotaResponseQuota} class - */ + * Set the maxCount of this {@link BckndCommonResourceQuotaResponseQuota} instance and return the same instance. + * + * @param maxCount The value can be 0(disabled) or a positive integer defining the maximum allowed number + * @return The same instance of this {@link BckndCommonResourceQuotaResponseQuota} class + */ @Nonnull public BckndCommonResourceQuotaResponseQuota maxCount(@Nonnull final Integer maxCount) { this.maxCount = maxCount; return this; } /** - * The value can be 0(disabled) or a positive integer defining the maximum allowed number - * @return maxCount The maxCount of this {@link BckndCommonResourceQuotaResponseQuota} instance. - **/ + * The value can be 0(disabled) or a positive integer defining the maximum allowed number + * @return maxCount The maxCount of this {@link BckndCommonResourceQuotaResponseQuota} instance. + */ @Nonnull public Integer getMaxCount() { return maxCount; } /** - * Set the maxCount of this {@link BckndCommonResourceQuotaResponseQuota} instance. - * - * @param maxCount The value can be 0(disabled) or a positive integer defining the maximum allowed number - */ + * Set the maxCount of this {@link BckndCommonResourceQuotaResponseQuota} instance. + * + * @param maxCount The value can be 0(disabled) or a positive integer defining the maximum allowed number + */ public void setMaxCount( @Nonnull final Integer maxCount) { this.maxCount = maxCount; } @@ -154,5 +153,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndCommonResourceQuotaResponseUsage.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndCommonResourceQuotaResponseUsage.java index b609c1c08..5c7838c8f 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndCommonResourceQuotaResponseUsage.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndCommonResourceQuotaResponseUsage.java @@ -38,7 +38,6 @@ /** * BckndCommonResourceQuotaResponseUsage */ - // CHECKSTYLE:OFF public class BckndCommonResourceQuotaResponseUsage // CHECKSTYLE:ON @@ -51,29 +50,29 @@ public class BckndCommonResourceQuotaResponseUsage private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the count of this {@link BckndCommonResourceQuotaResponseUsage} instance and return the same instance. - * - * @param count The count of this {@link BckndCommonResourceQuotaResponseUsage} - * @return The same instance of this {@link BckndCommonResourceQuotaResponseUsage} class - */ + * Set the count of this {@link BckndCommonResourceQuotaResponseUsage} instance and return the same instance. + * + * @param count The count of this {@link BckndCommonResourceQuotaResponseUsage} + * @return The same instance of this {@link BckndCommonResourceQuotaResponseUsage} class + */ @Nonnull public BckndCommonResourceQuotaResponseUsage count(@Nonnull final Integer count) { this.count = count; return this; } /** - * Get count - * @return count The count of this {@link BckndCommonResourceQuotaResponseUsage} instance. - **/ + * Get count + * @return count The count of this {@link BckndCommonResourceQuotaResponseUsage} instance. + */ @Nonnull public Integer getCount() { return count; } /** - * Set the count of this {@link BckndCommonResourceQuotaResponseUsage} instance. - * - * @param count The count of this {@link BckndCommonResourceQuotaResponseUsage} - */ + * Set the count of this {@link BckndCommonResourceQuotaResponseUsage} instance. + * + * @param count The count of this {@link BckndCommonResourceQuotaResponseUsage} + */ public void setCount( @Nonnull final Integer count) { this.count = count; } @@ -154,5 +153,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndDeploymentQuota.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndDeploymentQuota.java index fea5c02de..4734a25e7 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndDeploymentQuota.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndDeploymentQuota.java @@ -38,7 +38,6 @@ /** * BckndDeploymentQuota */ - // CHECKSTYLE:OFF public class BckndDeploymentQuota // CHECKSTYLE:ON @@ -54,57 +53,57 @@ public class BckndDeploymentQuota private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the maxCount of this {@link BckndDeploymentQuota} instance and return the same instance. - * - * @param maxCount The value can be 0(disabled) or a positive integer defining the maximum allowed number - * @return The same instance of this {@link BckndDeploymentQuota} class - */ + * Set the maxCount of this {@link BckndDeploymentQuota} instance and return the same instance. + * + * @param maxCount The value can be 0(disabled) or a positive integer defining the maximum allowed number + * @return The same instance of this {@link BckndDeploymentQuota} class + */ @Nonnull public BckndDeploymentQuota maxCount(@Nonnull final Integer maxCount) { this.maxCount = maxCount; return this; } /** - * The value can be 0(disabled) or a positive integer defining the maximum allowed number - * @return maxCount The maxCount of this {@link BckndDeploymentQuota} instance. - **/ + * The value can be 0(disabled) or a positive integer defining the maximum allowed number + * @return maxCount The maxCount of this {@link BckndDeploymentQuota} instance. + */ @Nonnull public Integer getMaxCount() { return maxCount; } /** - * Set the maxCount of this {@link BckndDeploymentQuota} instance. - * - * @param maxCount The value can be 0(disabled) or a positive integer defining the maximum allowed number - */ + * Set the maxCount of this {@link BckndDeploymentQuota} instance. + * + * @param maxCount The value can be 0(disabled) or a positive integer defining the maximum allowed number + */ public void setMaxCount( @Nonnull final Integer maxCount) { this.maxCount = maxCount; } /** - * Set the maxReplicaPerDeployment of this {@link BckndDeploymentQuota} instance and return the same instance. - * - * @param maxReplicaPerDeployment The maxReplicaPerDeployment of this {@link BckndDeploymentQuota} - * @return The same instance of this {@link BckndDeploymentQuota} class - */ + * Set the maxReplicaPerDeployment of this {@link BckndDeploymentQuota} instance and return the same instance. + * + * @param maxReplicaPerDeployment The maxReplicaPerDeployment of this {@link BckndDeploymentQuota} + * @return The same instance of this {@link BckndDeploymentQuota} class + */ @Nonnull public BckndDeploymentQuota maxReplicaPerDeployment(@Nonnull final Integer maxReplicaPerDeployment) { this.maxReplicaPerDeployment = maxReplicaPerDeployment; return this; } /** - * Get maxReplicaPerDeployment - * @return maxReplicaPerDeployment The maxReplicaPerDeployment of this {@link BckndDeploymentQuota} instance. - **/ + * Get maxReplicaPerDeployment + * @return maxReplicaPerDeployment The maxReplicaPerDeployment of this {@link BckndDeploymentQuota} instance. + */ @Nonnull public Integer getMaxReplicaPerDeployment() { return maxReplicaPerDeployment; } /** - * Set the maxReplicaPerDeployment of this {@link BckndDeploymentQuota} instance. - * - * @param maxReplicaPerDeployment The maxReplicaPerDeployment of this {@link BckndDeploymentQuota} - */ + * Set the maxReplicaPerDeployment of this {@link BckndDeploymentQuota} instance. + * + * @param maxReplicaPerDeployment The maxReplicaPerDeployment of this {@link BckndDeploymentQuota} + */ public void setMaxReplicaPerDeployment( @Nonnull final Integer maxReplicaPerDeployment) { this.maxReplicaPerDeployment = maxReplicaPerDeployment; } @@ -187,5 +186,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndDeploymentQuotaItem.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndDeploymentQuotaItem.java index 1d20066a6..a8f4a3f84 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndDeploymentQuotaItem.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndDeploymentQuotaItem.java @@ -39,7 +39,6 @@ /** * BckndDeploymentQuotaItem */ - // CHECKSTYLE:OFF public class BckndDeploymentQuotaItem // CHECKSTYLE:ON @@ -55,57 +54,57 @@ public class BckndDeploymentQuotaItem private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the resourcePlanType of this {@link BckndDeploymentQuotaItem} instance and return the same instance. - * - * @param resourcePlanType The resourcePlanType of this {@link BckndDeploymentQuotaItem} - * @return The same instance of this {@link BckndDeploymentQuotaItem} class - */ + * Set the resourcePlanType of this {@link BckndDeploymentQuotaItem} instance and return the same instance. + * + * @param resourcePlanType The resourcePlanType of this {@link BckndDeploymentQuotaItem} + * @return The same instance of this {@link BckndDeploymentQuotaItem} class + */ @Nonnull public BckndDeploymentQuotaItem resourcePlanType(@Nonnull final String resourcePlanType) { this.resourcePlanType = resourcePlanType; return this; } /** - * Get resourcePlanType - * @return resourcePlanType The resourcePlanType of this {@link BckndDeploymentQuotaItem} instance. - **/ + * Get resourcePlanType + * @return resourcePlanType The resourcePlanType of this {@link BckndDeploymentQuotaItem} instance. + */ @Nonnull public String getResourcePlanType() { return resourcePlanType; } /** - * Set the resourcePlanType of this {@link BckndDeploymentQuotaItem} instance. - * - * @param resourcePlanType The resourcePlanType of this {@link BckndDeploymentQuotaItem} - */ + * Set the resourcePlanType of this {@link BckndDeploymentQuotaItem} instance. + * + * @param resourcePlanType The resourcePlanType of this {@link BckndDeploymentQuotaItem} + */ public void setResourcePlanType( @Nonnull final String resourcePlanType) { this.resourcePlanType = resourcePlanType; } /** - * Set the deploymentQuota of this {@link BckndDeploymentQuotaItem} instance and return the same instance. - * - * @param deploymentQuota The deploymentQuota of this {@link BckndDeploymentQuotaItem} - * @return The same instance of this {@link BckndDeploymentQuotaItem} class - */ + * Set the deploymentQuota of this {@link BckndDeploymentQuotaItem} instance and return the same instance. + * + * @param deploymentQuota The deploymentQuota of this {@link BckndDeploymentQuotaItem} + * @return The same instance of this {@link BckndDeploymentQuotaItem} class + */ @Nonnull public BckndDeploymentQuotaItem deploymentQuota(@Nonnull final BckndDeploymentQuota deploymentQuota) { this.deploymentQuota = deploymentQuota; return this; } /** - * Get deploymentQuota - * @return deploymentQuota The deploymentQuota of this {@link BckndDeploymentQuotaItem} instance. - **/ + * Get deploymentQuota + * @return deploymentQuota The deploymentQuota of this {@link BckndDeploymentQuotaItem} instance. + */ @Nonnull public BckndDeploymentQuota getDeploymentQuota() { return deploymentQuota; } /** - * Set the deploymentQuota of this {@link BckndDeploymentQuotaItem} instance. - * - * @param deploymentQuota The deploymentQuota of this {@link BckndDeploymentQuotaItem} - */ + * Set the deploymentQuota of this {@link BckndDeploymentQuotaItem} instance. + * + * @param deploymentQuota The deploymentQuota of this {@link BckndDeploymentQuotaItem} + */ public void setDeploymentQuota( @Nonnull final BckndDeploymentQuota deploymentQuota) { this.deploymentQuota = deploymentQuota; } @@ -188,5 +187,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndDeploymentResourceQuotaResponse.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndDeploymentResourceQuotaResponse.java index 94dc6ee4a..1741871ae 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndDeploymentResourceQuotaResponse.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndDeploymentResourceQuotaResponse.java @@ -43,7 +43,6 @@ /** * BckndDeploymentResourceQuotaResponse */ - // CHECKSTYLE:OFF public class BckndDeploymentResourceQuotaResponse // CHECKSTYLE:ON @@ -59,49 +58,49 @@ public class BckndDeploymentResourceQuotaResponse private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the usage of this {@link BckndDeploymentResourceQuotaResponse} instance and return the same instance. - * - * @param usage The usage of this {@link BckndDeploymentResourceQuotaResponse} - * @return The same instance of this {@link BckndDeploymentResourceQuotaResponse} class - */ + * Set the usage of this {@link BckndDeploymentResourceQuotaResponse} instance and return the same instance. + * + * @param usage The usage of this {@link BckndDeploymentResourceQuotaResponse} + * @return The same instance of this {@link BckndDeploymentResourceQuotaResponse} class + */ @Nonnull public BckndDeploymentResourceQuotaResponse usage(@Nonnull final BckndDeploymentUsage usage) { this.usage = usage; return this; } /** - * Get usage - * @return usage The usage of this {@link BckndDeploymentResourceQuotaResponse} instance. - **/ + * Get usage + * @return usage The usage of this {@link BckndDeploymentResourceQuotaResponse} instance. + */ @Nonnull public BckndDeploymentUsage getUsage() { return usage; } /** - * Set the usage of this {@link BckndDeploymentResourceQuotaResponse} instance. - * - * @param usage The usage of this {@link BckndDeploymentResourceQuotaResponse} - */ + * Set the usage of this {@link BckndDeploymentResourceQuotaResponse} instance. + * + * @param usage The usage of this {@link BckndDeploymentResourceQuotaResponse} + */ public void setUsage( @Nonnull final BckndDeploymentUsage usage) { this.usage = usage; } /** - * Set the quotas of this {@link BckndDeploymentResourceQuotaResponse} instance and return the same instance. - * - * @param quotas The quotas of this {@link BckndDeploymentResourceQuotaResponse} - * @return The same instance of this {@link BckndDeploymentResourceQuotaResponse} class - */ + * Set the quotas of this {@link BckndDeploymentResourceQuotaResponse} instance and return the same instance. + * + * @param quotas The quotas of this {@link BckndDeploymentResourceQuotaResponse} + * @return The same instance of this {@link BckndDeploymentResourceQuotaResponse} class + */ @Nonnull public BckndDeploymentResourceQuotaResponse quotas(@Nonnull final List quotas) { this.quotas = quotas; return this; } /** - * Add one quotas instance to this {@link BckndDeploymentResourceQuotaResponse}. - * @param quotasItem The quotas that should be added - * @return The same instance of type {@link BckndDeploymentResourceQuotaResponse} - */ - @Nonnull public BckndDeploymentResourceQuotaResponse addquotasItem( @Nonnull final BckndDeploymentQuotaItem quotasItem) { + * Add one quotas instance to this {@link BckndDeploymentResourceQuotaResponse}. + * @param quotasItem The quotas that should be added + * @return The same instance of type {@link BckndDeploymentResourceQuotaResponse} + */ + @Nonnull public BckndDeploymentResourceQuotaResponse addQuotasItem( @Nonnull final BckndDeploymentQuotaItem quotasItem) { if (this.quotas == null) { this.quotas = new ArrayList<>(); } @@ -110,18 +109,18 @@ public void setUsage( @Nonnull final BckndDeploymentUsage usage) { } /** - * Get quotas - * @return quotas The quotas of this {@link BckndDeploymentResourceQuotaResponse} instance. - **/ + * Get quotas + * @return quotas The quotas of this {@link BckndDeploymentResourceQuotaResponse} instance. + */ @Nonnull public List getQuotas() { return quotas; } /** - * Set the quotas of this {@link BckndDeploymentResourceQuotaResponse} instance. - * - * @param quotas The quotas of this {@link BckndDeploymentResourceQuotaResponse} - */ + * Set the quotas of this {@link BckndDeploymentResourceQuotaResponse} instance. + * + * @param quotas The quotas of this {@link BckndDeploymentResourceQuotaResponse} + */ public void setQuotas( @Nonnull final List quotas) { this.quotas = quotas; } @@ -204,5 +203,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndDeploymentUsage.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndDeploymentUsage.java index 016488c6b..a96197e7e 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndDeploymentUsage.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndDeploymentUsage.java @@ -42,7 +42,6 @@ /** * BckndDeploymentUsage */ - // CHECKSTYLE:OFF public class BckndDeploymentUsage // CHECKSTYLE:ON @@ -58,49 +57,49 @@ public class BckndDeploymentUsage private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the count of this {@link BckndDeploymentUsage} instance and return the same instance. - * - * @param count The count of this {@link BckndDeploymentUsage} - * @return The same instance of this {@link BckndDeploymentUsage} class - */ + * Set the count of this {@link BckndDeploymentUsage} instance and return the same instance. + * + * @param count The count of this {@link BckndDeploymentUsage} + * @return The same instance of this {@link BckndDeploymentUsage} class + */ @Nonnull public BckndDeploymentUsage count(@Nonnull final Integer count) { this.count = count; return this; } /** - * Get count - * @return count The count of this {@link BckndDeploymentUsage} instance. - **/ + * Get count + * @return count The count of this {@link BckndDeploymentUsage} instance. + */ @Nonnull public Integer getCount() { return count; } /** - * Set the count of this {@link BckndDeploymentUsage} instance. - * - * @param count The count of this {@link BckndDeploymentUsage} - */ + * Set the count of this {@link BckndDeploymentUsage} instance. + * + * @param count The count of this {@link BckndDeploymentUsage} + */ public void setCount( @Nonnull final Integer count) { this.count = count; } /** - * Set the items of this {@link BckndDeploymentUsage} instance and return the same instance. - * - * @param items The items of this {@link BckndDeploymentUsage} - * @return The same instance of this {@link BckndDeploymentUsage} class - */ + * Set the items of this {@link BckndDeploymentUsage} instance and return the same instance. + * + * @param items The items of this {@link BckndDeploymentUsage} + * @return The same instance of this {@link BckndDeploymentUsage} class + */ @Nonnull public BckndDeploymentUsage items(@Nonnull final List items) { this.items = items; return this; } /** - * Add one items instance to this {@link BckndDeploymentUsage}. - * @param itemsItem The items that should be added - * @return The same instance of type {@link BckndDeploymentUsage} - */ - @Nonnull public BckndDeploymentUsage additemsItem( @Nonnull final BckndUsageResourcePlanItem itemsItem) { + * Add one items instance to this {@link BckndDeploymentUsage}. + * @param itemsItem The items that should be added + * @return The same instance of type {@link BckndDeploymentUsage} + */ + @Nonnull public BckndDeploymentUsage addItemsItem( @Nonnull final BckndUsageResourcePlanItem itemsItem) { if (this.items == null) { this.items = new ArrayList<>(); } @@ -109,18 +108,18 @@ public void setCount( @Nonnull final Integer count) { } /** - * Get items - * @return items The items of this {@link BckndDeploymentUsage} instance. - **/ + * Get items + * @return items The items of this {@link BckndDeploymentUsage} instance. + */ @Nonnull public List getItems() { return items; } /** - * Set the items of this {@link BckndDeploymentUsage} instance. - * - * @param items The items of this {@link BckndDeploymentUsage} - */ + * Set the items of this {@link BckndDeploymentUsage} instance. + * + * @param items The items of this {@link BckndDeploymentUsage} + */ public void setItems( @Nonnull final List items) { this.items = items; } @@ -203,5 +202,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndError.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndError.java index 77e6929b5..e97fe3b32 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndError.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndError.java @@ -38,7 +38,6 @@ /** * BckndError */ - // CHECKSTYLE:OFF public class BckndError // CHECKSTYLE:ON @@ -63,141 +62,141 @@ public class BckndError private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the code of this {@link BckndError} instance and return the same instance. - * - * @param code Descriptive error code (not http status code) - * @return The same instance of this {@link BckndError} class - */ + * Set the code of this {@link BckndError} instance and return the same instance. + * + * @param code Descriptive error code (not http status code) + * @return The same instance of this {@link BckndError} class + */ @Nonnull public BckndError code(@Nonnull final String code) { this.code = code; return this; } /** - * Descriptive error code (not http status code) - * @return code The code of this {@link BckndError} instance. - **/ + * Descriptive error code (not http status code) + * @return code The code of this {@link BckndError} instance. + */ @Nonnull public String getCode() { return code; } /** - * Set the code of this {@link BckndError} instance. - * - * @param code Descriptive error code (not http status code) - */ + * Set the code of this {@link BckndError} instance. + * + * @param code Descriptive error code (not http status code) + */ public void setCode( @Nonnull final String code) { this.code = code; } /** - * Set the message of this {@link BckndError} instance and return the same instance. - * - * @param message Plaintext error description - * @return The same instance of this {@link BckndError} class - */ + * Set the message of this {@link BckndError} instance and return the same instance. + * + * @param message Plaintext error description + * @return The same instance of this {@link BckndError} class + */ @Nonnull public BckndError message(@Nonnull final String message) { this.message = message; return this; } /** - * Plaintext error description - * @return message The message of this {@link BckndError} instance. - **/ + * Plaintext error description + * @return message The message of this {@link BckndError} instance. + */ @Nonnull public String getMessage() { return message; } /** - * Set the message of this {@link BckndError} instance. - * - * @param message Plaintext error description - */ + * Set the message of this {@link BckndError} instance. + * + * @param message Plaintext error description + */ public void setMessage( @Nonnull final String message) { this.message = message; } /** - * Set the requestId of this {@link BckndError} instance and return the same instance. - * - * @param requestId ID of the individual request - * @return The same instance of this {@link BckndError} class - */ + * Set the requestId of this {@link BckndError} instance and return the same instance. + * + * @param requestId ID of the individual request + * @return The same instance of this {@link BckndError} class + */ @Nonnull public BckndError requestId(@Nonnull final String requestId) { this.requestId = requestId; return this; } /** - * ID of the individual request - * @return requestId The requestId of this {@link BckndError} instance. - **/ + * ID of the individual request + * @return requestId The requestId of this {@link BckndError} instance. + */ @Nonnull public String getRequestId() { return requestId; } /** - * Set the requestId of this {@link BckndError} instance. - * - * @param requestId ID of the individual request - */ + * Set the requestId of this {@link BckndError} instance. + * + * @param requestId ID of the individual request + */ public void setRequestId( @Nonnull final String requestId) { this.requestId = requestId; } /** - * Set the target of this {@link BckndError} instance and return the same instance. - * - * @param target Invoked URL - * @return The same instance of this {@link BckndError} class - */ + * Set the target of this {@link BckndError} instance and return the same instance. + * + * @param target Invoked URL + * @return The same instance of this {@link BckndError} class + */ @Nonnull public BckndError target(@Nonnull final String target) { this.target = target; return this; } /** - * Invoked URL - * @return target The target of this {@link BckndError} instance. - **/ + * Invoked URL + * @return target The target of this {@link BckndError} instance. + */ @Nonnull public String getTarget() { return target; } /** - * Set the target of this {@link BckndError} instance. - * - * @param target Invoked URL - */ + * Set the target of this {@link BckndError} instance. + * + * @param target Invoked URL + */ public void setTarget( @Nonnull final String target) { this.target = target; } /** - * Set the details of this {@link BckndError} instance and return the same instance. - * - * @param details Optional details of the error message - * @return The same instance of this {@link BckndError} class - */ + * Set the details of this {@link BckndError} instance and return the same instance. + * + * @param details Optional details of the error message + * @return The same instance of this {@link BckndError} class + */ @Nonnull public BckndError details(@Nonnull final Object details) { this.details = details; return this; } /** - * Optional details of the error message - * @return details The details of this {@link BckndError} instance. - **/ + * Optional details of the error message + * @return details The details of this {@link BckndError} instance. + */ @Nonnull public Object getDetails() { return details; } /** - * Set the details of this {@link BckndError} instance. - * - * @param details Optional details of the error message - */ + * Set the details of this {@link BckndError} instance. + * + * @param details Optional details of the error message + */ public void setDetails( @Nonnull final Object details) { this.details = details; } @@ -286,5 +285,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndErrorResponse.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndErrorResponse.java index c96434292..f37d6bc5f 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndErrorResponse.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndErrorResponse.java @@ -39,7 +39,6 @@ /** * BckndErrorResponse */ - // CHECKSTYLE:OFF public class BckndErrorResponse // CHECKSTYLE:ON @@ -52,29 +51,29 @@ public class BckndErrorResponse private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the error of this {@link BckndErrorResponse} instance and return the same instance. - * - * @param error The error of this {@link BckndErrorResponse} - * @return The same instance of this {@link BckndErrorResponse} class - */ + * Set the error of this {@link BckndErrorResponse} instance and return the same instance. + * + * @param error The error of this {@link BckndErrorResponse} + * @return The same instance of this {@link BckndErrorResponse} class + */ @Nonnull public BckndErrorResponse error(@Nonnull final BckndError error) { this.error = error; return this; } /** - * Get error - * @return error The error of this {@link BckndErrorResponse} instance. - **/ + * Get error + * @return error The error of this {@link BckndErrorResponse} instance. + */ @Nonnull public BckndError getError() { return error; } /** - * Set the error of this {@link BckndErrorResponse} instance. - * - * @param error The error of this {@link BckndErrorResponse} - */ + * Set the error of this {@link BckndErrorResponse} instance. + * + * @param error The error of this {@link BckndErrorResponse} + */ public void setError( @Nonnull final BckndError error) { this.error = error; } @@ -155,5 +154,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndEvent.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndEvent.java index 9acd525b8..d612742f5 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndEvent.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndEvent.java @@ -39,7 +39,6 @@ /** * BckndEvent */ - // CHECKSTYLE:OFF public class BckndEvent // CHECKSTYLE:ON @@ -177,141 +176,141 @@ public enum StateEnum { private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the tenantId of this {@link BckndEvent} instance and return the same instance. - * - * @param tenantId tenant id - * @return The same instance of this {@link BckndEvent} class - */ + * Set the tenantId of this {@link BckndEvent} instance and return the same instance. + * + * @param tenantId tenant id + * @return The same instance of this {@link BckndEvent} class + */ @Nonnull public BckndEvent tenantId(@Nonnull final String tenantId) { this.tenantId = tenantId; return this; } /** - * tenant id - * @return tenantId The tenantId of this {@link BckndEvent} instance. - **/ + * tenant id + * @return tenantId The tenantId of this {@link BckndEvent} instance. + */ @Nonnull public String getTenantId() { return tenantId; } /** - * Set the tenantId of this {@link BckndEvent} instance. - * - * @param tenantId tenant id - */ + * Set the tenantId of this {@link BckndEvent} instance. + * + * @param tenantId tenant id + */ public void setTenantId( @Nonnull final String tenantId) { this.tenantId = tenantId; } /** - * Set the action of this {@link BckndEvent} instance and return the same instance. - * - * @param action The action of this {@link BckndEvent} - * @return The same instance of this {@link BckndEvent} class - */ + * Set the action of this {@link BckndEvent} instance and return the same instance. + * + * @param action The action of this {@link BckndEvent} + * @return The same instance of this {@link BckndEvent} class + */ @Nonnull public BckndEvent action(@Nonnull final ActionEnum action) { this.action = action; return this; } /** - * Get action - * @return action The action of this {@link BckndEvent} instance. - **/ + * Get action + * @return action The action of this {@link BckndEvent} instance. + */ @Nonnull public ActionEnum getAction() { return action; } /** - * Set the action of this {@link BckndEvent} instance. - * - * @param action The action of this {@link BckndEvent} - */ + * Set the action of this {@link BckndEvent} instance. + * + * @param action The action of this {@link BckndEvent} + */ public void setAction( @Nonnull final ActionEnum action) { this.action = action; } /** - * Set the state of this {@link BckndEvent} instance and return the same instance. - * - * @param state The state of this {@link BckndEvent} - * @return The same instance of this {@link BckndEvent} class - */ + * Set the state of this {@link BckndEvent} instance and return the same instance. + * + * @param state The state of this {@link BckndEvent} + * @return The same instance of this {@link BckndEvent} class + */ @Nonnull public BckndEvent state(@Nonnull final StateEnum state) { this.state = state; return this; } /** - * Get state - * @return state The state of this {@link BckndEvent} instance. - **/ + * Get state + * @return state The state of this {@link BckndEvent} instance. + */ @Nonnull public StateEnum getState() { return state; } /** - * Set the state of this {@link BckndEvent} instance. - * - * @param state The state of this {@link BckndEvent} - */ + * Set the state of this {@link BckndEvent} instance. + * + * @param state The state of this {@link BckndEvent} + */ public void setState( @Nonnull final StateEnum state) { this.state = state; } /** - * Set the description of this {@link BckndEvent} instance and return the same instance. - * - * @param description describes the event state - * @return The same instance of this {@link BckndEvent} class - */ + * Set the description of this {@link BckndEvent} instance and return the same instance. + * + * @param description describes the event state + * @return The same instance of this {@link BckndEvent} class + */ @Nonnull public BckndEvent description(@Nonnull final String description) { this.description = description; return this; } /** - * describes the event state - * @return description The description of this {@link BckndEvent} instance. - **/ + * describes the event state + * @return description The description of this {@link BckndEvent} instance. + */ @Nonnull public String getDescription() { return description; } /** - * Set the description of this {@link BckndEvent} instance. - * - * @param description describes the event state - */ + * Set the description of this {@link BckndEvent} instance. + * + * @param description describes the event state + */ public void setDescription( @Nonnull final String description) { this.description = description; } /** - * Set the createdAt of this {@link BckndEvent} instance and return the same instance. - * - * @param createdAt The createdAt of this {@link BckndEvent} - * @return The same instance of this {@link BckndEvent} class - */ + * Set the createdAt of this {@link BckndEvent} instance and return the same instance. + * + * @param createdAt The createdAt of this {@link BckndEvent} + * @return The same instance of this {@link BckndEvent} class + */ @Nonnull public BckndEvent createdAt(@Nonnull final OffsetDateTime createdAt) { this.createdAt = createdAt; return this; } /** - * Get createdAt - * @return createdAt The createdAt of this {@link BckndEvent} instance. - **/ + * Get createdAt + * @return createdAt The createdAt of this {@link BckndEvent} instance. + */ @Nonnull public OffsetDateTime getCreatedAt() { return createdAt; } /** - * Set the createdAt of this {@link BckndEvent} instance. - * - * @param createdAt The createdAt of this {@link BckndEvent} - */ + * Set the createdAt of this {@link BckndEvent} instance. + * + * @param createdAt The createdAt of this {@link BckndEvent} + */ public void setCreatedAt( @Nonnull final OffsetDateTime createdAt) { this.createdAt = createdAt; } @@ -400,5 +399,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndExecutableResourceQuotaResponse.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndExecutableResourceQuotaResponse.java index f4b6db294..cbc2a11f6 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndExecutableResourceQuotaResponse.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndExecutableResourceQuotaResponse.java @@ -40,7 +40,6 @@ /** * BckndExecutableResourceQuotaResponse */ - // CHECKSTYLE:OFF public class BckndExecutableResourceQuotaResponse // CHECKSTYLE:ON @@ -56,57 +55,57 @@ public class BckndExecutableResourceQuotaResponse private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the usage of this {@link BckndExecutableResourceQuotaResponse} instance and return the same instance. - * - * @param usage The usage of this {@link BckndExecutableResourceQuotaResponse} - * @return The same instance of this {@link BckndExecutableResourceQuotaResponse} class - */ + * Set the usage of this {@link BckndExecutableResourceQuotaResponse} instance and return the same instance. + * + * @param usage The usage of this {@link BckndExecutableResourceQuotaResponse} + * @return The same instance of this {@link BckndExecutableResourceQuotaResponse} class + */ @Nonnull public BckndExecutableResourceQuotaResponse usage(@Nonnull final BckndExecutableResourceQuotaResponseUsage usage) { this.usage = usage; return this; } /** - * Get usage - * @return usage The usage of this {@link BckndExecutableResourceQuotaResponse} instance. - **/ + * Get usage + * @return usage The usage of this {@link BckndExecutableResourceQuotaResponse} instance. + */ @Nonnull public BckndExecutableResourceQuotaResponseUsage getUsage() { return usage; } /** - * Set the usage of this {@link BckndExecutableResourceQuotaResponse} instance. - * - * @param usage The usage of this {@link BckndExecutableResourceQuotaResponse} - */ + * Set the usage of this {@link BckndExecutableResourceQuotaResponse} instance. + * + * @param usage The usage of this {@link BckndExecutableResourceQuotaResponse} + */ public void setUsage( @Nonnull final BckndExecutableResourceQuotaResponseUsage usage) { this.usage = usage; } /** - * Set the quota of this {@link BckndExecutableResourceQuotaResponse} instance and return the same instance. - * - * @param quota The quota of this {@link BckndExecutableResourceQuotaResponse} - * @return The same instance of this {@link BckndExecutableResourceQuotaResponse} class - */ + * Set the quota of this {@link BckndExecutableResourceQuotaResponse} instance and return the same instance. + * + * @param quota The quota of this {@link BckndExecutableResourceQuotaResponse} + * @return The same instance of this {@link BckndExecutableResourceQuotaResponse} class + */ @Nonnull public BckndExecutableResourceQuotaResponse quota(@Nonnull final BckndExecutableResourceQuotaResponseQuota quota) { this.quota = quota; return this; } /** - * Get quota - * @return quota The quota of this {@link BckndExecutableResourceQuotaResponse} instance. - **/ + * Get quota + * @return quota The quota of this {@link BckndExecutableResourceQuotaResponse} instance. + */ @Nonnull public BckndExecutableResourceQuotaResponseQuota getQuota() { return quota; } /** - * Set the quota of this {@link BckndExecutableResourceQuotaResponse} instance. - * - * @param quota The quota of this {@link BckndExecutableResourceQuotaResponse} - */ + * Set the quota of this {@link BckndExecutableResourceQuotaResponse} instance. + * + * @param quota The quota of this {@link BckndExecutableResourceQuotaResponse} + */ public void setQuota( @Nonnull final BckndExecutableResourceQuotaResponseQuota quota) { this.quota = quota; } @@ -189,5 +188,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndExecutableResourceQuotaResponseQuota.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndExecutableResourceQuotaResponseQuota.java index 9a3bfc7d7..80f2be80d 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndExecutableResourceQuotaResponseQuota.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndExecutableResourceQuotaResponseQuota.java @@ -38,7 +38,6 @@ /** * BckndExecutableResourceQuotaResponseQuota */ - // CHECKSTYLE:OFF public class BckndExecutableResourceQuotaResponseQuota // CHECKSTYLE:ON @@ -54,57 +53,57 @@ public class BckndExecutableResourceQuotaResponseQuota private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the servingTemplateMaxCount of this {@link BckndExecutableResourceQuotaResponseQuota} instance and return the same instance. - * - * @param servingTemplateMaxCount The value can be 0(disabled) or a positive integer defining the maximum allowed number - * @return The same instance of this {@link BckndExecutableResourceQuotaResponseQuota} class - */ + * Set the servingTemplateMaxCount of this {@link BckndExecutableResourceQuotaResponseQuota} instance and return the same instance. + * + * @param servingTemplateMaxCount The value can be 0(disabled) or a positive integer defining the maximum allowed number + * @return The same instance of this {@link BckndExecutableResourceQuotaResponseQuota} class + */ @Nonnull public BckndExecutableResourceQuotaResponseQuota servingTemplateMaxCount(@Nonnull final Integer servingTemplateMaxCount) { this.servingTemplateMaxCount = servingTemplateMaxCount; return this; } /** - * The value can be 0(disabled) or a positive integer defining the maximum allowed number - * @return servingTemplateMaxCount The servingTemplateMaxCount of this {@link BckndExecutableResourceQuotaResponseQuota} instance. - **/ + * The value can be 0(disabled) or a positive integer defining the maximum allowed number + * @return servingTemplateMaxCount The servingTemplateMaxCount of this {@link BckndExecutableResourceQuotaResponseQuota} instance. + */ @Nonnull public Integer getServingTemplateMaxCount() { return servingTemplateMaxCount; } /** - * Set the servingTemplateMaxCount of this {@link BckndExecutableResourceQuotaResponseQuota} instance. - * - * @param servingTemplateMaxCount The value can be 0(disabled) or a positive integer defining the maximum allowed number - */ + * Set the servingTemplateMaxCount of this {@link BckndExecutableResourceQuotaResponseQuota} instance. + * + * @param servingTemplateMaxCount The value can be 0(disabled) or a positive integer defining the maximum allowed number + */ public void setServingTemplateMaxCount( @Nonnull final Integer servingTemplateMaxCount) { this.servingTemplateMaxCount = servingTemplateMaxCount; } /** - * Set the workflowTemplateMaxCount of this {@link BckndExecutableResourceQuotaResponseQuota} instance and return the same instance. - * - * @param workflowTemplateMaxCount The value can be 0(disabled) or a positive integer defining the maximum allowed number - * @return The same instance of this {@link BckndExecutableResourceQuotaResponseQuota} class - */ + * Set the workflowTemplateMaxCount of this {@link BckndExecutableResourceQuotaResponseQuota} instance and return the same instance. + * + * @param workflowTemplateMaxCount The value can be 0(disabled) or a positive integer defining the maximum allowed number + * @return The same instance of this {@link BckndExecutableResourceQuotaResponseQuota} class + */ @Nonnull public BckndExecutableResourceQuotaResponseQuota workflowTemplateMaxCount(@Nonnull final Integer workflowTemplateMaxCount) { this.workflowTemplateMaxCount = workflowTemplateMaxCount; return this; } /** - * The value can be 0(disabled) or a positive integer defining the maximum allowed number - * @return workflowTemplateMaxCount The workflowTemplateMaxCount of this {@link BckndExecutableResourceQuotaResponseQuota} instance. - **/ + * The value can be 0(disabled) or a positive integer defining the maximum allowed number + * @return workflowTemplateMaxCount The workflowTemplateMaxCount of this {@link BckndExecutableResourceQuotaResponseQuota} instance. + */ @Nonnull public Integer getWorkflowTemplateMaxCount() { return workflowTemplateMaxCount; } /** - * Set the workflowTemplateMaxCount of this {@link BckndExecutableResourceQuotaResponseQuota} instance. - * - * @param workflowTemplateMaxCount The value can be 0(disabled) or a positive integer defining the maximum allowed number - */ + * Set the workflowTemplateMaxCount of this {@link BckndExecutableResourceQuotaResponseQuota} instance. + * + * @param workflowTemplateMaxCount The value can be 0(disabled) or a positive integer defining the maximum allowed number + */ public void setWorkflowTemplateMaxCount( @Nonnull final Integer workflowTemplateMaxCount) { this.workflowTemplateMaxCount = workflowTemplateMaxCount; } @@ -187,5 +186,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndExecutableResourceQuotaResponseUsage.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndExecutableResourceQuotaResponseUsage.java index e6368ab8b..965796b05 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndExecutableResourceQuotaResponseUsage.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndExecutableResourceQuotaResponseUsage.java @@ -38,7 +38,6 @@ /** * BckndExecutableResourceQuotaResponseUsage */ - // CHECKSTYLE:OFF public class BckndExecutableResourceQuotaResponseUsage // CHECKSTYLE:ON @@ -54,57 +53,57 @@ public class BckndExecutableResourceQuotaResponseUsage private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the servingTemplateCount of this {@link BckndExecutableResourceQuotaResponseUsage} instance and return the same instance. - * - * @param servingTemplateCount The servingTemplateCount of this {@link BckndExecutableResourceQuotaResponseUsage} - * @return The same instance of this {@link BckndExecutableResourceQuotaResponseUsage} class - */ + * Set the servingTemplateCount of this {@link BckndExecutableResourceQuotaResponseUsage} instance and return the same instance. + * + * @param servingTemplateCount The servingTemplateCount of this {@link BckndExecutableResourceQuotaResponseUsage} + * @return The same instance of this {@link BckndExecutableResourceQuotaResponseUsage} class + */ @Nonnull public BckndExecutableResourceQuotaResponseUsage servingTemplateCount(@Nonnull final Integer servingTemplateCount) { this.servingTemplateCount = servingTemplateCount; return this; } /** - * Get servingTemplateCount - * @return servingTemplateCount The servingTemplateCount of this {@link BckndExecutableResourceQuotaResponseUsage} instance. - **/ + * Get servingTemplateCount + * @return servingTemplateCount The servingTemplateCount of this {@link BckndExecutableResourceQuotaResponseUsage} instance. + */ @Nonnull public Integer getServingTemplateCount() { return servingTemplateCount; } /** - * Set the servingTemplateCount of this {@link BckndExecutableResourceQuotaResponseUsage} instance. - * - * @param servingTemplateCount The servingTemplateCount of this {@link BckndExecutableResourceQuotaResponseUsage} - */ + * Set the servingTemplateCount of this {@link BckndExecutableResourceQuotaResponseUsage} instance. + * + * @param servingTemplateCount The servingTemplateCount of this {@link BckndExecutableResourceQuotaResponseUsage} + */ public void setServingTemplateCount( @Nonnull final Integer servingTemplateCount) { this.servingTemplateCount = servingTemplateCount; } /** - * Set the workflowTemplateCount of this {@link BckndExecutableResourceQuotaResponseUsage} instance and return the same instance. - * - * @param workflowTemplateCount The workflowTemplateCount of this {@link BckndExecutableResourceQuotaResponseUsage} - * @return The same instance of this {@link BckndExecutableResourceQuotaResponseUsage} class - */ + * Set the workflowTemplateCount of this {@link BckndExecutableResourceQuotaResponseUsage} instance and return the same instance. + * + * @param workflowTemplateCount The workflowTemplateCount of this {@link BckndExecutableResourceQuotaResponseUsage} + * @return The same instance of this {@link BckndExecutableResourceQuotaResponseUsage} class + */ @Nonnull public BckndExecutableResourceQuotaResponseUsage workflowTemplateCount(@Nonnull final Integer workflowTemplateCount) { this.workflowTemplateCount = workflowTemplateCount; return this; } /** - * Get workflowTemplateCount - * @return workflowTemplateCount The workflowTemplateCount of this {@link BckndExecutableResourceQuotaResponseUsage} instance. - **/ + * Get workflowTemplateCount + * @return workflowTemplateCount The workflowTemplateCount of this {@link BckndExecutableResourceQuotaResponseUsage} instance. + */ @Nonnull public Integer getWorkflowTemplateCount() { return workflowTemplateCount; } /** - * Set the workflowTemplateCount of this {@link BckndExecutableResourceQuotaResponseUsage} instance. - * - * @param workflowTemplateCount The workflowTemplateCount of this {@link BckndExecutableResourceQuotaResponseUsage} - */ + * Set the workflowTemplateCount of this {@link BckndExecutableResourceQuotaResponseUsage} instance. + * + * @param workflowTemplateCount The workflowTemplateCount of this {@link BckndExecutableResourceQuotaResponseUsage} + */ public void setWorkflowTemplateCount( @Nonnull final Integer workflowTemplateCount) { this.workflowTemplateCount = workflowTemplateCount; } @@ -187,5 +186,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndExtendedService.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndExtendedService.java index 204951e30..2bd5a9cda 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndExtendedService.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndExtendedService.java @@ -44,7 +44,6 @@ /** * BckndExtendedService */ - // CHECKSTYLE:OFF public class BckndExtendedService // CHECKSTYLE:ON @@ -142,161 +141,161 @@ public enum StatusEnum { private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the name of this {@link BckndExtendedService} instance and return the same instance. - * - * @param name service name - * @return The same instance of this {@link BckndExtendedService} class - */ + * Set the name of this {@link BckndExtendedService} instance and return the same instance. + * + * @param name service name + * @return The same instance of this {@link BckndExtendedService} class + */ @Nonnull public BckndExtendedService name(@Nonnull final String name) { this.name = name; return this; } /** - * service name - * @return name The name of this {@link BckndExtendedService} instance. - **/ + * service name + * @return name The name of this {@link BckndExtendedService} instance. + */ @Nonnull public String getName() { return name; } /** - * Set the name of this {@link BckndExtendedService} instance. - * - * @param name service name - */ + * Set the name of this {@link BckndExtendedService} instance. + * + * @param name service name + */ public void setName( @Nonnull final String name) { this.name = name; } /** - * Set the description of this {@link BckndExtendedService} instance and return the same instance. - * - * @param description service description - * @return The same instance of this {@link BckndExtendedService} class - */ + * Set the description of this {@link BckndExtendedService} instance and return the same instance. + * + * @param description service description + * @return The same instance of this {@link BckndExtendedService} class + */ @Nonnull public BckndExtendedService description(@Nonnull final String description) { this.description = description; return this; } /** - * service description - * @return description The description of this {@link BckndExtendedService} instance. - **/ + * service description + * @return description The description of this {@link BckndExtendedService} instance. + */ @Nonnull public String getDescription() { return description; } /** - * Set the description of this {@link BckndExtendedService} instance. - * - * @param description service description - */ + * Set the description of this {@link BckndExtendedService} instance. + * + * @param description service description + */ public void setDescription( @Nonnull final String description) { this.description = description; } /** - * Set the url of this {@link BckndExtendedService} instance and return the same instance. - * - * @param url service broker url - * @return The same instance of this {@link BckndExtendedService} class - */ + * Set the url of this {@link BckndExtendedService} instance and return the same instance. + * + * @param url service broker url + * @return The same instance of this {@link BckndExtendedService} class + */ @Nonnull public BckndExtendedService url(@Nonnull final String url) { this.url = url; return this; } /** - * service broker url - * @return url The url of this {@link BckndExtendedService} instance. - **/ + * service broker url + * @return url The url of this {@link BckndExtendedService} instance. + */ @Nonnull public String getUrl() { return url; } /** - * Set the url of this {@link BckndExtendedService} instance. - * - * @param url service broker url - */ + * Set the url of this {@link BckndExtendedService} instance. + * + * @param url service broker url + */ public void setUrl( @Nonnull final String url) { this.url = url; } /** - * Set the brokerSecret of this {@link BckndExtendedService} instance and return the same instance. - * - * @param brokerSecret The brokerSecret of this {@link BckndExtendedService} - * @return The same instance of this {@link BckndExtendedService} class - */ + * Set the brokerSecret of this {@link BckndExtendedService} instance and return the same instance. + * + * @param brokerSecret The brokerSecret of this {@link BckndExtendedService} + * @return The same instance of this {@link BckndExtendedService} class + */ @Nonnull public BckndExtendedService brokerSecret(@Nonnull final BckndServiceBrokerSecret brokerSecret) { this.brokerSecret = brokerSecret; return this; } /** - * Get brokerSecret - * @return brokerSecret The brokerSecret of this {@link BckndExtendedService} instance. - **/ + * Get brokerSecret + * @return brokerSecret The brokerSecret of this {@link BckndExtendedService} instance. + */ @Nonnull public BckndServiceBrokerSecret getBrokerSecret() { return brokerSecret; } /** - * Set the brokerSecret of this {@link BckndExtendedService} instance. - * - * @param brokerSecret The brokerSecret of this {@link BckndExtendedService} - */ + * Set the brokerSecret of this {@link BckndExtendedService} instance. + * + * @param brokerSecret The brokerSecret of this {@link BckndExtendedService} + */ public void setBrokerSecret( @Nonnull final BckndServiceBrokerSecret brokerSecret) { this.brokerSecret = brokerSecret; } /** - * Set the capabilities of this {@link BckndExtendedService} instance and return the same instance. - * - * @param capabilities The capabilities of this {@link BckndExtendedService} - * @return The same instance of this {@link BckndExtendedService} class - */ + * Set the capabilities of this {@link BckndExtendedService} instance and return the same instance. + * + * @param capabilities The capabilities of this {@link BckndExtendedService} + * @return The same instance of this {@link BckndExtendedService} class + */ @Nonnull public BckndExtendedService capabilities(@Nonnull final BckndServiceCapabilities capabilities) { this.capabilities = capabilities; return this; } /** - * Get capabilities - * @return capabilities The capabilities of this {@link BckndExtendedService} instance. - **/ + * Get capabilities + * @return capabilities The capabilities of this {@link BckndExtendedService} instance. + */ @Nonnull public BckndServiceCapabilities getCapabilities() { return capabilities; } /** - * Set the capabilities of this {@link BckndExtendedService} instance. - * - * @param capabilities The capabilities of this {@link BckndExtendedService} - */ + * Set the capabilities of this {@link BckndExtendedService} instance. + * + * @param capabilities The capabilities of this {@link BckndExtendedService} + */ public void setCapabilities( @Nonnull final BckndServiceCapabilities capabilities) { this.capabilities = capabilities; } /** - * Set the serviceCatalog of this {@link BckndExtendedService} instance and return the same instance. - * - * @param serviceCatalog The serviceCatalog of this {@link BckndExtendedService} - * @return The same instance of this {@link BckndExtendedService} class - */ + * Set the serviceCatalog of this {@link BckndExtendedService} instance and return the same instance. + * + * @param serviceCatalog The serviceCatalog of this {@link BckndExtendedService} + * @return The same instance of this {@link BckndExtendedService} class + */ @Nonnull public BckndExtendedService serviceCatalog(@Nonnull final List serviceCatalog) { this.serviceCatalog = serviceCatalog; return this; } /** - * Add one serviceCatalog instance to this {@link BckndExtendedService}. - * @param serviceCatalogItem The serviceCatalog that should be added - * @return The same instance of type {@link BckndExtendedService} - */ - @Nonnull public BckndExtendedService addserviceCatalogItem( @Nonnull final BckndServiceServiceCatalogItem serviceCatalogItem) { + * Add one serviceCatalog instance to this {@link BckndExtendedService}. + * @param serviceCatalogItem The serviceCatalog that should be added + * @return The same instance of type {@link BckndExtendedService} + */ + @Nonnull public BckndExtendedService addServiceCatalogItem( @Nonnull final BckndServiceServiceCatalogItem serviceCatalogItem) { if (this.serviceCatalog == null) { this.serviceCatalog = new ArrayList<>(); } @@ -305,74 +304,74 @@ public void setCapabilities( @Nonnull final BckndServiceCapabilities capabilitie } /** - * Get serviceCatalog - * @return serviceCatalog The serviceCatalog of this {@link BckndExtendedService} instance. - **/ + * Get serviceCatalog + * @return serviceCatalog The serviceCatalog of this {@link BckndExtendedService} instance. + */ @Nonnull public List getServiceCatalog() { return serviceCatalog; } /** - * Set the serviceCatalog of this {@link BckndExtendedService} instance. - * - * @param serviceCatalog The serviceCatalog of this {@link BckndExtendedService} - */ + * Set the serviceCatalog of this {@link BckndExtendedService} instance. + * + * @param serviceCatalog The serviceCatalog of this {@link BckndExtendedService} + */ public void setServiceCatalog( @Nonnull final List serviceCatalog) { this.serviceCatalog = serviceCatalog; } /** - * Set the status of this {@link BckndExtendedService} instance and return the same instance. - * - * @param status aggregated status of the service - * @return The same instance of this {@link BckndExtendedService} class - */ + * Set the status of this {@link BckndExtendedService} instance and return the same instance. + * + * @param status aggregated status of the service + * @return The same instance of this {@link BckndExtendedService} class + */ @Nonnull public BckndExtendedService status(@Nonnull final StatusEnum status) { this.status = status; return this; } /** - * aggregated status of the service - * @return status The status of this {@link BckndExtendedService} instance. - **/ + * aggregated status of the service + * @return status The status of this {@link BckndExtendedService} instance. + */ @Nonnull public StatusEnum getStatus() { return status; } /** - * Set the status of this {@link BckndExtendedService} instance. - * - * @param status aggregated status of the service - */ + * Set the status of this {@link BckndExtendedService} instance. + * + * @param status aggregated status of the service + */ public void setStatus( @Nonnull final StatusEnum status) { this.status = status; } /** - * Set the statusMessage of this {@link BckndExtendedService} instance and return the same instance. - * - * @param statusMessage status message - * @return The same instance of this {@link BckndExtendedService} class - */ + * Set the statusMessage of this {@link BckndExtendedService} instance and return the same instance. + * + * @param statusMessage status message + * @return The same instance of this {@link BckndExtendedService} class + */ @Nonnull public BckndExtendedService statusMessage(@Nonnull final String statusMessage) { this.statusMessage = statusMessage; return this; } /** - * status message - * @return statusMessage The statusMessage of this {@link BckndExtendedService} instance. - **/ + * status message + * @return statusMessage The statusMessage of this {@link BckndExtendedService} instance. + */ @Nonnull public String getStatusMessage() { return statusMessage; } /** - * Set the statusMessage of this {@link BckndExtendedService} instance. - * - * @param statusMessage status message - */ + * Set the statusMessage of this {@link BckndExtendedService} instance. + * + * @param statusMessage status message + */ public void setStatusMessage( @Nonnull final String statusMessage) { this.statusMessage = statusMessage; } @@ -467,5 +466,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndGenericSecretDataResponse.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndGenericSecretDataResponse.java index 89ad851a8..8f67320af 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndGenericSecretDataResponse.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndGenericSecretDataResponse.java @@ -38,7 +38,6 @@ /** * BckndGenericSecretDataResponse */ - // CHECKSTYLE:OFF public class BckndGenericSecretDataResponse // CHECKSTYLE:ON @@ -54,57 +53,57 @@ public class BckndGenericSecretDataResponse private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the message of this {@link BckndGenericSecretDataResponse} instance and return the same instance. - * - * @param message Message - * @return The same instance of this {@link BckndGenericSecretDataResponse} class - */ + * Set the message of this {@link BckndGenericSecretDataResponse} instance and return the same instance. + * + * @param message Message + * @return The same instance of this {@link BckndGenericSecretDataResponse} class + */ @Nonnull public BckndGenericSecretDataResponse message(@Nonnull final String message) { this.message = message; return this; } /** - * Message - * @return message The message of this {@link BckndGenericSecretDataResponse} instance. - **/ + * Message + * @return message The message of this {@link BckndGenericSecretDataResponse} instance. + */ @Nonnull public String getMessage() { return message; } /** - * Set the message of this {@link BckndGenericSecretDataResponse} instance. - * - * @param message Message - */ + * Set the message of this {@link BckndGenericSecretDataResponse} instance. + * + * @param message Message + */ public void setMessage( @Nonnull final String message) { this.message = message; } /** - * Set the name of this {@link BckndGenericSecretDataResponse} instance and return the same instance. - * - * @param name Name - * @return The same instance of this {@link BckndGenericSecretDataResponse} class - */ + * Set the name of this {@link BckndGenericSecretDataResponse} instance and return the same instance. + * + * @param name Name + * @return The same instance of this {@link BckndGenericSecretDataResponse} class + */ @Nonnull public BckndGenericSecretDataResponse name(@Nonnull final String name) { this.name = name; return this; } /** - * Name - * @return name The name of this {@link BckndGenericSecretDataResponse} instance. - **/ + * Name + * @return name The name of this {@link BckndGenericSecretDataResponse} instance. + */ @Nonnull public String getName() { return name; } /** - * Set the name of this {@link BckndGenericSecretDataResponse} instance. - * - * @param name Name - */ + * Set the name of this {@link BckndGenericSecretDataResponse} instance. + * + * @param name Name + */ public void setName( @Nonnull final String name) { this.name = name; } @@ -187,5 +186,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndGenericSecretDetails.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndGenericSecretDetails.java index 0ae463574..b23fbbb66 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndGenericSecretDetails.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndGenericSecretDetails.java @@ -38,7 +38,6 @@ /** * BckndGenericSecretDetails */ - // CHECKSTYLE:OFF public class BckndGenericSecretDetails // CHECKSTYLE:ON @@ -54,57 +53,57 @@ public class BckndGenericSecretDetails private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the name of this {@link BckndGenericSecretDetails} instance and return the same instance. - * - * @param name Name of the secret - * @return The same instance of this {@link BckndGenericSecretDetails} class - */ + * Set the name of this {@link BckndGenericSecretDetails} instance and return the same instance. + * + * @param name Name of the secret + * @return The same instance of this {@link BckndGenericSecretDetails} class + */ @Nonnull public BckndGenericSecretDetails name(@Nonnull final String name) { this.name = name; return this; } /** - * Name of the secret - * @return name The name of this {@link BckndGenericSecretDetails} instance. - **/ + * Name of the secret + * @return name The name of this {@link BckndGenericSecretDetails} instance. + */ @Nonnull public String getName() { return name; } /** - * Set the name of this {@link BckndGenericSecretDetails} instance. - * - * @param name Name of the secret - */ + * Set the name of this {@link BckndGenericSecretDetails} instance. + * + * @param name Name of the secret + */ public void setName( @Nonnull final String name) { this.name = name; } /** - * Set the createdAt of this {@link BckndGenericSecretDetails} instance and return the same instance. - * - * @param createdAt Timestamp at which secret was created - * @return The same instance of this {@link BckndGenericSecretDetails} class - */ + * Set the createdAt of this {@link BckndGenericSecretDetails} instance and return the same instance. + * + * @param createdAt Timestamp at which secret was created + * @return The same instance of this {@link BckndGenericSecretDetails} class + */ @Nonnull public BckndGenericSecretDetails createdAt(@Nonnull final String createdAt) { this.createdAt = createdAt; return this; } /** - * Timestamp at which secret was created - * @return createdAt The createdAt of this {@link BckndGenericSecretDetails} instance. - **/ + * Timestamp at which secret was created + * @return createdAt The createdAt of this {@link BckndGenericSecretDetails} instance. + */ @Nonnull public String getCreatedAt() { return createdAt; } /** - * Set the createdAt of this {@link BckndGenericSecretDetails} instance. - * - * @param createdAt Timestamp at which secret was created - */ + * Set the createdAt of this {@link BckndGenericSecretDetails} instance. + * + * @param createdAt Timestamp at which secret was created + */ public void setCreatedAt( @Nonnull final String createdAt) { this.createdAt = createdAt; } @@ -187,5 +186,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndGenericSecretPatchBody.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndGenericSecretPatchBody.java index ed09e0f7e..712cb9379 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndGenericSecretPatchBody.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndGenericSecretPatchBody.java @@ -40,7 +40,6 @@ /** * BckndGenericSecretPatchBody */ - // CHECKSTYLE:OFF public class BckndGenericSecretPatchBody // CHECKSTYLE:ON @@ -53,22 +52,22 @@ public class BckndGenericSecretPatchBody private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the data of this {@link BckndGenericSecretPatchBody} instance and return the same instance. - * - * @param data Base64 encoded secret data - * @return The same instance of this {@link BckndGenericSecretPatchBody} class - */ + * Set the data of this {@link BckndGenericSecretPatchBody} instance and return the same instance. + * + * @param data Base64 encoded secret data + * @return The same instance of this {@link BckndGenericSecretPatchBody} class + */ @Nonnull public BckndGenericSecretPatchBody data(@Nonnull final Map data) { this.data = data; return this; } /** - * Put one data instance to this {@link BckndGenericSecretPatchBody} instance. - * @param key The String key of this data instance - * @param dataItem The data that should be added under the given key - * @return The same instance of type {@link BckndGenericSecretPatchBody} - */ + * Put one data instance to this {@link BckndGenericSecretPatchBody} instance. + * @param key The String key of this data instance + * @param dataItem The data that should be added under the given key + * @return The same instance of type {@link BckndGenericSecretPatchBody} + */ @Nonnull public BckndGenericSecretPatchBody putdataItem(@Nonnull final String key, @Nonnull final String dataItem) { this.data = new HashMap<>(); this.data.put(key, dataItem); @@ -76,18 +75,18 @@ public class BckndGenericSecretPatchBody } /** - * Base64 encoded secret data - * @return data The data of this {@link BckndGenericSecretPatchBody} instance. - **/ + * Base64 encoded secret data + * @return data The data of this {@link BckndGenericSecretPatchBody} instance. + */ @Nonnull public Map getData() { return data; } /** - * Set the data of this {@link BckndGenericSecretPatchBody} instance. - * - * @param data Base64 encoded secret data - */ + * Set the data of this {@link BckndGenericSecretPatchBody} instance. + * + * @param data Base64 encoded secret data + */ public void setData( @Nonnull final Map data) { this.data = data; } @@ -168,5 +167,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndGenericSecretPostBody.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndGenericSecretPostBody.java index 50ed79013..5f2572fcc 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndGenericSecretPostBody.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndGenericSecretPostBody.java @@ -40,7 +40,6 @@ /** * BckndGenericSecretPostBody */ - // CHECKSTYLE:OFF public class BckndGenericSecretPostBody // CHECKSTYLE:ON @@ -56,50 +55,50 @@ public class BckndGenericSecretPostBody private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the name of this {@link BckndGenericSecretPostBody} instance and return the same instance. - * - * @param name The name of the secret - * @return The same instance of this {@link BckndGenericSecretPostBody} class - */ + * Set the name of this {@link BckndGenericSecretPostBody} instance and return the same instance. + * + * @param name The name of the secret + * @return The same instance of this {@link BckndGenericSecretPostBody} class + */ @Nonnull public BckndGenericSecretPostBody name(@Nonnull final String name) { this.name = name; return this; } /** - * The name of the secret - * @return name The name of this {@link BckndGenericSecretPostBody} instance. - **/ + * The name of the secret + * @return name The name of this {@link BckndGenericSecretPostBody} instance. + */ @Nonnull public String getName() { return name; } /** - * Set the name of this {@link BckndGenericSecretPostBody} instance. - * - * @param name The name of the secret - */ + * Set the name of this {@link BckndGenericSecretPostBody} instance. + * + * @param name The name of the secret + */ public void setName( @Nonnull final String name) { this.name = name; } /** - * Set the data of this {@link BckndGenericSecretPostBody} instance and return the same instance. - * - * @param data Base64 encoded secret data - * @return The same instance of this {@link BckndGenericSecretPostBody} class - */ + * Set the data of this {@link BckndGenericSecretPostBody} instance and return the same instance. + * + * @param data Base64 encoded secret data + * @return The same instance of this {@link BckndGenericSecretPostBody} class + */ @Nonnull public BckndGenericSecretPostBody data(@Nonnull final Map data) { this.data = data; return this; } /** - * Put one data instance to this {@link BckndGenericSecretPostBody} instance. - * @param key The String key of this data instance - * @param dataItem The data that should be added under the given key - * @return The same instance of type {@link BckndGenericSecretPostBody} - */ + * Put one data instance to this {@link BckndGenericSecretPostBody} instance. + * @param key The String key of this data instance + * @param dataItem The data that should be added under the given key + * @return The same instance of type {@link BckndGenericSecretPostBody} + */ @Nonnull public BckndGenericSecretPostBody putdataItem(@Nonnull final String key, @Nonnull final String dataItem) { this.data = new HashMap<>(); this.data.put(key, dataItem); @@ -107,18 +106,18 @@ public void setName( @Nonnull final String name) { } /** - * Base64 encoded secret data - * @return data The data of this {@link BckndGenericSecretPostBody} instance. - **/ + * Base64 encoded secret data + * @return data The data of this {@link BckndGenericSecretPostBody} instance. + */ @Nonnull public Map getData() { return data; } /** - * Set the data of this {@link BckndGenericSecretPostBody} instance. - * - * @param data Base64 encoded secret data - */ + * Set the data of this {@link BckndGenericSecretPostBody} instance. + * + * @param data Base64 encoded secret data + */ public void setData( @Nonnull final Map data) { this.data = data; } @@ -201,5 +200,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndInternalResourceGroup.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndInternalResourceGroup.java index 1db2c710b..68fbbe666 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndInternalResourceGroup.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndInternalResourceGroup.java @@ -44,7 +44,6 @@ /** * BckndInternalResourceGroup */ - // CHECKSTYLE:OFF public class BckndInternalResourceGroup // CHECKSTYLE:ON @@ -137,133 +136,133 @@ public enum StatusEnum { private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the resourceGroupId of this {@link BckndInternalResourceGroup} instance and return the same instance. - * - * @param resourceGroupId resource group id - * @return The same instance of this {@link BckndInternalResourceGroup} class - */ + * Set the resourceGroupId of this {@link BckndInternalResourceGroup} instance and return the same instance. + * + * @param resourceGroupId resource group id + * @return The same instance of this {@link BckndInternalResourceGroup} class + */ @Nonnull public BckndInternalResourceGroup resourceGroupId(@Nonnull final String resourceGroupId) { this.resourceGroupId = resourceGroupId; return this; } /** - * resource group id - * @return resourceGroupId The resourceGroupId of this {@link BckndInternalResourceGroup} instance. - **/ + * resource group id + * @return resourceGroupId The resourceGroupId of this {@link BckndInternalResourceGroup} instance. + */ @Nonnull public String getResourceGroupId() { return resourceGroupId; } /** - * Set the resourceGroupId of this {@link BckndInternalResourceGroup} instance. - * - * @param resourceGroupId resource group id - */ + * Set the resourceGroupId of this {@link BckndInternalResourceGroup} instance. + * + * @param resourceGroupId resource group id + */ public void setResourceGroupId( @Nonnull final String resourceGroupId) { this.resourceGroupId = resourceGroupId; } /** - * Set the tenantId of this {@link BckndInternalResourceGroup} instance and return the same instance. - * - * @param tenantId tenant id - * @return The same instance of this {@link BckndInternalResourceGroup} class - */ + * Set the tenantId of this {@link BckndInternalResourceGroup} instance and return the same instance. + * + * @param tenantId tenant id + * @return The same instance of this {@link BckndInternalResourceGroup} class + */ @Nonnull public BckndInternalResourceGroup tenantId(@Nonnull final String tenantId) { this.tenantId = tenantId; return this; } /** - * tenant id - * @return tenantId The tenantId of this {@link BckndInternalResourceGroup} instance. - **/ + * tenant id + * @return tenantId The tenantId of this {@link BckndInternalResourceGroup} instance. + */ @Nonnull public String getTenantId() { return tenantId; } /** - * Set the tenantId of this {@link BckndInternalResourceGroup} instance. - * - * @param tenantId tenant id - */ + * Set the tenantId of this {@link BckndInternalResourceGroup} instance. + * + * @param tenantId tenant id + */ public void setTenantId( @Nonnull final String tenantId) { this.tenantId = tenantId; } /** - * Set the zoneId of this {@link BckndInternalResourceGroup} instance and return the same instance. - * - * @param zoneId zone id - * @return The same instance of this {@link BckndInternalResourceGroup} class - */ + * Set the zoneId of this {@link BckndInternalResourceGroup} instance and return the same instance. + * + * @param zoneId zone id + * @return The same instance of this {@link BckndInternalResourceGroup} class + */ @Nonnull public BckndInternalResourceGroup zoneId(@Nonnull final String zoneId) { this.zoneId = zoneId; return this; } /** - * zone id - * @return zoneId The zoneId of this {@link BckndInternalResourceGroup} instance. - **/ + * zone id + * @return zoneId The zoneId of this {@link BckndInternalResourceGroup} instance. + */ @Nonnull public String getZoneId() { return zoneId; } /** - * Set the zoneId of this {@link BckndInternalResourceGroup} instance. - * - * @param zoneId zone id - */ + * Set the zoneId of this {@link BckndInternalResourceGroup} instance. + * + * @param zoneId zone id + */ public void setZoneId( @Nonnull final String zoneId) { this.zoneId = zoneId; } /** - * Set the createdAt of this {@link BckndInternalResourceGroup} instance and return the same instance. - * - * @param createdAt Timestamp of resource group creation - * @return The same instance of this {@link BckndInternalResourceGroup} class - */ + * Set the createdAt of this {@link BckndInternalResourceGroup} instance and return the same instance. + * + * @param createdAt Timestamp of resource group creation + * @return The same instance of this {@link BckndInternalResourceGroup} class + */ @Nonnull public BckndInternalResourceGroup createdAt(@Nonnull final OffsetDateTime createdAt) { this.createdAt = createdAt; return this; } /** - * Timestamp of resource group creation - * @return createdAt The createdAt of this {@link BckndInternalResourceGroup} instance. - **/ + * Timestamp of resource group creation + * @return createdAt The createdAt of this {@link BckndInternalResourceGroup} instance. + */ @Nonnull public OffsetDateTime getCreatedAt() { return createdAt; } /** - * Set the createdAt of this {@link BckndInternalResourceGroup} instance. - * - * @param createdAt Timestamp of resource group creation - */ + * Set the createdAt of this {@link BckndInternalResourceGroup} instance. + * + * @param createdAt Timestamp of resource group creation + */ public void setCreatedAt( @Nonnull final OffsetDateTime createdAt) { this.createdAt = createdAt; } /** - * Set the labels of this {@link BckndInternalResourceGroup} instance and return the same instance. - * - * @param labels Arbitrary labels as meta information - * @return The same instance of this {@link BckndInternalResourceGroup} class - */ + * Set the labels of this {@link BckndInternalResourceGroup} instance and return the same instance. + * + * @param labels Arbitrary labels as meta information + * @return The same instance of this {@link BckndInternalResourceGroup} class + */ @Nonnull public BckndInternalResourceGroup labels(@Nonnull final List labels) { this.labels = labels; return this; } /** - * Add one labels instance to this {@link BckndInternalResourceGroup}. - * @param labelsItem The labels that should be added - * @return The same instance of type {@link BckndInternalResourceGroup} - */ - @Nonnull public BckndInternalResourceGroup addlabelsItem( @Nonnull final BckndInternalResourceGroupLabel labelsItem) { + * Add one labels instance to this {@link BckndInternalResourceGroup}. + * @param labelsItem The labels that should be added + * @return The same instance of type {@link BckndInternalResourceGroup} + */ + @Nonnull public BckndInternalResourceGroup addLabelsItem( @Nonnull final BckndInternalResourceGroupLabel labelsItem) { if (this.labels == null) { this.labels = new ArrayList<>(); } @@ -272,94 +271,94 @@ public void setCreatedAt( @Nonnull final OffsetDateTime createdAt) { } /** - * Arbitrary labels as meta information - * @return labels The labels of this {@link BckndInternalResourceGroup} instance. - **/ + * Arbitrary labels as meta information + * @return labels The labels of this {@link BckndInternalResourceGroup} instance. + */ @Nonnull public List getLabels() { return labels; } /** - * Set the labels of this {@link BckndInternalResourceGroup} instance. - * - * @param labels Arbitrary labels as meta information - */ + * Set the labels of this {@link BckndInternalResourceGroup} instance. + * + * @param labels Arbitrary labels as meta information + */ public void setLabels( @Nonnull final List labels) { this.labels = labels; } /** - * Set the status of this {@link BckndInternalResourceGroup} instance and return the same instance. - * - * @param status aggregated status of the onboarding process - * @return The same instance of this {@link BckndInternalResourceGroup} class - */ + * Set the status of this {@link BckndInternalResourceGroup} instance and return the same instance. + * + * @param status aggregated status of the onboarding process + * @return The same instance of this {@link BckndInternalResourceGroup} class + */ @Nonnull public BckndInternalResourceGroup status(@Nonnull final StatusEnum status) { this.status = status; return this; } /** - * aggregated status of the onboarding process - * @return status The status of this {@link BckndInternalResourceGroup} instance. - **/ + * aggregated status of the onboarding process + * @return status The status of this {@link BckndInternalResourceGroup} instance. + */ @Nonnull public StatusEnum getStatus() { return status; } /** - * Set the status of this {@link BckndInternalResourceGroup} instance. - * - * @param status aggregated status of the onboarding process - */ + * Set the status of this {@link BckndInternalResourceGroup} instance. + * + * @param status aggregated status of the onboarding process + */ public void setStatus( @Nonnull final StatusEnum status) { this.status = status; } /** - * Set the statusMessage of this {@link BckndInternalResourceGroup} instance and return the same instance. - * - * @param statusMessage status message - * @return The same instance of this {@link BckndInternalResourceGroup} class - */ + * Set the statusMessage of this {@link BckndInternalResourceGroup} instance and return the same instance. + * + * @param statusMessage status message + * @return The same instance of this {@link BckndInternalResourceGroup} class + */ @Nonnull public BckndInternalResourceGroup statusMessage(@Nonnull final String statusMessage) { this.statusMessage = statusMessage; return this; } /** - * status message - * @return statusMessage The statusMessage of this {@link BckndInternalResourceGroup} instance. - **/ + * status message + * @return statusMessage The statusMessage of this {@link BckndInternalResourceGroup} instance. + */ @Nonnull public String getStatusMessage() { return statusMessage; } /** - * Set the statusMessage of this {@link BckndInternalResourceGroup} instance. - * - * @param statusMessage status message - */ + * Set the statusMessage of this {@link BckndInternalResourceGroup} instance. + * + * @param statusMessage status message + */ public void setStatusMessage( @Nonnull final String statusMessage) { this.statusMessage = statusMessage; } /** - * Set the annotations of this {@link BckndInternalResourceGroup} instance and return the same instance. - * - * @param annotations Arbitrary annotations as meta information - * @return The same instance of this {@link BckndInternalResourceGroup} class - */ + * Set the annotations of this {@link BckndInternalResourceGroup} instance and return the same instance. + * + * @param annotations Arbitrary annotations as meta information + * @return The same instance of this {@link BckndInternalResourceGroup} class + */ @Nonnull public BckndInternalResourceGroup annotations(@Nonnull final List annotations) { this.annotations = annotations; return this; } /** - * Add one annotations instance to this {@link BckndInternalResourceGroup}. - * @param annotationsItem The annotations that should be added - * @return The same instance of type {@link BckndInternalResourceGroup} - */ - @Nonnull public BckndInternalResourceGroup addannotationsItem( @Nonnull final BckndInternalResourceGroupAnnotation annotationsItem) { + * Add one annotations instance to this {@link BckndInternalResourceGroup}. + * @param annotationsItem The annotations that should be added + * @return The same instance of type {@link BckndInternalResourceGroup} + */ + @Nonnull public BckndInternalResourceGroup addAnnotationsItem( @Nonnull final BckndInternalResourceGroupAnnotation annotationsItem) { if (this.annotations == null) { this.annotations = new ArrayList<>(); } @@ -368,18 +367,18 @@ public void setStatusMessage( @Nonnull final String statusMessage) { } /** - * Arbitrary annotations as meta information - * @return annotations The annotations of this {@link BckndInternalResourceGroup} instance. - **/ + * Arbitrary annotations as meta information + * @return annotations The annotations of this {@link BckndInternalResourceGroup} instance. + */ @Nonnull public List getAnnotations() { return annotations; } /** - * Set the annotations of this {@link BckndInternalResourceGroup} instance. - * - * @param annotations Arbitrary annotations as meta information - */ + * Set the annotations of this {@link BckndInternalResourceGroup} instance. + * + * @param annotations Arbitrary annotations as meta information + */ public void setAnnotations( @Nonnull final List annotations) { this.annotations = annotations; } @@ -474,5 +473,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndInternalResourceGroupAnnotation.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndInternalResourceGroupAnnotation.java index 4387ef31b..e6ead666e 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndInternalResourceGroupAnnotation.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndInternalResourceGroupAnnotation.java @@ -38,7 +38,6 @@ /** * BckndInternalResourceGroupAnnotation */ - // CHECKSTYLE:OFF public class BckndInternalResourceGroupAnnotation // CHECKSTYLE:ON @@ -54,57 +53,57 @@ public class BckndInternalResourceGroupAnnotation private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the key of this {@link BckndInternalResourceGroupAnnotation} instance and return the same instance. - * - * @param key The key of this {@link BckndInternalResourceGroupAnnotation} - * @return The same instance of this {@link BckndInternalResourceGroupAnnotation} class - */ + * Set the key of this {@link BckndInternalResourceGroupAnnotation} instance and return the same instance. + * + * @param key The key of this {@link BckndInternalResourceGroupAnnotation} + * @return The same instance of this {@link BckndInternalResourceGroupAnnotation} class + */ @Nonnull public BckndInternalResourceGroupAnnotation key(@Nonnull final String key) { this.key = key; return this; } /** - * Get key - * @return key The key of this {@link BckndInternalResourceGroupAnnotation} instance. - **/ + * Get key + * @return key The key of this {@link BckndInternalResourceGroupAnnotation} instance. + */ @Nonnull public String getKey() { return key; } /** - * Set the key of this {@link BckndInternalResourceGroupAnnotation} instance. - * - * @param key The key of this {@link BckndInternalResourceGroupAnnotation} - */ + * Set the key of this {@link BckndInternalResourceGroupAnnotation} instance. + * + * @param key The key of this {@link BckndInternalResourceGroupAnnotation} + */ public void setKey( @Nonnull final String key) { this.key = key; } /** - * Set the value of this {@link BckndInternalResourceGroupAnnotation} instance and return the same instance. - * - * @param value The value of this {@link BckndInternalResourceGroupAnnotation} - * @return The same instance of this {@link BckndInternalResourceGroupAnnotation} class - */ + * Set the value of this {@link BckndInternalResourceGroupAnnotation} instance and return the same instance. + * + * @param value The value of this {@link BckndInternalResourceGroupAnnotation} + * @return The same instance of this {@link BckndInternalResourceGroupAnnotation} class + */ @Nonnull public BckndInternalResourceGroupAnnotation value(@Nonnull final String value) { this.value = value; return this; } /** - * Get value - * @return value The value of this {@link BckndInternalResourceGroupAnnotation} instance. - **/ + * Get value + * @return value The value of this {@link BckndInternalResourceGroupAnnotation} instance. + */ @Nonnull public String getValue() { return value; } /** - * Set the value of this {@link BckndInternalResourceGroupAnnotation} instance. - * - * @param value The value of this {@link BckndInternalResourceGroupAnnotation} - */ + * Set the value of this {@link BckndInternalResourceGroupAnnotation} instance. + * + * @param value The value of this {@link BckndInternalResourceGroupAnnotation} + */ public void setValue( @Nonnull final String value) { this.value = value; } @@ -187,5 +186,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndInternalResourceGroupLabel.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndInternalResourceGroupLabel.java index 5b305b59e..ffb6afbd4 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndInternalResourceGroupLabel.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndInternalResourceGroupLabel.java @@ -38,7 +38,6 @@ /** * BckndInternalResourceGroupLabel */ - // CHECKSTYLE:OFF public class BckndInternalResourceGroupLabel // CHECKSTYLE:ON @@ -54,57 +53,57 @@ public class BckndInternalResourceGroupLabel private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the key of this {@link BckndInternalResourceGroupLabel} instance and return the same instance. - * - * @param key The key of this {@link BckndInternalResourceGroupLabel} - * @return The same instance of this {@link BckndInternalResourceGroupLabel} class - */ + * Set the key of this {@link BckndInternalResourceGroupLabel} instance and return the same instance. + * + * @param key The key of this {@link BckndInternalResourceGroupLabel} + * @return The same instance of this {@link BckndInternalResourceGroupLabel} class + */ @Nonnull public BckndInternalResourceGroupLabel key(@Nonnull final String key) { this.key = key; return this; } /** - * Get key - * @return key The key of this {@link BckndInternalResourceGroupLabel} instance. - **/ + * Get key + * @return key The key of this {@link BckndInternalResourceGroupLabel} instance. + */ @Nonnull public String getKey() { return key; } /** - * Set the key of this {@link BckndInternalResourceGroupLabel} instance. - * - * @param key The key of this {@link BckndInternalResourceGroupLabel} - */ + * Set the key of this {@link BckndInternalResourceGroupLabel} instance. + * + * @param key The key of this {@link BckndInternalResourceGroupLabel} + */ public void setKey( @Nonnull final String key) { this.key = key; } /** - * Set the value of this {@link BckndInternalResourceGroupLabel} instance and return the same instance. - * - * @param value The value of this {@link BckndInternalResourceGroupLabel} - * @return The same instance of this {@link BckndInternalResourceGroupLabel} class - */ + * Set the value of this {@link BckndInternalResourceGroupLabel} instance and return the same instance. + * + * @param value The value of this {@link BckndInternalResourceGroupLabel} + * @return The same instance of this {@link BckndInternalResourceGroupLabel} class + */ @Nonnull public BckndInternalResourceGroupLabel value(@Nonnull final String value) { this.value = value; return this; } /** - * Get value - * @return value The value of this {@link BckndInternalResourceGroupLabel} instance. - **/ + * Get value + * @return value The value of this {@link BckndInternalResourceGroupLabel} instance. + */ @Nonnull public String getValue() { return value; } /** - * Set the value of this {@link BckndInternalResourceGroupLabel} instance. - * - * @param value The value of this {@link BckndInternalResourceGroupLabel} - */ + * Set the value of this {@link BckndInternalResourceGroupLabel} instance. + * + * @param value The value of this {@link BckndInternalResourceGroupLabel} + */ public void setValue( @Nonnull final String value) { this.value = value; } @@ -187,5 +186,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndListGenericSecretsResponse.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndListGenericSecretsResponse.java index b68bab2a6..c04778d6b 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndListGenericSecretsResponse.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndListGenericSecretsResponse.java @@ -42,7 +42,6 @@ /** * This represents a list of meta-data of the secret. The 'data' field of the secret is never retrieved. */ - // CHECKSTYLE:OFF public class BckndListGenericSecretsResponse // CHECKSTYLE:ON @@ -58,49 +57,49 @@ public class BckndListGenericSecretsResponse private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the count of this {@link BckndListGenericSecretsResponse} instance and return the same instance. - * - * @param count Number of the resource instances in the list - * @return The same instance of this {@link BckndListGenericSecretsResponse} class - */ + * Set the count of this {@link BckndListGenericSecretsResponse} instance and return the same instance. + * + * @param count Number of the resource instances in the list + * @return The same instance of this {@link BckndListGenericSecretsResponse} class + */ @Nonnull public BckndListGenericSecretsResponse count(@Nonnull final Integer count) { this.count = count; return this; } /** - * Number of the resource instances in the list - * @return count The count of this {@link BckndListGenericSecretsResponse} instance. - **/ + * Number of the resource instances in the list + * @return count The count of this {@link BckndListGenericSecretsResponse} instance. + */ @Nonnull public Integer getCount() { return count; } /** - * Set the count of this {@link BckndListGenericSecretsResponse} instance. - * - * @param count Number of the resource instances in the list - */ + * Set the count of this {@link BckndListGenericSecretsResponse} instance. + * + * @param count Number of the resource instances in the list + */ public void setCount( @Nonnull final Integer count) { this.count = count; } /** - * Set the resources of this {@link BckndListGenericSecretsResponse} instance and return the same instance. - * - * @param resources The resources of this {@link BckndListGenericSecretsResponse} - * @return The same instance of this {@link BckndListGenericSecretsResponse} class - */ + * Set the resources of this {@link BckndListGenericSecretsResponse} instance and return the same instance. + * + * @param resources The resources of this {@link BckndListGenericSecretsResponse} + * @return The same instance of this {@link BckndListGenericSecretsResponse} class + */ @Nonnull public BckndListGenericSecretsResponse resources(@Nonnull final List resources) { this.resources = resources; return this; } /** - * Add one resources instance to this {@link BckndListGenericSecretsResponse}. - * @param resourcesItem The resources that should be added - * @return The same instance of type {@link BckndListGenericSecretsResponse} - */ - @Nonnull public BckndListGenericSecretsResponse addresourcesItem( @Nonnull final BckndGenericSecretDetails resourcesItem) { + * Add one resources instance to this {@link BckndListGenericSecretsResponse}. + * @param resourcesItem The resources that should be added + * @return The same instance of type {@link BckndListGenericSecretsResponse} + */ + @Nonnull public BckndListGenericSecretsResponse addResourcesItem( @Nonnull final BckndGenericSecretDetails resourcesItem) { if (this.resources == null) { this.resources = new ArrayList<>(); } @@ -109,18 +108,18 @@ public void setCount( @Nonnull final Integer count) { } /** - * Get resources - * @return resources The resources of this {@link BckndListGenericSecretsResponse} instance. - **/ + * Get resources + * @return resources The resources of this {@link BckndListGenericSecretsResponse} instance. + */ @Nonnull public List getResources() { return resources; } /** - * Set the resources of this {@link BckndListGenericSecretsResponse} instance. - * - * @param resources The resources of this {@link BckndListGenericSecretsResponse} - */ + * Set the resources of this {@link BckndListGenericSecretsResponse} instance. + * + * @param resources The resources of this {@link BckndListGenericSecretsResponse} + */ public void setResources( @Nonnull final List resources) { this.resources = resources; } @@ -203,5 +202,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndResourceGetResourcePlansValue.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndResourceGetResourcePlansValue.java index ca346df77..e54931b92 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndResourceGetResourcePlansValue.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndResourceGetResourcePlansValue.java @@ -38,7 +38,6 @@ /** * BckndResourceGetResourcePlansValue */ - // CHECKSTYLE:OFF public class BckndResourceGetResourcePlansValue // CHECKSTYLE:ON @@ -54,57 +53,57 @@ public class BckndResourceGetResourcePlansValue private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the provisioned of this {@link BckndResourceGetResourcePlansValue} instance and return the same instance. - * - * @param provisioned The provisioned of this {@link BckndResourceGetResourcePlansValue} - * @return The same instance of this {@link BckndResourceGetResourcePlansValue} class - */ + * Set the provisioned of this {@link BckndResourceGetResourcePlansValue} instance and return the same instance. + * + * @param provisioned The provisioned of this {@link BckndResourceGetResourcePlansValue} + * @return The same instance of this {@link BckndResourceGetResourcePlansValue} class + */ @Nonnull public BckndResourceGetResourcePlansValue provisioned(@Nonnull final Integer provisioned) { this.provisioned = provisioned; return this; } /** - * Get provisioned - * @return provisioned The provisioned of this {@link BckndResourceGetResourcePlansValue} instance. - **/ + * Get provisioned + * @return provisioned The provisioned of this {@link BckndResourceGetResourcePlansValue} instance. + */ @Nonnull public Integer getProvisioned() { return provisioned; } /** - * Set the provisioned of this {@link BckndResourceGetResourcePlansValue} instance. - * - * @param provisioned The provisioned of this {@link BckndResourceGetResourcePlansValue} - */ + * Set the provisioned of this {@link BckndResourceGetResourcePlansValue} instance. + * + * @param provisioned The provisioned of this {@link BckndResourceGetResourcePlansValue} + */ public void setProvisioned( @Nonnull final Integer provisioned) { this.provisioned = provisioned; } /** - * Set the requested of this {@link BckndResourceGetResourcePlansValue} instance and return the same instance. - * - * @param requested The requested of this {@link BckndResourceGetResourcePlansValue} - * @return The same instance of this {@link BckndResourceGetResourcePlansValue} class - */ + * Set the requested of this {@link BckndResourceGetResourcePlansValue} instance and return the same instance. + * + * @param requested The requested of this {@link BckndResourceGetResourcePlansValue} + * @return The same instance of this {@link BckndResourceGetResourcePlansValue} class + */ @Nonnull public BckndResourceGetResourcePlansValue requested(@Nonnull final Integer requested) { this.requested = requested; return this; } /** - * Get requested - * @return requested The requested of this {@link BckndResourceGetResourcePlansValue} instance. - **/ + * Get requested + * @return requested The requested of this {@link BckndResourceGetResourcePlansValue} instance. + */ @Nonnull public Integer getRequested() { return requested; } /** - * Set the requested of this {@link BckndResourceGetResourcePlansValue} instance. - * - * @param requested The requested of this {@link BckndResourceGetResourcePlansValue} - */ + * Set the requested of this {@link BckndResourceGetResourcePlansValue} instance. + * + * @param requested The requested of this {@link BckndResourceGetResourcePlansValue} + */ public void setRequested( @Nonnull final Integer requested) { this.requested = requested; } @@ -187,5 +186,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndResourceGetResponse.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndResourceGetResponse.java index 17048c0a7..f8faac2d8 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndResourceGetResponse.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndResourceGetResponse.java @@ -41,7 +41,6 @@ /** * BckndResourceGetResponse */ - // CHECKSTYLE:OFF public class BckndResourceGetResponse // CHECKSTYLE:ON @@ -54,22 +53,22 @@ public class BckndResourceGetResponse private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the resourcePlans of this {@link BckndResourceGetResponse} instance and return the same instance. - * - * @param resourcePlans The resourcePlans of this {@link BckndResourceGetResponse} - * @return The same instance of this {@link BckndResourceGetResponse} class - */ + * Set the resourcePlans of this {@link BckndResourceGetResponse} instance and return the same instance. + * + * @param resourcePlans The resourcePlans of this {@link BckndResourceGetResponse} + * @return The same instance of this {@link BckndResourceGetResponse} class + */ @Nonnull public BckndResourceGetResponse resourcePlans(@Nonnull final Map resourcePlans) { this.resourcePlans = resourcePlans; return this; } /** - * Put one resourcePlans instance to this {@link BckndResourceGetResponse} instance. - * @param key The String key of this resourcePlans instance - * @param resourcePlansItem The resourcePlans that should be added under the given key - * @return The same instance of type {@link BckndResourceGetResponse} - */ + * Put one resourcePlans instance to this {@link BckndResourceGetResponse} instance. + * @param key The String key of this resourcePlans instance + * @param resourcePlansItem The resourcePlans that should be added under the given key + * @return The same instance of type {@link BckndResourceGetResponse} + */ @Nonnull public BckndResourceGetResponse putresourcePlansItem(@Nonnull final String key, @Nonnull final BckndResourceGetResourcePlansValue resourcePlansItem) { this.resourcePlans = new HashMap<>(); this.resourcePlans.put(key, resourcePlansItem); @@ -77,18 +76,18 @@ public class BckndResourceGetResponse } /** - * Get resourcePlans - * @return resourcePlans The resourcePlans of this {@link BckndResourceGetResponse} instance. - **/ + * Get resourcePlans + * @return resourcePlans The resourcePlans of this {@link BckndResourceGetResponse} instance. + */ @Nonnull public Map getResourcePlans() { return resourcePlans; } /** - * Set the resourcePlans of this {@link BckndResourceGetResponse} instance. - * - * @param resourcePlans The resourcePlans of this {@link BckndResourceGetResponse} - */ + * Set the resourcePlans of this {@link BckndResourceGetResponse} instance. + * + * @param resourcePlans The resourcePlans of this {@link BckndResourceGetResponse} + */ public void setResourcePlans( @Nonnull final Map resourcePlans) { this.resourcePlans = resourcePlans; } @@ -169,5 +168,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndResourceGroup.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndResourceGroup.java index 722cff2e9..c918795b5 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndResourceGroup.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndResourceGroup.java @@ -43,7 +43,6 @@ /** * BckndResourceGroup */ - // CHECKSTYLE:OFF public class BckndResourceGroup // CHECKSTYLE:ON @@ -133,133 +132,133 @@ public enum StatusEnum { private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the resourceGroupId of this {@link BckndResourceGroup} instance and return the same instance. - * - * @param resourceGroupId resource group id - * @return The same instance of this {@link BckndResourceGroup} class - */ + * Set the resourceGroupId of this {@link BckndResourceGroup} instance and return the same instance. + * + * @param resourceGroupId resource group id + * @return The same instance of this {@link BckndResourceGroup} class + */ @Nonnull public BckndResourceGroup resourceGroupId(@Nonnull final String resourceGroupId) { this.resourceGroupId = resourceGroupId; return this; } /** - * resource group id - * @return resourceGroupId The resourceGroupId of this {@link BckndResourceGroup} instance. - **/ + * resource group id + * @return resourceGroupId The resourceGroupId of this {@link BckndResourceGroup} instance. + */ @Nonnull public String getResourceGroupId() { return resourceGroupId; } /** - * Set the resourceGroupId of this {@link BckndResourceGroup} instance. - * - * @param resourceGroupId resource group id - */ + * Set the resourceGroupId of this {@link BckndResourceGroup} instance. + * + * @param resourceGroupId resource group id + */ public void setResourceGroupId( @Nonnull final String resourceGroupId) { this.resourceGroupId = resourceGroupId; } /** - * Set the tenantId of this {@link BckndResourceGroup} instance and return the same instance. - * - * @param tenantId tenant id - * @return The same instance of this {@link BckndResourceGroup} class - */ + * Set the tenantId of this {@link BckndResourceGroup} instance and return the same instance. + * + * @param tenantId tenant id + * @return The same instance of this {@link BckndResourceGroup} class + */ @Nonnull public BckndResourceGroup tenantId(@Nonnull final String tenantId) { this.tenantId = tenantId; return this; } /** - * tenant id - * @return tenantId The tenantId of this {@link BckndResourceGroup} instance. - **/ + * tenant id + * @return tenantId The tenantId of this {@link BckndResourceGroup} instance. + */ @Nonnull public String getTenantId() { return tenantId; } /** - * Set the tenantId of this {@link BckndResourceGroup} instance. - * - * @param tenantId tenant id - */ + * Set the tenantId of this {@link BckndResourceGroup} instance. + * + * @param tenantId tenant id + */ public void setTenantId( @Nonnull final String tenantId) { this.tenantId = tenantId; } /** - * Set the zoneId of this {@link BckndResourceGroup} instance and return the same instance. - * - * @param zoneId zone id - * @return The same instance of this {@link BckndResourceGroup} class - */ + * Set the zoneId of this {@link BckndResourceGroup} instance and return the same instance. + * + * @param zoneId zone id + * @return The same instance of this {@link BckndResourceGroup} class + */ @Nonnull public BckndResourceGroup zoneId(@Nonnull final String zoneId) { this.zoneId = zoneId; return this; } /** - * zone id - * @return zoneId The zoneId of this {@link BckndResourceGroup} instance. - **/ + * zone id + * @return zoneId The zoneId of this {@link BckndResourceGroup} instance. + */ @Nonnull public String getZoneId() { return zoneId; } /** - * Set the zoneId of this {@link BckndResourceGroup} instance. - * - * @param zoneId zone id - */ + * Set the zoneId of this {@link BckndResourceGroup} instance. + * + * @param zoneId zone id + */ public void setZoneId( @Nonnull final String zoneId) { this.zoneId = zoneId; } /** - * Set the createdAt of this {@link BckndResourceGroup} instance and return the same instance. - * - * @param createdAt Timestamp of resource group creation - * @return The same instance of this {@link BckndResourceGroup} class - */ + * Set the createdAt of this {@link BckndResourceGroup} instance and return the same instance. + * + * @param createdAt Timestamp of resource group creation + * @return The same instance of this {@link BckndResourceGroup} class + */ @Nonnull public BckndResourceGroup createdAt(@Nonnull final OffsetDateTime createdAt) { this.createdAt = createdAt; return this; } /** - * Timestamp of resource group creation - * @return createdAt The createdAt of this {@link BckndResourceGroup} instance. - **/ + * Timestamp of resource group creation + * @return createdAt The createdAt of this {@link BckndResourceGroup} instance. + */ @Nonnull public OffsetDateTime getCreatedAt() { return createdAt; } /** - * Set the createdAt of this {@link BckndResourceGroup} instance. - * - * @param createdAt Timestamp of resource group creation - */ + * Set the createdAt of this {@link BckndResourceGroup} instance. + * + * @param createdAt Timestamp of resource group creation + */ public void setCreatedAt( @Nonnull final OffsetDateTime createdAt) { this.createdAt = createdAt; } /** - * Set the labels of this {@link BckndResourceGroup} instance and return the same instance. - * - * @param labels Arbitrary labels as meta information - * @return The same instance of this {@link BckndResourceGroup} class - */ + * Set the labels of this {@link BckndResourceGroup} instance and return the same instance. + * + * @param labels Arbitrary labels as meta information + * @return The same instance of this {@link BckndResourceGroup} class + */ @Nonnull public BckndResourceGroup labels(@Nonnull final List labels) { this.labels = labels; return this; } /** - * Add one labels instance to this {@link BckndResourceGroup}. - * @param labelsItem The labels that should be added - * @return The same instance of type {@link BckndResourceGroup} - */ - @Nonnull public BckndResourceGroup addlabelsItem( @Nonnull final BckndResourceGroupLabel labelsItem) { + * Add one labels instance to this {@link BckndResourceGroup}. + * @param labelsItem The labels that should be added + * @return The same instance of type {@link BckndResourceGroup} + */ + @Nonnull public BckndResourceGroup addLabelsItem( @Nonnull final BckndResourceGroupLabel labelsItem) { if (this.labels == null) { this.labels = new ArrayList<>(); } @@ -268,74 +267,74 @@ public void setCreatedAt( @Nonnull final OffsetDateTime createdAt) { } /** - * Arbitrary labels as meta information - * @return labels The labels of this {@link BckndResourceGroup} instance. - **/ + * Arbitrary labels as meta information + * @return labels The labels of this {@link BckndResourceGroup} instance. + */ @Nonnull public List getLabels() { return labels; } /** - * Set the labels of this {@link BckndResourceGroup} instance. - * - * @param labels Arbitrary labels as meta information - */ + * Set the labels of this {@link BckndResourceGroup} instance. + * + * @param labels Arbitrary labels as meta information + */ public void setLabels( @Nonnull final List labels) { this.labels = labels; } /** - * Set the status of this {@link BckndResourceGroup} instance and return the same instance. - * - * @param status aggregated status of the onboarding process - * @return The same instance of this {@link BckndResourceGroup} class - */ + * Set the status of this {@link BckndResourceGroup} instance and return the same instance. + * + * @param status aggregated status of the onboarding process + * @return The same instance of this {@link BckndResourceGroup} class + */ @Nonnull public BckndResourceGroup status(@Nonnull final StatusEnum status) { this.status = status; return this; } /** - * aggregated status of the onboarding process - * @return status The status of this {@link BckndResourceGroup} instance. - **/ + * aggregated status of the onboarding process + * @return status The status of this {@link BckndResourceGroup} instance. + */ @Nonnull public StatusEnum getStatus() { return status; } /** - * Set the status of this {@link BckndResourceGroup} instance. - * - * @param status aggregated status of the onboarding process - */ + * Set the status of this {@link BckndResourceGroup} instance. + * + * @param status aggregated status of the onboarding process + */ public void setStatus( @Nonnull final StatusEnum status) { this.status = status; } /** - * Set the statusMessage of this {@link BckndResourceGroup} instance and return the same instance. - * - * @param statusMessage status message - * @return The same instance of this {@link BckndResourceGroup} class - */ + * Set the statusMessage of this {@link BckndResourceGroup} instance and return the same instance. + * + * @param statusMessage status message + * @return The same instance of this {@link BckndResourceGroup} class + */ @Nonnull public BckndResourceGroup statusMessage(@Nonnull final String statusMessage) { this.statusMessage = statusMessage; return this; } /** - * status message - * @return statusMessage The statusMessage of this {@link BckndResourceGroup} instance. - **/ + * status message + * @return statusMessage The statusMessage of this {@link BckndResourceGroup} instance. + */ @Nonnull public String getStatusMessage() { return statusMessage; } /** - * Set the statusMessage of this {@link BckndResourceGroup} instance. - * - * @param statusMessage status message - */ + * Set the statusMessage of this {@link BckndResourceGroup} instance. + * + * @param statusMessage status message + */ public void setStatusMessage( @Nonnull final String statusMessage) { this.statusMessage = statusMessage; } @@ -428,5 +427,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndResourceGroupBase.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndResourceGroupBase.java index 20e83810a..cda79f22b 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndResourceGroupBase.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndResourceGroupBase.java @@ -38,7 +38,6 @@ /** * BckndResourceGroupBase */ - // CHECKSTYLE:OFF public class BckndResourceGroupBase // CHECKSTYLE:ON @@ -57,85 +56,85 @@ public class BckndResourceGroupBase private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the resourceGroupId of this {@link BckndResourceGroupBase} instance and return the same instance. - * - * @param resourceGroupId resource group id - * @return The same instance of this {@link BckndResourceGroupBase} class - */ + * Set the resourceGroupId of this {@link BckndResourceGroupBase} instance and return the same instance. + * + * @param resourceGroupId resource group id + * @return The same instance of this {@link BckndResourceGroupBase} class + */ @Nonnull public BckndResourceGroupBase resourceGroupId(@Nonnull final String resourceGroupId) { this.resourceGroupId = resourceGroupId; return this; } /** - * resource group id - * @return resourceGroupId The resourceGroupId of this {@link BckndResourceGroupBase} instance. - **/ + * resource group id + * @return resourceGroupId The resourceGroupId of this {@link BckndResourceGroupBase} instance. + */ @Nonnull public String getResourceGroupId() { return resourceGroupId; } /** - * Set the resourceGroupId of this {@link BckndResourceGroupBase} instance. - * - * @param resourceGroupId resource group id - */ + * Set the resourceGroupId of this {@link BckndResourceGroupBase} instance. + * + * @param resourceGroupId resource group id + */ public void setResourceGroupId( @Nonnull final String resourceGroupId) { this.resourceGroupId = resourceGroupId; } /** - * Set the tenantId of this {@link BckndResourceGroupBase} instance and return the same instance. - * - * @param tenantId tenant id - * @return The same instance of this {@link BckndResourceGroupBase} class - */ + * Set the tenantId of this {@link BckndResourceGroupBase} instance and return the same instance. + * + * @param tenantId tenant id + * @return The same instance of this {@link BckndResourceGroupBase} class + */ @Nonnull public BckndResourceGroupBase tenantId(@Nonnull final String tenantId) { this.tenantId = tenantId; return this; } /** - * tenant id - * @return tenantId The tenantId of this {@link BckndResourceGroupBase} instance. - **/ + * tenant id + * @return tenantId The tenantId of this {@link BckndResourceGroupBase} instance. + */ @Nonnull public String getTenantId() { return tenantId; } /** - * Set the tenantId of this {@link BckndResourceGroupBase} instance. - * - * @param tenantId tenant id - */ + * Set the tenantId of this {@link BckndResourceGroupBase} instance. + * + * @param tenantId tenant id + */ public void setTenantId( @Nonnull final String tenantId) { this.tenantId = tenantId; } /** - * Set the zoneId of this {@link BckndResourceGroupBase} instance and return the same instance. - * - * @param zoneId zone id - * @return The same instance of this {@link BckndResourceGroupBase} class - */ + * Set the zoneId of this {@link BckndResourceGroupBase} instance and return the same instance. + * + * @param zoneId zone id + * @return The same instance of this {@link BckndResourceGroupBase} class + */ @Nonnull public BckndResourceGroupBase zoneId(@Nonnull final String zoneId) { this.zoneId = zoneId; return this; } /** - * zone id - * @return zoneId The zoneId of this {@link BckndResourceGroupBase} instance. - **/ + * zone id + * @return zoneId The zoneId of this {@link BckndResourceGroupBase} instance. + */ @Nonnull public String getZoneId() { return zoneId; } /** - * Set the zoneId of this {@link BckndResourceGroupBase} instance. - * - * @param zoneId zone id - */ + * Set the zoneId of this {@link BckndResourceGroupBase} instance. + * + * @param zoneId zone id + */ public void setZoneId( @Nonnull final String zoneId) { this.zoneId = zoneId; } @@ -220,5 +219,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndResourceGroupDeletionResponse.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndResourceGroupDeletionResponse.java index cceeae994..c1aad70de 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndResourceGroupDeletionResponse.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndResourceGroupDeletionResponse.java @@ -38,7 +38,6 @@ /** * BckndResourceGroupDeletionResponse */ - // CHECKSTYLE:OFF public class BckndResourceGroupDeletionResponse // CHECKSTYLE:ON @@ -54,57 +53,57 @@ public class BckndResourceGroupDeletionResponse private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the id of this {@link BckndResourceGroupDeletionResponse} instance and return the same instance. - * - * @param id Generic ID - * @return The same instance of this {@link BckndResourceGroupDeletionResponse} class - */ + * Set the id of this {@link BckndResourceGroupDeletionResponse} instance and return the same instance. + * + * @param id Generic ID + * @return The same instance of this {@link BckndResourceGroupDeletionResponse} class + */ @Nonnull public BckndResourceGroupDeletionResponse id(@Nonnull final String id) { this.id = id; return this; } /** - * Generic ID - * @return id The id of this {@link BckndResourceGroupDeletionResponse} instance. - **/ + * Generic ID + * @return id The id of this {@link BckndResourceGroupDeletionResponse} instance. + */ @Nonnull public String getId() { return id; } /** - * Set the id of this {@link BckndResourceGroupDeletionResponse} instance. - * - * @param id Generic ID - */ + * Set the id of this {@link BckndResourceGroupDeletionResponse} instance. + * + * @param id Generic ID + */ public void setId( @Nonnull final String id) { this.id = id; } /** - * Set the message of this {@link BckndResourceGroupDeletionResponse} instance and return the same instance. - * - * @param message Message - * @return The same instance of this {@link BckndResourceGroupDeletionResponse} class - */ + * Set the message of this {@link BckndResourceGroupDeletionResponse} instance and return the same instance. + * + * @param message Message + * @return The same instance of this {@link BckndResourceGroupDeletionResponse} class + */ @Nonnull public BckndResourceGroupDeletionResponse message(@Nonnull final String message) { this.message = message; return this; } /** - * Message - * @return message The message of this {@link BckndResourceGroupDeletionResponse} instance. - **/ + * Message + * @return message The message of this {@link BckndResourceGroupDeletionResponse} instance. + */ @Nonnull public String getMessage() { return message; } /** - * Set the message of this {@link BckndResourceGroupDeletionResponse} instance. - * - * @param message Message - */ + * Set the message of this {@link BckndResourceGroupDeletionResponse} instance. + * + * @param message Message + */ public void setMessage( @Nonnull final String message) { this.message = message; } @@ -187,5 +186,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndResourceGroupLabel.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndResourceGroupLabel.java index 00390e29a..dd748c4a0 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndResourceGroupLabel.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndResourceGroupLabel.java @@ -38,7 +38,6 @@ /** * BckndResourceGroupLabel */ - // CHECKSTYLE:OFF public class BckndResourceGroupLabel // CHECKSTYLE:ON @@ -54,57 +53,57 @@ public class BckndResourceGroupLabel private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the key of this {@link BckndResourceGroupLabel} instance and return the same instance. - * - * @param key The key of this {@link BckndResourceGroupLabel} - * @return The same instance of this {@link BckndResourceGroupLabel} class - */ + * Set the key of this {@link BckndResourceGroupLabel} instance and return the same instance. + * + * @param key The key of this {@link BckndResourceGroupLabel} + * @return The same instance of this {@link BckndResourceGroupLabel} class + */ @Nonnull public BckndResourceGroupLabel key(@Nonnull final String key) { this.key = key; return this; } /** - * Get key - * @return key The key of this {@link BckndResourceGroupLabel} instance. - **/ + * Get key + * @return key The key of this {@link BckndResourceGroupLabel} instance. + */ @Nonnull public String getKey() { return key; } /** - * Set the key of this {@link BckndResourceGroupLabel} instance. - * - * @param key The key of this {@link BckndResourceGroupLabel} - */ + * Set the key of this {@link BckndResourceGroupLabel} instance. + * + * @param key The key of this {@link BckndResourceGroupLabel} + */ public void setKey( @Nonnull final String key) { this.key = key; } /** - * Set the value of this {@link BckndResourceGroupLabel} instance and return the same instance. - * - * @param value The value of this {@link BckndResourceGroupLabel} - * @return The same instance of this {@link BckndResourceGroupLabel} class - */ + * Set the value of this {@link BckndResourceGroupLabel} instance and return the same instance. + * + * @param value The value of this {@link BckndResourceGroupLabel} + * @return The same instance of this {@link BckndResourceGroupLabel} class + */ @Nonnull public BckndResourceGroupLabel value(@Nonnull final String value) { this.value = value; return this; } /** - * Get value - * @return value The value of this {@link BckndResourceGroupLabel} instance. - **/ + * Get value + * @return value The value of this {@link BckndResourceGroupLabel} instance. + */ @Nonnull public String getValue() { return value; } /** - * Set the value of this {@link BckndResourceGroupLabel} instance. - * - * @param value The value of this {@link BckndResourceGroupLabel} - */ + * Set the value of this {@link BckndResourceGroupLabel} instance. + * + * @param value The value of this {@link BckndResourceGroupLabel} + */ public void setValue( @Nonnull final String value) { this.value = value; } @@ -187,5 +186,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndResourceGroupList.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndResourceGroupList.java index ce3a6c95e..41b2e4a3d 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndResourceGroupList.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndResourceGroupList.java @@ -42,7 +42,6 @@ /** * BckndResourceGroupList */ - // CHECKSTYLE:OFF public class BckndResourceGroupList // CHECKSTYLE:ON @@ -58,49 +57,49 @@ public class BckndResourceGroupList private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the count of this {@link BckndResourceGroupList} instance and return the same instance. - * - * @param count Number of the resource instances in the list - * @return The same instance of this {@link BckndResourceGroupList} class - */ + * Set the count of this {@link BckndResourceGroupList} instance and return the same instance. + * + * @param count Number of the resource instances in the list + * @return The same instance of this {@link BckndResourceGroupList} class + */ @Nonnull public BckndResourceGroupList count(@Nonnull final Integer count) { this.count = count; return this; } /** - * Number of the resource instances in the list - * @return count The count of this {@link BckndResourceGroupList} instance. - **/ + * Number of the resource instances in the list + * @return count The count of this {@link BckndResourceGroupList} instance. + */ @Nonnull public Integer getCount() { return count; } /** - * Set the count of this {@link BckndResourceGroupList} instance. - * - * @param count Number of the resource instances in the list - */ + * Set the count of this {@link BckndResourceGroupList} instance. + * + * @param count Number of the resource instances in the list + */ public void setCount( @Nonnull final Integer count) { this.count = count; } /** - * Set the resources of this {@link BckndResourceGroupList} instance and return the same instance. - * - * @param resources The resources of this {@link BckndResourceGroupList} - * @return The same instance of this {@link BckndResourceGroupList} class - */ + * Set the resources of this {@link BckndResourceGroupList} instance and return the same instance. + * + * @param resources The resources of this {@link BckndResourceGroupList} + * @return The same instance of this {@link BckndResourceGroupList} class + */ @Nonnull public BckndResourceGroupList resources(@Nonnull final List resources) { this.resources = resources; return this; } /** - * Add one resources instance to this {@link BckndResourceGroupList}. - * @param resourcesItem The resources that should be added - * @return The same instance of type {@link BckndResourceGroupList} - */ - @Nonnull public BckndResourceGroupList addresourcesItem( @Nonnull final BckndResourceGroup resourcesItem) { + * Add one resources instance to this {@link BckndResourceGroupList}. + * @param resourcesItem The resources that should be added + * @return The same instance of type {@link BckndResourceGroupList} + */ + @Nonnull public BckndResourceGroupList addResourcesItem( @Nonnull final BckndResourceGroup resourcesItem) { if (this.resources == null) { this.resources = new ArrayList<>(); } @@ -109,18 +108,18 @@ public void setCount( @Nonnull final Integer count) { } /** - * Get resources - * @return resources The resources of this {@link BckndResourceGroupList} instance. - **/ + * Get resources + * @return resources The resources of this {@link BckndResourceGroupList} instance. + */ @Nonnull public List getResources() { return resources; } /** - * Set the resources of this {@link BckndResourceGroupList} instance. - * - * @param resources The resources of this {@link BckndResourceGroupList} - */ + * Set the resources of this {@link BckndResourceGroupList} instance. + * + * @param resources The resources of this {@link BckndResourceGroupList} + */ public void setResources( @Nonnull final List resources) { this.resources = resources; } @@ -203,5 +202,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndResourceGroupPatchRequest.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndResourceGroupPatchRequest.java index cb9213663..6f76ae5ff 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndResourceGroupPatchRequest.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndResourceGroupPatchRequest.java @@ -42,7 +42,6 @@ /** * BckndResourceGroupPatchRequest */ - // CHECKSTYLE:OFF public class BckndResourceGroupPatchRequest // CHECKSTYLE:ON @@ -55,21 +54,21 @@ public class BckndResourceGroupPatchRequest private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the labels of this {@link BckndResourceGroupPatchRequest} instance and return the same instance. - * - * @param labels Arbitrary labels as meta information - * @return The same instance of this {@link BckndResourceGroupPatchRequest} class - */ + * Set the labels of this {@link BckndResourceGroupPatchRequest} instance and return the same instance. + * + * @param labels Arbitrary labels as meta information + * @return The same instance of this {@link BckndResourceGroupPatchRequest} class + */ @Nonnull public BckndResourceGroupPatchRequest labels(@Nonnull final List labels) { this.labels = labels; return this; } /** - * Add one labels instance to this {@link BckndResourceGroupPatchRequest}. - * @param labelsItem The labels that should be added - * @return The same instance of type {@link BckndResourceGroupPatchRequest} - */ - @Nonnull public BckndResourceGroupPatchRequest addlabelsItem( @Nonnull final BckndResourceGroupLabel labelsItem) { + * Add one labels instance to this {@link BckndResourceGroupPatchRequest}. + * @param labelsItem The labels that should be added + * @return The same instance of type {@link BckndResourceGroupPatchRequest} + */ + @Nonnull public BckndResourceGroupPatchRequest addLabelsItem( @Nonnull final BckndResourceGroupLabel labelsItem) { if (this.labels == null) { this.labels = new ArrayList<>(); } @@ -78,18 +77,18 @@ public class BckndResourceGroupPatchRequest } /** - * Arbitrary labels as meta information - * @return labels The labels of this {@link BckndResourceGroupPatchRequest} instance. - **/ + * Arbitrary labels as meta information + * @return labels The labels of this {@link BckndResourceGroupPatchRequest} instance. + */ @Nonnull public List getLabels() { return labels; } /** - * Set the labels of this {@link BckndResourceGroupPatchRequest} instance. - * - * @param labels Arbitrary labels as meta information - */ + * Set the labels of this {@link BckndResourceGroupPatchRequest} instance. + * + * @param labels Arbitrary labels as meta information + */ public void setLabels( @Nonnull final List labels) { this.labels = labels; } @@ -170,5 +169,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndResourceGroupsPostRequest.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndResourceGroupsPostRequest.java index 09954d722..8b180fcfd 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndResourceGroupsPostRequest.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndResourceGroupsPostRequest.java @@ -42,7 +42,6 @@ /** * BckndResourceGroupsPostRequest */ - // CHECKSTYLE:OFF public class BckndResourceGroupsPostRequest // CHECKSTYLE:ON @@ -58,49 +57,49 @@ public class BckndResourceGroupsPostRequest private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the resourceGroupId of this {@link BckndResourceGroupsPostRequest} instance and return the same instance. - * - * @param resourceGroupId resource group id - * @return The same instance of this {@link BckndResourceGroupsPostRequest} class - */ + * Set the resourceGroupId of this {@link BckndResourceGroupsPostRequest} instance and return the same instance. + * + * @param resourceGroupId resource group id + * @return The same instance of this {@link BckndResourceGroupsPostRequest} class + */ @Nonnull public BckndResourceGroupsPostRequest resourceGroupId(@Nonnull final String resourceGroupId) { this.resourceGroupId = resourceGroupId; return this; } /** - * resource group id - * @return resourceGroupId The resourceGroupId of this {@link BckndResourceGroupsPostRequest} instance. - **/ + * resource group id + * @return resourceGroupId The resourceGroupId of this {@link BckndResourceGroupsPostRequest} instance. + */ @Nonnull public String getResourceGroupId() { return resourceGroupId; } /** - * Set the resourceGroupId of this {@link BckndResourceGroupsPostRequest} instance. - * - * @param resourceGroupId resource group id - */ + * Set the resourceGroupId of this {@link BckndResourceGroupsPostRequest} instance. + * + * @param resourceGroupId resource group id + */ public void setResourceGroupId( @Nonnull final String resourceGroupId) { this.resourceGroupId = resourceGroupId; } /** - * Set the labels of this {@link BckndResourceGroupsPostRequest} instance and return the same instance. - * - * @param labels Arbitrary labels as meta information - * @return The same instance of this {@link BckndResourceGroupsPostRequest} class - */ + * Set the labels of this {@link BckndResourceGroupsPostRequest} instance and return the same instance. + * + * @param labels Arbitrary labels as meta information + * @return The same instance of this {@link BckndResourceGroupsPostRequest} class + */ @Nonnull public BckndResourceGroupsPostRequest labels(@Nonnull final List labels) { this.labels = labels; return this; } /** - * Add one labels instance to this {@link BckndResourceGroupsPostRequest}. - * @param labelsItem The labels that should be added - * @return The same instance of type {@link BckndResourceGroupsPostRequest} - */ - @Nonnull public BckndResourceGroupsPostRequest addlabelsItem( @Nonnull final BckndResourceGroupLabel labelsItem) { + * Add one labels instance to this {@link BckndResourceGroupsPostRequest}. + * @param labelsItem The labels that should be added + * @return The same instance of type {@link BckndResourceGroupsPostRequest} + */ + @Nonnull public BckndResourceGroupsPostRequest addLabelsItem( @Nonnull final BckndResourceGroupLabel labelsItem) { if (this.labels == null) { this.labels = new ArrayList<>(); } @@ -109,18 +108,18 @@ public void setResourceGroupId( @Nonnull final String resourceGroupId) { } /** - * Arbitrary labels as meta information - * @return labels The labels of this {@link BckndResourceGroupsPostRequest} instance. - **/ + * Arbitrary labels as meta information + * @return labels The labels of this {@link BckndResourceGroupsPostRequest} instance. + */ @Nonnull public List getLabels() { return labels; } /** - * Set the labels of this {@link BckndResourceGroupsPostRequest} instance. - * - * @param labels Arbitrary labels as meta information - */ + * Set the labels of this {@link BckndResourceGroupsPostRequest} instance. + * + * @param labels Arbitrary labels as meta information + */ public void setLabels( @Nonnull final List labels) { this.labels = labels; } @@ -203,5 +202,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndResourcePatchBody.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndResourcePatchBody.java index 81250daf5..7e1c5400e 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndResourcePatchBody.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndResourcePatchBody.java @@ -42,7 +42,6 @@ /** * BckndResourcePatchBody */ - // CHECKSTYLE:OFF public class BckndResourcePatchBody // CHECKSTYLE:ON @@ -55,21 +54,21 @@ public class BckndResourcePatchBody private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the resourcePlans of this {@link BckndResourcePatchBody} instance and return the same instance. - * - * @param resourcePlans The resourcePlans of this {@link BckndResourcePatchBody} - * @return The same instance of this {@link BckndResourcePatchBody} class - */ + * Set the resourcePlans of this {@link BckndResourcePatchBody} instance and return the same instance. + * + * @param resourcePlans The resourcePlans of this {@link BckndResourcePatchBody} + * @return The same instance of this {@link BckndResourcePatchBody} class + */ @Nonnull public BckndResourcePatchBody resourcePlans(@Nonnull final List resourcePlans) { this.resourcePlans = resourcePlans; return this; } /** - * Add one resourcePlans instance to this {@link BckndResourcePatchBody}. - * @param resourcePlansItem The resourcePlans that should be added - * @return The same instance of type {@link BckndResourcePatchBody} - */ - @Nonnull public BckndResourcePatchBody addresourcePlansItem( @Nonnull final BckndResourcePatchNodes resourcePlansItem) { + * Add one resourcePlans instance to this {@link BckndResourcePatchBody}. + * @param resourcePlansItem The resourcePlans that should be added + * @return The same instance of type {@link BckndResourcePatchBody} + */ + @Nonnull public BckndResourcePatchBody addResourcePlansItem( @Nonnull final BckndResourcePatchNodes resourcePlansItem) { if (this.resourcePlans == null) { this.resourcePlans = new ArrayList<>(); } @@ -78,18 +77,18 @@ public class BckndResourcePatchBody } /** - * Get resourcePlans - * @return resourcePlans The resourcePlans of this {@link BckndResourcePatchBody} instance. - **/ + * Get resourcePlans + * @return resourcePlans The resourcePlans of this {@link BckndResourcePatchBody} instance. + */ @Nonnull public List getResourcePlans() { return resourcePlans; } /** - * Set the resourcePlans of this {@link BckndResourcePatchBody} instance. - * - * @param resourcePlans The resourcePlans of this {@link BckndResourcePatchBody} - */ + * Set the resourcePlans of this {@link BckndResourcePatchBody} instance. + * + * @param resourcePlans The resourcePlans of this {@link BckndResourcePatchBody} + */ public void setResourcePlans( @Nonnull final List resourcePlans) { this.resourcePlans = resourcePlans; } @@ -170,5 +169,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndResourcePatchNodes.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndResourcePatchNodes.java index ced97b8cd..663a1e18f 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndResourcePatchNodes.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndResourcePatchNodes.java @@ -38,7 +38,6 @@ /** * BckndResourcePatchNodes */ - // CHECKSTYLE:OFF public class BckndResourcePatchNodes // CHECKSTYLE:ON @@ -54,57 +53,57 @@ public class BckndResourcePatchNodes private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the name of this {@link BckndResourcePatchNodes} instance and return the same instance. - * - * @param name The name of this {@link BckndResourcePatchNodes} - * @return The same instance of this {@link BckndResourcePatchNodes} class - */ + * Set the name of this {@link BckndResourcePatchNodes} instance and return the same instance. + * + * @param name The name of this {@link BckndResourcePatchNodes} + * @return The same instance of this {@link BckndResourcePatchNodes} class + */ @Nonnull public BckndResourcePatchNodes name(@Nonnull final String name) { this.name = name; return this; } /** - * Get name - * @return name The name of this {@link BckndResourcePatchNodes} instance. - **/ + * Get name + * @return name The name of this {@link BckndResourcePatchNodes} instance. + */ @Nonnull public String getName() { return name; } /** - * Set the name of this {@link BckndResourcePatchNodes} instance. - * - * @param name The name of this {@link BckndResourcePatchNodes} - */ + * Set the name of this {@link BckndResourcePatchNodes} instance. + * + * @param name The name of this {@link BckndResourcePatchNodes} + */ public void setName( @Nonnull final String name) { this.name = name; } /** - * Set the request of this {@link BckndResourcePatchNodes} instance and return the same instance. - * - * @param request The request of this {@link BckndResourcePatchNodes} - * @return The same instance of this {@link BckndResourcePatchNodes} class - */ + * Set the request of this {@link BckndResourcePatchNodes} instance and return the same instance. + * + * @param request The request of this {@link BckndResourcePatchNodes} + * @return The same instance of this {@link BckndResourcePatchNodes} class + */ @Nonnull public BckndResourcePatchNodes request(@Nonnull final Integer request) { this.request = request; return this; } /** - * Get request - * @return request The request of this {@link BckndResourcePatchNodes} instance. - **/ + * Get request + * @return request The request of this {@link BckndResourcePatchNodes} instance. + */ @Nonnull public Integer getRequest() { return request; } /** - * Set the request of this {@link BckndResourcePatchNodes} instance. - * - * @param request The request of this {@link BckndResourcePatchNodes} - */ + * Set the request of this {@link BckndResourcePatchNodes} instance. + * + * @param request The request of this {@link BckndResourcePatchNodes} + */ public void setRequest( @Nonnull final Integer request) { this.request = request; } @@ -187,5 +186,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndResourcePatchResponse.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndResourcePatchResponse.java index e63779002..602fa82c3 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndResourcePatchResponse.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndResourcePatchResponse.java @@ -38,7 +38,6 @@ /** * BckndResourcePatchResponse */ - // CHECKSTYLE:OFF public class BckndResourcePatchResponse // CHECKSTYLE:ON @@ -51,29 +50,29 @@ public class BckndResourcePatchResponse private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the message of this {@link BckndResourcePatchResponse} instance and return the same instance. - * - * @param message The message of this {@link BckndResourcePatchResponse} - * @return The same instance of this {@link BckndResourcePatchResponse} class - */ + * Set the message of this {@link BckndResourcePatchResponse} instance and return the same instance. + * + * @param message The message of this {@link BckndResourcePatchResponse} + * @return The same instance of this {@link BckndResourcePatchResponse} class + */ @Nonnull public BckndResourcePatchResponse message(@Nonnull final String message) { this.message = message; return this; } /** - * Get message - * @return message The message of this {@link BckndResourcePatchResponse} instance. - **/ + * Get message + * @return message The message of this {@link BckndResourcePatchResponse} instance. + */ @Nonnull public String getMessage() { return message; } /** - * Set the message of this {@link BckndResourcePatchResponse} instance. - * - * @param message The message of this {@link BckndResourcePatchResponse} - */ + * Set the message of this {@link BckndResourcePatchResponse} instance. + * + * @param message The message of this {@link BckndResourcePatchResponse} + */ public void setMessage( @Nonnull final String message) { this.message = message; } @@ -154,5 +153,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndService.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndService.java index 7a2dd7589..573ee9e14 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndService.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndService.java @@ -38,7 +38,6 @@ /** * BckndService */ - // CHECKSTYLE:OFF public class BckndService // CHECKSTYLE:ON @@ -127,141 +126,141 @@ public enum StatusEnum { private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the name of this {@link BckndService} instance and return the same instance. - * - * @param name service name - * @return The same instance of this {@link BckndService} class - */ + * Set the name of this {@link BckndService} instance and return the same instance. + * + * @param name service name + * @return The same instance of this {@link BckndService} class + */ @Nonnull public BckndService name(@Nonnull final String name) { this.name = name; return this; } /** - * service name - * @return name The name of this {@link BckndService} instance. - **/ + * service name + * @return name The name of this {@link BckndService} instance. + */ @Nonnull public String getName() { return name; } /** - * Set the name of this {@link BckndService} instance. - * - * @param name service name - */ + * Set the name of this {@link BckndService} instance. + * + * @param name service name + */ public void setName( @Nonnull final String name) { this.name = name; } /** - * Set the description of this {@link BckndService} instance and return the same instance. - * - * @param description service description - * @return The same instance of this {@link BckndService} class - */ + * Set the description of this {@link BckndService} instance and return the same instance. + * + * @param description service description + * @return The same instance of this {@link BckndService} class + */ @Nonnull public BckndService description(@Nonnull final String description) { this.description = description; return this; } /** - * service description - * @return description The description of this {@link BckndService} instance. - **/ + * service description + * @return description The description of this {@link BckndService} instance. + */ @Nonnull public String getDescription() { return description; } /** - * Set the description of this {@link BckndService} instance. - * - * @param description service description - */ + * Set the description of this {@link BckndService} instance. + * + * @param description service description + */ public void setDescription( @Nonnull final String description) { this.description = description; } /** - * Set the url of this {@link BckndService} instance and return the same instance. - * - * @param url service broker url - * @return The same instance of this {@link BckndService} class - */ + * Set the url of this {@link BckndService} instance and return the same instance. + * + * @param url service broker url + * @return The same instance of this {@link BckndService} class + */ @Nonnull public BckndService url(@Nonnull final String url) { this.url = url; return this; } /** - * service broker url - * @return url The url of this {@link BckndService} instance. - **/ + * service broker url + * @return url The url of this {@link BckndService} instance. + */ @Nonnull public String getUrl() { return url; } /** - * Set the url of this {@link BckndService} instance. - * - * @param url service broker url - */ + * Set the url of this {@link BckndService} instance. + * + * @param url service broker url + */ public void setUrl( @Nonnull final String url) { this.url = url; } /** - * Set the status of this {@link BckndService} instance and return the same instance. - * - * @param status aggregated status of the service - * @return The same instance of this {@link BckndService} class - */ + * Set the status of this {@link BckndService} instance and return the same instance. + * + * @param status aggregated status of the service + * @return The same instance of this {@link BckndService} class + */ @Nonnull public BckndService status(@Nonnull final StatusEnum status) { this.status = status; return this; } /** - * aggregated status of the service - * @return status The status of this {@link BckndService} instance. - **/ + * aggregated status of the service + * @return status The status of this {@link BckndService} instance. + */ @Nonnull public StatusEnum getStatus() { return status; } /** - * Set the status of this {@link BckndService} instance. - * - * @param status aggregated status of the service - */ + * Set the status of this {@link BckndService} instance. + * + * @param status aggregated status of the service + */ public void setStatus( @Nonnull final StatusEnum status) { this.status = status; } /** - * Set the statusMessage of this {@link BckndService} instance and return the same instance. - * - * @param statusMessage status message - * @return The same instance of this {@link BckndService} class - */ + * Set the statusMessage of this {@link BckndService} instance and return the same instance. + * + * @param statusMessage status message + * @return The same instance of this {@link BckndService} class + */ @Nonnull public BckndService statusMessage(@Nonnull final String statusMessage) { this.statusMessage = statusMessage; return this; } /** - * status message - * @return statusMessage The statusMessage of this {@link BckndService} instance. - **/ + * status message + * @return statusMessage The statusMessage of this {@link BckndService} instance. + */ @Nonnull public String getStatusMessage() { return statusMessage; } /** - * Set the statusMessage of this {@link BckndService} instance. - * - * @param statusMessage status message - */ + * Set the statusMessage of this {@link BckndService} instance. + * + * @param statusMessage status message + */ public void setStatusMessage( @Nonnull final String statusMessage) { this.statusMessage = statusMessage; } @@ -350,5 +349,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndServiceBrokerSecret.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndServiceBrokerSecret.java index 6213b2d94..485801ea1 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndServiceBrokerSecret.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndServiceBrokerSecret.java @@ -38,7 +38,6 @@ /** * BckndServiceBrokerSecret */ - // CHECKSTYLE:OFF public class BckndServiceBrokerSecret // CHECKSTYLE:ON @@ -57,85 +56,85 @@ public class BckndServiceBrokerSecret private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the name of this {@link BckndServiceBrokerSecret} instance and return the same instance. - * - * @param name broker secret name - * @return The same instance of this {@link BckndServiceBrokerSecret} class - */ + * Set the name of this {@link BckndServiceBrokerSecret} instance and return the same instance. + * + * @param name broker secret name + * @return The same instance of this {@link BckndServiceBrokerSecret} class + */ @Nonnull public BckndServiceBrokerSecret name(@Nonnull final String name) { this.name = name; return this; } /** - * broker secret name - * @return name The name of this {@link BckndServiceBrokerSecret} instance. - **/ + * broker secret name + * @return name The name of this {@link BckndServiceBrokerSecret} instance. + */ @Nonnull public String getName() { return name; } /** - * Set the name of this {@link BckndServiceBrokerSecret} instance. - * - * @param name broker secret name - */ + * Set the name of this {@link BckndServiceBrokerSecret} instance. + * + * @param name broker secret name + */ public void setName( @Nonnull final String name) { this.name = name; } /** - * Set the passwordKeyRef of this {@link BckndServiceBrokerSecret} instance and return the same instance. - * - * @param passwordKeyRef username key reference in broker secret - * @return The same instance of this {@link BckndServiceBrokerSecret} class - */ + * Set the passwordKeyRef of this {@link BckndServiceBrokerSecret} instance and return the same instance. + * + * @param passwordKeyRef username key reference in broker secret + * @return The same instance of this {@link BckndServiceBrokerSecret} class + */ @Nonnull public BckndServiceBrokerSecret passwordKeyRef(@Nonnull final String passwordKeyRef) { this.passwordKeyRef = passwordKeyRef; return this; } /** - * username key reference in broker secret - * @return passwordKeyRef The passwordKeyRef of this {@link BckndServiceBrokerSecret} instance. - **/ + * username key reference in broker secret + * @return passwordKeyRef The passwordKeyRef of this {@link BckndServiceBrokerSecret} instance. + */ @Nonnull public String getPasswordKeyRef() { return passwordKeyRef; } /** - * Set the passwordKeyRef of this {@link BckndServiceBrokerSecret} instance. - * - * @param passwordKeyRef username key reference in broker secret - */ + * Set the passwordKeyRef of this {@link BckndServiceBrokerSecret} instance. + * + * @param passwordKeyRef username key reference in broker secret + */ public void setPasswordKeyRef( @Nonnull final String passwordKeyRef) { this.passwordKeyRef = passwordKeyRef; } /** - * Set the usernameKeyRef of this {@link BckndServiceBrokerSecret} instance and return the same instance. - * - * @param usernameKeyRef password key reference in broker secret - * @return The same instance of this {@link BckndServiceBrokerSecret} class - */ + * Set the usernameKeyRef of this {@link BckndServiceBrokerSecret} instance and return the same instance. + * + * @param usernameKeyRef password key reference in broker secret + * @return The same instance of this {@link BckndServiceBrokerSecret} class + */ @Nonnull public BckndServiceBrokerSecret usernameKeyRef(@Nonnull final String usernameKeyRef) { this.usernameKeyRef = usernameKeyRef; return this; } /** - * password key reference in broker secret - * @return usernameKeyRef The usernameKeyRef of this {@link BckndServiceBrokerSecret} instance. - **/ + * password key reference in broker secret + * @return usernameKeyRef The usernameKeyRef of this {@link BckndServiceBrokerSecret} instance. + */ @Nonnull public String getUsernameKeyRef() { return usernameKeyRef; } /** - * Set the usernameKeyRef of this {@link BckndServiceBrokerSecret} instance. - * - * @param usernameKeyRef password key reference in broker secret - */ + * Set the usernameKeyRef of this {@link BckndServiceBrokerSecret} instance. + * + * @param usernameKeyRef password key reference in broker secret + */ public void setUsernameKeyRef( @Nonnull final String usernameKeyRef) { this.usernameKeyRef = usernameKeyRef; } @@ -220,5 +219,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndServiceCapabilities.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndServiceCapabilities.java index eb61bf728..b1ab4dcd3 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndServiceCapabilities.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndServiceCapabilities.java @@ -40,7 +40,6 @@ /** * BckndServiceCapabilities */ - // CHECKSTYLE:OFF public class BckndServiceCapabilities // CHECKSTYLE:ON @@ -56,57 +55,57 @@ public class BckndServiceCapabilities private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the logs of this {@link BckndServiceCapabilities} instance and return the same instance. - * - * @param logs The logs of this {@link BckndServiceCapabilities} - * @return The same instance of this {@link BckndServiceCapabilities} class - */ + * Set the logs of this {@link BckndServiceCapabilities} instance and return the same instance. + * + * @param logs The logs of this {@link BckndServiceCapabilities} + * @return The same instance of this {@link BckndServiceCapabilities} class + */ @Nonnull public BckndServiceCapabilities logs(@Nonnull final BckndServiceCapabilitiesLogs logs) { this.logs = logs; return this; } /** - * Get logs - * @return logs The logs of this {@link BckndServiceCapabilities} instance. - **/ + * Get logs + * @return logs The logs of this {@link BckndServiceCapabilities} instance. + */ @Nonnull public BckndServiceCapabilitiesLogs getLogs() { return logs; } /** - * Set the logs of this {@link BckndServiceCapabilities} instance. - * - * @param logs The logs of this {@link BckndServiceCapabilities} - */ + * Set the logs of this {@link BckndServiceCapabilities} instance. + * + * @param logs The logs of this {@link BckndServiceCapabilities} + */ public void setLogs( @Nonnull final BckndServiceCapabilitiesLogs logs) { this.logs = logs; } /** - * Set the basic of this {@link BckndServiceCapabilities} instance and return the same instance. - * - * @param basic The basic of this {@link BckndServiceCapabilities} - * @return The same instance of this {@link BckndServiceCapabilities} class - */ + * Set the basic of this {@link BckndServiceCapabilities} instance and return the same instance. + * + * @param basic The basic of this {@link BckndServiceCapabilities} + * @return The same instance of this {@link BckndServiceCapabilities} class + */ @Nonnull public BckndServiceCapabilities basic(@Nonnull final BckndServiceCapabilitiesBasic basic) { this.basic = basic; return this; } /** - * Get basic - * @return basic The basic of this {@link BckndServiceCapabilities} instance. - **/ + * Get basic + * @return basic The basic of this {@link BckndServiceCapabilities} instance. + */ @Nonnull public BckndServiceCapabilitiesBasic getBasic() { return basic; } /** - * Set the basic of this {@link BckndServiceCapabilities} instance. - * - * @param basic The basic of this {@link BckndServiceCapabilities} - */ + * Set the basic of this {@link BckndServiceCapabilities} instance. + * + * @param basic The basic of this {@link BckndServiceCapabilities} + */ public void setBasic( @Nonnull final BckndServiceCapabilitiesBasic basic) { this.basic = basic; } @@ -189,5 +188,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndServiceCapabilitiesBasic.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndServiceCapabilitiesBasic.java index e378ab1aa..a456d49fc 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndServiceCapabilitiesBasic.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndServiceCapabilitiesBasic.java @@ -38,7 +38,6 @@ /** * Basic capabilities like creating deployments and executions. */ - // CHECKSTYLE:OFF public class BckndServiceCapabilitiesBasic // CHECKSTYLE:ON @@ -60,113 +59,113 @@ public class BckndServiceCapabilitiesBasic private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the staticDeployments of this {@link BckndServiceCapabilitiesBasic} instance and return the same instance. - * - * @param staticDeployments There are static always running endpoints that can be used for inference without the need to do user deployments. - * @return The same instance of this {@link BckndServiceCapabilitiesBasic} class - */ + * Set the staticDeployments of this {@link BckndServiceCapabilitiesBasic} instance and return the same instance. + * + * @param staticDeployments There are static always running endpoints that can be used for inference without the need to do user deployments. + * @return The same instance of this {@link BckndServiceCapabilitiesBasic} class + */ @Nonnull public BckndServiceCapabilitiesBasic staticDeployments(@Nonnull final Boolean staticDeployments) { this.staticDeployments = staticDeployments; return this; } /** - * There are static always running endpoints that can be used for inference without the need to do user deployments. - * @return staticDeployments The staticDeployments of this {@link BckndServiceCapabilitiesBasic} instance. - **/ + * There are static always running endpoints that can be used for inference without the need to do user deployments. + * @return staticDeployments The staticDeployments of this {@link BckndServiceCapabilitiesBasic} instance. + */ @Nonnull public Boolean isStaticDeployments() { return staticDeployments; } /** - * Set the staticDeployments of this {@link BckndServiceCapabilitiesBasic} instance. - * - * @param staticDeployments There are static always running endpoints that can be used for inference without the need to do user deployments. - */ + * Set the staticDeployments of this {@link BckndServiceCapabilitiesBasic} instance. + * + * @param staticDeployments There are static always running endpoints that can be used for inference without the need to do user deployments. + */ public void setStaticDeployments( @Nonnull final Boolean staticDeployments) { this.staticDeployments = staticDeployments; } /** - * Set the userDeployments of this {@link BckndServiceCapabilitiesBasic} instance and return the same instance. - * - * @param userDeployments Services that only support batch inference typically neither allow listing nor creation of deployments. For these, userDeployments == false - * @return The same instance of this {@link BckndServiceCapabilitiesBasic} class - */ + * Set the userDeployments of this {@link BckndServiceCapabilitiesBasic} instance and return the same instance. + * + * @param userDeployments Services that only support batch inference typically neither allow listing nor creation of deployments. For these, userDeployments == false + * @return The same instance of this {@link BckndServiceCapabilitiesBasic} class + */ @Nonnull public BckndServiceCapabilitiesBasic userDeployments(@Nonnull final Boolean userDeployments) { this.userDeployments = userDeployments; return this; } /** - * Services that only support batch inference typically neither allow listing nor creation of deployments. For these, userDeployments == false - * @return userDeployments The userDeployments of this {@link BckndServiceCapabilitiesBasic} instance. - **/ + * Services that only support batch inference typically neither allow listing nor creation of deployments. For these, userDeployments == false + * @return userDeployments The userDeployments of this {@link BckndServiceCapabilitiesBasic} instance. + */ @Nonnull public Boolean isUserDeployments() { return userDeployments; } /** - * Set the userDeployments of this {@link BckndServiceCapabilitiesBasic} instance. - * - * @param userDeployments Services that only support batch inference typically neither allow listing nor creation of deployments. For these, userDeployments == false - */ + * Set the userDeployments of this {@link BckndServiceCapabilitiesBasic} instance. + * + * @param userDeployments Services that only support batch inference typically neither allow listing nor creation of deployments. For these, userDeployments == false + */ public void setUserDeployments( @Nonnull final Boolean userDeployments) { this.userDeployments = userDeployments; } /** - * Set the createExecutions of this {@link BckndServiceCapabilitiesBasic} instance and return the same instance. - * - * @param createExecutions Services that only support deployment typically neither allow create executions. For these, createExecutions == false - * @return The same instance of this {@link BckndServiceCapabilitiesBasic} class - */ + * Set the createExecutions of this {@link BckndServiceCapabilitiesBasic} instance and return the same instance. + * + * @param createExecutions Services that only support deployment typically neither allow create executions. For these, createExecutions == false + * @return The same instance of this {@link BckndServiceCapabilitiesBasic} class + */ @Nonnull public BckndServiceCapabilitiesBasic createExecutions(@Nonnull final Boolean createExecutions) { this.createExecutions = createExecutions; return this; } /** - * Services that only support deployment typically neither allow create executions. For these, createExecutions == false - * @return createExecutions The createExecutions of this {@link BckndServiceCapabilitiesBasic} instance. - **/ + * Services that only support deployment typically neither allow create executions. For these, createExecutions == false + * @return createExecutions The createExecutions of this {@link BckndServiceCapabilitiesBasic} instance. + */ @Nonnull public Boolean isCreateExecutions() { return createExecutions; } /** - * Set the createExecutions of this {@link BckndServiceCapabilitiesBasic} instance. - * - * @param createExecutions Services that only support deployment typically neither allow create executions. For these, createExecutions == false - */ + * Set the createExecutions of this {@link BckndServiceCapabilitiesBasic} instance. + * + * @param createExecutions Services that only support deployment typically neither allow create executions. For these, createExecutions == false + */ public void setCreateExecutions( @Nonnull final Boolean createExecutions) { this.createExecutions = createExecutions; } /** - * Set the multitenant of this {@link BckndServiceCapabilitiesBasic} instance and return the same instance. - * - * @param multitenant true-> AI API implementation supports resource groups (Main Tenant scenario), false-> implementation does not support resource groups (Service Tenant scenario) - * @return The same instance of this {@link BckndServiceCapabilitiesBasic} class - */ + * Set the multitenant of this {@link BckndServiceCapabilitiesBasic} instance and return the same instance. + * + * @param multitenant true-> AI API implementation supports resource groups (Main Tenant scenario), false-> implementation does not support resource groups (Service Tenant scenario) + * @return The same instance of this {@link BckndServiceCapabilitiesBasic} class + */ @Nonnull public BckndServiceCapabilitiesBasic multitenant(@Nonnull final Boolean multitenant) { this.multitenant = multitenant; return this; } /** - * true-> AI API implementation supports resource groups (Main Tenant scenario), false-> implementation does not support resource groups (Service Tenant scenario) - * @return multitenant The multitenant of this {@link BckndServiceCapabilitiesBasic} instance. - **/ + * true-> AI API implementation supports resource groups (Main Tenant scenario), false-> implementation does not support resource groups (Service Tenant scenario) + * @return multitenant The multitenant of this {@link BckndServiceCapabilitiesBasic} instance. + */ @Nonnull public Boolean isMultitenant() { return multitenant; } /** - * Set the multitenant of this {@link BckndServiceCapabilitiesBasic} instance. - * - * @param multitenant true-> AI API implementation supports resource groups (Main Tenant scenario), false-> implementation does not support resource groups (Service Tenant scenario) - */ + * Set the multitenant of this {@link BckndServiceCapabilitiesBasic} instance. + * + * @param multitenant true-> AI API implementation supports resource groups (Main Tenant scenario), false-> implementation does not support resource groups (Service Tenant scenario) + */ public void setMultitenant( @Nonnull final Boolean multitenant) { this.multitenant = multitenant; } @@ -253,5 +252,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndServiceCapabilitiesLogs.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndServiceCapabilitiesLogs.java index 12ce516ef..f2d653d88 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndServiceCapabilitiesLogs.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndServiceCapabilitiesLogs.java @@ -38,7 +38,6 @@ /** * Capabilities to read logs from deployments and executions. */ - // CHECKSTYLE:OFF public class BckndServiceCapabilitiesLogs // CHECKSTYLE:ON @@ -54,57 +53,57 @@ public class BckndServiceCapabilitiesLogs private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the deployments of this {@link BckndServiceCapabilitiesLogs} instance and return the same instance. - * - * @param deployments The deployments of this {@link BckndServiceCapabilitiesLogs} - * @return The same instance of this {@link BckndServiceCapabilitiesLogs} class - */ + * Set the deployments of this {@link BckndServiceCapabilitiesLogs} instance and return the same instance. + * + * @param deployments The deployments of this {@link BckndServiceCapabilitiesLogs} + * @return The same instance of this {@link BckndServiceCapabilitiesLogs} class + */ @Nonnull public BckndServiceCapabilitiesLogs deployments(@Nonnull final Boolean deployments) { this.deployments = deployments; return this; } /** - * Get deployments - * @return deployments The deployments of this {@link BckndServiceCapabilitiesLogs} instance. - **/ + * Get deployments + * @return deployments The deployments of this {@link BckndServiceCapabilitiesLogs} instance. + */ @Nonnull public Boolean isDeployments() { return deployments; } /** - * Set the deployments of this {@link BckndServiceCapabilitiesLogs} instance. - * - * @param deployments The deployments of this {@link BckndServiceCapabilitiesLogs} - */ + * Set the deployments of this {@link BckndServiceCapabilitiesLogs} instance. + * + * @param deployments The deployments of this {@link BckndServiceCapabilitiesLogs} + */ public void setDeployments( @Nonnull final Boolean deployments) { this.deployments = deployments; } /** - * Set the executions of this {@link BckndServiceCapabilitiesLogs} instance and return the same instance. - * - * @param executions The executions of this {@link BckndServiceCapabilitiesLogs} - * @return The same instance of this {@link BckndServiceCapabilitiesLogs} class - */ + * Set the executions of this {@link BckndServiceCapabilitiesLogs} instance and return the same instance. + * + * @param executions The executions of this {@link BckndServiceCapabilitiesLogs} + * @return The same instance of this {@link BckndServiceCapabilitiesLogs} class + */ @Nonnull public BckndServiceCapabilitiesLogs executions(@Nonnull final Boolean executions) { this.executions = executions; return this; } /** - * Get executions - * @return executions The executions of this {@link BckndServiceCapabilitiesLogs} instance. - **/ + * Get executions + * @return executions The executions of this {@link BckndServiceCapabilitiesLogs} instance. + */ @Nonnull public Boolean isExecutions() { return executions; } /** - * Set the executions of this {@link BckndServiceCapabilitiesLogs} instance. - * - * @param executions The executions of this {@link BckndServiceCapabilitiesLogs} - */ + * Set the executions of this {@link BckndServiceCapabilitiesLogs} instance. + * + * @param executions The executions of this {@link BckndServiceCapabilitiesLogs} + */ public void setExecutions( @Nonnull final Boolean executions) { this.executions = executions; } @@ -187,5 +186,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndServiceList.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndServiceList.java index cd9111731..f07da16df 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndServiceList.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndServiceList.java @@ -42,7 +42,6 @@ /** * BckndServiceList */ - // CHECKSTYLE:OFF public class BckndServiceList // CHECKSTYLE:ON @@ -58,49 +57,49 @@ public class BckndServiceList private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the count of this {@link BckndServiceList} instance and return the same instance. - * - * @param count Number of the resource instances in the list - * @return The same instance of this {@link BckndServiceList} class - */ + * Set the count of this {@link BckndServiceList} instance and return the same instance. + * + * @param count Number of the resource instances in the list + * @return The same instance of this {@link BckndServiceList} class + */ @Nonnull public BckndServiceList count(@Nonnull final Integer count) { this.count = count; return this; } /** - * Number of the resource instances in the list - * @return count The count of this {@link BckndServiceList} instance. - **/ + * Number of the resource instances in the list + * @return count The count of this {@link BckndServiceList} instance. + */ @Nonnull public Integer getCount() { return count; } /** - * Set the count of this {@link BckndServiceList} instance. - * - * @param count Number of the resource instances in the list - */ + * Set the count of this {@link BckndServiceList} instance. + * + * @param count Number of the resource instances in the list + */ public void setCount( @Nonnull final Integer count) { this.count = count; } /** - * Set the resources of this {@link BckndServiceList} instance and return the same instance. - * - * @param resources The resources of this {@link BckndServiceList} - * @return The same instance of this {@link BckndServiceList} class - */ + * Set the resources of this {@link BckndServiceList} instance and return the same instance. + * + * @param resources The resources of this {@link BckndServiceList} + * @return The same instance of this {@link BckndServiceList} class + */ @Nonnull public BckndServiceList resources(@Nonnull final List resources) { this.resources = resources; return this; } /** - * Add one resources instance to this {@link BckndServiceList}. - * @param resourcesItem The resources that should be added - * @return The same instance of type {@link BckndServiceList} - */ - @Nonnull public BckndServiceList addresourcesItem( @Nonnull final BckndService resourcesItem) { + * Add one resources instance to this {@link BckndServiceList}. + * @param resourcesItem The resources that should be added + * @return The same instance of type {@link BckndServiceList} + */ + @Nonnull public BckndServiceList addResourcesItem( @Nonnull final BckndService resourcesItem) { if (this.resources == null) { this.resources = new ArrayList<>(); } @@ -109,18 +108,18 @@ public void setCount( @Nonnull final Integer count) { } /** - * Get resources - * @return resources The resources of this {@link BckndServiceList} instance. - **/ + * Get resources + * @return resources The resources of this {@link BckndServiceList} instance. + */ @Nonnull public List getResources() { return resources; } /** - * Set the resources of this {@link BckndServiceList} instance. - * - * @param resources The resources of this {@link BckndServiceList} - */ + * Set the resources of this {@link BckndServiceList} instance. + * + * @param resources The resources of this {@link BckndServiceList} + */ public void setResources( @Nonnull final List resources) { this.resources = resources; } @@ -203,5 +202,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndServiceServiceCatalogItem.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndServiceServiceCatalogItem.java index 81832f4b6..ba09f3cb2 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndServiceServiceCatalogItem.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndServiceServiceCatalogItem.java @@ -40,7 +40,6 @@ /** * BckndServiceServiceCatalogItem */ - // CHECKSTYLE:OFF public class BckndServiceServiceCatalogItem // CHECKSTYLE:ON @@ -56,57 +55,57 @@ public class BckndServiceServiceCatalogItem private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the extendCatalog of this {@link BckndServiceServiceCatalogItem} instance and return the same instance. - * - * @param extendCatalog The extendCatalog of this {@link BckndServiceServiceCatalogItem} - * @return The same instance of this {@link BckndServiceServiceCatalogItem} class - */ + * Set the extendCatalog of this {@link BckndServiceServiceCatalogItem} instance and return the same instance. + * + * @param extendCatalog The extendCatalog of this {@link BckndServiceServiceCatalogItem} + * @return The same instance of this {@link BckndServiceServiceCatalogItem} class + */ @Nonnull public BckndServiceServiceCatalogItem extendCatalog(@Nonnull final BckndServiceServiceCatalogItemExtendCatalog extendCatalog) { this.extendCatalog = extendCatalog; return this; } /** - * Get extendCatalog - * @return extendCatalog The extendCatalog of this {@link BckndServiceServiceCatalogItem} instance. - **/ + * Get extendCatalog + * @return extendCatalog The extendCatalog of this {@link BckndServiceServiceCatalogItem} instance. + */ @Nonnull public BckndServiceServiceCatalogItemExtendCatalog getExtendCatalog() { return extendCatalog; } /** - * Set the extendCatalog of this {@link BckndServiceServiceCatalogItem} instance. - * - * @param extendCatalog The extendCatalog of this {@link BckndServiceServiceCatalogItem} - */ + * Set the extendCatalog of this {@link BckndServiceServiceCatalogItem} instance. + * + * @param extendCatalog The extendCatalog of this {@link BckndServiceServiceCatalogItem} + */ public void setExtendCatalog( @Nonnull final BckndServiceServiceCatalogItemExtendCatalog extendCatalog) { this.extendCatalog = extendCatalog; } /** - * Set the extendCredentials of this {@link BckndServiceServiceCatalogItem} instance and return the same instance. - * - * @param extendCredentials The extendCredentials of this {@link BckndServiceServiceCatalogItem} - * @return The same instance of this {@link BckndServiceServiceCatalogItem} class - */ + * Set the extendCredentials of this {@link BckndServiceServiceCatalogItem} instance and return the same instance. + * + * @param extendCredentials The extendCredentials of this {@link BckndServiceServiceCatalogItem} + * @return The same instance of this {@link BckndServiceServiceCatalogItem} class + */ @Nonnull public BckndServiceServiceCatalogItem extendCredentials(@Nonnull final BckndServiceServiceCatalogItemExtendCredentials extendCredentials) { this.extendCredentials = extendCredentials; return this; } /** - * Get extendCredentials - * @return extendCredentials The extendCredentials of this {@link BckndServiceServiceCatalogItem} instance. - **/ + * Get extendCredentials + * @return extendCredentials The extendCredentials of this {@link BckndServiceServiceCatalogItem} instance. + */ @Nonnull public BckndServiceServiceCatalogItemExtendCredentials getExtendCredentials() { return extendCredentials; } /** - * Set the extendCredentials of this {@link BckndServiceServiceCatalogItem} instance. - * - * @param extendCredentials The extendCredentials of this {@link BckndServiceServiceCatalogItem} - */ + * Set the extendCredentials of this {@link BckndServiceServiceCatalogItem} instance. + * + * @param extendCredentials The extendCredentials of this {@link BckndServiceServiceCatalogItem} + */ public void setExtendCredentials( @Nonnull final BckndServiceServiceCatalogItemExtendCredentials extendCredentials) { this.extendCredentials = extendCredentials; } @@ -189,5 +188,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndServiceServiceCatalogItemExtendCatalog.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndServiceServiceCatalogItemExtendCatalog.java index bee34063a..4b6e5f66c 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndServiceServiceCatalogItemExtendCatalog.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndServiceServiceCatalogItemExtendCatalog.java @@ -42,7 +42,6 @@ /** * BckndServiceServiceCatalogItemExtendCatalog */ - // CHECKSTYLE:OFF public class BckndServiceServiceCatalogItemExtendCatalog // CHECKSTYLE:ON @@ -67,133 +66,133 @@ public class BckndServiceServiceCatalogItemExtendCatalog private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the bindable of this {@link BckndServiceServiceCatalogItemExtendCatalog} instance and return the same instance. - * - * @param bindable if the service is bindable - * @return The same instance of this {@link BckndServiceServiceCatalogItemExtendCatalog} class - */ + * Set the bindable of this {@link BckndServiceServiceCatalogItemExtendCatalog} instance and return the same instance. + * + * @param bindable if the service is bindable + * @return The same instance of this {@link BckndServiceServiceCatalogItemExtendCatalog} class + */ @Nonnull public BckndServiceServiceCatalogItemExtendCatalog bindable(@Nonnull final Boolean bindable) { this.bindable = bindable; return this; } /** - * if the service is bindable - * @return bindable The bindable of this {@link BckndServiceServiceCatalogItemExtendCatalog} instance. - **/ + * if the service is bindable + * @return bindable The bindable of this {@link BckndServiceServiceCatalogItemExtendCatalog} instance. + */ @Nonnull public Boolean isBindable() { return bindable; } /** - * Set the bindable of this {@link BckndServiceServiceCatalogItemExtendCatalog} instance. - * - * @param bindable if the service is bindable - */ + * Set the bindable of this {@link BckndServiceServiceCatalogItemExtendCatalog} instance. + * + * @param bindable if the service is bindable + */ public void setBindable( @Nonnull final Boolean bindable) { this.bindable = bindable; } /** - * Set the description of this {@link BckndServiceServiceCatalogItemExtendCatalog} instance and return the same instance. - * - * @param description description of the service - * @return The same instance of this {@link BckndServiceServiceCatalogItemExtendCatalog} class - */ + * Set the description of this {@link BckndServiceServiceCatalogItemExtendCatalog} instance and return the same instance. + * + * @param description description of the service + * @return The same instance of this {@link BckndServiceServiceCatalogItemExtendCatalog} class + */ @Nonnull public BckndServiceServiceCatalogItemExtendCatalog description(@Nonnull final String description) { this.description = description; return this; } /** - * description of the service - * @return description The description of this {@link BckndServiceServiceCatalogItemExtendCatalog} instance. - **/ + * description of the service + * @return description The description of this {@link BckndServiceServiceCatalogItemExtendCatalog} instance. + */ @Nonnull public String getDescription() { return description; } /** - * Set the description of this {@link BckndServiceServiceCatalogItemExtendCatalog} instance. - * - * @param description description of the service - */ + * Set the description of this {@link BckndServiceServiceCatalogItemExtendCatalog} instance. + * + * @param description description of the service + */ public void setDescription( @Nonnull final String description) { this.description = description; } /** - * Set the id of this {@link BckndServiceServiceCatalogItemExtendCatalog} instance and return the same instance. - * - * @param id id of the service - * @return The same instance of this {@link BckndServiceServiceCatalogItemExtendCatalog} class - */ + * Set the id of this {@link BckndServiceServiceCatalogItemExtendCatalog} instance and return the same instance. + * + * @param id id of the service + * @return The same instance of this {@link BckndServiceServiceCatalogItemExtendCatalog} class + */ @Nonnull public BckndServiceServiceCatalogItemExtendCatalog id(@Nonnull final String id) { this.id = id; return this; } /** - * id of the service - * @return id The id of this {@link BckndServiceServiceCatalogItemExtendCatalog} instance. - **/ + * id of the service + * @return id The id of this {@link BckndServiceServiceCatalogItemExtendCatalog} instance. + */ @Nonnull public String getId() { return id; } /** - * Set the id of this {@link BckndServiceServiceCatalogItemExtendCatalog} instance. - * - * @param id id of the service - */ + * Set the id of this {@link BckndServiceServiceCatalogItemExtendCatalog} instance. + * + * @param id id of the service + */ public void setId( @Nonnull final String id) { this.id = id; } /** - * Set the name of this {@link BckndServiceServiceCatalogItemExtendCatalog} instance and return the same instance. - * - * @param name name of the service - * @return The same instance of this {@link BckndServiceServiceCatalogItemExtendCatalog} class - */ + * Set the name of this {@link BckndServiceServiceCatalogItemExtendCatalog} instance and return the same instance. + * + * @param name name of the service + * @return The same instance of this {@link BckndServiceServiceCatalogItemExtendCatalog} class + */ @Nonnull public BckndServiceServiceCatalogItemExtendCatalog name(@Nonnull final String name) { this.name = name; return this; } /** - * name of the service - * @return name The name of this {@link BckndServiceServiceCatalogItemExtendCatalog} instance. - **/ + * name of the service + * @return name The name of this {@link BckndServiceServiceCatalogItemExtendCatalog} instance. + */ @Nonnull public String getName() { return name; } /** - * Set the name of this {@link BckndServiceServiceCatalogItemExtendCatalog} instance. - * - * @param name name of the service - */ + * Set the name of this {@link BckndServiceServiceCatalogItemExtendCatalog} instance. + * + * @param name name of the service + */ public void setName( @Nonnull final String name) { this.name = name; } /** - * Set the plans of this {@link BckndServiceServiceCatalogItemExtendCatalog} instance and return the same instance. - * - * @param plans The plans of this {@link BckndServiceServiceCatalogItemExtendCatalog} - * @return The same instance of this {@link BckndServiceServiceCatalogItemExtendCatalog} class - */ + * Set the plans of this {@link BckndServiceServiceCatalogItemExtendCatalog} instance and return the same instance. + * + * @param plans The plans of this {@link BckndServiceServiceCatalogItemExtendCatalog} + * @return The same instance of this {@link BckndServiceServiceCatalogItemExtendCatalog} class + */ @Nonnull public BckndServiceServiceCatalogItemExtendCatalog plans(@Nonnull final List plans) { this.plans = plans; return this; } /** - * Add one plans instance to this {@link BckndServiceServiceCatalogItemExtendCatalog}. - * @param plansItem The plans that should be added - * @return The same instance of type {@link BckndServiceServiceCatalogItemExtendCatalog} - */ - @Nonnull public BckndServiceServiceCatalogItemExtendCatalog addplansItem( @Nonnull final BckndServiceServicePlanItem plansItem) { + * Add one plans instance to this {@link BckndServiceServiceCatalogItemExtendCatalog}. + * @param plansItem The plans that should be added + * @return The same instance of type {@link BckndServiceServiceCatalogItemExtendCatalog} + */ + @Nonnull public BckndServiceServiceCatalogItemExtendCatalog addPlansItem( @Nonnull final BckndServiceServicePlanItem plansItem) { if (this.plans == null) { this.plans = new ArrayList<>(); } @@ -202,18 +201,18 @@ public void setName( @Nonnull final String name) { } /** - * Get plans - * @return plans The plans of this {@link BckndServiceServiceCatalogItemExtendCatalog} instance. - **/ + * Get plans + * @return plans The plans of this {@link BckndServiceServiceCatalogItemExtendCatalog} instance. + */ @Nonnull public List getPlans() { return plans; } /** - * Set the plans of this {@link BckndServiceServiceCatalogItemExtendCatalog} instance. - * - * @param plans The plans of this {@link BckndServiceServiceCatalogItemExtendCatalog} - */ + * Set the plans of this {@link BckndServiceServiceCatalogItemExtendCatalog} instance. + * + * @param plans The plans of this {@link BckndServiceServiceCatalogItemExtendCatalog} + */ public void setPlans( @Nonnull final List plans) { this.plans = plans; } @@ -302,5 +301,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndServiceServiceCatalogItemExtendCredentials.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndServiceServiceCatalogItemExtendCredentials.java index e6d72f2a1..e9966d599 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndServiceServiceCatalogItemExtendCredentials.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndServiceServiceCatalogItemExtendCredentials.java @@ -39,7 +39,6 @@ /** * BckndServiceServiceCatalogItemExtendCredentials */ - // CHECKSTYLE:OFF public class BckndServiceServiceCatalogItemExtendCredentials // CHECKSTYLE:ON @@ -52,29 +51,29 @@ public class BckndServiceServiceCatalogItemExtendCredentials private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the shared of this {@link BckndServiceServiceCatalogItemExtendCredentials} instance and return the same instance. - * - * @param shared The shared of this {@link BckndServiceServiceCatalogItemExtendCredentials} - * @return The same instance of this {@link BckndServiceServiceCatalogItemExtendCredentials} class - */ + * Set the shared of this {@link BckndServiceServiceCatalogItemExtendCredentials} instance and return the same instance. + * + * @param shared The shared of this {@link BckndServiceServiceCatalogItemExtendCredentials} + * @return The same instance of this {@link BckndServiceServiceCatalogItemExtendCredentials} class + */ @Nonnull public BckndServiceServiceCatalogItemExtendCredentials shared(@Nonnull final BckndServiceServiceCatalogItemExtendCredentialsShared shared) { this.shared = shared; return this; } /** - * Get shared - * @return shared The shared of this {@link BckndServiceServiceCatalogItemExtendCredentials} instance. - **/ + * Get shared + * @return shared The shared of this {@link BckndServiceServiceCatalogItemExtendCredentials} instance. + */ @Nonnull public BckndServiceServiceCatalogItemExtendCredentialsShared getShared() { return shared; } /** - * Set the shared of this {@link BckndServiceServiceCatalogItemExtendCredentials} instance. - * - * @param shared The shared of this {@link BckndServiceServiceCatalogItemExtendCredentials} - */ + * Set the shared of this {@link BckndServiceServiceCatalogItemExtendCredentials} instance. + * + * @param shared The shared of this {@link BckndServiceServiceCatalogItemExtendCredentials} + */ public void setShared( @Nonnull final BckndServiceServiceCatalogItemExtendCredentialsShared shared) { this.shared = shared; } @@ -155,5 +154,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndServiceServiceCatalogItemExtendCredentialsShared.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndServiceServiceCatalogItemExtendCredentialsShared.java index e71b05bf0..75b7ff581 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndServiceServiceCatalogItemExtendCredentialsShared.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndServiceServiceCatalogItemExtendCredentialsShared.java @@ -39,7 +39,6 @@ /** * BckndServiceServiceCatalogItemExtendCredentialsShared */ - // CHECKSTYLE:OFF public class BckndServiceServiceCatalogItemExtendCredentialsShared // CHECKSTYLE:ON @@ -52,29 +51,29 @@ public class BckndServiceServiceCatalogItemExtendCredentialsShared private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the serviceUrls of this {@link BckndServiceServiceCatalogItemExtendCredentialsShared} instance and return the same instance. - * - * @param serviceUrls The serviceUrls of this {@link BckndServiceServiceCatalogItemExtendCredentialsShared} - * @return The same instance of this {@link BckndServiceServiceCatalogItemExtendCredentialsShared} class - */ + * Set the serviceUrls of this {@link BckndServiceServiceCatalogItemExtendCredentialsShared} instance and return the same instance. + * + * @param serviceUrls The serviceUrls of this {@link BckndServiceServiceCatalogItemExtendCredentialsShared} + * @return The same instance of this {@link BckndServiceServiceCatalogItemExtendCredentialsShared} class + */ @Nonnull public BckndServiceServiceCatalogItemExtendCredentialsShared serviceUrls(@Nonnull final BckndServiceServiceCatalogItemExtendCredentialsSharedServiceUrls serviceUrls) { this.serviceUrls = serviceUrls; return this; } /** - * Get serviceUrls - * @return serviceUrls The serviceUrls of this {@link BckndServiceServiceCatalogItemExtendCredentialsShared} instance. - **/ + * Get serviceUrls + * @return serviceUrls The serviceUrls of this {@link BckndServiceServiceCatalogItemExtendCredentialsShared} instance. + */ @Nonnull public BckndServiceServiceCatalogItemExtendCredentialsSharedServiceUrls getServiceUrls() { return serviceUrls; } /** - * Set the serviceUrls of this {@link BckndServiceServiceCatalogItemExtendCredentialsShared} instance. - * - * @param serviceUrls The serviceUrls of this {@link BckndServiceServiceCatalogItemExtendCredentialsShared} - */ + * Set the serviceUrls of this {@link BckndServiceServiceCatalogItemExtendCredentialsShared} instance. + * + * @param serviceUrls The serviceUrls of this {@link BckndServiceServiceCatalogItemExtendCredentialsShared} + */ public void setServiceUrls( @Nonnull final BckndServiceServiceCatalogItemExtendCredentialsSharedServiceUrls serviceUrls) { this.serviceUrls = serviceUrls; } @@ -155,5 +154,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndServiceServiceCatalogItemExtendCredentialsSharedServiceUrls.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndServiceServiceCatalogItemExtendCredentialsSharedServiceUrls.java index 5a4189bba..f028b0f94 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndServiceServiceCatalogItemExtendCredentialsSharedServiceUrls.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndServiceServiceCatalogItemExtendCredentialsSharedServiceUrls.java @@ -38,7 +38,6 @@ /** * BckndServiceServiceCatalogItemExtendCredentialsSharedServiceUrls */ - // CHECKSTYLE:OFF public class BckndServiceServiceCatalogItemExtendCredentialsSharedServiceUrls // CHECKSTYLE:ON @@ -51,29 +50,29 @@ public class BckndServiceServiceCatalogItemExtendCredentialsSharedServiceUrls private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the AI_API_URL of this {@link BckndServiceServiceCatalogItemExtendCredentialsSharedServiceUrls} instance and return the same instance. - * - * @param AI_API_URL The AI_API_URL of this {@link BckndServiceServiceCatalogItemExtendCredentialsSharedServiceUrls} - * @return The same instance of this {@link BckndServiceServiceCatalogItemExtendCredentialsSharedServiceUrls} class - */ + * Set the AI_API_URL of this {@link BckndServiceServiceCatalogItemExtendCredentialsSharedServiceUrls} instance and return the same instance. + * + * @param AI_API_URL The AI_API_URL of this {@link BckndServiceServiceCatalogItemExtendCredentialsSharedServiceUrls} + * @return The same instance of this {@link BckndServiceServiceCatalogItemExtendCredentialsSharedServiceUrls} class + */ @Nonnull public BckndServiceServiceCatalogItemExtendCredentialsSharedServiceUrls AI_API_URL(@Nonnull final String AI_API_URL) { this.AI_API_URL = AI_API_URL; return this; } /** - * Get AI_API_URL - * @return AI_API_URL The AI_API_URL of this {@link BckndServiceServiceCatalogItemExtendCredentialsSharedServiceUrls} instance. - **/ + * Get AI_API_URL + * @return AI_API_URL The AI_API_URL of this {@link BckndServiceServiceCatalogItemExtendCredentialsSharedServiceUrls} instance. + */ @Nonnull public String getAIAPIURL() { return AI_API_URL; } /** - * Set the AI_API_URL of this {@link BckndServiceServiceCatalogItemExtendCredentialsSharedServiceUrls} instance. - * - * @param AI_API_URL The AI_API_URL of this {@link BckndServiceServiceCatalogItemExtendCredentialsSharedServiceUrls} - */ + * Set the AI_API_URL of this {@link BckndServiceServiceCatalogItemExtendCredentialsSharedServiceUrls} instance. + * + * @param AI_API_URL The AI_API_URL of this {@link BckndServiceServiceCatalogItemExtendCredentialsSharedServiceUrls} + */ public void setAIAPIURL( @Nonnull final String AI_API_URL) { this.AI_API_URL = AI_API_URL; } @@ -154,5 +153,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndServiceServicePlanItem.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndServiceServicePlanItem.java index 7725ccc0a..0a2d4bed1 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndServiceServicePlanItem.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndServiceServicePlanItem.java @@ -39,7 +39,6 @@ /** * BckndServiceServicePlanItem */ - // CHECKSTYLE:OFF public class BckndServiceServicePlanItem // CHECKSTYLE:ON @@ -64,141 +63,141 @@ public class BckndServiceServicePlanItem private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the description of this {@link BckndServiceServicePlanItem} instance and return the same instance. - * - * @param description description of the service plan - * @return The same instance of this {@link BckndServiceServicePlanItem} class - */ + * Set the description of this {@link BckndServiceServicePlanItem} instance and return the same instance. + * + * @param description description of the service plan + * @return The same instance of this {@link BckndServiceServicePlanItem} class + */ @Nonnull public BckndServiceServicePlanItem description(@Nonnull final String description) { this.description = description; return this; } /** - * description of the service plan - * @return description The description of this {@link BckndServiceServicePlanItem} instance. - **/ + * description of the service plan + * @return description The description of this {@link BckndServiceServicePlanItem} instance. + */ @Nonnull public String getDescription() { return description; } /** - * Set the description of this {@link BckndServiceServicePlanItem} instance. - * - * @param description description of the service plan - */ + * Set the description of this {@link BckndServiceServicePlanItem} instance. + * + * @param description description of the service plan + */ public void setDescription( @Nonnull final String description) { this.description = description; } /** - * Set the free of this {@link BckndServiceServicePlanItem} instance and return the same instance. - * - * @param free if the service plan free - * @return The same instance of this {@link BckndServiceServicePlanItem} class - */ + * Set the free of this {@link BckndServiceServicePlanItem} instance and return the same instance. + * + * @param free if the service plan free + * @return The same instance of this {@link BckndServiceServicePlanItem} class + */ @Nonnull public BckndServiceServicePlanItem free(@Nonnull final Boolean free) { this.free = free; return this; } /** - * if the service plan free - * @return free The free of this {@link BckndServiceServicePlanItem} instance. - **/ + * if the service plan free + * @return free The free of this {@link BckndServiceServicePlanItem} instance. + */ @Nonnull public Boolean isFree() { return free; } /** - * Set the free of this {@link BckndServiceServicePlanItem} instance. - * - * @param free if the service plan free - */ + * Set the free of this {@link BckndServiceServicePlanItem} instance. + * + * @param free if the service plan free + */ public void setFree( @Nonnull final Boolean free) { this.free = free; } /** - * Set the id of this {@link BckndServiceServicePlanItem} instance and return the same instance. - * - * @param id id of the service plan - * @return The same instance of this {@link BckndServiceServicePlanItem} class - */ + * Set the id of this {@link BckndServiceServicePlanItem} instance and return the same instance. + * + * @param id id of the service plan + * @return The same instance of this {@link BckndServiceServicePlanItem} class + */ @Nonnull public BckndServiceServicePlanItem id(@Nonnull final String id) { this.id = id; return this; } /** - * id of the service plan - * @return id The id of this {@link BckndServiceServicePlanItem} instance. - **/ + * id of the service plan + * @return id The id of this {@link BckndServiceServicePlanItem} instance. + */ @Nonnull public String getId() { return id; } /** - * Set the id of this {@link BckndServiceServicePlanItem} instance. - * - * @param id id of the service plan - */ + * Set the id of this {@link BckndServiceServicePlanItem} instance. + * + * @param id id of the service plan + */ public void setId( @Nonnull final String id) { this.id = id; } /** - * Set the name of this {@link BckndServiceServicePlanItem} instance and return the same instance. - * - * @param name name of the service plan - * @return The same instance of this {@link BckndServiceServicePlanItem} class - */ + * Set the name of this {@link BckndServiceServicePlanItem} instance and return the same instance. + * + * @param name name of the service plan + * @return The same instance of this {@link BckndServiceServicePlanItem} class + */ @Nonnull public BckndServiceServicePlanItem name(@Nonnull final String name) { this.name = name; return this; } /** - * name of the service plan - * @return name The name of this {@link BckndServiceServicePlanItem} instance. - **/ + * name of the service plan + * @return name The name of this {@link BckndServiceServicePlanItem} instance. + */ @Nonnull public String getName() { return name; } /** - * Set the name of this {@link BckndServiceServicePlanItem} instance. - * - * @param name name of the service plan - */ + * Set the name of this {@link BckndServiceServicePlanItem} instance. + * + * @param name name of the service plan + */ public void setName( @Nonnull final String name) { this.name = name; } /** - * Set the metadata of this {@link BckndServiceServicePlanItem} instance and return the same instance. - * - * @param metadata The metadata of this {@link BckndServiceServicePlanItem} - * @return The same instance of this {@link BckndServiceServicePlanItem} class - */ + * Set the metadata of this {@link BckndServiceServicePlanItem} instance and return the same instance. + * + * @param metadata The metadata of this {@link BckndServiceServicePlanItem} + * @return The same instance of this {@link BckndServiceServicePlanItem} class + */ @Nonnull public BckndServiceServicePlanItem metadata(@Nonnull final BckndServiceServicePlanItemMetadata metadata) { this.metadata = metadata; return this; } /** - * Get metadata - * @return metadata The metadata of this {@link BckndServiceServicePlanItem} instance. - **/ + * Get metadata + * @return metadata The metadata of this {@link BckndServiceServicePlanItem} instance. + */ @Nonnull public BckndServiceServicePlanItemMetadata getMetadata() { return metadata; } /** - * Set the metadata of this {@link BckndServiceServicePlanItem} instance. - * - * @param metadata The metadata of this {@link BckndServiceServicePlanItem} - */ + * Set the metadata of this {@link BckndServiceServicePlanItem} instance. + * + * @param metadata The metadata of this {@link BckndServiceServicePlanItem} + */ public void setMetadata( @Nonnull final BckndServiceServicePlanItemMetadata metadata) { this.metadata = metadata; } @@ -287,5 +286,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndServiceServicePlanItemMetadata.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndServiceServicePlanItemMetadata.java index 9f84831e9..62562a88f 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndServiceServicePlanItemMetadata.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndServiceServicePlanItemMetadata.java @@ -41,7 +41,6 @@ /** * BckndServiceServicePlanItemMetadata */ - // CHECKSTYLE:OFF public class BckndServiceServicePlanItemMetadata // CHECKSTYLE:ON @@ -113,21 +112,21 @@ public enum SupportedPlatformsEnum { private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the supportedPlatforms of this {@link BckndServiceServicePlanItemMetadata} instance and return the same instance. - * - * @param supportedPlatforms supported platforms of the service plan - * @return The same instance of this {@link BckndServiceServicePlanItemMetadata} class - */ + * Set the supportedPlatforms of this {@link BckndServiceServicePlanItemMetadata} instance and return the same instance. + * + * @param supportedPlatforms supported platforms of the service plan + * @return The same instance of this {@link BckndServiceServicePlanItemMetadata} class + */ @Nonnull public BckndServiceServicePlanItemMetadata supportedPlatforms(@Nonnull final List supportedPlatforms) { this.supportedPlatforms = supportedPlatforms; return this; } /** - * Add one supportedPlatforms instance to this {@link BckndServiceServicePlanItemMetadata}. - * @param supportedPlatformsItem The supportedPlatforms that should be added - * @return The same instance of type {@link BckndServiceServicePlanItemMetadata} - */ - @Nonnull public BckndServiceServicePlanItemMetadata addsupportedPlatformsItem( @Nonnull final SupportedPlatformsEnum supportedPlatformsItem) { + * Add one supportedPlatforms instance to this {@link BckndServiceServicePlanItemMetadata}. + * @param supportedPlatformsItem The supportedPlatforms that should be added + * @return The same instance of type {@link BckndServiceServicePlanItemMetadata} + */ + @Nonnull public BckndServiceServicePlanItemMetadata addSupportedPlatformsItem( @Nonnull final SupportedPlatformsEnum supportedPlatformsItem) { if (this.supportedPlatforms == null) { this.supportedPlatforms = new ArrayList<>(); } @@ -136,18 +135,18 @@ public enum SupportedPlatformsEnum { } /** - * supported platforms of the service plan - * @return supportedPlatforms The supportedPlatforms of this {@link BckndServiceServicePlanItemMetadata} instance. - **/ + * supported platforms of the service plan + * @return supportedPlatforms The supportedPlatforms of this {@link BckndServiceServicePlanItemMetadata} instance. + */ @Nonnull public List getSupportedPlatforms() { return supportedPlatforms; } /** - * Set the supportedPlatforms of this {@link BckndServiceServicePlanItemMetadata} instance. - * - * @param supportedPlatforms supported platforms of the service plan - */ + * Set the supportedPlatforms of this {@link BckndServiceServicePlanItemMetadata} instance. + * + * @param supportedPlatforms supported platforms of the service plan + */ public void setSupportedPlatforms( @Nonnull final List supportedPlatforms) { this.supportedPlatforms = supportedPlatforms; } @@ -228,5 +227,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndTenant.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndTenant.java index 236bd125a..9cf5aa04c 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndTenant.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndTenant.java @@ -38,7 +38,6 @@ /** * BckndTenant */ - // CHECKSTYLE:OFF public class BckndTenant // CHECKSTYLE:ON @@ -60,113 +59,113 @@ public class BckndTenant private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the tenantId of this {@link BckndTenant} instance and return the same instance. - * - * @param tenantId tenant id - * @return The same instance of this {@link BckndTenant} class - */ + * Set the tenantId of this {@link BckndTenant} instance and return the same instance. + * + * @param tenantId tenant id + * @return The same instance of this {@link BckndTenant} class + */ @Nonnull public BckndTenant tenantId(@Nonnull final String tenantId) { this.tenantId = tenantId; return this; } /** - * tenant id - * @return tenantId The tenantId of this {@link BckndTenant} instance. - **/ + * tenant id + * @return tenantId The tenantId of this {@link BckndTenant} instance. + */ @Nonnull public String getTenantId() { return tenantId; } /** - * Set the tenantId of this {@link BckndTenant} instance. - * - * @param tenantId tenant id - */ + * Set the tenantId of this {@link BckndTenant} instance. + * + * @param tenantId tenant id + */ public void setTenantId( @Nonnull final String tenantId) { this.tenantId = tenantId; } /** - * Set the zoneId of this {@link BckndTenant} instance and return the same instance. - * - * @param zoneId zone id - * @return The same instance of this {@link BckndTenant} class - */ + * Set the zoneId of this {@link BckndTenant} instance and return the same instance. + * + * @param zoneId zone id + * @return The same instance of this {@link BckndTenant} class + */ @Nonnull public BckndTenant zoneId(@Nonnull final String zoneId) { this.zoneId = zoneId; return this; } /** - * zone id - * @return zoneId The zoneId of this {@link BckndTenant} instance. - **/ + * zone id + * @return zoneId The zoneId of this {@link BckndTenant} instance. + */ @Nonnull public String getZoneId() { return zoneId; } /** - * Set the zoneId of this {@link BckndTenant} instance. - * - * @param zoneId zone id - */ + * Set the zoneId of this {@link BckndTenant} instance. + * + * @param zoneId zone id + */ public void setZoneId( @Nonnull final String zoneId) { this.zoneId = zoneId; } /** - * Set the realSubaccountId of this {@link BckndTenant} instance and return the same instance. - * - * @param realSubaccountId real sub account id - * @return The same instance of this {@link BckndTenant} class - */ + * Set the realSubaccountId of this {@link BckndTenant} instance and return the same instance. + * + * @param realSubaccountId real sub account id + * @return The same instance of this {@link BckndTenant} class + */ @Nonnull public BckndTenant realSubaccountId(@Nonnull final String realSubaccountId) { this.realSubaccountId = realSubaccountId; return this; } /** - * real sub account id - * @return realSubaccountId The realSubaccountId of this {@link BckndTenant} instance. - **/ + * real sub account id + * @return realSubaccountId The realSubaccountId of this {@link BckndTenant} instance. + */ @Nonnull public String getRealSubaccountId() { return realSubaccountId; } /** - * Set the realSubaccountId of this {@link BckndTenant} instance. - * - * @param realSubaccountId real sub account id - */ + * Set the realSubaccountId of this {@link BckndTenant} instance. + * + * @param realSubaccountId real sub account id + */ public void setRealSubaccountId( @Nonnull final String realSubaccountId) { this.realSubaccountId = realSubaccountId; } /** - * Set the servicePlan of this {@link BckndTenant} instance and return the same instance. - * - * @param servicePlan service plan - * @return The same instance of this {@link BckndTenant} class - */ + * Set the servicePlan of this {@link BckndTenant} instance and return the same instance. + * + * @param servicePlan service plan + * @return The same instance of this {@link BckndTenant} class + */ @Nonnull public BckndTenant servicePlan(@Nonnull final String servicePlan) { this.servicePlan = servicePlan; return this; } /** - * service plan - * @return servicePlan The servicePlan of this {@link BckndTenant} instance. - **/ + * service plan + * @return servicePlan The servicePlan of this {@link BckndTenant} instance. + */ @Nonnull public String getServicePlan() { return servicePlan; } /** - * Set the servicePlan of this {@link BckndTenant} instance. - * - * @param servicePlan service plan - */ + * Set the servicePlan of this {@link BckndTenant} instance. + * + * @param servicePlan service plan + */ public void setServicePlan( @Nonnull final String servicePlan) { this.servicePlan = servicePlan; } @@ -253,5 +252,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndUsageResourcePlanItem.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndUsageResourcePlanItem.java index 8ab928ae7..8b7402405 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndUsageResourcePlanItem.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndUsageResourcePlanItem.java @@ -38,7 +38,6 @@ /** * BckndUsageResourcePlanItem */ - // CHECKSTYLE:OFF public class BckndUsageResourcePlanItem // CHECKSTYLE:ON @@ -57,85 +56,85 @@ public class BckndUsageResourcePlanItem private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the id of this {@link BckndUsageResourcePlanItem} instance and return the same instance. - * - * @param id The id of this {@link BckndUsageResourcePlanItem} - * @return The same instance of this {@link BckndUsageResourcePlanItem} class - */ + * Set the id of this {@link BckndUsageResourcePlanItem} instance and return the same instance. + * + * @param id The id of this {@link BckndUsageResourcePlanItem} + * @return The same instance of this {@link BckndUsageResourcePlanItem} class + */ @Nonnull public BckndUsageResourcePlanItem id(@Nonnull final String id) { this.id = id; return this; } /** - * Get id - * @return id The id of this {@link BckndUsageResourcePlanItem} instance. - **/ + * Get id + * @return id The id of this {@link BckndUsageResourcePlanItem} instance. + */ @Nonnull public String getId() { return id; } /** - * Set the id of this {@link BckndUsageResourcePlanItem} instance. - * - * @param id The id of this {@link BckndUsageResourcePlanItem} - */ + * Set the id of this {@link BckndUsageResourcePlanItem} instance. + * + * @param id The id of this {@link BckndUsageResourcePlanItem} + */ public void setId( @Nonnull final String id) { this.id = id; } /** - * Set the resourcePlanType of this {@link BckndUsageResourcePlanItem} instance and return the same instance. - * - * @param resourcePlanType The resourcePlanType of this {@link BckndUsageResourcePlanItem} - * @return The same instance of this {@link BckndUsageResourcePlanItem} class - */ + * Set the resourcePlanType of this {@link BckndUsageResourcePlanItem} instance and return the same instance. + * + * @param resourcePlanType The resourcePlanType of this {@link BckndUsageResourcePlanItem} + * @return The same instance of this {@link BckndUsageResourcePlanItem} class + */ @Nonnull public BckndUsageResourcePlanItem resourcePlanType(@Nonnull final String resourcePlanType) { this.resourcePlanType = resourcePlanType; return this; } /** - * Get resourcePlanType - * @return resourcePlanType The resourcePlanType of this {@link BckndUsageResourcePlanItem} instance. - **/ + * Get resourcePlanType + * @return resourcePlanType The resourcePlanType of this {@link BckndUsageResourcePlanItem} instance. + */ @Nonnull public String getResourcePlanType() { return resourcePlanType; } /** - * Set the resourcePlanType of this {@link BckndUsageResourcePlanItem} instance. - * - * @param resourcePlanType The resourcePlanType of this {@link BckndUsageResourcePlanItem} - */ + * Set the resourcePlanType of this {@link BckndUsageResourcePlanItem} instance. + * + * @param resourcePlanType The resourcePlanType of this {@link BckndUsageResourcePlanItem} + */ public void setResourcePlanType( @Nonnull final String resourcePlanType) { this.resourcePlanType = resourcePlanType; } /** - * Set the configuredMaxReplicas of this {@link BckndUsageResourcePlanItem} instance and return the same instance. - * - * @param configuredMaxReplicas The configuredMaxReplicas of this {@link BckndUsageResourcePlanItem} - * @return The same instance of this {@link BckndUsageResourcePlanItem} class - */ + * Set the configuredMaxReplicas of this {@link BckndUsageResourcePlanItem} instance and return the same instance. + * + * @param configuredMaxReplicas The configuredMaxReplicas of this {@link BckndUsageResourcePlanItem} + * @return The same instance of this {@link BckndUsageResourcePlanItem} class + */ @Nonnull public BckndUsageResourcePlanItem configuredMaxReplicas(@Nonnull final Integer configuredMaxReplicas) { this.configuredMaxReplicas = configuredMaxReplicas; return this; } /** - * Get configuredMaxReplicas - * @return configuredMaxReplicas The configuredMaxReplicas of this {@link BckndUsageResourcePlanItem} instance. - **/ + * Get configuredMaxReplicas + * @return configuredMaxReplicas The configuredMaxReplicas of this {@link BckndUsageResourcePlanItem} instance. + */ @Nonnull public Integer getConfiguredMaxReplicas() { return configuredMaxReplicas; } /** - * Set the configuredMaxReplicas of this {@link BckndUsageResourcePlanItem} instance. - * - * @param configuredMaxReplicas The configuredMaxReplicas of this {@link BckndUsageResourcePlanItem} - */ + * Set the configuredMaxReplicas of this {@link BckndUsageResourcePlanItem} instance. + * + * @param configuredMaxReplicas The configuredMaxReplicas of this {@link BckndUsageResourcePlanItem} + */ public void setConfiguredMaxReplicas( @Nonnull final Integer configuredMaxReplicas) { this.configuredMaxReplicas = configuredMaxReplicas; } @@ -220,5 +219,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/BcknddockerRegistrySecretCreationResponse.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/BcknddockerRegistrySecretCreationResponse.java index 01833bdd6..7430a1c9f 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/BcknddockerRegistrySecretCreationResponse.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/BcknddockerRegistrySecretCreationResponse.java @@ -38,7 +38,6 @@ /** * Message */ - // CHECKSTYLE:OFF public class BcknddockerRegistrySecretCreationResponse // CHECKSTYLE:ON @@ -51,29 +50,29 @@ public class BcknddockerRegistrySecretCreationResponse private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the message of this {@link BcknddockerRegistrySecretCreationResponse} instance and return the same instance. - * - * @param message Message - * @return The same instance of this {@link BcknddockerRegistrySecretCreationResponse} class - */ + * Set the message of this {@link BcknddockerRegistrySecretCreationResponse} instance and return the same instance. + * + * @param message Message + * @return The same instance of this {@link BcknddockerRegistrySecretCreationResponse} class + */ @Nonnull public BcknddockerRegistrySecretCreationResponse message(@Nonnull final String message) { this.message = message; return this; } /** - * Message - * @return message The message of this {@link BcknddockerRegistrySecretCreationResponse} instance. - **/ + * Message + * @return message The message of this {@link BcknddockerRegistrySecretCreationResponse} instance. + */ @Nonnull public String getMessage() { return message; } /** - * Set the message of this {@link BcknddockerRegistrySecretCreationResponse} instance. - * - * @param message Message - */ + * Set the message of this {@link BcknddockerRegistrySecretCreationResponse} instance. + * + * @param message Message + */ public void setMessage( @Nonnull final String message) { this.message = message; } @@ -154,5 +153,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/BcknddockerRegistrySecretDeletionResponse.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/BcknddockerRegistrySecretDeletionResponse.java index 17870e33f..21251becf 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/BcknddockerRegistrySecretDeletionResponse.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/BcknddockerRegistrySecretDeletionResponse.java @@ -38,7 +38,6 @@ /** * BcknddockerRegistrySecretDeletionResponse */ - // CHECKSTYLE:OFF public class BcknddockerRegistrySecretDeletionResponse // CHECKSTYLE:ON @@ -54,57 +53,57 @@ public class BcknddockerRegistrySecretDeletionResponse private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the id of this {@link BcknddockerRegistrySecretDeletionResponse} instance and return the same instance. - * - * @param id Generic ID - * @return The same instance of this {@link BcknddockerRegistrySecretDeletionResponse} class - */ + * Set the id of this {@link BcknddockerRegistrySecretDeletionResponse} instance and return the same instance. + * + * @param id Generic ID + * @return The same instance of this {@link BcknddockerRegistrySecretDeletionResponse} class + */ @Nonnull public BcknddockerRegistrySecretDeletionResponse id(@Nonnull final String id) { this.id = id; return this; } /** - * Generic ID - * @return id The id of this {@link BcknddockerRegistrySecretDeletionResponse} instance. - **/ + * Generic ID + * @return id The id of this {@link BcknddockerRegistrySecretDeletionResponse} instance. + */ @Nonnull public String getId() { return id; } /** - * Set the id of this {@link BcknddockerRegistrySecretDeletionResponse} instance. - * - * @param id Generic ID - */ + * Set the id of this {@link BcknddockerRegistrySecretDeletionResponse} instance. + * + * @param id Generic ID + */ public void setId( @Nonnull final String id) { this.id = id; } /** - * Set the message of this {@link BcknddockerRegistrySecretDeletionResponse} instance and return the same instance. - * - * @param message Message - * @return The same instance of this {@link BcknddockerRegistrySecretDeletionResponse} class - */ + * Set the message of this {@link BcknddockerRegistrySecretDeletionResponse} instance and return the same instance. + * + * @param message Message + * @return The same instance of this {@link BcknddockerRegistrySecretDeletionResponse} class + */ @Nonnull public BcknddockerRegistrySecretDeletionResponse message(@Nonnull final String message) { this.message = message; return this; } /** - * Message - * @return message The message of this {@link BcknddockerRegistrySecretDeletionResponse} instance. - **/ + * Message + * @return message The message of this {@link BcknddockerRegistrySecretDeletionResponse} instance. + */ @Nonnull public String getMessage() { return message; } /** - * Set the message of this {@link BcknddockerRegistrySecretDeletionResponse} instance. - * - * @param message Message - */ + * Set the message of this {@link BcknddockerRegistrySecretDeletionResponse} instance. + * + * @param message Message + */ public void setMessage( @Nonnull final String message) { this.message = message; } @@ -187,5 +186,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/BcknddockerRegistrySecretModificationResponse.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/BcknddockerRegistrySecretModificationResponse.java index cad90daa6..c0c328a3b 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/BcknddockerRegistrySecretModificationResponse.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/BcknddockerRegistrySecretModificationResponse.java @@ -38,7 +38,6 @@ /** * BcknddockerRegistrySecretModificationResponse */ - // CHECKSTYLE:OFF public class BcknddockerRegistrySecretModificationResponse // CHECKSTYLE:ON @@ -54,57 +53,57 @@ public class BcknddockerRegistrySecretModificationResponse private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the id of this {@link BcknddockerRegistrySecretModificationResponse} instance and return the same instance. - * - * @param id Generic ID - * @return The same instance of this {@link BcknddockerRegistrySecretModificationResponse} class - */ + * Set the id of this {@link BcknddockerRegistrySecretModificationResponse} instance and return the same instance. + * + * @param id Generic ID + * @return The same instance of this {@link BcknddockerRegistrySecretModificationResponse} class + */ @Nonnull public BcknddockerRegistrySecretModificationResponse id(@Nonnull final String id) { this.id = id; return this; } /** - * Generic ID - * @return id The id of this {@link BcknddockerRegistrySecretModificationResponse} instance. - **/ + * Generic ID + * @return id The id of this {@link BcknddockerRegistrySecretModificationResponse} instance. + */ @Nonnull public String getId() { return id; } /** - * Set the id of this {@link BcknddockerRegistrySecretModificationResponse} instance. - * - * @param id Generic ID - */ + * Set the id of this {@link BcknddockerRegistrySecretModificationResponse} instance. + * + * @param id Generic ID + */ public void setId( @Nonnull final String id) { this.id = id; } /** - * Set the message of this {@link BcknddockerRegistrySecretModificationResponse} instance and return the same instance. - * - * @param message Message - * @return The same instance of this {@link BcknddockerRegistrySecretModificationResponse} class - */ + * Set the message of this {@link BcknddockerRegistrySecretModificationResponse} instance and return the same instance. + * + * @param message Message + * @return The same instance of this {@link BcknddockerRegistrySecretModificationResponse} class + */ @Nonnull public BcknddockerRegistrySecretModificationResponse message(@Nonnull final String message) { this.message = message; return this; } /** - * Message - * @return message The message of this {@link BcknddockerRegistrySecretModificationResponse} instance. - **/ + * Message + * @return message The message of this {@link BcknddockerRegistrySecretModificationResponse} instance. + */ @Nonnull public String getMessage() { return message; } /** - * Set the message of this {@link BcknddockerRegistrySecretModificationResponse} instance. - * - * @param message Message - */ + * Set the message of this {@link BcknddockerRegistrySecretModificationResponse} instance. + * + * @param message Message + */ public void setMessage( @Nonnull final String message) { this.message = message; } @@ -187,5 +186,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/BcknddockerRegistrySecretStatus.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/BcknddockerRegistrySecretStatus.java index afbe74223..480d0b94a 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/BcknddockerRegistrySecretStatus.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/BcknddockerRegistrySecretStatus.java @@ -38,7 +38,6 @@ /** * This represents the meta-data of a stored secret. The 'data' field of the secret is never retrieved. */ - // CHECKSTYLE:OFF public class BcknddockerRegistrySecretStatus // CHECKSTYLE:ON @@ -51,29 +50,29 @@ public class BcknddockerRegistrySecretStatus private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the name of this {@link BcknddockerRegistrySecretStatus} instance and return the same instance. - * - * @param name Name of dockerRegistryStore - * @return The same instance of this {@link BcknddockerRegistrySecretStatus} class - */ + * Set the name of this {@link BcknddockerRegistrySecretStatus} instance and return the same instance. + * + * @param name Name of dockerRegistryStore + * @return The same instance of this {@link BcknddockerRegistrySecretStatus} class + */ @Nonnull public BcknddockerRegistrySecretStatus name(@Nonnull final String name) { this.name = name; return this; } /** - * Name of dockerRegistryStore - * @return name The name of this {@link BcknddockerRegistrySecretStatus} instance. - **/ + * Name of dockerRegistryStore + * @return name The name of this {@link BcknddockerRegistrySecretStatus} instance. + */ @Nonnull public String getName() { return name; } /** - * Set the name of this {@link BcknddockerRegistrySecretStatus} instance. - * - * @param name Name of dockerRegistryStore - */ + * Set the name of this {@link BcknddockerRegistrySecretStatus} instance. + * + * @param name Name of dockerRegistryStore + */ public void setName( @Nonnull final String name) { this.name = name; } @@ -154,5 +153,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/BcknddockerRegistrySecretStatusResponse.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/BcknddockerRegistrySecretStatusResponse.java index 25ee65f73..5303f3586 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/BcknddockerRegistrySecretStatusResponse.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/BcknddockerRegistrySecretStatusResponse.java @@ -42,7 +42,6 @@ /** * This represents a list of meta-data of a stored secret. The 'data' field of the secret is never retrieved. */ - // CHECKSTYLE:OFF public class BcknddockerRegistrySecretStatusResponse // CHECKSTYLE:ON @@ -58,49 +57,49 @@ public class BcknddockerRegistrySecretStatusResponse private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the count of this {@link BcknddockerRegistrySecretStatusResponse} instance and return the same instance. - * - * @param count Number of the resource instances in the list - * @return The same instance of this {@link BcknddockerRegistrySecretStatusResponse} class - */ + * Set the count of this {@link BcknddockerRegistrySecretStatusResponse} instance and return the same instance. + * + * @param count Number of the resource instances in the list + * @return The same instance of this {@link BcknddockerRegistrySecretStatusResponse} class + */ @Nonnull public BcknddockerRegistrySecretStatusResponse count(@Nonnull final Integer count) { this.count = count; return this; } /** - * Number of the resource instances in the list - * @return count The count of this {@link BcknddockerRegistrySecretStatusResponse} instance. - **/ + * Number of the resource instances in the list + * @return count The count of this {@link BcknddockerRegistrySecretStatusResponse} instance. + */ @Nonnull public Integer getCount() { return count; } /** - * Set the count of this {@link BcknddockerRegistrySecretStatusResponse} instance. - * - * @param count Number of the resource instances in the list - */ + * Set the count of this {@link BcknddockerRegistrySecretStatusResponse} instance. + * + * @param count Number of the resource instances in the list + */ public void setCount( @Nonnull final Integer count) { this.count = count; } /** - * Set the resources of this {@link BcknddockerRegistrySecretStatusResponse} instance and return the same instance. - * - * @param resources The resources of this {@link BcknddockerRegistrySecretStatusResponse} - * @return The same instance of this {@link BcknddockerRegistrySecretStatusResponse} class - */ + * Set the resources of this {@link BcknddockerRegistrySecretStatusResponse} instance and return the same instance. + * + * @param resources The resources of this {@link BcknddockerRegistrySecretStatusResponse} + * @return The same instance of this {@link BcknddockerRegistrySecretStatusResponse} class + */ @Nonnull public BcknddockerRegistrySecretStatusResponse resources(@Nonnull final List resources) { this.resources = resources; return this; } /** - * Add one resources instance to this {@link BcknddockerRegistrySecretStatusResponse}. - * @param resourcesItem The resources that should be added - * @return The same instance of type {@link BcknddockerRegistrySecretStatusResponse} - */ - @Nonnull public BcknddockerRegistrySecretStatusResponse addresourcesItem( @Nonnull final BcknddockerRegistrySecretStatus resourcesItem) { + * Add one resources instance to this {@link BcknddockerRegistrySecretStatusResponse}. + * @param resourcesItem The resources that should be added + * @return The same instance of type {@link BcknddockerRegistrySecretStatusResponse} + */ + @Nonnull public BcknddockerRegistrySecretStatusResponse addResourcesItem( @Nonnull final BcknddockerRegistrySecretStatus resourcesItem) { if (this.resources == null) { this.resources = new ArrayList<>(); } @@ -109,18 +108,18 @@ public void setCount( @Nonnull final Integer count) { } /** - * Get resources - * @return resources The resources of this {@link BcknddockerRegistrySecretStatusResponse} instance. - **/ + * Get resources + * @return resources The resources of this {@link BcknddockerRegistrySecretStatusResponse} instance. + */ @Nonnull public List getResources() { return resources; } /** - * Set the resources of this {@link BcknddockerRegistrySecretStatusResponse} instance. - * - * @param resources The resources of this {@link BcknddockerRegistrySecretStatusResponse} - */ + * Set the resources of this {@link BcknddockerRegistrySecretStatusResponse} instance. + * + * @param resources The resources of this {@link BcknddockerRegistrySecretStatusResponse} + */ public void setResources( @Nonnull final List resources) { this.resources = resources; } @@ -203,5 +202,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/BcknddockerRegistrySecretWithSensitiveDataRequest.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/BcknddockerRegistrySecretWithSensitiveDataRequest.java index 03d51d666..769634745 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/BcknddockerRegistrySecretWithSensitiveDataRequest.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/BcknddockerRegistrySecretWithSensitiveDataRequest.java @@ -39,7 +39,6 @@ /** * This represents all the meta-data and extra information to be stored as a k8-secret */ - // CHECKSTYLE:OFF public class BcknddockerRegistrySecretWithSensitiveDataRequest // CHECKSTYLE:ON @@ -52,29 +51,29 @@ public class BcknddockerRegistrySecretWithSensitiveDataRequest private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the data of this {@link BcknddockerRegistrySecretWithSensitiveDataRequest} instance and return the same instance. - * - * @param data The data of this {@link BcknddockerRegistrySecretWithSensitiveDataRequest} - * @return The same instance of this {@link BcknddockerRegistrySecretWithSensitiveDataRequest} class - */ + * Set the data of this {@link BcknddockerRegistrySecretWithSensitiveDataRequest} instance and return the same instance. + * + * @param data The data of this {@link BcknddockerRegistrySecretWithSensitiveDataRequest} + * @return The same instance of this {@link BcknddockerRegistrySecretWithSensitiveDataRequest} class + */ @Nonnull public BcknddockerRegistrySecretWithSensitiveDataRequest data(@Nonnull final BcknddockerRegistrySecretWithSensitiveDataRequestData data) { this.data = data; return this; } /** - * Get data - * @return data The data of this {@link BcknddockerRegistrySecretWithSensitiveDataRequest} instance. - **/ + * Get data + * @return data The data of this {@link BcknddockerRegistrySecretWithSensitiveDataRequest} instance. + */ @Nonnull public BcknddockerRegistrySecretWithSensitiveDataRequestData getData() { return data; } /** - * Set the data of this {@link BcknddockerRegistrySecretWithSensitiveDataRequest} instance. - * - * @param data The data of this {@link BcknddockerRegistrySecretWithSensitiveDataRequest} - */ + * Set the data of this {@link BcknddockerRegistrySecretWithSensitiveDataRequest} instance. + * + * @param data The data of this {@link BcknddockerRegistrySecretWithSensitiveDataRequest} + */ public void setData( @Nonnull final BcknddockerRegistrySecretWithSensitiveDataRequestData data) { this.data = data; } @@ -155,5 +154,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/BcknddockerRegistrySecretWithSensitiveDataRequestData.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/BcknddockerRegistrySecretWithSensitiveDataRequestData.java index 89b6d2c26..ac23e9033 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/BcknddockerRegistrySecretWithSensitiveDataRequestData.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/BcknddockerRegistrySecretWithSensitiveDataRequestData.java @@ -38,7 +38,6 @@ /** * key:value pairs of data */ - // CHECKSTYLE:OFF public class BcknddockerRegistrySecretWithSensitiveDataRequestData // CHECKSTYLE:ON @@ -51,29 +50,29 @@ public class BcknddockerRegistrySecretWithSensitiveDataRequestData private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the dockerconfigjson of this {@link BcknddockerRegistrySecretWithSensitiveDataRequestData} instance and return the same instance. - * - * @param dockerconfigjson .dockerconfigjson data - * @return The same instance of this {@link BcknddockerRegistrySecretWithSensitiveDataRequestData} class - */ + * Set the dockerconfigjson of this {@link BcknddockerRegistrySecretWithSensitiveDataRequestData} instance and return the same instance. + * + * @param dockerconfigjson .dockerconfigjson data + * @return The same instance of this {@link BcknddockerRegistrySecretWithSensitiveDataRequestData} class + */ @Nonnull public BcknddockerRegistrySecretWithSensitiveDataRequestData dockerconfigjson(@Nonnull final String dockerconfigjson) { this.dockerconfigjson = dockerconfigjson; return this; } /** - * .dockerconfigjson data - * @return dockerconfigjson The dockerconfigjson of this {@link BcknddockerRegistrySecretWithSensitiveDataRequestData} instance. - **/ + * .dockerconfigjson data + * @return dockerconfigjson The dockerconfigjson of this {@link BcknddockerRegistrySecretWithSensitiveDataRequestData} instance. + */ @Nonnull public String getDockerconfigjson() { return dockerconfigjson; } /** - * Set the dockerconfigjson of this {@link BcknddockerRegistrySecretWithSensitiveDataRequestData} instance. - * - * @param dockerconfigjson .dockerconfigjson data - */ + * Set the dockerconfigjson of this {@link BcknddockerRegistrySecretWithSensitiveDataRequestData} instance. + * + * @param dockerconfigjson .dockerconfigjson data + */ public void setDockerconfigjson( @Nonnull final String dockerconfigjson) { this.dockerconfigjson = dockerconfigjson; } @@ -154,5 +153,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndobjectStoreSecretCreationResponse.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndobjectStoreSecretCreationResponse.java index 70327d5a1..d27b68222 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndobjectStoreSecretCreationResponse.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndobjectStoreSecretCreationResponse.java @@ -38,7 +38,6 @@ /** * Message */ - // CHECKSTYLE:OFF public class BckndobjectStoreSecretCreationResponse // CHECKSTYLE:ON @@ -51,29 +50,29 @@ public class BckndobjectStoreSecretCreationResponse private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the message of this {@link BckndobjectStoreSecretCreationResponse} instance and return the same instance. - * - * @param message Message - * @return The same instance of this {@link BckndobjectStoreSecretCreationResponse} class - */ + * Set the message of this {@link BckndobjectStoreSecretCreationResponse} instance and return the same instance. + * + * @param message Message + * @return The same instance of this {@link BckndobjectStoreSecretCreationResponse} class + */ @Nonnull public BckndobjectStoreSecretCreationResponse message(@Nonnull final String message) { this.message = message; return this; } /** - * Message - * @return message The message of this {@link BckndobjectStoreSecretCreationResponse} instance. - **/ + * Message + * @return message The message of this {@link BckndobjectStoreSecretCreationResponse} instance. + */ @Nonnull public String getMessage() { return message; } /** - * Set the message of this {@link BckndobjectStoreSecretCreationResponse} instance. - * - * @param message Message - */ + * Set the message of this {@link BckndobjectStoreSecretCreationResponse} instance. + * + * @param message Message + */ public void setMessage( @Nonnull final String message) { this.message = message; } @@ -154,5 +153,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndobjectStoreSecretDeletionResponse.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndobjectStoreSecretDeletionResponse.java index 07bd7bdef..a2ea55da3 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndobjectStoreSecretDeletionResponse.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndobjectStoreSecretDeletionResponse.java @@ -38,7 +38,6 @@ /** * BckndobjectStoreSecretDeletionResponse */ - // CHECKSTYLE:OFF public class BckndobjectStoreSecretDeletionResponse // CHECKSTYLE:ON @@ -54,57 +53,57 @@ public class BckndobjectStoreSecretDeletionResponse private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the id of this {@link BckndobjectStoreSecretDeletionResponse} instance and return the same instance. - * - * @param id Generic ID - * @return The same instance of this {@link BckndobjectStoreSecretDeletionResponse} class - */ + * Set the id of this {@link BckndobjectStoreSecretDeletionResponse} instance and return the same instance. + * + * @param id Generic ID + * @return The same instance of this {@link BckndobjectStoreSecretDeletionResponse} class + */ @Nonnull public BckndobjectStoreSecretDeletionResponse id(@Nonnull final String id) { this.id = id; return this; } /** - * Generic ID - * @return id The id of this {@link BckndobjectStoreSecretDeletionResponse} instance. - **/ + * Generic ID + * @return id The id of this {@link BckndobjectStoreSecretDeletionResponse} instance. + */ @Nonnull public String getId() { return id; } /** - * Set the id of this {@link BckndobjectStoreSecretDeletionResponse} instance. - * - * @param id Generic ID - */ + * Set the id of this {@link BckndobjectStoreSecretDeletionResponse} instance. + * + * @param id Generic ID + */ public void setId( @Nonnull final String id) { this.id = id; } /** - * Set the message of this {@link BckndobjectStoreSecretDeletionResponse} instance and return the same instance. - * - * @param message Message - * @return The same instance of this {@link BckndobjectStoreSecretDeletionResponse} class - */ + * Set the message of this {@link BckndobjectStoreSecretDeletionResponse} instance and return the same instance. + * + * @param message Message + * @return The same instance of this {@link BckndobjectStoreSecretDeletionResponse} class + */ @Nonnull public BckndobjectStoreSecretDeletionResponse message(@Nonnull final String message) { this.message = message; return this; } /** - * Message - * @return message The message of this {@link BckndobjectStoreSecretDeletionResponse} instance. - **/ + * Message + * @return message The message of this {@link BckndobjectStoreSecretDeletionResponse} instance. + */ @Nonnull public String getMessage() { return message; } /** - * Set the message of this {@link BckndobjectStoreSecretDeletionResponse} instance. - * - * @param message Message - */ + * Set the message of this {@link BckndobjectStoreSecretDeletionResponse} instance. + * + * @param message Message + */ public void setMessage( @Nonnull final String message) { this.message = message; } @@ -187,5 +186,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndobjectStoreSecretModificationResponse.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndobjectStoreSecretModificationResponse.java index 242c57103..c75edee36 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndobjectStoreSecretModificationResponse.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndobjectStoreSecretModificationResponse.java @@ -38,7 +38,6 @@ /** * BckndobjectStoreSecretModificationResponse */ - // CHECKSTYLE:OFF public class BckndobjectStoreSecretModificationResponse // CHECKSTYLE:ON @@ -54,57 +53,57 @@ public class BckndobjectStoreSecretModificationResponse private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the id of this {@link BckndobjectStoreSecretModificationResponse} instance and return the same instance. - * - * @param id Generic ID - * @return The same instance of this {@link BckndobjectStoreSecretModificationResponse} class - */ + * Set the id of this {@link BckndobjectStoreSecretModificationResponse} instance and return the same instance. + * + * @param id Generic ID + * @return The same instance of this {@link BckndobjectStoreSecretModificationResponse} class + */ @Nonnull public BckndobjectStoreSecretModificationResponse id(@Nonnull final String id) { this.id = id; return this; } /** - * Generic ID - * @return id The id of this {@link BckndobjectStoreSecretModificationResponse} instance. - **/ + * Generic ID + * @return id The id of this {@link BckndobjectStoreSecretModificationResponse} instance. + */ @Nonnull public String getId() { return id; } /** - * Set the id of this {@link BckndobjectStoreSecretModificationResponse} instance. - * - * @param id Generic ID - */ + * Set the id of this {@link BckndobjectStoreSecretModificationResponse} instance. + * + * @param id Generic ID + */ public void setId( @Nonnull final String id) { this.id = id; } /** - * Set the message of this {@link BckndobjectStoreSecretModificationResponse} instance and return the same instance. - * - * @param message Message - * @return The same instance of this {@link BckndobjectStoreSecretModificationResponse} class - */ + * Set the message of this {@link BckndobjectStoreSecretModificationResponse} instance and return the same instance. + * + * @param message Message + * @return The same instance of this {@link BckndobjectStoreSecretModificationResponse} class + */ @Nonnull public BckndobjectStoreSecretModificationResponse message(@Nonnull final String message) { this.message = message; return this; } /** - * Message - * @return message The message of this {@link BckndobjectStoreSecretModificationResponse} instance. - **/ + * Message + * @return message The message of this {@link BckndobjectStoreSecretModificationResponse} instance. + */ @Nonnull public String getMessage() { return message; } /** - * Set the message of this {@link BckndobjectStoreSecretModificationResponse} instance. - * - * @param message Message - */ + * Set the message of this {@link BckndobjectStoreSecretModificationResponse} instance. + * + * @param message Message + */ public void setMessage( @Nonnull final String message) { this.message = message; } @@ -187,5 +186,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndobjectStoreSecretStatus.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndobjectStoreSecretStatus.java index 6252bd644..f9bf8d2bb 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndobjectStoreSecretStatus.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndobjectStoreSecretStatus.java @@ -39,7 +39,6 @@ /** * This represents the meta-data of a stored secret. The 'data' field of the secret is never retrieved. */ - // CHECKSTYLE:OFF public class BckndobjectStoreSecretStatus // CHECKSTYLE:ON @@ -55,57 +54,57 @@ public class BckndobjectStoreSecretStatus private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the metadata of this {@link BckndobjectStoreSecretStatus} instance and return the same instance. - * - * @param metadata The metadata of this {@link BckndobjectStoreSecretStatus} - * @return The same instance of this {@link BckndobjectStoreSecretStatus} class - */ + * Set the metadata of this {@link BckndobjectStoreSecretStatus} instance and return the same instance. + * + * @param metadata The metadata of this {@link BckndobjectStoreSecretStatus} + * @return The same instance of this {@link BckndobjectStoreSecretStatus} class + */ @Nonnull public BckndobjectStoreSecretStatus metadata(@Nonnull final BckndobjectStoreSecretStatusMetadata metadata) { this.metadata = metadata; return this; } /** - * Get metadata - * @return metadata The metadata of this {@link BckndobjectStoreSecretStatus} instance. - **/ + * Get metadata + * @return metadata The metadata of this {@link BckndobjectStoreSecretStatus} instance. + */ @Nonnull public BckndobjectStoreSecretStatusMetadata getMetadata() { return metadata; } /** - * Set the metadata of this {@link BckndobjectStoreSecretStatus} instance. - * - * @param metadata The metadata of this {@link BckndobjectStoreSecretStatus} - */ + * Set the metadata of this {@link BckndobjectStoreSecretStatus} instance. + * + * @param metadata The metadata of this {@link BckndobjectStoreSecretStatus} + */ public void setMetadata( @Nonnull final BckndobjectStoreSecretStatusMetadata metadata) { this.metadata = metadata; } /** - * Set the name of this {@link BckndobjectStoreSecretStatus} instance and return the same instance. - * - * @param name Name of objectstore - * @return The same instance of this {@link BckndobjectStoreSecretStatus} class - */ + * Set the name of this {@link BckndobjectStoreSecretStatus} instance and return the same instance. + * + * @param name Name of objectstore + * @return The same instance of this {@link BckndobjectStoreSecretStatus} class + */ @Nonnull public BckndobjectStoreSecretStatus name(@Nonnull final String name) { this.name = name; return this; } /** - * Name of objectstore - * @return name The name of this {@link BckndobjectStoreSecretStatus} instance. - **/ + * Name of objectstore + * @return name The name of this {@link BckndobjectStoreSecretStatus} instance. + */ @Nonnull public String getName() { return name; } /** - * Set the name of this {@link BckndobjectStoreSecretStatus} instance. - * - * @param name Name of objectstore - */ + * Set the name of this {@link BckndobjectStoreSecretStatus} instance. + * + * @param name Name of objectstore + */ public void setName( @Nonnull final String name) { this.name = name; } @@ -188,5 +187,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndobjectStoreSecretStatusMetadata.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndobjectStoreSecretStatusMetadata.java index 3aeaa7eaf..b46683933 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndobjectStoreSecretStatusMetadata.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndobjectStoreSecretStatusMetadata.java @@ -38,7 +38,6 @@ /** * Key value pairs of meta-data assigned to the secret when the secret was being created. */ - // CHECKSTYLE:OFF public class BckndobjectStoreSecretStatusMetadata // CHECKSTYLE:ON @@ -93,421 +92,421 @@ public class BckndobjectStoreSecretStatusMetadata private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the servingKubeflowOrgS3Usehttps of this {@link BckndobjectStoreSecretStatusMetadata} instance and return the same instance. - * - * @param servingKubeflowOrgS3Usehttps 0 and 1 values for setting the flag - * @return The same instance of this {@link BckndobjectStoreSecretStatusMetadata} class - */ + * Set the servingKubeflowOrgS3Usehttps of this {@link BckndobjectStoreSecretStatusMetadata} instance and return the same instance. + * + * @param servingKubeflowOrgS3Usehttps 0 and 1 values for setting the flag + * @return The same instance of this {@link BckndobjectStoreSecretStatusMetadata} class + */ @Nonnull public BckndobjectStoreSecretStatusMetadata servingKubeflowOrgS3Usehttps(@Nonnull final String servingKubeflowOrgS3Usehttps) { this.servingKubeflowOrgS3Usehttps = servingKubeflowOrgS3Usehttps; return this; } /** - * 0 and 1 values for setting the flag - * @return servingKubeflowOrgS3Usehttps The servingKubeflowOrgS3Usehttps of this {@link BckndobjectStoreSecretStatusMetadata} instance. - **/ + * 0 and 1 values for setting the flag + * @return servingKubeflowOrgS3Usehttps The servingKubeflowOrgS3Usehttps of this {@link BckndobjectStoreSecretStatusMetadata} instance. + */ @Nonnull public String getServingKubeflowOrgS3Usehttps() { return servingKubeflowOrgS3Usehttps; } /** - * Set the servingKubeflowOrgS3Usehttps of this {@link BckndobjectStoreSecretStatusMetadata} instance. - * - * @param servingKubeflowOrgS3Usehttps 0 and 1 values for setting the flag - */ + * Set the servingKubeflowOrgS3Usehttps of this {@link BckndobjectStoreSecretStatusMetadata} instance. + * + * @param servingKubeflowOrgS3Usehttps 0 and 1 values for setting the flag + */ public void setServingKubeflowOrgS3Usehttps( @Nonnull final String servingKubeflowOrgS3Usehttps) { this.servingKubeflowOrgS3Usehttps = servingKubeflowOrgS3Usehttps; } /** - * Set the servingKubeflowOrgS3Verifyssl of this {@link BckndobjectStoreSecretStatusMetadata} instance and return the same instance. - * - * @param servingKubeflowOrgS3Verifyssl 0 and 1 values for setting the flag - * @return The same instance of this {@link BckndobjectStoreSecretStatusMetadata} class - */ + * Set the servingKubeflowOrgS3Verifyssl of this {@link BckndobjectStoreSecretStatusMetadata} instance and return the same instance. + * + * @param servingKubeflowOrgS3Verifyssl 0 and 1 values for setting the flag + * @return The same instance of this {@link BckndobjectStoreSecretStatusMetadata} class + */ @Nonnull public BckndobjectStoreSecretStatusMetadata servingKubeflowOrgS3Verifyssl(@Nonnull final String servingKubeflowOrgS3Verifyssl) { this.servingKubeflowOrgS3Verifyssl = servingKubeflowOrgS3Verifyssl; return this; } /** - * 0 and 1 values for setting the flag - * @return servingKubeflowOrgS3Verifyssl The servingKubeflowOrgS3Verifyssl of this {@link BckndobjectStoreSecretStatusMetadata} instance. - **/ + * 0 and 1 values for setting the flag + * @return servingKubeflowOrgS3Verifyssl The servingKubeflowOrgS3Verifyssl of this {@link BckndobjectStoreSecretStatusMetadata} instance. + */ @Nonnull public String getServingKubeflowOrgS3Verifyssl() { return servingKubeflowOrgS3Verifyssl; } /** - * Set the servingKubeflowOrgS3Verifyssl of this {@link BckndobjectStoreSecretStatusMetadata} instance. - * - * @param servingKubeflowOrgS3Verifyssl 0 and 1 values for setting the flag - */ + * Set the servingKubeflowOrgS3Verifyssl of this {@link BckndobjectStoreSecretStatusMetadata} instance. + * + * @param servingKubeflowOrgS3Verifyssl 0 and 1 values for setting the flag + */ public void setServingKubeflowOrgS3Verifyssl( @Nonnull final String servingKubeflowOrgS3Verifyssl) { this.servingKubeflowOrgS3Verifyssl = servingKubeflowOrgS3Verifyssl; } /** - * Set the servingKubeflowOrgS3Endpoint of this {@link BckndobjectStoreSecretStatusMetadata} instance and return the same instance. - * - * @param servingKubeflowOrgS3Endpoint Annotation for endpoint required by KF_Serving - * @return The same instance of this {@link BckndobjectStoreSecretStatusMetadata} class - */ + * Set the servingKubeflowOrgS3Endpoint of this {@link BckndobjectStoreSecretStatusMetadata} instance and return the same instance. + * + * @param servingKubeflowOrgS3Endpoint Annotation for endpoint required by KF_Serving + * @return The same instance of this {@link BckndobjectStoreSecretStatusMetadata} class + */ @Nonnull public BckndobjectStoreSecretStatusMetadata servingKubeflowOrgS3Endpoint(@Nonnull final String servingKubeflowOrgS3Endpoint) { this.servingKubeflowOrgS3Endpoint = servingKubeflowOrgS3Endpoint; return this; } /** - * Annotation for endpoint required by KF_Serving - * @return servingKubeflowOrgS3Endpoint The servingKubeflowOrgS3Endpoint of this {@link BckndobjectStoreSecretStatusMetadata} instance. - **/ + * Annotation for endpoint required by KF_Serving + * @return servingKubeflowOrgS3Endpoint The servingKubeflowOrgS3Endpoint of this {@link BckndobjectStoreSecretStatusMetadata} instance. + */ @Nonnull public String getServingKubeflowOrgS3Endpoint() { return servingKubeflowOrgS3Endpoint; } /** - * Set the servingKubeflowOrgS3Endpoint of this {@link BckndobjectStoreSecretStatusMetadata} instance. - * - * @param servingKubeflowOrgS3Endpoint Annotation for endpoint required by KF_Serving - */ + * Set the servingKubeflowOrgS3Endpoint of this {@link BckndobjectStoreSecretStatusMetadata} instance. + * + * @param servingKubeflowOrgS3Endpoint Annotation for endpoint required by KF_Serving + */ public void setServingKubeflowOrgS3Endpoint( @Nonnull final String servingKubeflowOrgS3Endpoint) { this.servingKubeflowOrgS3Endpoint = servingKubeflowOrgS3Endpoint; } /** - * Set the servingKubeflowOrgS3Region of this {@link BckndobjectStoreSecretStatusMetadata} instance and return the same instance. - * - * @param servingKubeflowOrgS3Region Annotation for region required by KF_Serving - * @return The same instance of this {@link BckndobjectStoreSecretStatusMetadata} class - */ + * Set the servingKubeflowOrgS3Region of this {@link BckndobjectStoreSecretStatusMetadata} instance and return the same instance. + * + * @param servingKubeflowOrgS3Region Annotation for region required by KF_Serving + * @return The same instance of this {@link BckndobjectStoreSecretStatusMetadata} class + */ @Nonnull public BckndobjectStoreSecretStatusMetadata servingKubeflowOrgS3Region(@Nonnull final String servingKubeflowOrgS3Region) { this.servingKubeflowOrgS3Region = servingKubeflowOrgS3Region; return this; } /** - * Annotation for region required by KF_Serving - * @return servingKubeflowOrgS3Region The servingKubeflowOrgS3Region of this {@link BckndobjectStoreSecretStatusMetadata} instance. - **/ + * Annotation for region required by KF_Serving + * @return servingKubeflowOrgS3Region The servingKubeflowOrgS3Region of this {@link BckndobjectStoreSecretStatusMetadata} instance. + */ @Nonnull public String getServingKubeflowOrgS3Region() { return servingKubeflowOrgS3Region; } /** - * Set the servingKubeflowOrgS3Region of this {@link BckndobjectStoreSecretStatusMetadata} instance. - * - * @param servingKubeflowOrgS3Region Annotation for region required by KF_Serving - */ + * Set the servingKubeflowOrgS3Region of this {@link BckndobjectStoreSecretStatusMetadata} instance. + * + * @param servingKubeflowOrgS3Region Annotation for region required by KF_Serving + */ public void setServingKubeflowOrgS3Region( @Nonnull final String servingKubeflowOrgS3Region) { this.servingKubeflowOrgS3Region = servingKubeflowOrgS3Region; } /** - * Set the storageAiSapComType of this {@link BckndobjectStoreSecretStatusMetadata} instance and return the same instance. - * - * @param storageAiSapComType Storage type of the secret - * @return The same instance of this {@link BckndobjectStoreSecretStatusMetadata} class - */ + * Set the storageAiSapComType of this {@link BckndobjectStoreSecretStatusMetadata} instance and return the same instance. + * + * @param storageAiSapComType Storage type of the secret + * @return The same instance of this {@link BckndobjectStoreSecretStatusMetadata} class + */ @Nonnull public BckndobjectStoreSecretStatusMetadata storageAiSapComType(@Nonnull final String storageAiSapComType) { this.storageAiSapComType = storageAiSapComType; return this; } /** - * Storage type of the secret - * @return storageAiSapComType The storageAiSapComType of this {@link BckndobjectStoreSecretStatusMetadata} instance. - **/ + * Storage type of the secret + * @return storageAiSapComType The storageAiSapComType of this {@link BckndobjectStoreSecretStatusMetadata} instance. + */ @Nonnull public String getStorageAiSapComType() { return storageAiSapComType; } /** - * Set the storageAiSapComType of this {@link BckndobjectStoreSecretStatusMetadata} instance. - * - * @param storageAiSapComType Storage type of the secret - */ + * Set the storageAiSapComType of this {@link BckndobjectStoreSecretStatusMetadata} instance. + * + * @param storageAiSapComType Storage type of the secret + */ public void setStorageAiSapComType( @Nonnull final String storageAiSapComType) { this.storageAiSapComType = storageAiSapComType; } /** - * Set the storageAiSapComBucket of this {@link BckndobjectStoreSecretStatusMetadata} instance and return the same instance. - * - * @param storageAiSapComBucket bucket assigned to the secret on creation - * @return The same instance of this {@link BckndobjectStoreSecretStatusMetadata} class - */ + * Set the storageAiSapComBucket of this {@link BckndobjectStoreSecretStatusMetadata} instance and return the same instance. + * + * @param storageAiSapComBucket bucket assigned to the secret on creation + * @return The same instance of this {@link BckndobjectStoreSecretStatusMetadata} class + */ @Nonnull public BckndobjectStoreSecretStatusMetadata storageAiSapComBucket(@Nonnull final String storageAiSapComBucket) { this.storageAiSapComBucket = storageAiSapComBucket; return this; } /** - * bucket assigned to the secret on creation - * @return storageAiSapComBucket The storageAiSapComBucket of this {@link BckndobjectStoreSecretStatusMetadata} instance. - **/ + * bucket assigned to the secret on creation + * @return storageAiSapComBucket The storageAiSapComBucket of this {@link BckndobjectStoreSecretStatusMetadata} instance. + */ @Nonnull public String getStorageAiSapComBucket() { return storageAiSapComBucket; } /** - * Set the storageAiSapComBucket of this {@link BckndobjectStoreSecretStatusMetadata} instance. - * - * @param storageAiSapComBucket bucket assigned to the secret on creation - */ + * Set the storageAiSapComBucket of this {@link BckndobjectStoreSecretStatusMetadata} instance. + * + * @param storageAiSapComBucket bucket assigned to the secret on creation + */ public void setStorageAiSapComBucket( @Nonnull final String storageAiSapComBucket) { this.storageAiSapComBucket = storageAiSapComBucket; } /** - * Set the storageAiSapComEndpoint of this {@link BckndobjectStoreSecretStatusMetadata} instance and return the same instance. - * - * @param storageAiSapComEndpoint Endpoint assigned to the secret on creation - * @return The same instance of this {@link BckndobjectStoreSecretStatusMetadata} class - */ + * Set the storageAiSapComEndpoint of this {@link BckndobjectStoreSecretStatusMetadata} instance and return the same instance. + * + * @param storageAiSapComEndpoint Endpoint assigned to the secret on creation + * @return The same instance of this {@link BckndobjectStoreSecretStatusMetadata} class + */ @Nonnull public BckndobjectStoreSecretStatusMetadata storageAiSapComEndpoint(@Nonnull final String storageAiSapComEndpoint) { this.storageAiSapComEndpoint = storageAiSapComEndpoint; return this; } /** - * Endpoint assigned to the secret on creation - * @return storageAiSapComEndpoint The storageAiSapComEndpoint of this {@link BckndobjectStoreSecretStatusMetadata} instance. - **/ + * Endpoint assigned to the secret on creation + * @return storageAiSapComEndpoint The storageAiSapComEndpoint of this {@link BckndobjectStoreSecretStatusMetadata} instance. + */ @Nonnull public String getStorageAiSapComEndpoint() { return storageAiSapComEndpoint; } /** - * Set the storageAiSapComEndpoint of this {@link BckndobjectStoreSecretStatusMetadata} instance. - * - * @param storageAiSapComEndpoint Endpoint assigned to the secret on creation - */ + * Set the storageAiSapComEndpoint of this {@link BckndobjectStoreSecretStatusMetadata} instance. + * + * @param storageAiSapComEndpoint Endpoint assigned to the secret on creation + */ public void setStorageAiSapComEndpoint( @Nonnull final String storageAiSapComEndpoint) { this.storageAiSapComEndpoint = storageAiSapComEndpoint; } /** - * Set the storageAiSapComRegion of this {@link BckndobjectStoreSecretStatusMetadata} instance and return the same instance. - * - * @param storageAiSapComRegion Region of the storage server - * @return The same instance of this {@link BckndobjectStoreSecretStatusMetadata} class - */ + * Set the storageAiSapComRegion of this {@link BckndobjectStoreSecretStatusMetadata} instance and return the same instance. + * + * @param storageAiSapComRegion Region of the storage server + * @return The same instance of this {@link BckndobjectStoreSecretStatusMetadata} class + */ @Nonnull public BckndobjectStoreSecretStatusMetadata storageAiSapComRegion(@Nonnull final String storageAiSapComRegion) { this.storageAiSapComRegion = storageAiSapComRegion; return this; } /** - * Region of the storage server - * @return storageAiSapComRegion The storageAiSapComRegion of this {@link BckndobjectStoreSecretStatusMetadata} instance. - **/ + * Region of the storage server + * @return storageAiSapComRegion The storageAiSapComRegion of this {@link BckndobjectStoreSecretStatusMetadata} instance. + */ @Nonnull public String getStorageAiSapComRegion() { return storageAiSapComRegion; } /** - * Set the storageAiSapComRegion of this {@link BckndobjectStoreSecretStatusMetadata} instance. - * - * @param storageAiSapComRegion Region of the storage server - */ + * Set the storageAiSapComRegion of this {@link BckndobjectStoreSecretStatusMetadata} instance. + * + * @param storageAiSapComRegion Region of the storage server + */ public void setStorageAiSapComRegion( @Nonnull final String storageAiSapComRegion) { this.storageAiSapComRegion = storageAiSapComRegion; } /** - * Set the storageAiSapComPathPrefix of this {@link BckndobjectStoreSecretStatusMetadata} instance and return the same instance. - * - * @param storageAiSapComPathPrefix Pathprefix type assigned to the secret on creation. - * @return The same instance of this {@link BckndobjectStoreSecretStatusMetadata} class - */ + * Set the storageAiSapComPathPrefix of this {@link BckndobjectStoreSecretStatusMetadata} instance and return the same instance. + * + * @param storageAiSapComPathPrefix Pathprefix type assigned to the secret on creation. + * @return The same instance of this {@link BckndobjectStoreSecretStatusMetadata} class + */ @Nonnull public BckndobjectStoreSecretStatusMetadata storageAiSapComPathPrefix(@Nonnull final String storageAiSapComPathPrefix) { this.storageAiSapComPathPrefix = storageAiSapComPathPrefix; return this; } /** - * Pathprefix type assigned to the secret on creation. - * @return storageAiSapComPathPrefix The storageAiSapComPathPrefix of this {@link BckndobjectStoreSecretStatusMetadata} instance. - **/ + * Pathprefix type assigned to the secret on creation. + * @return storageAiSapComPathPrefix The storageAiSapComPathPrefix of this {@link BckndobjectStoreSecretStatusMetadata} instance. + */ @Nonnull public String getStorageAiSapComPathPrefix() { return storageAiSapComPathPrefix; } /** - * Set the storageAiSapComPathPrefix of this {@link BckndobjectStoreSecretStatusMetadata} instance. - * - * @param storageAiSapComPathPrefix Pathprefix type assigned to the secret on creation. - */ + * Set the storageAiSapComPathPrefix of this {@link BckndobjectStoreSecretStatusMetadata} instance. + * + * @param storageAiSapComPathPrefix Pathprefix type assigned to the secret on creation. + */ public void setStorageAiSapComPathPrefix( @Nonnull final String storageAiSapComPathPrefix) { this.storageAiSapComPathPrefix = storageAiSapComPathPrefix; } /** - * Set the storageAiSapComHdfsNameNode of this {@link BckndobjectStoreSecretStatusMetadata} instance and return the same instance. - * - * @param storageAiSapComHdfsNameNode name node of the HDFS file system - * @return The same instance of this {@link BckndobjectStoreSecretStatusMetadata} class - */ + * Set the storageAiSapComHdfsNameNode of this {@link BckndobjectStoreSecretStatusMetadata} instance and return the same instance. + * + * @param storageAiSapComHdfsNameNode name node of the HDFS file system + * @return The same instance of this {@link BckndobjectStoreSecretStatusMetadata} class + */ @Nonnull public BckndobjectStoreSecretStatusMetadata storageAiSapComHdfsNameNode(@Nonnull final String storageAiSapComHdfsNameNode) { this.storageAiSapComHdfsNameNode = storageAiSapComHdfsNameNode; return this; } /** - * name node of the HDFS file system - * @return storageAiSapComHdfsNameNode The storageAiSapComHdfsNameNode of this {@link BckndobjectStoreSecretStatusMetadata} instance. - **/ + * name node of the HDFS file system + * @return storageAiSapComHdfsNameNode The storageAiSapComHdfsNameNode of this {@link BckndobjectStoreSecretStatusMetadata} instance. + */ @Nonnull public String getStorageAiSapComHdfsNameNode() { return storageAiSapComHdfsNameNode; } /** - * Set the storageAiSapComHdfsNameNode of this {@link BckndobjectStoreSecretStatusMetadata} instance. - * - * @param storageAiSapComHdfsNameNode name node of the HDFS file system - */ + * Set the storageAiSapComHdfsNameNode of this {@link BckndobjectStoreSecretStatusMetadata} instance. + * + * @param storageAiSapComHdfsNameNode name node of the HDFS file system + */ public void setStorageAiSapComHdfsNameNode( @Nonnull final String storageAiSapComHdfsNameNode) { this.storageAiSapComHdfsNameNode = storageAiSapComHdfsNameNode; } /** - * Set the storageAiSapComHeaders of this {@link BckndobjectStoreSecretStatusMetadata} instance and return the same instance. - * - * @param storageAiSapComHeaders headers for webHDFS and other protocols - * @return The same instance of this {@link BckndobjectStoreSecretStatusMetadata} class - */ + * Set the storageAiSapComHeaders of this {@link BckndobjectStoreSecretStatusMetadata} instance and return the same instance. + * + * @param storageAiSapComHeaders headers for webHDFS and other protocols + * @return The same instance of this {@link BckndobjectStoreSecretStatusMetadata} class + */ @Nonnull public BckndobjectStoreSecretStatusMetadata storageAiSapComHeaders(@Nonnull final String storageAiSapComHeaders) { this.storageAiSapComHeaders = storageAiSapComHeaders; return this; } /** - * headers for webHDFS and other protocols - * @return storageAiSapComHeaders The storageAiSapComHeaders of this {@link BckndobjectStoreSecretStatusMetadata} instance. - **/ + * headers for webHDFS and other protocols + * @return storageAiSapComHeaders The storageAiSapComHeaders of this {@link BckndobjectStoreSecretStatusMetadata} instance. + */ @Nonnull public String getStorageAiSapComHeaders() { return storageAiSapComHeaders; } /** - * Set the storageAiSapComHeaders of this {@link BckndobjectStoreSecretStatusMetadata} instance. - * - * @param storageAiSapComHeaders headers for webHDFS and other protocols - */ + * Set the storageAiSapComHeaders of this {@link BckndobjectStoreSecretStatusMetadata} instance. + * + * @param storageAiSapComHeaders headers for webHDFS and other protocols + */ public void setStorageAiSapComHeaders( @Nonnull final String storageAiSapComHeaders) { this.storageAiSapComHeaders = storageAiSapComHeaders; } /** - * Set the storageAiSapComContainerUri of this {@link BckndobjectStoreSecretStatusMetadata} instance and return the same instance. - * - * @param storageAiSapComContainerUri container uri of azure storage - * @return The same instance of this {@link BckndobjectStoreSecretStatusMetadata} class - */ + * Set the storageAiSapComContainerUri of this {@link BckndobjectStoreSecretStatusMetadata} instance and return the same instance. + * + * @param storageAiSapComContainerUri container uri of azure storage + * @return The same instance of this {@link BckndobjectStoreSecretStatusMetadata} class + */ @Nonnull public BckndobjectStoreSecretStatusMetadata storageAiSapComContainerUri(@Nonnull final String storageAiSapComContainerUri) { this.storageAiSapComContainerUri = storageAiSapComContainerUri; return this; } /** - * container uri of azure storage - * @return storageAiSapComContainerUri The storageAiSapComContainerUri of this {@link BckndobjectStoreSecretStatusMetadata} instance. - **/ + * container uri of azure storage + * @return storageAiSapComContainerUri The storageAiSapComContainerUri of this {@link BckndobjectStoreSecretStatusMetadata} instance. + */ @Nonnull public String getStorageAiSapComContainerUri() { return storageAiSapComContainerUri; } /** - * Set the storageAiSapComContainerUri of this {@link BckndobjectStoreSecretStatusMetadata} instance. - * - * @param storageAiSapComContainerUri container uri of azure storage - */ + * Set the storageAiSapComContainerUri of this {@link BckndobjectStoreSecretStatusMetadata} instance. + * + * @param storageAiSapComContainerUri container uri of azure storage + */ public void setStorageAiSapComContainerUri( @Nonnull final String storageAiSapComContainerUri) { this.storageAiSapComContainerUri = storageAiSapComContainerUri; } /** - * Set the storageAiSapComSubscriptionId of this {@link BckndobjectStoreSecretStatusMetadata} instance and return the same instance. - * - * @param storageAiSapComSubscriptionId subscription id - * @return The same instance of this {@link BckndobjectStoreSecretStatusMetadata} class - */ + * Set the storageAiSapComSubscriptionId of this {@link BckndobjectStoreSecretStatusMetadata} instance and return the same instance. + * + * @param storageAiSapComSubscriptionId subscription id + * @return The same instance of this {@link BckndobjectStoreSecretStatusMetadata} class + */ @Nonnull public BckndobjectStoreSecretStatusMetadata storageAiSapComSubscriptionId(@Nonnull final String storageAiSapComSubscriptionId) { this.storageAiSapComSubscriptionId = storageAiSapComSubscriptionId; return this; } /** - * subscription id - * @return storageAiSapComSubscriptionId The storageAiSapComSubscriptionId of this {@link BckndobjectStoreSecretStatusMetadata} instance. - **/ + * subscription id + * @return storageAiSapComSubscriptionId The storageAiSapComSubscriptionId of this {@link BckndobjectStoreSecretStatusMetadata} instance. + */ @Nonnull public String getStorageAiSapComSubscriptionId() { return storageAiSapComSubscriptionId; } /** - * Set the storageAiSapComSubscriptionId of this {@link BckndobjectStoreSecretStatusMetadata} instance. - * - * @param storageAiSapComSubscriptionId subscription id - */ + * Set the storageAiSapComSubscriptionId of this {@link BckndobjectStoreSecretStatusMetadata} instance. + * + * @param storageAiSapComSubscriptionId subscription id + */ public void setStorageAiSapComSubscriptionId( @Nonnull final String storageAiSapComSubscriptionId) { this.storageAiSapComSubscriptionId = storageAiSapComSubscriptionId; } /** - * Set the storageAiSapComTenantId of this {@link BckndobjectStoreSecretStatusMetadata} instance and return the same instance. - * - * @param storageAiSapComTenantId tenant id - * @return The same instance of this {@link BckndobjectStoreSecretStatusMetadata} class - */ + * Set the storageAiSapComTenantId of this {@link BckndobjectStoreSecretStatusMetadata} instance and return the same instance. + * + * @param storageAiSapComTenantId tenant id + * @return The same instance of this {@link BckndobjectStoreSecretStatusMetadata} class + */ @Nonnull public BckndobjectStoreSecretStatusMetadata storageAiSapComTenantId(@Nonnull final String storageAiSapComTenantId) { this.storageAiSapComTenantId = storageAiSapComTenantId; return this; } /** - * tenant id - * @return storageAiSapComTenantId The storageAiSapComTenantId of this {@link BckndobjectStoreSecretStatusMetadata} instance. - **/ + * tenant id + * @return storageAiSapComTenantId The storageAiSapComTenantId of this {@link BckndobjectStoreSecretStatusMetadata} instance. + */ @Nonnull public String getStorageAiSapComTenantId() { return storageAiSapComTenantId; } /** - * Set the storageAiSapComTenantId of this {@link BckndobjectStoreSecretStatusMetadata} instance. - * - * @param storageAiSapComTenantId tenant id - */ + * Set the storageAiSapComTenantId of this {@link BckndobjectStoreSecretStatusMetadata} instance. + * + * @param storageAiSapComTenantId tenant id + */ public void setStorageAiSapComTenantId( @Nonnull final String storageAiSapComTenantId) { this.storageAiSapComTenantId = storageAiSapComTenantId; } /** - * Set the storageAiSapComProjectId of this {@link BckndobjectStoreSecretStatusMetadata} instance and return the same instance. - * - * @param storageAiSapComProjectId project id of google cloud platform - * @return The same instance of this {@link BckndobjectStoreSecretStatusMetadata} class - */ + * Set the storageAiSapComProjectId of this {@link BckndobjectStoreSecretStatusMetadata} instance and return the same instance. + * + * @param storageAiSapComProjectId project id of google cloud platform + * @return The same instance of this {@link BckndobjectStoreSecretStatusMetadata} class + */ @Nonnull public BckndobjectStoreSecretStatusMetadata storageAiSapComProjectId(@Nonnull final String storageAiSapComProjectId) { this.storageAiSapComProjectId = storageAiSapComProjectId; return this; } /** - * project id of google cloud platform - * @return storageAiSapComProjectId The storageAiSapComProjectId of this {@link BckndobjectStoreSecretStatusMetadata} instance. - **/ + * project id of google cloud platform + * @return storageAiSapComProjectId The storageAiSapComProjectId of this {@link BckndobjectStoreSecretStatusMetadata} instance. + */ @Nonnull public String getStorageAiSapComProjectId() { return storageAiSapComProjectId; } /** - * Set the storageAiSapComProjectId of this {@link BckndobjectStoreSecretStatusMetadata} instance. - * - * @param storageAiSapComProjectId project id of google cloud platform - */ + * Set the storageAiSapComProjectId of this {@link BckndobjectStoreSecretStatusMetadata} instance. + * + * @param storageAiSapComProjectId project id of google cloud platform + */ public void setStorageAiSapComProjectId( @Nonnull final String storageAiSapComProjectId) { this.storageAiSapComProjectId = storageAiSapComProjectId; } @@ -616,5 +615,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndobjectStoreSecretStatusResponse.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndobjectStoreSecretStatusResponse.java index 4288dad57..07cbd15ae 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndobjectStoreSecretStatusResponse.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndobjectStoreSecretStatusResponse.java @@ -42,7 +42,6 @@ /** * This represents a list of meta-data of a stored secret. The 'data' field of the secret is never retrieved. */ - // CHECKSTYLE:OFF public class BckndobjectStoreSecretStatusResponse // CHECKSTYLE:ON @@ -58,49 +57,49 @@ public class BckndobjectStoreSecretStatusResponse private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the count of this {@link BckndobjectStoreSecretStatusResponse} instance and return the same instance. - * - * @param count Number of the resource instances in the list - * @return The same instance of this {@link BckndobjectStoreSecretStatusResponse} class - */ + * Set the count of this {@link BckndobjectStoreSecretStatusResponse} instance and return the same instance. + * + * @param count Number of the resource instances in the list + * @return The same instance of this {@link BckndobjectStoreSecretStatusResponse} class + */ @Nonnull public BckndobjectStoreSecretStatusResponse count(@Nonnull final Integer count) { this.count = count; return this; } /** - * Number of the resource instances in the list - * @return count The count of this {@link BckndobjectStoreSecretStatusResponse} instance. - **/ + * Number of the resource instances in the list + * @return count The count of this {@link BckndobjectStoreSecretStatusResponse} instance. + */ @Nonnull public Integer getCount() { return count; } /** - * Set the count of this {@link BckndobjectStoreSecretStatusResponse} instance. - * - * @param count Number of the resource instances in the list - */ + * Set the count of this {@link BckndobjectStoreSecretStatusResponse} instance. + * + * @param count Number of the resource instances in the list + */ public void setCount( @Nonnull final Integer count) { this.count = count; } /** - * Set the resources of this {@link BckndobjectStoreSecretStatusResponse} instance and return the same instance. - * - * @param resources The resources of this {@link BckndobjectStoreSecretStatusResponse} - * @return The same instance of this {@link BckndobjectStoreSecretStatusResponse} class - */ + * Set the resources of this {@link BckndobjectStoreSecretStatusResponse} instance and return the same instance. + * + * @param resources The resources of this {@link BckndobjectStoreSecretStatusResponse} + * @return The same instance of this {@link BckndobjectStoreSecretStatusResponse} class + */ @Nonnull public BckndobjectStoreSecretStatusResponse resources(@Nonnull final List resources) { this.resources = resources; return this; } /** - * Add one resources instance to this {@link BckndobjectStoreSecretStatusResponse}. - * @param resourcesItem The resources that should be added - * @return The same instance of type {@link BckndobjectStoreSecretStatusResponse} - */ - @Nonnull public BckndobjectStoreSecretStatusResponse addresourcesItem( @Nonnull final BckndobjectStoreSecretStatus resourcesItem) { + * Add one resources instance to this {@link BckndobjectStoreSecretStatusResponse}. + * @param resourcesItem The resources that should be added + * @return The same instance of type {@link BckndobjectStoreSecretStatusResponse} + */ + @Nonnull public BckndobjectStoreSecretStatusResponse addResourcesItem( @Nonnull final BckndobjectStoreSecretStatus resourcesItem) { if (this.resources == null) { this.resources = new ArrayList<>(); } @@ -109,18 +108,18 @@ public void setCount( @Nonnull final Integer count) { } /** - * Get resources - * @return resources The resources of this {@link BckndobjectStoreSecretStatusResponse} instance. - **/ + * Get resources + * @return resources The resources of this {@link BckndobjectStoreSecretStatusResponse} instance. + */ @Nonnull public List getResources() { return resources; } /** - * Set the resources of this {@link BckndobjectStoreSecretStatusResponse} instance. - * - * @param resources The resources of this {@link BckndobjectStoreSecretStatusResponse} - */ + * Set the resources of this {@link BckndobjectStoreSecretStatusResponse} instance. + * + * @param resources The resources of this {@link BckndobjectStoreSecretStatusResponse} + */ public void setResources( @Nonnull final List resources) { this.resources = resources; } @@ -203,5 +202,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndobjectStoreSecretWithSensitiveDataRequest.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndobjectStoreSecretWithSensitiveDataRequest.java index b9f39145c..0ada2c761 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndobjectStoreSecretWithSensitiveDataRequest.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndobjectStoreSecretWithSensitiveDataRequest.java @@ -38,7 +38,6 @@ /** * This represents all the meta-data and extra information to be stored as a k8-secret */ - // CHECKSTYLE:OFF public class BckndobjectStoreSecretWithSensitiveDataRequest // CHECKSTYLE:ON @@ -75,253 +74,253 @@ public class BckndobjectStoreSecretWithSensitiveDataRequest private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the name of this {@link BckndobjectStoreSecretWithSensitiveDataRequest} instance and return the same instance. - * - * @param name Name of the object store for the secret object to be created. Can be used later on check for existence of the secret. - * @return The same instance of this {@link BckndobjectStoreSecretWithSensitiveDataRequest} class - */ + * Set the name of this {@link BckndobjectStoreSecretWithSensitiveDataRequest} instance and return the same instance. + * + * @param name Name of the object store for the secret object to be created. Can be used later on check for existence of the secret. + * @return The same instance of this {@link BckndobjectStoreSecretWithSensitiveDataRequest} class + */ @Nonnull public BckndobjectStoreSecretWithSensitiveDataRequest name(@Nonnull final String name) { this.name = name; return this; } /** - * Name of the object store for the secret object to be created. Can be used later on check for existence of the secret. - * @return name The name of this {@link BckndobjectStoreSecretWithSensitiveDataRequest} instance. - **/ + * Name of the object store for the secret object to be created. Can be used later on check for existence of the secret. + * @return name The name of this {@link BckndobjectStoreSecretWithSensitiveDataRequest} instance. + */ @Nonnull public String getName() { return name; } /** - * Set the name of this {@link BckndobjectStoreSecretWithSensitiveDataRequest} instance. - * - * @param name Name of the object store for the secret object to be created. Can be used later on check for existence of the secret. - */ + * Set the name of this {@link BckndobjectStoreSecretWithSensitiveDataRequest} instance. + * + * @param name Name of the object store for the secret object to be created. Can be used later on check for existence of the secret. + */ public void setName( @Nonnull final String name) { this.name = name; } /** - * Set the type of this {@link BckndobjectStoreSecretWithSensitiveDataRequest} instance and return the same instance. - * - * @param type Storage type e.g. S3, GCS,... - * @return The same instance of this {@link BckndobjectStoreSecretWithSensitiveDataRequest} class - */ + * Set the type of this {@link BckndobjectStoreSecretWithSensitiveDataRequest} instance and return the same instance. + * + * @param type Storage type e.g. S3, GCS,... + * @return The same instance of this {@link BckndobjectStoreSecretWithSensitiveDataRequest} class + */ @Nonnull public BckndobjectStoreSecretWithSensitiveDataRequest type(@Nonnull final String type) { this.type = type; return this; } /** - * Storage type e.g. S3, GCS,... - * @return type The type of this {@link BckndobjectStoreSecretWithSensitiveDataRequest} instance. - **/ + * Storage type e.g. S3, GCS,... + * @return type The type of this {@link BckndobjectStoreSecretWithSensitiveDataRequest} instance. + */ @Nonnull public String getType() { return type; } /** - * Set the type of this {@link BckndobjectStoreSecretWithSensitiveDataRequest} instance. - * - * @param type Storage type e.g. S3, GCS,... - */ + * Set the type of this {@link BckndobjectStoreSecretWithSensitiveDataRequest} instance. + * + * @param type Storage type e.g. S3, GCS,... + */ public void setType( @Nonnull final String type) { this.type = type; } /** - * Set the bucket of this {@link BckndobjectStoreSecretWithSensitiveDataRequest} instance and return the same instance. - * - * @param bucket Bucket to be used - * @return The same instance of this {@link BckndobjectStoreSecretWithSensitiveDataRequest} class - */ + * Set the bucket of this {@link BckndobjectStoreSecretWithSensitiveDataRequest} instance and return the same instance. + * + * @param bucket Bucket to be used + * @return The same instance of this {@link BckndobjectStoreSecretWithSensitiveDataRequest} class + */ @Nonnull public BckndobjectStoreSecretWithSensitiveDataRequest bucket(@Nonnull final String bucket) { this.bucket = bucket; return this; } /** - * Bucket to be used - * @return bucket The bucket of this {@link BckndobjectStoreSecretWithSensitiveDataRequest} instance. - **/ + * Bucket to be used + * @return bucket The bucket of this {@link BckndobjectStoreSecretWithSensitiveDataRequest} instance. + */ @Nonnull public String getBucket() { return bucket; } /** - * Set the bucket of this {@link BckndobjectStoreSecretWithSensitiveDataRequest} instance. - * - * @param bucket Bucket to be used - */ + * Set the bucket of this {@link BckndobjectStoreSecretWithSensitiveDataRequest} instance. + * + * @param bucket Bucket to be used + */ public void setBucket( @Nonnull final String bucket) { this.bucket = bucket; } /** - * Set the endpoint of this {@link BckndobjectStoreSecretWithSensitiveDataRequest} instance and return the same instance. - * - * @param endpoint Optional parameter - URL of the storage server (S3 only) - * @return The same instance of this {@link BckndobjectStoreSecretWithSensitiveDataRequest} class - */ + * Set the endpoint of this {@link BckndobjectStoreSecretWithSensitiveDataRequest} instance and return the same instance. + * + * @param endpoint Optional parameter - URL of the storage server (S3 only) + * @return The same instance of this {@link BckndobjectStoreSecretWithSensitiveDataRequest} class + */ @Nonnull public BckndobjectStoreSecretWithSensitiveDataRequest endpoint(@Nonnull final String endpoint) { this.endpoint = endpoint; return this; } /** - * Optional parameter - URL of the storage server (S3 only) - * @return endpoint The endpoint of this {@link BckndobjectStoreSecretWithSensitiveDataRequest} instance. - **/ + * Optional parameter - URL of the storage server (S3 only) + * @return endpoint The endpoint of this {@link BckndobjectStoreSecretWithSensitiveDataRequest} instance. + */ @Nonnull public String getEndpoint() { return endpoint; } /** - * Set the endpoint of this {@link BckndobjectStoreSecretWithSensitiveDataRequest} instance. - * - * @param endpoint Optional parameter - URL of the storage server (S3 only) - */ + * Set the endpoint of this {@link BckndobjectStoreSecretWithSensitiveDataRequest} instance. + * + * @param endpoint Optional parameter - URL of the storage server (S3 only) + */ public void setEndpoint( @Nonnull final String endpoint) { this.endpoint = endpoint; } /** - * Set the region of this {@link BckndobjectStoreSecretWithSensitiveDataRequest} instance and return the same instance. - * - * @param region Optional parameter - Region of the storage server (S3 only) - * @return The same instance of this {@link BckndobjectStoreSecretWithSensitiveDataRequest} class - */ + * Set the region of this {@link BckndobjectStoreSecretWithSensitiveDataRequest} instance and return the same instance. + * + * @param region Optional parameter - Region of the storage server (S3 only) + * @return The same instance of this {@link BckndobjectStoreSecretWithSensitiveDataRequest} class + */ @Nonnull public BckndobjectStoreSecretWithSensitiveDataRequest region(@Nonnull final String region) { this.region = region; return this; } /** - * Optional parameter - Region of the storage server (S3 only) - * @return region The region of this {@link BckndobjectStoreSecretWithSensitiveDataRequest} instance. - **/ + * Optional parameter - Region of the storage server (S3 only) + * @return region The region of this {@link BckndobjectStoreSecretWithSensitiveDataRequest} instance. + */ @Nonnull public String getRegion() { return region; } /** - * Set the region of this {@link BckndobjectStoreSecretWithSensitiveDataRequest} instance. - * - * @param region Optional parameter - Region of the storage server (S3 only) - */ + * Set the region of this {@link BckndobjectStoreSecretWithSensitiveDataRequest} instance. + * + * @param region Optional parameter - Region of the storage server (S3 only) + */ public void setRegion( @Nonnull final String region) { this.region = region; } /** - * Set the pathPrefix of this {@link BckndobjectStoreSecretWithSensitiveDataRequest} instance and return the same instance. - * - * @param pathPrefix prefix folder to be added to storage path - * @return The same instance of this {@link BckndobjectStoreSecretWithSensitiveDataRequest} class - */ + * Set the pathPrefix of this {@link BckndobjectStoreSecretWithSensitiveDataRequest} instance and return the same instance. + * + * @param pathPrefix prefix folder to be added to storage path + * @return The same instance of this {@link BckndobjectStoreSecretWithSensitiveDataRequest} class + */ @Nonnull public BckndobjectStoreSecretWithSensitiveDataRequest pathPrefix(@Nonnull final String pathPrefix) { this.pathPrefix = pathPrefix; return this; } /** - * prefix folder to be added to storage path - * @return pathPrefix The pathPrefix of this {@link BckndobjectStoreSecretWithSensitiveDataRequest} instance. - **/ + * prefix folder to be added to storage path + * @return pathPrefix The pathPrefix of this {@link BckndobjectStoreSecretWithSensitiveDataRequest} instance. + */ @Nonnull public String getPathPrefix() { return pathPrefix; } /** - * Set the pathPrefix of this {@link BckndobjectStoreSecretWithSensitiveDataRequest} instance. - * - * @param pathPrefix prefix folder to be added to storage path - */ + * Set the pathPrefix of this {@link BckndobjectStoreSecretWithSensitiveDataRequest} instance. + * + * @param pathPrefix prefix folder to be added to storage path + */ public void setPathPrefix( @Nonnull final String pathPrefix) { this.pathPrefix = pathPrefix; } /** - * Set the verifyssl of this {@link BckndobjectStoreSecretWithSensitiveDataRequest} instance and return the same instance. - * - * @param verifyssl 0, 1 flag for the KF-serving annotation - serving.kubeflow.org/s3-verifyssl - * @return The same instance of this {@link BckndobjectStoreSecretWithSensitiveDataRequest} class - */ + * Set the verifyssl of this {@link BckndobjectStoreSecretWithSensitiveDataRequest} instance and return the same instance. + * + * @param verifyssl 0, 1 flag for the KF-serving annotation - serving.kubeflow.org/s3-verifyssl + * @return The same instance of this {@link BckndobjectStoreSecretWithSensitiveDataRequest} class + */ @Nonnull public BckndobjectStoreSecretWithSensitiveDataRequest verifyssl(@Nonnull final String verifyssl) { this.verifyssl = verifyssl; return this; } /** - * 0, 1 flag for the KF-serving annotation - serving.kubeflow.org/s3-verifyssl - * @return verifyssl The verifyssl of this {@link BckndobjectStoreSecretWithSensitiveDataRequest} instance. - **/ + * 0, 1 flag for the KF-serving annotation - serving.kubeflow.org/s3-verifyssl + * @return verifyssl The verifyssl of this {@link BckndobjectStoreSecretWithSensitiveDataRequest} instance. + */ @Nonnull public String getVerifyssl() { return verifyssl; } /** - * Set the verifyssl of this {@link BckndobjectStoreSecretWithSensitiveDataRequest} instance. - * - * @param verifyssl 0, 1 flag for the KF-serving annotation - serving.kubeflow.org/s3-verifyssl - */ + * Set the verifyssl of this {@link BckndobjectStoreSecretWithSensitiveDataRequest} instance. + * + * @param verifyssl 0, 1 flag for the KF-serving annotation - serving.kubeflow.org/s3-verifyssl + */ public void setVerifyssl( @Nonnull final String verifyssl) { this.verifyssl = verifyssl; } /** - * Set the usehttps of this {@link BckndobjectStoreSecretWithSensitiveDataRequest} instance and return the same instance. - * - * @param usehttps 0, 1 flag for KF-serving annotations - serving.kubeflow.org/s3-usehttps - * @return The same instance of this {@link BckndobjectStoreSecretWithSensitiveDataRequest} class - */ + * Set the usehttps of this {@link BckndobjectStoreSecretWithSensitiveDataRequest} instance and return the same instance. + * + * @param usehttps 0, 1 flag for KF-serving annotations - serving.kubeflow.org/s3-usehttps + * @return The same instance of this {@link BckndobjectStoreSecretWithSensitiveDataRequest} class + */ @Nonnull public BckndobjectStoreSecretWithSensitiveDataRequest usehttps(@Nonnull final String usehttps) { this.usehttps = usehttps; return this; } /** - * 0, 1 flag for KF-serving annotations - serving.kubeflow.org/s3-usehttps - * @return usehttps The usehttps of this {@link BckndobjectStoreSecretWithSensitiveDataRequest} instance. - **/ + * 0, 1 flag for KF-serving annotations - serving.kubeflow.org/s3-usehttps + * @return usehttps The usehttps of this {@link BckndobjectStoreSecretWithSensitiveDataRequest} instance. + */ @Nonnull public String getUsehttps() { return usehttps; } /** - * Set the usehttps of this {@link BckndobjectStoreSecretWithSensitiveDataRequest} instance. - * - * @param usehttps 0, 1 flag for KF-serving annotations - serving.kubeflow.org/s3-usehttps - */ + * Set the usehttps of this {@link BckndobjectStoreSecretWithSensitiveDataRequest} instance. + * + * @param usehttps 0, 1 flag for KF-serving annotations - serving.kubeflow.org/s3-usehttps + */ public void setUsehttps( @Nonnull final String usehttps) { this.usehttps = usehttps; } /** - * Set the data of this {@link BckndobjectStoreSecretWithSensitiveDataRequest} instance and return the same instance. - * - * @param data key:value pairs of data - * @return The same instance of this {@link BckndobjectStoreSecretWithSensitiveDataRequest} class - */ + * Set the data of this {@link BckndobjectStoreSecretWithSensitiveDataRequest} instance and return the same instance. + * + * @param data key:value pairs of data + * @return The same instance of this {@link BckndobjectStoreSecretWithSensitiveDataRequest} class + */ @Nonnull public BckndobjectStoreSecretWithSensitiveDataRequest data(@Nonnull final Object data) { this.data = data; return this; } /** - * key:value pairs of data - * @return data The data of this {@link BckndobjectStoreSecretWithSensitiveDataRequest} instance. - **/ + * key:value pairs of data + * @return data The data of this {@link BckndobjectStoreSecretWithSensitiveDataRequest} instance. + */ @Nonnull public Object getData() { return data; } /** - * Set the data of this {@link BckndobjectStoreSecretWithSensitiveDataRequest} instance. - * - * @param data key:value pairs of data - */ + * Set the data of this {@link BckndobjectStoreSecretWithSensitiveDataRequest} instance. + * + * @param data key:value pairs of data + */ public void setData( @Nonnull final Object data) { this.data = data; } @@ -418,5 +417,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndobjectStoreSecretWithSensitiveDataRequestForPostCall.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndobjectStoreSecretWithSensitiveDataRequestForPostCall.java index 12a198d31..9d7ee31c6 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndobjectStoreSecretWithSensitiveDataRequestForPostCall.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/BckndobjectStoreSecretWithSensitiveDataRequestForPostCall.java @@ -38,7 +38,6 @@ /** * This represents all the meta-data and extra information to be stored as a k8-secret */ - // CHECKSTYLE:OFF public class BckndobjectStoreSecretWithSensitiveDataRequestForPostCall // CHECKSTYLE:ON @@ -75,253 +74,253 @@ public class BckndobjectStoreSecretWithSensitiveDataRequestForPostCall private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the name of this {@link BckndobjectStoreSecretWithSensitiveDataRequestForPostCall} instance and return the same instance. - * - * @param name Name of the object store for the secret object to be created. Can be used later on check for existence of the secret. - * @return The same instance of this {@link BckndobjectStoreSecretWithSensitiveDataRequestForPostCall} class - */ + * Set the name of this {@link BckndobjectStoreSecretWithSensitiveDataRequestForPostCall} instance and return the same instance. + * + * @param name Name of the object store for the secret object to be created. Can be used later on check for existence of the secret. + * @return The same instance of this {@link BckndobjectStoreSecretWithSensitiveDataRequestForPostCall} class + */ @Nonnull public BckndobjectStoreSecretWithSensitiveDataRequestForPostCall name(@Nonnull final String name) { this.name = name; return this; } /** - * Name of the object store for the secret object to be created. Can be used later on check for existence of the secret. - * @return name The name of this {@link BckndobjectStoreSecretWithSensitiveDataRequestForPostCall} instance. - **/ + * Name of the object store for the secret object to be created. Can be used later on check for existence of the secret. + * @return name The name of this {@link BckndobjectStoreSecretWithSensitiveDataRequestForPostCall} instance. + */ @Nonnull public String getName() { return name; } /** - * Set the name of this {@link BckndobjectStoreSecretWithSensitiveDataRequestForPostCall} instance. - * - * @param name Name of the object store for the secret object to be created. Can be used later on check for existence of the secret. - */ + * Set the name of this {@link BckndobjectStoreSecretWithSensitiveDataRequestForPostCall} instance. + * + * @param name Name of the object store for the secret object to be created. Can be used later on check for existence of the secret. + */ public void setName( @Nonnull final String name) { this.name = name; } /** - * Set the type of this {@link BckndobjectStoreSecretWithSensitiveDataRequestForPostCall} instance and return the same instance. - * - * @param type Storage type e.g. S3, GCS,... - * @return The same instance of this {@link BckndobjectStoreSecretWithSensitiveDataRequestForPostCall} class - */ + * Set the type of this {@link BckndobjectStoreSecretWithSensitiveDataRequestForPostCall} instance and return the same instance. + * + * @param type Storage type e.g. S3, GCS,... + * @return The same instance of this {@link BckndobjectStoreSecretWithSensitiveDataRequestForPostCall} class + */ @Nonnull public BckndobjectStoreSecretWithSensitiveDataRequestForPostCall type(@Nonnull final String type) { this.type = type; return this; } /** - * Storage type e.g. S3, GCS,... - * @return type The type of this {@link BckndobjectStoreSecretWithSensitiveDataRequestForPostCall} instance. - **/ + * Storage type e.g. S3, GCS,... + * @return type The type of this {@link BckndobjectStoreSecretWithSensitiveDataRequestForPostCall} instance. + */ @Nonnull public String getType() { return type; } /** - * Set the type of this {@link BckndobjectStoreSecretWithSensitiveDataRequestForPostCall} instance. - * - * @param type Storage type e.g. S3, GCS,... - */ + * Set the type of this {@link BckndobjectStoreSecretWithSensitiveDataRequestForPostCall} instance. + * + * @param type Storage type e.g. S3, GCS,... + */ public void setType( @Nonnull final String type) { this.type = type; } /** - * Set the bucket of this {@link BckndobjectStoreSecretWithSensitiveDataRequestForPostCall} instance and return the same instance. - * - * @param bucket Bucket to be used - * @return The same instance of this {@link BckndobjectStoreSecretWithSensitiveDataRequestForPostCall} class - */ + * Set the bucket of this {@link BckndobjectStoreSecretWithSensitiveDataRequestForPostCall} instance and return the same instance. + * + * @param bucket Bucket to be used + * @return The same instance of this {@link BckndobjectStoreSecretWithSensitiveDataRequestForPostCall} class + */ @Nonnull public BckndobjectStoreSecretWithSensitiveDataRequestForPostCall bucket(@Nonnull final String bucket) { this.bucket = bucket; return this; } /** - * Bucket to be used - * @return bucket The bucket of this {@link BckndobjectStoreSecretWithSensitiveDataRequestForPostCall} instance. - **/ + * Bucket to be used + * @return bucket The bucket of this {@link BckndobjectStoreSecretWithSensitiveDataRequestForPostCall} instance. + */ @Nonnull public String getBucket() { return bucket; } /** - * Set the bucket of this {@link BckndobjectStoreSecretWithSensitiveDataRequestForPostCall} instance. - * - * @param bucket Bucket to be used - */ + * Set the bucket of this {@link BckndobjectStoreSecretWithSensitiveDataRequestForPostCall} instance. + * + * @param bucket Bucket to be used + */ public void setBucket( @Nonnull final String bucket) { this.bucket = bucket; } /** - * Set the endpoint of this {@link BckndobjectStoreSecretWithSensitiveDataRequestForPostCall} instance and return the same instance. - * - * @param endpoint Optional parameter - URL of the storage server (S3 only) - * @return The same instance of this {@link BckndobjectStoreSecretWithSensitiveDataRequestForPostCall} class - */ + * Set the endpoint of this {@link BckndobjectStoreSecretWithSensitiveDataRequestForPostCall} instance and return the same instance. + * + * @param endpoint Optional parameter - URL of the storage server (S3 only) + * @return The same instance of this {@link BckndobjectStoreSecretWithSensitiveDataRequestForPostCall} class + */ @Nonnull public BckndobjectStoreSecretWithSensitiveDataRequestForPostCall endpoint(@Nonnull final String endpoint) { this.endpoint = endpoint; return this; } /** - * Optional parameter - URL of the storage server (S3 only) - * @return endpoint The endpoint of this {@link BckndobjectStoreSecretWithSensitiveDataRequestForPostCall} instance. - **/ + * Optional parameter - URL of the storage server (S3 only) + * @return endpoint The endpoint of this {@link BckndobjectStoreSecretWithSensitiveDataRequestForPostCall} instance. + */ @Nonnull public String getEndpoint() { return endpoint; } /** - * Set the endpoint of this {@link BckndobjectStoreSecretWithSensitiveDataRequestForPostCall} instance. - * - * @param endpoint Optional parameter - URL of the storage server (S3 only) - */ + * Set the endpoint of this {@link BckndobjectStoreSecretWithSensitiveDataRequestForPostCall} instance. + * + * @param endpoint Optional parameter - URL of the storage server (S3 only) + */ public void setEndpoint( @Nonnull final String endpoint) { this.endpoint = endpoint; } /** - * Set the region of this {@link BckndobjectStoreSecretWithSensitiveDataRequestForPostCall} instance and return the same instance. - * - * @param region Optional parameter - Region of the storage server (S3 only) - * @return The same instance of this {@link BckndobjectStoreSecretWithSensitiveDataRequestForPostCall} class - */ + * Set the region of this {@link BckndobjectStoreSecretWithSensitiveDataRequestForPostCall} instance and return the same instance. + * + * @param region Optional parameter - Region of the storage server (S3 only) + * @return The same instance of this {@link BckndobjectStoreSecretWithSensitiveDataRequestForPostCall} class + */ @Nonnull public BckndobjectStoreSecretWithSensitiveDataRequestForPostCall region(@Nonnull final String region) { this.region = region; return this; } /** - * Optional parameter - Region of the storage server (S3 only) - * @return region The region of this {@link BckndobjectStoreSecretWithSensitiveDataRequestForPostCall} instance. - **/ + * Optional parameter - Region of the storage server (S3 only) + * @return region The region of this {@link BckndobjectStoreSecretWithSensitiveDataRequestForPostCall} instance. + */ @Nonnull public String getRegion() { return region; } /** - * Set the region of this {@link BckndobjectStoreSecretWithSensitiveDataRequestForPostCall} instance. - * - * @param region Optional parameter - Region of the storage server (S3 only) - */ + * Set the region of this {@link BckndobjectStoreSecretWithSensitiveDataRequestForPostCall} instance. + * + * @param region Optional parameter - Region of the storage server (S3 only) + */ public void setRegion( @Nonnull final String region) { this.region = region; } /** - * Set the pathPrefix of this {@link BckndobjectStoreSecretWithSensitiveDataRequestForPostCall} instance and return the same instance. - * - * @param pathPrefix prefix folder to be added to storage path - * @return The same instance of this {@link BckndobjectStoreSecretWithSensitiveDataRequestForPostCall} class - */ + * Set the pathPrefix of this {@link BckndobjectStoreSecretWithSensitiveDataRequestForPostCall} instance and return the same instance. + * + * @param pathPrefix prefix folder to be added to storage path + * @return The same instance of this {@link BckndobjectStoreSecretWithSensitiveDataRequestForPostCall} class + */ @Nonnull public BckndobjectStoreSecretWithSensitiveDataRequestForPostCall pathPrefix(@Nonnull final String pathPrefix) { this.pathPrefix = pathPrefix; return this; } /** - * prefix folder to be added to storage path - * @return pathPrefix The pathPrefix of this {@link BckndobjectStoreSecretWithSensitiveDataRequestForPostCall} instance. - **/ + * prefix folder to be added to storage path + * @return pathPrefix The pathPrefix of this {@link BckndobjectStoreSecretWithSensitiveDataRequestForPostCall} instance. + */ @Nonnull public String getPathPrefix() { return pathPrefix; } /** - * Set the pathPrefix of this {@link BckndobjectStoreSecretWithSensitiveDataRequestForPostCall} instance. - * - * @param pathPrefix prefix folder to be added to storage path - */ + * Set the pathPrefix of this {@link BckndobjectStoreSecretWithSensitiveDataRequestForPostCall} instance. + * + * @param pathPrefix prefix folder to be added to storage path + */ public void setPathPrefix( @Nonnull final String pathPrefix) { this.pathPrefix = pathPrefix; } /** - * Set the verifyssl of this {@link BckndobjectStoreSecretWithSensitiveDataRequestForPostCall} instance and return the same instance. - * - * @param verifyssl 0, 1 flag for the KF-serving annotation - serving.kubeflow.org/s3-verifyssl - * @return The same instance of this {@link BckndobjectStoreSecretWithSensitiveDataRequestForPostCall} class - */ + * Set the verifyssl of this {@link BckndobjectStoreSecretWithSensitiveDataRequestForPostCall} instance and return the same instance. + * + * @param verifyssl 0, 1 flag for the KF-serving annotation - serving.kubeflow.org/s3-verifyssl + * @return The same instance of this {@link BckndobjectStoreSecretWithSensitiveDataRequestForPostCall} class + */ @Nonnull public BckndobjectStoreSecretWithSensitiveDataRequestForPostCall verifyssl(@Nonnull final String verifyssl) { this.verifyssl = verifyssl; return this; } /** - * 0, 1 flag for the KF-serving annotation - serving.kubeflow.org/s3-verifyssl - * @return verifyssl The verifyssl of this {@link BckndobjectStoreSecretWithSensitiveDataRequestForPostCall} instance. - **/ + * 0, 1 flag for the KF-serving annotation - serving.kubeflow.org/s3-verifyssl + * @return verifyssl The verifyssl of this {@link BckndobjectStoreSecretWithSensitiveDataRequestForPostCall} instance. + */ @Nonnull public String getVerifyssl() { return verifyssl; } /** - * Set the verifyssl of this {@link BckndobjectStoreSecretWithSensitiveDataRequestForPostCall} instance. - * - * @param verifyssl 0, 1 flag for the KF-serving annotation - serving.kubeflow.org/s3-verifyssl - */ + * Set the verifyssl of this {@link BckndobjectStoreSecretWithSensitiveDataRequestForPostCall} instance. + * + * @param verifyssl 0, 1 flag for the KF-serving annotation - serving.kubeflow.org/s3-verifyssl + */ public void setVerifyssl( @Nonnull final String verifyssl) { this.verifyssl = verifyssl; } /** - * Set the usehttps of this {@link BckndobjectStoreSecretWithSensitiveDataRequestForPostCall} instance and return the same instance. - * - * @param usehttps 0, 1 flag for KF-serving annotations - serving.kubeflow.org/s3-usehttps - * @return The same instance of this {@link BckndobjectStoreSecretWithSensitiveDataRequestForPostCall} class - */ + * Set the usehttps of this {@link BckndobjectStoreSecretWithSensitiveDataRequestForPostCall} instance and return the same instance. + * + * @param usehttps 0, 1 flag for KF-serving annotations - serving.kubeflow.org/s3-usehttps + * @return The same instance of this {@link BckndobjectStoreSecretWithSensitiveDataRequestForPostCall} class + */ @Nonnull public BckndobjectStoreSecretWithSensitiveDataRequestForPostCall usehttps(@Nonnull final String usehttps) { this.usehttps = usehttps; return this; } /** - * 0, 1 flag for KF-serving annotations - serving.kubeflow.org/s3-usehttps - * @return usehttps The usehttps of this {@link BckndobjectStoreSecretWithSensitiveDataRequestForPostCall} instance. - **/ + * 0, 1 flag for KF-serving annotations - serving.kubeflow.org/s3-usehttps + * @return usehttps The usehttps of this {@link BckndobjectStoreSecretWithSensitiveDataRequestForPostCall} instance. + */ @Nonnull public String getUsehttps() { return usehttps; } /** - * Set the usehttps of this {@link BckndobjectStoreSecretWithSensitiveDataRequestForPostCall} instance. - * - * @param usehttps 0, 1 flag for KF-serving annotations - serving.kubeflow.org/s3-usehttps - */ + * Set the usehttps of this {@link BckndobjectStoreSecretWithSensitiveDataRequestForPostCall} instance. + * + * @param usehttps 0, 1 flag for KF-serving annotations - serving.kubeflow.org/s3-usehttps + */ public void setUsehttps( @Nonnull final String usehttps) { this.usehttps = usehttps; } /** - * Set the data of this {@link BckndobjectStoreSecretWithSensitiveDataRequestForPostCall} instance and return the same instance. - * - * @param data key:value pairs of data - * @return The same instance of this {@link BckndobjectStoreSecretWithSensitiveDataRequestForPostCall} class - */ + * Set the data of this {@link BckndobjectStoreSecretWithSensitiveDataRequestForPostCall} instance and return the same instance. + * + * @param data key:value pairs of data + * @return The same instance of this {@link BckndobjectStoreSecretWithSensitiveDataRequestForPostCall} class + */ @Nonnull public BckndobjectStoreSecretWithSensitiveDataRequestForPostCall data(@Nonnull final Object data) { this.data = data; return this; } /** - * key:value pairs of data - * @return data The data of this {@link BckndobjectStoreSecretWithSensitiveDataRequestForPostCall} instance. - **/ + * key:value pairs of data + * @return data The data of this {@link BckndobjectStoreSecretWithSensitiveDataRequestForPostCall} instance. + */ @Nonnull public Object getData() { return data; } /** - * Set the data of this {@link BckndobjectStoreSecretWithSensitiveDataRequestForPostCall} instance. - * - * @param data key:value pairs of data - */ + * Set the data of this {@link BckndobjectStoreSecretWithSensitiveDataRequestForPostCall} instance. + * + * @param data key:value pairs of data + */ public void setData( @Nonnull final Object data) { this.data = data; } @@ -418,5 +417,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/DSetError.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/DSetError.java index c95530be6..c325b981a 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/DSetError.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/DSetError.java @@ -42,7 +42,6 @@ /** * Error Response */ - // CHECKSTYLE:OFF public class DSetError // CHECKSTYLE:ON @@ -67,133 +66,133 @@ public class DSetError private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the code of this {@link DSetError} instance and return the same instance. - * - * @param code The code of this {@link DSetError} - * @return The same instance of this {@link DSetError} class - */ + * Set the code of this {@link DSetError} instance and return the same instance. + * + * @param code The code of this {@link DSetError} + * @return The same instance of this {@link DSetError} class + */ @Nonnull public DSetError code(@Nonnull final String code) { this.code = code; return this; } /** - * Get code - * @return code The code of this {@link DSetError} instance. - **/ + * Get code + * @return code The code of this {@link DSetError} instance. + */ @Nonnull public String getCode() { return code; } /** - * Set the code of this {@link DSetError} instance. - * - * @param code The code of this {@link DSetError} - */ + * Set the code of this {@link DSetError} instance. + * + * @param code The code of this {@link DSetError} + */ public void setCode( @Nonnull final String code) { this.code = code; } /** - * Set the message of this {@link DSetError} instance and return the same instance. - * - * @param message The message of this {@link DSetError} - * @return The same instance of this {@link DSetError} class - */ + * Set the message of this {@link DSetError} instance and return the same instance. + * + * @param message The message of this {@link DSetError} + * @return The same instance of this {@link DSetError} class + */ @Nonnull public DSetError message(@Nonnull final String message) { this.message = message; return this; } /** - * Get message - * @return message The message of this {@link DSetError} instance. - **/ + * Get message + * @return message The message of this {@link DSetError} instance. + */ @Nonnull public String getMessage() { return message; } /** - * Set the message of this {@link DSetError} instance. - * - * @param message The message of this {@link DSetError} - */ + * Set the message of this {@link DSetError} instance. + * + * @param message The message of this {@link DSetError} + */ public void setMessage( @Nonnull final String message) { this.message = message; } /** - * Set the target of this {@link DSetError} instance and return the same instance. - * - * @param target The target of this {@link DSetError} - * @return The same instance of this {@link DSetError} class - */ + * Set the target of this {@link DSetError} instance and return the same instance. + * + * @param target The target of this {@link DSetError} + * @return The same instance of this {@link DSetError} class + */ @Nonnull public DSetError target(@Nonnull final String target) { this.target = target; return this; } /** - * Get target - * @return target The target of this {@link DSetError} instance. - **/ + * Get target + * @return target The target of this {@link DSetError} instance. + */ @Nonnull public String getTarget() { return target; } /** - * Set the target of this {@link DSetError} instance. - * - * @param target The target of this {@link DSetError} - */ + * Set the target of this {@link DSetError} instance. + * + * @param target The target of this {@link DSetError} + */ public void setTarget( @Nonnull final String target) { this.target = target; } /** - * Set the requestId of this {@link DSetError} instance and return the same instance. - * - * @param requestId The requestId of this {@link DSetError} - * @return The same instance of this {@link DSetError} class - */ + * Set the requestId of this {@link DSetError} instance and return the same instance. + * + * @param requestId The requestId of this {@link DSetError} + * @return The same instance of this {@link DSetError} class + */ @Nonnull public DSetError requestId(@Nonnull final String requestId) { this.requestId = requestId; return this; } /** - * Get requestId - * @return requestId The requestId of this {@link DSetError} instance. - **/ + * Get requestId + * @return requestId The requestId of this {@link DSetError} instance. + */ @Nonnull public String getRequestId() { return requestId; } /** - * Set the requestId of this {@link DSetError} instance. - * - * @param requestId The requestId of this {@link DSetError} - */ + * Set the requestId of this {@link DSetError} instance. + * + * @param requestId The requestId of this {@link DSetError} + */ public void setRequestId( @Nonnull final String requestId) { this.requestId = requestId; } /** - * Set the details of this {@link DSetError} instance and return the same instance. - * - * @param details The details of this {@link DSetError} - * @return The same instance of this {@link DSetError} class - */ + * Set the details of this {@link DSetError} instance and return the same instance. + * + * @param details The details of this {@link DSetError} + * @return The same instance of this {@link DSetError} class + */ @Nonnull public DSetError details(@Nonnull final Set details) { this.details = details; return this; } /** - * Add one details instance to this {@link DSetError}. - * @param detailsItem The details that should be added - * @return The same instance of type {@link DSetError} - */ - @Nonnull public DSetError adddetailsItem( @Nonnull final DSetErrorDetailsInner detailsItem) { + * Add one details instance to this {@link DSetError}. + * @param detailsItem The details that should be added + * @return The same instance of type {@link DSetError} + */ + @Nonnull public DSetError addDetailsItem( @Nonnull final DSetErrorDetailsInner detailsItem) { if (this.details == null) { this.details = new LinkedHashSet<>(); } @@ -202,18 +201,18 @@ public void setRequestId( @Nonnull final String requestId) { } /** - * Get details - * @return details The details of this {@link DSetError} instance. - **/ + * Get details + * @return details The details of this {@link DSetError} instance. + */ @Nonnull public Set getDetails() { return details; } /** - * Set the details of this {@link DSetError} instance. - * - * @param details The details of this {@link DSetError} - */ + * Set the details of this {@link DSetError} instance. + * + * @param details The details of this {@link DSetError} + */ public void setDetails( @Nonnull final Set details) { this.details = details; } @@ -302,5 +301,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/DSetErrorDetailsInner.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/DSetErrorDetailsInner.java index c27122cfa..7dc3cc48b 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/DSetErrorDetailsInner.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/DSetErrorDetailsInner.java @@ -38,7 +38,6 @@ /** * DSetErrorDetailsInner */ - // CHECKSTYLE:OFF public class DSetErrorDetailsInner // CHECKSTYLE:ON @@ -54,57 +53,57 @@ public class DSetErrorDetailsInner private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the code of this {@link DSetErrorDetailsInner} instance and return the same instance. - * - * @param code The code of this {@link DSetErrorDetailsInner} - * @return The same instance of this {@link DSetErrorDetailsInner} class - */ + * Set the code of this {@link DSetErrorDetailsInner} instance and return the same instance. + * + * @param code The code of this {@link DSetErrorDetailsInner} + * @return The same instance of this {@link DSetErrorDetailsInner} class + */ @Nonnull public DSetErrorDetailsInner code(@Nonnull final String code) { this.code = code; return this; } /** - * Get code - * @return code The code of this {@link DSetErrorDetailsInner} instance. - **/ + * Get code + * @return code The code of this {@link DSetErrorDetailsInner} instance. + */ @Nonnull public String getCode() { return code; } /** - * Set the code of this {@link DSetErrorDetailsInner} instance. - * - * @param code The code of this {@link DSetErrorDetailsInner} - */ + * Set the code of this {@link DSetErrorDetailsInner} instance. + * + * @param code The code of this {@link DSetErrorDetailsInner} + */ public void setCode( @Nonnull final String code) { this.code = code; } /** - * Set the message of this {@link DSetErrorDetailsInner} instance and return the same instance. - * - * @param message The message of this {@link DSetErrorDetailsInner} - * @return The same instance of this {@link DSetErrorDetailsInner} class - */ + * Set the message of this {@link DSetErrorDetailsInner} instance and return the same instance. + * + * @param message The message of this {@link DSetErrorDetailsInner} + * @return The same instance of this {@link DSetErrorDetailsInner} class + */ @Nonnull public DSetErrorDetailsInner message(@Nonnull final String message) { this.message = message; return this; } /** - * Get message - * @return message The message of this {@link DSetErrorDetailsInner} instance. - **/ + * Get message + * @return message The message of this {@link DSetErrorDetailsInner} instance. + */ @Nonnull public String getMessage() { return message; } /** - * Set the message of this {@link DSetErrorDetailsInner} instance. - * - * @param message The message of this {@link DSetErrorDetailsInner} - */ + * Set the message of this {@link DSetErrorDetailsInner} instance. + * + * @param message The message of this {@link DSetErrorDetailsInner} + */ public void setMessage( @Nonnull final String message) { this.message = message; } @@ -187,5 +186,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/DSetFileCreationResponse.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/DSetFileCreationResponse.java index 892999b40..0fbc8e7ed 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/DSetFileCreationResponse.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/DSetFileCreationResponse.java @@ -38,7 +38,6 @@ /** * Response for successful file creation */ - // CHECKSTYLE:OFF public class DSetFileCreationResponse // CHECKSTYLE:ON @@ -54,57 +53,57 @@ public class DSetFileCreationResponse private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the message of this {@link DSetFileCreationResponse} instance and return the same instance. - * - * @param message File creation response message - * @return The same instance of this {@link DSetFileCreationResponse} class - */ + * Set the message of this {@link DSetFileCreationResponse} instance and return the same instance. + * + * @param message File creation response message + * @return The same instance of this {@link DSetFileCreationResponse} class + */ @Nonnull public DSetFileCreationResponse message(@Nonnull final String message) { this.message = message; return this; } /** - * File creation response message - * @return message The message of this {@link DSetFileCreationResponse} instance. - **/ + * File creation response message + * @return message The message of this {@link DSetFileCreationResponse} instance. + */ @Nonnull public String getMessage() { return message; } /** - * Set the message of this {@link DSetFileCreationResponse} instance. - * - * @param message File creation response message - */ + * Set the message of this {@link DSetFileCreationResponse} instance. + * + * @param message File creation response message + */ public void setMessage( @Nonnull final String message) { this.message = message; } /** - * Set the url of this {@link DSetFileCreationResponse} instance and return the same instance. - * - * @param url The url of this {@link DSetFileCreationResponse} - * @return The same instance of this {@link DSetFileCreationResponse} class - */ + * Set the url of this {@link DSetFileCreationResponse} instance and return the same instance. + * + * @param url The url of this {@link DSetFileCreationResponse} + * @return The same instance of this {@link DSetFileCreationResponse} class + */ @Nonnull public DSetFileCreationResponse url(@Nonnull final String url) { this.url = url; return this; } /** - * Get url - * @return url The url of this {@link DSetFileCreationResponse} instance. - **/ + * Get url + * @return url The url of this {@link DSetFileCreationResponse} instance. + */ @Nonnull public String getUrl() { return url; } /** - * Set the url of this {@link DSetFileCreationResponse} instance. - * - * @param url The url of this {@link DSetFileCreationResponse} - */ + * Set the url of this {@link DSetFileCreationResponse} instance. + * + * @param url The url of this {@link DSetFileCreationResponse} + */ public void setUrl( @Nonnull final String url) { this.url = url; } @@ -187,5 +186,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/FileDownload400Response.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/FileDownload400Response.java index abf5ae29a..52bd52cfa 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/FileDownload400Response.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/FileDownload400Response.java @@ -39,7 +39,6 @@ /** * FileDownload400Response */ - // CHECKSTYLE:OFF public class FileDownload400Response // CHECKSTYLE:ON @@ -52,29 +51,29 @@ public class FileDownload400Response private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the error of this {@link FileDownload400Response} instance and return the same instance. - * - * @param error The error of this {@link FileDownload400Response} - * @return The same instance of this {@link FileDownload400Response} class - */ + * Set the error of this {@link FileDownload400Response} instance and return the same instance. + * + * @param error The error of this {@link FileDownload400Response} + * @return The same instance of this {@link FileDownload400Response} class + */ @Nonnull public FileDownload400Response error(@Nonnull final DSetError error) { this.error = error; return this; } /** - * Get error - * @return error The error of this {@link FileDownload400Response} instance. - **/ + * Get error + * @return error The error of this {@link FileDownload400Response} instance. + */ @Nonnull public DSetError getError() { return error; } /** - * Set the error of this {@link FileDownload400Response} instance. - * - * @param error The error of this {@link FileDownload400Response} - */ + * Set the error of this {@link FileDownload400Response} instance. + * + * @param error The error of this {@link FileDownload400Response} + */ public void setError( @Nonnull final DSetError error) { this.error = error; } @@ -155,5 +154,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/KpiApiError.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/KpiApiError.java index aef340ba0..1f7d652a6 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/KpiApiError.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/KpiApiError.java @@ -38,7 +38,6 @@ /** * KpiApiError */ - // CHECKSTYLE:OFF public class KpiApiError // CHECKSTYLE:ON @@ -63,141 +62,141 @@ public class KpiApiError private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the code of this {@link KpiApiError} instance and return the same instance. - * - * @param code Descriptive error code (not http status code) - * @return The same instance of this {@link KpiApiError} class - */ + * Set the code of this {@link KpiApiError} instance and return the same instance. + * + * @param code Descriptive error code (not http status code) + * @return The same instance of this {@link KpiApiError} class + */ @Nonnull public KpiApiError code(@Nonnull final String code) { this.code = code; return this; } /** - * Descriptive error code (not http status code) - * @return code The code of this {@link KpiApiError} instance. - **/ + * Descriptive error code (not http status code) + * @return code The code of this {@link KpiApiError} instance. + */ @Nonnull public String getCode() { return code; } /** - * Set the code of this {@link KpiApiError} instance. - * - * @param code Descriptive error code (not http status code) - */ + * Set the code of this {@link KpiApiError} instance. + * + * @param code Descriptive error code (not http status code) + */ public void setCode( @Nonnull final String code) { this.code = code; } /** - * Set the message of this {@link KpiApiError} instance and return the same instance. - * - * @param message Plaintext error description - * @return The same instance of this {@link KpiApiError} class - */ + * Set the message of this {@link KpiApiError} instance and return the same instance. + * + * @param message Plaintext error description + * @return The same instance of this {@link KpiApiError} class + */ @Nonnull public KpiApiError message(@Nonnull final String message) { this.message = message; return this; } /** - * Plaintext error description - * @return message The message of this {@link KpiApiError} instance. - **/ + * Plaintext error description + * @return message The message of this {@link KpiApiError} instance. + */ @Nonnull public String getMessage() { return message; } /** - * Set the message of this {@link KpiApiError} instance. - * - * @param message Plaintext error description - */ + * Set the message of this {@link KpiApiError} instance. + * + * @param message Plaintext error description + */ public void setMessage( @Nonnull final String message) { this.message = message; } /** - * Set the requestId of this {@link KpiApiError} instance and return the same instance. - * - * @param requestId ID of the individual request - * @return The same instance of this {@link KpiApiError} class - */ + * Set the requestId of this {@link KpiApiError} instance and return the same instance. + * + * @param requestId ID of the individual request + * @return The same instance of this {@link KpiApiError} class + */ @Nonnull public KpiApiError requestId(@Nonnull final String requestId) { this.requestId = requestId; return this; } /** - * ID of the individual request - * @return requestId The requestId of this {@link KpiApiError} instance. - **/ + * ID of the individual request + * @return requestId The requestId of this {@link KpiApiError} instance. + */ @Nonnull public String getRequestId() { return requestId; } /** - * Set the requestId of this {@link KpiApiError} instance. - * - * @param requestId ID of the individual request - */ + * Set the requestId of this {@link KpiApiError} instance. + * + * @param requestId ID of the individual request + */ public void setRequestId( @Nonnull final String requestId) { this.requestId = requestId; } /** - * Set the target of this {@link KpiApiError} instance and return the same instance. - * - * @param target Invoked URL - * @return The same instance of this {@link KpiApiError} class - */ + * Set the target of this {@link KpiApiError} instance and return the same instance. + * + * @param target Invoked URL + * @return The same instance of this {@link KpiApiError} class + */ @Nonnull public KpiApiError target(@Nonnull final String target) { this.target = target; return this; } /** - * Invoked URL - * @return target The target of this {@link KpiApiError} instance. - **/ + * Invoked URL + * @return target The target of this {@link KpiApiError} instance. + */ @Nonnull public String getTarget() { return target; } /** - * Set the target of this {@link KpiApiError} instance. - * - * @param target Invoked URL - */ + * Set the target of this {@link KpiApiError} instance. + * + * @param target Invoked URL + */ public void setTarget( @Nonnull final String target) { this.target = target; } /** - * Set the details of this {@link KpiApiError} instance and return the same instance. - * - * @param details Optional details of the error message - * @return The same instance of this {@link KpiApiError} class - */ + * Set the details of this {@link KpiApiError} instance and return the same instance. + * + * @param details Optional details of the error message + * @return The same instance of this {@link KpiApiError} class + */ @Nonnull public KpiApiError details(@Nonnull final Object details) { this.details = details; return this; } /** - * Optional details of the error message - * @return details The details of this {@link KpiApiError} instance. - **/ + * Optional details of the error message + * @return details The details of this {@link KpiApiError} instance. + */ @Nonnull public Object getDetails() { return details; } /** - * Set the details of this {@link KpiApiError} instance. - * - * @param details Optional details of the error message - */ + * Set the details of this {@link KpiApiError} instance. + * + * @param details Optional details of the error message + */ public void setDetails( @Nonnull final Object details) { this.details = details; } @@ -286,5 +285,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/KpiColumnName.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/KpiColumnName.java index 8857eb433..ed0d0b87f 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/KpiColumnName.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/KpiColumnName.java @@ -38,7 +38,7 @@ */ public enum KpiColumnName { - RESOURCEGROUP("ResourceGroup"), + RESOURCE_GROUP("ResourceGroup"), SCENARIO("Scenario"), diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/KpiGet400Response.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/KpiGet400Response.java index b326489fa..a01669cff 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/KpiGet400Response.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/KpiGet400Response.java @@ -39,7 +39,6 @@ /** * KpiGet400Response */ - // CHECKSTYLE:OFF public class KpiGet400Response // CHECKSTYLE:ON @@ -52,29 +51,29 @@ public class KpiGet400Response private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the error of this {@link KpiGet400Response} instance and return the same instance. - * - * @param error The error of this {@link KpiGet400Response} - * @return The same instance of this {@link KpiGet400Response} class - */ + * Set the error of this {@link KpiGet400Response} instance and return the same instance. + * + * @param error The error of this {@link KpiGet400Response} + * @return The same instance of this {@link KpiGet400Response} class + */ @Nonnull public KpiGet400Response error(@Nonnull final KpiApiError error) { this.error = error; return this; } /** - * Get error - * @return error The error of this {@link KpiGet400Response} instance. - **/ + * Get error + * @return error The error of this {@link KpiGet400Response} instance. + */ @Nonnull public KpiApiError getError() { return error; } /** - * Set the error of this {@link KpiGet400Response} instance. - * - * @param error The error of this {@link KpiGet400Response} - */ + * Set the error of this {@link KpiGet400Response} instance. + * + * @param error The error of this {@link KpiGet400Response} + */ public void setError( @Nonnull final KpiApiError error) { this.error = error; } @@ -155,5 +154,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/KpiResultRowItem.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/KpiResultRowItem.java index a938eebab..ad703cb27 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/KpiResultRowItem.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/KpiResultRowItem.java @@ -33,7 +33,6 @@ /** * KpiResultRowItem */ - // CHECKSTYLE:OFF public class KpiResultRowItem // CHECKSTYLE:ON @@ -116,5 +115,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/KpiResultSet.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/KpiResultSet.java index 20d8c4e24..91b64ae9f 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/KpiResultSet.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/KpiResultSet.java @@ -46,7 +46,6 @@ /** * KpiResultSet */ - // CHECKSTYLE:OFF public class KpiResultSet // CHECKSTYLE:ON @@ -61,29 +60,29 @@ public class KpiResultSet @JsonAnyGetter private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Get header - * @return header The header of this {@link KpiResultSet} instance. - **/ + * Get header + * @return header The header of this {@link KpiResultSet} instance. + */ @Nonnull public Set getHeader() { return header; } /** - * Set the rows of this {@link KpiResultSet} instance and return the same instance. - * - * @param rows The rows of this {@link KpiResultSet} - * @return The same instance of this {@link KpiResultSet} class - */ + * Set the rows of this {@link KpiResultSet} instance and return the same instance. + * + * @param rows The rows of this {@link KpiResultSet} + * @return The same instance of this {@link KpiResultSet} class + */ @Nonnull public KpiResultSet rows(@Nonnull final List> rows) { this.rows = rows; return this; } /** - * Add one rows instance to this {@link KpiResultSet}. - * @param rowsItem The rows that should be added - * @return The same instance of type {@link KpiResultSet} - */ - @Nonnull public KpiResultSet addrowsItem( @Nonnull final List rowsItem) { + * Add one rows instance to this {@link KpiResultSet}. + * @param rowsItem The rows that should be added + * @return The same instance of type {@link KpiResultSet} + */ + @Nonnull public KpiResultSet addRowsItem( @Nonnull final List rowsItem) { if (this.rows == null) { this.rows = new ArrayList<>(); } @@ -92,18 +91,18 @@ public class KpiResultSet } /** - * Get rows - * @return rows The rows of this {@link KpiResultSet} instance. - **/ + * Get rows + * @return rows The rows of this {@link KpiResultSet} instance. + */ @Nonnull public List> getRows() { return rows; } /** - * Set the rows of this {@link KpiResultSet} instance. - * - * @param rows The rows of this {@link KpiResultSet} - */ + * Set the rows of this {@link KpiResultSet} instance. + * + * @param rows The rows of this {@link KpiResultSet} + */ public void setRows( @Nonnull final List> rows) { this.rows = rows; } @@ -186,5 +185,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/KubesubmitV4ApplicationsCreateRequest.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/KubesubmitV4ApplicationsCreateRequest.java index 5d586863c..77203f8b4 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/KubesubmitV4ApplicationsCreateRequest.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/KubesubmitV4ApplicationsCreateRequest.java @@ -40,7 +40,6 @@ /** * KubesubmitV4ApplicationsCreateRequest */ - // CHECKSTYLE:OFF public class KubesubmitV4ApplicationsCreateRequest // CHECKSTYLE:ON @@ -65,141 +64,141 @@ public class KubesubmitV4ApplicationsCreateRequest private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the repositoryUrl of this {@link KubesubmitV4ApplicationsCreateRequest} instance and return the same instance. - * - * @param repositoryUrl URL of the repository to synchronise - * @return The same instance of this {@link KubesubmitV4ApplicationsCreateRequest} class - */ + * Set the repositoryUrl of this {@link KubesubmitV4ApplicationsCreateRequest} instance and return the same instance. + * + * @param repositoryUrl URL of the repository to synchronise + * @return The same instance of this {@link KubesubmitV4ApplicationsCreateRequest} class + */ @Nonnull public KubesubmitV4ApplicationsCreateRequest repositoryUrl(@Nonnull final String repositoryUrl) { this.repositoryUrl = repositoryUrl; return this; } /** - * URL of the repository to synchronise - * @return repositoryUrl The repositoryUrl of this {@link KubesubmitV4ApplicationsCreateRequest} instance. - **/ + * URL of the repository to synchronise + * @return repositoryUrl The repositoryUrl of this {@link KubesubmitV4ApplicationsCreateRequest} instance. + */ @Nonnull public String getRepositoryUrl() { return repositoryUrl; } /** - * Set the repositoryUrl of this {@link KubesubmitV4ApplicationsCreateRequest} instance. - * - * @param repositoryUrl URL of the repository to synchronise - */ + * Set the repositoryUrl of this {@link KubesubmitV4ApplicationsCreateRequest} instance. + * + * @param repositoryUrl URL of the repository to synchronise + */ public void setRepositoryUrl( @Nonnull final String repositoryUrl) { this.repositoryUrl = repositoryUrl; } /** - * Set the revision of this {@link KubesubmitV4ApplicationsCreateRequest} instance and return the same instance. - * - * @param revision revision to synchronise - * @return The same instance of this {@link KubesubmitV4ApplicationsCreateRequest} class - */ + * Set the revision of this {@link KubesubmitV4ApplicationsCreateRequest} instance and return the same instance. + * + * @param revision revision to synchronise + * @return The same instance of this {@link KubesubmitV4ApplicationsCreateRequest} class + */ @Nonnull public KubesubmitV4ApplicationsCreateRequest revision(@Nonnull final String revision) { this.revision = revision; return this; } /** - * revision to synchronise - * @return revision The revision of this {@link KubesubmitV4ApplicationsCreateRequest} instance. - **/ + * revision to synchronise + * @return revision The revision of this {@link KubesubmitV4ApplicationsCreateRequest} instance. + */ @Nonnull public String getRevision() { return revision; } /** - * Set the revision of this {@link KubesubmitV4ApplicationsCreateRequest} instance. - * - * @param revision revision to synchronise - */ + * Set the revision of this {@link KubesubmitV4ApplicationsCreateRequest} instance. + * + * @param revision revision to synchronise + */ public void setRevision( @Nonnull final String revision) { this.revision = revision; } /** - * Set the path of this {@link KubesubmitV4ApplicationsCreateRequest} instance and return the same instance. - * - * @param path path within the repository to synchronise - * @return The same instance of this {@link KubesubmitV4ApplicationsCreateRequest} class - */ + * Set the path of this {@link KubesubmitV4ApplicationsCreateRequest} instance and return the same instance. + * + * @param path path within the repository to synchronise + * @return The same instance of this {@link KubesubmitV4ApplicationsCreateRequest} class + */ @Nonnull public KubesubmitV4ApplicationsCreateRequest path(@Nonnull final String path) { this.path = path; return this; } /** - * path within the repository to synchronise - * @return path The path of this {@link KubesubmitV4ApplicationsCreateRequest} instance. - **/ + * path within the repository to synchronise + * @return path The path of this {@link KubesubmitV4ApplicationsCreateRequest} instance. + */ @Nonnull public String getPath() { return path; } /** - * Set the path of this {@link KubesubmitV4ApplicationsCreateRequest} instance. - * - * @param path path within the repository to synchronise - */ + * Set the path of this {@link KubesubmitV4ApplicationsCreateRequest} instance. + * + * @param path path within the repository to synchronise + */ public void setPath( @Nonnull final String path) { this.path = path; } /** - * Set the applicationName of this {@link KubesubmitV4ApplicationsCreateRequest} instance and return the same instance. - * - * @param applicationName ArgoCD application name - * @return The same instance of this {@link KubesubmitV4ApplicationsCreateRequest} class - */ + * Set the applicationName of this {@link KubesubmitV4ApplicationsCreateRequest} instance and return the same instance. + * + * @param applicationName ArgoCD application name + * @return The same instance of this {@link KubesubmitV4ApplicationsCreateRequest} class + */ @Nonnull public KubesubmitV4ApplicationsCreateRequest applicationName(@Nonnull final String applicationName) { this.applicationName = applicationName; return this; } /** - * ArgoCD application name - * @return applicationName The applicationName of this {@link KubesubmitV4ApplicationsCreateRequest} instance. - **/ + * ArgoCD application name + * @return applicationName The applicationName of this {@link KubesubmitV4ApplicationsCreateRequest} instance. + */ @Nonnull public String getApplicationName() { return applicationName; } /** - * Set the applicationName of this {@link KubesubmitV4ApplicationsCreateRequest} instance. - * - * @param applicationName ArgoCD application name - */ + * Set the applicationName of this {@link KubesubmitV4ApplicationsCreateRequest} instance. + * + * @param applicationName ArgoCD application name + */ public void setApplicationName( @Nonnull final String applicationName) { this.applicationName = applicationName; } /** - * Set the repositoryName of this {@link KubesubmitV4ApplicationsCreateRequest} instance and return the same instance. - * - * @param repositoryName Name of the repository to synchronise - * @return The same instance of this {@link KubesubmitV4ApplicationsCreateRequest} class - */ + * Set the repositoryName of this {@link KubesubmitV4ApplicationsCreateRequest} instance and return the same instance. + * + * @param repositoryName Name of the repository to synchronise + * @return The same instance of this {@link KubesubmitV4ApplicationsCreateRequest} class + */ @Nonnull public KubesubmitV4ApplicationsCreateRequest repositoryName(@Nonnull final String repositoryName) { this.repositoryName = repositoryName; return this; } /** - * Name of the repository to synchronise - * @return repositoryName The repositoryName of this {@link KubesubmitV4ApplicationsCreateRequest} instance. - **/ + * Name of the repository to synchronise + * @return repositoryName The repositoryName of this {@link KubesubmitV4ApplicationsCreateRequest} instance. + */ @Nonnull public String getRepositoryName() { return repositoryName; } /** - * Set the repositoryName of this {@link KubesubmitV4ApplicationsCreateRequest} instance. - * - * @param repositoryName Name of the repository to synchronise - */ + * Set the repositoryName of this {@link KubesubmitV4ApplicationsCreateRequest} instance. + * + * @param repositoryName Name of the repository to synchronise + */ public void setRepositoryName( @Nonnull final String repositoryName) { this.repositoryName = repositoryName; } @@ -288,5 +287,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/KubesubmitV4DockerRegistrySecretsCreateRequest.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/KubesubmitV4DockerRegistrySecretsCreateRequest.java index 198f4b897..7a222c25c 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/KubesubmitV4DockerRegistrySecretsCreateRequest.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/KubesubmitV4DockerRegistrySecretsCreateRequest.java @@ -39,7 +39,6 @@ /** * KubesubmitV4DockerRegistrySecretsCreateRequest */ - // CHECKSTYLE:OFF public class KubesubmitV4DockerRegistrySecretsCreateRequest // CHECKSTYLE:ON @@ -55,57 +54,57 @@ public class KubesubmitV4DockerRegistrySecretsCreateRequest private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the data of this {@link KubesubmitV4DockerRegistrySecretsCreateRequest} instance and return the same instance. - * - * @param data The data of this {@link KubesubmitV4DockerRegistrySecretsCreateRequest} - * @return The same instance of this {@link KubesubmitV4DockerRegistrySecretsCreateRequest} class - */ + * Set the data of this {@link KubesubmitV4DockerRegistrySecretsCreateRequest} instance and return the same instance. + * + * @param data The data of this {@link KubesubmitV4DockerRegistrySecretsCreateRequest} + * @return The same instance of this {@link KubesubmitV4DockerRegistrySecretsCreateRequest} class + */ @Nonnull public KubesubmitV4DockerRegistrySecretsCreateRequest data(@Nonnull final BcknddockerRegistrySecretWithSensitiveDataRequestData data) { this.data = data; return this; } /** - * Get data - * @return data The data of this {@link KubesubmitV4DockerRegistrySecretsCreateRequest} instance. - **/ + * Get data + * @return data The data of this {@link KubesubmitV4DockerRegistrySecretsCreateRequest} instance. + */ @Nonnull public BcknddockerRegistrySecretWithSensitiveDataRequestData getData() { return data; } /** - * Set the data of this {@link KubesubmitV4DockerRegistrySecretsCreateRequest} instance. - * - * @param data The data of this {@link KubesubmitV4DockerRegistrySecretsCreateRequest} - */ + * Set the data of this {@link KubesubmitV4DockerRegistrySecretsCreateRequest} instance. + * + * @param data The data of this {@link KubesubmitV4DockerRegistrySecretsCreateRequest} + */ public void setData( @Nonnull final BcknddockerRegistrySecretWithSensitiveDataRequestData data) { this.data = data; } /** - * Set the name of this {@link KubesubmitV4DockerRegistrySecretsCreateRequest} instance and return the same instance. - * - * @param name Name of the docker Registry store for the secret. - * @return The same instance of this {@link KubesubmitV4DockerRegistrySecretsCreateRequest} class - */ + * Set the name of this {@link KubesubmitV4DockerRegistrySecretsCreateRequest} instance and return the same instance. + * + * @param name Name of the docker Registry store for the secret. + * @return The same instance of this {@link KubesubmitV4DockerRegistrySecretsCreateRequest} class + */ @Nonnull public KubesubmitV4DockerRegistrySecretsCreateRequest name(@Nonnull final String name) { this.name = name; return this; } /** - * Name of the docker Registry store for the secret. - * @return name The name of this {@link KubesubmitV4DockerRegistrySecretsCreateRequest} instance. - **/ + * Name of the docker Registry store for the secret. + * @return name The name of this {@link KubesubmitV4DockerRegistrySecretsCreateRequest} instance. + */ @Nonnull public String getName() { return name; } /** - * Set the name of this {@link KubesubmitV4DockerRegistrySecretsCreateRequest} instance. - * - * @param name Name of the docker Registry store for the secret. - */ + * Set the name of this {@link KubesubmitV4DockerRegistrySecretsCreateRequest} instance. + * + * @param name Name of the docker Registry store for the secret. + */ public void setName( @Nonnull final String name) { this.name = name; } @@ -188,5 +187,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/MetaAPIVersion.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/MetaAPIVersion.java index 597c57286..7ef194e19 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/MetaAPIVersion.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/MetaAPIVersion.java @@ -38,7 +38,6 @@ /** * API version description */ - // CHECKSTYLE:OFF public class MetaAPIVersion // CHECKSTYLE:ON @@ -57,85 +56,85 @@ public class MetaAPIVersion private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the versionId of this {@link MetaAPIVersion} instance and return the same instance. - * - * @param versionId API version identifier - * @return The same instance of this {@link MetaAPIVersion} class - */ + * Set the versionId of this {@link MetaAPIVersion} instance and return the same instance. + * + * @param versionId API version identifier + * @return The same instance of this {@link MetaAPIVersion} class + */ @Nonnull public MetaAPIVersion versionId(@Nonnull final String versionId) { this.versionId = versionId; return this; } /** - * API version identifier - * @return versionId The versionId of this {@link MetaAPIVersion} instance. - **/ + * API version identifier + * @return versionId The versionId of this {@link MetaAPIVersion} instance. + */ @Nonnull public String getVersionId() { return versionId; } /** - * Set the versionId of this {@link MetaAPIVersion} instance. - * - * @param versionId API version identifier - */ + * Set the versionId of this {@link MetaAPIVersion} instance. + * + * @param versionId API version identifier + */ public void setVersionId( @Nonnull final String versionId) { this.versionId = versionId; } /** - * Set the url of this {@link MetaAPIVersion} instance and return the same instance. - * - * @param url URL of the API version - * @return The same instance of this {@link MetaAPIVersion} class - */ + * Set the url of this {@link MetaAPIVersion} instance and return the same instance. + * + * @param url URL of the API version + * @return The same instance of this {@link MetaAPIVersion} class + */ @Nonnull public MetaAPIVersion url(@Nonnull final String url) { this.url = url; return this; } /** - * URL of the API version - * @return url The url of this {@link MetaAPIVersion} instance. - **/ + * URL of the API version + * @return url The url of this {@link MetaAPIVersion} instance. + */ @Nonnull public String getUrl() { return url; } /** - * Set the url of this {@link MetaAPIVersion} instance. - * - * @param url URL of the API version - */ + * Set the url of this {@link MetaAPIVersion} instance. + * + * @param url URL of the API version + */ public void setUrl( @Nonnull final String url) { this.url = url; } /** - * Set the description of this {@link MetaAPIVersion} instance and return the same instance. - * - * @param description version description - * @return The same instance of this {@link MetaAPIVersion} class - */ + * Set the description of this {@link MetaAPIVersion} instance and return the same instance. + * + * @param description version description + * @return The same instance of this {@link MetaAPIVersion} class + */ @Nonnull public MetaAPIVersion description(@Nonnull final String description) { this.description = description; return this; } /** - * version description - * @return description The description of this {@link MetaAPIVersion} instance. - **/ + * version description + * @return description The description of this {@link MetaAPIVersion} instance. + */ @Nonnull public String getDescription() { return description; } /** - * Set the description of this {@link MetaAPIVersion} instance. - * - * @param description version description - */ + * Set the description of this {@link MetaAPIVersion} instance. + * + * @param description version description + */ public void setDescription( @Nonnull final String description) { this.description = description; } @@ -220,5 +219,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/MetaAiApi.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/MetaAiApi.java index 0e7fa507e..57cdfff4f 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/MetaAiApi.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/MetaAiApi.java @@ -40,7 +40,6 @@ /** * There are (currently) the following types of execution engines 1) complete runtimes that offer executions and deployments, 2) runtimes that do only batch inference and therefore don't support deployments 3) runtimes that allow deployments, but with predefined models and therefore don't need executions 4) runtimes that have fixed endpoints and therefore only need listing deployments */ - // CHECKSTYLE:OFF public class MetaAiApi // CHECKSTYLE:ON @@ -59,85 +58,85 @@ public class MetaAiApi private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the version of this {@link MetaAiApi} instance and return the same instance. - * - * @param version The version of this {@link MetaAiApi} - * @return The same instance of this {@link MetaAiApi} class - */ + * Set the version of this {@link MetaAiApi} instance and return the same instance. + * + * @param version The version of this {@link MetaAiApi} + * @return The same instance of this {@link MetaAiApi} class + */ @Nonnull public MetaAiApi version(@Nonnull final String version) { this.version = version; return this; } /** - * Get version - * @return version The version of this {@link MetaAiApi} instance. - **/ + * Get version + * @return version The version of this {@link MetaAiApi} instance. + */ @Nonnull public String getVersion() { return version; } /** - * Set the version of this {@link MetaAiApi} instance. - * - * @param version The version of this {@link MetaAiApi} - */ + * Set the version of this {@link MetaAiApi} instance. + * + * @param version The version of this {@link MetaAiApi} + */ public void setVersion( @Nonnull final String version) { this.version = version; } /** - * Set the capabilities of this {@link MetaAiApi} instance and return the same instance. - * - * @param capabilities The capabilities of this {@link MetaAiApi} - * @return The same instance of this {@link MetaAiApi} class - */ + * Set the capabilities of this {@link MetaAiApi} instance and return the same instance. + * + * @param capabilities The capabilities of this {@link MetaAiApi} + * @return The same instance of this {@link MetaAiApi} class + */ @Nonnull public MetaAiApi capabilities(@Nonnull final MetaAiApiCapabilities capabilities) { this.capabilities = capabilities; return this; } /** - * Get capabilities - * @return capabilities The capabilities of this {@link MetaAiApi} instance. - **/ + * Get capabilities + * @return capabilities The capabilities of this {@link MetaAiApi} instance. + */ @Nonnull public MetaAiApiCapabilities getCapabilities() { return capabilities; } /** - * Set the capabilities of this {@link MetaAiApi} instance. - * - * @param capabilities The capabilities of this {@link MetaAiApi} - */ + * Set the capabilities of this {@link MetaAiApi} instance. + * + * @param capabilities The capabilities of this {@link MetaAiApi} + */ public void setCapabilities( @Nonnull final MetaAiApiCapabilities capabilities) { this.capabilities = capabilities; } /** - * Set the limits of this {@link MetaAiApi} instance and return the same instance. - * - * @param limits The limits of this {@link MetaAiApi} - * @return The same instance of this {@link MetaAiApi} class - */ + * Set the limits of this {@link MetaAiApi} instance and return the same instance. + * + * @param limits The limits of this {@link MetaAiApi} + * @return The same instance of this {@link MetaAiApi} class + */ @Nonnull public MetaAiApi limits(@Nonnull final MetaAiApiLimits limits) { this.limits = limits; return this; } /** - * Get limits - * @return limits The limits of this {@link MetaAiApi} instance. - **/ + * Get limits + * @return limits The limits of this {@link MetaAiApi} instance. + */ @Nonnull public MetaAiApiLimits getLimits() { return limits; } /** - * Set the limits of this {@link MetaAiApi} instance. - * - * @param limits The limits of this {@link MetaAiApi} - */ + * Set the limits of this {@link MetaAiApi} instance. + * + * @param limits The limits of this {@link MetaAiApi} + */ public void setLimits( @Nonnull final MetaAiApiLimits limits) { this.limits = limits; } @@ -222,5 +221,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/MetaAiApiCapabilities.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/MetaAiApiCapabilities.java index b7be279f2..615ae6255 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/MetaAiApiCapabilities.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/MetaAiApiCapabilities.java @@ -40,7 +40,6 @@ /** * MetaAiApiCapabilities */ - // CHECKSTYLE:OFF public class MetaAiApiCapabilities // CHECKSTYLE:ON @@ -77,253 +76,253 @@ public class MetaAiApiCapabilities private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the multitenant of this {@link MetaAiApiCapabilities} instance and return the same instance. - * - * @param multitenant true-> AI API implementation supports resource groups (Main Tenant scenario), false-> implementation does not support resource groups (Service Tenant scenario) - * @return The same instance of this {@link MetaAiApiCapabilities} class - */ + * Set the multitenant of this {@link MetaAiApiCapabilities} instance and return the same instance. + * + * @param multitenant true-> AI API implementation supports resource groups (Main Tenant scenario), false-> implementation does not support resource groups (Service Tenant scenario) + * @return The same instance of this {@link MetaAiApiCapabilities} class + */ @Nonnull public MetaAiApiCapabilities multitenant(@Nonnull final Boolean multitenant) { this.multitenant = multitenant; return this; } /** - * true-> AI API implementation supports resource groups (Main Tenant scenario), false-> implementation does not support resource groups (Service Tenant scenario) - * @return multitenant The multitenant of this {@link MetaAiApiCapabilities} instance. - **/ + * true-> AI API implementation supports resource groups (Main Tenant scenario), false-> implementation does not support resource groups (Service Tenant scenario) + * @return multitenant The multitenant of this {@link MetaAiApiCapabilities} instance. + */ @Nonnull public Boolean isMultitenant() { return multitenant; } /** - * Set the multitenant of this {@link MetaAiApiCapabilities} instance. - * - * @param multitenant true-> AI API implementation supports resource groups (Main Tenant scenario), false-> implementation does not support resource groups (Service Tenant scenario) - */ + * Set the multitenant of this {@link MetaAiApiCapabilities} instance. + * + * @param multitenant true-> AI API implementation supports resource groups (Main Tenant scenario), false-> implementation does not support resource groups (Service Tenant scenario) + */ public void setMultitenant( @Nonnull final Boolean multitenant) { this.multitenant = multitenant; } /** - * Set the shareable of this {@link MetaAiApiCapabilities} instance and return the same instance. - * - * @param shareable true-> clients can use just one instance (global static models), false-> clients should avoid sharing an instance - * @return The same instance of this {@link MetaAiApiCapabilities} class - */ + * Set the shareable of this {@link MetaAiApiCapabilities} instance and return the same instance. + * + * @param shareable true-> clients can use just one instance (global static models), false-> clients should avoid sharing an instance + * @return The same instance of this {@link MetaAiApiCapabilities} class + */ @Nonnull public MetaAiApiCapabilities shareable(@Nonnull final Boolean shareable) { this.shareable = shareable; return this; } /** - * true-> clients can use just one instance (global static models), false-> clients should avoid sharing an instance - * @return shareable The shareable of this {@link MetaAiApiCapabilities} instance. - **/ + * true-> clients can use just one instance (global static models), false-> clients should avoid sharing an instance + * @return shareable The shareable of this {@link MetaAiApiCapabilities} instance. + */ @Nonnull public Boolean isShareable() { return shareable; } /** - * Set the shareable of this {@link MetaAiApiCapabilities} instance. - * - * @param shareable true-> clients can use just one instance (global static models), false-> clients should avoid sharing an instance - */ + * Set the shareable of this {@link MetaAiApiCapabilities} instance. + * + * @param shareable true-> clients can use just one instance (global static models), false-> clients should avoid sharing an instance + */ public void setShareable( @Nonnull final Boolean shareable) { this.shareable = shareable; } /** - * Set the staticDeployments of this {@link MetaAiApiCapabilities} instance and return the same instance. - * - * @param staticDeployments There are static always running endpoints that can be used for inference without the need to do user deployments. - * @return The same instance of this {@link MetaAiApiCapabilities} class - */ + * Set the staticDeployments of this {@link MetaAiApiCapabilities} instance and return the same instance. + * + * @param staticDeployments There are static always running endpoints that can be used for inference without the need to do user deployments. + * @return The same instance of this {@link MetaAiApiCapabilities} class + */ @Nonnull public MetaAiApiCapabilities staticDeployments(@Nonnull final Boolean staticDeployments) { this.staticDeployments = staticDeployments; return this; } /** - * There are static always running endpoints that can be used for inference without the need to do user deployments. - * @return staticDeployments The staticDeployments of this {@link MetaAiApiCapabilities} instance. - **/ + * There are static always running endpoints that can be used for inference without the need to do user deployments. + * @return staticDeployments The staticDeployments of this {@link MetaAiApiCapabilities} instance. + */ @Nonnull public Boolean isStaticDeployments() { return staticDeployments; } /** - * Set the staticDeployments of this {@link MetaAiApiCapabilities} instance. - * - * @param staticDeployments There are static always running endpoints that can be used for inference without the need to do user deployments. - */ + * Set the staticDeployments of this {@link MetaAiApiCapabilities} instance. + * + * @param staticDeployments There are static always running endpoints that can be used for inference without the need to do user deployments. + */ public void setStaticDeployments( @Nonnull final Boolean staticDeployments) { this.staticDeployments = staticDeployments; } /** - * Set the userDeployments of this {@link MetaAiApiCapabilities} instance and return the same instance. - * - * @param userDeployments Services that only support batch inference typically neither allow listing nor creation of deployments. For these, userDeployments == false - * @return The same instance of this {@link MetaAiApiCapabilities} class - */ + * Set the userDeployments of this {@link MetaAiApiCapabilities} instance and return the same instance. + * + * @param userDeployments Services that only support batch inference typically neither allow listing nor creation of deployments. For these, userDeployments == false + * @return The same instance of this {@link MetaAiApiCapabilities} class + */ @Nonnull public MetaAiApiCapabilities userDeployments(@Nonnull final Boolean userDeployments) { this.userDeployments = userDeployments; return this; } /** - * Services that only support batch inference typically neither allow listing nor creation of deployments. For these, userDeployments == false - * @return userDeployments The userDeployments of this {@link MetaAiApiCapabilities} instance. - **/ + * Services that only support batch inference typically neither allow listing nor creation of deployments. For these, userDeployments == false + * @return userDeployments The userDeployments of this {@link MetaAiApiCapabilities} instance. + */ @Nonnull public Boolean isUserDeployments() { return userDeployments; } /** - * Set the userDeployments of this {@link MetaAiApiCapabilities} instance. - * - * @param userDeployments Services that only support batch inference typically neither allow listing nor creation of deployments. For these, userDeployments == false - */ + * Set the userDeployments of this {@link MetaAiApiCapabilities} instance. + * + * @param userDeployments Services that only support batch inference typically neither allow listing nor creation of deployments. For these, userDeployments == false + */ public void setUserDeployments( @Nonnull final Boolean userDeployments) { this.userDeployments = userDeployments; } /** - * Set the userExecutions of this {@link MetaAiApiCapabilities} instance and return the same instance. - * - * @param userExecutions The userExecutions of this {@link MetaAiApiCapabilities} - * @return The same instance of this {@link MetaAiApiCapabilities} class - */ + * Set the userExecutions of this {@link MetaAiApiCapabilities} instance and return the same instance. + * + * @param userExecutions The userExecutions of this {@link MetaAiApiCapabilities} + * @return The same instance of this {@link MetaAiApiCapabilities} class + */ @Nonnull public MetaAiApiCapabilities userExecutions(@Nonnull final Boolean userExecutions) { this.userExecutions = userExecutions; return this; } /** - * Get userExecutions - * @return userExecutions The userExecutions of this {@link MetaAiApiCapabilities} instance. - **/ + * Get userExecutions + * @return userExecutions The userExecutions of this {@link MetaAiApiCapabilities} instance. + */ @Nonnull public Boolean isUserExecutions() { return userExecutions; } /** - * Set the userExecutions of this {@link MetaAiApiCapabilities} instance. - * - * @param userExecutions The userExecutions of this {@link MetaAiApiCapabilities} - */ + * Set the userExecutions of this {@link MetaAiApiCapabilities} instance. + * + * @param userExecutions The userExecutions of this {@link MetaAiApiCapabilities} + */ public void setUserExecutions( @Nonnull final Boolean userExecutions) { this.userExecutions = userExecutions; } /** - * Set the timeToLiveDeployments of this {@link MetaAiApiCapabilities} instance and return the same instance. - * - * @param timeToLiveDeployments The timeToLiveDeployments of this {@link MetaAiApiCapabilities} - * @return The same instance of this {@link MetaAiApiCapabilities} class - */ + * Set the timeToLiveDeployments of this {@link MetaAiApiCapabilities} instance and return the same instance. + * + * @param timeToLiveDeployments The timeToLiveDeployments of this {@link MetaAiApiCapabilities} + * @return The same instance of this {@link MetaAiApiCapabilities} class + */ @Nonnull public MetaAiApiCapabilities timeToLiveDeployments(@Nonnull final Boolean timeToLiveDeployments) { this.timeToLiveDeployments = timeToLiveDeployments; return this; } /** - * Get timeToLiveDeployments - * @return timeToLiveDeployments The timeToLiveDeployments of this {@link MetaAiApiCapabilities} instance. - **/ + * Get timeToLiveDeployments + * @return timeToLiveDeployments The timeToLiveDeployments of this {@link MetaAiApiCapabilities} instance. + */ @Nonnull public Boolean isTimeToLiveDeployments() { return timeToLiveDeployments; } /** - * Set the timeToLiveDeployments of this {@link MetaAiApiCapabilities} instance. - * - * @param timeToLiveDeployments The timeToLiveDeployments of this {@link MetaAiApiCapabilities} - */ + * Set the timeToLiveDeployments of this {@link MetaAiApiCapabilities} instance. + * + * @param timeToLiveDeployments The timeToLiveDeployments of this {@link MetaAiApiCapabilities} + */ public void setTimeToLiveDeployments( @Nonnull final Boolean timeToLiveDeployments) { this.timeToLiveDeployments = timeToLiveDeployments; } /** - * Set the executionSchedules of this {@link MetaAiApiCapabilities} instance and return the same instance. - * - * @param executionSchedules The executionSchedules of this {@link MetaAiApiCapabilities} - * @return The same instance of this {@link MetaAiApiCapabilities} class - */ + * Set the executionSchedules of this {@link MetaAiApiCapabilities} instance and return the same instance. + * + * @param executionSchedules The executionSchedules of this {@link MetaAiApiCapabilities} + * @return The same instance of this {@link MetaAiApiCapabilities} class + */ @Nonnull public MetaAiApiCapabilities executionSchedules(@Nonnull final Boolean executionSchedules) { this.executionSchedules = executionSchedules; return this; } /** - * Get executionSchedules - * @return executionSchedules The executionSchedules of this {@link MetaAiApiCapabilities} instance. - **/ + * Get executionSchedules + * @return executionSchedules The executionSchedules of this {@link MetaAiApiCapabilities} instance. + */ @Nonnull public Boolean isExecutionSchedules() { return executionSchedules; } /** - * Set the executionSchedules of this {@link MetaAiApiCapabilities} instance. - * - * @param executionSchedules The executionSchedules of this {@link MetaAiApiCapabilities} - */ + * Set the executionSchedules of this {@link MetaAiApiCapabilities} instance. + * + * @param executionSchedules The executionSchedules of this {@link MetaAiApiCapabilities} + */ public void setExecutionSchedules( @Nonnull final Boolean executionSchedules) { this.executionSchedules = executionSchedules; } /** - * Set the logs of this {@link MetaAiApiCapabilities} instance and return the same instance. - * - * @param logs The logs of this {@link MetaAiApiCapabilities} - * @return The same instance of this {@link MetaAiApiCapabilities} class - */ + * Set the logs of this {@link MetaAiApiCapabilities} instance and return the same instance. + * + * @param logs The logs of this {@link MetaAiApiCapabilities} + * @return The same instance of this {@link MetaAiApiCapabilities} class + */ @Nonnull public MetaAiApiCapabilities logs(@Nonnull final MetaAiApiCapabilitiesLogs logs) { this.logs = logs; return this; } /** - * Get logs - * @return logs The logs of this {@link MetaAiApiCapabilities} instance. - **/ + * Get logs + * @return logs The logs of this {@link MetaAiApiCapabilities} instance. + */ @Nonnull public MetaAiApiCapabilitiesLogs getLogs() { return logs; } /** - * Set the logs of this {@link MetaAiApiCapabilities} instance. - * - * @param logs The logs of this {@link MetaAiApiCapabilities} - */ + * Set the logs of this {@link MetaAiApiCapabilities} instance. + * + * @param logs The logs of this {@link MetaAiApiCapabilities} + */ public void setLogs( @Nonnull final MetaAiApiCapabilitiesLogs logs) { this.logs = logs; } /** - * Set the bulkUpdates of this {@link MetaAiApiCapabilities} instance and return the same instance. - * - * @param bulkUpdates The bulkUpdates of this {@link MetaAiApiCapabilities} - * @return The same instance of this {@link MetaAiApiCapabilities} class - */ + * Set the bulkUpdates of this {@link MetaAiApiCapabilities} instance and return the same instance. + * + * @param bulkUpdates The bulkUpdates of this {@link MetaAiApiCapabilities} + * @return The same instance of this {@link MetaAiApiCapabilities} class + */ @Nonnull public MetaAiApiCapabilities bulkUpdates(@Nonnull final MetaAiApiCapabilitiesBulkUpdates bulkUpdates) { this.bulkUpdates = bulkUpdates; return this; } /** - * Get bulkUpdates - * @return bulkUpdates The bulkUpdates of this {@link MetaAiApiCapabilities} instance. - **/ + * Get bulkUpdates + * @return bulkUpdates The bulkUpdates of this {@link MetaAiApiCapabilities} instance. + */ @Nonnull public MetaAiApiCapabilitiesBulkUpdates getBulkUpdates() { return bulkUpdates; } /** - * Set the bulkUpdates of this {@link MetaAiApiCapabilities} instance. - * - * @param bulkUpdates The bulkUpdates of this {@link MetaAiApiCapabilities} - */ + * Set the bulkUpdates of this {@link MetaAiApiCapabilities} instance. + * + * @param bulkUpdates The bulkUpdates of this {@link MetaAiApiCapabilities} + */ public void setBulkUpdates( @Nonnull final MetaAiApiCapabilitiesBulkUpdates bulkUpdates) { this.bulkUpdates = bulkUpdates; } @@ -420,5 +419,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/MetaAiApiCapabilitiesBulkUpdates.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/MetaAiApiCapabilitiesBulkUpdates.java index 1b20b43bd..ffc560956 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/MetaAiApiCapabilitiesBulkUpdates.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/MetaAiApiCapabilitiesBulkUpdates.java @@ -38,7 +38,6 @@ /** * Services that support patch on /executions and /deployments to change targetStatus of multiple executions and deployments. */ - // CHECKSTYLE:OFF public class MetaAiApiCapabilitiesBulkUpdates // CHECKSTYLE:ON @@ -54,57 +53,57 @@ public class MetaAiApiCapabilitiesBulkUpdates private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the executions of this {@link MetaAiApiCapabilitiesBulkUpdates} instance and return the same instance. - * - * @param executions The executions of this {@link MetaAiApiCapabilitiesBulkUpdates} - * @return The same instance of this {@link MetaAiApiCapabilitiesBulkUpdates} class - */ + * Set the executions of this {@link MetaAiApiCapabilitiesBulkUpdates} instance and return the same instance. + * + * @param executions The executions of this {@link MetaAiApiCapabilitiesBulkUpdates} + * @return The same instance of this {@link MetaAiApiCapabilitiesBulkUpdates} class + */ @Nonnull public MetaAiApiCapabilitiesBulkUpdates executions(@Nonnull final Boolean executions) { this.executions = executions; return this; } /** - * Get executions - * @return executions The executions of this {@link MetaAiApiCapabilitiesBulkUpdates} instance. - **/ + * Get executions + * @return executions The executions of this {@link MetaAiApiCapabilitiesBulkUpdates} instance. + */ @Nonnull public Boolean isExecutions() { return executions; } /** - * Set the executions of this {@link MetaAiApiCapabilitiesBulkUpdates} instance. - * - * @param executions The executions of this {@link MetaAiApiCapabilitiesBulkUpdates} - */ + * Set the executions of this {@link MetaAiApiCapabilitiesBulkUpdates} instance. + * + * @param executions The executions of this {@link MetaAiApiCapabilitiesBulkUpdates} + */ public void setExecutions( @Nonnull final Boolean executions) { this.executions = executions; } /** - * Set the deployments of this {@link MetaAiApiCapabilitiesBulkUpdates} instance and return the same instance. - * - * @param deployments The deployments of this {@link MetaAiApiCapabilitiesBulkUpdates} - * @return The same instance of this {@link MetaAiApiCapabilitiesBulkUpdates} class - */ + * Set the deployments of this {@link MetaAiApiCapabilitiesBulkUpdates} instance and return the same instance. + * + * @param deployments The deployments of this {@link MetaAiApiCapabilitiesBulkUpdates} + * @return The same instance of this {@link MetaAiApiCapabilitiesBulkUpdates} class + */ @Nonnull public MetaAiApiCapabilitiesBulkUpdates deployments(@Nonnull final Boolean deployments) { this.deployments = deployments; return this; } /** - * Get deployments - * @return deployments The deployments of this {@link MetaAiApiCapabilitiesBulkUpdates} instance. - **/ + * Get deployments + * @return deployments The deployments of this {@link MetaAiApiCapabilitiesBulkUpdates} instance. + */ @Nonnull public Boolean isDeployments() { return deployments; } /** - * Set the deployments of this {@link MetaAiApiCapabilitiesBulkUpdates} instance. - * - * @param deployments The deployments of this {@link MetaAiApiCapabilitiesBulkUpdates} - */ + * Set the deployments of this {@link MetaAiApiCapabilitiesBulkUpdates} instance. + * + * @param deployments The deployments of this {@link MetaAiApiCapabilitiesBulkUpdates} + */ public void setDeployments( @Nonnull final Boolean deployments) { this.deployments = deployments; } @@ -187,5 +186,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/MetaAiApiCapabilitiesLogs.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/MetaAiApiCapabilitiesLogs.java index f00e8df6d..e8ca10166 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/MetaAiApiCapabilitiesLogs.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/MetaAiApiCapabilitiesLogs.java @@ -38,7 +38,6 @@ /** * MetaAiApiCapabilitiesLogs */ - // CHECKSTYLE:OFF public class MetaAiApiCapabilitiesLogs // CHECKSTYLE:ON @@ -54,57 +53,57 @@ public class MetaAiApiCapabilitiesLogs private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the executions of this {@link MetaAiApiCapabilitiesLogs} instance and return the same instance. - * - * @param executions The executions of this {@link MetaAiApiCapabilitiesLogs} - * @return The same instance of this {@link MetaAiApiCapabilitiesLogs} class - */ + * Set the executions of this {@link MetaAiApiCapabilitiesLogs} instance and return the same instance. + * + * @param executions The executions of this {@link MetaAiApiCapabilitiesLogs} + * @return The same instance of this {@link MetaAiApiCapabilitiesLogs} class + */ @Nonnull public MetaAiApiCapabilitiesLogs executions(@Nonnull final Boolean executions) { this.executions = executions; return this; } /** - * Get executions - * @return executions The executions of this {@link MetaAiApiCapabilitiesLogs} instance. - **/ + * Get executions + * @return executions The executions of this {@link MetaAiApiCapabilitiesLogs} instance. + */ @Nonnull public Boolean isExecutions() { return executions; } /** - * Set the executions of this {@link MetaAiApiCapabilitiesLogs} instance. - * - * @param executions The executions of this {@link MetaAiApiCapabilitiesLogs} - */ + * Set the executions of this {@link MetaAiApiCapabilitiesLogs} instance. + * + * @param executions The executions of this {@link MetaAiApiCapabilitiesLogs} + */ public void setExecutions( @Nonnull final Boolean executions) { this.executions = executions; } /** - * Set the deployments of this {@link MetaAiApiCapabilitiesLogs} instance and return the same instance. - * - * @param deployments The deployments of this {@link MetaAiApiCapabilitiesLogs} - * @return The same instance of this {@link MetaAiApiCapabilitiesLogs} class - */ + * Set the deployments of this {@link MetaAiApiCapabilitiesLogs} instance and return the same instance. + * + * @param deployments The deployments of this {@link MetaAiApiCapabilitiesLogs} + * @return The same instance of this {@link MetaAiApiCapabilitiesLogs} class + */ @Nonnull public MetaAiApiCapabilitiesLogs deployments(@Nonnull final Boolean deployments) { this.deployments = deployments; return this; } /** - * Get deployments - * @return deployments The deployments of this {@link MetaAiApiCapabilitiesLogs} instance. - **/ + * Get deployments + * @return deployments The deployments of this {@link MetaAiApiCapabilitiesLogs} instance. + */ @Nonnull public Boolean isDeployments() { return deployments; } /** - * Set the deployments of this {@link MetaAiApiCapabilitiesLogs} instance. - * - * @param deployments The deployments of this {@link MetaAiApiCapabilitiesLogs} - */ + * Set the deployments of this {@link MetaAiApiCapabilitiesLogs} instance. + * + * @param deployments The deployments of this {@link MetaAiApiCapabilitiesLogs} + */ public void setDeployments( @Nonnull final Boolean deployments) { this.deployments = deployments; } @@ -187,5 +186,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/MetaAiApiLimits.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/MetaAiApiLimits.java index 7df859697..9b391134a 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/MetaAiApiLimits.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/MetaAiApiLimits.java @@ -41,7 +41,6 @@ /** * MetaAiApiLimits */ - // CHECKSTYLE:OFF public class MetaAiApiLimits // CHECKSTYLE:ON @@ -60,85 +59,85 @@ public class MetaAiApiLimits private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the executions of this {@link MetaAiApiLimits} instance and return the same instance. - * - * @param executions The executions of this {@link MetaAiApiLimits} - * @return The same instance of this {@link MetaAiApiLimits} class - */ + * Set the executions of this {@link MetaAiApiLimits} instance and return the same instance. + * + * @param executions The executions of this {@link MetaAiApiLimits} + * @return The same instance of this {@link MetaAiApiLimits} class + */ @Nonnull public MetaAiApiLimits executions(@Nonnull final MetaAiApiLimitsExecutions executions) { this.executions = executions; return this; } /** - * Get executions - * @return executions The executions of this {@link MetaAiApiLimits} instance. - **/ + * Get executions + * @return executions The executions of this {@link MetaAiApiLimits} instance. + */ @Nonnull public MetaAiApiLimitsExecutions getExecutions() { return executions; } /** - * Set the executions of this {@link MetaAiApiLimits} instance. - * - * @param executions The executions of this {@link MetaAiApiLimits} - */ + * Set the executions of this {@link MetaAiApiLimits} instance. + * + * @param executions The executions of this {@link MetaAiApiLimits} + */ public void setExecutions( @Nonnull final MetaAiApiLimitsExecutions executions) { this.executions = executions; } /** - * Set the deployments of this {@link MetaAiApiLimits} instance and return the same instance. - * - * @param deployments The deployments of this {@link MetaAiApiLimits} - * @return The same instance of this {@link MetaAiApiLimits} class - */ + * Set the deployments of this {@link MetaAiApiLimits} instance and return the same instance. + * + * @param deployments The deployments of this {@link MetaAiApiLimits} + * @return The same instance of this {@link MetaAiApiLimits} class + */ @Nonnull public MetaAiApiLimits deployments(@Nonnull final MetaAiApiLimitsDeployments deployments) { this.deployments = deployments; return this; } /** - * Get deployments - * @return deployments The deployments of this {@link MetaAiApiLimits} instance. - **/ + * Get deployments + * @return deployments The deployments of this {@link MetaAiApiLimits} instance. + */ @Nonnull public MetaAiApiLimitsDeployments getDeployments() { return deployments; } /** - * Set the deployments of this {@link MetaAiApiLimits} instance. - * - * @param deployments The deployments of this {@link MetaAiApiLimits} - */ + * Set the deployments of this {@link MetaAiApiLimits} instance. + * + * @param deployments The deployments of this {@link MetaAiApiLimits} + */ public void setDeployments( @Nonnull final MetaAiApiLimitsDeployments deployments) { this.deployments = deployments; } /** - * Set the timeToLiveDeployments of this {@link MetaAiApiLimits} instance and return the same instance. - * - * @param timeToLiveDeployments The timeToLiveDeployments of this {@link MetaAiApiLimits} - * @return The same instance of this {@link MetaAiApiLimits} class - */ + * Set the timeToLiveDeployments of this {@link MetaAiApiLimits} instance and return the same instance. + * + * @param timeToLiveDeployments The timeToLiveDeployments of this {@link MetaAiApiLimits} + * @return The same instance of this {@link MetaAiApiLimits} class + */ @Nonnull public MetaAiApiLimits timeToLiveDeployments(@Nonnull final MetaAiApiLimitsTimeToLiveDeployments timeToLiveDeployments) { this.timeToLiveDeployments = timeToLiveDeployments; return this; } /** - * Get timeToLiveDeployments - * @return timeToLiveDeployments The timeToLiveDeployments of this {@link MetaAiApiLimits} instance. - **/ + * Get timeToLiveDeployments + * @return timeToLiveDeployments The timeToLiveDeployments of this {@link MetaAiApiLimits} instance. + */ @Nonnull public MetaAiApiLimitsTimeToLiveDeployments getTimeToLiveDeployments() { return timeToLiveDeployments; } /** - * Set the timeToLiveDeployments of this {@link MetaAiApiLimits} instance. - * - * @param timeToLiveDeployments The timeToLiveDeployments of this {@link MetaAiApiLimits} - */ + * Set the timeToLiveDeployments of this {@link MetaAiApiLimits} instance. + * + * @param timeToLiveDeployments The timeToLiveDeployments of this {@link MetaAiApiLimits} + */ public void setTimeToLiveDeployments( @Nonnull final MetaAiApiLimitsTimeToLiveDeployments timeToLiveDeployments) { this.timeToLiveDeployments = timeToLiveDeployments; } @@ -223,5 +222,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/MetaAiApiLimitsDeployments.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/MetaAiApiLimitsDeployments.java index 8bbb86d0f..55b461de7 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/MetaAiApiLimitsDeployments.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/MetaAiApiLimitsDeployments.java @@ -38,7 +38,6 @@ /** * MetaAiApiLimitsDeployments */ - // CHECKSTYLE:OFF public class MetaAiApiLimitsDeployments // CHECKSTYLE:ON @@ -51,29 +50,29 @@ public class MetaAiApiLimitsDeployments private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the maxRunningCount of this {@link MetaAiApiLimitsDeployments} instance and return the same instance. - * - * @param maxRunningCount Max nr of deployments allowed by this runtime per resource group. <0 means unlimited. - * @return The same instance of this {@link MetaAiApiLimitsDeployments} class - */ + * Set the maxRunningCount of this {@link MetaAiApiLimitsDeployments} instance and return the same instance. + * + * @param maxRunningCount Max nr of deployments allowed by this runtime per resource group. <0 means unlimited. + * @return The same instance of this {@link MetaAiApiLimitsDeployments} class + */ @Nonnull public MetaAiApiLimitsDeployments maxRunningCount(@Nonnull final Integer maxRunningCount) { this.maxRunningCount = maxRunningCount; return this; } /** - * Max nr of deployments allowed by this runtime per resource group. <0 means unlimited. - * @return maxRunningCount The maxRunningCount of this {@link MetaAiApiLimitsDeployments} instance. - **/ + * Max nr of deployments allowed by this runtime per resource group. <0 means unlimited. + * @return maxRunningCount The maxRunningCount of this {@link MetaAiApiLimitsDeployments} instance. + */ @Nonnull public Integer getMaxRunningCount() { return maxRunningCount; } /** - * Set the maxRunningCount of this {@link MetaAiApiLimitsDeployments} instance. - * - * @param maxRunningCount Max nr of deployments allowed by this runtime per resource group. <0 means unlimited. - */ + * Set the maxRunningCount of this {@link MetaAiApiLimitsDeployments} instance. + * + * @param maxRunningCount Max nr of deployments allowed by this runtime per resource group. <0 means unlimited. + */ public void setMaxRunningCount( @Nonnull final Integer maxRunningCount) { this.maxRunningCount = maxRunningCount; } @@ -154,5 +153,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/MetaAiApiLimitsExecutions.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/MetaAiApiLimitsExecutions.java index d9b3d576d..770902781 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/MetaAiApiLimitsExecutions.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/MetaAiApiLimitsExecutions.java @@ -38,7 +38,6 @@ /** * MetaAiApiLimitsExecutions */ - // CHECKSTYLE:OFF public class MetaAiApiLimitsExecutions // CHECKSTYLE:ON @@ -51,29 +50,29 @@ public class MetaAiApiLimitsExecutions private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the maxRunningCount of this {@link MetaAiApiLimitsExecutions} instance and return the same instance. - * - * @param maxRunningCount Max nr of executions allowed by this runtime per resource group. <0 means unlimited. - * @return The same instance of this {@link MetaAiApiLimitsExecutions} class - */ + * Set the maxRunningCount of this {@link MetaAiApiLimitsExecutions} instance and return the same instance. + * + * @param maxRunningCount Max nr of executions allowed by this runtime per resource group. <0 means unlimited. + * @return The same instance of this {@link MetaAiApiLimitsExecutions} class + */ @Nonnull public MetaAiApiLimitsExecutions maxRunningCount(@Nonnull final Integer maxRunningCount) { this.maxRunningCount = maxRunningCount; return this; } /** - * Max nr of executions allowed by this runtime per resource group. <0 means unlimited. - * @return maxRunningCount The maxRunningCount of this {@link MetaAiApiLimitsExecutions} instance. - **/ + * Max nr of executions allowed by this runtime per resource group. <0 means unlimited. + * @return maxRunningCount The maxRunningCount of this {@link MetaAiApiLimitsExecutions} instance. + */ @Nonnull public Integer getMaxRunningCount() { return maxRunningCount; } /** - * Set the maxRunningCount of this {@link MetaAiApiLimitsExecutions} instance. - * - * @param maxRunningCount Max nr of executions allowed by this runtime per resource group. <0 means unlimited. - */ + * Set the maxRunningCount of this {@link MetaAiApiLimitsExecutions} instance. + * + * @param maxRunningCount Max nr of executions allowed by this runtime per resource group. <0 means unlimited. + */ public void setMaxRunningCount( @Nonnull final Integer maxRunningCount) { this.maxRunningCount = maxRunningCount; } @@ -154,5 +153,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/MetaAiApiLimitsTimeToLiveDeployments.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/MetaAiApiLimitsTimeToLiveDeployments.java index 62e672ad5..8520e2ec3 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/MetaAiApiLimitsTimeToLiveDeployments.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/MetaAiApiLimitsTimeToLiveDeployments.java @@ -38,7 +38,6 @@ /** * MetaAiApiLimitsTimeToLiveDeployments */ - // CHECKSTYLE:OFF public class MetaAiApiLimitsTimeToLiveDeployments // CHECKSTYLE:ON @@ -54,57 +53,57 @@ public class MetaAiApiLimitsTimeToLiveDeployments private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the minimum of this {@link MetaAiApiLimitsTimeToLiveDeployments} instance and return the same instance. - * - * @param minimum The minimum of this {@link MetaAiApiLimitsTimeToLiveDeployments} - * @return The same instance of this {@link MetaAiApiLimitsTimeToLiveDeployments} class - */ + * Set the minimum of this {@link MetaAiApiLimitsTimeToLiveDeployments} instance and return the same instance. + * + * @param minimum The minimum of this {@link MetaAiApiLimitsTimeToLiveDeployments} + * @return The same instance of this {@link MetaAiApiLimitsTimeToLiveDeployments} class + */ @Nonnull public MetaAiApiLimitsTimeToLiveDeployments minimum(@Nonnull final String minimum) { this.minimum = minimum; return this; } /** - * Get minimum - * @return minimum The minimum of this {@link MetaAiApiLimitsTimeToLiveDeployments} instance. - **/ + * Get minimum + * @return minimum The minimum of this {@link MetaAiApiLimitsTimeToLiveDeployments} instance. + */ @Nonnull public String getMinimum() { return minimum; } /** - * Set the minimum of this {@link MetaAiApiLimitsTimeToLiveDeployments} instance. - * - * @param minimum The minimum of this {@link MetaAiApiLimitsTimeToLiveDeployments} - */ + * Set the minimum of this {@link MetaAiApiLimitsTimeToLiveDeployments} instance. + * + * @param minimum The minimum of this {@link MetaAiApiLimitsTimeToLiveDeployments} + */ public void setMinimum( @Nonnull final String minimum) { this.minimum = minimum; } /** - * Set the maximum of this {@link MetaAiApiLimitsTimeToLiveDeployments} instance and return the same instance. - * - * @param maximum The maximum of this {@link MetaAiApiLimitsTimeToLiveDeployments} - * @return The same instance of this {@link MetaAiApiLimitsTimeToLiveDeployments} class - */ + * Set the maximum of this {@link MetaAiApiLimitsTimeToLiveDeployments} instance and return the same instance. + * + * @param maximum The maximum of this {@link MetaAiApiLimitsTimeToLiveDeployments} + * @return The same instance of this {@link MetaAiApiLimitsTimeToLiveDeployments} class + */ @Nonnull public MetaAiApiLimitsTimeToLiveDeployments maximum(@Nonnull final String maximum) { this.maximum = maximum; return this; } /** - * Get maximum - * @return maximum The maximum of this {@link MetaAiApiLimitsTimeToLiveDeployments} instance. - **/ + * Get maximum + * @return maximum The maximum of this {@link MetaAiApiLimitsTimeToLiveDeployments} instance. + */ @Nonnull public String getMaximum() { return maximum; } /** - * Set the maximum of this {@link MetaAiApiLimitsTimeToLiveDeployments} instance. - * - * @param maximum The maximum of this {@link MetaAiApiLimitsTimeToLiveDeployments} - */ + * Set the maximum of this {@link MetaAiApiLimitsTimeToLiveDeployments} instance. + * + * @param maximum The maximum of this {@link MetaAiApiLimitsTimeToLiveDeployments} + */ public void setMaximum( @Nonnull final String maximum) { this.maximum = maximum; } @@ -187,5 +186,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/MetaApiError.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/MetaApiError.java index f2fc0facf..60591aa6e 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/MetaApiError.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/MetaApiError.java @@ -38,7 +38,6 @@ /** * MetaApiError */ - // CHECKSTYLE:OFF public class MetaApiError // CHECKSTYLE:ON @@ -63,141 +62,141 @@ public class MetaApiError private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the code of this {@link MetaApiError} instance and return the same instance. - * - * @param code Descriptive error code (not http status code) - * @return The same instance of this {@link MetaApiError} class - */ + * Set the code of this {@link MetaApiError} instance and return the same instance. + * + * @param code Descriptive error code (not http status code) + * @return The same instance of this {@link MetaApiError} class + */ @Nonnull public MetaApiError code(@Nonnull final String code) { this.code = code; return this; } /** - * Descriptive error code (not http status code) - * @return code The code of this {@link MetaApiError} instance. - **/ + * Descriptive error code (not http status code) + * @return code The code of this {@link MetaApiError} instance. + */ @Nonnull public String getCode() { return code; } /** - * Set the code of this {@link MetaApiError} instance. - * - * @param code Descriptive error code (not http status code) - */ + * Set the code of this {@link MetaApiError} instance. + * + * @param code Descriptive error code (not http status code) + */ public void setCode( @Nonnull final String code) { this.code = code; } /** - * Set the message of this {@link MetaApiError} instance and return the same instance. - * - * @param message Plaintext error description - * @return The same instance of this {@link MetaApiError} class - */ + * Set the message of this {@link MetaApiError} instance and return the same instance. + * + * @param message Plaintext error description + * @return The same instance of this {@link MetaApiError} class + */ @Nonnull public MetaApiError message(@Nonnull final String message) { this.message = message; return this; } /** - * Plaintext error description - * @return message The message of this {@link MetaApiError} instance. - **/ + * Plaintext error description + * @return message The message of this {@link MetaApiError} instance. + */ @Nonnull public String getMessage() { return message; } /** - * Set the message of this {@link MetaApiError} instance. - * - * @param message Plaintext error description - */ + * Set the message of this {@link MetaApiError} instance. + * + * @param message Plaintext error description + */ public void setMessage( @Nonnull final String message) { this.message = message; } /** - * Set the requestId of this {@link MetaApiError} instance and return the same instance. - * - * @param requestId ID of the individual request - * @return The same instance of this {@link MetaApiError} class - */ + * Set the requestId of this {@link MetaApiError} instance and return the same instance. + * + * @param requestId ID of the individual request + * @return The same instance of this {@link MetaApiError} class + */ @Nonnull public MetaApiError requestId(@Nonnull final String requestId) { this.requestId = requestId; return this; } /** - * ID of the individual request - * @return requestId The requestId of this {@link MetaApiError} instance. - **/ + * ID of the individual request + * @return requestId The requestId of this {@link MetaApiError} instance. + */ @Nonnull public String getRequestId() { return requestId; } /** - * Set the requestId of this {@link MetaApiError} instance. - * - * @param requestId ID of the individual request - */ + * Set the requestId of this {@link MetaApiError} instance. + * + * @param requestId ID of the individual request + */ public void setRequestId( @Nonnull final String requestId) { this.requestId = requestId; } /** - * Set the target of this {@link MetaApiError} instance and return the same instance. - * - * @param target Invoked URL - * @return The same instance of this {@link MetaApiError} class - */ + * Set the target of this {@link MetaApiError} instance and return the same instance. + * + * @param target Invoked URL + * @return The same instance of this {@link MetaApiError} class + */ @Nonnull public MetaApiError target(@Nonnull final String target) { this.target = target; return this; } /** - * Invoked URL - * @return target The target of this {@link MetaApiError} instance. - **/ + * Invoked URL + * @return target The target of this {@link MetaApiError} instance. + */ @Nonnull public String getTarget() { return target; } /** - * Set the target of this {@link MetaApiError} instance. - * - * @param target Invoked URL - */ + * Set the target of this {@link MetaApiError} instance. + * + * @param target Invoked URL + */ public void setTarget( @Nonnull final String target) { this.target = target; } /** - * Set the details of this {@link MetaApiError} instance and return the same instance. - * - * @param details Optional details of the error message - * @return The same instance of this {@link MetaApiError} class - */ + * Set the details of this {@link MetaApiError} instance and return the same instance. + * + * @param details Optional details of the error message + * @return The same instance of this {@link MetaApiError} class + */ @Nonnull public MetaApiError details(@Nonnull final Object details) { this.details = details; return this; } /** - * Optional details of the error message - * @return details The details of this {@link MetaApiError} instance. - **/ + * Optional details of the error message + * @return details The details of this {@link MetaApiError} instance. + */ @Nonnull public Object getDetails() { return details; } /** - * Set the details of this {@link MetaApiError} instance. - * - * @param details Optional details of the error message - */ + * Set the details of this {@link MetaApiError} instance. + * + * @param details Optional details of the error message + */ public void setDetails( @Nonnull final Object details) { this.details = details; } @@ -286,5 +285,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/MetaCapabilities.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/MetaCapabilities.java index 14ce73656..51ea4ad20 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/MetaCapabilities.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/MetaCapabilities.java @@ -40,7 +40,6 @@ /** * MetaCapabilities */ - // CHECKSTYLE:OFF public class MetaCapabilities // CHECKSTYLE:ON @@ -65,141 +64,141 @@ public class MetaCapabilities private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the runtimeIdentifier of this {@link MetaCapabilities} instance and return the same instance. - * - * @param runtimeIdentifier The name of the runtime - * @return The same instance of this {@link MetaCapabilities} class - */ + * Set the runtimeIdentifier of this {@link MetaCapabilities} instance and return the same instance. + * + * @param runtimeIdentifier The name of the runtime + * @return The same instance of this {@link MetaCapabilities} class + */ @Nonnull public MetaCapabilities runtimeIdentifier(@Nonnull final String runtimeIdentifier) { this.runtimeIdentifier = runtimeIdentifier; return this; } /** - * The name of the runtime - * @return runtimeIdentifier The runtimeIdentifier of this {@link MetaCapabilities} instance. - **/ + * The name of the runtime + * @return runtimeIdentifier The runtimeIdentifier of this {@link MetaCapabilities} instance. + */ @Nonnull public String getRuntimeIdentifier() { return runtimeIdentifier; } /** - * Set the runtimeIdentifier of this {@link MetaCapabilities} instance. - * - * @param runtimeIdentifier The name of the runtime - */ + * Set the runtimeIdentifier of this {@link MetaCapabilities} instance. + * + * @param runtimeIdentifier The name of the runtime + */ public void setRuntimeIdentifier( @Nonnull final String runtimeIdentifier) { this.runtimeIdentifier = runtimeIdentifier; } /** - * Set the runtimeApiVersion of this {@link MetaCapabilities} instance and return the same instance. - * - * @param runtimeApiVersion The runtimeApiVersion of this {@link MetaCapabilities} - * @return The same instance of this {@link MetaCapabilities} class - */ + * Set the runtimeApiVersion of this {@link MetaCapabilities} instance and return the same instance. + * + * @param runtimeApiVersion The runtimeApiVersion of this {@link MetaCapabilities} + * @return The same instance of this {@link MetaCapabilities} class + */ @Nonnull public MetaCapabilities runtimeApiVersion(@Nonnull final String runtimeApiVersion) { this.runtimeApiVersion = runtimeApiVersion; return this; } /** - * Get runtimeApiVersion - * @return runtimeApiVersion The runtimeApiVersion of this {@link MetaCapabilities} instance. - **/ + * Get runtimeApiVersion + * @return runtimeApiVersion The runtimeApiVersion of this {@link MetaCapabilities} instance. + */ @Nonnull public String getRuntimeApiVersion() { return runtimeApiVersion; } /** - * Set the runtimeApiVersion of this {@link MetaCapabilities} instance. - * - * @param runtimeApiVersion The runtimeApiVersion of this {@link MetaCapabilities} - */ + * Set the runtimeApiVersion of this {@link MetaCapabilities} instance. + * + * @param runtimeApiVersion The runtimeApiVersion of this {@link MetaCapabilities} + */ public void setRuntimeApiVersion( @Nonnull final String runtimeApiVersion) { this.runtimeApiVersion = runtimeApiVersion; } /** - * Set the description of this {@link MetaCapabilities} instance and return the same instance. - * - * @param description The description of this {@link MetaCapabilities} - * @return The same instance of this {@link MetaCapabilities} class - */ + * Set the description of this {@link MetaCapabilities} instance and return the same instance. + * + * @param description The description of this {@link MetaCapabilities} + * @return The same instance of this {@link MetaCapabilities} class + */ @Nonnull public MetaCapabilities description(@Nonnull final String description) { this.description = description; return this; } /** - * Get description - * @return description The description of this {@link MetaCapabilities} instance. - **/ + * Get description + * @return description The description of this {@link MetaCapabilities} instance. + */ @Nonnull public String getDescription() { return description; } /** - * Set the description of this {@link MetaCapabilities} instance. - * - * @param description The description of this {@link MetaCapabilities} - */ + * Set the description of this {@link MetaCapabilities} instance. + * + * @param description The description of this {@link MetaCapabilities} + */ public void setDescription( @Nonnull final String description) { this.description = description; } /** - * Set the aiApi of this {@link MetaCapabilities} instance and return the same instance. - * - * @param aiApi The aiApi of this {@link MetaCapabilities} - * @return The same instance of this {@link MetaCapabilities} class - */ + * Set the aiApi of this {@link MetaCapabilities} instance and return the same instance. + * + * @param aiApi The aiApi of this {@link MetaCapabilities} + * @return The same instance of this {@link MetaCapabilities} class + */ @Nonnull public MetaCapabilities aiApi(@Nonnull final MetaAiApi aiApi) { this.aiApi = aiApi; return this; } /** - * Get aiApi - * @return aiApi The aiApi of this {@link MetaCapabilities} instance. - **/ + * Get aiApi + * @return aiApi The aiApi of this {@link MetaCapabilities} instance. + */ @Nonnull public MetaAiApi getAiApi() { return aiApi; } /** - * Set the aiApi of this {@link MetaCapabilities} instance. - * - * @param aiApi The aiApi of this {@link MetaCapabilities} - */ + * Set the aiApi of this {@link MetaCapabilities} instance. + * + * @param aiApi The aiApi of this {@link MetaCapabilities} + */ public void setAiApi( @Nonnull final MetaAiApi aiApi) { this.aiApi = aiApi; } /** - * Set the extensions of this {@link MetaCapabilities} instance and return the same instance. - * - * @param extensions The extensions of this {@link MetaCapabilities} - * @return The same instance of this {@link MetaCapabilities} class - */ + * Set the extensions of this {@link MetaCapabilities} instance and return the same instance. + * + * @param extensions The extensions of this {@link MetaCapabilities} + * @return The same instance of this {@link MetaCapabilities} class + */ @Nonnull public MetaCapabilities extensions(@Nonnull final MetaExtensions extensions) { this.extensions = extensions; return this; } /** - * Get extensions - * @return extensions The extensions of this {@link MetaCapabilities} instance. - **/ + * Get extensions + * @return extensions The extensions of this {@link MetaCapabilities} instance. + */ @Nonnull public MetaExtensions getExtensions() { return extensions; } /** - * Set the extensions of this {@link MetaCapabilities} instance. - * - * @param extensions The extensions of this {@link MetaCapabilities} - */ + * Set the extensions of this {@link MetaCapabilities} instance. + * + * @param extensions The extensions of this {@link MetaCapabilities} + */ public void setExtensions( @Nonnull final MetaExtensions extensions) { this.extensions = extensions; } @@ -288,5 +287,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/MetaExtensions.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/MetaExtensions.java index 8fcde3927..8a1717ab1 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/MetaExtensions.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/MetaExtensions.java @@ -41,7 +41,6 @@ /** * MetaExtensions */ - // CHECKSTYLE:OFF public class MetaExtensions // CHECKSTYLE:ON @@ -63,113 +62,113 @@ public class MetaExtensions private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the analytics of this {@link MetaExtensions} instance and return the same instance. - * - * @param analytics The analytics of this {@link MetaExtensions} - * @return The same instance of this {@link MetaExtensions} class - */ + * Set the analytics of this {@link MetaExtensions} instance and return the same instance. + * + * @param analytics The analytics of this {@link MetaExtensions} + * @return The same instance of this {@link MetaExtensions} class + */ @Nonnull public MetaExtensions analytics(@Nonnull final MetaExtensionsAnalytics analytics) { this.analytics = analytics; return this; } /** - * Get analytics - * @return analytics The analytics of this {@link MetaExtensions} instance. - **/ + * Get analytics + * @return analytics The analytics of this {@link MetaExtensions} instance. + */ @Nonnull public MetaExtensionsAnalytics getAnalytics() { return analytics; } /** - * Set the analytics of this {@link MetaExtensions} instance. - * - * @param analytics The analytics of this {@link MetaExtensions} - */ + * Set the analytics of this {@link MetaExtensions} instance. + * + * @param analytics The analytics of this {@link MetaExtensions} + */ public void setAnalytics( @Nonnull final MetaExtensionsAnalytics analytics) { this.analytics = analytics; } /** - * Set the resourceGroups of this {@link MetaExtensions} instance and return the same instance. - * - * @param resourceGroups The resourceGroups of this {@link MetaExtensions} - * @return The same instance of this {@link MetaExtensions} class - */ + * Set the resourceGroups of this {@link MetaExtensions} instance and return the same instance. + * + * @param resourceGroups The resourceGroups of this {@link MetaExtensions} + * @return The same instance of this {@link MetaExtensions} class + */ @Nonnull public MetaExtensions resourceGroups(@Nonnull final MetaExtensionsAnalytics resourceGroups) { this.resourceGroups = resourceGroups; return this; } /** - * Get resourceGroups - * @return resourceGroups The resourceGroups of this {@link MetaExtensions} instance. - **/ + * Get resourceGroups + * @return resourceGroups The resourceGroups of this {@link MetaExtensions} instance. + */ @Nonnull public MetaExtensionsAnalytics getResourceGroups() { return resourceGroups; } /** - * Set the resourceGroups of this {@link MetaExtensions} instance. - * - * @param resourceGroups The resourceGroups of this {@link MetaExtensions} - */ + * Set the resourceGroups of this {@link MetaExtensions} instance. + * + * @param resourceGroups The resourceGroups of this {@link MetaExtensions} + */ public void setResourceGroups( @Nonnull final MetaExtensionsAnalytics resourceGroups) { this.resourceGroups = resourceGroups; } /** - * Set the dataset of this {@link MetaExtensions} instance and return the same instance. - * - * @param dataset The dataset of this {@link MetaExtensions} - * @return The same instance of this {@link MetaExtensions} class - */ + * Set the dataset of this {@link MetaExtensions} instance and return the same instance. + * + * @param dataset The dataset of this {@link MetaExtensions} + * @return The same instance of this {@link MetaExtensions} class + */ @Nonnull public MetaExtensions dataset(@Nonnull final MetaExtensionsDataset dataset) { this.dataset = dataset; return this; } /** - * Get dataset - * @return dataset The dataset of this {@link MetaExtensions} instance. - **/ + * Get dataset + * @return dataset The dataset of this {@link MetaExtensions} instance. + */ @Nonnull public MetaExtensionsDataset getDataset() { return dataset; } /** - * Set the dataset of this {@link MetaExtensions} instance. - * - * @param dataset The dataset of this {@link MetaExtensions} - */ + * Set the dataset of this {@link MetaExtensions} instance. + * + * @param dataset The dataset of this {@link MetaExtensions} + */ public void setDataset( @Nonnull final MetaExtensionsDataset dataset) { this.dataset = dataset; } /** - * Set the metrics of this {@link MetaExtensions} instance and return the same instance. - * - * @param metrics The metrics of this {@link MetaExtensions} - * @return The same instance of this {@link MetaExtensions} class - */ + * Set the metrics of this {@link MetaExtensions} instance and return the same instance. + * + * @param metrics The metrics of this {@link MetaExtensions} + * @return The same instance of this {@link MetaExtensions} class + */ @Nonnull public MetaExtensions metrics(@Nonnull final MetaExtensionsMetrics metrics) { this.metrics = metrics; return this; } /** - * Get metrics - * @return metrics The metrics of this {@link MetaExtensions} instance. - **/ + * Get metrics + * @return metrics The metrics of this {@link MetaExtensions} instance. + */ @Nonnull public MetaExtensionsMetrics getMetrics() { return metrics; } /** - * Set the metrics of this {@link MetaExtensions} instance. - * - * @param metrics The metrics of this {@link MetaExtensions} - */ + * Set the metrics of this {@link MetaExtensions} instance. + * + * @param metrics The metrics of this {@link MetaExtensions} + */ public void setMetrics( @Nonnull final MetaExtensionsMetrics metrics) { this.metrics = metrics; } @@ -256,5 +255,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/MetaExtensionsAnalytics.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/MetaExtensionsAnalytics.java index cd2836679..4976611e4 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/MetaExtensionsAnalytics.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/MetaExtensionsAnalytics.java @@ -38,7 +38,6 @@ /** * MetaExtensionsAnalytics */ - // CHECKSTYLE:OFF public class MetaExtensionsAnalytics // CHECKSTYLE:ON @@ -51,29 +50,29 @@ public class MetaExtensionsAnalytics private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the version of this {@link MetaExtensionsAnalytics} instance and return the same instance. - * - * @param version The version of this {@link MetaExtensionsAnalytics} - * @return The same instance of this {@link MetaExtensionsAnalytics} class - */ + * Set the version of this {@link MetaExtensionsAnalytics} instance and return the same instance. + * + * @param version The version of this {@link MetaExtensionsAnalytics} + * @return The same instance of this {@link MetaExtensionsAnalytics} class + */ @Nonnull public MetaExtensionsAnalytics version(@Nonnull final String version) { this.version = version; return this; } /** - * Get version - * @return version The version of this {@link MetaExtensionsAnalytics} instance. - **/ + * Get version + * @return version The version of this {@link MetaExtensionsAnalytics} instance. + */ @Nonnull public String getVersion() { return version; } /** - * Set the version of this {@link MetaExtensionsAnalytics} instance. - * - * @param version The version of this {@link MetaExtensionsAnalytics} - */ + * Set the version of this {@link MetaExtensionsAnalytics} instance. + * + * @param version The version of this {@link MetaExtensionsAnalytics} + */ public void setVersion( @Nonnull final String version) { this.version = version; } @@ -154,5 +153,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/MetaExtensionsDataset.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/MetaExtensionsDataset.java index 397fe1047..8d87659ca 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/MetaExtensionsDataset.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/MetaExtensionsDataset.java @@ -40,7 +40,6 @@ /** * MetaExtensionsDataset */ - // CHECKSTYLE:OFF public class MetaExtensionsDataset // CHECKSTYLE:ON @@ -59,85 +58,85 @@ public class MetaExtensionsDataset private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the version of this {@link MetaExtensionsDataset} instance and return the same instance. - * - * @param version The version of this {@link MetaExtensionsDataset} - * @return The same instance of this {@link MetaExtensionsDataset} class - */ + * Set the version of this {@link MetaExtensionsDataset} instance and return the same instance. + * + * @param version The version of this {@link MetaExtensionsDataset} + * @return The same instance of this {@link MetaExtensionsDataset} class + */ @Nonnull public MetaExtensionsDataset version(@Nonnull final String version) { this.version = version; return this; } /** - * Get version - * @return version The version of this {@link MetaExtensionsDataset} instance. - **/ + * Get version + * @return version The version of this {@link MetaExtensionsDataset} instance. + */ @Nonnull public String getVersion() { return version; } /** - * Set the version of this {@link MetaExtensionsDataset} instance. - * - * @param version The version of this {@link MetaExtensionsDataset} - */ + * Set the version of this {@link MetaExtensionsDataset} instance. + * + * @param version The version of this {@link MetaExtensionsDataset} + */ public void setVersion( @Nonnull final String version) { this.version = version; } /** - * Set the capabilities of this {@link MetaExtensionsDataset} instance and return the same instance. - * - * @param capabilities The capabilities of this {@link MetaExtensionsDataset} - * @return The same instance of this {@link MetaExtensionsDataset} class - */ + * Set the capabilities of this {@link MetaExtensionsDataset} instance and return the same instance. + * + * @param capabilities The capabilities of this {@link MetaExtensionsDataset} + * @return The same instance of this {@link MetaExtensionsDataset} class + */ @Nonnull public MetaExtensionsDataset capabilities(@Nonnull final MetaExtensionsDatasetCapabilities capabilities) { this.capabilities = capabilities; return this; } /** - * Get capabilities - * @return capabilities The capabilities of this {@link MetaExtensionsDataset} instance. - **/ + * Get capabilities + * @return capabilities The capabilities of this {@link MetaExtensionsDataset} instance. + */ @Nonnull public MetaExtensionsDatasetCapabilities getCapabilities() { return capabilities; } /** - * Set the capabilities of this {@link MetaExtensionsDataset} instance. - * - * @param capabilities The capabilities of this {@link MetaExtensionsDataset} - */ + * Set the capabilities of this {@link MetaExtensionsDataset} instance. + * + * @param capabilities The capabilities of this {@link MetaExtensionsDataset} + */ public void setCapabilities( @Nonnull final MetaExtensionsDatasetCapabilities capabilities) { this.capabilities = capabilities; } /** - * Set the limits of this {@link MetaExtensionsDataset} instance and return the same instance. - * - * @param limits The limits of this {@link MetaExtensionsDataset} - * @return The same instance of this {@link MetaExtensionsDataset} class - */ + * Set the limits of this {@link MetaExtensionsDataset} instance and return the same instance. + * + * @param limits The limits of this {@link MetaExtensionsDataset} + * @return The same instance of this {@link MetaExtensionsDataset} class + */ @Nonnull public MetaExtensionsDataset limits(@Nonnull final MetaExtensionsDatasetLimits limits) { this.limits = limits; return this; } /** - * Get limits - * @return limits The limits of this {@link MetaExtensionsDataset} instance. - **/ + * Get limits + * @return limits The limits of this {@link MetaExtensionsDataset} instance. + */ @Nonnull public MetaExtensionsDatasetLimits getLimits() { return limits; } /** - * Set the limits of this {@link MetaExtensionsDataset} instance. - * - * @param limits The limits of this {@link MetaExtensionsDataset} - */ + * Set the limits of this {@link MetaExtensionsDataset} instance. + * + * @param limits The limits of this {@link MetaExtensionsDataset} + */ public void setLimits( @Nonnull final MetaExtensionsDatasetLimits limits) { this.limits = limits; } @@ -222,5 +221,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/MetaExtensionsDatasetCapabilities.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/MetaExtensionsDatasetCapabilities.java index 7d56e9448..b22b18c0a 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/MetaExtensionsDatasetCapabilities.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/MetaExtensionsDatasetCapabilities.java @@ -38,7 +38,6 @@ /** * List of Dataset extension capabilities */ - // CHECKSTYLE:OFF public class MetaExtensionsDatasetCapabilities // CHECKSTYLE:ON @@ -57,85 +56,85 @@ public class MetaExtensionsDatasetCapabilities private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the upload of this {@link MetaExtensionsDatasetCapabilities} instance and return the same instance. - * - * @param upload Support for uploading of files - * @return The same instance of this {@link MetaExtensionsDatasetCapabilities} class - */ + * Set the upload of this {@link MetaExtensionsDatasetCapabilities} instance and return the same instance. + * + * @param upload Support for uploading of files + * @return The same instance of this {@link MetaExtensionsDatasetCapabilities} class + */ @Nonnull public MetaExtensionsDatasetCapabilities upload(@Nonnull final Boolean upload) { this.upload = upload; return this; } /** - * Support for uploading of files - * @return upload The upload of this {@link MetaExtensionsDatasetCapabilities} instance. - **/ + * Support for uploading of files + * @return upload The upload of this {@link MetaExtensionsDatasetCapabilities} instance. + */ @Nonnull public Boolean isUpload() { return upload; } /** - * Set the upload of this {@link MetaExtensionsDatasetCapabilities} instance. - * - * @param upload Support for uploading of files - */ + * Set the upload of this {@link MetaExtensionsDatasetCapabilities} instance. + * + * @param upload Support for uploading of files + */ public void setUpload( @Nonnull final Boolean upload) { this.upload = upload; } /** - * Set the download of this {@link MetaExtensionsDatasetCapabilities} instance and return the same instance. - * - * @param download Support for downloading of files - * @return The same instance of this {@link MetaExtensionsDatasetCapabilities} class - */ + * Set the download of this {@link MetaExtensionsDatasetCapabilities} instance and return the same instance. + * + * @param download Support for downloading of files + * @return The same instance of this {@link MetaExtensionsDatasetCapabilities} class + */ @Nonnull public MetaExtensionsDatasetCapabilities download(@Nonnull final Boolean download) { this.download = download; return this; } /** - * Support for downloading of files - * @return download The download of this {@link MetaExtensionsDatasetCapabilities} instance. - **/ + * Support for downloading of files + * @return download The download of this {@link MetaExtensionsDatasetCapabilities} instance. + */ @Nonnull public Boolean isDownload() { return download; } /** - * Set the download of this {@link MetaExtensionsDatasetCapabilities} instance. - * - * @param download Support for downloading of files - */ + * Set the download of this {@link MetaExtensionsDatasetCapabilities} instance. + * + * @param download Support for downloading of files + */ public void setDownload( @Nonnull final Boolean download) { this.download = download; } /** - * Set the delete of this {@link MetaExtensionsDatasetCapabilities} instance and return the same instance. - * - * @param delete Support for deletion of files - * @return The same instance of this {@link MetaExtensionsDatasetCapabilities} class - */ + * Set the delete of this {@link MetaExtensionsDatasetCapabilities} instance and return the same instance. + * + * @param delete Support for deletion of files + * @return The same instance of this {@link MetaExtensionsDatasetCapabilities} class + */ @Nonnull public MetaExtensionsDatasetCapabilities delete(@Nonnull final Boolean delete) { this.delete = delete; return this; } /** - * Support for deletion of files - * @return delete The delete of this {@link MetaExtensionsDatasetCapabilities} instance. - **/ + * Support for deletion of files + * @return delete The delete of this {@link MetaExtensionsDatasetCapabilities} instance. + */ @Nonnull public Boolean isDelete() { return delete; } /** - * Set the delete of this {@link MetaExtensionsDatasetCapabilities} instance. - * - * @param delete Support for deletion of files - */ + * Set the delete of this {@link MetaExtensionsDatasetCapabilities} instance. + * + * @param delete Support for deletion of files + */ public void setDelete( @Nonnull final Boolean delete) { this.delete = delete; } @@ -220,5 +219,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/MetaExtensionsDatasetLimits.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/MetaExtensionsDatasetLimits.java index 9af1e22dc..368307885 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/MetaExtensionsDatasetLimits.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/MetaExtensionsDatasetLimits.java @@ -41,7 +41,6 @@ /** * MetaExtensionsDatasetLimits */ - // CHECKSTYLE:OFF public class MetaExtensionsDatasetLimits // CHECKSTYLE:ON @@ -60,77 +59,77 @@ public class MetaExtensionsDatasetLimits private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the maxUploadFileSize of this {@link MetaExtensionsDatasetLimits} instance and return the same instance. - * - * @param maxUploadFileSize Max size (in bytes) of a single uploaded file allowed by this runtime per resource group. - * @return The same instance of this {@link MetaExtensionsDatasetLimits} class - */ + * Set the maxUploadFileSize of this {@link MetaExtensionsDatasetLimits} instance and return the same instance. + * + * @param maxUploadFileSize Max size (in bytes) of a single uploaded file allowed by this runtime per resource group. + * @return The same instance of this {@link MetaExtensionsDatasetLimits} class + */ @Nonnull public MetaExtensionsDatasetLimits maxUploadFileSize(@Nonnull final Integer maxUploadFileSize) { this.maxUploadFileSize = maxUploadFileSize; return this; } /** - * Max size (in bytes) of a single uploaded file allowed by this runtime per resource group. - * @return maxUploadFileSize The maxUploadFileSize of this {@link MetaExtensionsDatasetLimits} instance. - **/ + * Max size (in bytes) of a single uploaded file allowed by this runtime per resource group. + * @return maxUploadFileSize The maxUploadFileSize of this {@link MetaExtensionsDatasetLimits} instance. + */ @Nonnull public Integer getMaxUploadFileSize() { return maxUploadFileSize; } /** - * Set the maxUploadFileSize of this {@link MetaExtensionsDatasetLimits} instance. - * - * @param maxUploadFileSize Max size (in bytes) of a single uploaded file allowed by this runtime per resource group. - */ + * Set the maxUploadFileSize of this {@link MetaExtensionsDatasetLimits} instance. + * + * @param maxUploadFileSize Max size (in bytes) of a single uploaded file allowed by this runtime per resource group. + */ public void setMaxUploadFileSize( @Nonnull final Integer maxUploadFileSize) { this.maxUploadFileSize = maxUploadFileSize; } /** - * Set the maxFilesPerDataset of this {@link MetaExtensionsDatasetLimits} instance and return the same instance. - * - * @param maxFilesPerDataset Max number of files per dataset. <0 means unlimited. - * @return The same instance of this {@link MetaExtensionsDatasetLimits} class - */ + * Set the maxFilesPerDataset of this {@link MetaExtensionsDatasetLimits} instance and return the same instance. + * + * @param maxFilesPerDataset Max number of files per dataset. <0 means unlimited. + * @return The same instance of this {@link MetaExtensionsDatasetLimits} class + */ @Nonnull public MetaExtensionsDatasetLimits maxFilesPerDataset(@Nonnull final Integer maxFilesPerDataset) { this.maxFilesPerDataset = maxFilesPerDataset; return this; } /** - * Max number of files per dataset. <0 means unlimited. - * @return maxFilesPerDataset The maxFilesPerDataset of this {@link MetaExtensionsDatasetLimits} instance. - **/ + * Max number of files per dataset. <0 means unlimited. + * @return maxFilesPerDataset The maxFilesPerDataset of this {@link MetaExtensionsDatasetLimits} instance. + */ @Nonnull public Integer getMaxFilesPerDataset() { return maxFilesPerDataset; } /** - * Set the maxFilesPerDataset of this {@link MetaExtensionsDatasetLimits} instance. - * - * @param maxFilesPerDataset Max number of files per dataset. <0 means unlimited. - */ + * Set the maxFilesPerDataset of this {@link MetaExtensionsDatasetLimits} instance. + * + * @param maxFilesPerDataset Max number of files per dataset. <0 means unlimited. + */ public void setMaxFilesPerDataset( @Nonnull final Integer maxFilesPerDataset) { this.maxFilesPerDataset = maxFilesPerDataset; } /** - * Set the acceptedContentTypes of this {@link MetaExtensionsDatasetLimits} instance and return the same instance. - * - * @param acceptedContentTypes The acceptedContentTypes of this {@link MetaExtensionsDatasetLimits} - * @return The same instance of this {@link MetaExtensionsDatasetLimits} class - */ + * Set the acceptedContentTypes of this {@link MetaExtensionsDatasetLimits} instance and return the same instance. + * + * @param acceptedContentTypes The acceptedContentTypes of this {@link MetaExtensionsDatasetLimits} + * @return The same instance of this {@link MetaExtensionsDatasetLimits} class + */ @Nonnull public MetaExtensionsDatasetLimits acceptedContentTypes(@Nonnull final List acceptedContentTypes) { this.acceptedContentTypes = acceptedContentTypes; return this; } /** - * Add one acceptedContentTypes instance to this {@link MetaExtensionsDatasetLimits}. - * @param acceptedContentTypesItem The acceptedContentTypes that should be added - * @return The same instance of type {@link MetaExtensionsDatasetLimits} - */ - @Nonnull public MetaExtensionsDatasetLimits addacceptedContentTypesItem( @Nonnull final String acceptedContentTypesItem) { + * Add one acceptedContentTypes instance to this {@link MetaExtensionsDatasetLimits}. + * @param acceptedContentTypesItem The acceptedContentTypes that should be added + * @return The same instance of type {@link MetaExtensionsDatasetLimits} + */ + @Nonnull public MetaExtensionsDatasetLimits addAcceptedContentTypesItem( @Nonnull final String acceptedContentTypesItem) { if (this.acceptedContentTypes == null) { this.acceptedContentTypes = new ArrayList<>(); } @@ -139,18 +138,18 @@ public void setMaxFilesPerDataset( @Nonnull final Integer maxFilesPerDataset) { } /** - * Get acceptedContentTypes - * @return acceptedContentTypes The acceptedContentTypes of this {@link MetaExtensionsDatasetLimits} instance. - **/ + * Get acceptedContentTypes + * @return acceptedContentTypes The acceptedContentTypes of this {@link MetaExtensionsDatasetLimits} instance. + */ @Nonnull public List getAcceptedContentTypes() { return acceptedContentTypes; } /** - * Set the acceptedContentTypes of this {@link MetaExtensionsDatasetLimits} instance. - * - * @param acceptedContentTypes The acceptedContentTypes of this {@link MetaExtensionsDatasetLimits} - */ + * Set the acceptedContentTypes of this {@link MetaExtensionsDatasetLimits} instance. + * + * @param acceptedContentTypes The acceptedContentTypes of this {@link MetaExtensionsDatasetLimits} + */ public void setAcceptedContentTypes( @Nonnull final List acceptedContentTypes) { this.acceptedContentTypes = acceptedContentTypes; } @@ -235,5 +234,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/MetaExtensionsMetrics.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/MetaExtensionsMetrics.java index 5ecac644d..b94f84755 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/MetaExtensionsMetrics.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/MetaExtensionsMetrics.java @@ -39,7 +39,6 @@ /** * MetaExtensionsMetrics */ - // CHECKSTYLE:OFF public class MetaExtensionsMetrics // CHECKSTYLE:ON @@ -55,57 +54,57 @@ public class MetaExtensionsMetrics private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the version of this {@link MetaExtensionsMetrics} instance and return the same instance. - * - * @param version The version of this {@link MetaExtensionsMetrics} - * @return The same instance of this {@link MetaExtensionsMetrics} class - */ + * Set the version of this {@link MetaExtensionsMetrics} instance and return the same instance. + * + * @param version The version of this {@link MetaExtensionsMetrics} + * @return The same instance of this {@link MetaExtensionsMetrics} class + */ @Nonnull public MetaExtensionsMetrics version(@Nonnull final String version) { this.version = version; return this; } /** - * Get version - * @return version The version of this {@link MetaExtensionsMetrics} instance. - **/ + * Get version + * @return version The version of this {@link MetaExtensionsMetrics} instance. + */ @Nonnull public String getVersion() { return version; } /** - * Set the version of this {@link MetaExtensionsMetrics} instance. - * - * @param version The version of this {@link MetaExtensionsMetrics} - */ + * Set the version of this {@link MetaExtensionsMetrics} instance. + * + * @param version The version of this {@link MetaExtensionsMetrics} + */ public void setVersion( @Nonnull final String version) { this.version = version; } /** - * Set the capabilities of this {@link MetaExtensionsMetrics} instance and return the same instance. - * - * @param capabilities The capabilities of this {@link MetaExtensionsMetrics} - * @return The same instance of this {@link MetaExtensionsMetrics} class - */ + * Set the capabilities of this {@link MetaExtensionsMetrics} instance and return the same instance. + * + * @param capabilities The capabilities of this {@link MetaExtensionsMetrics} + * @return The same instance of this {@link MetaExtensionsMetrics} class + */ @Nonnull public MetaExtensionsMetrics capabilities(@Nonnull final MetaExtensionsMetricsCapabilities capabilities) { this.capabilities = capabilities; return this; } /** - * Get capabilities - * @return capabilities The capabilities of this {@link MetaExtensionsMetrics} instance. - **/ + * Get capabilities + * @return capabilities The capabilities of this {@link MetaExtensionsMetrics} instance. + */ @Nonnull public MetaExtensionsMetricsCapabilities getCapabilities() { return capabilities; } /** - * Set the capabilities of this {@link MetaExtensionsMetrics} instance. - * - * @param capabilities The capabilities of this {@link MetaExtensionsMetrics} - */ + * Set the capabilities of this {@link MetaExtensionsMetrics} instance. + * + * @param capabilities The capabilities of this {@link MetaExtensionsMetrics} + */ public void setCapabilities( @Nonnull final MetaExtensionsMetricsCapabilities capabilities) { this.capabilities = capabilities; } @@ -188,5 +187,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/MetaExtensionsMetricsCapabilities.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/MetaExtensionsMetricsCapabilities.java index d9e443540..294d09c44 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/MetaExtensionsMetricsCapabilities.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/MetaExtensionsMetricsCapabilities.java @@ -38,7 +38,6 @@ /** * List of Metrics extension capabilities */ - // CHECKSTYLE:OFF public class MetaExtensionsMetricsCapabilities // CHECKSTYLE:ON @@ -51,29 +50,29 @@ public class MetaExtensionsMetricsCapabilities private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the extendedResults of this {@link MetaExtensionsMetricsCapabilities} instance and return the same instance. - * - * @param extendedResults Support for returning extended results - * @return The same instance of this {@link MetaExtensionsMetricsCapabilities} class - */ + * Set the extendedResults of this {@link MetaExtensionsMetricsCapabilities} instance and return the same instance. + * + * @param extendedResults Support for returning extended results + * @return The same instance of this {@link MetaExtensionsMetricsCapabilities} class + */ @Nonnull public MetaExtensionsMetricsCapabilities extendedResults(@Nonnull final Boolean extendedResults) { this.extendedResults = extendedResults; return this; } /** - * Support for returning extended results - * @return extendedResults The extendedResults of this {@link MetaExtensionsMetricsCapabilities} instance. - **/ + * Support for returning extended results + * @return extendedResults The extendedResults of this {@link MetaExtensionsMetricsCapabilities} instance. + */ @Nonnull public Boolean isExtendedResults() { return extendedResults; } /** - * Set the extendedResults of this {@link MetaExtensionsMetricsCapabilities} instance. - * - * @param extendedResults Support for returning extended results - */ + * Set the extendedResults of this {@link MetaExtensionsMetricsCapabilities} instance. + * + * @param extendedResults Support for returning extended results + */ public void setExtendedResults( @Nonnull final Boolean extendedResults) { this.extendedResults = extendedResults; } @@ -154,5 +153,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/MetaGet404Response.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/MetaGet404Response.java index f37b72f5a..c83749b05 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/MetaGet404Response.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/MetaGet404Response.java @@ -39,7 +39,6 @@ /** * MetaGet404Response */ - // CHECKSTYLE:OFF public class MetaGet404Response // CHECKSTYLE:ON @@ -52,29 +51,29 @@ public class MetaGet404Response private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the error of this {@link MetaGet404Response} instance and return the same instance. - * - * @param error The error of this {@link MetaGet404Response} - * @return The same instance of this {@link MetaGet404Response} class - */ + * Set the error of this {@link MetaGet404Response} instance and return the same instance. + * + * @param error The error of this {@link MetaGet404Response} + * @return The same instance of this {@link MetaGet404Response} class + */ @Nonnull public MetaGet404Response error(@Nonnull final MetaApiError error) { this.error = error; return this; } /** - * Get error - * @return error The error of this {@link MetaGet404Response} instance. - **/ + * Get error + * @return error The error of this {@link MetaGet404Response} instance. + */ @Nonnull public MetaApiError getError() { return error; } /** - * Set the error of this {@link MetaGet404Response} instance. - * - * @param error The error of this {@link MetaGet404Response} - */ + * Set the error of this {@link MetaGet404Response} instance. + * + * @param error The error of this {@link MetaGet404Response} + */ public void setError( @Nonnull final MetaApiError error) { this.error = error; } @@ -155,5 +154,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/MetricsFind400Response.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/MetricsFind400Response.java index 4df4bda78..b49ce6141 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/MetricsFind400Response.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/MetricsFind400Response.java @@ -39,7 +39,6 @@ /** * MetricsFind400Response */ - // CHECKSTYLE:OFF public class MetricsFind400Response // CHECKSTYLE:ON @@ -52,29 +51,29 @@ public class MetricsFind400Response private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the error of this {@link MetricsFind400Response} instance and return the same instance. - * - * @param error The error of this {@link MetricsFind400Response} - * @return The same instance of this {@link MetricsFind400Response} class - */ + * Set the error of this {@link MetricsFind400Response} instance and return the same instance. + * + * @param error The error of this {@link MetricsFind400Response} + * @return The same instance of this {@link MetricsFind400Response} class + */ @Nonnull public MetricsFind400Response error(@Nonnull final TrckApiError error) { this.error = error; return this; } /** - * Get error - * @return error The error of this {@link MetricsFind400Response} instance. - **/ + * Get error + * @return error The error of this {@link MetricsFind400Response} instance. + */ @Nonnull public TrckApiError getError() { return error; } /** - * Set the error of this {@link MetricsFind400Response} instance. - * - * @param error The error of this {@link MetricsFind400Response} - */ + * Set the error of this {@link MetricsFind400Response} instance. + * + * @param error The error of this {@link MetricsFind400Response} + */ public void setError( @Nonnull final TrckApiError error) { this.error = error; } @@ -155,5 +154,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/RTAArtifact.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/RTAArtifact.java index 872615c30..32026a365 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/RTAArtifact.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/RTAArtifact.java @@ -43,7 +43,6 @@ /** * Entity having labels */ - // CHECKSTYLE:OFF public class RTAArtifact // CHECKSTYLE:ON @@ -138,161 +137,161 @@ public enum KindEnum { private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the name of this {@link RTAArtifact} instance and return the same instance. - * - * @param name Name of the artifact; this is used for dependent pipelines to resolve an artifact - * @return The same instance of this {@link RTAArtifact} class - */ + * Set the name of this {@link RTAArtifact} instance and return the same instance. + * + * @param name Name of the artifact; this is used for dependent pipelines to resolve an artifact + * @return The same instance of this {@link RTAArtifact} class + */ @Nonnull public RTAArtifact name(@Nonnull final String name) { this.name = name; return this; } /** - * Name of the artifact; this is used for dependent pipelines to resolve an artifact - * @return name The name of this {@link RTAArtifact} instance. - **/ + * Name of the artifact; this is used for dependent pipelines to resolve an artifact + * @return name The name of this {@link RTAArtifact} instance. + */ @Nonnull public String getName() { return name; } /** - * Set the name of this {@link RTAArtifact} instance. - * - * @param name Name of the artifact; this is used for dependent pipelines to resolve an artifact - */ + * Set the name of this {@link RTAArtifact} instance. + * + * @param name Name of the artifact; this is used for dependent pipelines to resolve an artifact + */ public void setName( @Nonnull final String name) { this.name = name; } /** - * Set the executionId of this {@link RTAArtifact} instance and return the same instance. - * - * @param executionId ID of the execution - * @return The same instance of this {@link RTAArtifact} class - */ + * Set the executionId of this {@link RTAArtifact} instance and return the same instance. + * + * @param executionId ID of the execution + * @return The same instance of this {@link RTAArtifact} class + */ @Nonnull public RTAArtifact executionId(@Nonnull final String executionId) { this.executionId = executionId; return this; } /** - * ID of the execution - * @return executionId The executionId of this {@link RTAArtifact} instance. - **/ + * ID of the execution + * @return executionId The executionId of this {@link RTAArtifact} instance. + */ @Nonnull public String getExecutionId() { return executionId; } /** - * Set the executionId of this {@link RTAArtifact} instance. - * - * @param executionId ID of the execution - */ + * Set the executionId of this {@link RTAArtifact} instance. + * + * @param executionId ID of the execution + */ public void setExecutionId( @Nonnull final String executionId) { this.executionId = executionId; } /** - * Set the url of this {@link RTAArtifact} instance and return the same instance. - * - * @param url Reference to the location of the artifact. Note, the credentials will be found in a secret called 'some_bucket-object_store_secret'. If not provided, a default will be assumed. - * @return The same instance of this {@link RTAArtifact} class - */ + * Set the url of this {@link RTAArtifact} instance and return the same instance. + * + * @param url Reference to the location of the artifact. Note, the credentials will be found in a secret called 'some_bucket-object_store_secret'. If not provided, a default will be assumed. + * @return The same instance of this {@link RTAArtifact} class + */ @Nonnull public RTAArtifact url(@Nonnull final String url) { this.url = url; return this; } /** - * Reference to the location of the artifact. Note, the credentials will be found in a secret called 'some_bucket-object_store_secret'. If not provided, a default will be assumed. - * @return url The url of this {@link RTAArtifact} instance. - **/ + * Reference to the location of the artifact. Note, the credentials will be found in a secret called 'some_bucket-object_store_secret'. If not provided, a default will be assumed. + * @return url The url of this {@link RTAArtifact} instance. + */ @Nonnull public String getUrl() { return url; } /** - * Set the url of this {@link RTAArtifact} instance. - * - * @param url Reference to the location of the artifact. Note, the credentials will be found in a secret called 'some_bucket-object_store_secret'. If not provided, a default will be assumed. - */ + * Set the url of this {@link RTAArtifact} instance. + * + * @param url Reference to the location of the artifact. Note, the credentials will be found in a secret called 'some_bucket-object_store_secret'. If not provided, a default will be assumed. + */ public void setUrl( @Nonnull final String url) { this.url = url; } /** - * Set the signature of this {@link RTAArtifact} instance and return the same instance. - * - * @param signature The signature of this {@link RTAArtifact} - * @return The same instance of this {@link RTAArtifact} class - */ + * Set the signature of this {@link RTAArtifact} instance and return the same instance. + * + * @param signature The signature of this {@link RTAArtifact} + * @return The same instance of this {@link RTAArtifact} class + */ @Nonnull public RTAArtifact signature(@Nonnull final String signature) { this.signature = signature; return this; } /** - * Get signature - * @return signature The signature of this {@link RTAArtifact} instance. - **/ + * Get signature + * @return signature The signature of this {@link RTAArtifact} instance. + */ @Nonnull public String getSignature() { return signature; } /** - * Set the signature of this {@link RTAArtifact} instance. - * - * @param signature The signature of this {@link RTAArtifact} - */ + * Set the signature of this {@link RTAArtifact} instance. + * + * @param signature The signature of this {@link RTAArtifact} + */ public void setSignature( @Nonnull final String signature) { this.signature = signature; } /** - * Set the kind of this {@link RTAArtifact} instance and return the same instance. - * - * @param kind Kind of the artifact, i.e. model or dataset - * @return The same instance of this {@link RTAArtifact} class - */ + * Set the kind of this {@link RTAArtifact} instance and return the same instance. + * + * @param kind Kind of the artifact, i.e. model or dataset + * @return The same instance of this {@link RTAArtifact} class + */ @Nonnull public RTAArtifact kind(@Nonnull final KindEnum kind) { this.kind = kind; return this; } /** - * Kind of the artifact, i.e. model or dataset - * @return kind The kind of this {@link RTAArtifact} instance. - **/ + * Kind of the artifact, i.e. model or dataset + * @return kind The kind of this {@link RTAArtifact} instance. + */ @Nonnull public KindEnum getKind() { return kind; } /** - * Set the kind of this {@link RTAArtifact} instance. - * - * @param kind Kind of the artifact, i.e. model or dataset - */ + * Set the kind of this {@link RTAArtifact} instance. + * + * @param kind Kind of the artifact, i.e. model or dataset + */ public void setKind( @Nonnull final KindEnum kind) { this.kind = kind; } /** - * Set the labels of this {@link RTAArtifact} instance and return the same instance. - * - * @param labels Arbitrary labels as meta information - * @return The same instance of this {@link RTAArtifact} class - */ + * Set the labels of this {@link RTAArtifact} instance and return the same instance. + * + * @param labels Arbitrary labels as meta information + * @return The same instance of this {@link RTAArtifact} class + */ @Nonnull public RTAArtifact labels(@Nonnull final List labels) { this.labels = labels; return this; } /** - * Add one labels instance to this {@link RTAArtifact}. - * @param labelsItem The labels that should be added - * @return The same instance of type {@link RTAArtifact} - */ - @Nonnull public RTAArtifact addlabelsItem( @Nonnull final RTALabel labelsItem) { + * Add one labels instance to this {@link RTAArtifact}. + * @param labelsItem The labels that should be added + * @return The same instance of type {@link RTAArtifact} + */ + @Nonnull public RTAArtifact addLabelsItem( @Nonnull final RTALabel labelsItem) { if (this.labels == null) { this.labels = new ArrayList<>(); } @@ -301,46 +300,46 @@ public void setKind( @Nonnull final KindEnum kind) { } /** - * Arbitrary labels as meta information - * @return labels The labels of this {@link RTAArtifact} instance. - **/ + * Arbitrary labels as meta information + * @return labels The labels of this {@link RTAArtifact} instance. + */ @Nonnull public List getLabels() { return labels; } /** - * Set the labels of this {@link RTAArtifact} instance. - * - * @param labels Arbitrary labels as meta information - */ + * Set the labels of this {@link RTAArtifact} instance. + * + * @param labels Arbitrary labels as meta information + */ public void setLabels( @Nonnull final List labels) { this.labels = labels; } /** - * Set the createdAt of this {@link RTAArtifact} instance and return the same instance. - * - * @param createdAt Timestamp of resource creation - * @return The same instance of this {@link RTAArtifact} class - */ + * Set the createdAt of this {@link RTAArtifact} instance and return the same instance. + * + * @param createdAt Timestamp of resource creation + * @return The same instance of this {@link RTAArtifact} class + */ @Nonnull public RTAArtifact createdAt(@Nonnull final OffsetDateTime createdAt) { this.createdAt = createdAt; return this; } /** - * Timestamp of resource creation - * @return createdAt The createdAt of this {@link RTAArtifact} instance. - **/ + * Timestamp of resource creation + * @return createdAt The createdAt of this {@link RTAArtifact} instance. + */ @Nonnull public OffsetDateTime getCreatedAt() { return createdAt; } /** - * Set the createdAt of this {@link RTAArtifact} instance. - * - * @param createdAt Timestamp of resource creation - */ + * Set the createdAt of this {@link RTAArtifact} instance. + * + * @param createdAt Timestamp of resource creation + */ public void setCreatedAt( @Nonnull final OffsetDateTime createdAt) { this.createdAt = createdAt; } @@ -433,5 +432,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/RTAArtifactLabel.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/RTAArtifactLabel.java index 43b089764..026af9b07 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/RTAArtifactLabel.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/RTAArtifactLabel.java @@ -38,7 +38,6 @@ /** * RTAArtifactLabel */ - // CHECKSTYLE:OFF public class RTAArtifactLabel // CHECKSTYLE:ON @@ -54,57 +53,57 @@ public class RTAArtifactLabel private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the key of this {@link RTAArtifactLabel} instance and return the same instance. - * - * @param key The key of this {@link RTAArtifactLabel} - * @return The same instance of this {@link RTAArtifactLabel} class - */ + * Set the key of this {@link RTAArtifactLabel} instance and return the same instance. + * + * @param key The key of this {@link RTAArtifactLabel} + * @return The same instance of this {@link RTAArtifactLabel} class + */ @Nonnull public RTAArtifactLabel key(@Nonnull final String key) { this.key = key; return this; } /** - * Get key - * @return key The key of this {@link RTAArtifactLabel} instance. - **/ + * Get key + * @return key The key of this {@link RTAArtifactLabel} instance. + */ @Nonnull public String getKey() { return key; } /** - * Set the key of this {@link RTAArtifactLabel} instance. - * - * @param key The key of this {@link RTAArtifactLabel} - */ + * Set the key of this {@link RTAArtifactLabel} instance. + * + * @param key The key of this {@link RTAArtifactLabel} + */ public void setKey( @Nonnull final String key) { this.key = key; } /** - * Set the value of this {@link RTAArtifactLabel} instance and return the same instance. - * - * @param value The value of this {@link RTAArtifactLabel} - * @return The same instance of this {@link RTAArtifactLabel} class - */ + * Set the value of this {@link RTAArtifactLabel} instance and return the same instance. + * + * @param value The value of this {@link RTAArtifactLabel} + * @return The same instance of this {@link RTAArtifactLabel} class + */ @Nonnull public RTAArtifactLabel value(@Nonnull final String value) { this.value = value; return this; } /** - * Get value - * @return value The value of this {@link RTAArtifactLabel} instance. - **/ + * Get value + * @return value The value of this {@link RTAArtifactLabel} instance. + */ @Nonnull public String getValue() { return value; } /** - * Set the value of this {@link RTAArtifactLabel} instance. - * - * @param value The value of this {@link RTAArtifactLabel} - */ + * Set the value of this {@link RTAArtifactLabel} instance. + * + * @param value The value of this {@link RTAArtifactLabel} + */ public void setValue( @Nonnull final String value) { this.value = value; } @@ -187,5 +186,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/RTABackendDetails.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/RTABackendDetails.java index 13e6719e6..26477aa40 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/RTABackendDetails.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/RTABackendDetails.java @@ -38,7 +38,6 @@ /** * RTABackendDetails */ - // CHECKSTYLE:OFF public class RTABackendDetails // CHECKSTYLE:ON @@ -51,29 +50,29 @@ public class RTABackendDetails private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the backendDetails of this {@link RTABackendDetails} instance and return the same instance. - * - * @param backendDetails Current details of the deployment - * @return The same instance of this {@link RTABackendDetails} class - */ + * Set the backendDetails of this {@link RTABackendDetails} instance and return the same instance. + * + * @param backendDetails Current details of the deployment + * @return The same instance of this {@link RTABackendDetails} class + */ @Nonnull public RTABackendDetails backendDetails(@Nonnull final Object backendDetails) { this.backendDetails = backendDetails; return this; } /** - * Current details of the deployment - * @return backendDetails The backendDetails of this {@link RTABackendDetails} instance. - **/ + * Current details of the deployment + * @return backendDetails The backendDetails of this {@link RTABackendDetails} instance. + */ @Nonnull public Object getBackendDetails() { return backendDetails; } /** - * Set the backendDetails of this {@link RTABackendDetails} instance. - * - * @param backendDetails Current details of the deployment - */ + * Set the backendDetails of this {@link RTABackendDetails} instance. + * + * @param backendDetails Current details of the deployment + */ public void setBackendDetails( @Nonnull final Object backendDetails) { this.backendDetails = backendDetails; } @@ -154,5 +153,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/RTADeployment.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/RTADeployment.java index 895204a8d..fa2960c3a 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/RTADeployment.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/RTADeployment.java @@ -39,7 +39,6 @@ /** * Detailed data about an inference-pipeline deployment */ - // CHECKSTYLE:OFF public class RTADeployment // CHECKSTYLE:ON @@ -223,337 +222,337 @@ public enum LastOperationEnum { private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the scenarioId of this {@link RTADeployment} instance and return the same instance. - * - * @param scenarioId ID of the scenario - * @return The same instance of this {@link RTADeployment} class - */ + * Set the scenarioId of this {@link RTADeployment} instance and return the same instance. + * + * @param scenarioId ID of the scenario + * @return The same instance of this {@link RTADeployment} class + */ @Nonnull public RTADeployment scenarioId(@Nonnull final String scenarioId) { this.scenarioId = scenarioId; return this; } /** - * ID of the scenario - * @return scenarioId The scenarioId of this {@link RTADeployment} instance. - **/ + * ID of the scenario + * @return scenarioId The scenarioId of this {@link RTADeployment} instance. + */ @Nonnull public String getScenarioId() { return scenarioId; } /** - * Set the scenarioId of this {@link RTADeployment} instance. - * - * @param scenarioId ID of the scenario - */ + * Set the scenarioId of this {@link RTADeployment} instance. + * + * @param scenarioId ID of the scenario + */ public void setScenarioId( @Nonnull final String scenarioId) { this.scenarioId = scenarioId; } /** - * Set the executableId of this {@link RTADeployment} instance and return the same instance. - * - * @param executableId ID of the executable - * @return The same instance of this {@link RTADeployment} class - */ + * Set the executableId of this {@link RTADeployment} instance and return the same instance. + * + * @param executableId ID of the executable + * @return The same instance of this {@link RTADeployment} class + */ @Nonnull public RTADeployment executableId(@Nonnull final String executableId) { this.executableId = executableId; return this; } /** - * ID of the executable - * @return executableId The executableId of this {@link RTADeployment} instance. - **/ + * ID of the executable + * @return executableId The executableId of this {@link RTADeployment} instance. + */ @Nonnull public String getExecutableId() { return executableId; } /** - * Set the executableId of this {@link RTADeployment} instance. - * - * @param executableId ID of the executable - */ + * Set the executableId of this {@link RTADeployment} instance. + * + * @param executableId ID of the executable + */ public void setExecutableId( @Nonnull final String executableId) { this.executableId = executableId; } /** - * Set the id of this {@link RTADeployment} instance and return the same instance. - * - * @param id ID of the deployment - * @return The same instance of this {@link RTADeployment} class - */ + * Set the id of this {@link RTADeployment} instance and return the same instance. + * + * @param id ID of the deployment + * @return The same instance of this {@link RTADeployment} class + */ @Nonnull public RTADeployment id(@Nonnull final String id) { this.id = id; return this; } /** - * ID of the deployment - * @return id The id of this {@link RTADeployment} instance. - **/ + * ID of the deployment + * @return id The id of this {@link RTADeployment} instance. + */ @Nonnull public String getId() { return id; } /** - * Set the id of this {@link RTADeployment} instance. - * - * @param id ID of the deployment - */ + * Set the id of this {@link RTADeployment} instance. + * + * @param id ID of the deployment + */ public void setId( @Nonnull final String id) { this.id = id; } /** - * Set the deploymentUrl of this {@link RTADeployment} instance and return the same instance. - * - * @param deploymentUrl Consumption URL of the pipeline deployment - * @return The same instance of this {@link RTADeployment} class - */ + * Set the deploymentUrl of this {@link RTADeployment} instance and return the same instance. + * + * @param deploymentUrl Consumption URL of the pipeline deployment + * @return The same instance of this {@link RTADeployment} class + */ @Nonnull public RTADeployment deploymentUrl(@Nonnull final String deploymentUrl) { this.deploymentUrl = deploymentUrl; return this; } /** - * Consumption URL of the pipeline deployment - * @return deploymentUrl The deploymentUrl of this {@link RTADeployment} instance. - **/ + * Consumption URL of the pipeline deployment + * @return deploymentUrl The deploymentUrl of this {@link RTADeployment} instance. + */ @Nonnull public String getDeploymentUrl() { return deploymentUrl; } /** - * Set the deploymentUrl of this {@link RTADeployment} instance. - * - * @param deploymentUrl Consumption URL of the pipeline deployment - */ + * Set the deploymentUrl of this {@link RTADeployment} instance. + * + * @param deploymentUrl Consumption URL of the pipeline deployment + */ public void setDeploymentUrl( @Nonnull final String deploymentUrl) { this.deploymentUrl = deploymentUrl; } /** - * Set the latestRunningTargetId of this {@link RTADeployment} instance and return the same instance. - * - * @param latestRunningTargetId Target ID of the latest running deployment - * @return The same instance of this {@link RTADeployment} class - */ + * Set the latestRunningTargetId of this {@link RTADeployment} instance and return the same instance. + * + * @param latestRunningTargetId Target ID of the latest running deployment + * @return The same instance of this {@link RTADeployment} class + */ @Nonnull public RTADeployment latestRunningTargetId(@Nonnull final String latestRunningTargetId) { this.latestRunningTargetId = latestRunningTargetId; return this; } /** - * Target ID of the latest running deployment - * @return latestRunningTargetId The latestRunningTargetId of this {@link RTADeployment} instance. - **/ + * Target ID of the latest running deployment + * @return latestRunningTargetId The latestRunningTargetId of this {@link RTADeployment} instance. + */ @Nonnull public String getLatestRunningTargetId() { return latestRunningTargetId; } /** - * Set the latestRunningTargetId of this {@link RTADeployment} instance. - * - * @param latestRunningTargetId Target ID of the latest running deployment - */ + * Set the latestRunningTargetId of this {@link RTADeployment} instance. + * + * @param latestRunningTargetId Target ID of the latest running deployment + */ public void setLatestRunningTargetId( @Nonnull final String latestRunningTargetId) { this.latestRunningTargetId = latestRunningTargetId; } /** - * Set the targetId of this {@link RTADeployment} instance and return the same instance. - * - * @param targetId Client provided reference, with which the status of a PATCHed deployment can be tracked - * @return The same instance of this {@link RTADeployment} class - */ + * Set the targetId of this {@link RTADeployment} instance and return the same instance. + * + * @param targetId Client provided reference, with which the status of a PATCHed deployment can be tracked + * @return The same instance of this {@link RTADeployment} class + */ @Nonnull public RTADeployment targetId(@Nonnull final String targetId) { this.targetId = targetId; return this; } /** - * Client provided reference, with which the status of a PATCHed deployment can be tracked - * @return targetId The targetId of this {@link RTADeployment} instance. - **/ + * Client provided reference, with which the status of a PATCHed deployment can be tracked + * @return targetId The targetId of this {@link RTADeployment} instance. + */ @Nonnull public String getTargetId() { return targetId; } /** - * Set the targetId of this {@link RTADeployment} instance. - * - * @param targetId Client provided reference, with which the status of a PATCHed deployment can be tracked - */ + * Set the targetId of this {@link RTADeployment} instance. + * + * @param targetId Client provided reference, with which the status of a PATCHed deployment can be tracked + */ public void setTargetId( @Nonnull final String targetId) { this.targetId = targetId; } /** - * Set the ttl of this {@link RTADeployment} instance and return the same instance. - * - * @param ttl TTL value of deployment - * @return The same instance of this {@link RTADeployment} class - */ + * Set the ttl of this {@link RTADeployment} instance and return the same instance. + * + * @param ttl TTL value of deployment + * @return The same instance of this {@link RTADeployment} class + */ @Nonnull public RTADeployment ttl(@Nonnull final String ttl) { this.ttl = ttl; return this; } /** - * TTL value of deployment - * @return ttl The ttl of this {@link RTADeployment} instance. - **/ + * TTL value of deployment + * @return ttl The ttl of this {@link RTADeployment} instance. + */ @Nonnull public String getTtl() { return ttl; } /** - * Set the ttl of this {@link RTADeployment} instance. - * - * @param ttl TTL value of deployment - */ + * Set the ttl of this {@link RTADeployment} instance. + * + * @param ttl TTL value of deployment + */ public void setTtl( @Nonnull final String ttl) { this.ttl = ttl; } /** - * Set the status of this {@link RTADeployment} instance and return the same instance. - * - * @param status Deployment status - * @return The same instance of this {@link RTADeployment} class - */ + * Set the status of this {@link RTADeployment} instance and return the same instance. + * + * @param status Deployment status + * @return The same instance of this {@link RTADeployment} class + */ @Nonnull public RTADeployment status(@Nonnull final StatusEnum status) { this.status = status; return this; } /** - * Deployment status - * @return status The status of this {@link RTADeployment} instance. - **/ + * Deployment status + * @return status The status of this {@link RTADeployment} instance. + */ @Nonnull public StatusEnum getStatus() { return status; } /** - * Set the status of this {@link RTADeployment} instance. - * - * @param status Deployment status - */ + * Set the status of this {@link RTADeployment} instance. + * + * @param status Deployment status + */ public void setStatus( @Nonnull final StatusEnum status) { this.status = status; } /** - * Set the statusMessage of this {@link RTADeployment} instance and return the same instance. - * - * @param statusMessage Deployment status message - * @return The same instance of this {@link RTADeployment} class - */ + * Set the statusMessage of this {@link RTADeployment} instance and return the same instance. + * + * @param statusMessage Deployment status message + * @return The same instance of this {@link RTADeployment} class + */ @Nonnull public RTADeployment statusMessage(@Nonnull final String statusMessage) { this.statusMessage = statusMessage; return this; } /** - * Deployment status message - * @return statusMessage The statusMessage of this {@link RTADeployment} instance. - **/ + * Deployment status message + * @return statusMessage The statusMessage of this {@link RTADeployment} instance. + */ @Nonnull public String getStatusMessage() { return statusMessage; } /** - * Set the statusMessage of this {@link RTADeployment} instance. - * - * @param statusMessage Deployment status message - */ + * Set the statusMessage of this {@link RTADeployment} instance. + * + * @param statusMessage Deployment status message + */ public void setStatusMessage( @Nonnull final String statusMessage) { this.statusMessage = statusMessage; } /** - * Set the lastOperation of this {@link RTADeployment} instance and return the same instance. - * - * @param lastOperation Reflection of user's action on deployment. The value will be CREATE after user sends POST - create deployment, UPDATE after user sends PATCH - update deployment, and DELETE after user sends DELETE - delete deployment - * @return The same instance of this {@link RTADeployment} class - */ + * Set the lastOperation of this {@link RTADeployment} instance and return the same instance. + * + * @param lastOperation Reflection of user's action on deployment. The value will be CREATE after user sends POST - create deployment, UPDATE after user sends PATCH - update deployment, and DELETE after user sends DELETE - delete deployment + * @return The same instance of this {@link RTADeployment} class + */ @Nonnull public RTADeployment lastOperation(@Nonnull final LastOperationEnum lastOperation) { this.lastOperation = lastOperation; return this; } /** - * Reflection of user's action on deployment. The value will be CREATE after user sends POST - create deployment, UPDATE after user sends PATCH - update deployment, and DELETE after user sends DELETE - delete deployment - * @return lastOperation The lastOperation of this {@link RTADeployment} instance. - **/ + * Reflection of user's action on deployment. The value will be CREATE after user sends POST - create deployment, UPDATE after user sends PATCH - update deployment, and DELETE after user sends DELETE - delete deployment + * @return lastOperation The lastOperation of this {@link RTADeployment} instance. + */ @Nonnull public LastOperationEnum getLastOperation() { return lastOperation; } /** - * Set the lastOperation of this {@link RTADeployment} instance. - * - * @param lastOperation Reflection of user's action on deployment. The value will be CREATE after user sends POST - create deployment, UPDATE after user sends PATCH - update deployment, and DELETE after user sends DELETE - delete deployment - */ + * Set the lastOperation of this {@link RTADeployment} instance. + * + * @param lastOperation Reflection of user's action on deployment. The value will be CREATE after user sends POST - create deployment, UPDATE after user sends PATCH - update deployment, and DELETE after user sends DELETE - delete deployment + */ public void setLastOperation( @Nonnull final LastOperationEnum lastOperation) { this.lastOperation = lastOperation; } /** - * Set the createdAt of this {@link RTADeployment} instance and return the same instance. - * - * @param createdAt Timestamp of resource creation - * @return The same instance of this {@link RTADeployment} class - */ + * Set the createdAt of this {@link RTADeployment} instance and return the same instance. + * + * @param createdAt Timestamp of resource creation + * @return The same instance of this {@link RTADeployment} class + */ @Nonnull public RTADeployment createdAt(@Nonnull final OffsetDateTime createdAt) { this.createdAt = createdAt; return this; } /** - * Timestamp of resource creation - * @return createdAt The createdAt of this {@link RTADeployment} instance. - **/ + * Timestamp of resource creation + * @return createdAt The createdAt of this {@link RTADeployment} instance. + */ @Nonnull public OffsetDateTime getCreatedAt() { return createdAt; } /** - * Set the createdAt of this {@link RTADeployment} instance. - * - * @param createdAt Timestamp of resource creation - */ + * Set the createdAt of this {@link RTADeployment} instance. + * + * @param createdAt Timestamp of resource creation + */ public void setCreatedAt( @Nonnull final OffsetDateTime createdAt) { this.createdAt = createdAt; } /** - * Set the modifiedAt of this {@link RTADeployment} instance and return the same instance. - * - * @param modifiedAt Timestamp of latest resource modification - * @return The same instance of this {@link RTADeployment} class - */ + * Set the modifiedAt of this {@link RTADeployment} instance and return the same instance. + * + * @param modifiedAt Timestamp of latest resource modification + * @return The same instance of this {@link RTADeployment} class + */ @Nonnull public RTADeployment modifiedAt(@Nonnull final OffsetDateTime modifiedAt) { this.modifiedAt = modifiedAt; return this; } /** - * Timestamp of latest resource modification - * @return modifiedAt The modifiedAt of this {@link RTADeployment} instance. - **/ + * Timestamp of latest resource modification + * @return modifiedAt The modifiedAt of this {@link RTADeployment} instance. + */ @Nonnull public OffsetDateTime getModifiedAt() { return modifiedAt; } /** - * Set the modifiedAt of this {@link RTADeployment} instance. - * - * @param modifiedAt Timestamp of latest resource modification - */ + * Set the modifiedAt of this {@link RTADeployment} instance. + * + * @param modifiedAt Timestamp of latest resource modification + */ public void setModifiedAt( @Nonnull final OffsetDateTime modifiedAt) { this.modifiedAt = modifiedAt; } @@ -656,5 +655,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/RTADeploymentDetails.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/RTADeploymentDetails.java index 7d1b7ee30..6330549bc 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/RTADeploymentDetails.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/RTADeploymentDetails.java @@ -39,7 +39,6 @@ /** * RTADeploymentDetails */ - // CHECKSTYLE:OFF public class RTADeploymentDetails // CHECKSTYLE:ON @@ -55,57 +54,57 @@ public class RTADeploymentDetails private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the scaling of this {@link RTADeploymentDetails} instance and return the same instance. - * - * @param scaling The scaling of this {@link RTADeploymentDetails} - * @return The same instance of this {@link RTADeploymentDetails} class - */ + * Set the scaling of this {@link RTADeploymentDetails} instance and return the same instance. + * + * @param scaling The scaling of this {@link RTADeploymentDetails} + * @return The same instance of this {@link RTADeploymentDetails} class + */ @Nonnull public RTADeploymentDetails scaling(@Nonnull final RTABackendDetails scaling) { this.scaling = scaling; return this; } /** - * Get scaling - * @return scaling The scaling of this {@link RTADeploymentDetails} instance. - **/ + * Get scaling + * @return scaling The scaling of this {@link RTADeploymentDetails} instance. + */ @Nonnull public RTABackendDetails getScaling() { return scaling; } /** - * Set the scaling of this {@link RTADeploymentDetails} instance. - * - * @param scaling The scaling of this {@link RTADeploymentDetails} - */ + * Set the scaling of this {@link RTADeploymentDetails} instance. + * + * @param scaling The scaling of this {@link RTADeploymentDetails} + */ public void setScaling( @Nonnull final RTABackendDetails scaling) { this.scaling = scaling; } /** - * Set the resources of this {@link RTADeploymentDetails} instance and return the same instance. - * - * @param resources The resources of this {@link RTADeploymentDetails} - * @return The same instance of this {@link RTADeploymentDetails} class - */ + * Set the resources of this {@link RTADeploymentDetails} instance and return the same instance. + * + * @param resources The resources of this {@link RTADeploymentDetails} + * @return The same instance of this {@link RTADeploymentDetails} class + */ @Nonnull public RTADeploymentDetails resources(@Nonnull final RTABackendDetails resources) { this.resources = resources; return this; } /** - * Get resources - * @return resources The resources of this {@link RTADeploymentDetails} instance. - **/ + * Get resources + * @return resources The resources of this {@link RTADeploymentDetails} instance. + */ @Nonnull public RTABackendDetails getResources() { return resources; } /** - * Set the resources of this {@link RTADeploymentDetails} instance. - * - * @param resources The resources of this {@link RTADeploymentDetails} - */ + * Set the resources of this {@link RTADeploymentDetails} instance. + * + * @param resources The resources of this {@link RTADeploymentDetails} + */ public void setResources( @Nonnull final RTABackendDetails resources) { this.resources = resources; } @@ -188,5 +187,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/RTAError.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/RTAError.java index 3d9f14f74..2a9f1c5c8 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/RTAError.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/RTAError.java @@ -38,7 +38,6 @@ /** * RTAError */ - // CHECKSTYLE:OFF public class RTAError // CHECKSTYLE:ON @@ -63,141 +62,141 @@ public class RTAError private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the code of this {@link RTAError} instance and return the same instance. - * - * @param code Descriptive error code (not http status code) - * @return The same instance of this {@link RTAError} class - */ + * Set the code of this {@link RTAError} instance and return the same instance. + * + * @param code Descriptive error code (not http status code) + * @return The same instance of this {@link RTAError} class + */ @Nonnull public RTAError code(@Nonnull final String code) { this.code = code; return this; } /** - * Descriptive error code (not http status code) - * @return code The code of this {@link RTAError} instance. - **/ + * Descriptive error code (not http status code) + * @return code The code of this {@link RTAError} instance. + */ @Nonnull public String getCode() { return code; } /** - * Set the code of this {@link RTAError} instance. - * - * @param code Descriptive error code (not http status code) - */ + * Set the code of this {@link RTAError} instance. + * + * @param code Descriptive error code (not http status code) + */ public void setCode( @Nonnull final String code) { this.code = code; } /** - * Set the message of this {@link RTAError} instance and return the same instance. - * - * @param message Plaintext error description - * @return The same instance of this {@link RTAError} class - */ + * Set the message of this {@link RTAError} instance and return the same instance. + * + * @param message Plaintext error description + * @return The same instance of this {@link RTAError} class + */ @Nonnull public RTAError message(@Nonnull final String message) { this.message = message; return this; } /** - * Plaintext error description - * @return message The message of this {@link RTAError} instance. - **/ + * Plaintext error description + * @return message The message of this {@link RTAError} instance. + */ @Nonnull public String getMessage() { return message; } /** - * Set the message of this {@link RTAError} instance. - * - * @param message Plaintext error description - */ + * Set the message of this {@link RTAError} instance. + * + * @param message Plaintext error description + */ public void setMessage( @Nonnull final String message) { this.message = message; } /** - * Set the requestId of this {@link RTAError} instance and return the same instance. - * - * @param requestId ID of the individual request - * @return The same instance of this {@link RTAError} class - */ + * Set the requestId of this {@link RTAError} instance and return the same instance. + * + * @param requestId ID of the individual request + * @return The same instance of this {@link RTAError} class + */ @Nonnull public RTAError requestId(@Nonnull final String requestId) { this.requestId = requestId; return this; } /** - * ID of the individual request - * @return requestId The requestId of this {@link RTAError} instance. - **/ + * ID of the individual request + * @return requestId The requestId of this {@link RTAError} instance. + */ @Nonnull public String getRequestId() { return requestId; } /** - * Set the requestId of this {@link RTAError} instance. - * - * @param requestId ID of the individual request - */ + * Set the requestId of this {@link RTAError} instance. + * + * @param requestId ID of the individual request + */ public void setRequestId( @Nonnull final String requestId) { this.requestId = requestId; } /** - * Set the target of this {@link RTAError} instance and return the same instance. - * - * @param target Invoked URL - * @return The same instance of this {@link RTAError} class - */ + * Set the target of this {@link RTAError} instance and return the same instance. + * + * @param target Invoked URL + * @return The same instance of this {@link RTAError} class + */ @Nonnull public RTAError target(@Nonnull final String target) { this.target = target; return this; } /** - * Invoked URL - * @return target The target of this {@link RTAError} instance. - **/ + * Invoked URL + * @return target The target of this {@link RTAError} instance. + */ @Nonnull public String getTarget() { return target; } /** - * Set the target of this {@link RTAError} instance. - * - * @param target Invoked URL - */ + * Set the target of this {@link RTAError} instance. + * + * @param target Invoked URL + */ public void setTarget( @Nonnull final String target) { this.target = target; } /** - * Set the details of this {@link RTAError} instance and return the same instance. - * - * @param details Optional details of the error message - * @return The same instance of this {@link RTAError} class - */ + * Set the details of this {@link RTAError} instance and return the same instance. + * + * @param details Optional details of the error message + * @return The same instance of this {@link RTAError} class + */ @Nonnull public RTAError details(@Nonnull final Object details) { this.details = details; return this; } /** - * Optional details of the error message - * @return details The details of this {@link RTAError} instance. - **/ + * Optional details of the error message + * @return details The details of this {@link RTAError} instance. + */ @Nonnull public Object getDetails() { return details; } /** - * Set the details of this {@link RTAError} instance. - * - * @param details Optional details of the error message - */ + * Set the details of this {@link RTAError} instance. + * + * @param details Optional details of the error message + */ public void setDetails( @Nonnull final Object details) { this.details = details; } @@ -286,5 +285,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/RTAErrorResponse.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/RTAErrorResponse.java index 33ecfcdcf..68d02e4d1 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/RTAErrorResponse.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/RTAErrorResponse.java @@ -39,7 +39,6 @@ /** * RTAErrorResponse */ - // CHECKSTYLE:OFF public class RTAErrorResponse // CHECKSTYLE:ON @@ -52,29 +51,29 @@ public class RTAErrorResponse private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the error of this {@link RTAErrorResponse} instance and return the same instance. - * - * @param error The error of this {@link RTAErrorResponse} - * @return The same instance of this {@link RTAErrorResponse} class - */ + * Set the error of this {@link RTAErrorResponse} instance and return the same instance. + * + * @param error The error of this {@link RTAErrorResponse} + * @return The same instance of this {@link RTAErrorResponse} class + */ @Nonnull public RTAErrorResponse error(@Nonnull final RTAError error) { this.error = error; return this; } /** - * Get error - * @return error The error of this {@link RTAErrorResponse} instance. - **/ + * Get error + * @return error The error of this {@link RTAErrorResponse} instance. + */ @Nonnull public RTAError getError() { return error; } /** - * Set the error of this {@link RTAErrorResponse} instance. - * - * @param error The error of this {@link RTAErrorResponse} - */ + * Set the error of this {@link RTAErrorResponse} instance. + * + * @param error The error of this {@link RTAErrorResponse} + */ public void setError( @Nonnull final RTAError error) { this.error = error; } @@ -155,5 +154,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/RTAExecutable.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/RTAExecutable.java index 6fef4c6d6..220fbde44 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/RTAExecutable.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/RTAExecutable.java @@ -45,7 +45,6 @@ /** * Entity having labels */ - // CHECKSTYLE:OFF public class RTAExecutable // CHECKSTYLE:ON @@ -88,133 +87,133 @@ public class RTAExecutable private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the id of this {@link RTAExecutable} instance and return the same instance. - * - * @param id ID of the executable - * @return The same instance of this {@link RTAExecutable} class - */ + * Set the id of this {@link RTAExecutable} instance and return the same instance. + * + * @param id ID of the executable + * @return The same instance of this {@link RTAExecutable} class + */ @Nonnull public RTAExecutable id(@Nonnull final String id) { this.id = id; return this; } /** - * ID of the executable - * @return id The id of this {@link RTAExecutable} instance. - **/ + * ID of the executable + * @return id The id of this {@link RTAExecutable} instance. + */ @Nonnull public String getId() { return id; } /** - * Set the id of this {@link RTAExecutable} instance. - * - * @param id ID of the executable - */ + * Set the id of this {@link RTAExecutable} instance. + * + * @param id ID of the executable + */ public void setId( @Nonnull final String id) { this.id = id; } /** - * Set the name of this {@link RTAExecutable} instance and return the same instance. - * - * @param name Name of the executable - * @return The same instance of this {@link RTAExecutable} class - */ + * Set the name of this {@link RTAExecutable} instance and return the same instance. + * + * @param name Name of the executable + * @return The same instance of this {@link RTAExecutable} class + */ @Nonnull public RTAExecutable name(@Nonnull final String name) { this.name = name; return this; } /** - * Name of the executable - * @return name The name of this {@link RTAExecutable} instance. - **/ + * Name of the executable + * @return name The name of this {@link RTAExecutable} instance. + */ @Nonnull public String getName() { return name; } /** - * Set the name of this {@link RTAExecutable} instance. - * - * @param name Name of the executable - */ + * Set the name of this {@link RTAExecutable} instance. + * + * @param name Name of the executable + */ public void setName( @Nonnull final String name) { this.name = name; } /** - * Set the description of this {@link RTAExecutable} instance and return the same instance. - * - * @param description Description of the executable - * @return The same instance of this {@link RTAExecutable} class - */ + * Set the description of this {@link RTAExecutable} instance and return the same instance. + * + * @param description Description of the executable + * @return The same instance of this {@link RTAExecutable} class + */ @Nonnull public RTAExecutable description(@Nonnull final String description) { this.description = description; return this; } /** - * Description of the executable - * @return description The description of this {@link RTAExecutable} instance. - **/ + * Description of the executable + * @return description The description of this {@link RTAExecutable} instance. + */ @Nonnull public String getDescription() { return description; } /** - * Set the description of this {@link RTAExecutable} instance. - * - * @param description Description of the executable - */ + * Set the description of this {@link RTAExecutable} instance. + * + * @param description Description of the executable + */ public void setDescription( @Nonnull final String description) { this.description = description; } /** - * Set the scenarioId of this {@link RTAExecutable} instance and return the same instance. - * - * @param scenarioId ID of the scenario - * @return The same instance of this {@link RTAExecutable} class - */ + * Set the scenarioId of this {@link RTAExecutable} instance and return the same instance. + * + * @param scenarioId ID of the scenario + * @return The same instance of this {@link RTAExecutable} class + */ @Nonnull public RTAExecutable scenarioId(@Nonnull final String scenarioId) { this.scenarioId = scenarioId; return this; } /** - * ID of the scenario - * @return scenarioId The scenarioId of this {@link RTAExecutable} instance. - **/ + * ID of the scenario + * @return scenarioId The scenarioId of this {@link RTAExecutable} instance. + */ @Nonnull public String getScenarioId() { return scenarioId; } /** - * Set the scenarioId of this {@link RTAExecutable} instance. - * - * @param scenarioId ID of the scenario - */ + * Set the scenarioId of this {@link RTAExecutable} instance. + * + * @param scenarioId ID of the scenario + */ public void setScenarioId( @Nonnull final String scenarioId) { this.scenarioId = scenarioId; } /** - * Set the inputArtifacts of this {@link RTAExecutable} instance and return the same instance. - * - * @param inputArtifacts List of Artifacts that the executable expects as input artifacts - * @return The same instance of this {@link RTAExecutable} class - */ + * Set the inputArtifacts of this {@link RTAExecutable} instance and return the same instance. + * + * @param inputArtifacts List of Artifacts that the executable expects as input artifacts + * @return The same instance of this {@link RTAExecutable} class + */ @Nonnull public RTAExecutable inputArtifacts(@Nonnull final List inputArtifacts) { this.inputArtifacts = inputArtifacts; return this; } /** - * Add one inputArtifacts instance to this {@link RTAExecutable}. - * @param inputArtifactsItem The inputArtifacts that should be added - * @return The same instance of type {@link RTAExecutable} - */ - @Nonnull public RTAExecutable addinputArtifactsItem( @Nonnull final RTAExecutableArtifact inputArtifactsItem) { + * Add one inputArtifacts instance to this {@link RTAExecutable}. + * @param inputArtifactsItem The inputArtifacts that should be added + * @return The same instance of type {@link RTAExecutable} + */ + @Nonnull public RTAExecutable addInputArtifactsItem( @Nonnull final RTAExecutableArtifact inputArtifactsItem) { if (this.inputArtifacts == null) { this.inputArtifacts = new ArrayList<>(); } @@ -223,38 +222,38 @@ public void setScenarioId( @Nonnull final String scenarioId) { } /** - * List of Artifacts that the executable expects as input artifacts - * @return inputArtifacts The inputArtifacts of this {@link RTAExecutable} instance. - **/ + * List of Artifacts that the executable expects as input artifacts + * @return inputArtifacts The inputArtifacts of this {@link RTAExecutable} instance. + */ @Nonnull public List getInputArtifacts() { return inputArtifacts; } /** - * Set the inputArtifacts of this {@link RTAExecutable} instance. - * - * @param inputArtifacts List of Artifacts that the executable expects as input artifacts - */ + * Set the inputArtifacts of this {@link RTAExecutable} instance. + * + * @param inputArtifacts List of Artifacts that the executable expects as input artifacts + */ public void setInputArtifacts( @Nonnull final List inputArtifacts) { this.inputArtifacts = inputArtifacts; } /** - * Set the outputArtifacts of this {@link RTAExecutable} instance and return the same instance. - * - * @param outputArtifacts List of Artifacts that the executable will produce. If storage is not managed internally, a storage location will have to be specified when triggering an execution - * @return The same instance of this {@link RTAExecutable} class - */ + * Set the outputArtifacts of this {@link RTAExecutable} instance and return the same instance. + * + * @param outputArtifacts List of Artifacts that the executable will produce. If storage is not managed internally, a storage location will have to be specified when triggering an execution + * @return The same instance of this {@link RTAExecutable} class + */ @Nonnull public RTAExecutable outputArtifacts(@Nonnull final List outputArtifacts) { this.outputArtifacts = outputArtifacts; return this; } /** - * Add one outputArtifacts instance to this {@link RTAExecutable}. - * @param outputArtifactsItem The outputArtifacts that should be added - * @return The same instance of type {@link RTAExecutable} - */ - @Nonnull public RTAExecutable addoutputArtifactsItem( @Nonnull final RTAExecutableArtifact outputArtifactsItem) { + * Add one outputArtifacts instance to this {@link RTAExecutable}. + * @param outputArtifactsItem The outputArtifacts that should be added + * @return The same instance of type {@link RTAExecutable} + */ + @Nonnull public RTAExecutable addOutputArtifactsItem( @Nonnull final RTAExecutableArtifact outputArtifactsItem) { if (this.outputArtifacts == null) { this.outputArtifacts = new ArrayList<>(); } @@ -263,38 +262,38 @@ public void setInputArtifacts( @Nonnull final List inputA } /** - * List of Artifacts that the executable will produce. If storage is not managed internally, a storage location will have to be specified when triggering an execution - * @return outputArtifacts The outputArtifacts of this {@link RTAExecutable} instance. - **/ + * List of Artifacts that the executable will produce. If storage is not managed internally, a storage location will have to be specified when triggering an execution + * @return outputArtifacts The outputArtifacts of this {@link RTAExecutable} instance. + */ @Nonnull public List getOutputArtifacts() { return outputArtifacts; } /** - * Set the outputArtifacts of this {@link RTAExecutable} instance. - * - * @param outputArtifacts List of Artifacts that the executable will produce. If storage is not managed internally, a storage location will have to be specified when triggering an execution - */ + * Set the outputArtifacts of this {@link RTAExecutable} instance. + * + * @param outputArtifacts List of Artifacts that the executable will produce. If storage is not managed internally, a storage location will have to be specified when triggering an execution + */ public void setOutputArtifacts( @Nonnull final List outputArtifacts) { this.outputArtifacts = outputArtifacts; } /** - * Set the parameters of this {@link RTAExecutable} instance and return the same instance. - * - * @param parameters Executable parameters - * @return The same instance of this {@link RTAExecutable} class - */ + * Set the parameters of this {@link RTAExecutable} instance and return the same instance. + * + * @param parameters Executable parameters + * @return The same instance of this {@link RTAExecutable} class + */ @Nonnull public RTAExecutable parameters(@Nonnull final List parameters) { this.parameters = parameters; return this; } /** - * Add one parameters instance to this {@link RTAExecutable}. - * @param parametersItem The parameters that should be added - * @return The same instance of type {@link RTAExecutable} - */ - @Nonnull public RTAExecutable addparametersItem( @Nonnull final RTAExecutableParameter parametersItem) { + * Add one parameters instance to this {@link RTAExecutable}. + * @param parametersItem The parameters that should be added + * @return The same instance of type {@link RTAExecutable} + */ + @Nonnull public RTAExecutable addParametersItem( @Nonnull final RTAExecutableParameter parametersItem) { if (this.parameters == null) { this.parameters = new ArrayList<>(); } @@ -303,66 +302,66 @@ public void setOutputArtifacts( @Nonnull final List outpu } /** - * Executable parameters - * @return parameters The parameters of this {@link RTAExecutable} instance. - **/ + * Executable parameters + * @return parameters The parameters of this {@link RTAExecutable} instance. + */ @Nonnull public List getParameters() { return parameters; } /** - * Set the parameters of this {@link RTAExecutable} instance. - * - * @param parameters Executable parameters - */ + * Set the parameters of this {@link RTAExecutable} instance. + * + * @param parameters Executable parameters + */ public void setParameters( @Nonnull final List parameters) { this.parameters = parameters; } /** - * Set the deployable of this {@link RTAExecutable} instance and return the same instance. - * - * @param deployable Whether this pipeline is deployable - * @return The same instance of this {@link RTAExecutable} class - */ + * Set the deployable of this {@link RTAExecutable} instance and return the same instance. + * + * @param deployable Whether this pipeline is deployable + * @return The same instance of this {@link RTAExecutable} class + */ @Nonnull public RTAExecutable deployable(@Nonnull final Boolean deployable) { this.deployable = deployable; return this; } /** - * Whether this pipeline is deployable - * @return deployable The deployable of this {@link RTAExecutable} instance. - **/ + * Whether this pipeline is deployable + * @return deployable The deployable of this {@link RTAExecutable} instance. + */ @Nonnull public Boolean isDeployable() { return deployable; } /** - * Set the deployable of this {@link RTAExecutable} instance. - * - * @param deployable Whether this pipeline is deployable - */ + * Set the deployable of this {@link RTAExecutable} instance. + * + * @param deployable Whether this pipeline is deployable + */ public void setDeployable( @Nonnull final Boolean deployable) { this.deployable = deployable; } /** - * Set the labels of this {@link RTAExecutable} instance and return the same instance. - * - * @param labels Arbitrary labels as meta information - * @return The same instance of this {@link RTAExecutable} class - */ + * Set the labels of this {@link RTAExecutable} instance and return the same instance. + * + * @param labels Arbitrary labels as meta information + * @return The same instance of this {@link RTAExecutable} class + */ @Nonnull public RTAExecutable labels(@Nonnull final List labels) { this.labels = labels; return this; } /** - * Add one labels instance to this {@link RTAExecutable}. - * @param labelsItem The labels that should be added - * @return The same instance of type {@link RTAExecutable} - */ - @Nonnull public RTAExecutable addlabelsItem( @Nonnull final RTALabel labelsItem) { + * Add one labels instance to this {@link RTAExecutable}. + * @param labelsItem The labels that should be added + * @return The same instance of type {@link RTAExecutable} + */ + @Nonnull public RTAExecutable addLabelsItem( @Nonnull final RTALabel labelsItem) { if (this.labels == null) { this.labels = new ArrayList<>(); } @@ -371,74 +370,74 @@ public void setDeployable( @Nonnull final Boolean deployable) { } /** - * Arbitrary labels as meta information - * @return labels The labels of this {@link RTAExecutable} instance. - **/ + * Arbitrary labels as meta information + * @return labels The labels of this {@link RTAExecutable} instance. + */ @Nonnull public List getLabels() { return labels; } /** - * Set the labels of this {@link RTAExecutable} instance. - * - * @param labels Arbitrary labels as meta information - */ + * Set the labels of this {@link RTAExecutable} instance. + * + * @param labels Arbitrary labels as meta information + */ public void setLabels( @Nonnull final List labels) { this.labels = labels; } /** - * Set the createdAt of this {@link RTAExecutable} instance and return the same instance. - * - * @param createdAt Timestamp of resource creation - * @return The same instance of this {@link RTAExecutable} class - */ + * Set the createdAt of this {@link RTAExecutable} instance and return the same instance. + * + * @param createdAt Timestamp of resource creation + * @return The same instance of this {@link RTAExecutable} class + */ @Nonnull public RTAExecutable createdAt(@Nonnull final OffsetDateTime createdAt) { this.createdAt = createdAt; return this; } /** - * Timestamp of resource creation - * @return createdAt The createdAt of this {@link RTAExecutable} instance. - **/ + * Timestamp of resource creation + * @return createdAt The createdAt of this {@link RTAExecutable} instance. + */ @Nonnull public OffsetDateTime getCreatedAt() { return createdAt; } /** - * Set the createdAt of this {@link RTAExecutable} instance. - * - * @param createdAt Timestamp of resource creation - */ + * Set the createdAt of this {@link RTAExecutable} instance. + * + * @param createdAt Timestamp of resource creation + */ public void setCreatedAt( @Nonnull final OffsetDateTime createdAt) { this.createdAt = createdAt; } /** - * Set the modifiedAt of this {@link RTAExecutable} instance and return the same instance. - * - * @param modifiedAt Timestamp of latest resource modification - * @return The same instance of this {@link RTAExecutable} class - */ + * Set the modifiedAt of this {@link RTAExecutable} instance and return the same instance. + * + * @param modifiedAt Timestamp of latest resource modification + * @return The same instance of this {@link RTAExecutable} class + */ @Nonnull public RTAExecutable modifiedAt(@Nonnull final OffsetDateTime modifiedAt) { this.modifiedAt = modifiedAt; return this; } /** - * Timestamp of latest resource modification - * @return modifiedAt The modifiedAt of this {@link RTAExecutable} instance. - **/ + * Timestamp of latest resource modification + * @return modifiedAt The modifiedAt of this {@link RTAExecutable} instance. + */ @Nonnull public OffsetDateTime getModifiedAt() { return modifiedAt; } /** - * Set the modifiedAt of this {@link RTAExecutable} instance. - * - * @param modifiedAt Timestamp of latest resource modification - */ + * Set the modifiedAt of this {@link RTAExecutable} instance. + * + * @param modifiedAt Timestamp of latest resource modification + */ public void setModifiedAt( @Nonnull final OffsetDateTime modifiedAt) { this.modifiedAt = modifiedAt; } @@ -539,5 +538,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/RTAExecutableArgumentBinding.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/RTAExecutableArgumentBinding.java index c59a6a6ba..bd2f3c816 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/RTAExecutableArgumentBinding.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/RTAExecutableArgumentBinding.java @@ -38,7 +38,6 @@ /** * Required for execution Result of activation */ - // CHECKSTYLE:OFF public class RTAExecutableArgumentBinding // CHECKSTYLE:ON @@ -54,57 +53,57 @@ public class RTAExecutableArgumentBinding private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the key of this {@link RTAExecutableArgumentBinding} instance and return the same instance. - * - * @param key The key of this {@link RTAExecutableArgumentBinding} - * @return The same instance of this {@link RTAExecutableArgumentBinding} class - */ + * Set the key of this {@link RTAExecutableArgumentBinding} instance and return the same instance. + * + * @param key The key of this {@link RTAExecutableArgumentBinding} + * @return The same instance of this {@link RTAExecutableArgumentBinding} class + */ @Nonnull public RTAExecutableArgumentBinding key(@Nonnull final String key) { this.key = key; return this; } /** - * Get key - * @return key The key of this {@link RTAExecutableArgumentBinding} instance. - **/ + * Get key + * @return key The key of this {@link RTAExecutableArgumentBinding} instance. + */ @Nonnull public String getKey() { return key; } /** - * Set the key of this {@link RTAExecutableArgumentBinding} instance. - * - * @param key The key of this {@link RTAExecutableArgumentBinding} - */ + * Set the key of this {@link RTAExecutableArgumentBinding} instance. + * + * @param key The key of this {@link RTAExecutableArgumentBinding} + */ public void setKey( @Nonnull final String key) { this.key = key; } /** - * Set the value of this {@link RTAExecutableArgumentBinding} instance and return the same instance. - * - * @param value The value of this {@link RTAExecutableArgumentBinding} - * @return The same instance of this {@link RTAExecutableArgumentBinding} class - */ + * Set the value of this {@link RTAExecutableArgumentBinding} instance and return the same instance. + * + * @param value The value of this {@link RTAExecutableArgumentBinding} + * @return The same instance of this {@link RTAExecutableArgumentBinding} class + */ @Nonnull public RTAExecutableArgumentBinding value(@Nonnull final String value) { this.value = value; return this; } /** - * Get value - * @return value The value of this {@link RTAExecutableArgumentBinding} instance. - **/ + * Get value + * @return value The value of this {@link RTAExecutableArgumentBinding} instance. + */ @Nonnull public String getValue() { return value; } /** - * Set the value of this {@link RTAExecutableArgumentBinding} instance. - * - * @param value The value of this {@link RTAExecutableArgumentBinding} - */ + * Set the value of this {@link RTAExecutableArgumentBinding} instance. + * + * @param value The value of this {@link RTAExecutableArgumentBinding} + */ public void setValue( @Nonnull final String value) { this.value = value; } @@ -187,5 +186,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/RTAExecutableArtifact.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/RTAExecutableArtifact.java index e0562f064..e87d094f3 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/RTAExecutableArtifact.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/RTAExecutableArtifact.java @@ -42,7 +42,6 @@ /** * Input or output artifact */ - // CHECKSTYLE:OFF public class RTAExecutableArtifact // CHECKSTYLE:ON @@ -64,105 +63,105 @@ public class RTAExecutableArtifact private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the name of this {@link RTAExecutableArtifact} instance and return the same instance. - * - * @param name Name of the signature argument - * @return The same instance of this {@link RTAExecutableArtifact} class - */ + * Set the name of this {@link RTAExecutableArtifact} instance and return the same instance. + * + * @param name Name of the signature argument + * @return The same instance of this {@link RTAExecutableArtifact} class + */ @Nonnull public RTAExecutableArtifact name(@Nonnull final String name) { this.name = name; return this; } /** - * Name of the signature argument - * @return name The name of this {@link RTAExecutableArtifact} instance. - **/ + * Name of the signature argument + * @return name The name of this {@link RTAExecutableArtifact} instance. + */ @Nonnull public String getName() { return name; } /** - * Set the name of this {@link RTAExecutableArtifact} instance. - * - * @param name Name of the signature argument - */ + * Set the name of this {@link RTAExecutableArtifact} instance. + * + * @param name Name of the signature argument + */ public void setName( @Nonnull final String name) { this.name = name; } /** - * Set the description of this {@link RTAExecutableArtifact} instance and return the same instance. - * - * @param description Description of the signature argument - * @return The same instance of this {@link RTAExecutableArtifact} class - */ + * Set the description of this {@link RTAExecutableArtifact} instance and return the same instance. + * + * @param description Description of the signature argument + * @return The same instance of this {@link RTAExecutableArtifact} class + */ @Nonnull public RTAExecutableArtifact description(@Nonnull final String description) { this.description = description; return this; } /** - * Description of the signature argument - * @return description The description of this {@link RTAExecutableArtifact} instance. - **/ + * Description of the signature argument + * @return description The description of this {@link RTAExecutableArtifact} instance. + */ @Nonnull public String getDescription() { return description; } /** - * Set the description of this {@link RTAExecutableArtifact} instance. - * - * @param description Description of the signature argument - */ + * Set the description of this {@link RTAExecutableArtifact} instance. + * + * @param description Description of the signature argument + */ public void setDescription( @Nonnull final String description) { this.description = description; } /** - * Set the kind of this {@link RTAExecutableArtifact} instance and return the same instance. - * - * @param kind Kind of the artifact, i.e. model or dataset - * @return The same instance of this {@link RTAExecutableArtifact} class - */ + * Set the kind of this {@link RTAExecutableArtifact} instance and return the same instance. + * + * @param kind Kind of the artifact, i.e. model or dataset + * @return The same instance of this {@link RTAExecutableArtifact} class + */ @Nonnull public RTAExecutableArtifact kind(@Nonnull final String kind) { this.kind = kind; return this; } /** - * Kind of the artifact, i.e. model or dataset - * @return kind The kind of this {@link RTAExecutableArtifact} instance. - **/ + * Kind of the artifact, i.e. model or dataset + * @return kind The kind of this {@link RTAExecutableArtifact} instance. + */ @Nonnull public String getKind() { return kind; } /** - * Set the kind of this {@link RTAExecutableArtifact} instance. - * - * @param kind Kind of the artifact, i.e. model or dataset - */ + * Set the kind of this {@link RTAExecutableArtifact} instance. + * + * @param kind Kind of the artifact, i.e. model or dataset + */ public void setKind( @Nonnull final String kind) { this.kind = kind; } /** - * Set the labels of this {@link RTAExecutableArtifact} instance and return the same instance. - * - * @param labels Arbitrary labels as meta information - * @return The same instance of this {@link RTAExecutableArtifact} class - */ + * Set the labels of this {@link RTAExecutableArtifact} instance and return the same instance. + * + * @param labels Arbitrary labels as meta information + * @return The same instance of this {@link RTAExecutableArtifact} class + */ @Nonnull public RTAExecutableArtifact labels(@Nonnull final List labels) { this.labels = labels; return this; } /** - * Add one labels instance to this {@link RTAExecutableArtifact}. - * @param labelsItem The labels that should be added - * @return The same instance of type {@link RTAExecutableArtifact} - */ - @Nonnull public RTAExecutableArtifact addlabelsItem( @Nonnull final RTAArtifactLabel labelsItem) { + * Add one labels instance to this {@link RTAExecutableArtifact}. + * @param labelsItem The labels that should be added + * @return The same instance of type {@link RTAExecutableArtifact} + */ + @Nonnull public RTAExecutableArtifact addLabelsItem( @Nonnull final RTAArtifactLabel labelsItem) { if (this.labels == null) { this.labels = new ArrayList<>(); } @@ -171,18 +170,18 @@ public void setKind( @Nonnull final String kind) { } /** - * Arbitrary labels as meta information - * @return labels The labels of this {@link RTAExecutableArtifact} instance. - **/ + * Arbitrary labels as meta information + * @return labels The labels of this {@link RTAExecutableArtifact} instance. + */ @Nonnull public List getLabels() { return labels; } /** - * Set the labels of this {@link RTAExecutableArtifact} instance. - * - * @param labels Arbitrary labels as meta information - */ + * Set the labels of this {@link RTAExecutableArtifact} instance. + * + * @param labels Arbitrary labels as meta information + */ public void setLabels( @Nonnull final List labels) { this.labels = labels; } @@ -269,5 +268,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/RTAExecutableParameter.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/RTAExecutableParameter.java index 163301ae6..e828c3d6e 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/RTAExecutableParameter.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/RTAExecutableParameter.java @@ -38,7 +38,6 @@ /** * Argument of an executable */ - // CHECKSTYLE:OFF public class RTAExecutableParameter // CHECKSTYLE:ON @@ -109,113 +108,113 @@ public enum TypeEnum { private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the name of this {@link RTAExecutableParameter} instance and return the same instance. - * - * @param name Name of the signature argument - * @return The same instance of this {@link RTAExecutableParameter} class - */ + * Set the name of this {@link RTAExecutableParameter} instance and return the same instance. + * + * @param name Name of the signature argument + * @return The same instance of this {@link RTAExecutableParameter} class + */ @Nonnull public RTAExecutableParameter name(@Nonnull final String name) { this.name = name; return this; } /** - * Name of the signature argument - * @return name The name of this {@link RTAExecutableParameter} instance. - **/ + * Name of the signature argument + * @return name The name of this {@link RTAExecutableParameter} instance. + */ @Nonnull public String getName() { return name; } /** - * Set the name of this {@link RTAExecutableParameter} instance. - * - * @param name Name of the signature argument - */ + * Set the name of this {@link RTAExecutableParameter} instance. + * + * @param name Name of the signature argument + */ public void setName( @Nonnull final String name) { this.name = name; } /** - * Set the description of this {@link RTAExecutableParameter} instance and return the same instance. - * - * @param description Description of the signature argument - * @return The same instance of this {@link RTAExecutableParameter} class - */ + * Set the description of this {@link RTAExecutableParameter} instance and return the same instance. + * + * @param description Description of the signature argument + * @return The same instance of this {@link RTAExecutableParameter} class + */ @Nonnull public RTAExecutableParameter description(@Nonnull final String description) { this.description = description; return this; } /** - * Description of the signature argument - * @return description The description of this {@link RTAExecutableParameter} instance. - **/ + * Description of the signature argument + * @return description The description of this {@link RTAExecutableParameter} instance. + */ @Nonnull public String getDescription() { return description; } /** - * Set the description of this {@link RTAExecutableParameter} instance. - * - * @param description Description of the signature argument - */ + * Set the description of this {@link RTAExecutableParameter} instance. + * + * @param description Description of the signature argument + */ public void setDescription( @Nonnull final String description) { this.description = description; } /** - * Set the _default of this {@link RTAExecutableParameter} instance and return the same instance. - * - * @param _default Default value of the signature argument - * @return The same instance of this {@link RTAExecutableParameter} class - */ + * Set the _default of this {@link RTAExecutableParameter} instance and return the same instance. + * + * @param _default Default value of the signature argument + * @return The same instance of this {@link RTAExecutableParameter} class + */ @Nonnull public RTAExecutableParameter _default(@Nonnull final String _default) { this._default = _default; return this; } /** - * Default value of the signature argument - * @return _default The _default of this {@link RTAExecutableParameter} instance. - **/ + * Default value of the signature argument + * @return _default The _default of this {@link RTAExecutableParameter} instance. + */ @Nonnull public String getDefault() { return _default; } /** - * Set the _default of this {@link RTAExecutableParameter} instance. - * - * @param _default Default value of the signature argument - */ + * Set the _default of this {@link RTAExecutableParameter} instance. + * + * @param _default Default value of the signature argument + */ public void setDefault( @Nonnull final String _default) { this._default = _default; } /** - * Set the type of this {@link RTAExecutableParameter} instance and return the same instance. - * - * @param type Type of the signature argument - * @return The same instance of this {@link RTAExecutableParameter} class - */ + * Set the type of this {@link RTAExecutableParameter} instance and return the same instance. + * + * @param type Type of the signature argument + * @return The same instance of this {@link RTAExecutableParameter} class + */ @Nonnull public RTAExecutableParameter type(@Nonnull final TypeEnum type) { this.type = type; return this; } /** - * Type of the signature argument - * @return type The type of this {@link RTAExecutableParameter} instance. - **/ + * Type of the signature argument + * @return type The type of this {@link RTAExecutableParameter} instance. + */ @Nonnull public TypeEnum getType() { return type; } /** - * Set the type of this {@link RTAExecutableParameter} instance. - * - * @param type Type of the signature argument - */ + * Set the type of this {@link RTAExecutableParameter} instance. + * + * @param type Type of the signature argument + */ public void setType( @Nonnull final TypeEnum type) { this.type = type; } @@ -302,5 +301,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/RTAExecution.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/RTAExecution.java index f45850271..dd7323970 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/RTAExecution.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/RTAExecution.java @@ -39,7 +39,6 @@ /** * Execution */ - // CHECKSTYLE:OFF public class RTAExecution // CHECKSTYLE:ON @@ -158,281 +157,281 @@ public enum StatusEnum { private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the scenarioId of this {@link RTAExecution} instance and return the same instance. - * - * @param scenarioId ID of the scenario - * @return The same instance of this {@link RTAExecution} class - */ + * Set the scenarioId of this {@link RTAExecution} instance and return the same instance. + * + * @param scenarioId ID of the scenario + * @return The same instance of this {@link RTAExecution} class + */ @Nonnull public RTAExecution scenarioId(@Nonnull final String scenarioId) { this.scenarioId = scenarioId; return this; } /** - * ID of the scenario - * @return scenarioId The scenarioId of this {@link RTAExecution} instance. - **/ + * ID of the scenario + * @return scenarioId The scenarioId of this {@link RTAExecution} instance. + */ @Nonnull public String getScenarioId() { return scenarioId; } /** - * Set the scenarioId of this {@link RTAExecution} instance. - * - * @param scenarioId ID of the scenario - */ + * Set the scenarioId of this {@link RTAExecution} instance. + * + * @param scenarioId ID of the scenario + */ public void setScenarioId( @Nonnull final String scenarioId) { this.scenarioId = scenarioId; } /** - * Set the executableId of this {@link RTAExecution} instance and return the same instance. - * - * @param executableId ID of the executable - * @return The same instance of this {@link RTAExecution} class - */ + * Set the executableId of this {@link RTAExecution} instance and return the same instance. + * + * @param executableId ID of the executable + * @return The same instance of this {@link RTAExecution} class + */ @Nonnull public RTAExecution executableId(@Nonnull final String executableId) { this.executableId = executableId; return this; } /** - * ID of the executable - * @return executableId The executableId of this {@link RTAExecution} instance. - **/ + * ID of the executable + * @return executableId The executableId of this {@link RTAExecution} instance. + */ @Nonnull public String getExecutableId() { return executableId; } /** - * Set the executableId of this {@link RTAExecution} instance. - * - * @param executableId ID of the executable - */ + * Set the executableId of this {@link RTAExecution} instance. + * + * @param executableId ID of the executable + */ public void setExecutableId( @Nonnull final String executableId) { this.executableId = executableId; } /** - * Set the id of this {@link RTAExecution} instance and return the same instance. - * - * @param id ID of the execution - * @return The same instance of this {@link RTAExecution} class - */ + * Set the id of this {@link RTAExecution} instance and return the same instance. + * + * @param id ID of the execution + * @return The same instance of this {@link RTAExecution} class + */ @Nonnull public RTAExecution id(@Nonnull final String id) { this.id = id; return this; } /** - * ID of the execution - * @return id The id of this {@link RTAExecution} instance. - **/ + * ID of the execution + * @return id The id of this {@link RTAExecution} instance. + */ @Nonnull public String getId() { return id; } /** - * Set the id of this {@link RTAExecution} instance. - * - * @param id ID of the execution - */ + * Set the id of this {@link RTAExecution} instance. + * + * @param id ID of the execution + */ public void setId( @Nonnull final String id) { this.id = id; } /** - * Set the status of this {@link RTAExecution} instance and return the same instance. - * - * @param status Status of the execution - * @return The same instance of this {@link RTAExecution} class - */ + * Set the status of this {@link RTAExecution} instance and return the same instance. + * + * @param status Status of the execution + * @return The same instance of this {@link RTAExecution} class + */ @Nonnull public RTAExecution status(@Nonnull final StatusEnum status) { this.status = status; return this; } /** - * Status of the execution - * @return status The status of this {@link RTAExecution} instance. - **/ + * Status of the execution + * @return status The status of this {@link RTAExecution} instance. + */ @Nonnull public StatusEnum getStatus() { return status; } /** - * Set the status of this {@link RTAExecution} instance. - * - * @param status Status of the execution - */ + * Set the status of this {@link RTAExecution} instance. + * + * @param status Status of the execution + */ public void setStatus( @Nonnull final StatusEnum status) { this.status = status; } /** - * Set the statusMessage of this {@link RTAExecution} instance and return the same instance. - * - * @param statusMessage Execution status message - * @return The same instance of this {@link RTAExecution} class - */ + * Set the statusMessage of this {@link RTAExecution} instance and return the same instance. + * + * @param statusMessage Execution status message + * @return The same instance of this {@link RTAExecution} class + */ @Nonnull public RTAExecution statusMessage(@Nonnull final String statusMessage) { this.statusMessage = statusMessage; return this; } /** - * Execution status message - * @return statusMessage The statusMessage of this {@link RTAExecution} instance. - **/ + * Execution status message + * @return statusMessage The statusMessage of this {@link RTAExecution} instance. + */ @Nonnull public String getStatusMessage() { return statusMessage; } /** - * Set the statusMessage of this {@link RTAExecution} instance. - * - * @param statusMessage Execution status message - */ + * Set the statusMessage of this {@link RTAExecution} instance. + * + * @param statusMessage Execution status message + */ public void setStatusMessage( @Nonnull final String statusMessage) { this.statusMessage = statusMessage; } /** - * Set the submissionTimestamp of this {@link RTAExecution} instance and return the same instance. - * - * @param submissionTimestamp Timestamp of execution submission - * @return The same instance of this {@link RTAExecution} class - */ + * Set the submissionTimestamp of this {@link RTAExecution} instance and return the same instance. + * + * @param submissionTimestamp Timestamp of execution submission + * @return The same instance of this {@link RTAExecution} class + */ @Nonnull public RTAExecution submissionTimestamp(@Nonnull final OffsetDateTime submissionTimestamp) { this.submissionTimestamp = submissionTimestamp; return this; } /** - * Timestamp of execution submission - * @return submissionTimestamp The submissionTimestamp of this {@link RTAExecution} instance. - **/ + * Timestamp of execution submission + * @return submissionTimestamp The submissionTimestamp of this {@link RTAExecution} instance. + */ @Nonnull public OffsetDateTime getSubmissionTimestamp() { return submissionTimestamp; } /** - * Set the submissionTimestamp of this {@link RTAExecution} instance. - * - * @param submissionTimestamp Timestamp of execution submission - */ + * Set the submissionTimestamp of this {@link RTAExecution} instance. + * + * @param submissionTimestamp Timestamp of execution submission + */ public void setSubmissionTimestamp( @Nonnull final OffsetDateTime submissionTimestamp) { this.submissionTimestamp = submissionTimestamp; } /** - * Set the startTimestamp of this {@link RTAExecution} instance and return the same instance. - * - * @param startTimestamp Timestamp of execution start - * @return The same instance of this {@link RTAExecution} class - */ + * Set the startTimestamp of this {@link RTAExecution} instance and return the same instance. + * + * @param startTimestamp Timestamp of execution start + * @return The same instance of this {@link RTAExecution} class + */ @Nonnull public RTAExecution startTimestamp(@Nonnull final OffsetDateTime startTimestamp) { this.startTimestamp = startTimestamp; return this; } /** - * Timestamp of execution start - * @return startTimestamp The startTimestamp of this {@link RTAExecution} instance. - **/ + * Timestamp of execution start + * @return startTimestamp The startTimestamp of this {@link RTAExecution} instance. + */ @Nonnull public OffsetDateTime getStartTimestamp() { return startTimestamp; } /** - * Set the startTimestamp of this {@link RTAExecution} instance. - * - * @param startTimestamp Timestamp of execution start - */ + * Set the startTimestamp of this {@link RTAExecution} instance. + * + * @param startTimestamp Timestamp of execution start + */ public void setStartTimestamp( @Nonnull final OffsetDateTime startTimestamp) { this.startTimestamp = startTimestamp; } /** - * Set the finishTimestamp of this {@link RTAExecution} instance and return the same instance. - * - * @param finishTimestamp Timestamp of execution finish - * @return The same instance of this {@link RTAExecution} class - */ + * Set the finishTimestamp of this {@link RTAExecution} instance and return the same instance. + * + * @param finishTimestamp Timestamp of execution finish + * @return The same instance of this {@link RTAExecution} class + */ @Nonnull public RTAExecution finishTimestamp(@Nonnull final OffsetDateTime finishTimestamp) { this.finishTimestamp = finishTimestamp; return this; } /** - * Timestamp of execution finish - * @return finishTimestamp The finishTimestamp of this {@link RTAExecution} instance. - **/ + * Timestamp of execution finish + * @return finishTimestamp The finishTimestamp of this {@link RTAExecution} instance. + */ @Nonnull public OffsetDateTime getFinishTimestamp() { return finishTimestamp; } /** - * Set the finishTimestamp of this {@link RTAExecution} instance. - * - * @param finishTimestamp Timestamp of execution finish - */ + * Set the finishTimestamp of this {@link RTAExecution} instance. + * + * @param finishTimestamp Timestamp of execution finish + */ public void setFinishTimestamp( @Nonnull final OffsetDateTime finishTimestamp) { this.finishTimestamp = finishTimestamp; } /** - * Set the createdAt of this {@link RTAExecution} instance and return the same instance. - * - * @param createdAt Timestamp of resource creation - * @return The same instance of this {@link RTAExecution} class - */ + * Set the createdAt of this {@link RTAExecution} instance and return the same instance. + * + * @param createdAt Timestamp of resource creation + * @return The same instance of this {@link RTAExecution} class + */ @Nonnull public RTAExecution createdAt(@Nonnull final OffsetDateTime createdAt) { this.createdAt = createdAt; return this; } /** - * Timestamp of resource creation - * @return createdAt The createdAt of this {@link RTAExecution} instance. - **/ + * Timestamp of resource creation + * @return createdAt The createdAt of this {@link RTAExecution} instance. + */ @Nonnull public OffsetDateTime getCreatedAt() { return createdAt; } /** - * Set the createdAt of this {@link RTAExecution} instance. - * - * @param createdAt Timestamp of resource creation - */ + * Set the createdAt of this {@link RTAExecution} instance. + * + * @param createdAt Timestamp of resource creation + */ public void setCreatedAt( @Nonnull final OffsetDateTime createdAt) { this.createdAt = createdAt; } /** - * Set the modifiedAt of this {@link RTAExecution} instance and return the same instance. - * - * @param modifiedAt Timestamp of latest resource modification - * @return The same instance of this {@link RTAExecution} class - */ + * Set the modifiedAt of this {@link RTAExecution} instance and return the same instance. + * + * @param modifiedAt Timestamp of latest resource modification + * @return The same instance of this {@link RTAExecution} class + */ @Nonnull public RTAExecution modifiedAt(@Nonnull final OffsetDateTime modifiedAt) { this.modifiedAt = modifiedAt; return this; } /** - * Timestamp of latest resource modification - * @return modifiedAt The modifiedAt of this {@link RTAExecution} instance. - **/ + * Timestamp of latest resource modification + * @return modifiedAt The modifiedAt of this {@link RTAExecution} instance. + */ @Nonnull public OffsetDateTime getModifiedAt() { return modifiedAt; } /** - * Set the modifiedAt of this {@link RTAExecution} instance. - * - * @param modifiedAt Timestamp of latest resource modification - */ + * Set the modifiedAt of this {@link RTAExecution} instance. + * + * @param modifiedAt Timestamp of latest resource modification + */ public void setModifiedAt( @Nonnull final OffsetDateTime modifiedAt) { this.modifiedAt = modifiedAt; } @@ -531,5 +530,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/RTAInputArtifactArgumentBinding.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/RTAInputArtifactArgumentBinding.java index 836c40edc..3e8af0526 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/RTAInputArtifactArgumentBinding.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/RTAInputArtifactArgumentBinding.java @@ -38,7 +38,6 @@ /** * Required for execution */ - // CHECKSTYLE:OFF public class RTAInputArtifactArgumentBinding // CHECKSTYLE:ON @@ -57,85 +56,85 @@ public class RTAInputArtifactArgumentBinding private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the name of this {@link RTAInputArtifactArgumentBinding} instance and return the same instance. - * - * @param name The name of this {@link RTAInputArtifactArgumentBinding} - * @return The same instance of this {@link RTAInputArtifactArgumentBinding} class - */ + * Set the name of this {@link RTAInputArtifactArgumentBinding} instance and return the same instance. + * + * @param name The name of this {@link RTAInputArtifactArgumentBinding} + * @return The same instance of this {@link RTAInputArtifactArgumentBinding} class + */ @Nonnull public RTAInputArtifactArgumentBinding name(@Nonnull final String name) { this.name = name; return this; } /** - * Get name - * @return name The name of this {@link RTAInputArtifactArgumentBinding} instance. - **/ + * Get name + * @return name The name of this {@link RTAInputArtifactArgumentBinding} instance. + */ @Nonnull public String getName() { return name; } /** - * Set the name of this {@link RTAInputArtifactArgumentBinding} instance. - * - * @param name The name of this {@link RTAInputArtifactArgumentBinding} - */ + * Set the name of this {@link RTAInputArtifactArgumentBinding} instance. + * + * @param name The name of this {@link RTAInputArtifactArgumentBinding} + */ public void setName( @Nonnull final String name) { this.name = name; } /** - * Set the url of this {@link RTAInputArtifactArgumentBinding} instance and return the same instance. - * - * @param url Reference to the location of the artifact. Note, the credentials will be found in a secret called 'some_bucket-object_store_secret'. If not provided, a default will be assumed. - * @return The same instance of this {@link RTAInputArtifactArgumentBinding} class - */ + * Set the url of this {@link RTAInputArtifactArgumentBinding} instance and return the same instance. + * + * @param url Reference to the location of the artifact. Note, the credentials will be found in a secret called 'some_bucket-object_store_secret'. If not provided, a default will be assumed. + * @return The same instance of this {@link RTAInputArtifactArgumentBinding} class + */ @Nonnull public RTAInputArtifactArgumentBinding url(@Nonnull final String url) { this.url = url; return this; } /** - * Reference to the location of the artifact. Note, the credentials will be found in a secret called 'some_bucket-object_store_secret'. If not provided, a default will be assumed. - * @return url The url of this {@link RTAInputArtifactArgumentBinding} instance. - **/ + * Reference to the location of the artifact. Note, the credentials will be found in a secret called 'some_bucket-object_store_secret'. If not provided, a default will be assumed. + * @return url The url of this {@link RTAInputArtifactArgumentBinding} instance. + */ @Nonnull public String getUrl() { return url; } /** - * Set the url of this {@link RTAInputArtifactArgumentBinding} instance. - * - * @param url Reference to the location of the artifact. Note, the credentials will be found in a secret called 'some_bucket-object_store_secret'. If not provided, a default will be assumed. - */ + * Set the url of this {@link RTAInputArtifactArgumentBinding} instance. + * + * @param url Reference to the location of the artifact. Note, the credentials will be found in a secret called 'some_bucket-object_store_secret'. If not provided, a default will be assumed. + */ public void setUrl( @Nonnull final String url) { this.url = url; } /** - * Set the signature of this {@link RTAInputArtifactArgumentBinding} instance and return the same instance. - * - * @param signature The signature of this {@link RTAInputArtifactArgumentBinding} - * @return The same instance of this {@link RTAInputArtifactArgumentBinding} class - */ + * Set the signature of this {@link RTAInputArtifactArgumentBinding} instance and return the same instance. + * + * @param signature The signature of this {@link RTAInputArtifactArgumentBinding} + * @return The same instance of this {@link RTAInputArtifactArgumentBinding} class + */ @Nonnull public RTAInputArtifactArgumentBinding signature(@Nonnull final String signature) { this.signature = signature; return this; } /** - * Get signature - * @return signature The signature of this {@link RTAInputArtifactArgumentBinding} instance. - **/ + * Get signature + * @return signature The signature of this {@link RTAInputArtifactArgumentBinding} instance. + */ @Nonnull public String getSignature() { return signature; } /** - * Set the signature of this {@link RTAInputArtifactArgumentBinding} instance. - * - * @param signature The signature of this {@link RTAInputArtifactArgumentBinding} - */ + * Set the signature of this {@link RTAInputArtifactArgumentBinding} instance. + * + * @param signature The signature of this {@link RTAInputArtifactArgumentBinding} + */ public void setSignature( @Nonnull final String signature) { this.signature = signature; } @@ -220,5 +219,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/RTALabel.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/RTALabel.java index 9b91b1f14..61eec6508 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/RTALabel.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/RTALabel.java @@ -38,7 +38,6 @@ /** * RTALabel */ - // CHECKSTYLE:OFF public class RTALabel // CHECKSTYLE:ON @@ -54,57 +53,57 @@ public class RTALabel private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the key of this {@link RTALabel} instance and return the same instance. - * - * @param key The key of this {@link RTALabel} - * @return The same instance of this {@link RTALabel} class - */ + * Set the key of this {@link RTALabel} instance and return the same instance. + * + * @param key The key of this {@link RTALabel} + * @return The same instance of this {@link RTALabel} class + */ @Nonnull public RTALabel key(@Nonnull final String key) { this.key = key; return this; } /** - * Get key - * @return key The key of this {@link RTALabel} instance. - **/ + * Get key + * @return key The key of this {@link RTALabel} instance. + */ @Nonnull public String getKey() { return key; } /** - * Set the key of this {@link RTALabel} instance. - * - * @param key The key of this {@link RTALabel} - */ + * Set the key of this {@link RTALabel} instance. + * + * @param key The key of this {@link RTALabel} + */ public void setKey( @Nonnull final String key) { this.key = key; } /** - * Set the value of this {@link RTALabel} instance and return the same instance. - * - * @param value The value of this {@link RTALabel} - * @return The same instance of this {@link RTALabel} class - */ + * Set the value of this {@link RTALabel} instance and return the same instance. + * + * @param value The value of this {@link RTALabel} + * @return The same instance of this {@link RTALabel} class + */ @Nonnull public RTALabel value(@Nonnull final String value) { this.value = value; return this; } /** - * Get value - * @return value The value of this {@link RTALabel} instance. - **/ + * Get value + * @return value The value of this {@link RTALabel} instance. + */ @Nonnull public String getValue() { return value; } /** - * Set the value of this {@link RTALabel} instance. - * - * @param value The value of this {@link RTALabel} - */ + * Set the value of this {@link RTALabel} instance. + * + * @param value The value of this {@link RTALabel} + */ public void setValue( @Nonnull final String value) { this.value = value; } @@ -187,5 +186,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/RTALogCommonData.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/RTALogCommonData.java index 8dd114b1d..ca3ff67de 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/RTALogCommonData.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/RTALogCommonData.java @@ -42,7 +42,6 @@ /** * RTALogCommonData */ - // CHECKSTYLE:OFF public class RTALogCommonData // CHECKSTYLE:ON @@ -55,21 +54,21 @@ public class RTALogCommonData private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the result of this {@link RTALogCommonData} instance and return the same instance. - * - * @param result The result of this {@link RTALogCommonData} - * @return The same instance of this {@link RTALogCommonData} class - */ + * Set the result of this {@link RTALogCommonData} instance and return the same instance. + * + * @param result The result of this {@link RTALogCommonData} + * @return The same instance of this {@link RTALogCommonData} class + */ @Nonnull public RTALogCommonData result(@Nonnull final List result) { this.result = result; return this; } /** - * Add one result instance to this {@link RTALogCommonData}. - * @param resultItem The result that should be added - * @return The same instance of type {@link RTALogCommonData} - */ - @Nonnull public RTALogCommonData addresultItem( @Nonnull final RTALogCommonResultItem resultItem) { + * Add one result instance to this {@link RTALogCommonData}. + * @param resultItem The result that should be added + * @return The same instance of type {@link RTALogCommonData} + */ + @Nonnull public RTALogCommonData addResultItem( @Nonnull final RTALogCommonResultItem resultItem) { if (this.result == null) { this.result = new ArrayList<>(); } @@ -78,18 +77,18 @@ public class RTALogCommonData } /** - * Get result - * @return result The result of this {@link RTALogCommonData} instance. - **/ + * Get result + * @return result The result of this {@link RTALogCommonData} instance. + */ @Nonnull public List getResult() { return result; } /** - * Set the result of this {@link RTALogCommonData} instance. - * - * @param result The result of this {@link RTALogCommonData} - */ + * Set the result of this {@link RTALogCommonData} instance. + * + * @param result The result of this {@link RTALogCommonData} + */ public void setResult( @Nonnull final List result) { this.result = result; } @@ -170,5 +169,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/RTALogCommonResponse.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/RTALogCommonResponse.java index 8fdb0a736..db75dca75 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/RTALogCommonResponse.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/RTALogCommonResponse.java @@ -39,7 +39,6 @@ /** * A common log query response. */ - // CHECKSTYLE:OFF public class RTALogCommonResponse // CHECKSTYLE:ON @@ -52,29 +51,29 @@ public class RTALogCommonResponse private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the data of this {@link RTALogCommonResponse} instance and return the same instance. - * - * @param data The data of this {@link RTALogCommonResponse} - * @return The same instance of this {@link RTALogCommonResponse} class - */ + * Set the data of this {@link RTALogCommonResponse} instance and return the same instance. + * + * @param data The data of this {@link RTALogCommonResponse} + * @return The same instance of this {@link RTALogCommonResponse} class + */ @Nonnull public RTALogCommonResponse data(@Nonnull final RTALogCommonData data) { this.data = data; return this; } /** - * Get data - * @return data The data of this {@link RTALogCommonResponse} instance. - **/ + * Get data + * @return data The data of this {@link RTALogCommonResponse} instance. + */ @Nonnull public RTALogCommonData getData() { return data; } /** - * Set the data of this {@link RTALogCommonResponse} instance. - * - * @param data The data of this {@link RTALogCommonResponse} - */ + * Set the data of this {@link RTALogCommonResponse} instance. + * + * @param data The data of this {@link RTALogCommonResponse} + */ public void setData( @Nonnull final RTALogCommonData data) { this.data = data; } @@ -155,5 +154,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/RTALogCommonResultItem.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/RTALogCommonResultItem.java index e95deb2af..099c96afe 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/RTALogCommonResultItem.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/RTALogCommonResultItem.java @@ -39,7 +39,6 @@ /** * Common log record. */ - // CHECKSTYLE:OFF public class RTALogCommonResultItem // CHECKSTYLE:ON @@ -55,57 +54,57 @@ public class RTALogCommonResultItem private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the timestamp of this {@link RTALogCommonResultItem} instance and return the same instance. - * - * @param timestamp Datetime in RFC 3339. - * @return The same instance of this {@link RTALogCommonResultItem} class - */ + * Set the timestamp of this {@link RTALogCommonResultItem} instance and return the same instance. + * + * @param timestamp Datetime in RFC 3339. + * @return The same instance of this {@link RTALogCommonResultItem} class + */ @Nonnull public RTALogCommonResultItem timestamp(@Nonnull final OffsetDateTime timestamp) { this.timestamp = timestamp; return this; } /** - * Datetime in RFC 3339. - * @return timestamp The timestamp of this {@link RTALogCommonResultItem} instance. - **/ + * Datetime in RFC 3339. + * @return timestamp The timestamp of this {@link RTALogCommonResultItem} instance. + */ @Nonnull public OffsetDateTime getTimestamp() { return timestamp; } /** - * Set the timestamp of this {@link RTALogCommonResultItem} instance. - * - * @param timestamp Datetime in RFC 3339. - */ + * Set the timestamp of this {@link RTALogCommonResultItem} instance. + * + * @param timestamp Datetime in RFC 3339. + */ public void setTimestamp( @Nonnull final OffsetDateTime timestamp) { this.timestamp = timestamp; } /** - * Set the msg of this {@link RTALogCommonResultItem} instance and return the same instance. - * - * @param msg message content. - * @return The same instance of this {@link RTALogCommonResultItem} class - */ + * Set the msg of this {@link RTALogCommonResultItem} instance and return the same instance. + * + * @param msg message content. + * @return The same instance of this {@link RTALogCommonResultItem} class + */ @Nonnull public RTALogCommonResultItem msg(@Nonnull final String msg) { this.msg = msg; return this; } /** - * message content. - * @return msg The msg of this {@link RTALogCommonResultItem} instance. - **/ + * message content. + * @return msg The msg of this {@link RTALogCommonResultItem} instance. + */ @Nonnull public String getMsg() { return msg; } /** - * Set the msg of this {@link RTALogCommonResultItem} instance. - * - * @param msg message content. - */ + * Set the msg of this {@link RTALogCommonResultItem} instance. + * + * @param msg message content. + */ public void setMsg( @Nonnull final String msg) { this.msg = msg; } @@ -188,5 +187,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/RTAModelBaseData.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/RTAModelBaseData.java index 4fbc6a1c5..ea38f8931 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/RTAModelBaseData.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/RTAModelBaseData.java @@ -42,7 +42,6 @@ /** * RTAModelBaseData */ - // CHECKSTYLE:OFF public class RTAModelBaseData // CHECKSTYLE:ON @@ -64,105 +63,105 @@ public class RTAModelBaseData private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the model of this {@link RTAModelBaseData} instance and return the same instance. - * - * @param model Name of the model - * @return The same instance of this {@link RTAModelBaseData} class - */ + * Set the model of this {@link RTAModelBaseData} instance and return the same instance. + * + * @param model Name of the model + * @return The same instance of this {@link RTAModelBaseData} class + */ @Nonnull public RTAModelBaseData model(@Nonnull final String model) { this.model = model; return this; } /** - * Name of the model - * @return model The model of this {@link RTAModelBaseData} instance. - **/ + * Name of the model + * @return model The model of this {@link RTAModelBaseData} instance. + */ @Nonnull public String getModel() { return model; } /** - * Set the model of this {@link RTAModelBaseData} instance. - * - * @param model Name of the model - */ + * Set the model of this {@link RTAModelBaseData} instance. + * + * @param model Name of the model + */ public void setModel( @Nonnull final String model) { this.model = model; } /** - * Set the executableId of this {@link RTAModelBaseData} instance and return the same instance. - * - * @param executableId ID of the executable - * @return The same instance of this {@link RTAModelBaseData} class - */ + * Set the executableId of this {@link RTAModelBaseData} instance and return the same instance. + * + * @param executableId ID of the executable + * @return The same instance of this {@link RTAModelBaseData} class + */ @Nonnull public RTAModelBaseData executableId(@Nonnull final String executableId) { this.executableId = executableId; return this; } /** - * ID of the executable - * @return executableId The executableId of this {@link RTAModelBaseData} instance. - **/ + * ID of the executable + * @return executableId The executableId of this {@link RTAModelBaseData} instance. + */ @Nonnull public String getExecutableId() { return executableId; } /** - * Set the executableId of this {@link RTAModelBaseData} instance. - * - * @param executableId ID of the executable - */ + * Set the executableId of this {@link RTAModelBaseData} instance. + * + * @param executableId ID of the executable + */ public void setExecutableId( @Nonnull final String executableId) { this.executableId = executableId; } /** - * Set the description of this {@link RTAModelBaseData} instance and return the same instance. - * - * @param description Description of the model and its capabilities - * @return The same instance of this {@link RTAModelBaseData} class - */ + * Set the description of this {@link RTAModelBaseData} instance and return the same instance. + * + * @param description Description of the model and its capabilities + * @return The same instance of this {@link RTAModelBaseData} class + */ @Nonnull public RTAModelBaseData description(@Nonnull final String description) { this.description = description; return this; } /** - * Description of the model and its capabilities - * @return description The description of this {@link RTAModelBaseData} instance. - **/ + * Description of the model and its capabilities + * @return description The description of this {@link RTAModelBaseData} instance. + */ @Nonnull public String getDescription() { return description; } /** - * Set the description of this {@link RTAModelBaseData} instance. - * - * @param description Description of the model and its capabilities - */ + * Set the description of this {@link RTAModelBaseData} instance. + * + * @param description Description of the model and its capabilities + */ public void setDescription( @Nonnull final String description) { this.description = description; } /** - * Set the versions of this {@link RTAModelBaseData} instance and return the same instance. - * - * @param versions List of model versions that the model object has - * @return The same instance of this {@link RTAModelBaseData} class - */ + * Set the versions of this {@link RTAModelBaseData} instance and return the same instance. + * + * @param versions List of model versions that the model object has + * @return The same instance of this {@link RTAModelBaseData} class + */ @Nonnull public RTAModelBaseData versions(@Nonnull final List versions) { this.versions = versions; return this; } /** - * Add one versions instance to this {@link RTAModelBaseData}. - * @param versionsItem The versions that should be added - * @return The same instance of type {@link RTAModelBaseData} - */ - @Nonnull public RTAModelBaseData addversionsItem( @Nonnull final RTAModelVersion versionsItem) { + * Add one versions instance to this {@link RTAModelBaseData}. + * @param versionsItem The versions that should be added + * @return The same instance of type {@link RTAModelBaseData} + */ + @Nonnull public RTAModelBaseData addVersionsItem( @Nonnull final RTAModelVersion versionsItem) { if (this.versions == null) { this.versions = new ArrayList<>(); } @@ -171,18 +170,18 @@ public void setDescription( @Nonnull final String description) { } /** - * List of model versions that the model object has - * @return versions The versions of this {@link RTAModelBaseData} instance. - **/ + * List of model versions that the model object has + * @return versions The versions of this {@link RTAModelBaseData} instance. + */ @Nonnull public List getVersions() { return versions; } /** - * Set the versions of this {@link RTAModelBaseData} instance. - * - * @param versions List of model versions that the model object has - */ + * Set the versions of this {@link RTAModelBaseData} instance. + * + * @param versions List of model versions that the model object has + */ public void setVersions( @Nonnull final List versions) { this.versions = versions; } @@ -269,5 +268,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/RTAModelVersion.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/RTAModelVersion.java index c6481718a..b87b5a26b 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/RTAModelVersion.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/RTAModelVersion.java @@ -38,7 +38,6 @@ /** * Model version information including whether it is latest version */ - // CHECKSTYLE:OFF public class RTAModelVersion // CHECKSTYLE:ON @@ -54,57 +53,57 @@ public class RTAModelVersion private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the name of this {@link RTAModelVersion} instance and return the same instance. - * - * @param name Name of model version - * @return The same instance of this {@link RTAModelVersion} class - */ + * Set the name of this {@link RTAModelVersion} instance and return the same instance. + * + * @param name Name of model version + * @return The same instance of this {@link RTAModelVersion} class + */ @Nonnull public RTAModelVersion name(@Nonnull final String name) { this.name = name; return this; } /** - * Name of model version - * @return name The name of this {@link RTAModelVersion} instance. - **/ + * Name of model version + * @return name The name of this {@link RTAModelVersion} instance. + */ @Nonnull public String getName() { return name; } /** - * Set the name of this {@link RTAModelVersion} instance. - * - * @param name Name of model version - */ + * Set the name of this {@link RTAModelVersion} instance. + * + * @param name Name of model version + */ public void setName( @Nonnull final String name) { this.name = name; } /** - * Set the isLatest of this {@link RTAModelVersion} instance and return the same instance. - * - * @param isLatest Displays whether it is the latest version offered for the model - * @return The same instance of this {@link RTAModelVersion} class - */ + * Set the isLatest of this {@link RTAModelVersion} instance and return the same instance. + * + * @param isLatest Displays whether it is the latest version offered for the model + * @return The same instance of this {@link RTAModelVersion} class + */ @Nonnull public RTAModelVersion isLatest(@Nonnull final Boolean isLatest) { this.isLatest = isLatest; return this; } /** - * Displays whether it is the latest version offered for the model - * @return isLatest The isLatest of this {@link RTAModelVersion} instance. - **/ + * Displays whether it is the latest version offered for the model + * @return isLatest The isLatest of this {@link RTAModelVersion} instance. + */ @Nonnull public Boolean isIsLatest() { return isLatest; } /** - * Set the isLatest of this {@link RTAModelVersion} instance. - * - * @param isLatest Displays whether it is the latest version offered for the model - */ + * Set the isLatest of this {@link RTAModelVersion} instance. + * + * @param isLatest Displays whether it is the latest version offered for the model + */ public void setIsLatest( @Nonnull final Boolean isLatest) { this.isLatest = isLatest; } @@ -187,5 +186,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/RTAOutputArtifactArgumentBinding.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/RTAOutputArtifactArgumentBinding.java index ca2352dd0..d03ac89a1 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/RTAOutputArtifactArgumentBinding.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/RTAOutputArtifactArgumentBinding.java @@ -38,7 +38,6 @@ /** * Result of execution */ - // CHECKSTYLE:OFF public class RTAOutputArtifactArgumentBinding // CHECKSTYLE:ON @@ -54,57 +53,57 @@ public class RTAOutputArtifactArgumentBinding private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the name of this {@link RTAOutputArtifactArgumentBinding} instance and return the same instance. - * - * @param name The name of this {@link RTAOutputArtifactArgumentBinding} - * @return The same instance of this {@link RTAOutputArtifactArgumentBinding} class - */ + * Set the name of this {@link RTAOutputArtifactArgumentBinding} instance and return the same instance. + * + * @param name The name of this {@link RTAOutputArtifactArgumentBinding} + * @return The same instance of this {@link RTAOutputArtifactArgumentBinding} class + */ @Nonnull public RTAOutputArtifactArgumentBinding name(@Nonnull final String name) { this.name = name; return this; } /** - * Get name - * @return name The name of this {@link RTAOutputArtifactArgumentBinding} instance. - **/ + * Get name + * @return name The name of this {@link RTAOutputArtifactArgumentBinding} instance. + */ @Nonnull public String getName() { return name; } /** - * Set the name of this {@link RTAOutputArtifactArgumentBinding} instance. - * - * @param name The name of this {@link RTAOutputArtifactArgumentBinding} - */ + * Set the name of this {@link RTAOutputArtifactArgumentBinding} instance. + * + * @param name The name of this {@link RTAOutputArtifactArgumentBinding} + */ public void setName( @Nonnull final String name) { this.name = name; } /** - * Set the url of this {@link RTAOutputArtifactArgumentBinding} instance and return the same instance. - * - * @param url Reference to the location of the artifact. Note, the credentials will be found in a secret called 'some_bucket-object_store_secret'. If not provided, a default will be assumed. - * @return The same instance of this {@link RTAOutputArtifactArgumentBinding} class - */ + * Set the url of this {@link RTAOutputArtifactArgumentBinding} instance and return the same instance. + * + * @param url Reference to the location of the artifact. Note, the credentials will be found in a secret called 'some_bucket-object_store_secret'. If not provided, a default will be assumed. + * @return The same instance of this {@link RTAOutputArtifactArgumentBinding} class + */ @Nonnull public RTAOutputArtifactArgumentBinding url(@Nonnull final String url) { this.url = url; return this; } /** - * Reference to the location of the artifact. Note, the credentials will be found in a secret called 'some_bucket-object_store_secret'. If not provided, a default will be assumed. - * @return url The url of this {@link RTAOutputArtifactArgumentBinding} instance. - **/ + * Reference to the location of the artifact. Note, the credentials will be found in a secret called 'some_bucket-object_store_secret'. If not provided, a default will be assumed. + * @return url The url of this {@link RTAOutputArtifactArgumentBinding} instance. + */ @Nonnull public String getUrl() { return url; } /** - * Set the url of this {@link RTAOutputArtifactArgumentBinding} instance. - * - * @param url Reference to the location of the artifact. Note, the credentials will be found in a secret called 'some_bucket-object_store_secret'. If not provided, a default will be assumed. - */ + * Set the url of this {@link RTAOutputArtifactArgumentBinding} instance. + * + * @param url Reference to the location of the artifact. Note, the credentials will be found in a secret called 'some_bucket-object_store_secret'. If not provided, a default will be assumed. + */ public void setUrl( @Nonnull final String url) { this.url = url; } @@ -187,5 +186,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/RTAScenario.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/RTAScenario.java index 5877306cc..a53f29953 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/RTAScenario.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/RTAScenario.java @@ -43,7 +43,6 @@ /** * Entity having labels */ - // CHECKSTYLE:OFF public class RTAScenario // CHECKSTYLE:ON @@ -71,105 +70,105 @@ public class RTAScenario private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the id of this {@link RTAScenario} instance and return the same instance. - * - * @param id ID of the scenario - * @return The same instance of this {@link RTAScenario} class - */ + * Set the id of this {@link RTAScenario} instance and return the same instance. + * + * @param id ID of the scenario + * @return The same instance of this {@link RTAScenario} class + */ @Nonnull public RTAScenario id(@Nonnull final String id) { this.id = id; return this; } /** - * ID of the scenario - * @return id The id of this {@link RTAScenario} instance. - **/ + * ID of the scenario + * @return id The id of this {@link RTAScenario} instance. + */ @Nonnull public String getId() { return id; } /** - * Set the id of this {@link RTAScenario} instance. - * - * @param id ID of the scenario - */ + * Set the id of this {@link RTAScenario} instance. + * + * @param id ID of the scenario + */ public void setId( @Nonnull final String id) { this.id = id; } /** - * Set the name of this {@link RTAScenario} instance and return the same instance. - * - * @param name Name of the scenario - * @return The same instance of this {@link RTAScenario} class - */ + * Set the name of this {@link RTAScenario} instance and return the same instance. + * + * @param name Name of the scenario + * @return The same instance of this {@link RTAScenario} class + */ @Nonnull public RTAScenario name(@Nonnull final String name) { this.name = name; return this; } /** - * Name of the scenario - * @return name The name of this {@link RTAScenario} instance. - **/ + * Name of the scenario + * @return name The name of this {@link RTAScenario} instance. + */ @Nonnull public String getName() { return name; } /** - * Set the name of this {@link RTAScenario} instance. - * - * @param name Name of the scenario - */ + * Set the name of this {@link RTAScenario} instance. + * + * @param name Name of the scenario + */ public void setName( @Nonnull final String name) { this.name = name; } /** - * Set the description of this {@link RTAScenario} instance and return the same instance. - * - * @param description Description of the scenario - * @return The same instance of this {@link RTAScenario} class - */ + * Set the description of this {@link RTAScenario} instance and return the same instance. + * + * @param description Description of the scenario + * @return The same instance of this {@link RTAScenario} class + */ @Nonnull public RTAScenario description(@Nonnull final String description) { this.description = description; return this; } /** - * Description of the scenario - * @return description The description of this {@link RTAScenario} instance. - **/ + * Description of the scenario + * @return description The description of this {@link RTAScenario} instance. + */ @Nonnull public String getDescription() { return description; } /** - * Set the description of this {@link RTAScenario} instance. - * - * @param description Description of the scenario - */ + * Set the description of this {@link RTAScenario} instance. + * + * @param description Description of the scenario + */ public void setDescription( @Nonnull final String description) { this.description = description; } /** - * Set the labels of this {@link RTAScenario} instance and return the same instance. - * - * @param labels Arbitrary labels as meta information - * @return The same instance of this {@link RTAScenario} class - */ + * Set the labels of this {@link RTAScenario} instance and return the same instance. + * + * @param labels Arbitrary labels as meta information + * @return The same instance of this {@link RTAScenario} class + */ @Nonnull public RTAScenario labels(@Nonnull final List labels) { this.labels = labels; return this; } /** - * Add one labels instance to this {@link RTAScenario}. - * @param labelsItem The labels that should be added - * @return The same instance of type {@link RTAScenario} - */ - @Nonnull public RTAScenario addlabelsItem( @Nonnull final RTALabel labelsItem) { + * Add one labels instance to this {@link RTAScenario}. + * @param labelsItem The labels that should be added + * @return The same instance of type {@link RTAScenario} + */ + @Nonnull public RTAScenario addLabelsItem( @Nonnull final RTALabel labelsItem) { if (this.labels == null) { this.labels = new ArrayList<>(); } @@ -178,74 +177,74 @@ public void setDescription( @Nonnull final String description) { } /** - * Arbitrary labels as meta information - * @return labels The labels of this {@link RTAScenario} instance. - **/ + * Arbitrary labels as meta information + * @return labels The labels of this {@link RTAScenario} instance. + */ @Nonnull public List getLabels() { return labels; } /** - * Set the labels of this {@link RTAScenario} instance. - * - * @param labels Arbitrary labels as meta information - */ + * Set the labels of this {@link RTAScenario} instance. + * + * @param labels Arbitrary labels as meta information + */ public void setLabels( @Nonnull final List labels) { this.labels = labels; } /** - * Set the createdAt of this {@link RTAScenario} instance and return the same instance. - * - * @param createdAt Timestamp of resource creation - * @return The same instance of this {@link RTAScenario} class - */ + * Set the createdAt of this {@link RTAScenario} instance and return the same instance. + * + * @param createdAt Timestamp of resource creation + * @return The same instance of this {@link RTAScenario} class + */ @Nonnull public RTAScenario createdAt(@Nonnull final OffsetDateTime createdAt) { this.createdAt = createdAt; return this; } /** - * Timestamp of resource creation - * @return createdAt The createdAt of this {@link RTAScenario} instance. - **/ + * Timestamp of resource creation + * @return createdAt The createdAt of this {@link RTAScenario} instance. + */ @Nonnull public OffsetDateTime getCreatedAt() { return createdAt; } /** - * Set the createdAt of this {@link RTAScenario} instance. - * - * @param createdAt Timestamp of resource creation - */ + * Set the createdAt of this {@link RTAScenario} instance. + * + * @param createdAt Timestamp of resource creation + */ public void setCreatedAt( @Nonnull final OffsetDateTime createdAt) { this.createdAt = createdAt; } /** - * Set the modifiedAt of this {@link RTAScenario} instance and return the same instance. - * - * @param modifiedAt Timestamp of latest resource modification - * @return The same instance of this {@link RTAScenario} class - */ + * Set the modifiedAt of this {@link RTAScenario} instance and return the same instance. + * + * @param modifiedAt Timestamp of latest resource modification + * @return The same instance of this {@link RTAScenario} class + */ @Nonnull public RTAScenario modifiedAt(@Nonnull final OffsetDateTime modifiedAt) { this.modifiedAt = modifiedAt; return this; } /** - * Timestamp of latest resource modification - * @return modifiedAt The modifiedAt of this {@link RTAScenario} instance. - **/ + * Timestamp of latest resource modification + * @return modifiedAt The modifiedAt of this {@link RTAScenario} instance. + */ @Nonnull public OffsetDateTime getModifiedAt() { return modifiedAt; } /** - * Set the modifiedAt of this {@link RTAScenario} instance. - * - * @param modifiedAt Timestamp of latest resource modification - */ + * Set the modifiedAt of this {@link RTAScenario} instance. + * + * @param modifiedAt Timestamp of latest resource modification + */ public void setModifiedAt( @Nonnull final OffsetDateTime modifiedAt) { this.modifiedAt = modifiedAt; } @@ -336,5 +335,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/TrckApiError.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/TrckApiError.java index 2bdaa30a9..af9bd02b8 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/TrckApiError.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/TrckApiError.java @@ -42,7 +42,6 @@ /** * TrckApiError */ - // CHECKSTYLE:OFF public class TrckApiError // CHECKSTYLE:ON @@ -67,133 +66,133 @@ public class TrckApiError private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the code of this {@link TrckApiError} instance and return the same instance. - * - * @param code Descriptive error code (not http status code). - * @return The same instance of this {@link TrckApiError} class - */ + * Set the code of this {@link TrckApiError} instance and return the same instance. + * + * @param code Descriptive error code (not http status code). + * @return The same instance of this {@link TrckApiError} class + */ @Nonnull public TrckApiError code(@Nonnull final String code) { this.code = code; return this; } /** - * Descriptive error code (not http status code). - * @return code The code of this {@link TrckApiError} instance. - **/ + * Descriptive error code (not http status code). + * @return code The code of this {@link TrckApiError} instance. + */ @Nonnull public String getCode() { return code; } /** - * Set the code of this {@link TrckApiError} instance. - * - * @param code Descriptive error code (not http status code). - */ + * Set the code of this {@link TrckApiError} instance. + * + * @param code Descriptive error code (not http status code). + */ public void setCode( @Nonnull final String code) { this.code = code; } /** - * Set the message of this {@link TrckApiError} instance and return the same instance. - * - * @param message plaintext error description - * @return The same instance of this {@link TrckApiError} class - */ + * Set the message of this {@link TrckApiError} instance and return the same instance. + * + * @param message plaintext error description + * @return The same instance of this {@link TrckApiError} class + */ @Nonnull public TrckApiError message(@Nonnull final String message) { this.message = message; return this; } /** - * plaintext error description - * @return message The message of this {@link TrckApiError} instance. - **/ + * plaintext error description + * @return message The message of this {@link TrckApiError} instance. + */ @Nonnull public String getMessage() { return message; } /** - * Set the message of this {@link TrckApiError} instance. - * - * @param message plaintext error description - */ + * Set the message of this {@link TrckApiError} instance. + * + * @param message plaintext error description + */ public void setMessage( @Nonnull final String message) { this.message = message; } /** - * Set the requestId of this {@link TrckApiError} instance and return the same instance. - * - * @param requestId id of individual request - * @return The same instance of this {@link TrckApiError} class - */ + * Set the requestId of this {@link TrckApiError} instance and return the same instance. + * + * @param requestId id of individual request + * @return The same instance of this {@link TrckApiError} class + */ @Nonnull public TrckApiError requestId(@Nonnull final String requestId) { this.requestId = requestId; return this; } /** - * id of individual request - * @return requestId The requestId of this {@link TrckApiError} instance. - **/ + * id of individual request + * @return requestId The requestId of this {@link TrckApiError} instance. + */ @Nonnull public String getRequestId() { return requestId; } /** - * Set the requestId of this {@link TrckApiError} instance. - * - * @param requestId id of individual request - */ + * Set the requestId of this {@link TrckApiError} instance. + * + * @param requestId id of individual request + */ public void setRequestId( @Nonnull final String requestId) { this.requestId = requestId; } /** - * Set the target of this {@link TrckApiError} instance and return the same instance. - * - * @param target url that has been called - * @return The same instance of this {@link TrckApiError} class - */ + * Set the target of this {@link TrckApiError} instance and return the same instance. + * + * @param target url that has been called + * @return The same instance of this {@link TrckApiError} class + */ @Nonnull public TrckApiError target(@Nonnull final String target) { this.target = target; return this; } /** - * url that has been called - * @return target The target of this {@link TrckApiError} instance. - **/ + * url that has been called + * @return target The target of this {@link TrckApiError} instance. + */ @Nonnull public String getTarget() { return target; } /** - * Set the target of this {@link TrckApiError} instance. - * - * @param target url that has been called - */ + * Set the target of this {@link TrckApiError} instance. + * + * @param target url that has been called + */ public void setTarget( @Nonnull final String target) { this.target = target; } /** - * Set the details of this {@link TrckApiError} instance and return the same instance. - * - * @param details The details of this {@link TrckApiError} - * @return The same instance of this {@link TrckApiError} class - */ + * Set the details of this {@link TrckApiError} instance and return the same instance. + * + * @param details The details of this {@link TrckApiError} + * @return The same instance of this {@link TrckApiError} class + */ @Nonnull public TrckApiError details(@Nonnull final List details) { this.details = details; return this; } /** - * Add one details instance to this {@link TrckApiError}. - * @param detailsItem The details that should be added - * @return The same instance of type {@link TrckApiError} - */ - @Nonnull public TrckApiError adddetailsItem( @Nonnull final TrckDetailsErrorResponse detailsItem) { + * Add one details instance to this {@link TrckApiError}. + * @param detailsItem The details that should be added + * @return The same instance of type {@link TrckApiError} + */ + @Nonnull public TrckApiError addDetailsItem( @Nonnull final TrckDetailsErrorResponse detailsItem) { if (this.details == null) { this.details = new ArrayList<>(); } @@ -202,18 +201,18 @@ public void setTarget( @Nonnull final String target) { } /** - * Get details - * @return details The details of this {@link TrckApiError} instance. - **/ + * Get details + * @return details The details of this {@link TrckApiError} instance. + */ @Nonnull public List getDetails() { return details; } /** - * Set the details of this {@link TrckApiError} instance. - * - * @param details The details of this {@link TrckApiError} - */ + * Set the details of this {@link TrckApiError} instance. + * + * @param details The details of this {@link TrckApiError} + */ public void setDetails( @Nonnull final List details) { this.details = details; } @@ -302,5 +301,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/TrckCustomInfoObject.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/TrckCustomInfoObject.java index 88eb4bd53..724655b08 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/TrckCustomInfoObject.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/TrckCustomInfoObject.java @@ -39,7 +39,6 @@ /** * large object which provides rendering/semantic information regarding certain metric for consuming application or can be complex metrics in JSON format */ - // CHECKSTYLE:OFF public class TrckCustomInfoObject // CHECKSTYLE:ON @@ -55,57 +54,57 @@ public class TrckCustomInfoObject private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the name of this {@link TrckCustomInfoObject} instance and return the same instance. - * - * @param name The name of this {@link TrckCustomInfoObject} - * @return The same instance of this {@link TrckCustomInfoObject} class - */ + * Set the name of this {@link TrckCustomInfoObject} instance and return the same instance. + * + * @param name The name of this {@link TrckCustomInfoObject} + * @return The same instance of this {@link TrckCustomInfoObject} class + */ @Nonnull public TrckCustomInfoObject name(@Nonnull final TrckTagName name) { this.name = name; return this; } /** - * Get name - * @return name The name of this {@link TrckCustomInfoObject} instance. - **/ + * Get name + * @return name The name of this {@link TrckCustomInfoObject} instance. + */ @Nonnull public TrckTagName getName() { return name; } /** - * Set the name of this {@link TrckCustomInfoObject} instance. - * - * @param name The name of this {@link TrckCustomInfoObject} - */ + * Set the name of this {@link TrckCustomInfoObject} instance. + * + * @param name The name of this {@link TrckCustomInfoObject} + */ public void setName( @Nonnull final TrckTagName name) { this.name = name; } /** - * Set the value of this {@link TrckCustomInfoObject} instance and return the same instance. - * - * @param value Message - * @return The same instance of this {@link TrckCustomInfoObject} class - */ + * Set the value of this {@link TrckCustomInfoObject} instance and return the same instance. + * + * @param value Message + * @return The same instance of this {@link TrckCustomInfoObject} class + */ @Nonnull public TrckCustomInfoObject value(@Nonnull final String value) { this.value = value; return this; } /** - * Message - * @return value The value of this {@link TrckCustomInfoObject} instance. - **/ + * Message + * @return value The value of this {@link TrckCustomInfoObject} instance. + */ @Nonnull public String getValue() { return value; } /** - * Set the value of this {@link TrckCustomInfoObject} instance. - * - * @param value Message - */ + * Set the value of this {@link TrckCustomInfoObject} instance. + * + * @param value Message + */ public void setValue( @Nonnull final String value) { this.value = value; } @@ -188,5 +187,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/TrckDeleteMetricsResponse.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/TrckDeleteMetricsResponse.java index 5abd21e1c..38f47bdc4 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/TrckDeleteMetricsResponse.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/TrckDeleteMetricsResponse.java @@ -39,7 +39,6 @@ /** * TrckDeleteMetricsResponse */ - // CHECKSTYLE:OFF public class TrckDeleteMetricsResponse // CHECKSTYLE:ON @@ -55,57 +54,57 @@ public class TrckDeleteMetricsResponse private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the id of this {@link TrckDeleteMetricsResponse} instance and return the same instance. - * - * @param id The id of this {@link TrckDeleteMetricsResponse} - * @return The same instance of this {@link TrckDeleteMetricsResponse} class - */ + * Set the id of this {@link TrckDeleteMetricsResponse} instance and return the same instance. + * + * @param id The id of this {@link TrckDeleteMetricsResponse} + * @return The same instance of this {@link TrckDeleteMetricsResponse} class + */ @Nonnull public TrckDeleteMetricsResponse id(@Nonnull final TrckExecutionId id) { this.id = id; return this; } /** - * Get id - * @return id The id of this {@link TrckDeleteMetricsResponse} instance. - **/ + * Get id + * @return id The id of this {@link TrckDeleteMetricsResponse} instance. + */ @Nonnull public TrckExecutionId getId() { return id; } /** - * Set the id of this {@link TrckDeleteMetricsResponse} instance. - * - * @param id The id of this {@link TrckDeleteMetricsResponse} - */ + * Set the id of this {@link TrckDeleteMetricsResponse} instance. + * + * @param id The id of this {@link TrckDeleteMetricsResponse} + */ public void setId( @Nonnull final TrckExecutionId id) { this.id = id; } /** - * Set the message of this {@link TrckDeleteMetricsResponse} instance and return the same instance. - * - * @param message The message of this {@link TrckDeleteMetricsResponse} - * @return The same instance of this {@link TrckDeleteMetricsResponse} class - */ + * Set the message of this {@link TrckDeleteMetricsResponse} instance and return the same instance. + * + * @param message The message of this {@link TrckDeleteMetricsResponse} + * @return The same instance of this {@link TrckDeleteMetricsResponse} class + */ @Nonnull public TrckDeleteMetricsResponse message(@Nonnull final String message) { this.message = message; return this; } /** - * Get message - * @return message The message of this {@link TrckDeleteMetricsResponse} instance. - **/ + * Get message + * @return message The message of this {@link TrckDeleteMetricsResponse} instance. + */ @Nonnull public String getMessage() { return message; } /** - * Set the message of this {@link TrckDeleteMetricsResponse} instance. - * - * @param message The message of this {@link TrckDeleteMetricsResponse} - */ + * Set the message of this {@link TrckDeleteMetricsResponse} instance. + * + * @param message The message of this {@link TrckDeleteMetricsResponse} + */ public void setMessage( @Nonnull final String message) { this.message = message; } @@ -188,5 +187,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/TrckDetailsErrorResponse.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/TrckDetailsErrorResponse.java index d9d757d05..a89cc8565 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/TrckDetailsErrorResponse.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/TrckDetailsErrorResponse.java @@ -38,7 +38,6 @@ /** * TrckDetailsErrorResponse */ - // CHECKSTYLE:OFF public class TrckDetailsErrorResponse // CHECKSTYLE:ON @@ -54,57 +53,57 @@ public class TrckDetailsErrorResponse private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the code of this {@link TrckDetailsErrorResponse} instance and return the same instance. - * - * @param code Descriptive error code (not http status code) - * @return The same instance of this {@link TrckDetailsErrorResponse} class - */ + * Set the code of this {@link TrckDetailsErrorResponse} instance and return the same instance. + * + * @param code Descriptive error code (not http status code) + * @return The same instance of this {@link TrckDetailsErrorResponse} class + */ @Nonnull public TrckDetailsErrorResponse code(@Nonnull final String code) { this.code = code; return this; } /** - * Descriptive error code (not http status code) - * @return code The code of this {@link TrckDetailsErrorResponse} instance. - **/ + * Descriptive error code (not http status code) + * @return code The code of this {@link TrckDetailsErrorResponse} instance. + */ @Nonnull public String getCode() { return code; } /** - * Set the code of this {@link TrckDetailsErrorResponse} instance. - * - * @param code Descriptive error code (not http status code) - */ + * Set the code of this {@link TrckDetailsErrorResponse} instance. + * + * @param code Descriptive error code (not http status code) + */ public void setCode( @Nonnull final String code) { this.code = code; } /** - * Set the message of this {@link TrckDetailsErrorResponse} instance and return the same instance. - * - * @param message Plaintext error description - * @return The same instance of this {@link TrckDetailsErrorResponse} class - */ + * Set the message of this {@link TrckDetailsErrorResponse} instance and return the same instance. + * + * @param message Plaintext error description + * @return The same instance of this {@link TrckDetailsErrorResponse} class + */ @Nonnull public TrckDetailsErrorResponse message(@Nonnull final String message) { this.message = message; return this; } /** - * Plaintext error description - * @return message The message of this {@link TrckDetailsErrorResponse} instance. - **/ + * Plaintext error description + * @return message The message of this {@link TrckDetailsErrorResponse} instance. + */ @Nonnull public String getMessage() { return message; } /** - * Set the message of this {@link TrckDetailsErrorResponse} instance. - * - * @param message Plaintext error description - */ + * Set the message of this {@link TrckDetailsErrorResponse} instance. + * + * @param message Plaintext error description + */ public void setMessage( @Nonnull final String message) { this.message = message; } @@ -187,5 +186,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/TrckExecutionId.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/TrckExecutionId.java index d763a1901..172310f82 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/TrckExecutionId.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/TrckExecutionId.java @@ -33,7 +33,6 @@ /** * ID of the deployment/execution */ - // CHECKSTYLE:OFF public class TrckExecutionId // CHECKSTYLE:ON @@ -116,5 +115,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/TrckGetMetric.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/TrckGetMetric.java index 330238233..381361c31 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/TrckGetMetric.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/TrckGetMetric.java @@ -44,7 +44,6 @@ /** * Key-value metrics, where the value is numeric. Metric can also have optional step and label fields. */ - // CHECKSTYLE:OFF public class TrckGetMetric // CHECKSTYLE:ON @@ -69,136 +68,136 @@ public class TrckGetMetric private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the name of this {@link TrckGetMetric} instance and return the same instance. - * - * @param name Name of the metric - * @return The same instance of this {@link TrckGetMetric} class - */ + * Set the name of this {@link TrckGetMetric} instance and return the same instance. + * + * @param name Name of the metric + * @return The same instance of this {@link TrckGetMetric} class + */ @Nonnull public TrckGetMetric name(@Nonnull final String name) { this.name = name; return this; } /** - * Name of the metric - * @return name The name of this {@link TrckGetMetric} instance. - **/ + * Name of the metric + * @return name The name of this {@link TrckGetMetric} instance. + */ @Nonnull public String getName() { return name; } /** - * Set the name of this {@link TrckGetMetric} instance. - * - * @param name Name of the metric - */ + * Set the name of this {@link TrckGetMetric} instance. + * + * @param name Name of the metric + */ public void setName( @Nonnull final String name) { this.name = name; } /** - * Set the value of this {@link TrckGetMetric} instance and return the same instance. - * - * @param value Numeric Value of the metric - * @return The same instance of this {@link TrckGetMetric} class - */ + * Set the value of this {@link TrckGetMetric} instance and return the same instance. + * + * @param value Numeric Value of the metric + * @return The same instance of this {@link TrckGetMetric} class + */ @Nonnull public TrckGetMetric value(@Nonnull final BigDecimal value) { this.value = value; return this; } /** - * Numeric Value of the metric - * @return value The value of this {@link TrckGetMetric} instance. - **/ + * Numeric Value of the metric + * @return value The value of this {@link TrckGetMetric} instance. + */ @Nonnull public BigDecimal getValue() { return value; } /** - * Set the value of this {@link TrckGetMetric} instance. - * - * @param value Numeric Value of the metric - */ + * Set the value of this {@link TrckGetMetric} instance. + * + * @param value Numeric Value of the metric + */ public void setValue( @Nonnull final BigDecimal value) { this.value = value; } /** - * Set the timestamp of this {@link TrckGetMetric} instance and return the same instance. - * - * @param timestamp Time when the metric was created or logged in RFC3339 format - * @return The same instance of this {@link TrckGetMetric} class - */ + * Set the timestamp of this {@link TrckGetMetric} instance and return the same instance. + * + * @param timestamp Time when the metric was created or logged in RFC3339 format + * @return The same instance of this {@link TrckGetMetric} class + */ @Nonnull public TrckGetMetric timestamp(@Nonnull final OffsetDateTime timestamp) { this.timestamp = timestamp; return this; } /** - * Time when the metric was created or logged in RFC3339 format - * @return timestamp The timestamp of this {@link TrckGetMetric} instance. - **/ + * Time when the metric was created or logged in RFC3339 format + * @return timestamp The timestamp of this {@link TrckGetMetric} instance. + */ @Nonnull public OffsetDateTime getTimestamp() { return timestamp; } /** - * Set the timestamp of this {@link TrckGetMetric} instance. - * - * @param timestamp Time when the metric was created or logged in RFC3339 format - */ + * Set the timestamp of this {@link TrckGetMetric} instance. + * + * @param timestamp Time when the metric was created or logged in RFC3339 format + */ public void setTimestamp( @Nonnull final OffsetDateTime timestamp) { this.timestamp = timestamp; } /** - * Set the step of this {@link TrckGetMetric} instance and return the same instance. - * - * @param step step is an optional integer that represents any measurement of training progress (number of training iterations, number of epochs, and so on) for the metric - * Minimum: 0 - * @return The same instance of this {@link TrckGetMetric} class - */ + * Set the step of this {@link TrckGetMetric} instance and return the same instance. + * + * @param step step is an optional integer that represents any measurement of training progress (number of training iterations, number of epochs, and so on) for the metric + * Minimum: 0 + * @return The same instance of this {@link TrckGetMetric} class + */ @Nonnull public TrckGetMetric step(@Nonnull final Integer step) { this.step = step; return this; } /** - * step is an optional integer that represents any measurement of training progress (number of training iterations, number of epochs, and so on) for the metric - * minimum: 0 - * @return step The step of this {@link TrckGetMetric} instance. - **/ + * step is an optional integer that represents any measurement of training progress (number of training iterations, number of epochs, and so on) for the metric + * minimum: 0 + * @return step The step of this {@link TrckGetMetric} instance. + */ @Nonnull public Integer getStep() { return step; } /** - * Set the step of this {@link TrckGetMetric} instance. - * - * @param step step is an optional integer that represents any measurement of training progress (number of training iterations, number of epochs, and so on) for the metric - * Minimum: 0 - */ + * Set the step of this {@link TrckGetMetric} instance. + * + * @param step step is an optional integer that represents any measurement of training progress (number of training iterations, number of epochs, and so on) for the metric + * Minimum: 0 + */ public void setStep( @Nonnull final Integer step) { this.step = step; } /** - * Set the labels of this {@link TrckGetMetric} instance and return the same instance. - * - * @param labels a list of name-value object pairs associated with some metric. - * @return The same instance of this {@link TrckGetMetric} class - */ + * Set the labels of this {@link TrckGetMetric} instance and return the same instance. + * + * @param labels a list of name-value object pairs associated with some metric. + * @return The same instance of this {@link TrckGetMetric} class + */ @Nonnull public TrckGetMetric labels(@Nonnull final List labels) { this.labels = labels; return this; } /** - * Add one labels instance to this {@link TrckGetMetric}. - * @param labelsItem The labels that should be added - * @return The same instance of type {@link TrckGetMetric} - */ - @Nonnull public TrckGetMetric addlabelsItem( @Nonnull final TrckLabel labelsItem) { + * Add one labels instance to this {@link TrckGetMetric}. + * @param labelsItem The labels that should be added + * @return The same instance of type {@link TrckGetMetric} + */ + @Nonnull public TrckGetMetric addLabelsItem( @Nonnull final TrckLabel labelsItem) { if (this.labels == null) { this.labels = new ArrayList<>(); } @@ -207,18 +206,18 @@ public void setStep( @Nonnull final Integer step) { } /** - * a list of name-value object pairs associated with some metric. - * @return labels The labels of this {@link TrckGetMetric} instance. - **/ + * a list of name-value object pairs associated with some metric. + * @return labels The labels of this {@link TrckGetMetric} instance. + */ @Nonnull public List getLabels() { return labels; } /** - * Set the labels of this {@link TrckGetMetric} instance. - * - * @param labels a list of name-value object pairs associated with some metric. - */ + * Set the labels of this {@link TrckGetMetric} instance. + * + * @param labels a list of name-value object pairs associated with some metric. + */ public void setLabels( @Nonnull final List labels) { this.labels = labels; } @@ -307,5 +306,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/TrckGetMetricResource.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/TrckGetMetricResource.java index f9348c092..c251890f9 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/TrckGetMetricResource.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/TrckGetMetricResource.java @@ -45,7 +45,6 @@ /** * Collection of various metrics/tags/labels associated against some execution/deployment */ - // CHECKSTYLE:OFF public class TrckGetMetricResource // CHECKSTYLE:ON @@ -67,49 +66,49 @@ public class TrckGetMetricResource private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the executionId of this {@link TrckGetMetricResource} instance and return the same instance. - * - * @param executionId The executionId of this {@link TrckGetMetricResource} - * @return The same instance of this {@link TrckGetMetricResource} class - */ + * Set the executionId of this {@link TrckGetMetricResource} instance and return the same instance. + * + * @param executionId The executionId of this {@link TrckGetMetricResource} + * @return The same instance of this {@link TrckGetMetricResource} class + */ @Nonnull public TrckGetMetricResource executionId(@Nonnull final TrckExecutionId executionId) { this.executionId = executionId; return this; } /** - * Get executionId - * @return executionId The executionId of this {@link TrckGetMetricResource} instance. - **/ + * Get executionId + * @return executionId The executionId of this {@link TrckGetMetricResource} instance. + */ @Nonnull public TrckExecutionId getExecutionId() { return executionId; } /** - * Set the executionId of this {@link TrckGetMetricResource} instance. - * - * @param executionId The executionId of this {@link TrckGetMetricResource} - */ + * Set the executionId of this {@link TrckGetMetricResource} instance. + * + * @param executionId The executionId of this {@link TrckGetMetricResource} + */ public void setExecutionId( @Nonnull final TrckExecutionId executionId) { this.executionId = executionId; } /** - * Set the metrics of this {@link TrckGetMetricResource} instance and return the same instance. - * - * @param metrics Array of Metric items - * @return The same instance of this {@link TrckGetMetricResource} class - */ + * Set the metrics of this {@link TrckGetMetricResource} instance and return the same instance. + * + * @param metrics Array of Metric items + * @return The same instance of this {@link TrckGetMetricResource} class + */ @Nonnull public TrckGetMetricResource metrics(@Nonnull final List metrics) { this.metrics = metrics; return this; } /** - * Add one metrics instance to this {@link TrckGetMetricResource}. - * @param metricsItem The metrics that should be added - * @return The same instance of type {@link TrckGetMetricResource} - */ - @Nonnull public TrckGetMetricResource addmetricsItem( @Nonnull final TrckGetMetric metricsItem) { + * Add one metrics instance to this {@link TrckGetMetricResource}. + * @param metricsItem The metrics that should be added + * @return The same instance of type {@link TrckGetMetricResource} + */ + @Nonnull public TrckGetMetricResource addMetricsItem( @Nonnull final TrckGetMetric metricsItem) { if (this.metrics == null) { this.metrics = new ArrayList<>(); } @@ -118,38 +117,38 @@ public void setExecutionId( @Nonnull final TrckExecutionId executionId) { } /** - * Array of Metric items - * @return metrics The metrics of this {@link TrckGetMetricResource} instance. - **/ + * Array of Metric items + * @return metrics The metrics of this {@link TrckGetMetricResource} instance. + */ @Nonnull public List getMetrics() { return metrics; } /** - * Set the metrics of this {@link TrckGetMetricResource} instance. - * - * @param metrics Array of Metric items - */ + * Set the metrics of this {@link TrckGetMetricResource} instance. + * + * @param metrics Array of Metric items + */ public void setMetrics( @Nonnull final List metrics) { this.metrics = metrics; } /** - * Set the tags of this {@link TrckGetMetricResource} instance and return the same instance. - * - * @param tags a list of name-value object pairs associated with the execution/deployment. Tags are queryable. - * @return The same instance of this {@link TrckGetMetricResource} class - */ + * Set the tags of this {@link TrckGetMetricResource} instance and return the same instance. + * + * @param tags a list of name-value object pairs associated with the execution/deployment. Tags are queryable. + * @return The same instance of this {@link TrckGetMetricResource} class + */ @Nonnull public TrckGetMetricResource tags(@Nonnull final List tags) { this.tags = tags; return this; } /** - * Add one tags instance to this {@link TrckGetMetricResource}. - * @param tagsItem The tags that should be added - * @return The same instance of type {@link TrckGetMetricResource} - */ - @Nonnull public TrckGetMetricResource addtagsItem( @Nonnull final TrckTag tagsItem) { + * Add one tags instance to this {@link TrckGetMetricResource}. + * @param tagsItem The tags that should be added + * @return The same instance of type {@link TrckGetMetricResource} + */ + @Nonnull public TrckGetMetricResource addTagsItem( @Nonnull final TrckTag tagsItem) { if (this.tags == null) { this.tags = new ArrayList<>(); } @@ -158,38 +157,38 @@ public void setMetrics( @Nonnull final List metrics) { } /** - * a list of name-value object pairs associated with the execution/deployment. Tags are queryable. - * @return tags The tags of this {@link TrckGetMetricResource} instance. - **/ + * a list of name-value object pairs associated with the execution/deployment. Tags are queryable. + * @return tags The tags of this {@link TrckGetMetricResource} instance. + */ @Nonnull public List getTags() { return tags; } /** - * Set the tags of this {@link TrckGetMetricResource} instance. - * - * @param tags a list of name-value object pairs associated with the execution/deployment. Tags are queryable. - */ + * Set the tags of this {@link TrckGetMetricResource} instance. + * + * @param tags a list of name-value object pairs associated with the execution/deployment. Tags are queryable. + */ public void setTags( @Nonnull final List tags) { this.tags = tags; } /** - * Set the customInfo of this {@link TrckGetMetricResource} instance and return the same instance. - * - * @param customInfo - * @return The same instance of this {@link TrckGetMetricResource} class - */ + * Set the customInfo of this {@link TrckGetMetricResource} instance and return the same instance. + * + * @param customInfo + * @return The same instance of this {@link TrckGetMetricResource} class + */ @Nonnull public TrckGetMetricResource customInfo(@Nonnull final List customInfo) { this.customInfo = customInfo; return this; } /** - * Add one customInfo instance to this {@link TrckGetMetricResource}. - * @param customInfoItem The customInfo that should be added - * @return The same instance of type {@link TrckGetMetricResource} - */ - @Nonnull public TrckGetMetricResource addcustomInfoItem( @Nonnull final TrckCustomInfoObject customInfoItem) { + * Add one customInfo instance to this {@link TrckGetMetricResource}. + * @param customInfoItem The customInfo that should be added + * @return The same instance of type {@link TrckGetMetricResource} + */ + @Nonnull public TrckGetMetricResource addCustomInfoItem( @Nonnull final TrckCustomInfoObject customInfoItem) { if (this.customInfo == null) { this.customInfo = new ArrayList<>(); } @@ -198,18 +197,18 @@ public void setTags( @Nonnull final List tags) { } /** - * - * @return customInfo The customInfo of this {@link TrckGetMetricResource} instance. - **/ + * + * @return customInfo The customInfo of this {@link TrckGetMetricResource} instance. + */ @Nonnull public List getCustomInfo() { return customInfo; } /** - * Set the customInfo of this {@link TrckGetMetricResource} instance. - * - * @param customInfo - */ + * Set the customInfo of this {@link TrckGetMetricResource} instance. + * + * @param customInfo + */ public void setCustomInfo( @Nonnull final List customInfo) { this.customInfo = customInfo; } @@ -296,5 +295,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/TrckGetMetricResourceList.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/TrckGetMetricResourceList.java index 63b1f9380..5ea71e7e7 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/TrckGetMetricResourceList.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/TrckGetMetricResourceList.java @@ -42,7 +42,6 @@ /** * TrckGetMetricResourceList */ - // CHECKSTYLE:OFF public class TrckGetMetricResourceList // CHECKSTYLE:ON @@ -58,49 +57,49 @@ public class TrckGetMetricResourceList private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the count of this {@link TrckGetMetricResourceList} instance and return the same instance. - * - * @param count Number of the resource instances in the list - * @return The same instance of this {@link TrckGetMetricResourceList} class - */ + * Set the count of this {@link TrckGetMetricResourceList} instance and return the same instance. + * + * @param count Number of the resource instances in the list + * @return The same instance of this {@link TrckGetMetricResourceList} class + */ @Nonnull public TrckGetMetricResourceList count(@Nonnull final Integer count) { this.count = count; return this; } /** - * Number of the resource instances in the list - * @return count The count of this {@link TrckGetMetricResourceList} instance. - **/ + * Number of the resource instances in the list + * @return count The count of this {@link TrckGetMetricResourceList} instance. + */ @Nonnull public Integer getCount() { return count; } /** - * Set the count of this {@link TrckGetMetricResourceList} instance. - * - * @param count Number of the resource instances in the list - */ + * Set the count of this {@link TrckGetMetricResourceList} instance. + * + * @param count Number of the resource instances in the list + */ public void setCount( @Nonnull final Integer count) { this.count = count; } /** - * Set the resources of this {@link TrckGetMetricResourceList} instance and return the same instance. - * - * @param resources The resources of this {@link TrckGetMetricResourceList} - * @return The same instance of this {@link TrckGetMetricResourceList} class - */ + * Set the resources of this {@link TrckGetMetricResourceList} instance and return the same instance. + * + * @param resources The resources of this {@link TrckGetMetricResourceList} + * @return The same instance of this {@link TrckGetMetricResourceList} class + */ @Nonnull public TrckGetMetricResourceList resources(@Nonnull final List resources) { this.resources = resources; return this; } /** - * Add one resources instance to this {@link TrckGetMetricResourceList}. - * @param resourcesItem The resources that should be added - * @return The same instance of type {@link TrckGetMetricResourceList} - */ - @Nonnull public TrckGetMetricResourceList addresourcesItem( @Nonnull final TrckGetMetricResource resourcesItem) { + * Add one resources instance to this {@link TrckGetMetricResourceList}. + * @param resourcesItem The resources that should be added + * @return The same instance of type {@link TrckGetMetricResourceList} + */ + @Nonnull public TrckGetMetricResourceList addResourcesItem( @Nonnull final TrckGetMetricResource resourcesItem) { if (this.resources == null) { this.resources = new ArrayList<>(); } @@ -109,18 +108,18 @@ public void setCount( @Nonnull final Integer count) { } /** - * Get resources - * @return resources The resources of this {@link TrckGetMetricResourceList} instance. - **/ + * Get resources + * @return resources The resources of this {@link TrckGetMetricResourceList} instance. + */ @Nonnull public List getResources() { return resources; } /** - * Set the resources of this {@link TrckGetMetricResourceList} instance. - * - * @param resources The resources of this {@link TrckGetMetricResourceList} - */ + * Set the resources of this {@link TrckGetMetricResourceList} instance. + * + * @param resources The resources of this {@link TrckGetMetricResourceList} + */ public void setResources( @Nonnull final List resources) { this.resources = resources; } @@ -203,5 +202,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/TrckLabel.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/TrckLabel.java index 6bcc60968..2ec208462 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/TrckLabel.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/TrckLabel.java @@ -38,7 +38,6 @@ /** * a classifying phrase/name applied to a metric */ - // CHECKSTYLE:OFF public class TrckLabel // CHECKSTYLE:ON @@ -54,57 +53,57 @@ public class TrckLabel private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the name of this {@link TrckLabel} instance and return the same instance. - * - * @param name Label name to label one or more metrics. \"metrics.ai.sap.com/Artifact.name\" is a reserved label to associate an artifact with the metrics - * @return The same instance of this {@link TrckLabel} class - */ + * Set the name of this {@link TrckLabel} instance and return the same instance. + * + * @param name Label name to label one or more metrics. \"metrics.ai.sap.com/Artifact.name\" is a reserved label to associate an artifact with the metrics + * @return The same instance of this {@link TrckLabel} class + */ @Nonnull public TrckLabel name(@Nonnull final String name) { this.name = name; return this; } /** - * Label name to label one or more metrics. \"metrics.ai.sap.com/Artifact.name\" is a reserved label to associate an artifact with the metrics - * @return name The name of this {@link TrckLabel} instance. - **/ + * Label name to label one or more metrics. \"metrics.ai.sap.com/Artifact.name\" is a reserved label to associate an artifact with the metrics + * @return name The name of this {@link TrckLabel} instance. + */ @Nonnull public String getName() { return name; } /** - * Set the name of this {@link TrckLabel} instance. - * - * @param name Label name to label one or more metrics. \"metrics.ai.sap.com/Artifact.name\" is a reserved label to associate an artifact with the metrics - */ + * Set the name of this {@link TrckLabel} instance. + * + * @param name Label name to label one or more metrics. \"metrics.ai.sap.com/Artifact.name\" is a reserved label to associate an artifact with the metrics + */ public void setName( @Nonnull final String name) { this.name = name; } /** - * Set the value of this {@link TrckLabel} instance and return the same instance. - * - * @param value Metric Label Value - * @return The same instance of this {@link TrckLabel} class - */ + * Set the value of this {@link TrckLabel} instance and return the same instance. + * + * @param value Metric Label Value + * @return The same instance of this {@link TrckLabel} class + */ @Nonnull public TrckLabel value(@Nonnull final String value) { this.value = value; return this; } /** - * Metric Label Value - * @return value The value of this {@link TrckLabel} instance. - **/ + * Metric Label Value + * @return value The value of this {@link TrckLabel} instance. + */ @Nonnull public String getValue() { return value; } /** - * Set the value of this {@link TrckLabel} instance. - * - * @param value Metric Label Value - */ + * Set the value of this {@link TrckLabel} instance. + * + * @param value Metric Label Value + */ public void setValue( @Nonnull final String value) { this.value = value; } @@ -187,5 +186,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/TrckMetric.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/TrckMetric.java index c3d04f276..b0799442a 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/TrckMetric.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/TrckMetric.java @@ -44,7 +44,6 @@ /** * Key-value metrics, where the value is numeric. Metric can also have optional step and label fields. */ - // CHECKSTYLE:OFF public class TrckMetric // CHECKSTYLE:ON @@ -69,136 +68,136 @@ public class TrckMetric private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the name of this {@link TrckMetric} instance and return the same instance. - * - * @param name Name of the metric - * @return The same instance of this {@link TrckMetric} class - */ + * Set the name of this {@link TrckMetric} instance and return the same instance. + * + * @param name Name of the metric + * @return The same instance of this {@link TrckMetric} class + */ @Nonnull public TrckMetric name(@Nonnull final String name) { this.name = name; return this; } /** - * Name of the metric - * @return name The name of this {@link TrckMetric} instance. - **/ + * Name of the metric + * @return name The name of this {@link TrckMetric} instance. + */ @Nonnull public String getName() { return name; } /** - * Set the name of this {@link TrckMetric} instance. - * - * @param name Name of the metric - */ + * Set the name of this {@link TrckMetric} instance. + * + * @param name Name of the metric + */ public void setName( @Nonnull final String name) { this.name = name; } /** - * Set the value of this {@link TrckMetric} instance and return the same instance. - * - * @param value Numeric Value of the metric - * @return The same instance of this {@link TrckMetric} class - */ + * Set the value of this {@link TrckMetric} instance and return the same instance. + * + * @param value Numeric Value of the metric + * @return The same instance of this {@link TrckMetric} class + */ @Nonnull public TrckMetric value(@Nonnull final BigDecimal value) { this.value = value; return this; } /** - * Numeric Value of the metric - * @return value The value of this {@link TrckMetric} instance. - **/ + * Numeric Value of the metric + * @return value The value of this {@link TrckMetric} instance. + */ @Nonnull public BigDecimal getValue() { return value; } /** - * Set the value of this {@link TrckMetric} instance. - * - * @param value Numeric Value of the metric - */ + * Set the value of this {@link TrckMetric} instance. + * + * @param value Numeric Value of the metric + */ public void setValue( @Nonnull final BigDecimal value) { this.value = value; } /** - * Set the timestamp of this {@link TrckMetric} instance and return the same instance. - * - * @param timestamp Time when the metric was created or logged in RFC3339 format - * @return The same instance of this {@link TrckMetric} class - */ + * Set the timestamp of this {@link TrckMetric} instance and return the same instance. + * + * @param timestamp Time when the metric was created or logged in RFC3339 format + * @return The same instance of this {@link TrckMetric} class + */ @Nonnull public TrckMetric timestamp(@Nonnull final OffsetDateTime timestamp) { this.timestamp = timestamp; return this; } /** - * Time when the metric was created or logged in RFC3339 format - * @return timestamp The timestamp of this {@link TrckMetric} instance. - **/ + * Time when the metric was created or logged in RFC3339 format + * @return timestamp The timestamp of this {@link TrckMetric} instance. + */ @Nonnull public OffsetDateTime getTimestamp() { return timestamp; } /** - * Set the timestamp of this {@link TrckMetric} instance. - * - * @param timestamp Time when the metric was created or logged in RFC3339 format - */ + * Set the timestamp of this {@link TrckMetric} instance. + * + * @param timestamp Time when the metric was created or logged in RFC3339 format + */ public void setTimestamp( @Nonnull final OffsetDateTime timestamp) { this.timestamp = timestamp; } /** - * Set the step of this {@link TrckMetric} instance and return the same instance. - * - * @param step step is an optional integer that represents any measurement of training progress (number of training iterations, number of epochs, and so on) for the metric - * Minimum: 0 - * @return The same instance of this {@link TrckMetric} class - */ + * Set the step of this {@link TrckMetric} instance and return the same instance. + * + * @param step step is an optional integer that represents any measurement of training progress (number of training iterations, number of epochs, and so on) for the metric + * Minimum: 0 + * @return The same instance of this {@link TrckMetric} class + */ @Nonnull public TrckMetric step(@Nonnull final Integer step) { this.step = step; return this; } /** - * step is an optional integer that represents any measurement of training progress (number of training iterations, number of epochs, and so on) for the metric - * minimum: 0 - * @return step The step of this {@link TrckMetric} instance. - **/ + * step is an optional integer that represents any measurement of training progress (number of training iterations, number of epochs, and so on) for the metric + * minimum: 0 + * @return step The step of this {@link TrckMetric} instance. + */ @Nonnull public Integer getStep() { return step; } /** - * Set the step of this {@link TrckMetric} instance. - * - * @param step step is an optional integer that represents any measurement of training progress (number of training iterations, number of epochs, and so on) for the metric - * Minimum: 0 - */ + * Set the step of this {@link TrckMetric} instance. + * + * @param step step is an optional integer that represents any measurement of training progress (number of training iterations, number of epochs, and so on) for the metric + * Minimum: 0 + */ public void setStep( @Nonnull final Integer step) { this.step = step; } /** - * Set the labels of this {@link TrckMetric} instance and return the same instance. - * - * @param labels a list of name-value object pairs associated with some metric. - * @return The same instance of this {@link TrckMetric} class - */ + * Set the labels of this {@link TrckMetric} instance and return the same instance. + * + * @param labels a list of name-value object pairs associated with some metric. + * @return The same instance of this {@link TrckMetric} class + */ @Nonnull public TrckMetric labels(@Nonnull final List labels) { this.labels = labels; return this; } /** - * Add one labels instance to this {@link TrckMetric}. - * @param labelsItem The labels that should be added - * @return The same instance of type {@link TrckMetric} - */ - @Nonnull public TrckMetric addlabelsItem( @Nonnull final TrckLabel labelsItem) { + * Add one labels instance to this {@link TrckMetric}. + * @param labelsItem The labels that should be added + * @return The same instance of type {@link TrckMetric} + */ + @Nonnull public TrckMetric addLabelsItem( @Nonnull final TrckLabel labelsItem) { if (this.labels == null) { this.labels = new ArrayList<>(); } @@ -207,18 +206,18 @@ public void setStep( @Nonnull final Integer step) { } /** - * a list of name-value object pairs associated with some metric. - * @return labels The labels of this {@link TrckMetric} instance. - **/ + * a list of name-value object pairs associated with some metric. + * @return labels The labels of this {@link TrckMetric} instance. + */ @Nonnull public List getLabels() { return labels; } /** - * Set the labels of this {@link TrckMetric} instance. - * - * @param labels a list of name-value object pairs associated with some metric. - */ + * Set the labels of this {@link TrckMetric} instance. + * + * @param labels a list of name-value object pairs associated with some metric. + */ public void setLabels( @Nonnull final List labels) { this.labels = labels; } @@ -307,5 +306,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/TrckMetricResource.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/TrckMetricResource.java index 83569214e..ecca704b9 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/TrckMetricResource.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/TrckMetricResource.java @@ -45,7 +45,6 @@ /** * Collection of various metrics/tags/labels associated against some execution/deployment */ - // CHECKSTYLE:OFF public class TrckMetricResource // CHECKSTYLE:ON @@ -67,49 +66,49 @@ public class TrckMetricResource private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the executionId of this {@link TrckMetricResource} instance and return the same instance. - * - * @param executionId The executionId of this {@link TrckMetricResource} - * @return The same instance of this {@link TrckMetricResource} class - */ + * Set the executionId of this {@link TrckMetricResource} instance and return the same instance. + * + * @param executionId The executionId of this {@link TrckMetricResource} + * @return The same instance of this {@link TrckMetricResource} class + */ @Nonnull public TrckMetricResource executionId(@Nonnull final TrckExecutionId executionId) { this.executionId = executionId; return this; } /** - * Get executionId - * @return executionId The executionId of this {@link TrckMetricResource} instance. - **/ + * Get executionId + * @return executionId The executionId of this {@link TrckMetricResource} instance. + */ @Nonnull public TrckExecutionId getExecutionId() { return executionId; } /** - * Set the executionId of this {@link TrckMetricResource} instance. - * - * @param executionId The executionId of this {@link TrckMetricResource} - */ + * Set the executionId of this {@link TrckMetricResource} instance. + * + * @param executionId The executionId of this {@link TrckMetricResource} + */ public void setExecutionId( @Nonnull final TrckExecutionId executionId) { this.executionId = executionId; } /** - * Set the metrics of this {@link TrckMetricResource} instance and return the same instance. - * - * @param metrics Array of Metric items - * @return The same instance of this {@link TrckMetricResource} class - */ + * Set the metrics of this {@link TrckMetricResource} instance and return the same instance. + * + * @param metrics Array of Metric items + * @return The same instance of this {@link TrckMetricResource} class + */ @Nonnull public TrckMetricResource metrics(@Nonnull final List metrics) { this.metrics = metrics; return this; } /** - * Add one metrics instance to this {@link TrckMetricResource}. - * @param metricsItem The metrics that should be added - * @return The same instance of type {@link TrckMetricResource} - */ - @Nonnull public TrckMetricResource addmetricsItem( @Nonnull final TrckMetric metricsItem) { + * Add one metrics instance to this {@link TrckMetricResource}. + * @param metricsItem The metrics that should be added + * @return The same instance of type {@link TrckMetricResource} + */ + @Nonnull public TrckMetricResource addMetricsItem( @Nonnull final TrckMetric metricsItem) { if (this.metrics == null) { this.metrics = new ArrayList<>(); } @@ -118,38 +117,38 @@ public void setExecutionId( @Nonnull final TrckExecutionId executionId) { } /** - * Array of Metric items - * @return metrics The metrics of this {@link TrckMetricResource} instance. - **/ + * Array of Metric items + * @return metrics The metrics of this {@link TrckMetricResource} instance. + */ @Nonnull public List getMetrics() { return metrics; } /** - * Set the metrics of this {@link TrckMetricResource} instance. - * - * @param metrics Array of Metric items - */ + * Set the metrics of this {@link TrckMetricResource} instance. + * + * @param metrics Array of Metric items + */ public void setMetrics( @Nonnull final List metrics) { this.metrics = metrics; } /** - * Set the tags of this {@link TrckMetricResource} instance and return the same instance. - * - * @param tags a list of name-value object pairs associated with the execution/deployment. Tags are queryable. - * @return The same instance of this {@link TrckMetricResource} class - */ + * Set the tags of this {@link TrckMetricResource} instance and return the same instance. + * + * @param tags a list of name-value object pairs associated with the execution/deployment. Tags are queryable. + * @return The same instance of this {@link TrckMetricResource} class + */ @Nonnull public TrckMetricResource tags(@Nonnull final List tags) { this.tags = tags; return this; } /** - * Add one tags instance to this {@link TrckMetricResource}. - * @param tagsItem The tags that should be added - * @return The same instance of type {@link TrckMetricResource} - */ - @Nonnull public TrckMetricResource addtagsItem( @Nonnull final TrckTag tagsItem) { + * Add one tags instance to this {@link TrckMetricResource}. + * @param tagsItem The tags that should be added + * @return The same instance of type {@link TrckMetricResource} + */ + @Nonnull public TrckMetricResource addTagsItem( @Nonnull final TrckTag tagsItem) { if (this.tags == null) { this.tags = new ArrayList<>(); } @@ -158,38 +157,38 @@ public void setMetrics( @Nonnull final List metrics) { } /** - * a list of name-value object pairs associated with the execution/deployment. Tags are queryable. - * @return tags The tags of this {@link TrckMetricResource} instance. - **/ + * a list of name-value object pairs associated with the execution/deployment. Tags are queryable. + * @return tags The tags of this {@link TrckMetricResource} instance. + */ @Nonnull public List getTags() { return tags; } /** - * Set the tags of this {@link TrckMetricResource} instance. - * - * @param tags a list of name-value object pairs associated with the execution/deployment. Tags are queryable. - */ + * Set the tags of this {@link TrckMetricResource} instance. + * + * @param tags a list of name-value object pairs associated with the execution/deployment. Tags are queryable. + */ public void setTags( @Nonnull final List tags) { this.tags = tags; } /** - * Set the customInfo of this {@link TrckMetricResource} instance and return the same instance. - * - * @param customInfo - * @return The same instance of this {@link TrckMetricResource} class - */ + * Set the customInfo of this {@link TrckMetricResource} instance and return the same instance. + * + * @param customInfo + * @return The same instance of this {@link TrckMetricResource} class + */ @Nonnull public TrckMetricResource customInfo(@Nonnull final List customInfo) { this.customInfo = customInfo; return this; } /** - * Add one customInfo instance to this {@link TrckMetricResource}. - * @param customInfoItem The customInfo that should be added - * @return The same instance of type {@link TrckMetricResource} - */ - @Nonnull public TrckMetricResource addcustomInfoItem( @Nonnull final TrckCustomInfoObject customInfoItem) { + * Add one customInfo instance to this {@link TrckMetricResource}. + * @param customInfoItem The customInfo that should be added + * @return The same instance of type {@link TrckMetricResource} + */ + @Nonnull public TrckMetricResource addCustomInfoItem( @Nonnull final TrckCustomInfoObject customInfoItem) { if (this.customInfo == null) { this.customInfo = new ArrayList<>(); } @@ -198,18 +197,18 @@ public void setTags( @Nonnull final List tags) { } /** - * - * @return customInfo The customInfo of this {@link TrckMetricResource} instance. - **/ + * + * @return customInfo The customInfo of this {@link TrckMetricResource} instance. + */ @Nonnull public List getCustomInfo() { return customInfo; } /** - * Set the customInfo of this {@link TrckMetricResource} instance. - * - * @param customInfo - */ + * Set the customInfo of this {@link TrckMetricResource} instance. + * + * @param customInfo + */ public void setCustomInfo( @Nonnull final List customInfo) { this.customInfo = customInfo; } @@ -296,5 +295,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/TrckTag.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/TrckTag.java index 45a470f36..550112400 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/TrckTag.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/TrckTag.java @@ -39,7 +39,6 @@ /** * A dictionary of name-value pairs to support segregation at execution level. */ - // CHECKSTYLE:OFF public class TrckTag // CHECKSTYLE:ON @@ -55,57 +54,57 @@ public class TrckTag private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the name of this {@link TrckTag} instance and return the same instance. - * - * @param name The name of this {@link TrckTag} - * @return The same instance of this {@link TrckTag} class - */ + * Set the name of this {@link TrckTag} instance and return the same instance. + * + * @param name The name of this {@link TrckTag} + * @return The same instance of this {@link TrckTag} class + */ @Nonnull public TrckTag name(@Nonnull final TrckTagName name) { this.name = name; return this; } /** - * Get name - * @return name The name of this {@link TrckTag} instance. - **/ + * Get name + * @return name The name of this {@link TrckTag} instance. + */ @Nonnull public TrckTagName getName() { return name; } /** - * Set the name of this {@link TrckTag} instance. - * - * @param name The name of this {@link TrckTag} - */ + * Set the name of this {@link TrckTag} instance. + * + * @param name The name of this {@link TrckTag} + */ public void setName( @Nonnull final TrckTagName name) { this.name = name; } /** - * Set the value of this {@link TrckTag} instance and return the same instance. - * - * @param value tag value - * @return The same instance of this {@link TrckTag} class - */ + * Set the value of this {@link TrckTag} instance and return the same instance. + * + * @param value tag value + * @return The same instance of this {@link TrckTag} class + */ @Nonnull public TrckTag value(@Nonnull final String value) { this.value = value; return this; } /** - * tag value - * @return value The value of this {@link TrckTag} instance. - **/ + * tag value + * @return value The value of this {@link TrckTag} instance. + */ @Nonnull public String getValue() { return value; } /** - * Set the value of this {@link TrckTag} instance. - * - * @param value tag value - */ + * Set the value of this {@link TrckTag} instance. + * + * @param value tag value + */ public void setValue( @Nonnull final String value) { this.value = value; } @@ -188,5 +187,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/main/java/com/sap/ai/sdk/core/client/model/TrckTagName.java b/core/src/main/java/com/sap/ai/sdk/core/client/model/TrckTagName.java index 334260dfd..348edcb4b 100644 --- a/core/src/main/java/com/sap/ai/sdk/core/client/model/TrckTagName.java +++ b/core/src/main/java/com/sap/ai/sdk/core/client/model/TrckTagName.java @@ -34,7 +34,6 @@ /** * TrckTagName */ - // CHECKSTYLE:OFF public class TrckTagName // CHECKSTYLE:ON @@ -117,5 +116,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/core/src/test/java/com/sap/ai/sdk/core/client/ArtifactUnitTest.java b/core/src/test/java/com/sap/ai/sdk/core/client/ArtifactUnitTest.java index b1dd6850a..f1e34989b 100644 --- a/core/src/test/java/com/sap/ai/sdk/core/client/ArtifactUnitTest.java +++ b/core/src/test/java/com/sap/ai/sdk/core/client/ArtifactUnitTest.java @@ -48,8 +48,7 @@ void testGetArtifact() { } """))); - final AiArtifactList artifactList = - new ArtifactApi(getClient(destination)).artifactQuery("default"); + final AiArtifactList artifactList = new ArtifactApi(getClient(destination)).artifactQuery("default"); assertThat(artifactList).isNotNull(); assertThat(artifactList.getCount()).isEqualTo(1); assertThat(artifactList.getResources().size()).isEqualTo(1); diff --git a/core/src/test/java/com/sap/ai/sdk/core/client/ConfigurationUnitTest.java b/core/src/test/java/com/sap/ai/sdk/core/client/ConfigurationUnitTest.java index e59dc7e2f..9a37fddd4 100644 --- a/core/src/test/java/com/sap/ai/sdk/core/client/ConfigurationUnitTest.java +++ b/core/src/test/java/com/sap/ai/sdk/core/client/ConfigurationUnitTest.java @@ -103,8 +103,7 @@ void testPostConfiguration() { .artifactId("744b0136-ed4b-49b1-bd10-08c236ed5ce7") .key("spam-data"))); final AiConfigurationCreationResponse configuration = - new ConfigurationApi(getClient(destination)) - .configurationCreate("default", configurationBaseData); + new ConfigurationApi(getClient(destination)).configurationCreate("default", configurationBaseData); assertThat(configuration).isNotNull(); assertThat(configuration.getId()).isEqualTo("f88e7581-ade7-45c6-94e9-807889b523ec"); assertThat(configuration.getMessage()).isEqualTo("Configuration created"); diff --git a/core/src/test/java/com/sap/ai/sdk/core/client/DeploymentUnitTest.java b/core/src/test/java/com/sap/ai/sdk/core/client/DeploymentUnitTest.java index aa47063a9..26efa14f0 100644 --- a/core/src/test/java/com/sap/ai/sdk/core/client/DeploymentUnitTest.java +++ b/core/src/test/java/com/sap/ai/sdk/core/client/DeploymentUnitTest.java @@ -121,8 +121,7 @@ void testPostAiDeployment() { AiDeploymentCreationRequest deploymentCreationRequest = new AiDeploymentCreationRequest().configurationId("7652a231-ba9b-4fcc-b473-2c355cb21b61"); final AiDeploymentCreationResponse deployment = - new DeploymentApi(getClient(destination)) - .deploymentCreate("default", deploymentCreationRequest); + new DeploymentApi(getClient(destination)).deploymentCreate("default", deploymentCreationRequest); assertThat(deployment).isNotNull(); assertThat(deployment.getDeploymentUrl()).isEqualTo(""); assertThat(deployment.getId()).isEqualTo("d5b764fe55b3e87c"); diff --git a/core/src/test/java/com/sap/ai/sdk/core/client/ExecutionUnitTest.java b/core/src/test/java/com/sap/ai/sdk/core/client/ExecutionUnitTest.java index 700426af7..b0410a719 100644 --- a/core/src/test/java/com/sap/ai/sdk/core/client/ExecutionUnitTest.java +++ b/core/src/test/java/com/sap/ai/sdk/core/client/ExecutionUnitTest.java @@ -67,8 +67,7 @@ void testGetExecutions() { } """))); - final AiExecutionList executionList = - new ExecutionApi(getClient(destination)).executionQuery("default"); + final AiExecutionList executionList = new ExecutionApi(getClient(destination)).executionQuery("default"); assertThat(executionList).isNotNull(); assertThat(executionList.getCount()).isEqualTo(1); assertThat(executionList.getResources().size()).isEqualTo(1); @@ -82,7 +81,8 @@ void testGetExecutions() { assertThat(execution.getCustomField("executableId")).isEqualTo("wt-spam-detection-i343697"); assertThat(execution.getOutputArtifacts().get(0).getId()) .isEqualTo("be0d728f-1cb2-4ff4-97ad-45c54ac592f6"); - assertThat(execution.getOutputArtifacts().get(0).getKind()).isEqualTo(AiArtifact.KindEnum.MODEL); + assertThat(execution.getOutputArtifacts().get(0).getKind()) + .isEqualTo(AiArtifact.KindEnum.MODEL); assertThat(execution.getOutputArtifacts().get(0).getUrl()) .isEqualTo("ai://default/eab289226fe981da/classifier-model-output"); assertThat(execution.getStatus()).isEqualTo(AiExecutionStatus.COMPLETED); @@ -109,8 +109,7 @@ void testPostExecution() { AiEnactmentCreationRequest enactmentCreationRequest = new AiEnactmentCreationRequest().configurationId("e0a9eb2e-9ea1-43bf-aff5-7660db166676"); final AiExecutionCreationResponse execution = - new ExecutionApi(getClient(destination)) - .executionCreate("default", enactmentCreationRequest); + new ExecutionApi(getClient(destination)).executionCreate("default", enactmentCreationRequest); assertThat(execution).isNotNull(); assertThat(execution.getId()).isEqualTo("eab289226fe981da"); assertThat(execution.getMessage()).isEqualTo("AiExecution acknowledged"); diff --git a/core/src/test/java/com/sap/ai/sdk/core/client/ScenarioUnitTest.java b/core/src/test/java/com/sap/ai/sdk/core/client/ScenarioUnitTest.java index ce61ce5da..59acfe4de 100644 --- a/core/src/test/java/com/sap/ai/sdk/core/client/ScenarioUnitTest.java +++ b/core/src/test/java/com/sap/ai/sdk/core/client/ScenarioUnitTest.java @@ -49,7 +49,7 @@ void testGetScenarios() { """))); final AiScenarioList scenarioList = - new ScenarioApi(getClient(destination)).scenarioQuery("default"); + new ScenarioApi(getClient(destination)).scenarioQuery("default"); assertThat(scenarioList).isNotNull(); assertThat(scenarioList.getCount()).isEqualTo(1); assertThat(scenarioList.getResources().size()).isEqualTo(1); 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 f3749f4d7..ba5f1b860 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 d6e02ffe1..a8d712c26 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 bda0b58c7..942270c31 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 6bb7ddc73..a97c7d23b 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 57138fb96..2caf60410 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 5c5947970..c407eaa6a 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 d7c2858b5..b77b7b530 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 9987fcbb8..2173c7308 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 04867654b..c8502ef7c 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 508323be1..ee7b93ec3 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 e1a15bf1e..10201fbef 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 7c475dc96..3438002ef 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 d44ec77d3..75281af1f 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 dataRepositoryMetadata) { this.dataRepositoryMetadata = dataRepositoryMetadata; return this; } /** - * Add one dataRepositoryMetadata instance to this {@link GroundingFilter}. - * @param dataRepositoryMetadataItem The dataRepositoryMetadata that should be added - * @return The same instance of type {@link GroundingFilter} - */ - @Nonnull public GroundingFilter adddataRepositoryMetadataItem( @Nonnull final Object dataRepositoryMetadataItem) { + * Add one dataRepositoryMetadata instance to this {@link GroundingFilter}. + * @param dataRepositoryMetadataItem The dataRepositoryMetadata that should be added + * @return The same instance of type {@link GroundingFilter} + */ + @Nonnull public GroundingFilter addDataRepositoryMetadataItem( @Nonnull final Object dataRepositoryMetadataItem) { if (this.dataRepositoryMetadata == null) { this.dataRepositoryMetadata = new ArrayList<>(); } @@ -273,38 +272,38 @@ public void setDataRepositoryType( @Nonnull final DataRepositoryTypeEnum dataRep } /** - * Get dataRepositoryMetadata - * @return dataRepositoryMetadata The dataRepositoryMetadata of this {@link GroundingFilter} instance. - **/ + * Get dataRepositoryMetadata + * @return dataRepositoryMetadata The dataRepositoryMetadata of this {@link GroundingFilter} instance. + */ @Nonnull public List getDataRepositoryMetadata() { return dataRepositoryMetadata; } /** - * Set the dataRepositoryMetadata of this {@link GroundingFilter} instance. - * - * @param dataRepositoryMetadata The dataRepositoryMetadata of this {@link GroundingFilter} - */ + * Set the dataRepositoryMetadata of this {@link GroundingFilter} instance. + * + * @param dataRepositoryMetadata The dataRepositoryMetadata of this {@link GroundingFilter} + */ public void setDataRepositoryMetadata( @Nonnull final List dataRepositoryMetadata) { this.dataRepositoryMetadata = dataRepositoryMetadata; } /** - * Set the documentMetadata of this {@link GroundingFilter} instance and return the same instance. - * - * @param documentMetadata The documentMetadata of this {@link GroundingFilter} - * @return The same instance of this {@link GroundingFilter} class - */ + * Set the documentMetadata of this {@link GroundingFilter} instance and return the same instance. + * + * @param documentMetadata The documentMetadata of this {@link GroundingFilter} + * @return The same instance of this {@link GroundingFilter} class + */ @Nonnull public GroundingFilter documentMetadata(@Nonnull final List documentMetadata) { this.documentMetadata = documentMetadata; return this; } /** - * Add one documentMetadata instance to this {@link GroundingFilter}. - * @param documentMetadataItem The documentMetadata that should be added - * @return The same instance of type {@link GroundingFilter} - */ - @Nonnull public GroundingFilter adddocumentMetadataItem( @Nonnull final Object documentMetadataItem) { + * Add one documentMetadata instance to this {@link GroundingFilter}. + * @param documentMetadataItem The documentMetadata that should be added + * @return The same instance of type {@link GroundingFilter} + */ + @Nonnull public GroundingFilter addDocumentMetadataItem( @Nonnull final Object documentMetadataItem) { if (this.documentMetadata == null) { this.documentMetadata = new ArrayList<>(); } @@ -313,38 +312,38 @@ public void setDataRepositoryMetadata( @Nonnull final List dataRepositor } /** - * Get documentMetadata - * @return documentMetadata The documentMetadata of this {@link GroundingFilter} instance. - **/ + * Get documentMetadata + * @return documentMetadata The documentMetadata of this {@link GroundingFilter} instance. + */ @Nonnull public List getDocumentMetadata() { return documentMetadata; } /** - * Set the documentMetadata of this {@link GroundingFilter} instance. - * - * @param documentMetadata The documentMetadata of this {@link GroundingFilter} - */ + * Set the documentMetadata of this {@link GroundingFilter} instance. + * + * @param documentMetadata The documentMetadata of this {@link GroundingFilter} + */ public void setDocumentMetadata( @Nonnull final List documentMetadata) { this.documentMetadata = documentMetadata; } /** - * Set the chunkMetadata of this {@link GroundingFilter} instance and return the same instance. - * - * @param chunkMetadata The chunkMetadata of this {@link GroundingFilter} - * @return The same instance of this {@link GroundingFilter} class - */ + * Set the chunkMetadata of this {@link GroundingFilter} instance and return the same instance. + * + * @param chunkMetadata The chunkMetadata of this {@link GroundingFilter} + * @return The same instance of this {@link GroundingFilter} class + */ @Nonnull public GroundingFilter chunkMetadata(@Nonnull final List chunkMetadata) { this.chunkMetadata = chunkMetadata; return this; } /** - * Add one chunkMetadata instance to this {@link GroundingFilter}. - * @param chunkMetadataItem The chunkMetadata that should be added - * @return The same instance of type {@link GroundingFilter} - */ - @Nonnull public GroundingFilter addchunkMetadataItem( @Nonnull final Object chunkMetadataItem) { + * Add one chunkMetadata instance to this {@link GroundingFilter}. + * @param chunkMetadataItem The chunkMetadata that should be added + * @return The same instance of type {@link GroundingFilter} + */ + @Nonnull public GroundingFilter addChunkMetadataItem( @Nonnull final Object chunkMetadataItem) { if (this.chunkMetadata == null) { this.chunkMetadata = new ArrayList<>(); } @@ -353,18 +352,18 @@ public void setDocumentMetadata( @Nonnull final List documentMetadata) { } /** - * Get chunkMetadata - * @return chunkMetadata The chunkMetadata of this {@link GroundingFilter} instance. - **/ + * Get chunkMetadata + * @return chunkMetadata The chunkMetadata of this {@link GroundingFilter} instance. + */ @Nonnull public List getChunkMetadata() { return chunkMetadata; } /** - * Set the chunkMetadata of this {@link GroundingFilter} instance. - * - * @param chunkMetadata The chunkMetadata of this {@link GroundingFilter} - */ + * Set the chunkMetadata of this {@link GroundingFilter} instance. + * + * @param chunkMetadata The chunkMetadata of this {@link GroundingFilter} + */ public void setChunkMetadata( @Nonnull final List chunkMetadata) { this.chunkMetadata = chunkMetadata; } @@ -457,5 +456,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/GroundingModuleConfig.java b/orchestration/src/main/java/com/sap/ai/sdk/orchestration/client/model/GroundingModuleConfig.java index 57a8382d9..781c6ae53 100644 --- a/orchestration/src/main/java/com/sap/ai/sdk/orchestration/client/model/GroundingModuleConfig.java +++ b/orchestration/src/main/java/com/sap/ai/sdk/orchestration/client/model/GroundingModuleConfig.java @@ -39,7 +39,6 @@ /** * GroundingModuleConfig */ - // CHECKSTYLE:OFF public class GroundingModuleConfig // CHECKSTYLE:ON @@ -104,57 +103,57 @@ public enum GroundingServiceEnum { private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the groundingService of this {@link GroundingModuleConfig} instance and return the same instance. - * - * @param groundingService The groundingService of this {@link GroundingModuleConfig} - * @return The same instance of this {@link GroundingModuleConfig} class - */ + * Set the groundingService of this {@link GroundingModuleConfig} instance and return the same instance. + * + * @param groundingService The groundingService of this {@link GroundingModuleConfig} + * @return The same instance of this {@link GroundingModuleConfig} class + */ @Nonnull public GroundingModuleConfig groundingService(@Nonnull final GroundingServiceEnum groundingService) { this.groundingService = groundingService; return this; } /** - * Get groundingService - * @return groundingService The groundingService of this {@link GroundingModuleConfig} instance. - **/ + * Get groundingService + * @return groundingService The groundingService of this {@link GroundingModuleConfig} instance. + */ @Nonnull public GroundingServiceEnum getGroundingService() { return groundingService; } /** - * Set the groundingService of this {@link GroundingModuleConfig} instance. - * - * @param groundingService The groundingService of this {@link GroundingModuleConfig} - */ + * Set the groundingService of this {@link GroundingModuleConfig} instance. + * + * @param groundingService The groundingService of this {@link GroundingModuleConfig} + */ public void setGroundingService( @Nonnull final GroundingServiceEnum groundingService) { this.groundingService = groundingService; } /** - * Set the groundingServiceConfiguration of this {@link GroundingModuleConfig} instance and return the same instance. - * - * @param groundingServiceConfiguration The groundingServiceConfiguration of this {@link GroundingModuleConfig} - * @return The same instance of this {@link GroundingModuleConfig} class - */ + * Set the groundingServiceConfiguration of this {@link GroundingModuleConfig} instance and return the same instance. + * + * @param groundingServiceConfiguration The groundingServiceConfiguration of this {@link GroundingModuleConfig} + * @return The same instance of this {@link GroundingModuleConfig} class + */ @Nonnull public GroundingModuleConfig groundingServiceConfiguration(@Nonnull final GroundingModuleConfigGroundingServiceConfiguration groundingServiceConfiguration) { this.groundingServiceConfiguration = groundingServiceConfiguration; return this; } /** - * Get groundingServiceConfiguration - * @return groundingServiceConfiguration The groundingServiceConfiguration of this {@link GroundingModuleConfig} instance. - **/ + * Get groundingServiceConfiguration + * @return groundingServiceConfiguration The groundingServiceConfiguration of this {@link GroundingModuleConfig} instance. + */ @Nonnull public GroundingModuleConfigGroundingServiceConfiguration getGroundingServiceConfiguration() { return groundingServiceConfiguration; } /** - * Set the groundingServiceConfiguration of this {@link GroundingModuleConfig} instance. - * - * @param groundingServiceConfiguration The groundingServiceConfiguration of this {@link GroundingModuleConfig} - */ + * Set the groundingServiceConfiguration of this {@link GroundingModuleConfig} instance. + * + * @param groundingServiceConfiguration The groundingServiceConfiguration of this {@link GroundingModuleConfig} + */ public void setGroundingServiceConfiguration( @Nonnull final GroundingModuleConfigGroundingServiceConfiguration groundingServiceConfiguration) { this.groundingServiceConfiguration = groundingServiceConfiguration; } @@ -237,5 +236,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/GroundingModuleConfigGroundingServiceConfiguration.java b/orchestration/src/main/java/com/sap/ai/sdk/orchestration/client/model/GroundingModuleConfigGroundingServiceConfiguration.java index 5dc0bb712..f53ed1477 100644 --- a/orchestration/src/main/java/com/sap/ai/sdk/orchestration/client/model/GroundingModuleConfigGroundingServiceConfiguration.java +++ b/orchestration/src/main/java/com/sap/ai/sdk/orchestration/client/model/GroundingModuleConfigGroundingServiceConfiguration.java @@ -42,7 +42,6 @@ /** * GroundingModuleConfigGroundingServiceConfiguration */ - // CHECKSTYLE:OFF public class GroundingModuleConfigGroundingServiceConfiguration // CHECKSTYLE:ON @@ -64,49 +63,49 @@ public class GroundingModuleConfigGroundingServiceConfiguration private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the secretName of this {@link GroundingModuleConfigGroundingServiceConfiguration} instance and return the same instance. - * - * @param secretName Secret name of the generic secret within Gen AI Hub containing document grounding service credentials - * @return The same instance of this {@link GroundingModuleConfigGroundingServiceConfiguration} class - */ + * Set the secretName of this {@link GroundingModuleConfigGroundingServiceConfiguration} instance and return the same instance. + * + * @param secretName Secret name of the generic secret within Gen AI Hub containing document grounding service credentials + * @return The same instance of this {@link GroundingModuleConfigGroundingServiceConfiguration} class + */ @Nonnull public GroundingModuleConfigGroundingServiceConfiguration secretName(@Nonnull final String secretName) { this.secretName = secretName; return this; } /** - * Secret name of the generic secret within Gen AI Hub containing document grounding service credentials - * @return secretName The secretName of this {@link GroundingModuleConfigGroundingServiceConfiguration} instance. - **/ + * Secret name of the generic secret within Gen AI Hub containing document grounding service credentials + * @return secretName The secretName of this {@link GroundingModuleConfigGroundingServiceConfiguration} instance. + */ @Nonnull public String getSecretName() { return secretName; } /** - * Set the secretName of this {@link GroundingModuleConfigGroundingServiceConfiguration} instance. - * - * @param secretName Secret name of the generic secret within Gen AI Hub containing document grounding service credentials - */ + * Set the secretName of this {@link GroundingModuleConfigGroundingServiceConfiguration} instance. + * + * @param secretName Secret name of the generic secret within Gen AI Hub containing document grounding service credentials + */ public void setSecretName( @Nonnull final String secretName) { this.secretName = secretName; } /** - * Set the filters of this {@link GroundingModuleConfigGroundingServiceConfiguration} instance and return the same instance. - * - * @param filters Document grounding service filters to be used - * @return The same instance of this {@link GroundingModuleConfigGroundingServiceConfiguration} class - */ + * Set the filters of this {@link GroundingModuleConfigGroundingServiceConfiguration} instance and return the same instance. + * + * @param filters Document grounding service filters to be used + * @return The same instance of this {@link GroundingModuleConfigGroundingServiceConfiguration} class + */ @Nonnull public GroundingModuleConfigGroundingServiceConfiguration filters(@Nonnull final List filters) { this.filters = filters; return this; } /** - * Add one filters instance to this {@link GroundingModuleConfigGroundingServiceConfiguration}. - * @param filtersItem The filters that should be added - * @return The same instance of type {@link GroundingModuleConfigGroundingServiceConfiguration} - */ - @Nonnull public GroundingModuleConfigGroundingServiceConfiguration addfiltersItem( @Nonnull final GroundingFilter filtersItem) { + * Add one filters instance to this {@link GroundingModuleConfigGroundingServiceConfiguration}. + * @param filtersItem The filters that should be added + * @return The same instance of type {@link GroundingModuleConfigGroundingServiceConfiguration} + */ + @Nonnull public GroundingModuleConfigGroundingServiceConfiguration addFiltersItem( @Nonnull final GroundingFilter filtersItem) { if (this.filters == null) { this.filters = new ArrayList<>(); } @@ -115,38 +114,38 @@ public void setSecretName( @Nonnull final String secretName) { } /** - * Document grounding service filters to be used - * @return filters The filters of this {@link GroundingModuleConfigGroundingServiceConfiguration} instance. - **/ + * Document grounding service filters to be used + * @return filters The filters of this {@link GroundingModuleConfigGroundingServiceConfiguration} instance. + */ @Nonnull public List getFilters() { return filters; } /** - * Set the filters of this {@link GroundingModuleConfigGroundingServiceConfiguration} instance. - * - * @param filters Document grounding service filters to be used - */ + * Set the filters of this {@link GroundingModuleConfigGroundingServiceConfiguration} instance. + * + * @param filters Document grounding service filters to be used + */ public void setFilters( @Nonnull final List filters) { this.filters = filters; } /** - * Set the groundingInputParameters of this {@link GroundingModuleConfigGroundingServiceConfiguration} instance and return the same instance. - * - * @param groundingInputParameters Contains the input parameters used for grounding input questions - * @return The same instance of this {@link GroundingModuleConfigGroundingServiceConfiguration} class - */ + * Set the groundingInputParameters of this {@link GroundingModuleConfigGroundingServiceConfiguration} instance and return the same instance. + * + * @param groundingInputParameters Contains the input parameters used for grounding input questions + * @return The same instance of this {@link GroundingModuleConfigGroundingServiceConfiguration} class + */ @Nonnull public GroundingModuleConfigGroundingServiceConfiguration groundingInputParameters(@Nonnull final List groundingInputParameters) { this.groundingInputParameters = groundingInputParameters; return this; } /** - * Add one groundingInputParameters instance to this {@link GroundingModuleConfigGroundingServiceConfiguration}. - * @param groundingInputParametersItem The groundingInputParameters that should be added - * @return The same instance of type {@link GroundingModuleConfigGroundingServiceConfiguration} - */ - @Nonnull public GroundingModuleConfigGroundingServiceConfiguration addgroundingInputParametersItem( @Nonnull final String groundingInputParametersItem) { + * Add one groundingInputParameters instance to this {@link GroundingModuleConfigGroundingServiceConfiguration}. + * @param groundingInputParametersItem The groundingInputParameters that should be added + * @return The same instance of type {@link GroundingModuleConfigGroundingServiceConfiguration} + */ + @Nonnull public GroundingModuleConfigGroundingServiceConfiguration addGroundingInputParametersItem( @Nonnull final String groundingInputParametersItem) { if (this.groundingInputParameters == null) { this.groundingInputParameters = new ArrayList<>(); } @@ -155,46 +154,46 @@ public void setFilters( @Nonnull final List filters) { } /** - * Contains the input parameters used for grounding input questions - * @return groundingInputParameters The groundingInputParameters of this {@link GroundingModuleConfigGroundingServiceConfiguration} instance. - **/ + * Contains the input parameters used for grounding input questions + * @return groundingInputParameters The groundingInputParameters of this {@link GroundingModuleConfigGroundingServiceConfiguration} instance. + */ @Nonnull public List getGroundingInputParameters() { return groundingInputParameters; } /** - * Set the groundingInputParameters of this {@link GroundingModuleConfigGroundingServiceConfiguration} instance. - * - * @param groundingInputParameters Contains the input parameters used for grounding input questions - */ + * Set the groundingInputParameters of this {@link GroundingModuleConfigGroundingServiceConfiguration} instance. + * + * @param groundingInputParameters Contains the input parameters used for grounding input questions + */ public void setGroundingInputParameters( @Nonnull final List groundingInputParameters) { this.groundingInputParameters = groundingInputParameters; } /** - * Set the groundingOutputParameter of this {@link GroundingModuleConfigGroundingServiceConfiguration} instance and return the same instance. - * - * @param groundingOutputParameter Parameter name used for grounding output - * @return The same instance of this {@link GroundingModuleConfigGroundingServiceConfiguration} class - */ + * Set the groundingOutputParameter of this {@link GroundingModuleConfigGroundingServiceConfiguration} instance and return the same instance. + * + * @param groundingOutputParameter Parameter name used for grounding output + * @return The same instance of this {@link GroundingModuleConfigGroundingServiceConfiguration} class + */ @Nonnull public GroundingModuleConfigGroundingServiceConfiguration groundingOutputParameter(@Nonnull final String groundingOutputParameter) { this.groundingOutputParameter = groundingOutputParameter; return this; } /** - * Parameter name used for grounding output - * @return groundingOutputParameter The groundingOutputParameter of this {@link GroundingModuleConfigGroundingServiceConfiguration} instance. - **/ + * Parameter name used for grounding output + * @return groundingOutputParameter The groundingOutputParameter of this {@link GroundingModuleConfigGroundingServiceConfiguration} instance. + */ @Nonnull public String getGroundingOutputParameter() { return groundingOutputParameter; } /** - * Set the groundingOutputParameter of this {@link GroundingModuleConfigGroundingServiceConfiguration} instance. - * - * @param groundingOutputParameter Parameter name used for grounding output - */ + * Set the groundingOutputParameter of this {@link GroundingModuleConfigGroundingServiceConfiguration} instance. + * + * @param groundingOutputParameter Parameter name used for grounding output + */ public void setGroundingOutputParameter( @Nonnull final String groundingOutputParameter) { this.groundingOutputParameter = groundingOutputParameter; } @@ -281,5 +280,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/LLMChoice.java b/orchestration/src/main/java/com/sap/ai/sdk/orchestration/client/model/LLMChoice.java index cb34841c9..70c172d06 100644 --- a/orchestration/src/main/java/com/sap/ai/sdk/orchestration/client/model/LLMChoice.java +++ b/orchestration/src/main/java/com/sap/ai/sdk/orchestration/client/model/LLMChoice.java @@ -43,7 +43,6 @@ /** * LLMChoice */ - // CHECKSTYLE:OFF public class LLMChoice // CHECKSTYLE:ON @@ -65,78 +64,78 @@ public class LLMChoice private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the index of this {@link LLMChoice} instance and return the same instance. - * - * @param index Index of the choice - * @return The same instance of this {@link LLMChoice} class - */ + * Set the index of this {@link LLMChoice} instance and return the same instance. + * + * @param index Index of the choice + * @return The same instance of this {@link LLMChoice} class + */ @Nonnull public LLMChoice index(@Nonnull final Integer index) { this.index = index; return this; } /** - * Index of the choice - * @return index The index of this {@link LLMChoice} instance. - **/ + * Index of the choice + * @return index The index of this {@link LLMChoice} instance. + */ @Nonnull public Integer getIndex() { return index; } /** - * Set the index of this {@link LLMChoice} instance. - * - * @param index Index of the choice - */ + * Set the index of this {@link LLMChoice} instance. + * + * @param index Index of the choice + */ public void setIndex( @Nonnull final Integer index) { this.index = index; } /** - * Set the message of this {@link LLMChoice} instance and return the same instance. - * - * @param message The message of this {@link LLMChoice} - * @return The same instance of this {@link LLMChoice} class - */ + * Set the message of this {@link LLMChoice} instance and return the same instance. + * + * @param message The message of this {@link LLMChoice} + * @return The same instance of this {@link LLMChoice} class + */ @Nonnull public LLMChoice message(@Nonnull final ChatMessage message) { this.message = message; return this; } /** - * Get message - * @return message The message of this {@link LLMChoice} instance. - **/ + * Get message + * @return message The message of this {@link LLMChoice} instance. + */ @Nonnull public ChatMessage getMessage() { return message; } /** - * Set the message of this {@link LLMChoice} instance. - * - * @param message The message of this {@link LLMChoice} - */ + * Set the message of this {@link LLMChoice} instance. + * + * @param message The message of this {@link LLMChoice} + */ public void setMessage( @Nonnull final ChatMessage message) { this.message = message; } /** - * Set the logprobs of this {@link LLMChoice} instance and return the same instance. - * - * @param logprobs Log probabilities - * @return The same instance of this {@link LLMChoice} class - */ + * Set the logprobs of this {@link LLMChoice} instance and return the same instance. + * + * @param logprobs Log probabilities + * @return The same instance of this {@link LLMChoice} class + */ @Nonnull public LLMChoice logprobs(@Nonnull final Map> logprobs) { this.logprobs = logprobs; return this; } /** - * Put one logprobs instance to this {@link LLMChoice} instance. - * @param key The String key of this logprobs instance - * @param logprobsItem The logprobs that should be added under the given key - * @return The same instance of type {@link LLMChoice} - */ + * Put one logprobs instance to this {@link LLMChoice} instance. + * @param key The String key of this logprobs instance + * @param logprobsItem The logprobs that should be added under the given key + * @return The same instance of type {@link LLMChoice} + */ @Nonnull public LLMChoice putlogprobsItem(@Nonnull final String key, @Nonnull final List logprobsItem) { this.logprobs = new HashMap<>(); this.logprobs.put(key, logprobsItem); @@ -144,46 +143,46 @@ public void setMessage( @Nonnull final ChatMessage message) { } /** - * Log probabilities - * @return logprobs The logprobs of this {@link LLMChoice} instance. - **/ + * Log probabilities + * @return logprobs The logprobs of this {@link LLMChoice} instance. + */ @Nonnull public Map> getLogprobs() { return logprobs; } /** - * Set the logprobs of this {@link LLMChoice} instance. - * - * @param logprobs Log probabilities - */ + * Set the logprobs of this {@link LLMChoice} instance. + * + * @param logprobs Log probabilities + */ public void setLogprobs( @Nonnull final Map> logprobs) { this.logprobs = logprobs; } /** - * Set the finishReason of this {@link LLMChoice} instance and return the same instance. - * - * @param finishReason Reason for stopping the model - * @return The same instance of this {@link LLMChoice} class - */ + * Set the finishReason of this {@link LLMChoice} instance and return the same instance. + * + * @param finishReason Reason for stopping the model + * @return The same instance of this {@link LLMChoice} class + */ @Nonnull public LLMChoice finishReason(@Nonnull final String finishReason) { this.finishReason = finishReason; return this; } /** - * Reason for stopping the model - * @return finishReason The finishReason of this {@link LLMChoice} instance. - **/ + * Reason for stopping the model + * @return finishReason The finishReason of this {@link LLMChoice} instance. + */ @Nonnull public String getFinishReason() { return finishReason; } /** - * Set the finishReason of this {@link LLMChoice} instance. - * - * @param finishReason Reason for stopping the model - */ + * Set the finishReason of this {@link LLMChoice} instance. + * + * @param finishReason Reason for stopping the model + */ public void setFinishReason( @Nonnull final String finishReason) { this.finishReason = finishReason; } @@ -270,5 +269,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/LLMModuleConfig.java b/orchestration/src/main/java/com/sap/ai/sdk/orchestration/client/model/LLMModuleConfig.java index 0b83e255b..25ffdb764 100644 --- a/orchestration/src/main/java/com/sap/ai/sdk/orchestration/client/model/LLMModuleConfig.java +++ b/orchestration/src/main/java/com/sap/ai/sdk/orchestration/client/model/LLMModuleConfig.java @@ -38,7 +38,6 @@ /** * LLMModuleConfig */ - // CHECKSTYLE:OFF public class LLMModuleConfig // CHECKSTYLE:ON @@ -57,85 +56,85 @@ public class LLMModuleConfig private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the modelName of this {@link LLMModuleConfig} instance and return the same instance. - * - * @param modelName Model name as in LLM Access configuration - * @return The same instance of this {@link LLMModuleConfig} class - */ + * Set the modelName of this {@link LLMModuleConfig} instance and return the same instance. + * + * @param modelName Model name as in LLM Access configuration + * @return The same instance of this {@link LLMModuleConfig} class + */ @Nonnull public LLMModuleConfig modelName(@Nonnull final String modelName) { this.modelName = modelName; return this; } /** - * Model name as in LLM Access configuration - * @return modelName The modelName of this {@link LLMModuleConfig} instance. - **/ + * Model name as in LLM Access configuration + * @return modelName The modelName of this {@link LLMModuleConfig} instance. + */ @Nonnull public String getModelName() { return modelName; } /** - * Set the modelName of this {@link LLMModuleConfig} instance. - * - * @param modelName Model name as in LLM Access configuration - */ + * Set the modelName of this {@link LLMModuleConfig} instance. + * + * @param modelName Model name as in LLM Access configuration + */ public void setModelName( @Nonnull final String modelName) { this.modelName = modelName; } /** - * Set the modelParams of this {@link LLMModuleConfig} instance and return the same instance. - * - * @param modelParams Model parameters - * @return The same instance of this {@link LLMModuleConfig} class - */ + * Set the modelParams of this {@link LLMModuleConfig} instance and return the same instance. + * + * @param modelParams Model parameters + * @return The same instance of this {@link LLMModuleConfig} class + */ @Nonnull public LLMModuleConfig modelParams(@Nonnull final Object modelParams) { this.modelParams = modelParams; return this; } /** - * Model parameters - * @return modelParams The modelParams of this {@link LLMModuleConfig} instance. - **/ + * Model parameters + * @return modelParams The modelParams of this {@link LLMModuleConfig} instance. + */ @Nonnull public Object getModelParams() { return modelParams; } /** - * Set the modelParams of this {@link LLMModuleConfig} instance. - * - * @param modelParams Model parameters - */ + * Set the modelParams of this {@link LLMModuleConfig} instance. + * + * @param modelParams Model parameters + */ public void setModelParams( @Nonnull final Object modelParams) { this.modelParams = modelParams; } /** - * Set the modelVersion of this {@link LLMModuleConfig} instance and return the same instance. - * - * @param modelVersion Version of the model to use - * @return The same instance of this {@link LLMModuleConfig} class - */ + * Set the modelVersion of this {@link LLMModuleConfig} instance and return the same instance. + * + * @param modelVersion Version of the model to use + * @return The same instance of this {@link LLMModuleConfig} class + */ @Nonnull public LLMModuleConfig modelVersion(@Nonnull final String modelVersion) { this.modelVersion = modelVersion; return this; } /** - * Version of the model to use - * @return modelVersion The modelVersion of this {@link LLMModuleConfig} instance. - **/ + * Version of the model to use + * @return modelVersion The modelVersion of this {@link LLMModuleConfig} instance. + */ @Nonnull public String getModelVersion() { return modelVersion; } /** - * Set the modelVersion of this {@link LLMModuleConfig} instance. - * - * @param modelVersion Version of the model to use - */ + * Set the modelVersion of this {@link LLMModuleConfig} instance. + * + * @param modelVersion Version of the model to use + */ public void setModelVersion( @Nonnull final String modelVersion) { this.modelVersion = modelVersion; } @@ -220,5 +219,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/LLMModuleResult.java b/orchestration/src/main/java/com/sap/ai/sdk/orchestration/client/model/LLMModuleResult.java index e0ec2336b..741073e77 100644 --- a/orchestration/src/main/java/com/sap/ai/sdk/orchestration/client/model/LLMModuleResult.java +++ b/orchestration/src/main/java/com/sap/ai/sdk/orchestration/client/model/LLMModuleResult.java @@ -43,7 +43,6 @@ /** * Output of LLM module. Follows the OpenAI spec. */ - // CHECKSTYLE:OFF public class LLMModuleResult // CHECKSTYLE:ON @@ -74,161 +73,161 @@ public class LLMModuleResult private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the id of this {@link LLMModuleResult} instance and return the same instance. - * - * @param id ID of the response - * @return The same instance of this {@link LLMModuleResult} class - */ + * Set the id of this {@link LLMModuleResult} instance and return the same instance. + * + * @param id ID of the response + * @return The same instance of this {@link LLMModuleResult} class + */ @Nonnull public LLMModuleResult id(@Nonnull final String id) { this.id = id; return this; } /** - * ID of the response - * @return id The id of this {@link LLMModuleResult} instance. - **/ + * ID of the response + * @return id The id of this {@link LLMModuleResult} instance. + */ @Nonnull public String getId() { return id; } /** - * Set the id of this {@link LLMModuleResult} instance. - * - * @param id ID of the response - */ + * Set the id of this {@link LLMModuleResult} instance. + * + * @param id ID of the response + */ public void setId( @Nonnull final String id) { this.id = id; } /** - * Set the _object of this {@link LLMModuleResult} instance and return the same instance. - * - * @param _object Object type - * @return The same instance of this {@link LLMModuleResult} class - */ + * Set the _object of this {@link LLMModuleResult} instance and return the same instance. + * + * @param _object Object type + * @return The same instance of this {@link LLMModuleResult} class + */ @Nonnull public LLMModuleResult _object(@Nonnull final String _object) { this._object = _object; return this; } /** - * Object type - * @return _object The _object of this {@link LLMModuleResult} instance. - **/ + * Object type + * @return _object The _object of this {@link LLMModuleResult} instance. + */ @Nonnull public String getObject() { return _object; } /** - * Set the _object of this {@link LLMModuleResult} instance. - * - * @param _object Object type - */ + * Set the _object of this {@link LLMModuleResult} instance. + * + * @param _object Object type + */ public void setObject( @Nonnull final String _object) { this._object = _object; } /** - * Set the created of this {@link LLMModuleResult} instance and return the same instance. - * - * @param created Unix timestamp - * @return The same instance of this {@link LLMModuleResult} class - */ + * Set the created of this {@link LLMModuleResult} instance and return the same instance. + * + * @param created Unix timestamp + * @return The same instance of this {@link LLMModuleResult} class + */ @Nonnull public LLMModuleResult created(@Nonnull final Integer created) { this.created = created; return this; } /** - * Unix timestamp - * @return created The created of this {@link LLMModuleResult} instance. - **/ + * Unix timestamp + * @return created The created of this {@link LLMModuleResult} instance. + */ @Nonnull public Integer getCreated() { return created; } /** - * Set the created of this {@link LLMModuleResult} instance. - * - * @param created Unix timestamp - */ + * Set the created of this {@link LLMModuleResult} instance. + * + * @param created Unix timestamp + */ public void setCreated( @Nonnull final Integer created) { this.created = created; } /** - * Set the model of this {@link LLMModuleResult} instance and return the same instance. - * - * @param model Model name - * @return The same instance of this {@link LLMModuleResult} class - */ + * Set the model of this {@link LLMModuleResult} instance and return the same instance. + * + * @param model Model name + * @return The same instance of this {@link LLMModuleResult} class + */ @Nonnull public LLMModuleResult model(@Nonnull final String model) { this.model = model; return this; } /** - * Model name - * @return model The model of this {@link LLMModuleResult} instance. - **/ + * Model name + * @return model The model of this {@link LLMModuleResult} instance. + */ @Nonnull public String getModel() { return model; } /** - * Set the model of this {@link LLMModuleResult} instance. - * - * @param model Model name - */ + * Set the model of this {@link LLMModuleResult} instance. + * + * @param model Model name + */ public void setModel( @Nonnull final String model) { this.model = model; } /** - * Set the systemFingerprint of this {@link LLMModuleResult} instance and return the same instance. - * - * @param systemFingerprint System fingerprint - * @return The same instance of this {@link LLMModuleResult} class - */ + * Set the systemFingerprint of this {@link LLMModuleResult} instance and return the same instance. + * + * @param systemFingerprint System fingerprint + * @return The same instance of this {@link LLMModuleResult} class + */ @Nonnull public LLMModuleResult systemFingerprint(@Nonnull final String systemFingerprint) { this.systemFingerprint = systemFingerprint; return this; } /** - * System fingerprint - * @return systemFingerprint The systemFingerprint of this {@link LLMModuleResult} instance. - **/ + * System fingerprint + * @return systemFingerprint The systemFingerprint of this {@link LLMModuleResult} instance. + */ @Nonnull public String getSystemFingerprint() { return systemFingerprint; } /** - * Set the systemFingerprint of this {@link LLMModuleResult} instance. - * - * @param systemFingerprint System fingerprint - */ + * Set the systemFingerprint of this {@link LLMModuleResult} instance. + * + * @param systemFingerprint System fingerprint + */ public void setSystemFingerprint( @Nonnull final String systemFingerprint) { this.systemFingerprint = systemFingerprint; } /** - * Set the choices of this {@link LLMModuleResult} instance and return the same instance. - * - * @param choices Choices - * @return The same instance of this {@link LLMModuleResult} class - */ + * Set the choices of this {@link LLMModuleResult} instance and return the same instance. + * + * @param choices Choices + * @return The same instance of this {@link LLMModuleResult} class + */ @Nonnull public LLMModuleResult choices(@Nonnull final List choices) { this.choices = choices; return this; } /** - * Add one choices instance to this {@link LLMModuleResult}. - * @param choicesItem The choices that should be added - * @return The same instance of type {@link LLMModuleResult} - */ - @Nonnull public LLMModuleResult addchoicesItem( @Nonnull final LLMChoice choicesItem) { + * Add one choices instance to this {@link LLMModuleResult}. + * @param choicesItem The choices that should be added + * @return The same instance of type {@link LLMModuleResult} + */ + @Nonnull public LLMModuleResult addChoicesItem( @Nonnull final LLMChoice choicesItem) { if (this.choices == null) { this.choices = new ArrayList<>(); } @@ -237,46 +236,46 @@ public void setSystemFingerprint( @Nonnull final String systemFingerprint) { } /** - * Choices - * @return choices The choices of this {@link LLMModuleResult} instance. - **/ + * Choices + * @return choices The choices of this {@link LLMModuleResult} instance. + */ @Nonnull public List getChoices() { return choices; } /** - * Set the choices of this {@link LLMModuleResult} instance. - * - * @param choices Choices - */ + * Set the choices of this {@link LLMModuleResult} instance. + * + * @param choices Choices + */ public void setChoices( @Nonnull final List choices) { this.choices = choices; } /** - * Set the usage of this {@link LLMModuleResult} instance and return the same instance. - * - * @param usage The usage of this {@link LLMModuleResult} - * @return The same instance of this {@link LLMModuleResult} class - */ + * Set the usage of this {@link LLMModuleResult} instance and return the same instance. + * + * @param usage The usage of this {@link LLMModuleResult} + * @return The same instance of this {@link LLMModuleResult} class + */ @Nonnull public LLMModuleResult usage(@Nonnull final TokenUsage usage) { this.usage = usage; return this; } /** - * Get usage - * @return usage The usage of this {@link LLMModuleResult} instance. - **/ + * Get usage + * @return usage The usage of this {@link LLMModuleResult} instance. + */ @Nonnull public TokenUsage getUsage() { return usage; } /** - * Set the usage of this {@link LLMModuleResult} instance. - * - * @param usage The usage of this {@link LLMModuleResult} - */ + * Set the usage of this {@link LLMModuleResult} instance. + * + * @param usage The usage of this {@link LLMModuleResult} + */ public void setUsage( @Nonnull final TokenUsage usage) { this.usage = usage; } @@ -369,5 +368,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/Masking.java b/orchestration/src/main/java/com/sap/ai/sdk/orchestration/client/model/Masking.java index 79eab2c38..4aaadfbc8 100644 --- a/orchestration/src/main/java/com/sap/ai/sdk/orchestration/client/model/Masking.java +++ b/orchestration/src/main/java/com/sap/ai/sdk/orchestration/client/model/Masking.java @@ -43,7 +43,6 @@ /** * Masking */ - // CHECKSTYLE:OFF public class Masking // CHECKSTYLE:ON @@ -59,49 +58,49 @@ public class Masking private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the type of this {@link Masking} instance and return the same instance. - * - * @param type The type of this {@link Masking} - * @return The same instance of this {@link Masking} class - */ + * Set the type of this {@link Masking} instance and return the same instance. + * + * @param type The type of this {@link Masking} + * @return The same instance of this {@link Masking} class + */ @Nonnull public Masking type(@Nonnull final MaskingProviderType type) { this.type = type; return this; } /** - * Get type - * @return type The type of this {@link Masking} instance. - **/ + * Get type + * @return type The type of this {@link Masking} instance. + */ @Nonnull public MaskingProviderType getType() { return type; } /** - * Set the type of this {@link Masking} instance. - * - * @param type The type of this {@link Masking} - */ + * Set the type of this {@link Masking} instance. + * + * @param type The type of this {@link Masking} + */ public void setType( @Nonnull final MaskingProviderType type) { this.type = type; } /** - * Set the entities of this {@link Masking} instance and return the same instance. - * - * @param entities List of entities to be masked - * @return The same instance of this {@link Masking} class - */ + * Set the entities of this {@link Masking} instance and return the same instance. + * + * @param entities List of entities to be masked + * @return The same instance of this {@link Masking} class + */ @Nonnull public Masking entities(@Nonnull final List entities) { this.entities = entities; return this; } /** - * Add one entities instance to this {@link Masking}. - * @param entitiesItem The entities that should be added - * @return The same instance of type {@link Masking} - */ - @Nonnull public Masking addentitiesItem( @Nonnull final MaskingEntitiesInner entitiesItem) { + * Add one entities instance to this {@link Masking}. + * @param entitiesItem The entities that should be added + * @return The same instance of type {@link Masking} + */ + @Nonnull public Masking addEntitiesItem( @Nonnull final MaskingEntitiesInner entitiesItem) { if (this.entities == null) { this.entities = new ArrayList<>(); } @@ -110,18 +109,18 @@ public void setType( @Nonnull final MaskingProviderType type) { } /** - * List of entities to be masked - * @return entities The entities of this {@link Masking} instance. - **/ + * List of entities to be masked + * @return entities The entities of this {@link Masking} instance. + */ @Nonnull public List getEntities() { return entities; } /** - * Set the entities of this {@link Masking} instance. - * - * @param entities List of entities to be masked - */ + * Set the entities of this {@link Masking} instance. + * + * @param entities List of entities to be masked + */ public void setEntities( @Nonnull final List entities) { this.entities = entities; } @@ -204,5 +203,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/MaskingEntitiesInner.java b/orchestration/src/main/java/com/sap/ai/sdk/orchestration/client/model/MaskingEntitiesInner.java index a43c522eb..1bc8edd40 100644 --- a/orchestration/src/main/java/com/sap/ai/sdk/orchestration/client/model/MaskingEntitiesInner.java +++ b/orchestration/src/main/java/com/sap/ai/sdk/orchestration/client/model/MaskingEntitiesInner.java @@ -36,7 +36,6 @@ /** * MaskingEntitiesInner */ - // CHECKSTYLE:OFF public class MaskingEntitiesInner // CHECKSTYLE:ON @@ -119,5 +118,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/MaskingModuleConfig.java b/orchestration/src/main/java/com/sap/ai/sdk/orchestration/client/model/MaskingModuleConfig.java index 2e51cea81..ec18f35d2 100644 --- a/orchestration/src/main/java/com/sap/ai/sdk/orchestration/client/model/MaskingModuleConfig.java +++ b/orchestration/src/main/java/com/sap/ai/sdk/orchestration/client/model/MaskingModuleConfig.java @@ -43,7 +43,6 @@ /** * MaskingModuleConfig */ - // CHECKSTYLE:OFF public class MaskingModuleConfig // CHECKSTYLE:ON @@ -59,21 +58,21 @@ public class MaskingModuleConfig private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the masking of this {@link MaskingModuleConfig} instance and return the same instance. - * - * @param masking Masking services to be used - * @return The same instance of this {@link MaskingModuleConfig} class - */ + * Set the masking of this {@link MaskingModuleConfig} instance and return the same instance. + * + * @param masking Masking services to be used + * @return The same instance of this {@link MaskingModuleConfig} class + */ @Nonnull public MaskingModuleConfig masking(@Nonnull final List masking) { this.masking = masking; return this; } /** - * Add one masking instance to this {@link MaskingModuleConfig}. - * @param maskingItem The masking that should be added - * @return The same instance of type {@link MaskingModuleConfig} - */ - @Nonnull public MaskingModuleConfig addmaskingItem( @Nonnull final Masking maskingItem) { + * Add one masking instance to this {@link MaskingModuleConfig}. + * @param maskingItem The masking that should be added + * @return The same instance of type {@link MaskingModuleConfig} + */ + @Nonnull public MaskingModuleConfig addMaskingItem( @Nonnull final Masking maskingItem) { if (this.masking == null) { this.masking = new ArrayList<>(); } @@ -82,46 +81,46 @@ public class MaskingModuleConfig } /** - * Masking services to be used - * @return masking The masking of this {@link MaskingModuleConfig} instance. - **/ + * Masking services to be used + * @return masking The masking of this {@link MaskingModuleConfig} instance. + */ @Nonnull public List getMasking() { return masking; } /** - * Set the masking of this {@link MaskingModuleConfig} instance. - * - * @param masking Masking services to be used - */ + * Set the masking of this {@link MaskingModuleConfig} instance. + * + * @param masking Masking services to be used + */ public void setMasking( @Nonnull final List masking) { this.masking = masking; } /** - * Set the unmasking of this {@link MaskingModuleConfig} instance and return the same instance. - * - * @param unmasking The unmasking of this {@link MaskingModuleConfig} - * @return The same instance of this {@link MaskingModuleConfig} class - */ + * Set the unmasking of this {@link MaskingModuleConfig} instance and return the same instance. + * + * @param unmasking The unmasking of this {@link MaskingModuleConfig} + * @return The same instance of this {@link MaskingModuleConfig} class + */ @Nonnull public MaskingModuleConfig unmasking(@Nonnull final UnmaskingConfig unmasking) { this.unmasking = unmasking; return this; } /** - * Get unmasking - * @return unmasking The unmasking of this {@link MaskingModuleConfig} instance. - **/ + * Get unmasking + * @return unmasking The unmasking of this {@link MaskingModuleConfig} instance. + */ @Nonnull public UnmaskingConfig getUnmasking() { return unmasking; } /** - * Set the unmasking of this {@link MaskingModuleConfig} instance. - * - * @param unmasking The unmasking of this {@link MaskingModuleConfig} - */ + * Set the unmasking of this {@link MaskingModuleConfig} instance. + * + * @param unmasking The unmasking of this {@link MaskingModuleConfig} + */ public void setUnmasking( @Nonnull final UnmaskingConfig unmasking) { this.unmasking = unmasking; } @@ -204,5 +203,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/ModuleConfigs.java b/orchestration/src/main/java/com/sap/ai/sdk/orchestration/client/model/ModuleConfigs.java index 75babbd0a..d748212dd 100644 --- a/orchestration/src/main/java/com/sap/ai/sdk/orchestration/client/model/ModuleConfigs.java +++ b/orchestration/src/main/java/com/sap/ai/sdk/orchestration/client/model/ModuleConfigs.java @@ -43,7 +43,6 @@ /** * ModuleConfigs */ - // CHECKSTYLE:OFF public class ModuleConfigs // CHECKSTYLE:ON @@ -68,141 +67,141 @@ public class ModuleConfigs private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the llmModuleConfig of this {@link ModuleConfigs} instance and return the same instance. - * - * @param llmModuleConfig The llmModuleConfig of this {@link ModuleConfigs} - * @return The same instance of this {@link ModuleConfigs} class - */ + * Set the llmModuleConfig of this {@link ModuleConfigs} instance and return the same instance. + * + * @param llmModuleConfig The llmModuleConfig of this {@link ModuleConfigs} + * @return The same instance of this {@link ModuleConfigs} class + */ @Nonnull public ModuleConfigs llmModuleConfig(@Nonnull final LLMModuleConfig llmModuleConfig) { this.llmModuleConfig = llmModuleConfig; return this; } /** - * Get llmModuleConfig - * @return llmModuleConfig The llmModuleConfig of this {@link ModuleConfigs} instance. - **/ + * Get llmModuleConfig + * @return llmModuleConfig The llmModuleConfig of this {@link ModuleConfigs} instance. + */ @Nonnull public LLMModuleConfig getLlmModuleConfig() { return llmModuleConfig; } /** - * Set the llmModuleConfig of this {@link ModuleConfigs} instance. - * - * @param llmModuleConfig The llmModuleConfig of this {@link ModuleConfigs} - */ + * Set the llmModuleConfig of this {@link ModuleConfigs} instance. + * + * @param llmModuleConfig The llmModuleConfig of this {@link ModuleConfigs} + */ public void setLlmModuleConfig( @Nonnull final LLMModuleConfig llmModuleConfig) { this.llmModuleConfig = llmModuleConfig; } /** - * Set the templatingModuleConfig of this {@link ModuleConfigs} instance and return the same instance. - * - * @param templatingModuleConfig The templatingModuleConfig of this {@link ModuleConfigs} - * @return The same instance of this {@link ModuleConfigs} class - */ + * Set the templatingModuleConfig of this {@link ModuleConfigs} instance and return the same instance. + * + * @param templatingModuleConfig The templatingModuleConfig of this {@link ModuleConfigs} + * @return The same instance of this {@link ModuleConfigs} class + */ @Nonnull public ModuleConfigs templatingModuleConfig(@Nonnull final TemplatingModuleConfig templatingModuleConfig) { this.templatingModuleConfig = templatingModuleConfig; return this; } /** - * Get templatingModuleConfig - * @return templatingModuleConfig The templatingModuleConfig of this {@link ModuleConfigs} instance. - **/ + * Get templatingModuleConfig + * @return templatingModuleConfig The templatingModuleConfig of this {@link ModuleConfigs} instance. + */ @Nonnull public TemplatingModuleConfig getTemplatingModuleConfig() { return templatingModuleConfig; } /** - * Set the templatingModuleConfig of this {@link ModuleConfigs} instance. - * - * @param templatingModuleConfig The templatingModuleConfig of this {@link ModuleConfigs} - */ + * Set the templatingModuleConfig of this {@link ModuleConfigs} instance. + * + * @param templatingModuleConfig The templatingModuleConfig of this {@link ModuleConfigs} + */ public void setTemplatingModuleConfig( @Nonnull final TemplatingModuleConfig templatingModuleConfig) { this.templatingModuleConfig = templatingModuleConfig; } /** - * Set the filteringModuleConfig of this {@link ModuleConfigs} instance and return the same instance. - * - * @param filteringModuleConfig The filteringModuleConfig of this {@link ModuleConfigs} - * @return The same instance of this {@link ModuleConfigs} class - */ + * Set the filteringModuleConfig of this {@link ModuleConfigs} instance and return the same instance. + * + * @param filteringModuleConfig The filteringModuleConfig of this {@link ModuleConfigs} + * @return The same instance of this {@link ModuleConfigs} class + */ @Nonnull public ModuleConfigs filteringModuleConfig(@Nonnull final FilteringModuleConfig filteringModuleConfig) { this.filteringModuleConfig = filteringModuleConfig; return this; } /** - * Get filteringModuleConfig - * @return filteringModuleConfig The filteringModuleConfig of this {@link ModuleConfigs} instance. - **/ + * Get filteringModuleConfig + * @return filteringModuleConfig The filteringModuleConfig of this {@link ModuleConfigs} instance. + */ @Nonnull public FilteringModuleConfig getFilteringModuleConfig() { return filteringModuleConfig; } /** - * Set the filteringModuleConfig of this {@link ModuleConfigs} instance. - * - * @param filteringModuleConfig The filteringModuleConfig of this {@link ModuleConfigs} - */ + * Set the filteringModuleConfig of this {@link ModuleConfigs} instance. + * + * @param filteringModuleConfig The filteringModuleConfig of this {@link ModuleConfigs} + */ public void setFilteringModuleConfig( @Nonnull final FilteringModuleConfig filteringModuleConfig) { this.filteringModuleConfig = filteringModuleConfig; } /** - * Set the maskingModuleConfig of this {@link ModuleConfigs} instance and return the same instance. - * - * @param maskingModuleConfig The maskingModuleConfig of this {@link ModuleConfigs} - * @return The same instance of this {@link ModuleConfigs} class - */ + * Set the maskingModuleConfig of this {@link ModuleConfigs} instance and return the same instance. + * + * @param maskingModuleConfig The maskingModuleConfig of this {@link ModuleConfigs} + * @return The same instance of this {@link ModuleConfigs} class + */ @Nonnull public ModuleConfigs maskingModuleConfig(@Nonnull final MaskingModuleConfig maskingModuleConfig) { this.maskingModuleConfig = maskingModuleConfig; return this; } /** - * Get maskingModuleConfig - * @return maskingModuleConfig The maskingModuleConfig of this {@link ModuleConfigs} instance. - **/ + * Get maskingModuleConfig + * @return maskingModuleConfig The maskingModuleConfig of this {@link ModuleConfigs} instance. + */ @Nonnull public MaskingModuleConfig getMaskingModuleConfig() { return maskingModuleConfig; } /** - * Set the maskingModuleConfig of this {@link ModuleConfigs} instance. - * - * @param maskingModuleConfig The maskingModuleConfig of this {@link ModuleConfigs} - */ + * Set the maskingModuleConfig of this {@link ModuleConfigs} instance. + * + * @param maskingModuleConfig The maskingModuleConfig of this {@link ModuleConfigs} + */ public void setMaskingModuleConfig( @Nonnull final MaskingModuleConfig maskingModuleConfig) { this.maskingModuleConfig = maskingModuleConfig; } /** - * Set the groundingModuleConfig of this {@link ModuleConfigs} instance and return the same instance. - * - * @param groundingModuleConfig The groundingModuleConfig of this {@link ModuleConfigs} - * @return The same instance of this {@link ModuleConfigs} class - */ + * Set the groundingModuleConfig of this {@link ModuleConfigs} instance and return the same instance. + * + * @param groundingModuleConfig The groundingModuleConfig of this {@link ModuleConfigs} + * @return The same instance of this {@link ModuleConfigs} class + */ @Nonnull public ModuleConfigs groundingModuleConfig(@Nonnull final GroundingModuleConfig groundingModuleConfig) { this.groundingModuleConfig = groundingModuleConfig; return this; } /** - * Get groundingModuleConfig - * @return groundingModuleConfig The groundingModuleConfig of this {@link ModuleConfigs} instance. - **/ + * Get groundingModuleConfig + * @return groundingModuleConfig The groundingModuleConfig of this {@link ModuleConfigs} instance. + */ @Nonnull public GroundingModuleConfig getGroundingModuleConfig() { return groundingModuleConfig; } /** - * Set the groundingModuleConfig of this {@link ModuleConfigs} instance. - * - * @param groundingModuleConfig The groundingModuleConfig of this {@link ModuleConfigs} - */ + * Set the groundingModuleConfig of this {@link ModuleConfigs} instance. + * + * @param groundingModuleConfig The groundingModuleConfig of this {@link ModuleConfigs} + */ public void setGroundingModuleConfig( @Nonnull final GroundingModuleConfig groundingModuleConfig) { this.groundingModuleConfig = groundingModuleConfig; } @@ -291,5 +290,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/ModuleResults.java b/orchestration/src/main/java/com/sap/ai/sdk/orchestration/client/model/ModuleResults.java index 84cdee4da..83862d039 100644 --- a/orchestration/src/main/java/com/sap/ai/sdk/orchestration/client/model/ModuleResults.java +++ b/orchestration/src/main/java/com/sap/ai/sdk/orchestration/client/model/ModuleResults.java @@ -44,7 +44,6 @@ /** * Results of each module. */ - // CHECKSTYLE:OFF public class ModuleResults // CHECKSTYLE:ON @@ -75,49 +74,49 @@ public class ModuleResults private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the grounding of this {@link ModuleResults} instance and return the same instance. - * - * @param grounding The grounding of this {@link ModuleResults} - * @return The same instance of this {@link ModuleResults} class - */ + * Set the grounding of this {@link ModuleResults} instance and return the same instance. + * + * @param grounding The grounding of this {@link ModuleResults} + * @return The same instance of this {@link ModuleResults} class + */ @Nonnull public ModuleResults grounding(@Nonnull final GenericModuleResult grounding) { this.grounding = grounding; return this; } /** - * Get grounding - * @return grounding The grounding of this {@link ModuleResults} instance. - **/ + * Get grounding + * @return grounding The grounding of this {@link ModuleResults} instance. + */ @Nonnull public GenericModuleResult getGrounding() { return grounding; } /** - * Set the grounding of this {@link ModuleResults} instance. - * - * @param grounding The grounding of this {@link ModuleResults} - */ + * Set the grounding of this {@link ModuleResults} instance. + * + * @param grounding The grounding of this {@link ModuleResults} + */ public void setGrounding( @Nonnull final GenericModuleResult grounding) { this.grounding = grounding; } /** - * Set the templating of this {@link ModuleResults} instance and return the same instance. - * - * @param templating The templating of this {@link ModuleResults} - * @return The same instance of this {@link ModuleResults} class - */ + * Set the templating of this {@link ModuleResults} instance and return the same instance. + * + * @param templating The templating of this {@link ModuleResults} + * @return The same instance of this {@link ModuleResults} class + */ @Nonnull public ModuleResults templating(@Nonnull final List templating) { this.templating = templating; return this; } /** - * Add one templating instance to this {@link ModuleResults}. - * @param templatingItem The templating that should be added - * @return The same instance of type {@link ModuleResults} - */ - @Nonnull public ModuleResults addtemplatingItem( @Nonnull final ChatMessage templatingItem) { + * Add one templating instance to this {@link ModuleResults}. + * @param templatingItem The templating that should be added + * @return The same instance of type {@link ModuleResults} + */ + @Nonnull public ModuleResults addTemplatingItem( @Nonnull final ChatMessage templatingItem) { if (this.templating == null) { this.templating = new ArrayList<>(); } @@ -126,158 +125,158 @@ public void setGrounding( @Nonnull final GenericModuleResult grounding) { } /** - * Get templating - * @return templating The templating of this {@link ModuleResults} instance. - **/ + * Get templating + * @return templating The templating of this {@link ModuleResults} instance. + */ @Nonnull public List getTemplating() { return templating; } /** - * Set the templating of this {@link ModuleResults} instance. - * - * @param templating The templating of this {@link ModuleResults} - */ + * Set the templating of this {@link ModuleResults} instance. + * + * @param templating The templating of this {@link ModuleResults} + */ public void setTemplating( @Nonnull final List templating) { this.templating = templating; } /** - * Set the inputMasking of this {@link ModuleResults} instance and return the same instance. - * - * @param inputMasking The inputMasking of this {@link ModuleResults} - * @return The same instance of this {@link ModuleResults} class - */ + * Set the inputMasking of this {@link ModuleResults} instance and return the same instance. + * + * @param inputMasking The inputMasking of this {@link ModuleResults} + * @return The same instance of this {@link ModuleResults} class + */ @Nonnull public ModuleResults inputMasking(@Nonnull final GenericModuleResult inputMasking) { this.inputMasking = inputMasking; return this; } /** - * Get inputMasking - * @return inputMasking The inputMasking of this {@link ModuleResults} instance. - **/ + * Get inputMasking + * @return inputMasking The inputMasking of this {@link ModuleResults} instance. + */ @Nonnull public GenericModuleResult getInputMasking() { return inputMasking; } /** - * Set the inputMasking of this {@link ModuleResults} instance. - * - * @param inputMasking The inputMasking of this {@link ModuleResults} - */ + * Set the inputMasking of this {@link ModuleResults} instance. + * + * @param inputMasking The inputMasking of this {@link ModuleResults} + */ public void setInputMasking( @Nonnull final GenericModuleResult inputMasking) { this.inputMasking = inputMasking; } /** - * Set the inputFiltering of this {@link ModuleResults} instance and return the same instance. - * - * @param inputFiltering The inputFiltering of this {@link ModuleResults} - * @return The same instance of this {@link ModuleResults} class - */ + * Set the inputFiltering of this {@link ModuleResults} instance and return the same instance. + * + * @param inputFiltering The inputFiltering of this {@link ModuleResults} + * @return The same instance of this {@link ModuleResults} class + */ @Nonnull public ModuleResults inputFiltering(@Nonnull final GenericModuleResult inputFiltering) { this.inputFiltering = inputFiltering; return this; } /** - * Get inputFiltering - * @return inputFiltering The inputFiltering of this {@link ModuleResults} instance. - **/ + * Get inputFiltering + * @return inputFiltering The inputFiltering of this {@link ModuleResults} instance. + */ @Nonnull public GenericModuleResult getInputFiltering() { return inputFiltering; } /** - * Set the inputFiltering of this {@link ModuleResults} instance. - * - * @param inputFiltering The inputFiltering of this {@link ModuleResults} - */ + * Set the inputFiltering of this {@link ModuleResults} instance. + * + * @param inputFiltering The inputFiltering of this {@link ModuleResults} + */ public void setInputFiltering( @Nonnull final GenericModuleResult inputFiltering) { this.inputFiltering = inputFiltering; } /** - * Set the llm of this {@link ModuleResults} instance and return the same instance. - * - * @param llm The llm of this {@link ModuleResults} - * @return The same instance of this {@link ModuleResults} class - */ + * Set the llm of this {@link ModuleResults} instance and return the same instance. + * + * @param llm The llm of this {@link ModuleResults} + * @return The same instance of this {@link ModuleResults} class + */ @Nonnull public ModuleResults llm(@Nonnull final LLMModuleResult llm) { this.llm = llm; return this; } /** - * Get llm - * @return llm The llm of this {@link ModuleResults} instance. - **/ + * Get llm + * @return llm The llm of this {@link ModuleResults} instance. + */ @Nonnull public LLMModuleResult getLlm() { return llm; } /** - * Set the llm of this {@link ModuleResults} instance. - * - * @param llm The llm of this {@link ModuleResults} - */ + * Set the llm of this {@link ModuleResults} instance. + * + * @param llm The llm of this {@link ModuleResults} + */ public void setLlm( @Nonnull final LLMModuleResult llm) { this.llm = llm; } /** - * Set the outputFiltering of this {@link ModuleResults} instance and return the same instance. - * - * @param outputFiltering The outputFiltering of this {@link ModuleResults} - * @return The same instance of this {@link ModuleResults} class - */ + * Set the outputFiltering of this {@link ModuleResults} instance and return the same instance. + * + * @param outputFiltering The outputFiltering of this {@link ModuleResults} + * @return The same instance of this {@link ModuleResults} class + */ @Nonnull public ModuleResults outputFiltering(@Nonnull final GenericModuleResult outputFiltering) { this.outputFiltering = outputFiltering; return this; } /** - * Get outputFiltering - * @return outputFiltering The outputFiltering of this {@link ModuleResults} instance. - **/ + * Get outputFiltering + * @return outputFiltering The outputFiltering of this {@link ModuleResults} instance. + */ @Nonnull public GenericModuleResult getOutputFiltering() { return outputFiltering; } /** - * Set the outputFiltering of this {@link ModuleResults} instance. - * - * @param outputFiltering The outputFiltering of this {@link ModuleResults} - */ + * Set the outputFiltering of this {@link ModuleResults} instance. + * + * @param outputFiltering The outputFiltering of this {@link ModuleResults} + */ public void setOutputFiltering( @Nonnull final GenericModuleResult outputFiltering) { this.outputFiltering = outputFiltering; } /** - * Set the outputUnmasking of this {@link ModuleResults} instance and return the same instance. - * - * @param outputUnmasking The outputUnmasking of this {@link ModuleResults} - * @return The same instance of this {@link ModuleResults} class - */ + * Set the outputUnmasking of this {@link ModuleResults} instance and return the same instance. + * + * @param outputUnmasking The outputUnmasking of this {@link ModuleResults} + * @return The same instance of this {@link ModuleResults} class + */ @Nonnull public ModuleResults outputUnmasking(@Nonnull final GenericModuleResult outputUnmasking) { this.outputUnmasking = outputUnmasking; return this; } /** - * Get outputUnmasking - * @return outputUnmasking The outputUnmasking of this {@link ModuleResults} instance. - **/ + * Get outputUnmasking + * @return outputUnmasking The outputUnmasking of this {@link ModuleResults} instance. + */ @Nonnull public GenericModuleResult getOutputUnmasking() { return outputUnmasking; } /** - * Set the outputUnmasking of this {@link ModuleResults} instance. - * - * @param outputUnmasking The outputUnmasking of this {@link ModuleResults} - */ + * Set the outputUnmasking of this {@link ModuleResults} instance. + * + * @param outputUnmasking The outputUnmasking of this {@link ModuleResults} + */ public void setOutputUnmasking( @Nonnull final GenericModuleResult outputUnmasking) { this.outputUnmasking = outputUnmasking; } @@ -370,5 +369,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/OrchestrationConfig.java b/orchestration/src/main/java/com/sap/ai/sdk/orchestration/client/model/OrchestrationConfig.java index 511ab1de4..f2d48faee 100644 --- a/orchestration/src/main/java/com/sap/ai/sdk/orchestration/client/model/OrchestrationConfig.java +++ b/orchestration/src/main/java/com/sap/ai/sdk/orchestration/client/model/OrchestrationConfig.java @@ -39,7 +39,6 @@ /** * OrchestrationConfig */ - // CHECKSTYLE:OFF public class OrchestrationConfig // CHECKSTYLE:ON @@ -52,29 +51,29 @@ public class OrchestrationConfig private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the moduleConfigurations of this {@link OrchestrationConfig} instance and return the same instance. - * - * @param moduleConfigurations The moduleConfigurations of this {@link OrchestrationConfig} - * @return The same instance of this {@link OrchestrationConfig} class - */ + * Set the moduleConfigurations of this {@link OrchestrationConfig} instance and return the same instance. + * + * @param moduleConfigurations The moduleConfigurations of this {@link OrchestrationConfig} + * @return The same instance of this {@link OrchestrationConfig} class + */ @Nonnull public OrchestrationConfig moduleConfigurations(@Nonnull final ModuleConfigs moduleConfigurations) { this.moduleConfigurations = moduleConfigurations; return this; } /** - * Get moduleConfigurations - * @return moduleConfigurations The moduleConfigurations of this {@link OrchestrationConfig} instance. - **/ + * Get moduleConfigurations + * @return moduleConfigurations The moduleConfigurations of this {@link OrchestrationConfig} instance. + */ @Nonnull public ModuleConfigs getModuleConfigurations() { return moduleConfigurations; } /** - * Set the moduleConfigurations of this {@link OrchestrationConfig} instance. - * - * @param moduleConfigurations The moduleConfigurations of this {@link OrchestrationConfig} - */ + * Set the moduleConfigurations of this {@link OrchestrationConfig} instance. + * + * @param moduleConfigurations The moduleConfigurations of this {@link OrchestrationConfig} + */ public void setModuleConfigurations( @Nonnull final ModuleConfigs moduleConfigurations) { this.moduleConfigurations = moduleConfigurations; } @@ -155,5 +154,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/OrchestrationV1EndpointsHealthz503Response.java b/orchestration/src/main/java/com/sap/ai/sdk/orchestration/client/model/OrchestrationV1EndpointsHealthz503Response.java index a5c0274af..5564d3593 100644 --- a/orchestration/src/main/java/com/sap/ai/sdk/orchestration/client/model/OrchestrationV1EndpointsHealthz503Response.java +++ b/orchestration/src/main/java/com/sap/ai/sdk/orchestration/client/model/OrchestrationV1EndpointsHealthz503Response.java @@ -38,7 +38,6 @@ /** * OrchestrationV1EndpointsHealthz503Response */ - // CHECKSTYLE:OFF public class OrchestrationV1EndpointsHealthz503Response // CHECKSTYLE:ON @@ -51,29 +50,29 @@ public class OrchestrationV1EndpointsHealthz503Response private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the status of this {@link OrchestrationV1EndpointsHealthz503Response} instance and return the same instance. - * - * @param status The status of this {@link OrchestrationV1EndpointsHealthz503Response} - * @return The same instance of this {@link OrchestrationV1EndpointsHealthz503Response} class - */ + * Set the status of this {@link OrchestrationV1EndpointsHealthz503Response} instance and return the same instance. + * + * @param status The status of this {@link OrchestrationV1EndpointsHealthz503Response} + * @return The same instance of this {@link OrchestrationV1EndpointsHealthz503Response} class + */ @Nonnull public OrchestrationV1EndpointsHealthz503Response status(@Nonnull final String status) { this.status = status; return this; } /** - * Get status - * @return status The status of this {@link OrchestrationV1EndpointsHealthz503Response} instance. - **/ + * Get status + * @return status The status of this {@link OrchestrationV1EndpointsHealthz503Response} instance. + */ @Nonnull public String getStatus() { return status; } /** - * Set the status of this {@link OrchestrationV1EndpointsHealthz503Response} instance. - * - * @param status The status of this {@link OrchestrationV1EndpointsHealthz503Response} - */ + * Set the status of this {@link OrchestrationV1EndpointsHealthz503Response} instance. + * + * @param status The status of this {@link OrchestrationV1EndpointsHealthz503Response} + */ public void setStatus( @Nonnull final String status) { this.status = status; } @@ -154,5 +153,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/TemplatingModuleConfig.java b/orchestration/src/main/java/com/sap/ai/sdk/orchestration/client/model/TemplatingModuleConfig.java index f16313714..1bad5ed35 100644 --- a/orchestration/src/main/java/com/sap/ai/sdk/orchestration/client/model/TemplatingModuleConfig.java +++ b/orchestration/src/main/java/com/sap/ai/sdk/orchestration/client/model/TemplatingModuleConfig.java @@ -42,7 +42,6 @@ /** * TemplatingModuleConfig */ - // CHECKSTYLE:OFF public class TemplatingModuleConfig // CHECKSTYLE:ON @@ -58,21 +57,21 @@ public class TemplatingModuleConfig private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the template of this {@link TemplatingModuleConfig} instance and return the same instance. - * - * @param template A chat message array to be formatted with values from input_params. Both role and content can be templated. If messages_history is provided, the templated messages will be appended. - * @return The same instance of this {@link TemplatingModuleConfig} class - */ + * Set the template of this {@link TemplatingModuleConfig} instance and return the same instance. + * + * @param template A chat message array to be formatted with values from input_params. Both role and content can be templated. If messages_history is provided, the templated messages will be appended. + * @return The same instance of this {@link TemplatingModuleConfig} class + */ @Nonnull public TemplatingModuleConfig template(@Nonnull final List template) { this.template = template; return this; } /** - * Add one template instance to this {@link TemplatingModuleConfig}. - * @param templateItem The template that should be added - * @return The same instance of type {@link TemplatingModuleConfig} - */ - @Nonnull public TemplatingModuleConfig addtemplateItem( @Nonnull final ChatMessage templateItem) { + * Add one template instance to this {@link TemplatingModuleConfig}. + * @param templateItem The template that should be added + * @return The same instance of type {@link TemplatingModuleConfig} + */ + @Nonnull public TemplatingModuleConfig addTemplateItem( @Nonnull final ChatMessage templateItem) { if (this.template == null) { this.template = new ArrayList<>(); } @@ -81,46 +80,46 @@ public class TemplatingModuleConfig } /** - * A chat message array to be formatted with values from input_params. Both role and content can be templated. If messages_history is provided, the templated messages will be appended. - * @return template The template of this {@link TemplatingModuleConfig} instance. - **/ + * A chat message array to be formatted with values from input_params. Both role and content can be templated. If messages_history is provided, the templated messages will be appended. + * @return template The template of this {@link TemplatingModuleConfig} instance. + */ @Nonnull public List getTemplate() { return template; } /** - * Set the template of this {@link TemplatingModuleConfig} instance. - * - * @param template A chat message array to be formatted with values from input_params. Both role and content can be templated. If messages_history is provided, the templated messages will be appended. - */ + * Set the template of this {@link TemplatingModuleConfig} instance. + * + * @param template A chat message array to be formatted with values from input_params. Both role and content can be templated. If messages_history is provided, the templated messages will be appended. + */ public void setTemplate( @Nonnull final List template) { this.template = template; } /** - * Set the defaults of this {@link TemplatingModuleConfig} instance and return the same instance. - * - * @param defaults Optional default values for the template. If a parameter has no default it is required. - * @return The same instance of this {@link TemplatingModuleConfig} class - */ + * Set the defaults of this {@link TemplatingModuleConfig} instance and return the same instance. + * + * @param defaults Optional default values for the template. If a parameter has no default it is required. + * @return The same instance of this {@link TemplatingModuleConfig} class + */ @Nonnull public TemplatingModuleConfig defaults(@Nonnull final Object defaults) { this.defaults = defaults; return this; } /** - * Optional default values for the template. If a parameter has no default it is required. - * @return defaults The defaults of this {@link TemplatingModuleConfig} instance. - **/ + * Optional default values for the template. If a parameter has no default it is required. + * @return defaults The defaults of this {@link TemplatingModuleConfig} instance. + */ @Nonnull public Object getDefaults() { return defaults; } /** - * Set the defaults of this {@link TemplatingModuleConfig} instance. - * - * @param defaults Optional default values for the template. If a parameter has no default it is required. - */ + * Set the defaults of this {@link TemplatingModuleConfig} instance. + * + * @param defaults Optional default values for the template. If a parameter has no default it is required. + */ public void setDefaults( @Nonnull final Object defaults) { this.defaults = defaults; } @@ -203,5 +202,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/TokenUsage.java b/orchestration/src/main/java/com/sap/ai/sdk/orchestration/client/model/TokenUsage.java index 57f054f3f..3d34316be 100644 --- a/orchestration/src/main/java/com/sap/ai/sdk/orchestration/client/model/TokenUsage.java +++ b/orchestration/src/main/java/com/sap/ai/sdk/orchestration/client/model/TokenUsage.java @@ -38,7 +38,6 @@ /** * Usage of tokens in the response */ - // CHECKSTYLE:OFF public class TokenUsage // CHECKSTYLE:ON @@ -57,85 +56,85 @@ public class TokenUsage private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the completionTokens of this {@link TokenUsage} instance and return the same instance. - * - * @param completionTokens Number of tokens used in the input - * @return The same instance of this {@link TokenUsage} class - */ + * Set the completionTokens of this {@link TokenUsage} instance and return the same instance. + * + * @param completionTokens Number of tokens used in the input + * @return The same instance of this {@link TokenUsage} class + */ @Nonnull public TokenUsage completionTokens(@Nonnull final Integer completionTokens) { this.completionTokens = completionTokens; return this; } /** - * Number of tokens used in the input - * @return completionTokens The completionTokens of this {@link TokenUsage} instance. - **/ + * Number of tokens used in the input + * @return completionTokens The completionTokens of this {@link TokenUsage} instance. + */ @Nonnull public Integer getCompletionTokens() { return completionTokens; } /** - * Set the completionTokens of this {@link TokenUsage} instance. - * - * @param completionTokens Number of tokens used in the input - */ + * Set the completionTokens of this {@link TokenUsage} instance. + * + * @param completionTokens Number of tokens used in the input + */ public void setCompletionTokens( @Nonnull final Integer completionTokens) { this.completionTokens = completionTokens; } /** - * Set the promptTokens of this {@link TokenUsage} instance and return the same instance. - * - * @param promptTokens Number of tokens used in the output - * @return The same instance of this {@link TokenUsage} class - */ + * Set the promptTokens of this {@link TokenUsage} instance and return the same instance. + * + * @param promptTokens Number of tokens used in the output + * @return The same instance of this {@link TokenUsage} class + */ @Nonnull public TokenUsage promptTokens(@Nonnull final Integer promptTokens) { this.promptTokens = promptTokens; return this; } /** - * Number of tokens used in the output - * @return promptTokens The promptTokens of this {@link TokenUsage} instance. - **/ + * Number of tokens used in the output + * @return promptTokens The promptTokens of this {@link TokenUsage} instance. + */ @Nonnull public Integer getPromptTokens() { return promptTokens; } /** - * Set the promptTokens of this {@link TokenUsage} instance. - * - * @param promptTokens Number of tokens used in the output - */ + * Set the promptTokens of this {@link TokenUsage} instance. + * + * @param promptTokens Number of tokens used in the output + */ public void setPromptTokens( @Nonnull final Integer promptTokens) { this.promptTokens = promptTokens; } /** - * Set the totalTokens of this {@link TokenUsage} instance and return the same instance. - * - * @param totalTokens Total number of tokens used - * @return The same instance of this {@link TokenUsage} class - */ + * Set the totalTokens of this {@link TokenUsage} instance and return the same instance. + * + * @param totalTokens Total number of tokens used + * @return The same instance of this {@link TokenUsage} class + */ @Nonnull public TokenUsage totalTokens(@Nonnull final Integer totalTokens) { this.totalTokens = totalTokens; return this; } /** - * Total number of tokens used - * @return totalTokens The totalTokens of this {@link TokenUsage} instance. - **/ + * Total number of tokens used + * @return totalTokens The totalTokens of this {@link TokenUsage} instance. + */ @Nonnull public Integer getTotalTokens() { return totalTokens; } /** - * Set the totalTokens of this {@link TokenUsage} instance. - * - * @param totalTokens Total number of tokens used - */ + * Set the totalTokens of this {@link TokenUsage} instance. + * + * @param totalTokens Total number of tokens used + */ public void setTotalTokens( @Nonnull final Integer totalTokens) { this.totalTokens = totalTokens; } @@ -220,5 +219,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/UnmaskingConfig.java b/orchestration/src/main/java/com/sap/ai/sdk/orchestration/client/model/UnmaskingConfig.java index debd7e6c7..9d881baef 100644 --- a/orchestration/src/main/java/com/sap/ai/sdk/orchestration/client/model/UnmaskingConfig.java +++ b/orchestration/src/main/java/com/sap/ai/sdk/orchestration/client/model/UnmaskingConfig.java @@ -42,7 +42,6 @@ /** * UnmaskingConfig */ - // CHECKSTYLE:OFF public class UnmaskingConfig // CHECKSTYLE:ON @@ -55,21 +54,21 @@ public class UnmaskingConfig private final Map cloudSdkCustomFields = new LinkedHashMap<>(); /** - * Set the entities of this {@link UnmaskingConfig} instance and return the same instance. - * - * @param entities List of entities to be unmasked - * @return The same instance of this {@link UnmaskingConfig} class - */ + * Set the entities of this {@link UnmaskingConfig} instance and return the same instance. + * + * @param entities List of entities to be unmasked + * @return The same instance of this {@link UnmaskingConfig} class + */ @Nonnull public UnmaskingConfig entities(@Nonnull final List entities) { this.entities = entities; return this; } /** - * Add one entities instance to this {@link UnmaskingConfig}. - * @param entitiesItem The entities that should be added - * @return The same instance of type {@link UnmaskingConfig} - */ - @Nonnull public UnmaskingConfig addentitiesItem( @Nonnull final UnmaskingConfigEntitiesInner entitiesItem) { + * Add one entities instance to this {@link UnmaskingConfig}. + * @param entitiesItem The entities that should be added + * @return The same instance of type {@link UnmaskingConfig} + */ + @Nonnull public UnmaskingConfig addEntitiesItem( @Nonnull final UnmaskingConfigEntitiesInner entitiesItem) { if (this.entities == null) { this.entities = new ArrayList<>(); } @@ -78,18 +77,18 @@ public class UnmaskingConfig } /** - * List of entities to be unmasked - * @return entities The entities of this {@link UnmaskingConfig} instance. - **/ + * List of entities to be unmasked + * @return entities The entities of this {@link UnmaskingConfig} instance. + */ @Nonnull public List getEntities() { return entities; } /** - * Set the entities of this {@link UnmaskingConfig} instance. - * - * @param entities List of entities to be unmasked - */ + * Set the entities of this {@link UnmaskingConfig} instance. + * + * @param entities List of entities to be unmasked + */ public void setEntities( @Nonnull final List entities) { this.entities = entities; } @@ -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/UnmaskingConfigEntitiesInner.java b/orchestration/src/main/java/com/sap/ai/sdk/orchestration/client/model/UnmaskingConfigEntitiesInner.java index e6d94d598..505d59f52 100644 --- a/orchestration/src/main/java/com/sap/ai/sdk/orchestration/client/model/UnmaskingConfigEntitiesInner.java +++ b/orchestration/src/main/java/com/sap/ai/sdk/orchestration/client/model/UnmaskingConfigEntitiesInner.java @@ -36,7 +36,6 @@ /** * UnmaskingConfigEntitiesInner */ - // CHECKSTYLE:OFF public class UnmaskingConfigEntitiesInner // CHECKSTYLE:ON @@ -119,5 +118,6 @@ private String toIndentedString(final java.lang.Object o) { return o.toString().replace("\n", "\n "); } + } diff --git a/pom.xml b/pom.xml index 84f607d80..d76b6c28d 100644 --- a/pom.xml +++ b/pom.xml @@ -29,7 +29,7 @@ 17 17 UTF-8 - 5.10.0 + 5.11.0 5.8.0 3.5.4 3.25.3