From 7e15c8b5e08026791dd66c55decebb1fdaa71de2 Mon Sep 17 00:00:00 2001 From: Jonathan Hult Date: Fri, 18 Jun 2021 22:17:43 -0400 Subject: [PATCH] Add 'auto_backup_enabled' and 'ncharacter_set' to showoci databases Signed-off-by: Jonathan Hult --- examples/showoci/showoci_data.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/examples/showoci/showoci_data.py b/examples/showoci/showoci_data.py index b62c5b271e..abdf5eee2d 100755 --- a/examples/showoci/showoci_data.py +++ b/examples/showoci/showoci_data.py @@ -1902,6 +1902,7 @@ def __get_database_db_databases(self, dbs): str(db['db_workload']) + " - " + str(db['character_set']) + " - " + str(db['lifecycle_state']) + backupstr), 'backups': self.__get_database_db_backups(db['backups']) if 'backups' in db else [], + 'auto_backup_enabled': db['auto_backup_enabled'], 'time_created': db['time_created'], 'defined_tags': db['defined_tags'], 'dataguard': self.__get_database_db_dataguard(db['dataguard']), @@ -1910,6 +1911,7 @@ def __get_database_db_databases(self, dbs): 'pdb_name': pdb_name, 'db_workload': db['db_workload'], 'character_set': db['character_set'], + 'ncharacter_set': db['ncharacter_set'], 'db_unique_name': db['db_unique_name'], 'lifecycle_state': db['lifecycle_state'], 'id': db['id']