Update by SDK platform.
This commit is contained in:
@@ -32,6 +32,8 @@ public:
|
||||
~DescribeParametersRequest();
|
||||
long getResourceOwnerId() const;
|
||||
void setResourceOwnerId(long resourceOwnerId);
|
||||
std::string getExtraParam() const;
|
||||
void setExtraParam(const std::string &extraParam);
|
||||
std::string getAccessKeyId() const;
|
||||
void setAccessKeyId(const std::string &accessKeyId);
|
||||
std::string getSecurityToken() const;
|
||||
@@ -51,6 +53,7 @@ public:
|
||||
|
||||
private:
|
||||
long resourceOwnerId_;
|
||||
std::string extraParam_;
|
||||
std::string accessKeyId_;
|
||||
std::string securityToken_;
|
||||
std::string dBInstanceId_;
|
||||
|
||||
@@ -34,6 +34,15 @@ void DescribeParametersRequest::setResourceOwnerId(long resourceOwnerId) {
|
||||
setParameter(std::string("ResourceOwnerId"), std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string DescribeParametersRequest::getExtraParam() const {
|
||||
return extraParam_;
|
||||
}
|
||||
|
||||
void DescribeParametersRequest::setExtraParam(const std::string &extraParam) {
|
||||
extraParam_ = extraParam;
|
||||
setParameter(std::string("ExtraParam"), extraParam);
|
||||
}
|
||||
|
||||
std::string DescribeParametersRequest::getAccessKeyId() const {
|
||||
return accessKeyId_;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user