Update by SDK platform.
This commit is contained in:
@@ -3075,6 +3075,42 @@ DdsClient::TagResourcesOutcomeCallable DdsClient::tagResourcesCallable(const Tag
|
||||
return task->get_future();
|
||||
}
|
||||
|
||||
DdsClient::TransformInstanceChargeTypeOutcome DdsClient::transformInstanceChargeType(const TransformInstanceChargeTypeRequest &request) const
|
||||
{
|
||||
auto endpointOutcome = endpointProvider_->getEndpoint();
|
||||
if (!endpointOutcome.isSuccess())
|
||||
return TransformInstanceChargeTypeOutcome(endpointOutcome.error());
|
||||
|
||||
auto outcome = makeRequest(endpointOutcome.result(), request);
|
||||
|
||||
if (outcome.isSuccess())
|
||||
return TransformInstanceChargeTypeOutcome(TransformInstanceChargeTypeResult(outcome.result()));
|
||||
else
|
||||
return TransformInstanceChargeTypeOutcome(outcome.error());
|
||||
}
|
||||
|
||||
void DdsClient::transformInstanceChargeTypeAsync(const TransformInstanceChargeTypeRequest& request, const TransformInstanceChargeTypeAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context) const
|
||||
{
|
||||
auto fn = [this, request, handler, context]()
|
||||
{
|
||||
handler(this, request, transformInstanceChargeType(request), context);
|
||||
};
|
||||
|
||||
asyncExecute(new Runnable(fn));
|
||||
}
|
||||
|
||||
DdsClient::TransformInstanceChargeTypeOutcomeCallable DdsClient::transformInstanceChargeTypeCallable(const TransformInstanceChargeTypeRequest &request) const
|
||||
{
|
||||
auto task = std::make_shared<std::packaged_task<TransformInstanceChargeTypeOutcome()>>(
|
||||
[this, request]()
|
||||
{
|
||||
return this->transformInstanceChargeType(request);
|
||||
});
|
||||
|
||||
asyncExecute(new Runnable([task]() { (*task)(); }));
|
||||
return task->get_future();
|
||||
}
|
||||
|
||||
DdsClient::TransformToPrePaidOutcome DdsClient::transformToPrePaid(const TransformToPrePaidRequest &request) const
|
||||
{
|
||||
auto endpointOutcome = endpointProvider_->getEndpoint();
|
||||
|
||||
@@ -106,6 +106,15 @@ void DescribeAvailableResourceRequest::setOwnerAccount(const std::string &ownerA
|
||||
setParameter(std::string("OwnerAccount"), ownerAccount);
|
||||
}
|
||||
|
||||
std::string DescribeAvailableResourceRequest::getMongoType() const {
|
||||
return mongoType_;
|
||||
}
|
||||
|
||||
void DescribeAvailableResourceRequest::setMongoType(const std::string &mongoType) {
|
||||
mongoType_ = mongoType;
|
||||
setParameter(std::string("MongoType"), mongoType);
|
||||
}
|
||||
|
||||
long DescribeAvailableResourceRequest::getOwnerId() const {
|
||||
return ownerId_;
|
||||
}
|
||||
@@ -115,6 +124,15 @@ void DescribeAvailableResourceRequest::setOwnerId(long ownerId) {
|
||||
setParameter(std::string("OwnerId"), std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string DescribeAvailableResourceRequest::getStorageSupport() const {
|
||||
return storageSupport_;
|
||||
}
|
||||
|
||||
void DescribeAvailableResourceRequest::setStorageSupport(const std::string &storageSupport) {
|
||||
storageSupport_ = storageSupport;
|
||||
setParameter(std::string("StorageSupport"), storageSupport);
|
||||
}
|
||||
|
||||
std::string DescribeAvailableResourceRequest::getDbType() const {
|
||||
return dbType_;
|
||||
}
|
||||
|
||||
@@ -43,6 +43,15 @@ void DescribeDBInstanceAttributeRequest::setAccessKeyId(const std::string &acces
|
||||
setParameter(std::string("AccessKeyId"), accessKeyId);
|
||||
}
|
||||
|
||||
bool DescribeDBInstanceAttributeRequest::getIsOnlyGetCluster() const {
|
||||
return isOnlyGetCluster_;
|
||||
}
|
||||
|
||||
void DescribeDBInstanceAttributeRequest::setIsOnlyGetCluster(bool isOnlyGetCluster) {
|
||||
isOnlyGetCluster_ = isOnlyGetCluster;
|
||||
setParameter(std::string("IsOnlyGetCluster"), isOnlyGetCluster ? "true" : "false");
|
||||
}
|
||||
|
||||
std::string DescribeDBInstanceAttributeRequest::getResourceGroupId() const {
|
||||
return resourceGroupId_;
|
||||
}
|
||||
|
||||
@@ -133,6 +133,15 @@ void DescribeDBInstancesRequest::setPageSize(int pageSize) {
|
||||
setParameter(std::string("PageSize"), std::to_string(pageSize));
|
||||
}
|
||||
|
||||
std::string DescribeDBInstancesRequest::getDBNodeType() const {
|
||||
return dBNodeType_;
|
||||
}
|
||||
|
||||
void DescribeDBInstancesRequest::setDBNodeType(const std::string &dBNodeType) {
|
||||
dBNodeType_ = dBNodeType;
|
||||
setParameter(std::string("DBNodeType"), dBNodeType);
|
||||
}
|
||||
|
||||
std::string DescribeDBInstancesRequest::getDBInstanceId() const {
|
||||
return dBInstanceId_;
|
||||
}
|
||||
|
||||
@@ -89,6 +89,26 @@ void DescribePriceResult::parse(const std::string &payload)
|
||||
couponObject.couponNo = orderNodeCouponsCoupon["CouponNo"].asString();
|
||||
if(!orderNodeCouponsCoupon["Name"].isNull())
|
||||
couponObject.name = orderNodeCouponsCoupon["Name"].asString();
|
||||
if(!orderNodeCouponsCoupon["CanPromFee"].isNull())
|
||||
couponObject.canPromFee = orderNodeCouponsCoupon["CanPromFee"].asString();
|
||||
if(!orderNodeCouponsCoupon["PromotionOptionCode"].isNull())
|
||||
couponObject.promotionOptionCode = orderNodeCouponsCoupon["PromotionOptionCode"].asString();
|
||||
if(!orderNodeCouponsCoupon["LackForPriceBreak"].isNull())
|
||||
couponObject.lackForPriceBreak = orderNodeCouponsCoupon["LackForPriceBreak"].asString();
|
||||
if(!orderNodeCouponsCoupon["PriceBreakThreshold"].isNull())
|
||||
couponObject.priceBreakThreshold = orderNodeCouponsCoupon["PriceBreakThreshold"].asString();
|
||||
if(!orderNodeCouponsCoupon["PriceBreakReduceValue"].isNull())
|
||||
couponObject.priceBreakReduceValue = orderNodeCouponsCoupon["PriceBreakReduceValue"].asString();
|
||||
if(!orderNodeCouponsCoupon["OptionCode"].isNull())
|
||||
couponObject.optionCode = orderNodeCouponsCoupon["OptionCode"].asString();
|
||||
if(!orderNodeCouponsCoupon["ActivityCategory"].isNull())
|
||||
couponObject.activityCategory = orderNodeCouponsCoupon["ActivityCategory"].asString();
|
||||
auto allPromotionRuleIdList = value["PromotionRuleIdList"]["PromotionRuleId"];
|
||||
for (auto value : allPromotionRuleIdList)
|
||||
couponObject.promotionRuleIdList.push_back(value.asString());
|
||||
auto allTargetArticleItemCodes = value["TargetArticleItemCodes"]["TargetArticleItemCode"];
|
||||
for (auto value : allTargetArticleItemCodes)
|
||||
couponObject.targetArticleItemCodes.push_back(value.asString());
|
||||
order_.coupons.push_back(couponObject);
|
||||
}
|
||||
auto allRuleIds1 = orderNode["RuleIds"]["RuleId"];
|
||||
|
||||
153
dds/src/model/TransformInstanceChargeTypeRequest.cc
Normal file
153
dds/src/model/TransformInstanceChargeTypeRequest.cc
Normal file
@@ -0,0 +1,153 @@
|
||||
/*
|
||||
* 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/dds/model/TransformInstanceChargeTypeRequest.h>
|
||||
|
||||
using AlibabaCloud::Dds::Model::TransformInstanceChargeTypeRequest;
|
||||
|
||||
TransformInstanceChargeTypeRequest::TransformInstanceChargeTypeRequest()
|
||||
: RpcServiceRequest("dds", "2015-12-01", "TransformInstanceChargeType") {
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
TransformInstanceChargeTypeRequest::~TransformInstanceChargeTypeRequest() {}
|
||||
|
||||
long TransformInstanceChargeTypeRequest::getResourceOwnerId() const {
|
||||
return resourceOwnerId_;
|
||||
}
|
||||
|
||||
void TransformInstanceChargeTypeRequest::setResourceOwnerId(long resourceOwnerId) {
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setParameter(std::string("ResourceOwnerId"), std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string TransformInstanceChargeTypeRequest::getCouponNo() const {
|
||||
return couponNo_;
|
||||
}
|
||||
|
||||
void TransformInstanceChargeTypeRequest::setCouponNo(const std::string &couponNo) {
|
||||
couponNo_ = couponNo;
|
||||
setParameter(std::string("CouponNo"), couponNo);
|
||||
}
|
||||
|
||||
std::string TransformInstanceChargeTypeRequest::getAccessKeyId() const {
|
||||
return accessKeyId_;
|
||||
}
|
||||
|
||||
void TransformInstanceChargeTypeRequest::setAccessKeyId(const std::string &accessKeyId) {
|
||||
accessKeyId_ = accessKeyId;
|
||||
setParameter(std::string("AccessKeyId"), accessKeyId);
|
||||
}
|
||||
|
||||
std::string TransformInstanceChargeTypeRequest::getSecurityToken() const {
|
||||
return securityToken_;
|
||||
}
|
||||
|
||||
void TransformInstanceChargeTypeRequest::setSecurityToken(const std::string &securityToken) {
|
||||
securityToken_ = securityToken;
|
||||
setParameter(std::string("SecurityToken"), securityToken);
|
||||
}
|
||||
|
||||
std::string TransformInstanceChargeTypeRequest::getBusinessInfo() const {
|
||||
return businessInfo_;
|
||||
}
|
||||
|
||||
void TransformInstanceChargeTypeRequest::setBusinessInfo(const std::string &businessInfo) {
|
||||
businessInfo_ = businessInfo;
|
||||
setParameter(std::string("BusinessInfo"), businessInfo);
|
||||
}
|
||||
|
||||
long TransformInstanceChargeTypeRequest::getPeriod() const {
|
||||
return period_;
|
||||
}
|
||||
|
||||
void TransformInstanceChargeTypeRequest::setPeriod(long period) {
|
||||
period_ = period;
|
||||
setParameter(std::string("Period"), std::to_string(period));
|
||||
}
|
||||
|
||||
bool TransformInstanceChargeTypeRequest::getAutoPay() const {
|
||||
return autoPay_;
|
||||
}
|
||||
|
||||
void TransformInstanceChargeTypeRequest::setAutoPay(bool autoPay) {
|
||||
autoPay_ = autoPay;
|
||||
setParameter(std::string("AutoPay"), autoPay ? "true" : "false");
|
||||
}
|
||||
|
||||
std::string TransformInstanceChargeTypeRequest::getFromApp() const {
|
||||
return fromApp_;
|
||||
}
|
||||
|
||||
void TransformInstanceChargeTypeRequest::setFromApp(const std::string &fromApp) {
|
||||
fromApp_ = fromApp;
|
||||
setParameter(std::string("FromApp"), fromApp);
|
||||
}
|
||||
|
||||
std::string TransformInstanceChargeTypeRequest::getResourceOwnerAccount() const {
|
||||
return resourceOwnerAccount_;
|
||||
}
|
||||
|
||||
void TransformInstanceChargeTypeRequest::setResourceOwnerAccount(const std::string &resourceOwnerAccount) {
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setParameter(std::string("ResourceOwnerAccount"), resourceOwnerAccount);
|
||||
}
|
||||
|
||||
std::string TransformInstanceChargeTypeRequest::getOwnerAccount() const {
|
||||
return ownerAccount_;
|
||||
}
|
||||
|
||||
void TransformInstanceChargeTypeRequest::setOwnerAccount(const std::string &ownerAccount) {
|
||||
ownerAccount_ = ownerAccount;
|
||||
setParameter(std::string("OwnerAccount"), ownerAccount);
|
||||
}
|
||||
|
||||
long TransformInstanceChargeTypeRequest::getOwnerId() const {
|
||||
return ownerId_;
|
||||
}
|
||||
|
||||
void TransformInstanceChargeTypeRequest::setOwnerId(long ownerId) {
|
||||
ownerId_ = ownerId;
|
||||
setParameter(std::string("OwnerId"), std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string TransformInstanceChargeTypeRequest::getInstanceId() const {
|
||||
return instanceId_;
|
||||
}
|
||||
|
||||
void TransformInstanceChargeTypeRequest::setInstanceId(const std::string &instanceId) {
|
||||
instanceId_ = instanceId;
|
||||
setParameter(std::string("InstanceId"), instanceId);
|
||||
}
|
||||
|
||||
std::string TransformInstanceChargeTypeRequest::getAutoRenew() const {
|
||||
return autoRenew_;
|
||||
}
|
||||
|
||||
void TransformInstanceChargeTypeRequest::setAutoRenew(const std::string &autoRenew) {
|
||||
autoRenew_ = autoRenew;
|
||||
setParameter(std::string("AutoRenew"), autoRenew);
|
||||
}
|
||||
|
||||
std::string TransformInstanceChargeTypeRequest::getChargeType() const {
|
||||
return chargeType_;
|
||||
}
|
||||
|
||||
void TransformInstanceChargeTypeRequest::setChargeType(const std::string &chargeType) {
|
||||
chargeType_ = chargeType;
|
||||
setParameter(std::string("ChargeType"), chargeType);
|
||||
}
|
||||
|
||||
58
dds/src/model/TransformInstanceChargeTypeResult.cc
Normal file
58
dds/src/model/TransformInstanceChargeTypeResult.cc
Normal file
@@ -0,0 +1,58 @@
|
||||
/*
|
||||
* 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/dds/model/TransformInstanceChargeTypeResult.h>
|
||||
#include <json/json.h>
|
||||
|
||||
using namespace AlibabaCloud::Dds;
|
||||
using namespace AlibabaCloud::Dds::Model;
|
||||
|
||||
TransformInstanceChargeTypeResult::TransformInstanceChargeTypeResult() :
|
||||
ServiceResult()
|
||||
{}
|
||||
|
||||
TransformInstanceChargeTypeResult::TransformInstanceChargeTypeResult(const std::string &payload) :
|
||||
ServiceResult()
|
||||
{
|
||||
parse(payload);
|
||||
}
|
||||
|
||||
TransformInstanceChargeTypeResult::~TransformInstanceChargeTypeResult()
|
||||
{}
|
||||
|
||||
void TransformInstanceChargeTypeResult::parse(const std::string &payload)
|
||||
{
|
||||
Json::Reader reader;
|
||||
Json::Value value;
|
||||
reader.parse(payload, value);
|
||||
setRequestId(value["RequestId"].asString());
|
||||
if(!value["EndTime"].isNull())
|
||||
endTime_ = value["EndTime"].asString();
|
||||
if(!value["OrderId"].isNull())
|
||||
orderId_ = value["OrderId"].asString();
|
||||
|
||||
}
|
||||
|
||||
std::string TransformInstanceChargeTypeResult::getEndTime()const
|
||||
{
|
||||
return endTime_;
|
||||
}
|
||||
|
||||
std::string TransformInstanceChargeTypeResult::getOrderId()const
|
||||
{
|
||||
return orderId_;
|
||||
}
|
||||
|
||||
@@ -142,3 +142,12 @@ void TransformToPrePaidRequest::setAutoRenew(const std::string &autoRenew) {
|
||||
setParameter(std::string("AutoRenew"), autoRenew);
|
||||
}
|
||||
|
||||
std::string TransformToPrePaidRequest::getChargeType() const {
|
||||
return chargeType_;
|
||||
}
|
||||
|
||||
void TransformToPrePaidRequest::setChargeType(const std::string &chargeType) {
|
||||
chargeType_ = chargeType;
|
||||
setParameter(std::string("ChargeType"), chargeType);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user