Supported GetStructSyncOrderDetail OrderId param required.

This commit is contained in:
sdk-team
2022-12-02 01:18:54 +00:00
parent a3322bd82b
commit 48cf4804fb
12 changed files with 317 additions and 1 deletions

View File

@@ -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())

View 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));
}

View 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_;
}

View File

@@ -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())