Browse Source

Modify DBS API DescribeFullBackupList.

sdk-team 6 years ago
parent
commit
c2cc4b226f

+ 3 - 0
ChangeLog.txt

@@ -1,3 +1,6 @@
+2019-08-05 Version: 1.60.82
+- Modify DBS API DescribeFullBackupList.
+
 2019-08-02 Version: 1.60.81
 2019-08-02 Version: 1.60.81
 - Add a lot of new API.
 - Add a lot of new API.
 
 

+ 2 - 0
services/dbs/struct_backup_plan_detail.go

@@ -40,4 +40,6 @@ type BackupPlanDetail struct {
 	BackupMethod                      string `json:"BackupMethod" xml:"BackupMethod"`
 	BackupMethod                      string `json:"BackupMethod" xml:"BackupMethod"`
 	BackupPlanCreateTime              int64  `json:"BackupPlanCreateTime" xml:"BackupPlanCreateTime"`
 	BackupPlanCreateTime              int64  `json:"BackupPlanCreateTime" xml:"BackupPlanCreateTime"`
 	BackupPlanStatus                  string `json:"BackupPlanStatus" xml:"BackupPlanStatus"`
 	BackupPlanStatus                  string `json:"BackupPlanStatus" xml:"BackupPlanStatus"`
+	BeginTimestampForRestore          int64  `json:"BeginTimestampForRestore" xml:"BeginTimestampForRestore"`
+	EndTimestampForRestore            int64  `json:"EndTimestampForRestore" xml:"EndTimestampForRestore"`
 }
 }

+ 2 - 0
services/dbs/struct_full_backup_file.go

@@ -27,4 +27,6 @@ type FullBackupFile struct {
 	StorageMethod        string `json:"StorageMethod" xml:"StorageMethod"`
 	StorageMethod        string `json:"StorageMethod" xml:"StorageMethod"`
 	ErrMessage           string `json:"ErrMessage" xml:"ErrMessage"`
 	ErrMessage           string `json:"ErrMessage" xml:"ErrMessage"`
 	BackupObjects        string `json:"BackupObjects" xml:"BackupObjects"`
 	BackupObjects        string `json:"BackupObjects" xml:"BackupObjects"`
+	CreateTime           int64  `json:"CreateTime" xml:"CreateTime"`
+	FinishTime           int64  `json:"FinishTime" xml:"FinishTime"`
 }
 }