|
|
@@ -75,52 +75,64 @@ void DescribeDBClusterVersionResult::parse(const std::string &payload)
|
|
|
proxyLatestVersion_ = value["ProxyLatestVersion"].asString();
|
|
|
if(!value["DBLatestVersion"].isNull())
|
|
|
dBLatestVersion_ = value["DBLatestVersion"].asString();
|
|
|
+ if(!value["ProxyLatestVersionAfterDBEngineUpgraded"].isNull())
|
|
|
+ proxyLatestVersionAfterDBEngineUpgraded_ = value["ProxyLatestVersionAfterDBEngineUpgraded"].asString();
|
|
|
|
|
|
}
|
|
|
|
|
|
-std::string DescribeDBClusterVersionResult::getProxyVersionStatus()const
|
|
|
+std::string DescribeDBClusterVersionResult::getDBRevisionVersion()const
|
|
|
{
|
|
|
- return proxyVersionStatus_;
|
|
|
+ return dBRevisionVersion_;
|
|
|
}
|
|
|
|
|
|
-std::string DescribeDBClusterVersionResult::getIsLatestVersion()const
|
|
|
+std::string DescribeDBClusterVersionResult::getProxyLatestVersionAfterDBEngineUpgraded()const
|
|
|
{
|
|
|
- return isLatestVersion_;
|
|
|
+ return proxyLatestVersionAfterDBEngineUpgraded_;
|
|
|
}
|
|
|
|
|
|
-std::string DescribeDBClusterVersionResult::getIsProxyLatestVersion()const
|
|
|
+std::string DescribeDBClusterVersionResult::getDBClusterId()const
|
|
|
{
|
|
|
- return isProxyLatestVersion_;
|
|
|
+ return dBClusterId_;
|
|
|
}
|
|
|
|
|
|
-std::string DescribeDBClusterVersionResult::getDBVersion()const
|
|
|
+std::string DescribeDBClusterVersionResult::getProxyRevisionVersion()const
|
|
|
{
|
|
|
- return dBVersion_;
|
|
|
+ return proxyRevisionVersion_;
|
|
|
}
|
|
|
|
|
|
-std::string DescribeDBClusterVersionResult::getDBRevisionVersion()const
|
|
|
+std::string DescribeDBClusterVersionResult::getDBLatestVersion()const
|
|
|
{
|
|
|
- return dBRevisionVersion_;
|
|
|
+ return dBLatestVersion_;
|
|
|
}
|
|
|
|
|
|
-std::string DescribeDBClusterVersionResult::getDBVersionStatus()const
|
|
|
+std::string DescribeDBClusterVersionResult::getProxyLatestVersion()const
|
|
|
{
|
|
|
- return dBVersionStatus_;
|
|
|
+ return proxyLatestVersion_;
|
|
|
}
|
|
|
|
|
|
-std::string DescribeDBClusterVersionResult::getDBClusterId()const
|
|
|
+std::string DescribeDBClusterVersionResult::getProxyVersionStatus()const
|
|
|
{
|
|
|
- return dBClusterId_;
|
|
|
+ return proxyVersionStatus_;
|
|
|
}
|
|
|
|
|
|
-std::string DescribeDBClusterVersionResult::getProxyRevisionVersion()const
|
|
|
+std::string DescribeDBClusterVersionResult::getIsLatestVersion()const
|
|
|
{
|
|
|
- return proxyRevisionVersion_;
|
|
|
+ return isLatestVersion_;
|
|
|
}
|
|
|
|
|
|
-std::string DescribeDBClusterVersionResult::getDBLatestVersion()const
|
|
|
+std::string DescribeDBClusterVersionResult::getIsProxyLatestVersion()const
|
|
|
{
|
|
|
- return dBLatestVersion_;
|
|
|
+ return isProxyLatestVersion_;
|
|
|
+}
|
|
|
+
|
|
|
+std::string DescribeDBClusterVersionResult::getDBVersion()const
|
|
|
+{
|
|
|
+ return dBVersion_;
|
|
|
+}
|
|
|
+
|
|
|
+std::string DescribeDBClusterVersionResult::getDBVersionStatus()const
|
|
|
+{
|
|
|
+ return dBVersionStatus_;
|
|
|
}
|
|
|
|
|
|
std::string DescribeDBClusterVersionResult::getDBMinorVersion()const
|
|
|
@@ -133,8 +145,3 @@ std::vector<DescribeDBClusterVersionResult::DBRevisionVersionListItem> DescribeD
|
|
|
return dBRevisionVersionList_;
|
|
|
}
|
|
|
|
|
|
-std::string DescribeDBClusterVersionResult::getProxyLatestVersion()const
|
|
|
-{
|
|
|
- return proxyLatestVersion_;
|
|
|
-}
|
|
|
-
|