Skip to content

2.7.0

Compare
Choose a tag to compare
@jasonyin jasonyin released this 18 Oct 17:46
· 831 commits to master since this release
893b72e

2.7.0 - 2018-10-18

Added

  • Support for cost tracking tags in the Identity service
  • Support for generating and downloading wallets in the Database service
  • Support for creating a standalone backup from an on-premises database in the Database service
  • Support for db version and additional connection strings in the Autonomous Transaction Processing and Autonomous Data Warehouse resources of the Database service
  • Support for copying volume backups across regions in the Block Storage service (please see Known issue)
  • Support for deleting compartments in the Identity service
  • Support for reboot migration for virtual machines in the Compute service
  • Support for Instance Pools and Instance Configurations in the Compute service

Fixed

Breaking change

  • DbDataSizeInMBs field in Backup struct is renamed to DatabaseSizeInGBs and type changed from *int to *float64

    • Before
    // Size of the database in megabytes (MB) at the time the backup was taken.
    DbDataSizeInMBs *int `mandatory:"false" json:"dbDataSizeInMBs"`
    • After
    // The size of the database in gigabytes at the time the backup was taken.
    DatabaseSizeInGBs *float64 `mandatory:"false" json:"databaseSizeInGBs"`
  • Data type for DatabaseEdition in Backup struct is changed from *string to BackupDatabaseEditionEnum

    • Before
    // The Oracle Database edition of the DB system from which the database backup was taken.
    DatabaseEdition *string `mandatory:"false" json:"databaseEdition"`
    • After
     // The Oracle Database edition of the DB system from which the database backup was taken.
     DatabaseEdition BackupDatabaseEditionEnum `mandatory:"false" json:"databaseEdition,omitempty"`