regenerate code

This commit is contained in:
wb-hx510875
2020-03-26 17:27:13 +08:00
committed by Axios
parent cba94f2119
commit f0c2600a26
6249 changed files with 188711 additions and 43443 deletions

View File

@@ -37,21 +37,27 @@ namespace AlibabaCloud
std::string backupPlanName;
long backupPlanCreateTime;
std::string backupObjects;
std::string backupSetDownloadDir;
std::string sourceEndpointInstanceID;
std::string sourceEndpointDatabaseName;
std::string oSSBucketRegion;
long beginTimestampForRestore;
std::string sourceEndpointRegion;
bool openBackupSetAutoDownload;
std::string sourceEndpointIpPort;
long backupSetDownloadGatewayId;
std::string backupPlanId;
std::string sourceEndpointInstanceType;
long backupGatewayId;
std::string sourceEndpointUserName;
int duplicationInfrequentAccessPeriod;
std::string backupMethod;
std::string backupSetDownloadFullDataFormat;
std::string backupPeriod;
std::string instanceClass;
std::string backupSetDownloadIncrementDataFormat;
long endTimestampForRestore;
std::string backupSetDownloadTargetType;
int duplicationArchivePeriod;
std::string oSSBucketName;
std::string backupPlanStatus;

View File

@@ -93,6 +93,18 @@ void DescribeBackupPlanListResult::parse(const std::string &payload)
itemsObject.beginTimestampForRestore = std::stol(valueItemsBackupPlanDetail["BeginTimestampForRestore"].asString());
if(!valueItemsBackupPlanDetail["EndTimestampForRestore"].isNull())
itemsObject.endTimestampForRestore = std::stol(valueItemsBackupPlanDetail["EndTimestampForRestore"].asString());
if(!valueItemsBackupPlanDetail["OpenBackupSetAutoDownload"].isNull())
itemsObject.openBackupSetAutoDownload = valueItemsBackupPlanDetail["OpenBackupSetAutoDownload"].asString() == "true";
if(!valueItemsBackupPlanDetail["BackupSetDownloadTargetType"].isNull())
itemsObject.backupSetDownloadTargetType = valueItemsBackupPlanDetail["BackupSetDownloadTargetType"].asString();
if(!valueItemsBackupPlanDetail["BackupSetDownloadDir"].isNull())
itemsObject.backupSetDownloadDir = valueItemsBackupPlanDetail["BackupSetDownloadDir"].asString();
if(!valueItemsBackupPlanDetail["BackupSetDownloadGatewayId"].isNull())
itemsObject.backupSetDownloadGatewayId = std::stol(valueItemsBackupPlanDetail["BackupSetDownloadGatewayId"].asString());
if(!valueItemsBackupPlanDetail["BackupSetDownloadFullDataFormat"].isNull())
itemsObject.backupSetDownloadFullDataFormat = valueItemsBackupPlanDetail["BackupSetDownloadFullDataFormat"].asString();
if(!valueItemsBackupPlanDetail["BackupSetDownloadIncrementDataFormat"].isNull())
itemsObject.backupSetDownloadIncrementDataFormat = valueItemsBackupPlanDetail["BackupSetDownloadIncrementDataFormat"].asString();
items_.push_back(itemsObject);
}
if(!value["Success"].isNull())