Skip to content

Commit 8276c3d

Browse files
authored
Changes to changelog to reflect api modifications (#136)
1 parent 893b72e commit 8276c3d

File tree

1 file changed

+34
-1
lines changed

1 file changed

+34
-1
lines changed

CHANGELOG.md

+34-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/)
1010
- Support for generating and downloading wallets in the Database service
1111
- Support for creating a standalone backup from an on-premises database in the Database service
1212
- Support for db version and additional connection strings in the Autonomous Transaction Processing and Autonomous Data Warehouse resources of the Database service
13-
- Support for copying volume backups across regions in the Block Storage service
13+
- Support for copying volume backups across regions in the Block Storage service (please see Known issue)
1414
- Support for deleting compartments in the Identity service
1515
- Support for reboot migration for virtual machines in the Compute service
1616
- Support for Instance Pools and Instance Configurations in the Compute service
@@ -26,6 +26,39 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/)
2626
- Support for copying objects across regions in the Object Storage service
2727
- Support for network address translation (NAT) gateways in the Networking service
2828

29+
### Known issue
30+
- Block Storage service for copying volume backups across regions is not enabled
31+
32+
### Breaking change
33+
- DbDataSizeInMBs field in Backup struct is renamed to DatabaseSizeInGBs and type changed from *int to *float64 (SDK owners pls update this based on the language)
34+
- Before
35+
36+
```golang
37+
// Size of the database in megabytes (MB) at the time the backup was taken.
38+
DbDataSizeInMBs *int `mandatory:"false" json:"dbDataSizeInMBs"`
39+
```
40+
41+
- After
42+
43+
```golang
44+
// The size of the database in gigabytes at the time the backup was taken.
45+
DatabaseSizeInGBs *float64 `mandatory:"false" json:"databaseSizeInGBs"`
46+
```
47+
- Data type for DatabaseEdition in Backup struct is changed from *string to BackupDatabaseEditionEnum
48+
- Before
49+
50+
```golang
51+
// The Oracle Database edition of the DB system from which the database backup was taken.
52+
DatabaseEdition *string `mandatory:"false" json:"databaseEdition"`
53+
```
54+
55+
- After
56+
57+
```golang
58+
// The Oracle Database edition of the DB system from which the database backup was taken.
59+
DatabaseEdition BackupDatabaseEditionEnum `mandatory:"false" json:"databaseEdition,omitempty"`
60+
```
61+
2962
## 2.5.0 - 2018-09-27
3063
### Added
3164
- Support for paravirtualized launch mode when importing images in the Compute service

0 commit comments

Comments
 (0)