Support region id.
This commit is contained in:
@@ -34,6 +34,8 @@ public:
|
|||||||
void setResourceOwnerId(long resourceOwnerId);
|
void setResourceOwnerId(long resourceOwnerId);
|
||||||
std::string getAccessKeyId() const;
|
std::string getAccessKeyId() const;
|
||||||
void setAccessKeyId(const std::string &accessKeyId);
|
void setAccessKeyId(const std::string &accessKeyId);
|
||||||
|
std::string getRegionId() const;
|
||||||
|
void setRegionId(const std::string ®ionId);
|
||||||
int getTaskId() const;
|
int getTaskId() const;
|
||||||
void setTaskId(int taskId);
|
void setTaskId(int taskId);
|
||||||
std::string getResourceOwnerAccount() const;
|
std::string getResourceOwnerAccount() const;
|
||||||
@@ -48,6 +50,7 @@ public:
|
|||||||
private:
|
private:
|
||||||
long resourceOwnerId_;
|
long resourceOwnerId_;
|
||||||
std::string accessKeyId_;
|
std::string accessKeyId_;
|
||||||
|
std::string regionId_;
|
||||||
int taskId_;
|
int taskId_;
|
||||||
std::string resourceOwnerAccount_;
|
std::string resourceOwnerAccount_;
|
||||||
std::string dBClusterId_;
|
std::string dBClusterId_;
|
||||||
|
|||||||
@@ -43,6 +43,15 @@ void DescribeTaskInfoRequest::setAccessKeyId(const std::string &accessKeyId) {
|
|||||||
setParameter(std::string("AccessKeyId"), accessKeyId);
|
setParameter(std::string("AccessKeyId"), accessKeyId);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
std::string DescribeTaskInfoRequest::getRegionId() const {
|
||||||
|
return regionId_;
|
||||||
|
}
|
||||||
|
|
||||||
|
void DescribeTaskInfoRequest::setRegionId(const std::string ®ionId) {
|
||||||
|
regionId_ = regionId;
|
||||||
|
setParameter(std::string("RegionId"), regionId);
|
||||||
|
}
|
||||||
|
|
||||||
int DescribeTaskInfoRequest::getTaskId() const {
|
int DescribeTaskInfoRequest::getTaskId() const {
|
||||||
return taskId_;
|
return taskId_;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user