Supported GetStructSyncOrderDetail OrderId param required.
This commit is contained in:
@@ -2427,6 +2427,42 @@ Dms_enterpriseClient::GetMetaTableDetailInfoOutcomeCallable Dms_enterpriseClient
|
||||
return task->get_future();
|
||||
}
|
||||
|
||||
Dms_enterpriseClient::GetOnlineDDLProgressOutcome Dms_enterpriseClient::getOnlineDDLProgress(const GetOnlineDDLProgressRequest &request) const
|
||||
{
|
||||
auto endpointOutcome = endpointProvider_->getEndpoint();
|
||||
if (!endpointOutcome.isSuccess())
|
||||
return GetOnlineDDLProgressOutcome(endpointOutcome.error());
|
||||
|
||||
auto outcome = makeRequest(endpointOutcome.result(), request);
|
||||
|
||||
if (outcome.isSuccess())
|
||||
return GetOnlineDDLProgressOutcome(GetOnlineDDLProgressResult(outcome.result()));
|
||||
else
|
||||
return GetOnlineDDLProgressOutcome(outcome.error());
|
||||
}
|
||||
|
||||
void Dms_enterpriseClient::getOnlineDDLProgressAsync(const GetOnlineDDLProgressRequest& request, const GetOnlineDDLProgressAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context) const
|
||||
{
|
||||
auto fn = [this, request, handler, context]()
|
||||
{
|
||||
handler(this, request, getOnlineDDLProgress(request), context);
|
||||
};
|
||||
|
||||
asyncExecute(new Runnable(fn));
|
||||
}
|
||||
|
||||
Dms_enterpriseClient::GetOnlineDDLProgressOutcomeCallable Dms_enterpriseClient::getOnlineDDLProgressCallable(const GetOnlineDDLProgressRequest &request) const
|
||||
{
|
||||
auto task = std::make_shared<std::packaged_task<GetOnlineDDLProgressOutcome()>>(
|
||||
[this, request]()
|
||||
{
|
||||
return this->getOnlineDDLProgress(request);
|
||||
});
|
||||
|
||||
asyncExecute(new Runnable([task]() { (*task)(); }));
|
||||
return task->get_future();
|
||||
}
|
||||
|
||||
Dms_enterpriseClient::GetOpLogOutcome Dms_enterpriseClient::getOpLog(const GetOpLogRequest &request) const
|
||||
{
|
||||
auto endpointOutcome = endpointProvider_->getEndpoint();
|
||||
|
||||
@@ -60,6 +60,9 @@ void GetLogicDatabaseResult::parse(const std::string &payload)
|
||||
auto allOwnerNameList = logicDatabaseNode["OwnerNameList"]["OwnerNames"];
|
||||
for (auto value : allOwnerNameList)
|
||||
logicDatabase_.ownerNameList.push_back(value.asString());
|
||||
auto allDatabaseIds = logicDatabaseNode["DatabaseIds"]["DatabaseIds"];
|
||||
for (auto value : allDatabaseIds)
|
||||
logicDatabase_.databaseIds.push_back(value.asString());
|
||||
if(!value["ErrorCode"].isNull())
|
||||
errorCode_ = value["ErrorCode"].asString();
|
||||
if(!value["ErrorMessage"].isNull())
|
||||
|
||||
45
dms-enterprise/src/model/GetOnlineDDLProgressRequest.cc
Normal file
45
dms-enterprise/src/model/GetOnlineDDLProgressRequest.cc
Normal file
@@ -0,0 +1,45 @@
|
||||
/*
|
||||
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
#include <alibabacloud/dms-enterprise/model/GetOnlineDDLProgressRequest.h>
|
||||
|
||||
using AlibabaCloud::Dms_enterprise::Model::GetOnlineDDLProgressRequest;
|
||||
|
||||
GetOnlineDDLProgressRequest::GetOnlineDDLProgressRequest()
|
||||
: RpcServiceRequest("dms-enterprise", "2018-11-01", "GetOnlineDDLProgress") {
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
GetOnlineDDLProgressRequest::~GetOnlineDDLProgressRequest() {}
|
||||
|
||||
long GetOnlineDDLProgressRequest::getTid() const {
|
||||
return tid_;
|
||||
}
|
||||
|
||||
void GetOnlineDDLProgressRequest::setTid(long tid) {
|
||||
tid_ = tid;
|
||||
setParameter(std::string("Tid"), std::to_string(tid));
|
||||
}
|
||||
|
||||
long GetOnlineDDLProgressRequest::getJobDetailId() const {
|
||||
return jobDetailId_;
|
||||
}
|
||||
|
||||
void GetOnlineDDLProgressRequest::setJobDetailId(long jobDetailId) {
|
||||
jobDetailId_ = jobDetailId;
|
||||
setParameter(std::string("JobDetailId"), std::to_string(jobDetailId));
|
||||
}
|
||||
|
||||
97
dms-enterprise/src/model/GetOnlineDDLProgressResult.cc
Normal file
97
dms-enterprise/src/model/GetOnlineDDLProgressResult.cc
Normal file
@@ -0,0 +1,97 @@
|
||||
/*
|
||||
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
#include <alibabacloud/dms-enterprise/model/GetOnlineDDLProgressResult.h>
|
||||
#include <json/json.h>
|
||||
|
||||
using namespace AlibabaCloud::Dms_enterprise;
|
||||
using namespace AlibabaCloud::Dms_enterprise::Model;
|
||||
|
||||
GetOnlineDDLProgressResult::GetOnlineDDLProgressResult() :
|
||||
ServiceResult()
|
||||
{}
|
||||
|
||||
GetOnlineDDLProgressResult::GetOnlineDDLProgressResult(const std::string &payload) :
|
||||
ServiceResult()
|
||||
{
|
||||
parse(payload);
|
||||
}
|
||||
|
||||
GetOnlineDDLProgressResult::~GetOnlineDDLProgressResult()
|
||||
{}
|
||||
|
||||
void GetOnlineDDLProgressResult::parse(const std::string &payload)
|
||||
{
|
||||
Json::Reader reader;
|
||||
Json::Value value;
|
||||
reader.parse(payload, value);
|
||||
setRequestId(value["RequestId"].asString());
|
||||
auto onlineDDLTaskDetailNode = value["OnlineDDLTaskDetail"];
|
||||
if(!onlineDDLTaskDetailNode["JobStatus"].isNull())
|
||||
onlineDDLTaskDetail_.jobStatus = onlineDDLTaskDetailNode["JobStatus"].asString();
|
||||
if(!onlineDDLTaskDetailNode["StatusDesc"].isNull())
|
||||
onlineDDLTaskDetail_.statusDesc = onlineDDLTaskDetailNode["StatusDesc"].asString();
|
||||
if(!onlineDDLTaskDetailNode["DelaySeconds"].isNull())
|
||||
onlineDDLTaskDetail_.delaySeconds = std::stol(onlineDDLTaskDetailNode["DelaySeconds"].asString());
|
||||
if(!onlineDDLTaskDetailNode["CopyTotal"].isNull())
|
||||
onlineDDLTaskDetail_.copyTotal = std::stol(onlineDDLTaskDetailNode["CopyTotal"].asString());
|
||||
if(!onlineDDLTaskDetailNode["CopyCount"].isNull())
|
||||
onlineDDLTaskDetail_.copyCount = std::stol(onlineDDLTaskDetailNode["CopyCount"].asString());
|
||||
if(!onlineDDLTaskDetailNode["ProgressRatio"].isNull())
|
||||
onlineDDLTaskDetail_.progressRatio = onlineDDLTaskDetailNode["ProgressRatio"].asString();
|
||||
if(!onlineDDLTaskDetailNode["CutoverLockTimeSeconds"].isNull())
|
||||
onlineDDLTaskDetail_.cutoverLockTimeSeconds = std::stol(onlineDDLTaskDetailNode["CutoverLockTimeSeconds"].asString());
|
||||
if(!onlineDDLTaskDetailNode["CutoverFailRetryTimes"].isNull())
|
||||
onlineDDLTaskDetail_.cutoverFailRetryTimes = std::stol(onlineDDLTaskDetailNode["CutoverFailRetryTimes"].asString());
|
||||
if(!onlineDDLTaskDetailNode["CleanStrategy"].isNull())
|
||||
onlineDDLTaskDetail_.cleanStrategy = onlineDDLTaskDetailNode["CleanStrategy"].asString();
|
||||
if(!onlineDDLTaskDetailNode["CopyChunkSize"].isNull())
|
||||
onlineDDLTaskDetail_.copyChunkSize = std::stol(onlineDDLTaskDetailNode["CopyChunkSize"].asString());
|
||||
if(!onlineDDLTaskDetailNode["CopyChunkMode"].isNull())
|
||||
onlineDDLTaskDetail_.copyChunkMode = onlineDDLTaskDetailNode["CopyChunkMode"].asString();
|
||||
if(!onlineDDLTaskDetailNode["CutoverWindowStartTime"].isNull())
|
||||
onlineDDLTaskDetail_.cutoverWindowStartTime = onlineDDLTaskDetailNode["CutoverWindowStartTime"].asString();
|
||||
if(!onlineDDLTaskDetailNode["CutoverWindowEndTime"].isNull())
|
||||
onlineDDLTaskDetail_.cutoverWindowEndTime = onlineDDLTaskDetailNode["CutoverWindowEndTime"].asString();
|
||||
if(!value["Success"].isNull())
|
||||
success_ = value["Success"].asString() == "true";
|
||||
if(!value["ErrorMessage"].isNull())
|
||||
errorMessage_ = value["ErrorMessage"].asString();
|
||||
if(!value["ErrorCode"].isNull())
|
||||
errorCode_ = value["ErrorCode"].asString();
|
||||
|
||||
}
|
||||
|
||||
GetOnlineDDLProgressResult::OnlineDDLTaskDetail GetOnlineDDLProgressResult::getOnlineDDLTaskDetail()const
|
||||
{
|
||||
return onlineDDLTaskDetail_;
|
||||
}
|
||||
|
||||
std::string GetOnlineDDLProgressResult::getErrorCode()const
|
||||
{
|
||||
return errorCode_;
|
||||
}
|
||||
|
||||
std::string GetOnlineDDLProgressResult::getErrorMessage()const
|
||||
{
|
||||
return errorMessage_;
|
||||
}
|
||||
|
||||
bool GetOnlineDDLProgressResult::getSuccess()const
|
||||
{
|
||||
return success_;
|
||||
}
|
||||
|
||||
@@ -63,6 +63,9 @@ void ListLogicDatabasesResult::parse(const std::string &payload)
|
||||
auto allOwnerNameList = value["OwnerNameList"]["OwnerNames"];
|
||||
for (auto value : allOwnerNameList)
|
||||
logicDatabaseListObject.ownerNameList.push_back(value.asString());
|
||||
auto allDatabaseIds = value["DatabaseIds"]["DatabaseIds"];
|
||||
for (auto value : allDatabaseIds)
|
||||
logicDatabaseListObject.databaseIds.push_back(value.asString());
|
||||
logicDatabaseList_.push_back(logicDatabaseListObject);
|
||||
}
|
||||
if(!value["TotalCount"].isNull())
|
||||
|
||||
Reference in New Issue
Block a user