|
130 | 130 | #include "model/StopTaskResult.h" |
131 | 131 | #include "model/UpdateDatasourceRequest.h" |
132 | 132 | #include "model/UpdateDatasourceResult.h" |
| 133 | +#include "model/UpdateFeatureViewRequest.h" |
| 134 | +#include "model/UpdateFeatureViewResult.h" |
133 | 135 | #include "model/UpdateLLMConfigRequest.h" |
134 | 136 | #include "model/UpdateLLMConfigResult.h" |
135 | 137 | #include "model/UpdateLabelTableRequest.h" |
@@ -313,6 +315,9 @@ namespace AlibabaCloud |
313 | 315 | typedef Outcome<Error, Model::UpdateDatasourceResult> UpdateDatasourceOutcome; |
314 | 316 | typedef std::future<UpdateDatasourceOutcome> UpdateDatasourceOutcomeCallable; |
315 | 317 | typedef std::function<void(const PaiFeatureStoreClient*, const Model::UpdateDatasourceRequest&, const UpdateDatasourceOutcome&, const std::shared_ptr<const AsyncCallerContext>&)> UpdateDatasourceAsyncHandler; |
| 318 | + typedef Outcome<Error, Model::UpdateFeatureViewResult> UpdateFeatureViewOutcome; |
| 319 | + typedef std::future<UpdateFeatureViewOutcome> UpdateFeatureViewOutcomeCallable; |
| 320 | + typedef std::function<void(const PaiFeatureStoreClient*, const Model::UpdateFeatureViewRequest&, const UpdateFeatureViewOutcome&, const std::shared_ptr<const AsyncCallerContext>&)> UpdateFeatureViewAsyncHandler; |
316 | 321 | typedef Outcome<Error, Model::UpdateLLMConfigResult> UpdateLLMConfigOutcome; |
317 | 322 | typedef std::future<UpdateLLMConfigOutcome> UpdateLLMConfigOutcomeCallable; |
318 | 323 | typedef std::function<void(const PaiFeatureStoreClient*, const Model::UpdateLLMConfigRequest&, const UpdateLLMConfigOutcome&, const std::shared_ptr<const AsyncCallerContext>&)> UpdateLLMConfigAsyncHandler; |
@@ -498,6 +503,9 @@ namespace AlibabaCloud |
498 | 503 | UpdateDatasourceOutcome updateDatasource(const Model::UpdateDatasourceRequest &request)const; |
499 | 504 | void updateDatasourceAsync(const Model::UpdateDatasourceRequest& request, const UpdateDatasourceAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context = nullptr) const; |
500 | 505 | UpdateDatasourceOutcomeCallable updateDatasourceCallable(const Model::UpdateDatasourceRequest& request) const; |
| 506 | + UpdateFeatureViewOutcome updateFeatureView(const Model::UpdateFeatureViewRequest &request)const; |
| 507 | + void updateFeatureViewAsync(const Model::UpdateFeatureViewRequest& request, const UpdateFeatureViewAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context = nullptr) const; |
| 508 | + UpdateFeatureViewOutcomeCallable updateFeatureViewCallable(const Model::UpdateFeatureViewRequest& request) const; |
501 | 509 | UpdateLLMConfigOutcome updateLLMConfig(const Model::UpdateLLMConfigRequest &request)const; |
502 | 510 | void updateLLMConfigAsync(const Model::UpdateLLMConfigRequest& request, const UpdateLLMConfigAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context = nullptr) const; |
503 | 511 | UpdateLLMConfigOutcomeCallable updateLLMConfigCallable(const Model::UpdateLLMConfigRequest& request) const; |
|
0 commit comments