|
@@ -30,18 +30,34 @@
|
|
|
#include "model/CorrectAddressResult.h"
|
|
#include "model/CorrectAddressResult.h"
|
|
|
#include "model/ExtractAddressRequest.h"
|
|
#include "model/ExtractAddressRequest.h"
|
|
|
#include "model/ExtractAddressResult.h"
|
|
#include "model/ExtractAddressResult.h"
|
|
|
|
|
+#include "model/ExtractExpressRequest.h"
|
|
|
|
|
+#include "model/ExtractExpressResult.h"
|
|
|
#include "model/ExtractNameRequest.h"
|
|
#include "model/ExtractNameRequest.h"
|
|
|
#include "model/ExtractNameResult.h"
|
|
#include "model/ExtractNameResult.h"
|
|
|
#include "model/ExtractPhoneRequest.h"
|
|
#include "model/ExtractPhoneRequest.h"
|
|
|
#include "model/ExtractPhoneResult.h"
|
|
#include "model/ExtractPhoneResult.h"
|
|
|
|
|
+#include "model/GetAddressBlockMappingRequest.h"
|
|
|
|
|
+#include "model/GetAddressBlockMappingResult.h"
|
|
|
#include "model/GetAddressDivisionCodeRequest.h"
|
|
#include "model/GetAddressDivisionCodeRequest.h"
|
|
|
#include "model/GetAddressDivisionCodeResult.h"
|
|
#include "model/GetAddressDivisionCodeResult.h"
|
|
|
|
|
+#include "model/GetAddressEvaluateRequest.h"
|
|
|
|
|
+#include "model/GetAddressEvaluateResult.h"
|
|
|
|
|
+#include "model/GetAddressGeocodeRequest.h"
|
|
|
|
|
+#include "model/GetAddressGeocodeResult.h"
|
|
|
|
|
+#include "model/GetAddressSearchRequest.h"
|
|
|
|
|
+#include "model/GetAddressSearchResult.h"
|
|
|
#include "model/GetAddressSimilarityRequest.h"
|
|
#include "model/GetAddressSimilarityRequest.h"
|
|
|
#include "model/GetAddressSimilarityResult.h"
|
|
#include "model/GetAddressSimilarityResult.h"
|
|
|
|
|
+#include "model/GetInputSearchRequest.h"
|
|
|
|
|
+#include "model/GetInputSearchResult.h"
|
|
|
#include "model/GetZipcodeRequest.h"
|
|
#include "model/GetZipcodeRequest.h"
|
|
|
#include "model/GetZipcodeResult.h"
|
|
#include "model/GetZipcodeResult.h"
|
|
|
|
|
+#include "model/PredictPOIRequest.h"
|
|
|
|
|
+#include "model/PredictPOIResult.h"
|
|
|
#include "model/StructureAddressRequest.h"
|
|
#include "model/StructureAddressRequest.h"
|
|
|
#include "model/StructureAddressResult.h"
|
|
#include "model/StructureAddressResult.h"
|
|
|
|
|
+#include "model/TransferCoordRequest.h"
|
|
|
|
|
+#include "model/TransferCoordResult.h"
|
|
|
#include "model/UpdateProjectRequest.h"
|
|
#include "model/UpdateProjectRequest.h"
|
|
|
#include "model/UpdateProjectResult.h"
|
|
#include "model/UpdateProjectResult.h"
|
|
|
|
|
|
|
@@ -65,24 +81,48 @@ namespace AlibabaCloud
|
|
|
typedef Outcome<Error, Model::ExtractAddressResult> ExtractAddressOutcome;
|
|
typedef Outcome<Error, Model::ExtractAddressResult> ExtractAddressOutcome;
|
|
|
typedef std::future<ExtractAddressOutcome> ExtractAddressOutcomeCallable;
|
|
typedef std::future<ExtractAddressOutcome> ExtractAddressOutcomeCallable;
|
|
|
typedef std::function<void(const Address_purificationClient*, const Model::ExtractAddressRequest&, const ExtractAddressOutcome&, const std::shared_ptr<const AsyncCallerContext>&)> ExtractAddressAsyncHandler;
|
|
typedef std::function<void(const Address_purificationClient*, const Model::ExtractAddressRequest&, const ExtractAddressOutcome&, const std::shared_ptr<const AsyncCallerContext>&)> ExtractAddressAsyncHandler;
|
|
|
|
|
+ typedef Outcome<Error, Model::ExtractExpressResult> ExtractExpressOutcome;
|
|
|
|
|
+ typedef std::future<ExtractExpressOutcome> ExtractExpressOutcomeCallable;
|
|
|
|
|
+ typedef std::function<void(const Address_purificationClient*, const Model::ExtractExpressRequest&, const ExtractExpressOutcome&, const std::shared_ptr<const AsyncCallerContext>&)> ExtractExpressAsyncHandler;
|
|
|
typedef Outcome<Error, Model::ExtractNameResult> ExtractNameOutcome;
|
|
typedef Outcome<Error, Model::ExtractNameResult> ExtractNameOutcome;
|
|
|
typedef std::future<ExtractNameOutcome> ExtractNameOutcomeCallable;
|
|
typedef std::future<ExtractNameOutcome> ExtractNameOutcomeCallable;
|
|
|
typedef std::function<void(const Address_purificationClient*, const Model::ExtractNameRequest&, const ExtractNameOutcome&, const std::shared_ptr<const AsyncCallerContext>&)> ExtractNameAsyncHandler;
|
|
typedef std::function<void(const Address_purificationClient*, const Model::ExtractNameRequest&, const ExtractNameOutcome&, const std::shared_ptr<const AsyncCallerContext>&)> ExtractNameAsyncHandler;
|
|
|
typedef Outcome<Error, Model::ExtractPhoneResult> ExtractPhoneOutcome;
|
|
typedef Outcome<Error, Model::ExtractPhoneResult> ExtractPhoneOutcome;
|
|
|
typedef std::future<ExtractPhoneOutcome> ExtractPhoneOutcomeCallable;
|
|
typedef std::future<ExtractPhoneOutcome> ExtractPhoneOutcomeCallable;
|
|
|
typedef std::function<void(const Address_purificationClient*, const Model::ExtractPhoneRequest&, const ExtractPhoneOutcome&, const std::shared_ptr<const AsyncCallerContext>&)> ExtractPhoneAsyncHandler;
|
|
typedef std::function<void(const Address_purificationClient*, const Model::ExtractPhoneRequest&, const ExtractPhoneOutcome&, const std::shared_ptr<const AsyncCallerContext>&)> ExtractPhoneAsyncHandler;
|
|
|
|
|
+ typedef Outcome<Error, Model::GetAddressBlockMappingResult> GetAddressBlockMappingOutcome;
|
|
|
|
|
+ typedef std::future<GetAddressBlockMappingOutcome> GetAddressBlockMappingOutcomeCallable;
|
|
|
|
|
+ typedef std::function<void(const Address_purificationClient*, const Model::GetAddressBlockMappingRequest&, const GetAddressBlockMappingOutcome&, const std::shared_ptr<const AsyncCallerContext>&)> GetAddressBlockMappingAsyncHandler;
|
|
|
typedef Outcome<Error, Model::GetAddressDivisionCodeResult> GetAddressDivisionCodeOutcome;
|
|
typedef Outcome<Error, Model::GetAddressDivisionCodeResult> GetAddressDivisionCodeOutcome;
|
|
|
typedef std::future<GetAddressDivisionCodeOutcome> GetAddressDivisionCodeOutcomeCallable;
|
|
typedef std::future<GetAddressDivisionCodeOutcome> GetAddressDivisionCodeOutcomeCallable;
|
|
|
typedef std::function<void(const Address_purificationClient*, const Model::GetAddressDivisionCodeRequest&, const GetAddressDivisionCodeOutcome&, const std::shared_ptr<const AsyncCallerContext>&)> GetAddressDivisionCodeAsyncHandler;
|
|
typedef std::function<void(const Address_purificationClient*, const Model::GetAddressDivisionCodeRequest&, const GetAddressDivisionCodeOutcome&, const std::shared_ptr<const AsyncCallerContext>&)> GetAddressDivisionCodeAsyncHandler;
|
|
|
|
|
+ typedef Outcome<Error, Model::GetAddressEvaluateResult> GetAddressEvaluateOutcome;
|
|
|
|
|
+ typedef std::future<GetAddressEvaluateOutcome> GetAddressEvaluateOutcomeCallable;
|
|
|
|
|
+ typedef std::function<void(const Address_purificationClient*, const Model::GetAddressEvaluateRequest&, const GetAddressEvaluateOutcome&, const std::shared_ptr<const AsyncCallerContext>&)> GetAddressEvaluateAsyncHandler;
|
|
|
|
|
+ typedef Outcome<Error, Model::GetAddressGeocodeResult> GetAddressGeocodeOutcome;
|
|
|
|
|
+ typedef std::future<GetAddressGeocodeOutcome> GetAddressGeocodeOutcomeCallable;
|
|
|
|
|
+ typedef std::function<void(const Address_purificationClient*, const Model::GetAddressGeocodeRequest&, const GetAddressGeocodeOutcome&, const std::shared_ptr<const AsyncCallerContext>&)> GetAddressGeocodeAsyncHandler;
|
|
|
|
|
+ typedef Outcome<Error, Model::GetAddressSearchResult> GetAddressSearchOutcome;
|
|
|
|
|
+ typedef std::future<GetAddressSearchOutcome> GetAddressSearchOutcomeCallable;
|
|
|
|
|
+ typedef std::function<void(const Address_purificationClient*, const Model::GetAddressSearchRequest&, const GetAddressSearchOutcome&, const std::shared_ptr<const AsyncCallerContext>&)> GetAddressSearchAsyncHandler;
|
|
|
typedef Outcome<Error, Model::GetAddressSimilarityResult> GetAddressSimilarityOutcome;
|
|
typedef Outcome<Error, Model::GetAddressSimilarityResult> GetAddressSimilarityOutcome;
|
|
|
typedef std::future<GetAddressSimilarityOutcome> GetAddressSimilarityOutcomeCallable;
|
|
typedef std::future<GetAddressSimilarityOutcome> GetAddressSimilarityOutcomeCallable;
|
|
|
typedef std::function<void(const Address_purificationClient*, const Model::GetAddressSimilarityRequest&, const GetAddressSimilarityOutcome&, const std::shared_ptr<const AsyncCallerContext>&)> GetAddressSimilarityAsyncHandler;
|
|
typedef std::function<void(const Address_purificationClient*, const Model::GetAddressSimilarityRequest&, const GetAddressSimilarityOutcome&, const std::shared_ptr<const AsyncCallerContext>&)> GetAddressSimilarityAsyncHandler;
|
|
|
|
|
+ typedef Outcome<Error, Model::GetInputSearchResult> GetInputSearchOutcome;
|
|
|
|
|
+ typedef std::future<GetInputSearchOutcome> GetInputSearchOutcomeCallable;
|
|
|
|
|
+ typedef std::function<void(const Address_purificationClient*, const Model::GetInputSearchRequest&, const GetInputSearchOutcome&, const std::shared_ptr<const AsyncCallerContext>&)> GetInputSearchAsyncHandler;
|
|
|
typedef Outcome<Error, Model::GetZipcodeResult> GetZipcodeOutcome;
|
|
typedef Outcome<Error, Model::GetZipcodeResult> GetZipcodeOutcome;
|
|
|
typedef std::future<GetZipcodeOutcome> GetZipcodeOutcomeCallable;
|
|
typedef std::future<GetZipcodeOutcome> GetZipcodeOutcomeCallable;
|
|
|
typedef std::function<void(const Address_purificationClient*, const Model::GetZipcodeRequest&, const GetZipcodeOutcome&, const std::shared_ptr<const AsyncCallerContext>&)> GetZipcodeAsyncHandler;
|
|
typedef std::function<void(const Address_purificationClient*, const Model::GetZipcodeRequest&, const GetZipcodeOutcome&, const std::shared_ptr<const AsyncCallerContext>&)> GetZipcodeAsyncHandler;
|
|
|
|
|
+ typedef Outcome<Error, Model::PredictPOIResult> PredictPOIOutcome;
|
|
|
|
|
+ typedef std::future<PredictPOIOutcome> PredictPOIOutcomeCallable;
|
|
|
|
|
+ typedef std::function<void(const Address_purificationClient*, const Model::PredictPOIRequest&, const PredictPOIOutcome&, const std::shared_ptr<const AsyncCallerContext>&)> PredictPOIAsyncHandler;
|
|
|
typedef Outcome<Error, Model::StructureAddressResult> StructureAddressOutcome;
|
|
typedef Outcome<Error, Model::StructureAddressResult> StructureAddressOutcome;
|
|
|
typedef std::future<StructureAddressOutcome> StructureAddressOutcomeCallable;
|
|
typedef std::future<StructureAddressOutcome> StructureAddressOutcomeCallable;
|
|
|
typedef std::function<void(const Address_purificationClient*, const Model::StructureAddressRequest&, const StructureAddressOutcome&, const std::shared_ptr<const AsyncCallerContext>&)> StructureAddressAsyncHandler;
|
|
typedef std::function<void(const Address_purificationClient*, const Model::StructureAddressRequest&, const StructureAddressOutcome&, const std::shared_ptr<const AsyncCallerContext>&)> StructureAddressAsyncHandler;
|
|
|
|
|
+ typedef Outcome<Error, Model::TransferCoordResult> TransferCoordOutcome;
|
|
|
|
|
+ typedef std::future<TransferCoordOutcome> TransferCoordOutcomeCallable;
|
|
|
|
|
+ typedef std::function<void(const Address_purificationClient*, const Model::TransferCoordRequest&, const TransferCoordOutcome&, const std::shared_ptr<const AsyncCallerContext>&)> TransferCoordAsyncHandler;
|
|
|
typedef Outcome<Error, Model::UpdateProjectResult> UpdateProjectOutcome;
|
|
typedef Outcome<Error, Model::UpdateProjectResult> UpdateProjectOutcome;
|
|
|
typedef std::future<UpdateProjectOutcome> UpdateProjectOutcomeCallable;
|
|
typedef std::future<UpdateProjectOutcome> UpdateProjectOutcomeCallable;
|
|
|
typedef std::function<void(const Address_purificationClient*, const Model::UpdateProjectRequest&, const UpdateProjectOutcome&, const std::shared_ptr<const AsyncCallerContext>&)> UpdateProjectAsyncHandler;
|
|
typedef std::function<void(const Address_purificationClient*, const Model::UpdateProjectRequest&, const UpdateProjectOutcome&, const std::shared_ptr<const AsyncCallerContext>&)> UpdateProjectAsyncHandler;
|
|
@@ -103,24 +143,48 @@ namespace AlibabaCloud
|
|
|
ExtractAddressOutcome extractAddress(const Model::ExtractAddressRequest &request)const;
|
|
ExtractAddressOutcome extractAddress(const Model::ExtractAddressRequest &request)const;
|
|
|
void extractAddressAsync(const Model::ExtractAddressRequest& request, const ExtractAddressAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context = nullptr) const;
|
|
void extractAddressAsync(const Model::ExtractAddressRequest& request, const ExtractAddressAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context = nullptr) const;
|
|
|
ExtractAddressOutcomeCallable extractAddressCallable(const Model::ExtractAddressRequest& request) const;
|
|
ExtractAddressOutcomeCallable extractAddressCallable(const Model::ExtractAddressRequest& request) const;
|
|
|
|
|
+ ExtractExpressOutcome extractExpress(const Model::ExtractExpressRequest &request)const;
|
|
|
|
|
+ void extractExpressAsync(const Model::ExtractExpressRequest& request, const ExtractExpressAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context = nullptr) const;
|
|
|
|
|
+ ExtractExpressOutcomeCallable extractExpressCallable(const Model::ExtractExpressRequest& request) const;
|
|
|
ExtractNameOutcome extractName(const Model::ExtractNameRequest &request)const;
|
|
ExtractNameOutcome extractName(const Model::ExtractNameRequest &request)const;
|
|
|
void extractNameAsync(const Model::ExtractNameRequest& request, const ExtractNameAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context = nullptr) const;
|
|
void extractNameAsync(const Model::ExtractNameRequest& request, const ExtractNameAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context = nullptr) const;
|
|
|
ExtractNameOutcomeCallable extractNameCallable(const Model::ExtractNameRequest& request) const;
|
|
ExtractNameOutcomeCallable extractNameCallable(const Model::ExtractNameRequest& request) const;
|
|
|
ExtractPhoneOutcome extractPhone(const Model::ExtractPhoneRequest &request)const;
|
|
ExtractPhoneOutcome extractPhone(const Model::ExtractPhoneRequest &request)const;
|
|
|
void extractPhoneAsync(const Model::ExtractPhoneRequest& request, const ExtractPhoneAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context = nullptr) const;
|
|
void extractPhoneAsync(const Model::ExtractPhoneRequest& request, const ExtractPhoneAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context = nullptr) const;
|
|
|
ExtractPhoneOutcomeCallable extractPhoneCallable(const Model::ExtractPhoneRequest& request) const;
|
|
ExtractPhoneOutcomeCallable extractPhoneCallable(const Model::ExtractPhoneRequest& request) const;
|
|
|
|
|
+ GetAddressBlockMappingOutcome getAddressBlockMapping(const Model::GetAddressBlockMappingRequest &request)const;
|
|
|
|
|
+ void getAddressBlockMappingAsync(const Model::GetAddressBlockMappingRequest& request, const GetAddressBlockMappingAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context = nullptr) const;
|
|
|
|
|
+ GetAddressBlockMappingOutcomeCallable getAddressBlockMappingCallable(const Model::GetAddressBlockMappingRequest& request) const;
|
|
|
GetAddressDivisionCodeOutcome getAddressDivisionCode(const Model::GetAddressDivisionCodeRequest &request)const;
|
|
GetAddressDivisionCodeOutcome getAddressDivisionCode(const Model::GetAddressDivisionCodeRequest &request)const;
|
|
|
void getAddressDivisionCodeAsync(const Model::GetAddressDivisionCodeRequest& request, const GetAddressDivisionCodeAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context = nullptr) const;
|
|
void getAddressDivisionCodeAsync(const Model::GetAddressDivisionCodeRequest& request, const GetAddressDivisionCodeAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context = nullptr) const;
|
|
|
GetAddressDivisionCodeOutcomeCallable getAddressDivisionCodeCallable(const Model::GetAddressDivisionCodeRequest& request) const;
|
|
GetAddressDivisionCodeOutcomeCallable getAddressDivisionCodeCallable(const Model::GetAddressDivisionCodeRequest& request) const;
|
|
|
|
|
+ GetAddressEvaluateOutcome getAddressEvaluate(const Model::GetAddressEvaluateRequest &request)const;
|
|
|
|
|
+ void getAddressEvaluateAsync(const Model::GetAddressEvaluateRequest& request, const GetAddressEvaluateAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context = nullptr) const;
|
|
|
|
|
+ GetAddressEvaluateOutcomeCallable getAddressEvaluateCallable(const Model::GetAddressEvaluateRequest& request) const;
|
|
|
|
|
+ GetAddressGeocodeOutcome getAddressGeocode(const Model::GetAddressGeocodeRequest &request)const;
|
|
|
|
|
+ void getAddressGeocodeAsync(const Model::GetAddressGeocodeRequest& request, const GetAddressGeocodeAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context = nullptr) const;
|
|
|
|
|
+ GetAddressGeocodeOutcomeCallable getAddressGeocodeCallable(const Model::GetAddressGeocodeRequest& request) const;
|
|
|
|
|
+ GetAddressSearchOutcome getAddressSearch(const Model::GetAddressSearchRequest &request)const;
|
|
|
|
|
+ void getAddressSearchAsync(const Model::GetAddressSearchRequest& request, const GetAddressSearchAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context = nullptr) const;
|
|
|
|
|
+ GetAddressSearchOutcomeCallable getAddressSearchCallable(const Model::GetAddressSearchRequest& request) const;
|
|
|
GetAddressSimilarityOutcome getAddressSimilarity(const Model::GetAddressSimilarityRequest &request)const;
|
|
GetAddressSimilarityOutcome getAddressSimilarity(const Model::GetAddressSimilarityRequest &request)const;
|
|
|
void getAddressSimilarityAsync(const Model::GetAddressSimilarityRequest& request, const GetAddressSimilarityAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context = nullptr) const;
|
|
void getAddressSimilarityAsync(const Model::GetAddressSimilarityRequest& request, const GetAddressSimilarityAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context = nullptr) const;
|
|
|
GetAddressSimilarityOutcomeCallable getAddressSimilarityCallable(const Model::GetAddressSimilarityRequest& request) const;
|
|
GetAddressSimilarityOutcomeCallable getAddressSimilarityCallable(const Model::GetAddressSimilarityRequest& request) const;
|
|
|
|
|
+ GetInputSearchOutcome getInputSearch(const Model::GetInputSearchRequest &request)const;
|
|
|
|
|
+ void getInputSearchAsync(const Model::GetInputSearchRequest& request, const GetInputSearchAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context = nullptr) const;
|
|
|
|
|
+ GetInputSearchOutcomeCallable getInputSearchCallable(const Model::GetInputSearchRequest& request) const;
|
|
|
GetZipcodeOutcome getZipcode(const Model::GetZipcodeRequest &request)const;
|
|
GetZipcodeOutcome getZipcode(const Model::GetZipcodeRequest &request)const;
|
|
|
void getZipcodeAsync(const Model::GetZipcodeRequest& request, const GetZipcodeAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context = nullptr) const;
|
|
void getZipcodeAsync(const Model::GetZipcodeRequest& request, const GetZipcodeAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context = nullptr) const;
|
|
|
GetZipcodeOutcomeCallable getZipcodeCallable(const Model::GetZipcodeRequest& request) const;
|
|
GetZipcodeOutcomeCallable getZipcodeCallable(const Model::GetZipcodeRequest& request) const;
|
|
|
|
|
+ PredictPOIOutcome predictPOI(const Model::PredictPOIRequest &request)const;
|
|
|
|
|
+ void predictPOIAsync(const Model::PredictPOIRequest& request, const PredictPOIAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context = nullptr) const;
|
|
|
|
|
+ PredictPOIOutcomeCallable predictPOICallable(const Model::PredictPOIRequest& request) const;
|
|
|
StructureAddressOutcome structureAddress(const Model::StructureAddressRequest &request)const;
|
|
StructureAddressOutcome structureAddress(const Model::StructureAddressRequest &request)const;
|
|
|
void structureAddressAsync(const Model::StructureAddressRequest& request, const StructureAddressAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context = nullptr) const;
|
|
void structureAddressAsync(const Model::StructureAddressRequest& request, const StructureAddressAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context = nullptr) const;
|
|
|
StructureAddressOutcomeCallable structureAddressCallable(const Model::StructureAddressRequest& request) const;
|
|
StructureAddressOutcomeCallable structureAddressCallable(const Model::StructureAddressRequest& request) const;
|
|
|
|
|
+ TransferCoordOutcome transferCoord(const Model::TransferCoordRequest &request)const;
|
|
|
|
|
+ void transferCoordAsync(const Model::TransferCoordRequest& request, const TransferCoordAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context = nullptr) const;
|
|
|
|
|
+ TransferCoordOutcomeCallable transferCoordCallable(const Model::TransferCoordRequest& request) const;
|
|
|
UpdateProjectOutcome updateProject(const Model::UpdateProjectRequest &request)const;
|
|
UpdateProjectOutcome updateProject(const Model::UpdateProjectRequest &request)const;
|
|
|
void updateProjectAsync(const Model::UpdateProjectRequest& request, const UpdateProjectAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context = nullptr) const;
|
|
void updateProjectAsync(const Model::UpdateProjectRequest& request, const UpdateProjectAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context = nullptr) const;
|
|
|
UpdateProjectOutcomeCallable updateProjectCallable(const Model::UpdateProjectRequest& request) const;
|
|
UpdateProjectOutcomeCallable updateProjectCallable(const Model::UpdateProjectRequest& request) const;
|