Skip to content

Commit 3b2c1f2

Browse files
karthikoracle1993jotruon
authored andcommitted
Added - Support for ADB-S: New ECPU-based SKUs for ADW and ATP
1 parent 1aac1ae commit 3b2c1f2

10 files changed

+195
-21
lines changed

examples/database/adb/autonomous_database.tf

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,18 @@ resource "oci_database_autonomous_database" "test_autonomous_database" {
5757
autonomous_maintenance_schedule_type = var.autonomous_database_autonomous_maintenance_schedule_type
5858
}
5959

60+
resource "oci_database_autonomous_database" "test_autonomous_database_ecpu" {
61+
admin_password = random_string.autonomous_database_admin_password.result
62+
compartment_id = var.compartment_ocid
63+
compute_count = "2.0"
64+
compute_model = "ECPU"
65+
data_storage_size_in_tbs = "1"
66+
db_name = "adbEcpu"
67+
db_version = "19c"
68+
license_model = "LICENSE_INCLUDED"
69+
is_free_tier = "false"
70+
}
71+
6072
resource "oci_database_autonomous_database" "test_autonomous_database_apex" {
6173
admin_password = random_string.autonomous_database_admin_password.result
6274
compartment_id = var.compartment_ocid

internal/integrationtest/database_autonomous_database_resource_test.go

Lines changed: 127 additions & 21 deletions
Large diffs are not rendered by default.

internal/service/database/database_autonomous_database_data_source.go

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,10 @@ func (s *DatabaseAutonomousDatabaseDataSourceCrud) SetData() error {
9898
s.D.Set("backup_config", nil)
9999
}
100100

101+
if s.Res.BackupRetentionPeriodInDays != nil {
102+
s.D.Set("backup_retention_period_in_days", *s.Res.BackupRetentionPeriodInDays)
103+
}
104+
101105
if s.Res.CharacterSet != nil {
102106
s.D.Set("character_set", *s.Res.CharacterSet)
103107
}
@@ -394,6 +398,10 @@ func (s *DatabaseAutonomousDatabaseDataSourceCrud) SetData() error {
394398
s.D.Set("time_until_reconnect_clone_enabled", s.Res.TimeUntilReconnectCloneEnabled.String())
395399
}
396400

401+
if s.Res.TotalBackupStorageSizeInGBs != nil {
402+
s.D.Set("total_backup_storage_size_in_gbs", *s.Res.TotalBackupStorageSizeInGBs)
403+
}
404+
397405
if s.Res.UsedDataStorageSizeInTBs != nil {
398406
s.D.Set("used_data_storage_size_in_tbs", *s.Res.UsedDataStorageSizeInTBs)
399407
}

internal/service/database/database_autonomous_database_resource.go

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -486,6 +486,10 @@ func DatabaseAutonomousDatabaseResource() *schema.Resource {
486486
},
487487
},
488488
},
489+
"backup_retention_period_in_days": {
490+
Type: schema.TypeInt,
491+
Computed: true,
492+
},
489493
"connection_strings": {
490494
Type: schema.TypeList,
491495
Computed: true,
@@ -855,6 +859,10 @@ func DatabaseAutonomousDatabaseResource() *schema.Resource {
855859
Type: schema.TypeString,
856860
Computed: true,
857861
},
862+
"total_backup_storage_size_in_gbs": {
863+
Type: schema.TypeFloat,
864+
Computed: true,
865+
},
858866
"used_data_storage_size_in_tbs": {
859867
Type: schema.TypeInt,
860868
Computed: true,
@@ -1535,6 +1543,10 @@ func (s *DatabaseAutonomousDatabaseResourceCrud) SetData() error {
15351543
s.D.Set("backup_config", nil)
15361544
}
15371545

1546+
if s.Res.BackupRetentionPeriodInDays != nil {
1547+
s.D.Set("backup_retention_period_in_days", *s.Res.BackupRetentionPeriodInDays)
1548+
}
1549+
15381550
if s.Res.CharacterSet != nil {
15391551
s.D.Set("character_set", *s.Res.CharacterSet)
15401552
}
@@ -1839,6 +1851,10 @@ func (s *DatabaseAutonomousDatabaseResourceCrud) SetData() error {
18391851
s.D.Set("time_until_reconnect_clone_enabled", s.Res.TimeUntilReconnectCloneEnabled.String())
18401852
}
18411853

1854+
if s.Res.TotalBackupStorageSizeInGBs != nil {
1855+
s.D.Set("total_backup_storage_size_in_gbs", *s.Res.TotalBackupStorageSizeInGBs)
1856+
}
1857+
18421858
if s.Res.UsedDataStorageSizeInTBs != nil {
18431859
s.D.Set("used_data_storage_size_in_tbs", *s.Res.UsedDataStorageSizeInTBs)
18441860
}

internal/service/database/database_autonomous_databases_clones_data_source.go

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,10 @@ func DatabaseAutonomousDatabasesClonesDataSource() *schema.Resource {
117117
},
118118
},
119119
},
120+
"backup_retention_period_in_days": {
121+
Type: schema.TypeInt,
122+
Computed: true,
123+
},
120124
"character_set": {
121125
Type: schema.TypeString,
122126
Computed: true,
@@ -677,6 +681,10 @@ func DatabaseAutonomousDatabasesClonesDataSource() *schema.Resource {
677681
Type: schema.TypeString,
678682
Computed: true,
679683
},
684+
"total_backup_storage_size_in_gbs": {
685+
Type: schema.TypeFloat,
686+
Computed: true,
687+
},
680688
"used_data_storage_size_in_tbs": {
681689
Type: schema.TypeInt,
682690
Computed: true,
@@ -811,6 +819,10 @@ func (s *DatabaseAutonomousDatabasesClonesDataSourceCrud) SetData() error {
811819
autonomousDatabasesClone["backup_config"] = nil
812820
}
813821

822+
if r.BackupRetentionPeriodInDays != nil {
823+
autonomousDatabasesClone["backup_retention_period_in_days"] = *r.BackupRetentionPeriodInDays
824+
}
825+
814826
if r.CharacterSet != nil {
815827
autonomousDatabasesClone["character_set"] = *r.CharacterSet
816828
}
@@ -1103,6 +1115,10 @@ func (s *DatabaseAutonomousDatabasesClonesDataSourceCrud) SetData() error {
11031115
autonomousDatabasesClone["time_until_reconnect_clone_enabled"] = r.TimeUntilReconnectCloneEnabled.String()
11041116
}
11051117

1118+
if r.TotalBackupStorageSizeInGBs != nil {
1119+
autonomousDatabasesClone["total_backup_storage_size_in_gbs"] = *r.TotalBackupStorageSizeInGBs
1120+
}
1121+
11061122
if r.UsedDataStorageSizeInTBs != nil {
11071123
autonomousDatabasesClone["used_data_storage_size_in_tbs"] = *r.UsedDataStorageSizeInTBs
11081124
}

internal/service/database/database_autonomous_databases_data_source.go

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -202,6 +202,10 @@ func (s *DatabaseAutonomousDatabasesDataSourceCrud) SetData() error {
202202
autonomousDatabase["backup_config"] = nil
203203
}
204204

205+
if r.BackupRetentionPeriodInDays != nil {
206+
autonomousDatabase["backup_retention_period_in_days"] = *r.BackupRetentionPeriodInDays
207+
}
208+
205209
if r.CharacterSet != nil {
206210
autonomousDatabase["character_set"] = *r.CharacterSet
207211
}
@@ -498,6 +502,10 @@ func (s *DatabaseAutonomousDatabasesDataSourceCrud) SetData() error {
498502
autonomousDatabase["time_until_reconnect_clone_enabled"] = r.TimeUntilReconnectCloneEnabled.String()
499503
}
500504

505+
if r.TotalBackupStorageSizeInGBs != nil {
506+
autonomousDatabase["total_backup_storage_size_in_gbs"] = *r.TotalBackupStorageSizeInGBs
507+
}
508+
501509
if r.UsedDataStorageSizeInTBs != nil {
502510
autonomousDatabase["used_data_storage_size_in_tbs"] = *r.UsedDataStorageSizeInTBs
503511
}

website/docs/d/database_autonomous_database.html.markdown

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ The following attributes are exported:
4747
* `backup_config` - Autonomous Database configuration details for storing [manual backups](https://docs.oracle.com/en/cloud/paas/autonomous-database/adbsa/backup-restore.html#GUID-9035DFB8-4702-4CEB-8281-C2A303820809) in the [Object Storage](https://docs.cloud.oracle.com/iaas/Content/Object/Concepts/objectstorageoverview.htm) service.
4848
* `manual_backup_bucket_name` - Name of [Object Storage](https://docs.cloud.oracle.com/iaas/Content/Object/Concepts/objectstorageoverview.htm) bucket to use for storing manual backups.
4949
* `manual_backup_type` - The manual backup destination type.
50+
* `backup_retention_period_in_days` - Retention period, in days, for backups.
5051
* `character_set` - The character set for the autonomous database. The default is AL32UTF8. Allowed values are:
5152

5253
AL32UTF8, AR8ADOS710, AR8ADOS720, AR8APTEC715, AR8ARABICMACS, AR8ASMO8X, AR8ISO8859P6, AR8MSWIN1256, AR8MUSSAD768, AR8NAFITHA711, AR8NAFITHA721, AR8SAKHR706, AR8SAKHR707, AZ8ISO8859P9E, BG8MSWIN, BG8PC437S, BLT8CP921, BLT8ISO8859P13, BLT8MSWIN1257, BLT8PC775, BN8BSCII, CDN8PC863, CEL8ISO8859P14, CL8ISO8859P5, CL8ISOIR111, CL8KOI8R, CL8KOI8U, CL8MACCYRILLICS, CL8MSWIN1251, EE8ISO8859P2, EE8MACCES, EE8MACCROATIANS, EE8MSWIN1250, EE8PC852, EL8DEC, EL8ISO8859P7, EL8MACGREEKS, EL8MSWIN1253, EL8PC437S, EL8PC851, EL8PC869, ET8MSWIN923, HU8ABMOD, HU8CWI2, IN8ISCII, IS8PC861, IW8ISO8859P8, IW8MACHEBREWS, IW8MSWIN1255, IW8PC1507, JA16EUC, JA16EUCTILDE, JA16SJIS, JA16SJISTILDE, JA16VMS, KO16KSC5601, KO16KSCCS, KO16MSWIN949, LA8ISO6937, LA8PASSPORT, LT8MSWIN921, LT8PC772, LT8PC774, LV8PC1117, LV8PC8LR, LV8RST104090, N8PC865, NE8ISO8859P10, NEE8ISO8859P4, RU8BESTA, RU8PC855, RU8PC866, SE8ISO8859P3, TH8MACTHAIS, TH8TISASCII, TR8DEC, TR8MACTURKISHS, TR8MSWIN1254, TR8PC857, US7ASCII, US8PC437, UTF8, VN8MSWIN1258, VN8VN3, WE8DEC, WE8DG, WE8ISO8859P1, WE8ISO8859P15, WE8ISO8859P9, WE8MACROMAN8S, WE8MSWIN1252, WE8NCR4970, WE8NEXTSTEP, WE8PC850, WE8PC858, WE8PC860, WE8ROMAN8, ZHS16CGB231280, ZHS16GBK, ZHT16BIG5, ZHT16CCDC, ZHT16DBT, ZHT16HKSCS, ZHT16MSWIN950, ZHT32EUC, ZHT32SOPS, ZHT32TRIS
@@ -194,6 +195,7 @@ The following attributes are exported:
194195
* `time_of_next_refresh` - The date and time of next refresh.
195196
* `time_reclamation_of_free_autonomous_database` - The date and time the Always Free database will be stopped because of inactivity. If this time is reached without any database activity, the database will automatically be put into the STOPPED state.
196197
* `time_until_reconnect_clone_enabled` - The time and date as an RFC3339 formatted string, e.g., 2022-01-01T12:00:00.000Z, to set the limit for a refreshable clone to be reconnected to its source database.
198+
* `total_backup_storage_size_in_gbs` - The backup storage to the database.
197199
* `used_data_storage_size_in_tbs` - The amount of storage that has been used, in terabytes.
198200
* `vault_id` - The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure [vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts).
199201
* `whitelisted_ips` - The client IP access control list (ACL). This feature is available for autonomous databases on [shared Exadata infrastructure](https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html) and on Exadata Cloud@Customer. Only clients connecting from an IP address included in the ACL may access the Autonomous Database instance.

website/docs/d/database_autonomous_databases.html.markdown

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,7 @@ The following attributes are exported:
7373
* `backup_config` - Autonomous Database configuration details for storing [manual backups](https://docs.oracle.com/en/cloud/paas/autonomous-database/adbsa/backup-restore.html#GUID-9035DFB8-4702-4CEB-8281-C2A303820809) in the [Object Storage](https://docs.cloud.oracle.com/iaas/Content/Object/Concepts/objectstorageoverview.htm) service.
7474
* `manual_backup_bucket_name` - Name of [Object Storage](https://docs.cloud.oracle.com/iaas/Content/Object/Concepts/objectstorageoverview.htm) bucket to use for storing manual backups.
7575
* `manual_backup_type` - The manual backup destination type.
76+
* `backup_retention_period_in_days` - Retention period, in days, for backups.
7677
* `character_set` - The character set for the autonomous database. The default is AL32UTF8. Allowed values are:
7778

7879
AL32UTF8, AR8ADOS710, AR8ADOS720, AR8APTEC715, AR8ARABICMACS, AR8ASMO8X, AR8ISO8859P6, AR8MSWIN1256, AR8MUSSAD768, AR8NAFITHA711, AR8NAFITHA721, AR8SAKHR706, AR8SAKHR707, AZ8ISO8859P9E, BG8MSWIN, BG8PC437S, BLT8CP921, BLT8ISO8859P13, BLT8MSWIN1257, BLT8PC775, BN8BSCII, CDN8PC863, CEL8ISO8859P14, CL8ISO8859P5, CL8ISOIR111, CL8KOI8R, CL8KOI8U, CL8MACCYRILLICS, CL8MSWIN1251, EE8ISO8859P2, EE8MACCES, EE8MACCROATIANS, EE8MSWIN1250, EE8PC852, EL8DEC, EL8ISO8859P7, EL8MACGREEKS, EL8MSWIN1253, EL8PC437S, EL8PC851, EL8PC869, ET8MSWIN923, HU8ABMOD, HU8CWI2, IN8ISCII, IS8PC861, IW8ISO8859P8, IW8MACHEBREWS, IW8MSWIN1255, IW8PC1507, JA16EUC, JA16EUCTILDE, JA16SJIS, JA16SJISTILDE, JA16VMS, KO16KSC5601, KO16KSCCS, KO16MSWIN949, LA8ISO6937, LA8PASSPORT, LT8MSWIN921, LT8PC772, LT8PC774, LV8PC1117, LV8PC8LR, LV8RST104090, N8PC865, NE8ISO8859P10, NEE8ISO8859P4, RU8BESTA, RU8PC855, RU8PC866, SE8ISO8859P3, TH8MACTHAIS, TH8TISASCII, TR8DEC, TR8MACTURKISHS, TR8MSWIN1254, TR8PC857, US7ASCII, US8PC437, UTF8, VN8MSWIN1258, VN8VN3, WE8DEC, WE8DG, WE8ISO8859P1, WE8ISO8859P15, WE8ISO8859P9, WE8MACROMAN8S, WE8MSWIN1252, WE8NCR4970, WE8NEXTSTEP, WE8PC850, WE8PC858, WE8PC860, WE8ROMAN8, ZHS16CGB231280, ZHS16GBK, ZHT16BIG5, ZHT16CCDC, ZHT16DBT, ZHT16HKSCS, ZHT16MSWIN950, ZHT32EUC, ZHT32SOPS, ZHT32TRIS
@@ -220,6 +221,7 @@ The following attributes are exported:
220221
* `time_of_next_refresh` - The date and time of next refresh.
221222
* `time_reclamation_of_free_autonomous_database` - The date and time the Always Free database will be stopped because of inactivity. If this time is reached without any database activity, the database will automatically be put into the STOPPED state.
222223
* `time_until_reconnect_clone_enabled` - The time and date as an RFC3339 formatted string, e.g., 2022-01-01T12:00:00.000Z, to set the limit for a refreshable clone to be reconnected to its source database.
224+
* `total_backup_storage_size_in_gbs` - The backup storage to the database.
223225
* `used_data_storage_size_in_tbs` - The amount of storage that has been used, in terabytes.
224226
* `vault_id` - The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure [vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts).
225227
* `whitelisted_ips` - The client IP access control list (ACL). This feature is available for autonomous databases on [shared Exadata infrastructure](https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html) and on Exadata Cloud@Customer. Only clients connecting from an IP address included in the ACL may access the Autonomous Database instance.

website/docs/d/database_autonomous_databases_clones.html.markdown

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ The following attributes are exported:
6363
* `backup_config` - Autonomous Database configuration details for storing [manual backups](https://docs.oracle.com/en/cloud/paas/autonomous-database/adbsa/backup-restore.html#GUID-9035DFB8-4702-4CEB-8281-C2A303820809) in the [Object Storage](https://docs.cloud.oracle.com/iaas/Content/Object/Concepts/objectstorageoverview.htm) service.
6464
* `manual_backup_bucket_name` - Name of [Object Storage](https://docs.cloud.oracle.com/iaas/Content/Object/Concepts/objectstorageoverview.htm) bucket to use for storing manual backups.
6565
* `manual_backup_type` - The manual backup destination type.
66+
* `backup_retention_period_in_days` - Retention period, in days, for backups.
6667
* `character_set` - The character set for the autonomous database. The default is AL32UTF8. Allowed values are:
6768

6869
AL32UTF8, AR8ADOS710, AR8ADOS720, AR8APTEC715, AR8ARABICMACS, AR8ASMO8X, AR8ISO8859P6, AR8MSWIN1256, AR8MUSSAD768, AR8NAFITHA711, AR8NAFITHA721, AR8SAKHR706, AR8SAKHR707, AZ8ISO8859P9E, BG8MSWIN, BG8PC437S, BLT8CP921, BLT8ISO8859P13, BLT8MSWIN1257, BLT8PC775, BN8BSCII, CDN8PC863, CEL8ISO8859P14, CL8ISO8859P5, CL8ISOIR111, CL8KOI8R, CL8KOI8U, CL8MACCYRILLICS, CL8MSWIN1251, EE8ISO8859P2, EE8MACCES, EE8MACCROATIANS, EE8MSWIN1250, EE8PC852, EL8DEC, EL8ISO8859P7, EL8MACGREEKS, EL8MSWIN1253, EL8PC437S, EL8PC851, EL8PC869, ET8MSWIN923, HU8ABMOD, HU8CWI2, IN8ISCII, IS8PC861, IW8ISO8859P8, IW8MACHEBREWS, IW8MSWIN1255, IW8PC1507, JA16EUC, JA16EUCTILDE, JA16SJIS, JA16SJISTILDE, JA16VMS, KO16KSC5601, KO16KSCCS, KO16MSWIN949, LA8ISO6937, LA8PASSPORT, LT8MSWIN921, LT8PC772, LT8PC774, LV8PC1117, LV8PC8LR, LV8RST104090, N8PC865, NE8ISO8859P10, NEE8ISO8859P4, RU8BESTA, RU8PC855, RU8PC866, SE8ISO8859P3, TH8MACTHAIS, TH8TISASCII, TR8DEC, TR8MACTURKISHS, TR8MSWIN1254, TR8PC857, US7ASCII, US8PC437, UTF8, VN8MSWIN1258, VN8VN3, WE8DEC, WE8DG, WE8ISO8859P1, WE8ISO8859P15, WE8ISO8859P9, WE8MACROMAN8S, WE8MSWIN1252, WE8NCR4970, WE8NEXTSTEP, WE8PC850, WE8PC858, WE8PC860, WE8ROMAN8, ZHS16CGB231280, ZHS16GBK, ZHT16BIG5, ZHT16CCDC, ZHT16DBT, ZHT16HKSCS, ZHT16MSWIN950, ZHT32EUC, ZHT32SOPS, ZHT32TRIS
@@ -210,6 +211,7 @@ The following attributes are exported:
210211
* `time_of_next_refresh` - The date and time of next refresh.
211212
* `time_reclamation_of_free_autonomous_database` - The date and time the Always Free database will be stopped because of inactivity. If this time is reached without any database activity, the database will automatically be put into the STOPPED state.
212213
* `time_until_reconnect_clone_enabled` - The time and date as an RFC3339 formatted string, e.g., 2022-01-01T12:00:00.000Z, to set the limit for a refreshable clone to be reconnected to its source database.
214+
* `total_backup_storage_size_in_gbs` - The backup storage to the database.
213215
* `used_data_storage_size_in_tbs` - The amount of storage that has been used, in terabytes.
214216
* `vault_id` - The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure [vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts).
215217
* `whitelisted_ips` - The client IP access control list (ACL). This feature is available for autonomous databases on [shared Exadata infrastructure](https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html) and on Exadata Cloud@Customer. Only clients connecting from an IP address included in the ACL may access the Autonomous Database instance.

website/docs/r/database_autonomous_database.html.markdown

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -226,6 +226,7 @@ The following attributes are exported:
226226
* `backup_config` - Autonomous Database configuration details for storing [manual backups](https://docs.oracle.com/en/cloud/paas/autonomous-database/adbsa/backup-restore.html#GUID-9035DFB8-4702-4CEB-8281-C2A303820809) in the [Object Storage](https://docs.cloud.oracle.com/iaas/Content/Object/Concepts/objectstorageoverview.htm) service.
227227
* `manual_backup_bucket_name` - Name of [Object Storage](https://docs.cloud.oracle.com/iaas/Content/Object/Concepts/objectstorageoverview.htm) bucket to use for storing manual backups.
228228
* `manual_backup_type` - The manual backup destination type.
229+
* `backup_retention_period_in_days` - Retention period, in days, for backups.
229230
* `character_set` - The character set for the autonomous database. The default is AL32UTF8. Allowed values are:
230231

231232
AL32UTF8, AR8ADOS710, AR8ADOS720, AR8APTEC715, AR8ARABICMACS, AR8ASMO8X, AR8ISO8859P6, AR8MSWIN1256, AR8MUSSAD768, AR8NAFITHA711, AR8NAFITHA721, AR8SAKHR706, AR8SAKHR707, AZ8ISO8859P9E, BG8MSWIN, BG8PC437S, BLT8CP921, BLT8ISO8859P13, BLT8MSWIN1257, BLT8PC775, BN8BSCII, CDN8PC863, CEL8ISO8859P14, CL8ISO8859P5, CL8ISOIR111, CL8KOI8R, CL8KOI8U, CL8MACCYRILLICS, CL8MSWIN1251, EE8ISO8859P2, EE8MACCES, EE8MACCROATIANS, EE8MSWIN1250, EE8PC852, EL8DEC, EL8ISO8859P7, EL8MACGREEKS, EL8MSWIN1253, EL8PC437S, EL8PC851, EL8PC869, ET8MSWIN923, HU8ABMOD, HU8CWI2, IN8ISCII, IS8PC861, IW8ISO8859P8, IW8MACHEBREWS, IW8MSWIN1255, IW8PC1507, JA16EUC, JA16EUCTILDE, JA16SJIS, JA16SJISTILDE, JA16VMS, KO16KSC5601, KO16KSCCS, KO16MSWIN949, LA8ISO6937, LA8PASSPORT, LT8MSWIN921, LT8PC772, LT8PC774, LV8PC1117, LV8PC8LR, LV8RST104090, N8PC865, NE8ISO8859P10, NEE8ISO8859P4, RU8BESTA, RU8PC855, RU8PC866, SE8ISO8859P3, TH8MACTHAIS, TH8TISASCII, TR8DEC, TR8MACTURKISHS, TR8MSWIN1254, TR8PC857, US7ASCII, US8PC437, UTF8, VN8MSWIN1258, VN8VN3, WE8DEC, WE8DG, WE8ISO8859P1, WE8ISO8859P15, WE8ISO8859P9, WE8MACROMAN8S, WE8MSWIN1252, WE8NCR4970, WE8NEXTSTEP, WE8PC850, WE8PC858, WE8PC860, WE8ROMAN8, ZHS16CGB231280, ZHS16GBK, ZHT16BIG5, ZHT16CCDC, ZHT16DBT, ZHT16HKSCS, ZHT16MSWIN950, ZHT32EUC, ZHT32SOPS, ZHT32TRIS
@@ -376,6 +377,7 @@ The following attributes are exported:
376377
* `time_of_next_refresh` - The date and time of next refresh.
377378
* `time_reclamation_of_free_autonomous_database` - The date and time the Always Free database will be stopped because of inactivity. If this time is reached without any database activity, the database will automatically be put into the STOPPED state.
378379
* `time_until_reconnect_clone_enabled` - The time and date as an RFC3339 formatted string, e.g., 2022-01-01T12:00:00.000Z, to set the limit for a refreshable clone to be reconnected to its source database.
380+
* `total_backup_storage_size_in_gbs` - The backup storage to the database.
379381
* `used_data_storage_size_in_tbs` - The amount of storage that has been used, in terabytes.
380382
* `vault_id` - The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure [vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts).
381383
* `whitelisted_ips` - The client IP access control list (ACL). This feature is available for autonomous databases on [shared Exadata infrastructure](https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html) and on Exadata Cloud@Customer. Only clients connecting from an IP address included in the ACL may access the Autonomous Database instance.

0 commit comments

Comments
 (0)