Generated 2014-08-15 for Rds.

This commit is contained in:
sdk-team
2019-09-03 18:28:46 +08:00
parent ea79682ddf
commit 6c7e427683
512 changed files with 16724 additions and 11016 deletions

View File

@@ -35,13 +35,9 @@ DescribeSQLLogFilesResult::~DescribeSQLLogFilesResult()
void DescribeSQLLogFilesResult::parse(const std::string &payload)
{
Json::CharReaderBuilder builder;
Json::CharReader *reader = builder.newCharReader();
Json::Value *val;
Json::Reader reader;
Json::Value value;
JSONCPP_STRING *errs;
reader->parse(payload.data(), payload.data() + payload.size(), val, errs);
value = *val;
reader.parse(payload, value);
setRequestId(value["RequestId"].asString());
auto allItems = value["Items"]["LogFile"];
for (auto value : allItems)