diff --git a/core/pom.xml b/core/pom.xml index 37355c300..ab26d1664 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -76,7 +76,7 @@ com.sap.cloud.sdk.datamodel openapi-generator-maven-plugin - ${cloud-sdk.version} + 5.12.0-SNAPSHOT ${project.basedir}/src/main/java released @@ -97,6 +97,51 @@ ${project.basedir}/src/main/resources/spec/aicore.yaml com.sap.ai.sdk.core.client com.sap.ai.sdk.core.client.model + + kubesubmit.v4.objectStoreSecrets.create=objectStoreSecretsCreate + kubesubmit.v4.objectStoreSecrets.query=objectStoreSecretsQuery + kubesubmit.v4.objectStoreSecrets.get=objectStoreSecretsGet + kubesubmit.v4.objectStoreSecrets.delete=objectStoreSecretsDelete + kubesubmit.v4.objectStoreSecrets.patch=objectStoreSecretsPatch + kubesubmit.v4.genericSecrets.create=genericSecretsCreate + kubesubmit.v4.genericSecrets.get=genericSecretsGet + kubesubmit.v4.genericSecrets.update=genericSecretsUpdate + kubesubmit.v4.genericSecrets.delete=genericSecretsDelete + kubesubmit.v4.resourcegroups.create=resourceGroupsCreate + kubesubmit.v4.resourcegroups.getAll=resourceGroupsGetAll + kubesubmit.v4.resourcegroups.get=resourceGroupsGet + kubesubmit.v4.resourcegroups.delete=resourceGroupsDelete + kubesubmit.v4.resourcegroups.patch=resourceGroupsPatch + kubesubmit.v4.resources.patch=resourcesPatch + kubesubmit.v4.resources.get=resourcesGet + kubesubmit.v4.executions.getLogs=executionsGetLogs + kubesubmit.v4.deployments.getLogs=deploymentsGetLogs + kubesubmit.v4.repositories.create=repositoriesCreate + kubesubmit.v4.repositories.getAll=repositoriesGetAll + kubesubmit.v4.repositories.get=repositoriesGet + kubesubmit.v4.repositories.update=repositoriesUpdate + kubesubmit.v4.repositories.delete=repositoriesDelete + kubesubmit.v4.applications.create=applicationsCreate + kubesubmit.v4.applications.getAll=applicationsGetAll + kubesubmit.v4.applications.getStatus=applicationsGetStatus + kubesubmit.v4.applications.update=applicationsUpdate + kubesubmit.v4.applications.get=applicationsGet + kubesubmit.v4.applications.delete=applicationsDelete + kubesubmit.v4.applications.refresh=applicationsRefresh + kubesubmit.v4.dockerRegistrySecrets.get=dockerRegistrySecretsGet + kubesubmit.v4.dockerRegistrySecrets.delete=dockerRegistrySecretsDelete + kubesubmit.v4.dockerRegistrySecrets.patch=dockerRegistrySecretsPatch + kubesubmit.v4.dockerRegistrySecrets.create=dockerRegistrySecretsCreate + kubesubmit.v4.dockerRegistrySecrets.query=dockerRegistrySecretsQuery + kubesubmit.v4.aiservices.getAll=aiservicesGetAll + kubesubmit.v4.aiservices.get=aiservicesGet + kubesubmit.v4.resourceQuota.getResourceGroupQuota=resourceQuotaGetResourceGroupQuota + kubesubmit.v4.resourceQuota.getExecutableQuota=resourceQuotaGetExecutableQuota + kubesubmit.v4.resourceQuota.getApplicationQuota=resourceQuotaGetApplicationQuota + kubesubmit.v4.resourceQuota.getRepositoryQuota=resourceQuotaGetRepositoryQuota + kubesubmit.v4.resourceQuota.getGenericSecretQuota=resourceQuotaGetGenericSecretQuota + kubesubmit.v4.resourceQuota.getDockerRegistrySecretQuota=resourceQuotaGetDockerRegistrySecretQuota + 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 69102a743..abfb209d9 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 @@ -81,12 +81,12 @@ public ApplicationApi( @Nonnull final ApiClient apiClient ) * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ @Nonnull - public BckndArgoCDApplicationCreationResponse kubesubmitV4ApplicationsCreate( @Nonnull final KubesubmitV4ApplicationsCreateRequest kubesubmitV4ApplicationsCreateRequest, @Nullable final String authorization) throws OpenApiRequestException { + public BckndArgoCDApplicationCreationResponse applicationsCreate( @Nonnull final KubesubmitV4ApplicationsCreateRequest kubesubmitV4ApplicationsCreateRequest, @Nullable final String authorization) throws OpenApiRequestException { final Object localVarPostBody = kubesubmitV4ApplicationsCreateRequest; // verify the required parameter 'kubesubmitV4ApplicationsCreateRequest' is set if (kubesubmitV4ApplicationsCreateRequest == null) { - throw new OpenApiRequestException("Missing the required parameter 'kubesubmitV4ApplicationsCreateRequest' when calling kubesubmitV4ApplicationsCreate"); + throw new OpenApiRequestException("Missing the required parameter 'kubesubmitV4ApplicationsCreateRequest' when calling applicationsCreate"); } final String localVarPath = UriComponentsBuilder.fromPath("/admin/applications").build().toUriString(); @@ -125,8 +125,8 @@ public BckndArgoCDApplicationCreationResponse kubesubmitV4ApplicationsCreate( @N * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ @Nonnull - public BckndArgoCDApplicationCreationResponse kubesubmitV4ApplicationsCreate( @Nonnull final KubesubmitV4ApplicationsCreateRequest kubesubmitV4ApplicationsCreateRequest) throws OpenApiRequestException { - return kubesubmitV4ApplicationsCreate(kubesubmitV4ApplicationsCreateRequest, null); + public BckndArgoCDApplicationCreationResponse applicationsCreate( @Nonnull final KubesubmitV4ApplicationsCreateRequest kubesubmitV4ApplicationsCreateRequest) throws OpenApiRequestException { + return applicationsCreate(kubesubmitV4ApplicationsCreateRequest, null); } /** @@ -144,12 +144,12 @@ public BckndArgoCDApplicationCreationResponse kubesubmitV4ApplicationsCreate( @N * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ @Nonnull - public BckndArgoCDApplicationDeletionResponse kubesubmitV4ApplicationsDelete( @Nonnull final String applicationName, @Nullable final String authorization) throws OpenApiRequestException { + public BckndArgoCDApplicationDeletionResponse applicationsDelete( @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 kubesubmitV4ApplicationsDelete"); + throw new OpenApiRequestException("Missing the required parameter 'applicationName' when calling applicationsDelete"); } // create path and map variables @@ -190,8 +190,8 @@ public BckndArgoCDApplicationDeletionResponse kubesubmitV4ApplicationsDelete( @N * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ @Nonnull - public BckndArgoCDApplicationDeletionResponse kubesubmitV4ApplicationsDelete( @Nonnull final String applicationName) throws OpenApiRequestException { - return kubesubmitV4ApplicationsDelete(applicationName, null); + public BckndArgoCDApplicationDeletionResponse applicationsDelete( @Nonnull final String applicationName) throws OpenApiRequestException { + return applicationsDelete(applicationName, null); } /** @@ -209,12 +209,12 @@ public BckndArgoCDApplicationDeletionResponse kubesubmitV4ApplicationsDelete( @N * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ @Nonnull - public BckndArgoCDApplicationData kubesubmitV4ApplicationsGet( @Nonnull final String applicationName, @Nullable final String authorization) throws OpenApiRequestException { + public BckndArgoCDApplicationData applicationsGet( @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 kubesubmitV4ApplicationsGet"); + throw new OpenApiRequestException("Missing the required parameter 'applicationName' when calling applicationsGet"); } // create path and map variables @@ -255,8 +255,8 @@ public BckndArgoCDApplicationData kubesubmitV4ApplicationsGet( @Nonnull final St * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ @Nonnull - public BckndArgoCDApplicationData kubesubmitV4ApplicationsGet( @Nonnull final String applicationName) throws OpenApiRequestException { - return kubesubmitV4ApplicationsGet(applicationName, null); + public BckndArgoCDApplicationData applicationsGet( @Nonnull final String applicationName) throws OpenApiRequestException { + return applicationsGet(applicationName, null); } /** @@ -277,7 +277,7 @@ public BckndArgoCDApplicationData kubesubmitV4ApplicationsGet( @Nonnull final St * @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 { + public BckndAllArgoCDApplicationData applicationsGetAll( @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(); @@ -317,8 +317,8 @@ public BckndAllArgoCDApplicationData kubesubmitV4ApplicationsGetAll( @Nullable f * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ @Nonnull - public BckndAllArgoCDApplicationData kubesubmitV4ApplicationsGetAll() throws OpenApiRequestException { - return kubesubmitV4ApplicationsGetAll(null, null, null, null); + public BckndAllArgoCDApplicationData applicationsGetAll() throws OpenApiRequestException { + return applicationsGetAll(null, null, null, null); } /** @@ -336,12 +336,12 @@ public BckndAllArgoCDApplicationData kubesubmitV4ApplicationsGetAll() throws Ope * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ @Nonnull - public BckndArgoCDApplicationStatus kubesubmitV4ApplicationsGetStatus( @Nonnull final String applicationName, @Nullable final String authorization) throws OpenApiRequestException { + public BckndArgoCDApplicationStatus applicationsGetStatus( @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 kubesubmitV4ApplicationsGetStatus"); + throw new OpenApiRequestException("Missing the required parameter 'applicationName' when calling applicationsGetStatus"); } // create path and map variables @@ -382,8 +382,8 @@ public BckndArgoCDApplicationStatus kubesubmitV4ApplicationsGetStatus( @Nonnull * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ @Nonnull - public BckndArgoCDApplicationStatus kubesubmitV4ApplicationsGetStatus( @Nonnull final String applicationName) throws OpenApiRequestException { - return kubesubmitV4ApplicationsGetStatus(applicationName, null); + public BckndArgoCDApplicationStatus applicationsGetStatus( @Nonnull final String applicationName) throws OpenApiRequestException { + return applicationsGetStatus(applicationName, null); } /** @@ -401,12 +401,12 @@ public BckndArgoCDApplicationStatus kubesubmitV4ApplicationsGetStatus( @Nonnull * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ @Nonnull - public BckndArgoCDApplicationRefreshResponse kubesubmitV4ApplicationsRefresh( @Nonnull final String applicationName, @Nullable final String authorization) throws OpenApiRequestException { + public BckndArgoCDApplicationRefreshResponse applicationsRefresh( @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 applicationsRefresh"); } // create path and map variables @@ -447,8 +447,8 @@ public BckndArgoCDApplicationRefreshResponse kubesubmitV4ApplicationsRefresh( @N * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ @Nonnull - public BckndArgoCDApplicationRefreshResponse kubesubmitV4ApplicationsRefresh( @Nonnull final String applicationName) throws OpenApiRequestException { - return kubesubmitV4ApplicationsRefresh(applicationName, null); + public BckndArgoCDApplicationRefreshResponse applicationsRefresh( @Nonnull final String applicationName) throws OpenApiRequestException { + return applicationsRefresh(applicationName, null); } /** @@ -468,17 +468,17 @@ public BckndArgoCDApplicationRefreshResponse kubesubmitV4ApplicationsRefresh( @N * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ @Nonnull - public BckndArgoCDApplicationModificationResponse kubesubmitV4ApplicationsUpdate( @Nonnull final String applicationName, @Nonnull final BckndArgoCDApplicationBaseData bckndArgoCDApplicationBaseData, @Nullable final String authorization) throws OpenApiRequestException { + public BckndArgoCDApplicationModificationResponse applicationsUpdate( @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 kubesubmitV4ApplicationsUpdate"); + throw new OpenApiRequestException("Missing the required parameter 'applicationName' when calling applicationsUpdate"); } // 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 'bckndArgoCDApplicationBaseData' when calling applicationsUpdate"); } // create path and map variables @@ -523,7 +523,7 @@ public BckndArgoCDApplicationModificationResponse kubesubmitV4ApplicationsUpdate * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ @Nonnull - public BckndArgoCDApplicationModificationResponse kubesubmitV4ApplicationsUpdate( @Nonnull final String applicationName, @Nonnull final BckndArgoCDApplicationBaseData bckndArgoCDApplicationBaseData) throws OpenApiRequestException { - return kubesubmitV4ApplicationsUpdate(applicationName, bckndArgoCDApplicationBaseData, null); + public BckndArgoCDApplicationModificationResponse applicationsUpdate( @Nonnull final String applicationName, @Nonnull final BckndArgoCDApplicationBaseData bckndArgoCDApplicationBaseData) throws OpenApiRequestException { + return applicationsUpdate(applicationName, bckndArgoCDApplicationBaseData, 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 7a83b9ffe..12b3635cc 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 @@ -529,12 +529,12 @@ public AiDeploymentList deploymentQuery( @Nonnull final String aiResourceGroup) * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ @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 { + public RTALogCommonResponse deploymentsGetLogs( @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 kubesubmitV4DeploymentsGetLogs"); + throw new OpenApiRequestException("Missing the required parameter 'deploymentId' when calling deploymentsGetLogs"); } // create path and map variables @@ -582,7 +582,7 @@ public RTALogCommonResponse kubesubmitV4DeploymentsGetLogs( @Nonnull final Strin * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ @Nonnull - public RTALogCommonResponse kubesubmitV4DeploymentsGetLogs( @Nonnull final String deploymentId) throws OpenApiRequestException { - return kubesubmitV4DeploymentsGetLogs(deploymentId, null, null, null, null, null); + public RTALogCommonResponse deploymentsGetLogs( @Nonnull final String deploymentId) throws OpenApiRequestException { + return deploymentsGetLogs(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 c3c2b5771..e12d3a7a8 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 @@ -79,12 +79,12 @@ public DockerRegistrySecretApi( @Nonnull final ApiClient apiClient ) * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ @Nonnull - public BcknddockerRegistrySecretCreationResponse kubesubmitV4DockerRegistrySecretsCreate( @Nonnull final KubesubmitV4DockerRegistrySecretsCreateRequest kubesubmitV4DockerRegistrySecretsCreateRequest, @Nullable final String authorization) throws OpenApiRequestException { + public BcknddockerRegistrySecretCreationResponse dockerRegistrySecretsCreate( @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 kubesubmitV4DockerRegistrySecretsCreate"); + throw new OpenApiRequestException("Missing the required parameter 'kubesubmitV4DockerRegistrySecretsCreateRequest' when calling dockerRegistrySecretsCreate"); } final String localVarPath = UriComponentsBuilder.fromPath("/admin/dockerRegistrySecrets").build().toUriString(); @@ -123,8 +123,8 @@ public BcknddockerRegistrySecretCreationResponse kubesubmitV4DockerRegistrySecre * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ @Nonnull - public BcknddockerRegistrySecretCreationResponse kubesubmitV4DockerRegistrySecretsCreate( @Nonnull final KubesubmitV4DockerRegistrySecretsCreateRequest kubesubmitV4DockerRegistrySecretsCreateRequest) throws OpenApiRequestException { - return kubesubmitV4DockerRegistrySecretsCreate(kubesubmitV4DockerRegistrySecretsCreateRequest, null); + public BcknddockerRegistrySecretCreationResponse dockerRegistrySecretsCreate( @Nonnull final KubesubmitV4DockerRegistrySecretsCreateRequest kubesubmitV4DockerRegistrySecretsCreateRequest) throws OpenApiRequestException { + return dockerRegistrySecretsCreate(kubesubmitV4DockerRegistrySecretsCreateRequest, null); } /** @@ -142,12 +142,12 @@ public BcknddockerRegistrySecretCreationResponse kubesubmitV4DockerRegistrySecre * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ @Nonnull - public BcknddockerRegistrySecretDeletionResponse kubesubmitV4DockerRegistrySecretsDelete( @Nonnull final String dockerRegistryName, @Nullable final String authorization) throws OpenApiRequestException { + public BcknddockerRegistrySecretDeletionResponse dockerRegistrySecretsDelete( @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 kubesubmitV4DockerRegistrySecretsDelete"); + throw new OpenApiRequestException("Missing the required parameter 'dockerRegistryName' when calling dockerRegistrySecretsDelete"); } // create path and map variables @@ -188,8 +188,8 @@ public BcknddockerRegistrySecretDeletionResponse kubesubmitV4DockerRegistrySecre * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ @Nonnull - public BcknddockerRegistrySecretDeletionResponse kubesubmitV4DockerRegistrySecretsDelete( @Nonnull final String dockerRegistryName) throws OpenApiRequestException { - return kubesubmitV4DockerRegistrySecretsDelete(dockerRegistryName, null); + public BcknddockerRegistrySecretDeletionResponse dockerRegistrySecretsDelete( @Nonnull final String dockerRegistryName) throws OpenApiRequestException { + return dockerRegistrySecretsDelete(dockerRegistryName, null); } /** @@ -207,12 +207,12 @@ public BcknddockerRegistrySecretDeletionResponse kubesubmitV4DockerRegistrySecre * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ @Nonnull - public BcknddockerRegistrySecretStatus kubesubmitV4DockerRegistrySecretsGet( @Nonnull final String dockerRegistryName, @Nullable final String authorization) throws OpenApiRequestException { + public BcknddockerRegistrySecretStatus dockerRegistrySecretsGet( @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 kubesubmitV4DockerRegistrySecretsGet"); + throw new OpenApiRequestException("Missing the required parameter 'dockerRegistryName' when calling dockerRegistrySecretsGet"); } // create path and map variables @@ -253,8 +253,8 @@ public BcknddockerRegistrySecretStatus kubesubmitV4DockerRegistrySecretsGet( @No * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ @Nonnull - public BcknddockerRegistrySecretStatus kubesubmitV4DockerRegistrySecretsGet( @Nonnull final String dockerRegistryName) throws OpenApiRequestException { - return kubesubmitV4DockerRegistrySecretsGet(dockerRegistryName, null); + public BcknddockerRegistrySecretStatus dockerRegistrySecretsGet( @Nonnull final String dockerRegistryName) throws OpenApiRequestException { + return dockerRegistrySecretsGet(dockerRegistryName, null); } /** @@ -274,17 +274,17 @@ public BcknddockerRegistrySecretStatus kubesubmitV4DockerRegistrySecretsGet( @No * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ @Nonnull - public BcknddockerRegistrySecretModificationResponse kubesubmitV4DockerRegistrySecretsPatch( @Nonnull final String dockerRegistryName, @Nonnull final BcknddockerRegistrySecretWithSensitiveDataRequest bcknddockerRegistrySecretWithSensitiveDataRequest, @Nullable final String authorization) throws OpenApiRequestException { + public BcknddockerRegistrySecretModificationResponse dockerRegistrySecretsPatch( @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 kubesubmitV4DockerRegistrySecretsPatch"); + throw new OpenApiRequestException("Missing the required parameter 'dockerRegistryName' when calling dockerRegistrySecretsPatch"); } // verify the required parameter 'bcknddockerRegistrySecretWithSensitiveDataRequest' is set if (bcknddockerRegistrySecretWithSensitiveDataRequest == null) { - throw new OpenApiRequestException("Missing the required parameter 'bcknddockerRegistrySecretWithSensitiveDataRequest' when calling kubesubmitV4DockerRegistrySecretsPatch"); + throw new OpenApiRequestException("Missing the required parameter 'bcknddockerRegistrySecretWithSensitiveDataRequest' when calling dockerRegistrySecretsPatch"); } // create path and map variables @@ -329,8 +329,8 @@ public BcknddockerRegistrySecretModificationResponse kubesubmitV4DockerRegistryS * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ @Nonnull - public BcknddockerRegistrySecretModificationResponse kubesubmitV4DockerRegistrySecretsPatch( @Nonnull final String dockerRegistryName, @Nonnull final BcknddockerRegistrySecretWithSensitiveDataRequest bcknddockerRegistrySecretWithSensitiveDataRequest) throws OpenApiRequestException { - return kubesubmitV4DockerRegistrySecretsPatch(dockerRegistryName, bcknddockerRegistrySecretWithSensitiveDataRequest, null); + public BcknddockerRegistrySecretModificationResponse dockerRegistrySecretsPatch( @Nonnull final String dockerRegistryName, @Nonnull final BcknddockerRegistrySecretWithSensitiveDataRequest bcknddockerRegistrySecretWithSensitiveDataRequest) throws OpenApiRequestException { + return dockerRegistrySecretsPatch(dockerRegistryName, bcknddockerRegistrySecretWithSensitiveDataRequest, null); } /** @@ -351,7 +351,7 @@ public BcknddockerRegistrySecretModificationResponse kubesubmitV4DockerRegistryS * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ @Nonnull - public BcknddockerRegistrySecretStatusResponse kubesubmitV4DockerRegistrySecretsQuery( @Nullable final Integer $top, @Nullable final Integer $skip, @Nullable final Boolean $count, @Nullable final String authorization) throws OpenApiRequestException { + public BcknddockerRegistrySecretStatusResponse dockerRegistrySecretsQuery( @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(); @@ -391,7 +391,7 @@ public BcknddockerRegistrySecretStatusResponse kubesubmitV4DockerRegistrySecrets * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ @Nonnull - public BcknddockerRegistrySecretStatusResponse kubesubmitV4DockerRegistrySecretsQuery() throws OpenApiRequestException { - return kubesubmitV4DockerRegistrySecretsQuery(null, null, null, null); + public BcknddockerRegistrySecretStatusResponse dockerRegistrySecretsQuery() throws OpenApiRequestException { + return dockerRegistrySecretsQuery(null, null, null, 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 13fa2e931..a48fae81f 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 @@ -535,12 +535,12 @@ public AiExecutionList executionQuery( @Nonnull final String aiResourceGroup) th * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ @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 { + public RTALogCommonResponse executionsGetLogs( @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 kubesubmitV4ExecutionsGetLogs"); + throw new OpenApiRequestException("Missing the required parameter 'executionId' when calling executionsGetLogs"); } // create path and map variables @@ -588,7 +588,7 @@ public RTALogCommonResponse kubesubmitV4ExecutionsGetLogs( @Nonnull final String * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ @Nonnull - public RTALogCommonResponse kubesubmitV4ExecutionsGetLogs( @Nonnull final String executionId) throws OpenApiRequestException { - return kubesubmitV4ExecutionsGetLogs(executionId, null, null, null, null, null); + public RTALogCommonResponse executionsGetLogs( @Nonnull final String executionId) throws OpenApiRequestException { + return executionsGetLogs(executionId, null, null, null, null, null); } } 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 c35b222e1..782e90823 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 @@ -81,12 +81,12 @@ public ObjectStoreSecretApi( @Nonnull final ApiClient apiClient ) * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ @Nonnull - public BckndobjectStoreSecretCreationResponse kubesubmitV4ObjectStoreSecretsCreate( @Nonnull final BckndobjectStoreSecretWithSensitiveDataRequestForPostCall bckndobjectStoreSecretWithSensitiveDataRequestForPostCall, @Nullable final String authorization, @Nullable final String aiResourceGroup) throws OpenApiRequestException { + public BckndobjectStoreSecretCreationResponse objectStoreSecretsCreate( @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 kubesubmitV4ObjectStoreSecretsCreate"); + throw new OpenApiRequestException("Missing the required parameter 'bckndobjectStoreSecretWithSensitiveDataRequestForPostCall' when calling objectStoreSecretsCreate"); } final String localVarPath = UriComponentsBuilder.fromPath("/admin/objectStoreSecrets").build().toUriString(); @@ -127,8 +127,8 @@ public BckndobjectStoreSecretCreationResponse kubesubmitV4ObjectStoreSecretsCrea * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ @Nonnull - public BckndobjectStoreSecretCreationResponse kubesubmitV4ObjectStoreSecretsCreate( @Nonnull final BckndobjectStoreSecretWithSensitiveDataRequestForPostCall bckndobjectStoreSecretWithSensitiveDataRequestForPostCall) throws OpenApiRequestException { - return kubesubmitV4ObjectStoreSecretsCreate(bckndobjectStoreSecretWithSensitiveDataRequestForPostCall, null, null); + public BckndobjectStoreSecretCreationResponse objectStoreSecretsCreate( @Nonnull final BckndobjectStoreSecretWithSensitiveDataRequestForPostCall bckndobjectStoreSecretWithSensitiveDataRequestForPostCall) throws OpenApiRequestException { + return objectStoreSecretsCreate(bckndobjectStoreSecretWithSensitiveDataRequestForPostCall, null, null); } /** @@ -148,12 +148,12 @@ public BckndobjectStoreSecretCreationResponse kubesubmitV4ObjectStoreSecretsCrea * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ @Nonnull - public BckndobjectStoreSecretDeletionResponse kubesubmitV4ObjectStoreSecretsDelete( @Nonnull final String objectStoreName, @Nullable final String authorization, @Nullable final String aiResourceGroup) throws OpenApiRequestException { + public BckndobjectStoreSecretDeletionResponse objectStoreSecretsDelete( @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 kubesubmitV4ObjectStoreSecretsDelete"); + throw new OpenApiRequestException("Missing the required parameter 'objectStoreName' when calling objectStoreSecretsDelete"); } // create path and map variables @@ -196,8 +196,8 @@ public BckndobjectStoreSecretDeletionResponse kubesubmitV4ObjectStoreSecretsDele * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ @Nonnull - public BckndobjectStoreSecretDeletionResponse kubesubmitV4ObjectStoreSecretsDelete( @Nonnull final String objectStoreName) throws OpenApiRequestException { - return kubesubmitV4ObjectStoreSecretsDelete(objectStoreName, null, null); + public BckndobjectStoreSecretDeletionResponse objectStoreSecretsDelete( @Nonnull final String objectStoreName) throws OpenApiRequestException { + return objectStoreSecretsDelete(objectStoreName, null, null); } /** @@ -217,12 +217,12 @@ public BckndobjectStoreSecretDeletionResponse kubesubmitV4ObjectStoreSecretsDele * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ @Nonnull - public BckndobjectStoreSecretStatus kubesubmitV4ObjectStoreSecretsGet( @Nonnull final String objectStoreName, @Nullable final String authorization, @Nullable final String aiResourceGroup) throws OpenApiRequestException { + public BckndobjectStoreSecretStatus objectStoreSecretsGet( @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 kubesubmitV4ObjectStoreSecretsGet"); + throw new OpenApiRequestException("Missing the required parameter 'objectStoreName' when calling objectStoreSecretsGet"); } // create path and map variables @@ -265,8 +265,8 @@ public BckndobjectStoreSecretStatus kubesubmitV4ObjectStoreSecretsGet( @Nonnull * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ @Nonnull - public BckndobjectStoreSecretStatus kubesubmitV4ObjectStoreSecretsGet( @Nonnull final String objectStoreName) throws OpenApiRequestException { - return kubesubmitV4ObjectStoreSecretsGet(objectStoreName, null, null); + public BckndobjectStoreSecretStatus objectStoreSecretsGet( @Nonnull final String objectStoreName) throws OpenApiRequestException { + return objectStoreSecretsGet(objectStoreName, null, null); } /** @@ -288,17 +288,17 @@ public BckndobjectStoreSecretStatus kubesubmitV4ObjectStoreSecretsGet( @Nonnull * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ @Nonnull - public BckndobjectStoreSecretModificationResponse kubesubmitV4ObjectStoreSecretsPatch( @Nonnull final String objectStoreName, @Nonnull final BckndobjectStoreSecretWithSensitiveDataRequest bckndobjectStoreSecretWithSensitiveDataRequest, @Nullable final String authorization, @Nullable final String aiResourceGroup) throws OpenApiRequestException { + public BckndobjectStoreSecretModificationResponse objectStoreSecretsPatch( @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 kubesubmitV4ObjectStoreSecretsPatch"); + throw new OpenApiRequestException("Missing the required parameter 'objectStoreName' when calling objectStoreSecretsPatch"); } // verify the required parameter 'bckndobjectStoreSecretWithSensitiveDataRequest' is set if (bckndobjectStoreSecretWithSensitiveDataRequest == null) { - throw new OpenApiRequestException("Missing the required parameter 'bckndobjectStoreSecretWithSensitiveDataRequest' when calling kubesubmitV4ObjectStoreSecretsPatch"); + throw new OpenApiRequestException("Missing the required parameter 'bckndobjectStoreSecretWithSensitiveDataRequest' when calling objectStoreSecretsPatch"); } // create path and map variables @@ -345,8 +345,8 @@ public BckndobjectStoreSecretModificationResponse kubesubmitV4ObjectStoreSecrets * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ @Nonnull - public BckndobjectStoreSecretModificationResponse kubesubmitV4ObjectStoreSecretsPatch( @Nonnull final String objectStoreName, @Nonnull final BckndobjectStoreSecretWithSensitiveDataRequest bckndobjectStoreSecretWithSensitiveDataRequest) throws OpenApiRequestException { - return kubesubmitV4ObjectStoreSecretsPatch(objectStoreName, bckndobjectStoreSecretWithSensitiveDataRequest, null, null); + public BckndobjectStoreSecretModificationResponse objectStoreSecretsPatch( @Nonnull final String objectStoreName, @Nonnull final BckndobjectStoreSecretWithSensitiveDataRequest bckndobjectStoreSecretWithSensitiveDataRequest) throws OpenApiRequestException { + return objectStoreSecretsPatch(objectStoreName, bckndobjectStoreSecretWithSensitiveDataRequest, null, null); } /** @@ -369,7 +369,7 @@ public BckndobjectStoreSecretModificationResponse kubesubmitV4ObjectStoreSecrets * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ @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 { + public BckndobjectStoreSecretStatusResponse objectStoreSecretsQuery( @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(); @@ -411,7 +411,7 @@ public BckndobjectStoreSecretStatusResponse kubesubmitV4ObjectStoreSecretsQuery( * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ @Nonnull - public BckndobjectStoreSecretStatusResponse kubesubmitV4ObjectStoreSecretsQuery() throws OpenApiRequestException { - return kubesubmitV4ObjectStoreSecretsQuery(null, null, null, null, null); + public BckndobjectStoreSecretStatusResponse objectStoreSecretsQuery() throws OpenApiRequestException { + return objectStoreSecretsQuery(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 09d68563f..1a0afbd76 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 @@ -80,12 +80,12 @@ public RepositoryApi( @Nonnull final ApiClient apiClient ) * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ @Nonnull - public BckndArgoCDRepositoryCreationResponse kubesubmitV4RepositoriesCreate( @Nonnull final BckndArgoCDRepositoryData bckndArgoCDRepositoryData, @Nullable final String authorization) throws OpenApiRequestException { + public BckndArgoCDRepositoryCreationResponse repositoriesCreate( @Nonnull final BckndArgoCDRepositoryData bckndArgoCDRepositoryData, @Nullable final String authorization) throws OpenApiRequestException { final Object localVarPostBody = bckndArgoCDRepositoryData; // verify the required parameter 'bckndArgoCDRepositoryData' is set if (bckndArgoCDRepositoryData == null) { - throw new OpenApiRequestException("Missing the required parameter 'bckndArgoCDRepositoryData' when calling kubesubmitV4RepositoriesCreate"); + throw new OpenApiRequestException("Missing the required parameter 'bckndArgoCDRepositoryData' when calling repositoriesCreate"); } final String localVarPath = UriComponentsBuilder.fromPath("/admin/repositories").build().toUriString(); @@ -125,8 +125,8 @@ public BckndArgoCDRepositoryCreationResponse kubesubmitV4RepositoriesCreate( @No * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ @Nonnull - public BckndArgoCDRepositoryCreationResponse kubesubmitV4RepositoriesCreate( @Nonnull final BckndArgoCDRepositoryData bckndArgoCDRepositoryData) throws OpenApiRequestException { - return kubesubmitV4RepositoriesCreate(bckndArgoCDRepositoryData, null); + public BckndArgoCDRepositoryCreationResponse repositoriesCreate( @Nonnull final BckndArgoCDRepositoryData bckndArgoCDRepositoryData) throws OpenApiRequestException { + return repositoriesCreate(bckndArgoCDRepositoryData, null); } /** @@ -144,12 +144,12 @@ public BckndArgoCDRepositoryCreationResponse kubesubmitV4RepositoriesCreate( @No * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ @Nonnull - public BckndArgoCDRepositoryDeletionResponse kubesubmitV4RepositoriesDelete( @Nonnull final String repositoryName, @Nullable final String authorization) throws OpenApiRequestException { + public BckndArgoCDRepositoryDeletionResponse repositoriesDelete( @Nonnull final String repositoryName, @Nullable final String authorization) throws OpenApiRequestException { final Object localVarPostBody = null; // verify the required parameter 'repositoryName' is set if (repositoryName == null) { - throw new OpenApiRequestException("Missing the required parameter 'repositoryName' when calling kubesubmitV4RepositoriesDelete"); + throw new OpenApiRequestException("Missing the required parameter 'repositoryName' when calling repositoriesDelete"); } // create path and map variables @@ -190,8 +190,8 @@ public BckndArgoCDRepositoryDeletionResponse kubesubmitV4RepositoriesDelete( @No * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ @Nonnull - public BckndArgoCDRepositoryDeletionResponse kubesubmitV4RepositoriesDelete( @Nonnull final String repositoryName) throws OpenApiRequestException { - return kubesubmitV4RepositoriesDelete(repositoryName, null); + public BckndArgoCDRepositoryDeletionResponse repositoriesDelete( @Nonnull final String repositoryName) throws OpenApiRequestException { + return repositoriesDelete(repositoryName, null); } /** @@ -209,12 +209,12 @@ public BckndArgoCDRepositoryDeletionResponse kubesubmitV4RepositoriesDelete( @No * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ @Nonnull - public BckndArgoCDRepositoryDetails kubesubmitV4RepositoriesGet( @Nonnull final String repositoryName, @Nullable final String authorization) throws OpenApiRequestException { + public BckndArgoCDRepositoryDetails repositoriesGet( @Nonnull final String repositoryName, @Nullable final String authorization) throws OpenApiRequestException { final Object localVarPostBody = null; // verify the required parameter 'repositoryName' is set if (repositoryName == null) { - throw new OpenApiRequestException("Missing the required parameter 'repositoryName' when calling kubesubmitV4RepositoriesGet"); + throw new OpenApiRequestException("Missing the required parameter 'repositoryName' when calling repositoriesGet"); } // create path and map variables @@ -255,8 +255,8 @@ public BckndArgoCDRepositoryDetails kubesubmitV4RepositoriesGet( @Nonnull final * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ @Nonnull - public BckndArgoCDRepositoryDetails kubesubmitV4RepositoriesGet( @Nonnull final String repositoryName) throws OpenApiRequestException { - return kubesubmitV4RepositoriesGet(repositoryName, null); + public BckndArgoCDRepositoryDetails repositoriesGet( @Nonnull final String repositoryName) throws OpenApiRequestException { + return repositoriesGet(repositoryName, null); } /** @@ -277,7 +277,7 @@ public BckndArgoCDRepositoryDetails kubesubmitV4RepositoriesGet( @Nonnull final * @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 { + public BckndArgoCDRepositoryDataResponse repositoriesGetAll( @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(); @@ -317,8 +317,8 @@ public BckndArgoCDRepositoryDataResponse kubesubmitV4RepositoriesGetAll( @Nullab * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ @Nonnull - public BckndArgoCDRepositoryDataResponse kubesubmitV4RepositoriesGetAll() throws OpenApiRequestException { - return kubesubmitV4RepositoriesGetAll(null, null, null, null); + public BckndArgoCDRepositoryDataResponse repositoriesGetAll() throws OpenApiRequestException { + return repositoriesGetAll(null, null, null, null); } /** @@ -338,17 +338,17 @@ public BckndArgoCDRepositoryDataResponse kubesubmitV4RepositoriesGetAll() throws * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ @Nonnull - public BckndArgoCDRepositoryModificationResponse kubesubmitV4RepositoriesUpdate( @Nonnull final String repositoryName, @Nonnull final BckndArgoCDRepositoryCredentials bckndArgoCDRepositoryCredentials, @Nullable final String authorization) throws OpenApiRequestException { + public BckndArgoCDRepositoryModificationResponse repositoriesUpdate( @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 if (repositoryName == null) { - throw new OpenApiRequestException("Missing the required parameter 'repositoryName' when calling kubesubmitV4RepositoriesUpdate"); + throw new OpenApiRequestException("Missing the required parameter 'repositoryName' when calling repositoriesUpdate"); } // verify the required parameter 'bckndArgoCDRepositoryCredentials' is set if (bckndArgoCDRepositoryCredentials == null) { - throw new OpenApiRequestException("Missing the required parameter 'bckndArgoCDRepositoryCredentials' when calling kubesubmitV4RepositoriesUpdate"); + throw new OpenApiRequestException("Missing the required parameter 'bckndArgoCDRepositoryCredentials' when calling repositoriesUpdate"); } // create path and map variables @@ -393,7 +393,7 @@ public BckndArgoCDRepositoryModificationResponse kubesubmitV4RepositoriesUpdate( * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ @Nonnull - public BckndArgoCDRepositoryModificationResponse kubesubmitV4RepositoriesUpdate( @Nonnull final String repositoryName, @Nonnull final BckndArgoCDRepositoryCredentials bckndArgoCDRepositoryCredentials) throws OpenApiRequestException { - return kubesubmitV4RepositoriesUpdate(repositoryName, bckndArgoCDRepositoryCredentials, null); + public BckndArgoCDRepositoryModificationResponse repositoriesUpdate( @Nonnull final String repositoryName, @Nonnull final BckndArgoCDRepositoryCredentials bckndArgoCDRepositoryCredentials) throws OpenApiRequestException { + return repositoriesUpdate(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 c4b720485..a4e807166 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 @@ -73,7 +73,7 @@ public ResourceApi( @Nonnull final ApiClient apiClient ) * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ @Nonnull - public BckndResourceGetResponse kubesubmitV4ResourcesGet( @Nullable final String authorization) throws OpenApiRequestException { + public BckndResourceGetResponse resourcesGet( @Nullable final String authorization) throws OpenApiRequestException { final Object localVarPostBody = null; final String localVarPath = UriComponentsBuilder.fromPath("/admin/resources/nodes").build().toUriString(); @@ -108,8 +108,8 @@ public BckndResourceGetResponse kubesubmitV4ResourcesGet( @Nullable final String * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ @Nonnull - public BckndResourceGetResponse kubesubmitV4ResourcesGet() throws OpenApiRequestException { - return kubesubmitV4ResourcesGet(null); + public BckndResourceGetResponse resourcesGet() throws OpenApiRequestException { + return resourcesGet(null); } /** @@ -126,12 +126,12 @@ public BckndResourceGetResponse kubesubmitV4ResourcesGet() throws OpenApiRequest * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ @Nonnull - public BckndResourcePatchResponse kubesubmitV4ResourcesPatch( @Nonnull final BckndResourcePatchBody bckndResourcePatchBody, @Nullable final String authorization) throws OpenApiRequestException { + public BckndResourcePatchResponse resourcesPatch( @Nonnull final BckndResourcePatchBody bckndResourcePatchBody, @Nullable final String authorization) throws OpenApiRequestException { final Object localVarPostBody = bckndResourcePatchBody; // verify the required parameter 'bckndResourcePatchBody' is set if (bckndResourcePatchBody == null) { - throw new OpenApiRequestException("Missing the required parameter 'bckndResourcePatchBody' when calling kubesubmitV4ResourcesPatch"); + throw new OpenApiRequestException("Missing the required parameter 'bckndResourcePatchBody' when calling resourcesPatch"); } final String localVarPath = UriComponentsBuilder.fromPath("/admin/resources/nodes").build().toUriString(); @@ -170,7 +170,7 @@ public BckndResourcePatchResponse kubesubmitV4ResourcesPatch( @Nonnull final Bck * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ @Nonnull - public BckndResourcePatchResponse kubesubmitV4ResourcesPatch( @Nonnull final BckndResourcePatchBody bckndResourcePatchBody) throws OpenApiRequestException { - return kubesubmitV4ResourcesPatch(bckndResourcePatchBody, null); + public BckndResourcePatchResponse resourcesPatch( @Nonnull final BckndResourcePatchBody bckndResourcePatchBody) throws OpenApiRequestException { + return resourcesPatch(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 278f521a5..a5ce934e5 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 @@ -78,12 +78,12 @@ public ResourceGroupApi( @Nonnull final ApiClient apiClient ) * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ @Nonnull - public BckndResourceGroupBase kubesubmitV4ResourcegroupsCreate( @Nonnull final BckndResourceGroupsPostRequest bckndResourceGroupsPostRequest, @Nullable final String authorization) throws OpenApiRequestException { + public BckndResourceGroupBase resourceGroupsCreate( @Nonnull final BckndResourceGroupsPostRequest bckndResourceGroupsPostRequest, @Nullable final String authorization) throws OpenApiRequestException { final Object localVarPostBody = bckndResourceGroupsPostRequest; // verify the required parameter 'bckndResourceGroupsPostRequest' is set if (bckndResourceGroupsPostRequest == null) { - throw new OpenApiRequestException("Missing the required parameter 'bckndResourceGroupsPostRequest' when calling kubesubmitV4ResourcegroupsCreate"); + throw new OpenApiRequestException("Missing the required parameter 'bckndResourceGroupsPostRequest' when calling resourceGroupsCreate"); } final String localVarPath = UriComponentsBuilder.fromPath("/admin/resourceGroups").build().toUriString(); @@ -122,8 +122,8 @@ public BckndResourceGroupBase kubesubmitV4ResourcegroupsCreate( @Nonnull final B * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ @Nonnull - public BckndResourceGroupBase kubesubmitV4ResourcegroupsCreate( @Nonnull final BckndResourceGroupsPostRequest bckndResourceGroupsPostRequest) throws OpenApiRequestException { - return kubesubmitV4ResourcegroupsCreate(bckndResourceGroupsPostRequest, null); + public BckndResourceGroupBase resourceGroupsCreate( @Nonnull final BckndResourceGroupsPostRequest bckndResourceGroupsPostRequest) throws OpenApiRequestException { + return resourceGroupsCreate(bckndResourceGroupsPostRequest, null); } /** @@ -141,12 +141,12 @@ public BckndResourceGroupBase kubesubmitV4ResourcegroupsCreate( @Nonnull final B * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ @Nonnull - public BckndResourceGroupDeletionResponse kubesubmitV4ResourcegroupsDelete( @Nonnull final String resourceGroupId, @Nullable final String authorization) throws OpenApiRequestException { + public BckndResourceGroupDeletionResponse resourceGroupsDelete( @Nonnull final String resourceGroupId, @Nullable final String authorization) throws OpenApiRequestException { final Object localVarPostBody = null; // verify the required parameter 'resourceGroupId' is set if (resourceGroupId == null) { - throw new OpenApiRequestException("Missing the required parameter 'resourceGroupId' when calling kubesubmitV4ResourcegroupsDelete"); + throw new OpenApiRequestException("Missing the required parameter 'resourceGroupId' when calling resourceGroupsDelete"); } // create path and map variables @@ -187,8 +187,8 @@ public BckndResourceGroupDeletionResponse kubesubmitV4ResourcegroupsDelete( @Non * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ @Nonnull - public BckndResourceGroupDeletionResponse kubesubmitV4ResourcegroupsDelete( @Nonnull final String resourceGroupId) throws OpenApiRequestException { - return kubesubmitV4ResourcegroupsDelete(resourceGroupId, null); + public BckndResourceGroupDeletionResponse resourceGroupsDelete( @Nonnull final String resourceGroupId) throws OpenApiRequestException { + return resourceGroupsDelete(resourceGroupId, null); } /** @@ -206,12 +206,12 @@ public BckndResourceGroupDeletionResponse kubesubmitV4ResourcegroupsDelete( @Non * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ @Nonnull - public BckndResourceGroup kubesubmitV4ResourcegroupsGet( @Nonnull final String resourceGroupId, @Nullable final String authorization) throws OpenApiRequestException { + public BckndResourceGroup resourceGroupsGet( @Nonnull final String resourceGroupId, @Nullable final String authorization) throws OpenApiRequestException { final Object localVarPostBody = null; // verify the required parameter 'resourceGroupId' is set if (resourceGroupId == null) { - throw new OpenApiRequestException("Missing the required parameter 'resourceGroupId' when calling kubesubmitV4ResourcegroupsGet"); + throw new OpenApiRequestException("Missing the required parameter 'resourceGroupId' when calling resourceGroupsGet"); } // create path and map variables @@ -252,8 +252,8 @@ public BckndResourceGroup kubesubmitV4ResourcegroupsGet( @Nonnull final String r * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ @Nonnull - public BckndResourceGroup kubesubmitV4ResourcegroupsGet( @Nonnull final String resourceGroupId) throws OpenApiRequestException { - return kubesubmitV4ResourcegroupsGet(resourceGroupId, null); + public BckndResourceGroup resourceGroupsGet( @Nonnull final String resourceGroupId) throws OpenApiRequestException { + return resourceGroupsGet(resourceGroupId, null); } /** @@ -280,7 +280,7 @@ public BckndResourceGroup kubesubmitV4ResourcegroupsGet( @Nonnull final String r * @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 { + public BckndResourceGroupList resourceGroupsGetAll( @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(); @@ -324,8 +324,8 @@ public BckndResourceGroupList kubesubmitV4ResourcegroupsGetAll( @Nullable final * @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); + public BckndResourceGroupList resourceGroupsGetAll() throws OpenApiRequestException { + return resourceGroupsGetAll(null, null, null, null, null, null, null); } /** @@ -344,17 +344,17 @@ public BckndResourceGroupList kubesubmitV4ResourcegroupsGetAll() throws OpenApiR * @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 { + public OpenApiResponse resourceGroupsPatch( @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 if (resourceGroupId == null) { - throw new OpenApiRequestException("Missing the required parameter 'resourceGroupId' when calling kubesubmitV4ResourcegroupsPatch"); + throw new OpenApiRequestException("Missing the required parameter 'resourceGroupId' when calling resourceGroupsPatch"); } // verify the required parameter 'bckndResourceGroupPatchRequest' is set if (bckndResourceGroupPatchRequest == null) { - throw new OpenApiRequestException("Missing the required parameter 'bckndResourceGroupPatchRequest' when calling kubesubmitV4ResourcegroupsPatch"); + throw new OpenApiRequestException("Missing the required parameter 'bckndResourceGroupPatchRequest' when calling resourceGroupsPatch"); } // create path and map variables @@ -399,7 +399,7 @@ public OpenApiResponse kubesubmitV4ResourcegroupsPatch( @Nonnull final String re * @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 { - return kubesubmitV4ResourcegroupsPatch(resourceGroupId, bckndResourceGroupPatchRequest, null); + public OpenApiResponse resourceGroupsPatch( @Nonnull final String resourceGroupId, @Nonnull final BckndResourceGroupPatchRequest bckndResourceGroupPatchRequest) throws OpenApiRequestException { + return resourceGroupsPatch(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 bef4d34f6..7e204ef64 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 @@ -62,22 +62,23 @@ public ResourceQuotaApi( @Nonnull final ApiClient apiClient ) /** - *

Get the quota for applications

- *

Get the details about quota and usage for applications

- *

200 - quota for applications + *

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. * @param authorization (optional) Authorization bearer token containing a JWT token. * @param quotaOnly (optional) When being set to true, the response contains only the quota of the resource and not the quota usage. - * @return BckndCommonResourceQuotaResponse + * @return BckndDeploymentResourceQuotaResponse * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ @Nonnull - public BckndCommonResourceQuotaResponse kubesubmitV4ResourceQuotaGetApplicationQuota( @Nullable final String authorization, @Nullable final Boolean quotaOnly) throws OpenApiRequestException { + public BckndDeploymentResourceQuotaResponse kubesubmitV4ResourceQuotaGetDeploymentQuota( @Nullable final String authorization, @Nullable final Boolean quotaOnly) throws OpenApiRequestException { final Object localVarPostBody = null; - final String localVarPath = UriComponentsBuilder.fromPath("/admin/resourceQuota/applications").build().toUriString(); + final String localVarPath = UriComponentsBuilder.fromPath("/admin/resourceQuota/deployments").build().toUriString(); final MultiValueMap localVarQueryParams = new LinkedMultiValueMap(); final HttpHeaders localVarHeaderParams = new HttpHeaders(); @@ -98,41 +99,41 @@ public BckndCommonResourceQuotaResponse kubesubmitV4ResourceQuotaGetApplicationQ 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 the quota for applications

- *

Get the details about quota and usage for applications

- *

200 - quota for applications + *

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 BckndCommonResourceQuotaResponse + * @return BckndDeploymentResourceQuotaResponse * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ @Nonnull - public BckndCommonResourceQuotaResponse kubesubmitV4ResourceQuotaGetApplicationQuota() throws OpenApiRequestException { - return kubesubmitV4ResourceQuotaGetApplicationQuota(null, null); + public BckndDeploymentResourceQuotaResponse kubesubmitV4ResourceQuotaGetDeploymentQuota() throws OpenApiRequestException { + return kubesubmitV4ResourceQuotaGetDeploymentQuota(null, null); } /** - *

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. + *

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. * @param authorization (optional) Authorization bearer token containing a JWT token. * @param quotaOnly (optional) When being set to true, the response contains only the quota of the resource and not the quota usage. - * @return BckndDeploymentResourceQuotaResponse + * @return BckndCommonResourceQuotaResponse * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ @Nonnull - public BckndDeploymentResourceQuotaResponse kubesubmitV4ResourceQuotaGetDeploymentQuota( @Nullable final String authorization, @Nullable final Boolean quotaOnly) throws OpenApiRequestException { + public BckndCommonResourceQuotaResponse resourceQuotaGetApplicationQuota( @Nullable final String authorization, @Nullable final Boolean quotaOnly) throws OpenApiRequestException { final Object localVarPostBody = null; - final String localVarPath = UriComponentsBuilder.fromPath("/admin/resourceQuota/deployments").build().toUriString(); + final String localVarPath = UriComponentsBuilder.fromPath("/admin/resourceQuota/applications").build().toUriString(); final MultiValueMap localVarQueryParams = new LinkedMultiValueMap(); final HttpHeaders localVarHeaderParams = new HttpHeaders(); @@ -153,22 +154,21 @@ public BckndDeploymentResourceQuotaResponse kubesubmitV4ResourceQuotaGetDeployme 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 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. + *

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 BckndDeploymentResourceQuotaResponse + * @return BckndCommonResourceQuotaResponse * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ @Nonnull - public BckndDeploymentResourceQuotaResponse kubesubmitV4ResourceQuotaGetDeploymentQuota() throws OpenApiRequestException { - return kubesubmitV4ResourceQuotaGetDeploymentQuota(null, null); + public BckndCommonResourceQuotaResponse resourceQuotaGetApplicationQuota() throws OpenApiRequestException { + return resourceQuotaGetApplicationQuota(null, null); } /** @@ -184,7 +184,7 @@ public BckndDeploymentResourceQuotaResponse kubesubmitV4ResourceQuotaGetDeployme * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ @Nonnull - public BckndCommonResourceQuotaResponse kubesubmitV4ResourceQuotaGetDockerRegistrySecretQuota( @Nullable final String authorization, @Nullable final Boolean quotaOnly) throws OpenApiRequestException { + public BckndCommonResourceQuotaResponse resourceQuotaGetDockerRegistrySecretQuota( @Nullable final String authorization, @Nullable final Boolean quotaOnly) throws OpenApiRequestException { final Object localVarPostBody = null; final String localVarPath = UriComponentsBuilder.fromPath("/admin/resourceQuota/dockerRegistrySecrets").build().toUriString(); @@ -221,8 +221,8 @@ public BckndCommonResourceQuotaResponse kubesubmitV4ResourceQuotaGetDockerRegist * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ @Nonnull - public BckndCommonResourceQuotaResponse kubesubmitV4ResourceQuotaGetDockerRegistrySecretQuota() throws OpenApiRequestException { - return kubesubmitV4ResourceQuotaGetDockerRegistrySecretQuota(null, null); + public BckndCommonResourceQuotaResponse resourceQuotaGetDockerRegistrySecretQuota() throws OpenApiRequestException { + return resourceQuotaGetDockerRegistrySecretQuota(null, null); } /** @@ -238,7 +238,7 @@ public BckndCommonResourceQuotaResponse kubesubmitV4ResourceQuotaGetDockerRegist * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ @Nonnull - public BckndExecutableResourceQuotaResponse kubesubmitV4ResourceQuotaGetExecutableQuota( @Nullable final String authorization, @Nullable final Boolean quotaOnly) throws OpenApiRequestException { + public BckndExecutableResourceQuotaResponse resourceQuotaGetExecutableQuota( @Nullable final String authorization, @Nullable final Boolean quotaOnly) throws OpenApiRequestException { final Object localVarPostBody = null; final String localVarPath = UriComponentsBuilder.fromPath("/admin/resourceQuota/executables").build().toUriString(); @@ -275,8 +275,8 @@ public BckndExecutableResourceQuotaResponse kubesubmitV4ResourceQuotaGetExecutab * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ @Nonnull - public BckndExecutableResourceQuotaResponse kubesubmitV4ResourceQuotaGetExecutableQuota() throws OpenApiRequestException { - return kubesubmitV4ResourceQuotaGetExecutableQuota(null, null); + public BckndExecutableResourceQuotaResponse resourceQuotaGetExecutableQuota() throws OpenApiRequestException { + return resourceQuotaGetExecutableQuota(null, null); } /** @@ -292,7 +292,7 @@ public BckndExecutableResourceQuotaResponse kubesubmitV4ResourceQuotaGetExecutab * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ @Nonnull - public BckndCommonResourceQuotaResponse kubesubmitV4ResourceQuotaGetGenericSecretQuota( @Nullable final String authorization, @Nullable final Boolean quotaOnly) throws OpenApiRequestException { + public BckndCommonResourceQuotaResponse resourceQuotaGetGenericSecretQuota( @Nullable final String authorization, @Nullable final Boolean quotaOnly) throws OpenApiRequestException { final Object localVarPostBody = null; final String localVarPath = UriComponentsBuilder.fromPath("/admin/resourceQuota/secrets").build().toUriString(); @@ -329,8 +329,8 @@ public BckndCommonResourceQuotaResponse kubesubmitV4ResourceQuotaGetGenericSecre * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ @Nonnull - public BckndCommonResourceQuotaResponse kubesubmitV4ResourceQuotaGetGenericSecretQuota() throws OpenApiRequestException { - return kubesubmitV4ResourceQuotaGetGenericSecretQuota(null, null); + public BckndCommonResourceQuotaResponse resourceQuotaGetGenericSecretQuota() throws OpenApiRequestException { + return resourceQuotaGetGenericSecretQuota(null, null); } /** @@ -346,7 +346,7 @@ public BckndCommonResourceQuotaResponse kubesubmitV4ResourceQuotaGetGenericSecre * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ @Nonnull - public BckndCommonResourceQuotaResponse kubesubmitV4ResourceQuotaGetRepositoryQuota( @Nullable final String authorization, @Nullable final Boolean quotaOnly) throws OpenApiRequestException { + public BckndCommonResourceQuotaResponse resourceQuotaGetRepositoryQuota( @Nullable final String authorization, @Nullable final Boolean quotaOnly) throws OpenApiRequestException { final Object localVarPostBody = null; final String localVarPath = UriComponentsBuilder.fromPath("/admin/resourceQuota/repositories").build().toUriString(); @@ -383,8 +383,8 @@ public BckndCommonResourceQuotaResponse kubesubmitV4ResourceQuotaGetRepositoryQu * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ @Nonnull - public BckndCommonResourceQuotaResponse kubesubmitV4ResourceQuotaGetRepositoryQuota() throws OpenApiRequestException { - return kubesubmitV4ResourceQuotaGetRepositoryQuota(null, null); + public BckndCommonResourceQuotaResponse resourceQuotaGetRepositoryQuota() throws OpenApiRequestException { + return resourceQuotaGetRepositoryQuota(null, null); } /** @@ -400,7 +400,7 @@ public BckndCommonResourceQuotaResponse kubesubmitV4ResourceQuotaGetRepositoryQu * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ @Nonnull - public BckndCommonResourceQuotaResponse kubesubmitV4ResourceQuotaGetResourceGroupQuota( @Nullable final String authorization, @Nullable final Boolean quotaOnly) throws OpenApiRequestException { + public BckndCommonResourceQuotaResponse resourceQuotaGetResourceGroupQuota( @Nullable final String authorization, @Nullable final Boolean quotaOnly) throws OpenApiRequestException { final Object localVarPostBody = null; final String localVarPath = UriComponentsBuilder.fromPath("/admin/resourceQuota/resourceGroups").build().toUriString(); @@ -437,7 +437,7 @@ public BckndCommonResourceQuotaResponse kubesubmitV4ResourceQuotaGetResourceGrou * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ @Nonnull - public BckndCommonResourceQuotaResponse kubesubmitV4ResourceQuotaGetResourceGroupQuota() throws OpenApiRequestException { - return kubesubmitV4ResourceQuotaGetResourceGroupQuota(null, null); + public BckndCommonResourceQuotaResponse resourceQuotaGetResourceGroupQuota() throws OpenApiRequestException { + return resourceQuotaGetResourceGroupQuota(null, 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 39c8a7ed2..6098ac555 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 @@ -80,12 +80,12 @@ public SecretApi( @Nonnull final ApiClient apiClient ) * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ @Nonnull - public BckndGenericSecretDataResponse kubesubmitV4GenericSecretsCreate( @Nonnull final BckndGenericSecretPostBody bckndGenericSecretPostBody, @Nullable final String authorization, @Nullable final String aiResourceGroup, @Nullable final Boolean aiTenantScope) throws OpenApiRequestException { + public BckndGenericSecretDataResponse genericSecretsCreate( @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 kubesubmitV4GenericSecretsCreate"); + throw new OpenApiRequestException("Missing the required parameter 'bckndGenericSecretPostBody' when calling genericSecretsCreate"); } final String localVarPath = UriComponentsBuilder.fromPath("/admin/secrets").build().toUriString(); @@ -128,8 +128,8 @@ public BckndGenericSecretDataResponse kubesubmitV4GenericSecretsCreate( @Nonnull * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ @Nonnull - public BckndGenericSecretDataResponse kubesubmitV4GenericSecretsCreate( @Nonnull final BckndGenericSecretPostBody bckndGenericSecretPostBody) throws OpenApiRequestException { - return kubesubmitV4GenericSecretsCreate(bckndGenericSecretPostBody, null, null, null); + public BckndGenericSecretDataResponse genericSecretsCreate( @Nonnull final BckndGenericSecretPostBody bckndGenericSecretPostBody) throws OpenApiRequestException { + return genericSecretsCreate(bckndGenericSecretPostBody, null, null, null); } /** @@ -151,12 +151,12 @@ public BckndGenericSecretDataResponse kubesubmitV4GenericSecretsCreate( @Nonnull * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ @Nonnull - public OpenApiResponse kubesubmitV4GenericSecretsDelete( @Nonnull final String secretName, @Nullable final String authorization, @Nullable final String aiResourceGroup, @Nullable final Boolean aiTenantScope) throws OpenApiRequestException { + public OpenApiResponse genericSecretsDelete( @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 kubesubmitV4GenericSecretsDelete"); + throw new OpenApiRequestException("Missing the required parameter 'secretName' when calling genericSecretsDelete"); } // create path and map variables @@ -202,8 +202,8 @@ public OpenApiResponse kubesubmitV4GenericSecretsDelete( @Nonnull final String s * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ @Nonnull - public OpenApiResponse kubesubmitV4GenericSecretsDelete( @Nonnull final String secretName) throws OpenApiRequestException { - return kubesubmitV4GenericSecretsDelete(secretName, null, null, null); + public OpenApiResponse genericSecretsDelete( @Nonnull final String secretName) throws OpenApiRequestException { + return genericSecretsDelete(secretName, null, null, null); } /** @@ -228,7 +228,7 @@ public OpenApiResponse kubesubmitV4GenericSecretsDelete( @Nonnull final String s * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ @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 { + public BckndListGenericSecretsResponse genericSecretsGet( @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(); @@ -272,8 +272,8 @@ public BckndListGenericSecretsResponse kubesubmitV4GenericSecretsGet( @Nullable * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ @Nonnull - public BckndListGenericSecretsResponse kubesubmitV4GenericSecretsGet() throws OpenApiRequestException { - return kubesubmitV4GenericSecretsGet(null, null, null, null, null, null); + public BckndListGenericSecretsResponse genericSecretsGet() throws OpenApiRequestException { + return genericSecretsGet(null, null, null, null, null, null); } /** @@ -297,17 +297,17 @@ public BckndListGenericSecretsResponse kubesubmitV4GenericSecretsGet() throws Op * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ @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 { + public BckndGenericSecretDataResponse genericSecretsUpdate( @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 kubesubmitV4GenericSecretsUpdate"); + throw new OpenApiRequestException("Missing the required parameter 'secretName' when calling genericSecretsUpdate"); } // verify the required parameter 'bckndGenericSecretPatchBody' is set if (bckndGenericSecretPatchBody == null) { - throw new OpenApiRequestException("Missing the required parameter 'bckndGenericSecretPatchBody' when calling kubesubmitV4GenericSecretsUpdate"); + throw new OpenApiRequestException("Missing the required parameter 'bckndGenericSecretPatchBody' when calling genericSecretsUpdate"); } // create path and map variables @@ -356,7 +356,7 @@ public BckndGenericSecretDataResponse kubesubmitV4GenericSecretsUpdate( @Nonnull * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ @Nonnull - public BckndGenericSecretDataResponse kubesubmitV4GenericSecretsUpdate( @Nonnull final String secretName, @Nonnull final BckndGenericSecretPatchBody bckndGenericSecretPatchBody) throws OpenApiRequestException { - return kubesubmitV4GenericSecretsUpdate(secretName, bckndGenericSecretPatchBody, null, null, null); + public BckndGenericSecretDataResponse genericSecretsUpdate( @Nonnull final String secretName, @Nonnull final BckndGenericSecretPatchBody bckndGenericSecretPatchBody) throws OpenApiRequestException { + return genericSecretsUpdate(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 dea762f85..086aa21fd 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 @@ -75,12 +75,12 @@ public ServiceApi( @Nonnull final ApiClient apiClient ) * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ @Nonnull - public BckndExtendedService kubesubmitV4AiservicesGet( @Nonnull final String serviceName, @Nullable final String authorization) throws OpenApiRequestException { + public BckndExtendedService aiservicesGet( @Nonnull final String serviceName, @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"); + throw new OpenApiRequestException("Missing the required parameter 'serviceName' when calling aiservicesGet"); } // create path and map variables @@ -121,8 +121,8 @@ public BckndExtendedService kubesubmitV4AiservicesGet( @Nonnull final String ser * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ @Nonnull - public BckndExtendedService kubesubmitV4AiservicesGet( @Nonnull final String serviceName) throws OpenApiRequestException { - return kubesubmitV4AiservicesGet(serviceName, null); + public BckndExtendedService aiservicesGet( @Nonnull final String serviceName) throws OpenApiRequestException { + return aiservicesGet(serviceName, null); } /** @@ -137,7 +137,7 @@ public BckndExtendedService kubesubmitV4AiservicesGet( @Nonnull final String ser * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ @Nonnull - public BckndServiceList kubesubmitV4AiservicesGetAll( @Nullable final String authorization) throws OpenApiRequestException { + public BckndServiceList aiservicesGetAll( @Nullable final String authorization) throws OpenApiRequestException { final Object localVarPostBody = null; final String localVarPath = UriComponentsBuilder.fromPath("/admin/services").build().toUriString(); @@ -172,7 +172,7 @@ public BckndServiceList kubesubmitV4AiservicesGetAll( @Nullable final String aut * @throws OpenApiRequestException if an error occurs while attempting to invoke the API */ @Nonnull - public BckndServiceList kubesubmitV4AiservicesGetAll() throws OpenApiRequestException { - return kubesubmitV4AiservicesGetAll(null); + public BckndServiceList aiservicesGetAll() throws OpenApiRequestException { + return aiservicesGetAll(null); } }