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

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import com.sap.ai.sdk.core.model.BckndAllArgoCDApplicationData;
import com.sap.ai.sdk.core.model.BckndArgoCDApplicationBaseData;
import com.sap.ai.sdk.core.model.BckndArgoCDApplicationCreationResponse;
import com.sap.ai.sdk.core.model.BckndArgoCDApplicationData;
import com.sap.ai.sdk.core.model.BckndArgoCDApplicationDataResponse;
import com.sap.ai.sdk.core.model.BckndArgoCDApplicationDeletionResponse;
import com.sap.ai.sdk.core.model.BckndArgoCDApplicationModificationResponse;
import com.sap.ai.sdk.core.model.BckndArgoCDApplicationRefreshResponse;
Expand All @@ -26,7 +26,7 @@
import org.springframework.web.util.UriComponentsBuilder;

/**
* AI Core in version 2.41.0.
* AI Core in version 2.42.0.
*
* <p>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
Expand Down Expand Up @@ -247,11 +247,11 @@ public BckndArgoCDApplicationDeletionResponse delete(@Nonnull final String appli
*
* @param applicationName (required) Name of the ArgoCD application
* @param authorization (optional) Authorization bearer token containing a JWT token.
* @return BckndArgoCDApplicationData
* @return BckndArgoCDApplicationDataResponse
* @throws OpenApiRequestException if an error occurs while attempting to invoke the API
*/
@Nonnull
public BckndArgoCDApplicationData get(
public BckndArgoCDApplicationDataResponse get(
@Nonnull final String applicationName, @Nullable final String authorization)
throws OpenApiRequestException {
final Object localVarPostBody = null;
Expand Down Expand Up @@ -286,8 +286,8 @@ public BckndArgoCDApplicationData get(

final String[] localVarAuthNames = new String[] {"Oauth2"};

final ParameterizedTypeReference<BckndArgoCDApplicationData> localVarReturnType =
new ParameterizedTypeReference<BckndArgoCDApplicationData>() {};
final ParameterizedTypeReference<BckndArgoCDApplicationDataResponse> localVarReturnType =
new ParameterizedTypeReference<BckndArgoCDApplicationDataResponse>() {};
return apiClient.invokeAPI(
localVarPath,
HttpMethod.GET,
Expand Down Expand Up @@ -315,11 +315,11 @@ public BckndArgoCDApplicationData get(
* <p><b>0</b> - HTTP status codes 401, 403 or 500. Response body contains further details.
*
* @param applicationName Name of the ArgoCD application
* @return BckndArgoCDApplicationData
* @return BckndArgoCDApplicationDataResponse
* @throws OpenApiRequestException if an error occurs while attempting to invoke the API
*/
@Nonnull
public BckndArgoCDApplicationData get(@Nonnull final String applicationName)
public BckndArgoCDApplicationDataResponse get(@Nonnull final String applicationName)
throws OpenApiRequestException {
return get(applicationName, null);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
import org.springframework.web.util.UriComponentsBuilder;

/**
* AI Core in version 2.41.0.
* AI Core in version 2.42.0.
*
* <p>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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
import org.springframework.web.util.UriComponentsBuilder;

/**
* AI Core in version 2.41.0.
* AI Core in version 2.42.0.
*
* <p>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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
import org.springframework.web.util.UriComponentsBuilder;

/**
* AI Core in version 2.41.0.
* AI Core in version 2.42.0.
*
* <p>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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
import org.springframework.web.util.UriComponentsBuilder;

/**
* AI Core in version 2.41.0.
* AI Core in version 2.42.0.
*
* <p>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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
import org.springframework.web.util.UriComponentsBuilder;

/**
* AI Core in version 2.41.0.
* AI Core in version 2.42.0.
*
* <p>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
Expand Down
Loading