|
@@ -33,6 +33,10 @@ public:
|
|
|
int storage;
|
|
int storage;
|
|
|
std::string _class;
|
|
std::string _class;
|
|
|
};
|
|
};
|
|
|
|
|
+ struct Tag {
|
|
|
|
|
+ std::string value;
|
|
|
|
|
+ std::string key;
|
|
|
|
|
+ };
|
|
|
struct ConfigServer {
|
|
struct ConfigServer {
|
|
|
int storage;
|
|
int storage;
|
|
|
std::string _class;
|
|
std::string _class;
|
|
@@ -60,6 +64,8 @@ public:
|
|
|
void setSecurityToken(const std::string &securityToken);
|
|
void setSecurityToken(const std::string &securityToken);
|
|
|
std::string getDBInstanceDescription() const;
|
|
std::string getDBInstanceDescription() const;
|
|
|
void setDBInstanceDescription(const std::string &dBInstanceDescription);
|
|
void setDBInstanceDescription(const std::string &dBInstanceDescription);
|
|
|
|
|
+ std::vector<Tag> getTag() const;
|
|
|
|
|
+ void setTag(const std::vector<Tag> &tag);
|
|
|
std::string getGlobalSecurityGroupIds() const;
|
|
std::string getGlobalSecurityGroupIds() const;
|
|
|
void setGlobalSecurityGroupIds(const std::string &globalSecurityGroupIds);
|
|
void setGlobalSecurityGroupIds(const std::string &globalSecurityGroupIds);
|
|
|
int getPeriod() const;
|
|
int getPeriod() const;
|
|
@@ -121,6 +127,7 @@ private:
|
|
|
std::string resourceGroupId_;
|
|
std::string resourceGroupId_;
|
|
|
std::string securityToken_;
|
|
std::string securityToken_;
|
|
|
std::string dBInstanceDescription_;
|
|
std::string dBInstanceDescription_;
|
|
|
|
|
+ std::vector<Tag> tag_;
|
|
|
std::string globalSecurityGroupIds_;
|
|
std::string globalSecurityGroupIds_;
|
|
|
int period_;
|
|
int period_;
|
|
|
std::string encryptionKey_;
|
|
std::string encryptionKey_;
|