Update Open API.

This commit is contained in:
sdk-team
2021-02-05 06:57:25 +00:00
parent de338b6bec
commit 7b2178ef7c
8 changed files with 3 additions and 327 deletions

View File

@@ -6315,42 +6315,6 @@ RdsClient::ResetAccountOutcomeCallable RdsClient::resetAccountCallable(const Res
return task->get_future();
}
RdsClient::ResetAccountForPGOutcome RdsClient::resetAccountForPG(const ResetAccountForPGRequest &request) const
{
auto endpointOutcome = endpointProvider_->getEndpoint();
if (!endpointOutcome.isSuccess())
return ResetAccountForPGOutcome(endpointOutcome.error());
auto outcome = makeRequest(endpointOutcome.result(), request);
if (outcome.isSuccess())
return ResetAccountForPGOutcome(ResetAccountForPGResult(outcome.result()));
else
return ResetAccountForPGOutcome(outcome.error());
}
void RdsClient::resetAccountForPGAsync(const ResetAccountForPGRequest& request, const ResetAccountForPGAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context) const
{
auto fn = [this, request, handler, context]()
{
handler(this, request, resetAccountForPG(request), context);
};
asyncExecute(new Runnable(fn));
}
RdsClient::ResetAccountForPGOutcomeCallable RdsClient::resetAccountForPGCallable(const ResetAccountForPGRequest &request) const
{
auto task = std::make_shared<std::packaged_task<ResetAccountForPGOutcome()>>(
[this, request]()
{
return this->resetAccountForPG(request);
});
asyncExecute(new Runnable([task]() { (*task)(); }));
return task->get_future();
}
RdsClient::ResetAccountPasswordOutcome RdsClient::resetAccountPassword(const ResetAccountPasswordRequest &request) const
{
auto endpointOutcome = endpointProvider_->getEndpoint();

View File

@@ -1,117 +0,0 @@
/*
* 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/rds/model/ResetAccountForPGRequest.h>
using AlibabaCloud::Rds::Model::ResetAccountForPGRequest;
ResetAccountForPGRequest::ResetAccountForPGRequest() :
RpcServiceRequest("rds", "2014-08-15", "ResetAccountForPG")
{
setMethod(HttpRequest::Method::Post);
}
ResetAccountForPGRequest::~ResetAccountForPGRequest()
{}
long ResetAccountForPGRequest::getResourceOwnerId()const
{
return resourceOwnerId_;
}
void ResetAccountForPGRequest::setResourceOwnerId(long resourceOwnerId)
{
resourceOwnerId_ = resourceOwnerId;
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
}
std::string ResetAccountForPGRequest::getAccessKeyId()const
{
return accessKeyId_;
}
void ResetAccountForPGRequest::setAccessKeyId(const std::string& accessKeyId)
{
accessKeyId_ = accessKeyId;
setParameter("AccessKeyId", accessKeyId);
}
std::string ResetAccountForPGRequest::getAccountName()const
{
return accountName_;
}
void ResetAccountForPGRequest::setAccountName(const std::string& accountName)
{
accountName_ = accountName;
setParameter("AccountName", accountName);
}
std::string ResetAccountForPGRequest::getDBInstanceId()const
{
return dBInstanceId_;
}
void ResetAccountForPGRequest::setDBInstanceId(const std::string& dBInstanceId)
{
dBInstanceId_ = dBInstanceId;
setParameter("DBInstanceId", dBInstanceId);
}
std::string ResetAccountForPGRequest::getResourceOwnerAccount()const
{
return resourceOwnerAccount_;
}
void ResetAccountForPGRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
{
resourceOwnerAccount_ = resourceOwnerAccount;
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
}
std::string ResetAccountForPGRequest::getOwnerAccount()const
{
return ownerAccount_;
}
void ResetAccountForPGRequest::setOwnerAccount(const std::string& ownerAccount)
{
ownerAccount_ = ownerAccount;
setParameter("OwnerAccount", ownerAccount);
}
long ResetAccountForPGRequest::getOwnerId()const
{
return ownerId_;
}
void ResetAccountForPGRequest::setOwnerId(long ownerId)
{
ownerId_ = ownerId;
setParameter("OwnerId", std::to_string(ownerId));
}
std::string ResetAccountForPGRequest::getAccountPassword()const
{
return accountPassword_;
}
void ResetAccountForPGRequest::setAccountPassword(const std::string& accountPassword)
{
accountPassword_ = accountPassword;
setParameter("AccountPassword", accountPassword);
}

View File

@@ -1,44 +0,0 @@
/*
* 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/rds/model/ResetAccountForPGResult.h>
#include <json/json.h>
using namespace AlibabaCloud::Rds;
using namespace AlibabaCloud::Rds::Model;
ResetAccountForPGResult::ResetAccountForPGResult() :
ServiceResult()
{}
ResetAccountForPGResult::ResetAccountForPGResult(const std::string &payload) :
ServiceResult()
{
parse(payload);
}
ResetAccountForPGResult::~ResetAccountForPGResult()
{}
void ResetAccountForPGResult::parse(const std::string &payload)
{
Json::Reader reader;
Json::Value value;
reader.parse(payload, value);
setRequestId(value["RequestId"].asString());
}