pulumi-oci 2.25.0a1740032973__py3-none-any.whl → 2.26.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (218) hide show
  1. pulumi_oci/__init__.py +102 -0
  2. pulumi_oci/config/__init__.pyi +2 -0
  3. pulumi_oci/config/vars.py +4 -0
  4. pulumi_oci/containerengine/_inputs.py +74 -35
  5. pulumi_oci/containerengine/cluster.py +4 -0
  6. pulumi_oci/containerengine/container_instance.py +2 -4
  7. pulumi_oci/containerengine/outputs.py +180 -21
  8. pulumi_oci/containerinstances/outputs.py +0 -14
  9. pulumi_oci/core/_inputs.py +21 -33
  10. pulumi_oci/core/outputs.py +13 -21
  11. pulumi_oci/database/__init__.py +1 -0
  12. pulumi_oci/database/_inputs.py +1246 -57
  13. pulumi_oci/database/application_vip.py +59 -10
  14. pulumi_oci/database/autonomous_container_database.py +92 -0
  15. pulumi_oci/database/autonomous_database.py +90 -22
  16. pulumi_oci/database/backup.py +153 -5
  17. pulumi_oci/database/backup_destination.py +84 -0
  18. pulumi_oci/database/cloud_exadata_infrastructure.py +126 -0
  19. pulumi_oci/database/cloud_vm_cluster.py +163 -30
  20. pulumi_oci/database/data_guard_association.py +49 -0
  21. pulumi_oci/database/db_node.py +64 -8
  22. pulumi_oci/database/db_system.py +111 -8
  23. pulumi_oci/database/exadata_infrastructure.py +157 -3
  24. pulumi_oci/database/exadata_infrastructure_configure_exascale_management.py +1615 -0
  25. pulumi_oci/database/exadb_vm_cluster.py +84 -7
  26. pulumi_oci/database/exascale_db_storage_vault.py +147 -0
  27. pulumi_oci/database/external_container_database.py +4 -4
  28. pulumi_oci/database/external_non_container_database.py +4 -4
  29. pulumi_oci/database/external_pluggable_database.py +4 -4
  30. pulumi_oci/database/get_application_vip.py +16 -2
  31. pulumi_oci/database/get_autonomous_container_database.py +43 -1
  32. pulumi_oci/database/get_autonomous_database.py +29 -1
  33. pulumi_oci/database/get_autonomous_databases.py +0 -26
  34. pulumi_oci/database/get_backup_destination.py +43 -1
  35. pulumi_oci/database/get_backups.py +136 -10
  36. pulumi_oci/database/get_cloud_exadata_infrastructure.py +43 -1
  37. pulumi_oci/database/get_cloud_vm_cluster.py +59 -3
  38. pulumi_oci/database/get_cloud_vm_clusters.py +28 -6
  39. pulumi_oci/database/get_data_guard_association.py +12 -1
  40. pulumi_oci/database/get_database_software_images.py +20 -1
  41. pulumi_oci/database/get_db_node.py +31 -4
  42. pulumi_oci/database/get_db_server.py +15 -1
  43. pulumi_oci/database/get_exadata_infrastructure.py +57 -1
  44. pulumi_oci/database/get_exadb_vm_cluster.py +29 -1
  45. pulumi_oci/database/get_exadb_vm_clusters.py +25 -3
  46. pulumi_oci/database/get_exascale_db_storage_vault.py +43 -1
  47. pulumi_oci/database/get_exascale_db_storage_vaults.py +47 -3
  48. pulumi_oci/database/get_external_container_database.py +1 -1
  49. pulumi_oci/database/get_external_non_container_database.py +1 -1
  50. pulumi_oci/database/get_external_pluggable_database.py +1 -1
  51. pulumi_oci/database/get_flex_components.py +28 -6
  52. pulumi_oci/database/get_maintenance_runs.py +20 -1
  53. pulumi_oci/database/get_vm_cluster.py +60 -4
  54. pulumi_oci/database/get_vm_clusters.py +25 -3
  55. pulumi_oci/database/outputs.py +2260 -87
  56. pulumi_oci/database/pluggable_database.py +13 -13
  57. pulumi_oci/database/vm_cluster.py +172 -18
  58. pulumi_oci/database/vm_cluster_add_virtual_network.py +114 -2
  59. pulumi_oci/database/vm_cluster_remove_virtual_machine.py +114 -2
  60. pulumi_oci/datasafe/__init__.py +7 -0
  61. pulumi_oci/datasafe/_inputs.py +301 -0
  62. pulumi_oci/datasafe/discovery_mod.py +49 -0
  63. pulumi_oci/datasafe/get_discovery_job.py +15 -1
  64. pulumi_oci/datasafe/get_masking_report.py +46 -4
  65. pulumi_oci/datasafe/get_masking_report_masking_errors.py +166 -0
  66. pulumi_oci/datasafe/get_security_assessment_finding.py +31 -1
  67. pulumi_oci/datasafe/get_security_assessment_findings.py +43 -3
  68. pulumi_oci/datasafe/get_sensitive_column_analytics.py +370 -0
  69. pulumi_oci/datasafe/get_sensitive_data_model.py +15 -1
  70. pulumi_oci/datasafe/get_sensitive_type_group.py +253 -0
  71. pulumi_oci/datasafe/get_sensitive_type_group_grouped_sensitive_types.py +166 -0
  72. pulumi_oci/datasafe/get_sensitive_type_groups.py +294 -0
  73. pulumi_oci/datasafe/outputs.py +676 -3
  74. pulumi_oci/datasafe/sensitive_data_model.py +49 -0
  75. pulumi_oci/datasafe/sensitive_type_group.py +563 -0
  76. pulumi_oci/datasafe/sensitive_type_group_grouped_sensitive_type.py +287 -0
  77. pulumi_oci/datascience/__init__.py +4 -0
  78. pulumi_oci/datascience/_inputs.py +1160 -41
  79. pulumi_oci/datascience/get_model.py +29 -1
  80. pulumi_oci/datascience/get_model_custom_metadata_artifact_content.py +151 -0
  81. pulumi_oci/datascience/get_model_defined_metadata_artifact_content.py +151 -0
  82. pulumi_oci/datascience/get_model_version_set.py +15 -1
  83. pulumi_oci/datascience/get_model_version_sets.py +25 -3
  84. pulumi_oci/datascience/get_models.py +25 -3
  85. pulumi_oci/datascience/get_pipeline.py +15 -1
  86. pulumi_oci/datascience/model.py +64 -0
  87. pulumi_oci/datascience/model_custom_metadata_artifact.py +418 -0
  88. pulumi_oci/datascience/model_defined_metadata_artifact.py +418 -0
  89. pulumi_oci/datascience/model_version_set.py +28 -0
  90. pulumi_oci/datascience/outputs.py +4343 -2164
  91. pulumi_oci/datascience/pipeline.py +48 -141
  92. pulumi_oci/datascience/pipeline_run.py +32 -0
  93. pulumi_oci/dblm/__init__.py +17 -0
  94. pulumi_oci/dblm/_inputs.py +275 -0
  95. pulumi_oci/dblm/get_vulnerability.py +242 -0
  96. pulumi_oci/dblm/get_vulnerability_aggregated_vulnerability_data.py +220 -0
  97. pulumi_oci/dblm/get_vulnerability_notifications.py +144 -0
  98. pulumi_oci/dblm/get_vulnerability_resources.py +258 -0
  99. pulumi_oci/dblm/get_vulnerability_scan.py +267 -0
  100. pulumi_oci/dblm/get_vulnerability_scans.py +270 -0
  101. pulumi_oci/dblm/get_vulnerability_vulnerabilities.py +258 -0
  102. pulumi_oci/dblm/outputs.py +1294 -0
  103. pulumi_oci/dblm/vulnerability_scan.py +521 -0
  104. pulumi_oci/email/dkim.py +120 -20
  105. pulumi_oci/email/get_dkim.py +40 -1
  106. pulumi_oci/email/outputs.py +29 -0
  107. pulumi_oci/filestorage/__init__.py +3 -0
  108. pulumi_oci/filestorage/_inputs.py +49 -0
  109. pulumi_oci/filestorage/file_system.py +133 -0
  110. pulumi_oci/filestorage/file_system_quota_rule.py +593 -0
  111. pulumi_oci/filestorage/filesystem_snapshot_policy.py +28 -0
  112. pulumi_oci/filestorage/get_file_system_quota_rule.py +248 -0
  113. pulumi_oci/filestorage/get_file_system_quota_rules.py +210 -0
  114. pulumi_oci/filestorage/get_filesystem_snapshot_policy.py +15 -1
  115. pulumi_oci/filestorage/get_outbound_connector.py +15 -1
  116. pulumi_oci/filestorage/get_replication.py +15 -1
  117. pulumi_oci/filestorage/get_replication_target.py +15 -1
  118. pulumi_oci/filestorage/get_snapshot.py +15 -1
  119. pulumi_oci/filestorage/mount_target.py +28 -0
  120. pulumi_oci/filestorage/outbound_connector.py +28 -0
  121. pulumi_oci/filestorage/outputs.py +263 -0
  122. pulumi_oci/filestorage/replication.py +28 -0
  123. pulumi_oci/filestorage/snapshot.py +28 -0
  124. pulumi_oci/goldengate/connection.py +561 -162
  125. pulumi_oci/goldengate/database_registration.py +14 -14
  126. pulumi_oci/goldengate/get_connection.py +117 -6
  127. pulumi_oci/goldengate/outputs.py +96 -10
  128. pulumi_oci/jms/__init__.py +4 -0
  129. pulumi_oci/jms/_inputs.py +196 -0
  130. pulumi_oci/jms/get_fleet_error_analytics.py +163 -0
  131. pulumi_oci/jms/get_fleet_errors.py +264 -0
  132. pulumi_oci/jms/get_fleet_performance_tuning_analysis_results.py +23 -1
  133. pulumi_oci/jms/get_jms_plugins.py +23 -1
  134. pulumi_oci/jms/get_plugin_error_analytics.py +163 -0
  135. pulumi_oci/jms/get_plugin_errors.py +264 -0
  136. pulumi_oci/jms/outputs.py +566 -6
  137. pulumi_oci/mysql/_inputs.py +1239 -10
  138. pulumi_oci/mysql/channel.py +28 -0
  139. pulumi_oci/mysql/get_channel.py +15 -1
  140. pulumi_oci/mysql/get_mysql_backup.py +15 -1
  141. pulumi_oci/mysql/get_mysql_configuration.py +15 -1
  142. pulumi_oci/mysql/get_mysql_db_system.py +15 -1
  143. pulumi_oci/mysql/mysql_backup.py +28 -0
  144. pulumi_oci/mysql/mysql_configuration.py +106 -0
  145. pulumi_oci/mysql/mysql_db_system.py +36 -0
  146. pulumi_oci/mysql/outputs.py +2008 -35
  147. pulumi_oci/opensearch/__init__.py +3 -0
  148. pulumi_oci/opensearch/_inputs.py +101 -0
  149. pulumi_oci/opensearch/cluster.py +76 -29
  150. pulumi_oci/opensearch/get_opensearch_cluster.py +12 -1
  151. pulumi_oci/opensearch/get_opensearch_cluster_pipeline.py +433 -0
  152. pulumi_oci/opensearch/get_opensearch_cluster_pipelines.py +218 -0
  153. pulumi_oci/opensearch/opensearch_cluster_pipeline.py +1172 -0
  154. pulumi_oci/opensearch/outputs.py +425 -0
  155. pulumi_oci/provider.py +20 -0
  156. pulumi_oci/psql/_inputs.py +258 -0
  157. pulumi_oci/psql/backup.py +129 -28
  158. pulumi_oci/psql/db_system.py +10 -0
  159. pulumi_oci/psql/get_backup.py +47 -2
  160. pulumi_oci/psql/get_backups.py +3 -0
  161. pulumi_oci/psql/get_configurations.py +23 -1
  162. pulumi_oci/psql/get_db_system.py +1 -1
  163. pulumi_oci/psql/get_db_systems.py +1 -1
  164. pulumi_oci/psql/outputs.py +541 -5
  165. pulumi_oci/pulumi-plugin.json +1 -1
  166. pulumi_oci/redis/redis_cluster.py +7 -7
  167. pulumi_oci/stackmonitoring/__init__.py +8 -0
  168. pulumi_oci/stackmonitoring/_inputs.py +372 -1
  169. pulumi_oci/stackmonitoring/get_defined_monitoring_templates.py +185 -0
  170. pulumi_oci/stackmonitoring/get_metric_extension.py +1 -1
  171. pulumi_oci/stackmonitoring/get_monitored_resource_type.py +15 -1
  172. pulumi_oci/stackmonitoring/get_monitoring_template.py +380 -0
  173. pulumi_oci/stackmonitoring/get_monitoring_template_alarm_condition.py +318 -0
  174. pulumi_oci/stackmonitoring/get_monitoring_template_alarm_conditions.py +262 -0
  175. pulumi_oci/stackmonitoring/get_monitoring_templates.py +289 -0
  176. pulumi_oci/stackmonitoring/metric_extension.py +4 -4
  177. pulumi_oci/stackmonitoring/monitored_resource_type.py +30 -0
  178. pulumi_oci/stackmonitoring/monitoring_template.py +954 -0
  179. pulumi_oci/stackmonitoring/monitoring_template_alarm_condition.py +780 -0
  180. pulumi_oci/stackmonitoring/monitoring_template_monitoring_template_on_given_resources_management.py +253 -0
  181. pulumi_oci/stackmonitoring/outputs.py +1305 -118
  182. pulumi_oci/tenantmanagercontrolplane/__init__.py +33 -0
  183. pulumi_oci/tenantmanagercontrolplane/_inputs.py +685 -0
  184. pulumi_oci/tenantmanagercontrolplane/get_assigned_subscription.py +478 -0
  185. pulumi_oci/tenantmanagercontrolplane/get_assigned_subscription_line_items.py +144 -0
  186. pulumi_oci/tenantmanagercontrolplane/get_assigned_subscriptions.py +188 -0
  187. pulumi_oci/tenantmanagercontrolplane/get_domain.py +253 -0
  188. pulumi_oci/tenantmanagercontrolplane/get_domain_governance.py +281 -0
  189. pulumi_oci/tenantmanagercontrolplane/get_domain_governances.py +226 -0
  190. pulumi_oci/tenantmanagercontrolplane/get_domains.py +226 -0
  191. pulumi_oci/tenantmanagercontrolplane/get_link.py +197 -0
  192. pulumi_oci/tenantmanagercontrolplane/get_links.py +191 -0
  193. pulumi_oci/tenantmanagercontrolplane/get_organization.py +211 -0
  194. pulumi_oci/tenantmanagercontrolplane/get_organization_tenancies.py +144 -0
  195. pulumi_oci/tenantmanagercontrolplane/get_organization_tenancy.py +233 -0
  196. pulumi_oci/tenantmanagercontrolplane/get_organizations.py +147 -0
  197. pulumi_oci/tenantmanagercontrolplane/get_recipient_invitation.py +295 -0
  198. pulumi_oci/tenantmanagercontrolplane/get_recipient_invitations.py +213 -0
  199. pulumi_oci/tenantmanagercontrolplane/get_sender_invitation.py +295 -0
  200. pulumi_oci/tenantmanagercontrolplane/get_sender_invitations.py +235 -0
  201. pulumi_oci/tenantmanagercontrolplane/get_subscription.py +464 -0
  202. pulumi_oci/tenantmanagercontrolplane/get_subscription_available_regions.py +144 -0
  203. pulumi_oci/tenantmanagercontrolplane/get_subscription_line_items.py +144 -0
  204. pulumi_oci/tenantmanagercontrolplane/get_subscription_mapping.py +211 -0
  205. pulumi_oci/tenantmanagercontrolplane/get_subscription_mappings.py +210 -0
  206. pulumi_oci/tenantmanagercontrolplane/get_subscriptions.py +188 -0
  207. pulumi_oci/tenantmanagercontrolplane/outputs.py +3257 -0
  208. pulumi_oci/tenantmanagercontrolplane/subscription_mapping.py +409 -0
  209. pulumi_oci/vault/__init__.py +1 -1
  210. pulumi_oci/vault/_inputs.py +92 -0
  211. pulumi_oci/vault/get_secret.py +40 -1
  212. pulumi_oci/vault/{get_secret_version.py → get_secret_version_sdk_v2.py} +32 -77
  213. pulumi_oci/vault/outputs.py +210 -0
  214. pulumi_oci/vault/secret.py +122 -0
  215. {pulumi_oci-2.25.0a1740032973.dist-info → pulumi_oci-2.26.0.dist-info}/METADATA +1 -1
  216. {pulumi_oci-2.25.0a1740032973.dist-info → pulumi_oci-2.26.0.dist-info}/RECORD +218 -150
  217. {pulumi_oci-2.25.0a1740032973.dist-info → pulumi_oci-2.26.0.dist-info}/WHEEL +1 -1
  218. {pulumi_oci-2.25.0a1740032973.dist-info → pulumi_oci-2.26.0.dist-info}/top_level.txt +0 -0
@@ -16,8 +16,10 @@ from .. import _utilities
16
16
  from . import outputs
17
17
 
18
18
  __all__ = [
19
+ 'AutonomousContainerDatabaseAssociatedBackupConfigurationDetail',
19
20
  'AutonomousContainerDatabaseBackupConfig',
20
21
  'AutonomousContainerDatabaseBackupConfigBackupDestinationDetails',
22
+ 'AutonomousContainerDatabaseBackupDestinationPropertiesList',
21
23
  'AutonomousContainerDatabaseDataguardAssociationPeerAutonomousContainerDatabaseBackupConfig',
22
24
  'AutonomousContainerDatabaseDataguardAssociationPeerAutonomousContainerDatabaseBackupConfigBackupDestinationDetail',
23
25
  'AutonomousContainerDatabaseKeyHistoryEntry',
@@ -29,6 +31,7 @@ __all__ = [
29
31
  'AutonomousContainerDatabaseMaintenanceWindowMonth',
30
32
  'AutonomousContainerDatabasePeerAutonomousContainerDatabaseBackupConfig',
31
33
  'AutonomousContainerDatabasePeerAutonomousContainerDatabaseBackupConfigBackupDestinationDetail',
34
+ 'AutonomousContainerDatabaseRecoveryApplianceDetail',
32
35
  'AutonomousDatabaseApexDetail',
33
36
  'AutonomousDatabaseBackupBackupDestinationDetails',
34
37
  'AutonomousDatabaseBackupConfig',
@@ -132,8 +135,16 @@ __all__ = [
132
135
  'ExadataInfrastructureComputeMaintenanceWindow',
133
136
  'ExadataInfrastructureComputeMaintenanceWindowDaysOfWeek',
134
137
  'ExadataInfrastructureComputeMaintenanceWindowMonth',
138
+ 'ExadataInfrastructureConfigureExascaleManagementContact',
139
+ 'ExadataInfrastructureConfigureExascaleManagementDefinedFileSystemConfiguration',
140
+ 'ExadataInfrastructureConfigureExascaleManagementExascaleConfig',
141
+ 'ExadataInfrastructureConfigureExascaleManagementMaintenanceWindow',
142
+ 'ExadataInfrastructureConfigureExascaleManagementMaintenanceWindowDaysOfWeek',
143
+ 'ExadataInfrastructureConfigureExascaleManagementMaintenanceWindowMonth',
144
+ 'ExadataInfrastructureConfigureExascaleManagementNetworkBondingModeDetail',
135
145
  'ExadataInfrastructureContact',
136
146
  'ExadataInfrastructureDefinedFileSystemConfiguration',
147
+ 'ExadataInfrastructureExascaleConfig',
137
148
  'ExadataInfrastructureMaintenanceWindow',
138
149
  'ExadataInfrastructureMaintenanceWindowDaysOfWeek',
139
150
  'ExadataInfrastructureMaintenanceWindowMonth',
@@ -210,8 +221,10 @@ __all__ = [
210
221
  'GetApplicationVipsFilterResult',
211
222
  'GetAutonomousCharacterSetsAutonomousDatabaseCharacterSetResult',
212
223
  'GetAutonomousCharacterSetsFilterResult',
224
+ 'GetAutonomousContainerDatabaseAssociatedBackupConfigurationDetailResult',
213
225
  'GetAutonomousContainerDatabaseBackupConfigResult',
214
226
  'GetAutonomousContainerDatabaseBackupConfigBackupDestinationDetailResult',
227
+ 'GetAutonomousContainerDatabaseBackupDestinationPropertiesListResult',
215
228
  'GetAutonomousContainerDatabaseDataguardAssociationPeerAutonomousContainerDatabaseBackupConfigResult',
216
229
  'GetAutonomousContainerDatabaseDataguardAssociationPeerAutonomousContainerDatabaseBackupConfigBackupDestinationDetailResult',
217
230
  'GetAutonomousContainerDatabaseDataguardAssociationsAutonomousContainerDatabaseDataguardAssociationResult',
@@ -227,13 +240,16 @@ __all__ = [
227
240
  'GetAutonomousContainerDatabaseMaintenanceWindowMonthResult',
228
241
  'GetAutonomousContainerDatabasePeerAutonomousContainerDatabaseBackupConfigResult',
229
242
  'GetAutonomousContainerDatabasePeerAutonomousContainerDatabaseBackupConfigBackupDestinationDetailResult',
243
+ 'GetAutonomousContainerDatabaseRecoveryApplianceDetailResult',
230
244
  'GetAutonomousContainerDatabaseResourceUsageAutonomousContainerDatabaseVmUsageResult',
231
245
  'GetAutonomousContainerDatabaseVersionsAutonomousContainerDatabaseVersionResult',
232
246
  'GetAutonomousContainerDatabaseVersionsAutonomousContainerDatabaseVersionSupportedAppResult',
233
247
  'GetAutonomousContainerDatabaseVersionsFilterResult',
234
248
  'GetAutonomousContainerDatabasesAutonomousContainerDatabaseResult',
249
+ 'GetAutonomousContainerDatabasesAutonomousContainerDatabaseAssociatedBackupConfigurationDetailResult',
235
250
  'GetAutonomousContainerDatabasesAutonomousContainerDatabaseBackupConfigResult',
236
251
  'GetAutonomousContainerDatabasesAutonomousContainerDatabaseBackupConfigBackupDestinationDetailResult',
252
+ 'GetAutonomousContainerDatabasesAutonomousContainerDatabaseBackupDestinationPropertiesListResult',
237
253
  'GetAutonomousContainerDatabasesAutonomousContainerDatabaseKeyHistoryEntryResult',
238
254
  'GetAutonomousContainerDatabasesAutonomousContainerDatabaseMaintenanceWindowResult',
239
255
  'GetAutonomousContainerDatabasesAutonomousContainerDatabaseMaintenanceWindowDaysOfWeekResult',
@@ -243,6 +259,7 @@ __all__ = [
243
259
  'GetAutonomousContainerDatabasesAutonomousContainerDatabaseMaintenanceWindowMonthResult',
244
260
  'GetAutonomousContainerDatabasesAutonomousContainerDatabasePeerAutonomousContainerDatabaseBackupConfigResult',
245
261
  'GetAutonomousContainerDatabasesAutonomousContainerDatabasePeerAutonomousContainerDatabaseBackupConfigBackupDestinationDetailResult',
262
+ 'GetAutonomousContainerDatabasesAutonomousContainerDatabaseRecoveryApplianceDetailResult',
246
263
  'GetAutonomousContainerDatabasesFilterResult',
247
264
  'GetAutonomousContainerPatchesAutonomousPatchResult',
248
265
  'GetAutonomousContainerPatchesFilterResult',
@@ -541,6 +558,7 @@ __all__ = [
541
558
  'GetDbVersionsFilterResult',
542
559
  'GetExadataInfrastructureContactResult',
543
560
  'GetExadataInfrastructureDefinedFileSystemConfigurationResult',
561
+ 'GetExadataInfrastructureExascaleConfigResult',
544
562
  'GetExadataInfrastructureMaintenanceWindowResult',
545
563
  'GetExadataInfrastructureMaintenanceWindowDaysOfWeekResult',
546
564
  'GetExadataInfrastructureMaintenanceWindowMonthResult',
@@ -549,6 +567,7 @@ __all__ = [
549
567
  'GetExadataInfrastructuresExadataInfrastructureResult',
550
568
  'GetExadataInfrastructuresExadataInfrastructureContactResult',
551
569
  'GetExadataInfrastructuresExadataInfrastructureDefinedFileSystemConfigurationResult',
570
+ 'GetExadataInfrastructuresExadataInfrastructureExascaleConfigResult',
552
571
  'GetExadataInfrastructuresExadataInfrastructureMaintenanceWindowResult',
553
572
  'GetExadataInfrastructuresExadataInfrastructureMaintenanceWindowDaysOfWeekResult',
554
573
  'GetExadataInfrastructuresExadataInfrastructureMaintenanceWindowMonthResult',
@@ -712,6 +731,164 @@ __all__ = [
712
731
  'GetVmClustersVmClusterFileSystemConfigurationDetailResult',
713
732
  ]
714
733
 
734
+ @pulumi.output_type
735
+ class AutonomousContainerDatabaseAssociatedBackupConfigurationDetail(dict):
736
+ @staticmethod
737
+ def __key_warning(key: str):
738
+ suggest = None
739
+ if key == "backupDestinationAttachHistories":
740
+ suggest = "backup_destination_attach_histories"
741
+ elif key == "dbrsPolicyId":
742
+ suggest = "dbrs_policy_id"
743
+ elif key == "internetProxy":
744
+ suggest = "internet_proxy"
745
+ elif key == "recoveryWindowInDays":
746
+ suggest = "recovery_window_in_days"
747
+ elif key == "spaceUtilizedInGbs":
748
+ suggest = "space_utilized_in_gbs"
749
+ elif key == "timeAtWhichStorageDetailsAreUpdated":
750
+ suggest = "time_at_which_storage_details_are_updated"
751
+ elif key == "vpcPassword":
752
+ suggest = "vpc_password"
753
+ elif key == "vpcUser":
754
+ suggest = "vpc_user"
755
+
756
+ if suggest:
757
+ pulumi.log.warn(f"Key '{key}' not found in AutonomousContainerDatabaseAssociatedBackupConfigurationDetail. Access the value via the '{suggest}' property getter instead.")
758
+
759
+ def __getitem__(self, key: str) -> Any:
760
+ AutonomousContainerDatabaseAssociatedBackupConfigurationDetail.__key_warning(key)
761
+ return super().__getitem__(key)
762
+
763
+ def get(self, key: str, default = None) -> Any:
764
+ AutonomousContainerDatabaseAssociatedBackupConfigurationDetail.__key_warning(key)
765
+ return super().get(key, default)
766
+
767
+ def __init__(__self__, *,
768
+ backup_destination_attach_histories: Optional[Sequence[str]] = None,
769
+ dbrs_policy_id: Optional[str] = None,
770
+ id: Optional[str] = None,
771
+ internet_proxy: Optional[str] = None,
772
+ recovery_window_in_days: Optional[int] = None,
773
+ space_utilized_in_gbs: Optional[int] = None,
774
+ time_at_which_storage_details_are_updated: Optional[str] = None,
775
+ type: Optional[str] = None,
776
+ vpc_password: Optional[str] = None,
777
+ vpc_user: Optional[str] = None):
778
+ """
779
+ :param Sequence[str] backup_destination_attach_histories: The timestamps at which this backup destination is used as the preferred destination to host the Autonomous Container Database backups.
780
+ :param str dbrs_policy_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the DBRS policy used for backup.
781
+ :param str id: The id of the Autonomous Database [Vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts) service key management history entry.
782
+ :param str internet_proxy: Proxy URL to connect to object store.
783
+ :param int recovery_window_in_days: Number of days between the current and earliest point of recoverability covered by automatic backups.
784
+ :param int space_utilized_in_gbs: The total space utilized (in GBs) by this Autonomous Container Database on this backup destination, rounded to the nearest integer.
785
+ :param str time_at_which_storage_details_are_updated: The latest timestamp when the backup destination details, such as 'spaceUtilized,' are updated.
786
+ :param str type: Type of the database backup destination.
787
+ :param str vpc_password: For a RECOVERY_APPLIANCE backup destination, the password for the VPC user that is used to access the Recovery Appliance.
788
+ :param str vpc_user: For a RECOVERY_APPLIANCE backup destination, the Virtual Private Catalog (VPC) user that is used to access the Recovery Appliance.
789
+ """
790
+ if backup_destination_attach_histories is not None:
791
+ pulumi.set(__self__, "backup_destination_attach_histories", backup_destination_attach_histories)
792
+ if dbrs_policy_id is not None:
793
+ pulumi.set(__self__, "dbrs_policy_id", dbrs_policy_id)
794
+ if id is not None:
795
+ pulumi.set(__self__, "id", id)
796
+ if internet_proxy is not None:
797
+ pulumi.set(__self__, "internet_proxy", internet_proxy)
798
+ if recovery_window_in_days is not None:
799
+ pulumi.set(__self__, "recovery_window_in_days", recovery_window_in_days)
800
+ if space_utilized_in_gbs is not None:
801
+ pulumi.set(__self__, "space_utilized_in_gbs", space_utilized_in_gbs)
802
+ if time_at_which_storage_details_are_updated is not None:
803
+ pulumi.set(__self__, "time_at_which_storage_details_are_updated", time_at_which_storage_details_are_updated)
804
+ if type is not None:
805
+ pulumi.set(__self__, "type", type)
806
+ if vpc_password is not None:
807
+ pulumi.set(__self__, "vpc_password", vpc_password)
808
+ if vpc_user is not None:
809
+ pulumi.set(__self__, "vpc_user", vpc_user)
810
+
811
+ @property
812
+ @pulumi.getter(name="backupDestinationAttachHistories")
813
+ def backup_destination_attach_histories(self) -> Optional[Sequence[str]]:
814
+ """
815
+ The timestamps at which this backup destination is used as the preferred destination to host the Autonomous Container Database backups.
816
+ """
817
+ return pulumi.get(self, "backup_destination_attach_histories")
818
+
819
+ @property
820
+ @pulumi.getter(name="dbrsPolicyId")
821
+ def dbrs_policy_id(self) -> Optional[str]:
822
+ """
823
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the DBRS policy used for backup.
824
+ """
825
+ return pulumi.get(self, "dbrs_policy_id")
826
+
827
+ @property
828
+ @pulumi.getter
829
+ def id(self) -> Optional[str]:
830
+ """
831
+ The id of the Autonomous Database [Vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts) service key management history entry.
832
+ """
833
+ return pulumi.get(self, "id")
834
+
835
+ @property
836
+ @pulumi.getter(name="internetProxy")
837
+ def internet_proxy(self) -> Optional[str]:
838
+ """
839
+ Proxy URL to connect to object store.
840
+ """
841
+ return pulumi.get(self, "internet_proxy")
842
+
843
+ @property
844
+ @pulumi.getter(name="recoveryWindowInDays")
845
+ def recovery_window_in_days(self) -> Optional[int]:
846
+ """
847
+ Number of days between the current and earliest point of recoverability covered by automatic backups.
848
+ """
849
+ return pulumi.get(self, "recovery_window_in_days")
850
+
851
+ @property
852
+ @pulumi.getter(name="spaceUtilizedInGbs")
853
+ def space_utilized_in_gbs(self) -> Optional[int]:
854
+ """
855
+ The total space utilized (in GBs) by this Autonomous Container Database on this backup destination, rounded to the nearest integer.
856
+ """
857
+ return pulumi.get(self, "space_utilized_in_gbs")
858
+
859
+ @property
860
+ @pulumi.getter(name="timeAtWhichStorageDetailsAreUpdated")
861
+ def time_at_which_storage_details_are_updated(self) -> Optional[str]:
862
+ """
863
+ The latest timestamp when the backup destination details, such as 'spaceUtilized,' are updated.
864
+ """
865
+ return pulumi.get(self, "time_at_which_storage_details_are_updated")
866
+
867
+ @property
868
+ @pulumi.getter
869
+ def type(self) -> Optional[str]:
870
+ """
871
+ Type of the database backup destination.
872
+ """
873
+ return pulumi.get(self, "type")
874
+
875
+ @property
876
+ @pulumi.getter(name="vpcPassword")
877
+ def vpc_password(self) -> Optional[str]:
878
+ """
879
+ For a RECOVERY_APPLIANCE backup destination, the password for the VPC user that is used to access the Recovery Appliance.
880
+ """
881
+ return pulumi.get(self, "vpc_password")
882
+
883
+ @property
884
+ @pulumi.getter(name="vpcUser")
885
+ def vpc_user(self) -> Optional[str]:
886
+ """
887
+ For a RECOVERY_APPLIANCE backup destination, the Virtual Private Catalog (VPC) user that is used to access the Recovery Appliance.
888
+ """
889
+ return pulumi.get(self, "vpc_user")
890
+
891
+
715
892
  @pulumi.output_type
716
893
  class AutonomousContainerDatabaseBackupConfig(dict):
717
894
  @staticmethod
@@ -849,6 +1026,70 @@ class AutonomousContainerDatabaseBackupConfigBackupDestinationDetails(dict):
849
1026
  return pulumi.get(self, "vpc_user")
850
1027
 
851
1028
 
1029
+ @pulumi.output_type
1030
+ class AutonomousContainerDatabaseBackupDestinationPropertiesList(dict):
1031
+ @staticmethod
1032
+ def __key_warning(key: str):
1033
+ suggest = None
1034
+ if key == "backupDestinationAttachHistories":
1035
+ suggest = "backup_destination_attach_histories"
1036
+ elif key == "spaceUtilizedInGbs":
1037
+ suggest = "space_utilized_in_gbs"
1038
+ elif key == "timeAtWhichStorageDetailsAreUpdated":
1039
+ suggest = "time_at_which_storage_details_are_updated"
1040
+
1041
+ if suggest:
1042
+ pulumi.log.warn(f"Key '{key}' not found in AutonomousContainerDatabaseBackupDestinationPropertiesList. Access the value via the '{suggest}' property getter instead.")
1043
+
1044
+ def __getitem__(self, key: str) -> Any:
1045
+ AutonomousContainerDatabaseBackupDestinationPropertiesList.__key_warning(key)
1046
+ return super().__getitem__(key)
1047
+
1048
+ def get(self, key: str, default = None) -> Any:
1049
+ AutonomousContainerDatabaseBackupDestinationPropertiesList.__key_warning(key)
1050
+ return super().get(key, default)
1051
+
1052
+ def __init__(__self__, *,
1053
+ backup_destination_attach_histories: Optional[Sequence[str]] = None,
1054
+ space_utilized_in_gbs: Optional[int] = None,
1055
+ time_at_which_storage_details_are_updated: Optional[str] = None):
1056
+ """
1057
+ :param Sequence[str] backup_destination_attach_histories: The timestamps at which this backup destination is used as the preferred destination to host the Autonomous Container Database backups.
1058
+ :param int space_utilized_in_gbs: The total space utilized (in GBs) by this Autonomous Container Database on this backup destination, rounded to the nearest integer.
1059
+ :param str time_at_which_storage_details_are_updated: The latest timestamp when the backup destination details, such as 'spaceUtilized,' are updated.
1060
+ """
1061
+ if backup_destination_attach_histories is not None:
1062
+ pulumi.set(__self__, "backup_destination_attach_histories", backup_destination_attach_histories)
1063
+ if space_utilized_in_gbs is not None:
1064
+ pulumi.set(__self__, "space_utilized_in_gbs", space_utilized_in_gbs)
1065
+ if time_at_which_storage_details_are_updated is not None:
1066
+ pulumi.set(__self__, "time_at_which_storage_details_are_updated", time_at_which_storage_details_are_updated)
1067
+
1068
+ @property
1069
+ @pulumi.getter(name="backupDestinationAttachHistories")
1070
+ def backup_destination_attach_histories(self) -> Optional[Sequence[str]]:
1071
+ """
1072
+ The timestamps at which this backup destination is used as the preferred destination to host the Autonomous Container Database backups.
1073
+ """
1074
+ return pulumi.get(self, "backup_destination_attach_histories")
1075
+
1076
+ @property
1077
+ @pulumi.getter(name="spaceUtilizedInGbs")
1078
+ def space_utilized_in_gbs(self) -> Optional[int]:
1079
+ """
1080
+ The total space utilized (in GBs) by this Autonomous Container Database on this backup destination, rounded to the nearest integer.
1081
+ """
1082
+ return pulumi.get(self, "space_utilized_in_gbs")
1083
+
1084
+ @property
1085
+ @pulumi.getter(name="timeAtWhichStorageDetailsAreUpdated")
1086
+ def time_at_which_storage_details_are_updated(self) -> Optional[str]:
1087
+ """
1088
+ The latest timestamp when the backup destination details, such as 'spaceUtilized,' are updated.
1089
+ """
1090
+ return pulumi.get(self, "time_at_which_storage_details_are_updated")
1091
+
1092
+
852
1093
  @pulumi.output_type
853
1094
  class AutonomousContainerDatabaseDataguardAssociationPeerAutonomousContainerDatabaseBackupConfig(dict):
854
1095
  @staticmethod
@@ -1639,6 +1880,72 @@ class AutonomousContainerDatabasePeerAutonomousContainerDatabaseBackupConfigBack
1639
1880
  return pulumi.get(self, "vpc_user")
1640
1881
 
1641
1882
 
1883
+ @pulumi.output_type
1884
+ class AutonomousContainerDatabaseRecoveryApplianceDetail(dict):
1885
+ @staticmethod
1886
+ def __key_warning(key: str):
1887
+ suggest = None
1888
+ if key == "allocatedStorageSizeInGbs":
1889
+ suggest = "allocated_storage_size_in_gbs"
1890
+ elif key == "recoveryWindowInDays":
1891
+ suggest = "recovery_window_in_days"
1892
+ elif key == "timeRecoveryApplianceDetailsUpdated":
1893
+ suggest = "time_recovery_appliance_details_updated"
1894
+
1895
+ if suggest:
1896
+ pulumi.log.warn(f"Key '{key}' not found in AutonomousContainerDatabaseRecoveryApplianceDetail. Access the value via the '{suggest}' property getter instead.")
1897
+
1898
+ def __getitem__(self, key: str) -> Any:
1899
+ AutonomousContainerDatabaseRecoveryApplianceDetail.__key_warning(key)
1900
+ return super().__getitem__(key)
1901
+
1902
+ def get(self, key: str, default = None) -> Any:
1903
+ AutonomousContainerDatabaseRecoveryApplianceDetail.__key_warning(key)
1904
+ return super().get(key, default)
1905
+
1906
+ def __init__(__self__, *,
1907
+ allocated_storage_size_in_gbs: Optional[int] = None,
1908
+ recovery_window_in_days: Optional[int] = None,
1909
+ time_recovery_appliance_details_updated: Optional[str] = None):
1910
+ """
1911
+ :param int allocated_storage_size_in_gbs: The storage size of the backup destination allocated for an Autonomous Container Database to store backups on the recovery appliance, in GBs, rounded to the nearest integer.
1912
+ :param int recovery_window_in_days: Number of days between the current and earliest point of recoverability covered by automatic backups.
1913
+ :param str time_recovery_appliance_details_updated: The time when the recovery appliance details are updated.
1914
+ =======
1915
+ """
1916
+ if allocated_storage_size_in_gbs is not None:
1917
+ pulumi.set(__self__, "allocated_storage_size_in_gbs", allocated_storage_size_in_gbs)
1918
+ if recovery_window_in_days is not None:
1919
+ pulumi.set(__self__, "recovery_window_in_days", recovery_window_in_days)
1920
+ if time_recovery_appliance_details_updated is not None:
1921
+ pulumi.set(__self__, "time_recovery_appliance_details_updated", time_recovery_appliance_details_updated)
1922
+
1923
+ @property
1924
+ @pulumi.getter(name="allocatedStorageSizeInGbs")
1925
+ def allocated_storage_size_in_gbs(self) -> Optional[int]:
1926
+ """
1927
+ The storage size of the backup destination allocated for an Autonomous Container Database to store backups on the recovery appliance, in GBs, rounded to the nearest integer.
1928
+ """
1929
+ return pulumi.get(self, "allocated_storage_size_in_gbs")
1930
+
1931
+ @property
1932
+ @pulumi.getter(name="recoveryWindowInDays")
1933
+ def recovery_window_in_days(self) -> Optional[int]:
1934
+ """
1935
+ Number of days between the current and earliest point of recoverability covered by automatic backups.
1936
+ """
1937
+ return pulumi.get(self, "recovery_window_in_days")
1938
+
1939
+ @property
1940
+ @pulumi.getter(name="timeRecoveryApplianceDetailsUpdated")
1941
+ def time_recovery_appliance_details_updated(self) -> Optional[str]:
1942
+ """
1943
+ The time when the recovery appliance details are updated.
1944
+ =======
1945
+ """
1946
+ return pulumi.get(self, "time_recovery_appliance_details_updated")
1947
+
1948
+
1642
1949
  @pulumi.output_type
1643
1950
  class AutonomousDatabaseApexDetail(dict):
1644
1951
  @staticmethod
@@ -2867,10 +3174,16 @@ class AutonomousDatabaseLocalStandbyDb(dict):
2867
3174
  suggest = "lag_time_in_seconds"
2868
3175
  elif key == "lifecycleDetails":
2869
3176
  suggest = "lifecycle_details"
3177
+ elif key == "maintenanceTargetComponent":
3178
+ suggest = "maintenance_target_component"
2870
3179
  elif key == "timeDataGuardRoleChanged":
2871
3180
  suggest = "time_data_guard_role_changed"
2872
3181
  elif key == "timeDisasterRecoveryRoleChanged":
2873
3182
  suggest = "time_disaster_recovery_role_changed"
3183
+ elif key == "timeMaintenanceBegin":
3184
+ suggest = "time_maintenance_begin"
3185
+ elif key == "timeMaintenanceEnd":
3186
+ suggest = "time_maintenance_end"
2874
3187
 
2875
3188
  if suggest:
2876
3189
  pulumi.log.warn(f"Key '{key}' not found in AutonomousDatabaseLocalStandbyDb. Access the value via the '{suggest}' property getter instead.")
@@ -2887,16 +3200,22 @@ class AutonomousDatabaseLocalStandbyDb(dict):
2887
3200
  availability_domain: Optional[str] = None,
2888
3201
  lag_time_in_seconds: Optional[int] = None,
2889
3202
  lifecycle_details: Optional[str] = None,
3203
+ maintenance_target_component: Optional[str] = None,
2890
3204
  state: Optional[str] = None,
2891
3205
  time_data_guard_role_changed: Optional[str] = None,
2892
- time_disaster_recovery_role_changed: Optional[str] = None):
3206
+ time_disaster_recovery_role_changed: Optional[str] = None,
3207
+ time_maintenance_begin: Optional[str] = None,
3208
+ time_maintenance_end: Optional[str] = None):
2893
3209
  """
2894
3210
  :param str availability_domain: The availability domain of a local Autonomous Data Guard standby database of an Autonomous Database Serverless instance.
2895
3211
  :param int lag_time_in_seconds: The amount of time, in seconds, that the data of the standby database lags the data of the primary database. Can be used to determine the potential data loss in the event of a failover.
2896
3212
  :param str lifecycle_details: Additional information about the current lifecycle state.
3213
+ :param str maintenance_target_component: The component chosen for maintenance.
2897
3214
  :param str state: The current state of the Autonomous Database.
2898
3215
  :param str time_data_guard_role_changed: The date and time the Autonomous Data Guard role was switched for the Autonomous Database. For databases that have standbys in both the primary Data Guard region and a remote Data Guard standby region, this is the latest timestamp of either the database using the "primary" role in the primary Data Guard region, or database located in the remote Data Guard standby region.
2899
3216
  :param str time_disaster_recovery_role_changed: The date and time the Disaster Recovery role was switched for the standby Autonomous Database.
3217
+ :param str time_maintenance_begin: The date and time when maintenance will begin.
3218
+ :param str time_maintenance_end: The date and time when maintenance will end.
2900
3219
  """
2901
3220
  if availability_domain is not None:
2902
3221
  pulumi.set(__self__, "availability_domain", availability_domain)
@@ -2904,12 +3223,18 @@ class AutonomousDatabaseLocalStandbyDb(dict):
2904
3223
  pulumi.set(__self__, "lag_time_in_seconds", lag_time_in_seconds)
2905
3224
  if lifecycle_details is not None:
2906
3225
  pulumi.set(__self__, "lifecycle_details", lifecycle_details)
3226
+ if maintenance_target_component is not None:
3227
+ pulumi.set(__self__, "maintenance_target_component", maintenance_target_component)
2907
3228
  if state is not None:
2908
3229
  pulumi.set(__self__, "state", state)
2909
3230
  if time_data_guard_role_changed is not None:
2910
3231
  pulumi.set(__self__, "time_data_guard_role_changed", time_data_guard_role_changed)
2911
3232
  if time_disaster_recovery_role_changed is not None:
2912
3233
  pulumi.set(__self__, "time_disaster_recovery_role_changed", time_disaster_recovery_role_changed)
3234
+ if time_maintenance_begin is not None:
3235
+ pulumi.set(__self__, "time_maintenance_begin", time_maintenance_begin)
3236
+ if time_maintenance_end is not None:
3237
+ pulumi.set(__self__, "time_maintenance_end", time_maintenance_end)
2913
3238
 
2914
3239
  @property
2915
3240
  @pulumi.getter(name="availabilityDomain")
@@ -2935,6 +3260,14 @@ class AutonomousDatabaseLocalStandbyDb(dict):
2935
3260
  """
2936
3261
  return pulumi.get(self, "lifecycle_details")
2937
3262
 
3263
+ @property
3264
+ @pulumi.getter(name="maintenanceTargetComponent")
3265
+ def maintenance_target_component(self) -> Optional[str]:
3266
+ """
3267
+ The component chosen for maintenance.
3268
+ """
3269
+ return pulumi.get(self, "maintenance_target_component")
3270
+
2938
3271
  @property
2939
3272
  @pulumi.getter
2940
3273
  def state(self) -> Optional[str]:
@@ -2959,6 +3292,22 @@ class AutonomousDatabaseLocalStandbyDb(dict):
2959
3292
  """
2960
3293
  return pulumi.get(self, "time_disaster_recovery_role_changed")
2961
3294
 
3295
+ @property
3296
+ @pulumi.getter(name="timeMaintenanceBegin")
3297
+ def time_maintenance_begin(self) -> Optional[str]:
3298
+ """
3299
+ The date and time when maintenance will begin.
3300
+ """
3301
+ return pulumi.get(self, "time_maintenance_begin")
3302
+
3303
+ @property
3304
+ @pulumi.getter(name="timeMaintenanceEnd")
3305
+ def time_maintenance_end(self) -> Optional[str]:
3306
+ """
3307
+ The date and time when maintenance will end.
3308
+ """
3309
+ return pulumi.get(self, "time_maintenance_end")
3310
+
2962
3311
 
2963
3312
  @pulumi.output_type
2964
3313
  class AutonomousDatabaseLongTermBackupSchedule(dict):
@@ -3392,10 +3741,16 @@ class AutonomousDatabaseStandbyDb(dict):
3392
3741
  suggest = "lag_time_in_seconds"
3393
3742
  elif key == "lifecycleDetails":
3394
3743
  suggest = "lifecycle_details"
3744
+ elif key == "maintenanceTargetComponent":
3745
+ suggest = "maintenance_target_component"
3395
3746
  elif key == "timeDataGuardRoleChanged":
3396
3747
  suggest = "time_data_guard_role_changed"
3397
3748
  elif key == "timeDisasterRecoveryRoleChanged":
3398
3749
  suggest = "time_disaster_recovery_role_changed"
3750
+ elif key == "timeMaintenanceBegin":
3751
+ suggest = "time_maintenance_begin"
3752
+ elif key == "timeMaintenanceEnd":
3753
+ suggest = "time_maintenance_end"
3399
3754
 
3400
3755
  if suggest:
3401
3756
  pulumi.log.warn(f"Key '{key}' not found in AutonomousDatabaseStandbyDb. Access the value via the '{suggest}' property getter instead.")
@@ -3412,16 +3767,22 @@ class AutonomousDatabaseStandbyDb(dict):
3412
3767
  availability_domain: Optional[str] = None,
3413
3768
  lag_time_in_seconds: Optional[int] = None,
3414
3769
  lifecycle_details: Optional[str] = None,
3770
+ maintenance_target_component: Optional[str] = None,
3415
3771
  state: Optional[str] = None,
3416
3772
  time_data_guard_role_changed: Optional[str] = None,
3417
- time_disaster_recovery_role_changed: Optional[str] = None):
3773
+ time_disaster_recovery_role_changed: Optional[str] = None,
3774
+ time_maintenance_begin: Optional[str] = None,
3775
+ time_maintenance_end: Optional[str] = None):
3418
3776
  """
3419
3777
  :param str availability_domain: The availability domain of a local Autonomous Data Guard standby database of an Autonomous Database Serverless instance.
3420
3778
  :param int lag_time_in_seconds: The amount of time, in seconds, that the data of the standby database lags the data of the primary database. Can be used to determine the potential data loss in the event of a failover.
3421
3779
  :param str lifecycle_details: Additional information about the current lifecycle state.
3780
+ :param str maintenance_target_component: The component chosen for maintenance.
3422
3781
  :param str state: The current state of the Autonomous Database.
3423
3782
  :param str time_data_guard_role_changed: The date and time the Autonomous Data Guard role was switched for the Autonomous Database. For databases that have standbys in both the primary Data Guard region and a remote Data Guard standby region, this is the latest timestamp of either the database using the "primary" role in the primary Data Guard region, or database located in the remote Data Guard standby region.
3424
3783
  :param str time_disaster_recovery_role_changed: The date and time the Disaster Recovery role was switched for the standby Autonomous Database.
3784
+ :param str time_maintenance_begin: The date and time when maintenance will begin.
3785
+ :param str time_maintenance_end: The date and time when maintenance will end.
3425
3786
  """
3426
3787
  if availability_domain is not None:
3427
3788
  pulumi.set(__self__, "availability_domain", availability_domain)
@@ -3429,12 +3790,18 @@ class AutonomousDatabaseStandbyDb(dict):
3429
3790
  pulumi.set(__self__, "lag_time_in_seconds", lag_time_in_seconds)
3430
3791
  if lifecycle_details is not None:
3431
3792
  pulumi.set(__self__, "lifecycle_details", lifecycle_details)
3793
+ if maintenance_target_component is not None:
3794
+ pulumi.set(__self__, "maintenance_target_component", maintenance_target_component)
3432
3795
  if state is not None:
3433
3796
  pulumi.set(__self__, "state", state)
3434
3797
  if time_data_guard_role_changed is not None:
3435
3798
  pulumi.set(__self__, "time_data_guard_role_changed", time_data_guard_role_changed)
3436
3799
  if time_disaster_recovery_role_changed is not None:
3437
3800
  pulumi.set(__self__, "time_disaster_recovery_role_changed", time_disaster_recovery_role_changed)
3801
+ if time_maintenance_begin is not None:
3802
+ pulumi.set(__self__, "time_maintenance_begin", time_maintenance_begin)
3803
+ if time_maintenance_end is not None:
3804
+ pulumi.set(__self__, "time_maintenance_end", time_maintenance_end)
3438
3805
 
3439
3806
  @property
3440
3807
  @pulumi.getter(name="availabilityDomain")
@@ -3460,6 +3827,14 @@ class AutonomousDatabaseStandbyDb(dict):
3460
3827
  """
3461
3828
  return pulumi.get(self, "lifecycle_details")
3462
3829
 
3830
+ @property
3831
+ @pulumi.getter(name="maintenanceTargetComponent")
3832
+ def maintenance_target_component(self) -> Optional[str]:
3833
+ """
3834
+ The component chosen for maintenance.
3835
+ """
3836
+ return pulumi.get(self, "maintenance_target_component")
3837
+
3463
3838
  @property
3464
3839
  @pulumi.getter
3465
3840
  def state(self) -> Optional[str]:
@@ -3484,6 +3859,22 @@ class AutonomousDatabaseStandbyDb(dict):
3484
3859
  """
3485
3860
  return pulumi.get(self, "time_disaster_recovery_role_changed")
3486
3861
 
3862
+ @property
3863
+ @pulumi.getter(name="timeMaintenanceBegin")
3864
+ def time_maintenance_begin(self) -> Optional[str]:
3865
+ """
3866
+ The date and time when maintenance will begin.
3867
+ """
3868
+ return pulumi.get(self, "time_maintenance_begin")
3869
+
3870
+ @property
3871
+ @pulumi.getter(name="timeMaintenanceEnd")
3872
+ def time_maintenance_end(self) -> Optional[str]:
3873
+ """
3874
+ The date and time when maintenance will end.
3875
+ """
3876
+ return pulumi.get(self, "time_maintenance_end")
3877
+
3487
3878
 
3488
3879
  @pulumi.output_type
3489
3880
  class AutonomousExadataInfrastructureMaintenanceWindow(dict):
@@ -10465,92 +10856,95 @@ class ExadataInfrastructureComputeMaintenanceWindowMonth(dict):
10465
10856
 
10466
10857
 
10467
10858
  @pulumi.output_type
10468
- class ExadataInfrastructureContact(dict):
10859
+ class ExadataInfrastructureConfigureExascaleManagementContact(dict):
10469
10860
  @staticmethod
10470
10861
  def __key_warning(key: str):
10471
10862
  suggest = None
10472
- if key == "isPrimary":
10473
- suggest = "is_primary"
10474
- elif key == "isContactMosValidated":
10863
+ if key == "isContactMosValidated":
10475
10864
  suggest = "is_contact_mos_validated"
10865
+ elif key == "isPrimary":
10866
+ suggest = "is_primary"
10476
10867
  elif key == "phoneNumber":
10477
10868
  suggest = "phone_number"
10478
10869
 
10479
10870
  if suggest:
10480
- pulumi.log.warn(f"Key '{key}' not found in ExadataInfrastructureContact. Access the value via the '{suggest}' property getter instead.")
10871
+ pulumi.log.warn(f"Key '{key}' not found in ExadataInfrastructureConfigureExascaleManagementContact. Access the value via the '{suggest}' property getter instead.")
10481
10872
 
10482
10873
  def __getitem__(self, key: str) -> Any:
10483
- ExadataInfrastructureContact.__key_warning(key)
10874
+ ExadataInfrastructureConfigureExascaleManagementContact.__key_warning(key)
10484
10875
  return super().__getitem__(key)
10485
10876
 
10486
10877
  def get(self, key: str, default = None) -> Any:
10487
- ExadataInfrastructureContact.__key_warning(key)
10878
+ ExadataInfrastructureConfigureExascaleManagementContact.__key_warning(key)
10488
10879
  return super().get(key, default)
10489
10880
 
10490
10881
  def __init__(__self__, *,
10491
- email: str,
10492
- is_primary: bool,
10493
- name: str,
10882
+ email: Optional[str] = None,
10494
10883
  is_contact_mos_validated: Optional[bool] = None,
10884
+ is_primary: Optional[bool] = None,
10885
+ name: Optional[str] = None,
10495
10886
  phone_number: Optional[str] = None):
10496
10887
  """
10497
- :param str email: (Updatable) The email for the Exadata Infrastructure contact.
10498
- :param bool is_primary: (Updatable) If `true`, this Exadata Infrastructure contact is a primary contact. If `false`, this Exadata Infrastructure is a secondary contact.
10499
- :param str name: (Updatable) The name of the Exadata Infrastructure contact.
10500
- :param bool is_contact_mos_validated: (Updatable) If `true`, this Exadata Infrastructure contact is a valid My Oracle Support (MOS) contact. If `false`, this Exadata Infrastructure contact is not a valid MOS contact.
10501
- :param str phone_number: (Updatable) The phone number for the Exadata Infrastructure contact.
10888
+ :param str email: The email for the Exadata Infrastructure contact.
10889
+ :param bool is_contact_mos_validated: If `true`, this Exadata Infrastructure contact is a valid My Oracle Support (MOS) contact. If `false`, this Exadata Infrastructure contact is not a valid MOS contact.
10890
+ :param bool is_primary: If `true`, this Exadata Infrastructure contact is a primary contact. If `false`, this Exadata Infrastructure is a secondary contact.
10891
+ :param str name: Name of the month of the year.
10892
+ :param str phone_number: The phone number for the Exadata Infrastructure contact.
10502
10893
  """
10503
- pulumi.set(__self__, "email", email)
10504
- pulumi.set(__self__, "is_primary", is_primary)
10505
- pulumi.set(__self__, "name", name)
10894
+ if email is not None:
10895
+ pulumi.set(__self__, "email", email)
10506
10896
  if is_contact_mos_validated is not None:
10507
10897
  pulumi.set(__self__, "is_contact_mos_validated", is_contact_mos_validated)
10898
+ if is_primary is not None:
10899
+ pulumi.set(__self__, "is_primary", is_primary)
10900
+ if name is not None:
10901
+ pulumi.set(__self__, "name", name)
10508
10902
  if phone_number is not None:
10509
10903
  pulumi.set(__self__, "phone_number", phone_number)
10510
10904
 
10511
10905
  @property
10512
10906
  @pulumi.getter
10513
- def email(self) -> str:
10907
+ def email(self) -> Optional[str]:
10514
10908
  """
10515
- (Updatable) The email for the Exadata Infrastructure contact.
10909
+ The email for the Exadata Infrastructure contact.
10516
10910
  """
10517
10911
  return pulumi.get(self, "email")
10518
10912
 
10519
10913
  @property
10520
- @pulumi.getter(name="isPrimary")
10521
- def is_primary(self) -> bool:
10914
+ @pulumi.getter(name="isContactMosValidated")
10915
+ def is_contact_mos_validated(self) -> Optional[bool]:
10522
10916
  """
10523
- (Updatable) If `true`, this Exadata Infrastructure contact is a primary contact. If `false`, this Exadata Infrastructure is a secondary contact.
10917
+ If `true`, this Exadata Infrastructure contact is a valid My Oracle Support (MOS) contact. If `false`, this Exadata Infrastructure contact is not a valid MOS contact.
10524
10918
  """
10525
- return pulumi.get(self, "is_primary")
10919
+ return pulumi.get(self, "is_contact_mos_validated")
10526
10920
 
10527
10921
  @property
10528
- @pulumi.getter
10529
- def name(self) -> str:
10922
+ @pulumi.getter(name="isPrimary")
10923
+ def is_primary(self) -> Optional[bool]:
10530
10924
  """
10531
- (Updatable) The name of the Exadata Infrastructure contact.
10925
+ If `true`, this Exadata Infrastructure contact is a primary contact. If `false`, this Exadata Infrastructure is a secondary contact.
10532
10926
  """
10533
- return pulumi.get(self, "name")
10927
+ return pulumi.get(self, "is_primary")
10534
10928
 
10535
10929
  @property
10536
- @pulumi.getter(name="isContactMosValidated")
10537
- def is_contact_mos_validated(self) -> Optional[bool]:
10930
+ @pulumi.getter
10931
+ def name(self) -> Optional[str]:
10538
10932
  """
10539
- (Updatable) If `true`, this Exadata Infrastructure contact is a valid My Oracle Support (MOS) contact. If `false`, this Exadata Infrastructure contact is not a valid MOS contact.
10933
+ Name of the month of the year.
10540
10934
  """
10541
- return pulumi.get(self, "is_contact_mos_validated")
10935
+ return pulumi.get(self, "name")
10542
10936
 
10543
10937
  @property
10544
10938
  @pulumi.getter(name="phoneNumber")
10545
10939
  def phone_number(self) -> Optional[str]:
10546
10940
  """
10547
- (Updatable) The phone number for the Exadata Infrastructure contact.
10941
+ The phone number for the Exadata Infrastructure contact.
10548
10942
  """
10549
10943
  return pulumi.get(self, "phone_number")
10550
10944
 
10551
10945
 
10552
10946
  @pulumi.output_type
10553
- class ExadataInfrastructureDefinedFileSystemConfiguration(dict):
10947
+ class ExadataInfrastructureConfigureExascaleManagementDefinedFileSystemConfiguration(dict):
10554
10948
  @staticmethod
10555
10949
  def __key_warning(key: str):
10556
10950
  suggest = None
@@ -10564,14 +10958,14 @@ class ExadataInfrastructureDefinedFileSystemConfiguration(dict):
10564
10958
  suggest = "mount_point"
10565
10959
 
10566
10960
  if suggest:
10567
- pulumi.log.warn(f"Key '{key}' not found in ExadataInfrastructureDefinedFileSystemConfiguration. Access the value via the '{suggest}' property getter instead.")
10961
+ pulumi.log.warn(f"Key '{key}' not found in ExadataInfrastructureConfigureExascaleManagementDefinedFileSystemConfiguration. Access the value via the '{suggest}' property getter instead.")
10568
10962
 
10569
10963
  def __getitem__(self, key: str) -> Any:
10570
- ExadataInfrastructureDefinedFileSystemConfiguration.__key_warning(key)
10964
+ ExadataInfrastructureConfigureExascaleManagementDefinedFileSystemConfiguration.__key_warning(key)
10571
10965
  return super().__getitem__(key)
10572
10966
 
10573
10967
  def get(self, key: str, default = None) -> Any:
10574
- ExadataInfrastructureDefinedFileSystemConfiguration.__key_warning(key)
10968
+ ExadataInfrastructureConfigureExascaleManagementDefinedFileSystemConfiguration.__key_warning(key)
10575
10969
  return super().get(key, default)
10576
10970
 
10577
10971
  def __init__(__self__, *,
@@ -10627,6 +11021,551 @@ class ExadataInfrastructureDefinedFileSystemConfiguration(dict):
10627
11021
  return pulumi.get(self, "mount_point")
10628
11022
 
10629
11023
 
11024
+ @pulumi.output_type
11025
+ class ExadataInfrastructureConfigureExascaleManagementExascaleConfig(dict):
11026
+ @staticmethod
11027
+ def __key_warning(key: str):
11028
+ suggest = None
11029
+ if key == "availableStorageInGbs":
11030
+ suggest = "available_storage_in_gbs"
11031
+ elif key == "totalStorageInGbs":
11032
+ suggest = "total_storage_in_gbs"
11033
+
11034
+ if suggest:
11035
+ pulumi.log.warn(f"Key '{key}' not found in ExadataInfrastructureConfigureExascaleManagementExascaleConfig. Access the value via the '{suggest}' property getter instead.")
11036
+
11037
+ def __getitem__(self, key: str) -> Any:
11038
+ ExadataInfrastructureConfigureExascaleManagementExascaleConfig.__key_warning(key)
11039
+ return super().__getitem__(key)
11040
+
11041
+ def get(self, key: str, default = None) -> Any:
11042
+ ExadataInfrastructureConfigureExascaleManagementExascaleConfig.__key_warning(key)
11043
+ return super().get(key, default)
11044
+
11045
+ def __init__(__self__, *,
11046
+ available_storage_in_gbs: Optional[int] = None,
11047
+ total_storage_in_gbs: Optional[int] = None):
11048
+ """
11049
+ :param int available_storage_in_gbs: Available storage size for Exascale in GBs.
11050
+ :param int total_storage_in_gbs: Storage size needed for Exascale in GBs.
11051
+
11052
+
11053
+ ** IMPORTANT **
11054
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
11055
+ """
11056
+ if available_storage_in_gbs is not None:
11057
+ pulumi.set(__self__, "available_storage_in_gbs", available_storage_in_gbs)
11058
+ if total_storage_in_gbs is not None:
11059
+ pulumi.set(__self__, "total_storage_in_gbs", total_storage_in_gbs)
11060
+
11061
+ @property
11062
+ @pulumi.getter(name="availableStorageInGbs")
11063
+ def available_storage_in_gbs(self) -> Optional[int]:
11064
+ """
11065
+ Available storage size for Exascale in GBs.
11066
+ """
11067
+ return pulumi.get(self, "available_storage_in_gbs")
11068
+
11069
+ @property
11070
+ @pulumi.getter(name="totalStorageInGbs")
11071
+ def total_storage_in_gbs(self) -> Optional[int]:
11072
+ """
11073
+ Storage size needed for Exascale in GBs.
11074
+
11075
+
11076
+ ** IMPORTANT **
11077
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
11078
+ """
11079
+ return pulumi.get(self, "total_storage_in_gbs")
11080
+
11081
+
11082
+ @pulumi.output_type
11083
+ class ExadataInfrastructureConfigureExascaleManagementMaintenanceWindow(dict):
11084
+ @staticmethod
11085
+ def __key_warning(key: str):
11086
+ suggest = None
11087
+ if key == "customActionTimeoutInMins":
11088
+ suggest = "custom_action_timeout_in_mins"
11089
+ elif key == "daysOfWeeks":
11090
+ suggest = "days_of_weeks"
11091
+ elif key == "hoursOfDays":
11092
+ suggest = "hours_of_days"
11093
+ elif key == "isCustomActionTimeoutEnabled":
11094
+ suggest = "is_custom_action_timeout_enabled"
11095
+ elif key == "isMonthlyPatchingEnabled":
11096
+ suggest = "is_monthly_patching_enabled"
11097
+ elif key == "leadTimeInWeeks":
11098
+ suggest = "lead_time_in_weeks"
11099
+ elif key == "patchingMode":
11100
+ suggest = "patching_mode"
11101
+ elif key == "skipRus":
11102
+ suggest = "skip_rus"
11103
+ elif key == "weeksOfMonths":
11104
+ suggest = "weeks_of_months"
11105
+
11106
+ if suggest:
11107
+ pulumi.log.warn(f"Key '{key}' not found in ExadataInfrastructureConfigureExascaleManagementMaintenanceWindow. Access the value via the '{suggest}' property getter instead.")
11108
+
11109
+ def __getitem__(self, key: str) -> Any:
11110
+ ExadataInfrastructureConfigureExascaleManagementMaintenanceWindow.__key_warning(key)
11111
+ return super().__getitem__(key)
11112
+
11113
+ def get(self, key: str, default = None) -> Any:
11114
+ ExadataInfrastructureConfigureExascaleManagementMaintenanceWindow.__key_warning(key)
11115
+ return super().get(key, default)
11116
+
11117
+ def __init__(__self__, *,
11118
+ custom_action_timeout_in_mins: Optional[int] = None,
11119
+ days_of_weeks: Optional[Sequence['outputs.ExadataInfrastructureConfigureExascaleManagementMaintenanceWindowDaysOfWeek']] = None,
11120
+ hours_of_days: Optional[Sequence[int]] = None,
11121
+ is_custom_action_timeout_enabled: Optional[bool] = None,
11122
+ is_monthly_patching_enabled: Optional[bool] = None,
11123
+ lead_time_in_weeks: Optional[int] = None,
11124
+ months: Optional[Sequence['outputs.ExadataInfrastructureConfigureExascaleManagementMaintenanceWindowMonth']] = None,
11125
+ patching_mode: Optional[str] = None,
11126
+ preference: Optional[str] = None,
11127
+ skip_rus: Optional[Sequence[bool]] = None,
11128
+ weeks_of_months: Optional[Sequence[int]] = None):
11129
+ """
11130
+ :param int custom_action_timeout_in_mins: Determines the amount of time the system will wait before the start of each database server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).
11131
+ :param Sequence['ExadataInfrastructureConfigureExascaleManagementMaintenanceWindowDaysOfWeekArgs'] days_of_weeks: Days during the week when maintenance should be performed.
11132
+ :param Sequence[int] hours_of_days: The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Valid values are - 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC
11133
+ :param bool is_custom_action_timeout_enabled: If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
11134
+ :param bool is_monthly_patching_enabled: If true, enables the monthly patching option.
11135
+ :param int lead_time_in_weeks: Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.
11136
+ :param Sequence['ExadataInfrastructureConfigureExascaleManagementMaintenanceWindowMonthArgs'] months: Months during the year when maintenance should be performed.
11137
+ :param str patching_mode: Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
11138
+ :param str preference: The maintenance window scheduling preference.
11139
+ :param Sequence[bool] skip_rus: If true, skips the release update (RU) for the quarter. You cannot skip two consecutive quarters. An RU skip request will only be honoured if the current version of the Autonomous Container Database is supported for current quarter.
11140
+ :param Sequence[int] weeks_of_months: Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.
11141
+ """
11142
+ if custom_action_timeout_in_mins is not None:
11143
+ pulumi.set(__self__, "custom_action_timeout_in_mins", custom_action_timeout_in_mins)
11144
+ if days_of_weeks is not None:
11145
+ pulumi.set(__self__, "days_of_weeks", days_of_weeks)
11146
+ if hours_of_days is not None:
11147
+ pulumi.set(__self__, "hours_of_days", hours_of_days)
11148
+ if is_custom_action_timeout_enabled is not None:
11149
+ pulumi.set(__self__, "is_custom_action_timeout_enabled", is_custom_action_timeout_enabled)
11150
+ if is_monthly_patching_enabled is not None:
11151
+ pulumi.set(__self__, "is_monthly_patching_enabled", is_monthly_patching_enabled)
11152
+ if lead_time_in_weeks is not None:
11153
+ pulumi.set(__self__, "lead_time_in_weeks", lead_time_in_weeks)
11154
+ if months is not None:
11155
+ pulumi.set(__self__, "months", months)
11156
+ if patching_mode is not None:
11157
+ pulumi.set(__self__, "patching_mode", patching_mode)
11158
+ if preference is not None:
11159
+ pulumi.set(__self__, "preference", preference)
11160
+ if skip_rus is not None:
11161
+ pulumi.set(__self__, "skip_rus", skip_rus)
11162
+ if weeks_of_months is not None:
11163
+ pulumi.set(__self__, "weeks_of_months", weeks_of_months)
11164
+
11165
+ @property
11166
+ @pulumi.getter(name="customActionTimeoutInMins")
11167
+ def custom_action_timeout_in_mins(self) -> Optional[int]:
11168
+ """
11169
+ Determines the amount of time the system will wait before the start of each database server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).
11170
+ """
11171
+ return pulumi.get(self, "custom_action_timeout_in_mins")
11172
+
11173
+ @property
11174
+ @pulumi.getter(name="daysOfWeeks")
11175
+ def days_of_weeks(self) -> Optional[Sequence['outputs.ExadataInfrastructureConfigureExascaleManagementMaintenanceWindowDaysOfWeek']]:
11176
+ """
11177
+ Days during the week when maintenance should be performed.
11178
+ """
11179
+ return pulumi.get(self, "days_of_weeks")
11180
+
11181
+ @property
11182
+ @pulumi.getter(name="hoursOfDays")
11183
+ def hours_of_days(self) -> Optional[Sequence[int]]:
11184
+ """
11185
+ The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Valid values are - 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC
11186
+ """
11187
+ return pulumi.get(self, "hours_of_days")
11188
+
11189
+ @property
11190
+ @pulumi.getter(name="isCustomActionTimeoutEnabled")
11191
+ def is_custom_action_timeout_enabled(self) -> Optional[bool]:
11192
+ """
11193
+ If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
11194
+ """
11195
+ return pulumi.get(self, "is_custom_action_timeout_enabled")
11196
+
11197
+ @property
11198
+ @pulumi.getter(name="isMonthlyPatchingEnabled")
11199
+ def is_monthly_patching_enabled(self) -> Optional[bool]:
11200
+ """
11201
+ If true, enables the monthly patching option.
11202
+ """
11203
+ return pulumi.get(self, "is_monthly_patching_enabled")
11204
+
11205
+ @property
11206
+ @pulumi.getter(name="leadTimeInWeeks")
11207
+ def lead_time_in_weeks(self) -> Optional[int]:
11208
+ """
11209
+ Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.
11210
+ """
11211
+ return pulumi.get(self, "lead_time_in_weeks")
11212
+
11213
+ @property
11214
+ @pulumi.getter
11215
+ def months(self) -> Optional[Sequence['outputs.ExadataInfrastructureConfigureExascaleManagementMaintenanceWindowMonth']]:
11216
+ """
11217
+ Months during the year when maintenance should be performed.
11218
+ """
11219
+ return pulumi.get(self, "months")
11220
+
11221
+ @property
11222
+ @pulumi.getter(name="patchingMode")
11223
+ def patching_mode(self) -> Optional[str]:
11224
+ """
11225
+ Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
11226
+ """
11227
+ return pulumi.get(self, "patching_mode")
11228
+
11229
+ @property
11230
+ @pulumi.getter
11231
+ def preference(self) -> Optional[str]:
11232
+ """
11233
+ The maintenance window scheduling preference.
11234
+ """
11235
+ return pulumi.get(self, "preference")
11236
+
11237
+ @property
11238
+ @pulumi.getter(name="skipRus")
11239
+ def skip_rus(self) -> Optional[Sequence[bool]]:
11240
+ """
11241
+ If true, skips the release update (RU) for the quarter. You cannot skip two consecutive quarters. An RU skip request will only be honoured if the current version of the Autonomous Container Database is supported for current quarter.
11242
+ """
11243
+ return pulumi.get(self, "skip_rus")
11244
+
11245
+ @property
11246
+ @pulumi.getter(name="weeksOfMonths")
11247
+ def weeks_of_months(self) -> Optional[Sequence[int]]:
11248
+ """
11249
+ Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.
11250
+ """
11251
+ return pulumi.get(self, "weeks_of_months")
11252
+
11253
+
11254
+ @pulumi.output_type
11255
+ class ExadataInfrastructureConfigureExascaleManagementMaintenanceWindowDaysOfWeek(dict):
11256
+ def __init__(__self__, *,
11257
+ name: Optional[str] = None):
11258
+ """
11259
+ :param str name: Name of the month of the year.
11260
+ """
11261
+ if name is not None:
11262
+ pulumi.set(__self__, "name", name)
11263
+
11264
+ @property
11265
+ @pulumi.getter
11266
+ def name(self) -> Optional[str]:
11267
+ """
11268
+ Name of the month of the year.
11269
+ """
11270
+ return pulumi.get(self, "name")
11271
+
11272
+
11273
+ @pulumi.output_type
11274
+ class ExadataInfrastructureConfigureExascaleManagementMaintenanceWindowMonth(dict):
11275
+ def __init__(__self__, *,
11276
+ name: Optional[str] = None):
11277
+ """
11278
+ :param str name: Name of the month of the year.
11279
+ """
11280
+ if name is not None:
11281
+ pulumi.set(__self__, "name", name)
11282
+
11283
+ @property
11284
+ @pulumi.getter
11285
+ def name(self) -> Optional[str]:
11286
+ """
11287
+ Name of the month of the year.
11288
+ """
11289
+ return pulumi.get(self, "name")
11290
+
11291
+
11292
+ @pulumi.output_type
11293
+ class ExadataInfrastructureConfigureExascaleManagementNetworkBondingModeDetail(dict):
11294
+ @staticmethod
11295
+ def __key_warning(key: str):
11296
+ suggest = None
11297
+ if key == "backupNetworkBondingMode":
11298
+ suggest = "backup_network_bonding_mode"
11299
+ elif key == "clientNetworkBondingMode":
11300
+ suggest = "client_network_bonding_mode"
11301
+ elif key == "drNetworkBondingMode":
11302
+ suggest = "dr_network_bonding_mode"
11303
+
11304
+ if suggest:
11305
+ pulumi.log.warn(f"Key '{key}' not found in ExadataInfrastructureConfigureExascaleManagementNetworkBondingModeDetail. Access the value via the '{suggest}' property getter instead.")
11306
+
11307
+ def __getitem__(self, key: str) -> Any:
11308
+ ExadataInfrastructureConfigureExascaleManagementNetworkBondingModeDetail.__key_warning(key)
11309
+ return super().__getitem__(key)
11310
+
11311
+ def get(self, key: str, default = None) -> Any:
11312
+ ExadataInfrastructureConfigureExascaleManagementNetworkBondingModeDetail.__key_warning(key)
11313
+ return super().get(key, default)
11314
+
11315
+ def __init__(__self__, *,
11316
+ backup_network_bonding_mode: Optional[str] = None,
11317
+ client_network_bonding_mode: Optional[str] = None,
11318
+ dr_network_bonding_mode: Optional[str] = None):
11319
+ """
11320
+ :param str backup_network_bonding_mode: The network bonding mode for the Exadata infrastructure.
11321
+ :param str client_network_bonding_mode: The network bonding mode for the Exadata infrastructure.
11322
+ :param str dr_network_bonding_mode: The network bonding mode for the Exadata infrastructure.
11323
+ """
11324
+ if backup_network_bonding_mode is not None:
11325
+ pulumi.set(__self__, "backup_network_bonding_mode", backup_network_bonding_mode)
11326
+ if client_network_bonding_mode is not None:
11327
+ pulumi.set(__self__, "client_network_bonding_mode", client_network_bonding_mode)
11328
+ if dr_network_bonding_mode is not None:
11329
+ pulumi.set(__self__, "dr_network_bonding_mode", dr_network_bonding_mode)
11330
+
11331
+ @property
11332
+ @pulumi.getter(name="backupNetworkBondingMode")
11333
+ def backup_network_bonding_mode(self) -> Optional[str]:
11334
+ """
11335
+ The network bonding mode for the Exadata infrastructure.
11336
+ """
11337
+ return pulumi.get(self, "backup_network_bonding_mode")
11338
+
11339
+ @property
11340
+ @pulumi.getter(name="clientNetworkBondingMode")
11341
+ def client_network_bonding_mode(self) -> Optional[str]:
11342
+ """
11343
+ The network bonding mode for the Exadata infrastructure.
11344
+ """
11345
+ return pulumi.get(self, "client_network_bonding_mode")
11346
+
11347
+ @property
11348
+ @pulumi.getter(name="drNetworkBondingMode")
11349
+ def dr_network_bonding_mode(self) -> Optional[str]:
11350
+ """
11351
+ The network bonding mode for the Exadata infrastructure.
11352
+ """
11353
+ return pulumi.get(self, "dr_network_bonding_mode")
11354
+
11355
+
11356
+ @pulumi.output_type
11357
+ class ExadataInfrastructureContact(dict):
11358
+ @staticmethod
11359
+ def __key_warning(key: str):
11360
+ suggest = None
11361
+ if key == "isPrimary":
11362
+ suggest = "is_primary"
11363
+ elif key == "isContactMosValidated":
11364
+ suggest = "is_contact_mos_validated"
11365
+ elif key == "phoneNumber":
11366
+ suggest = "phone_number"
11367
+
11368
+ if suggest:
11369
+ pulumi.log.warn(f"Key '{key}' not found in ExadataInfrastructureContact. Access the value via the '{suggest}' property getter instead.")
11370
+
11371
+ def __getitem__(self, key: str) -> Any:
11372
+ ExadataInfrastructureContact.__key_warning(key)
11373
+ return super().__getitem__(key)
11374
+
11375
+ def get(self, key: str, default = None) -> Any:
11376
+ ExadataInfrastructureContact.__key_warning(key)
11377
+ return super().get(key, default)
11378
+
11379
+ def __init__(__self__, *,
11380
+ email: str,
11381
+ is_primary: bool,
11382
+ name: str,
11383
+ is_contact_mos_validated: Optional[bool] = None,
11384
+ phone_number: Optional[str] = None):
11385
+ """
11386
+ :param str email: (Updatable) The email for the Exadata Infrastructure contact.
11387
+ :param bool is_primary: (Updatable) If `true`, this Exadata Infrastructure contact is a primary contact. If `false`, this Exadata Infrastructure is a secondary contact.
11388
+ :param str name: (Updatable) The name of the Exadata Infrastructure contact.
11389
+ :param bool is_contact_mos_validated: (Updatable) If `true`, this Exadata Infrastructure contact is a valid My Oracle Support (MOS) contact. If `false`, this Exadata Infrastructure contact is not a valid MOS contact.
11390
+ :param str phone_number: (Updatable) The phone number for the Exadata Infrastructure contact.
11391
+ """
11392
+ pulumi.set(__self__, "email", email)
11393
+ pulumi.set(__self__, "is_primary", is_primary)
11394
+ pulumi.set(__self__, "name", name)
11395
+ if is_contact_mos_validated is not None:
11396
+ pulumi.set(__self__, "is_contact_mos_validated", is_contact_mos_validated)
11397
+ if phone_number is not None:
11398
+ pulumi.set(__self__, "phone_number", phone_number)
11399
+
11400
+ @property
11401
+ @pulumi.getter
11402
+ def email(self) -> str:
11403
+ """
11404
+ (Updatable) The email for the Exadata Infrastructure contact.
11405
+ """
11406
+ return pulumi.get(self, "email")
11407
+
11408
+ @property
11409
+ @pulumi.getter(name="isPrimary")
11410
+ def is_primary(self) -> bool:
11411
+ """
11412
+ (Updatable) If `true`, this Exadata Infrastructure contact is a primary contact. If `false`, this Exadata Infrastructure is a secondary contact.
11413
+ """
11414
+ return pulumi.get(self, "is_primary")
11415
+
11416
+ @property
11417
+ @pulumi.getter
11418
+ def name(self) -> str:
11419
+ """
11420
+ (Updatable) The name of the Exadata Infrastructure contact.
11421
+ """
11422
+ return pulumi.get(self, "name")
11423
+
11424
+ @property
11425
+ @pulumi.getter(name="isContactMosValidated")
11426
+ def is_contact_mos_validated(self) -> Optional[bool]:
11427
+ """
11428
+ (Updatable) If `true`, this Exadata Infrastructure contact is a valid My Oracle Support (MOS) contact. If `false`, this Exadata Infrastructure contact is not a valid MOS contact.
11429
+ """
11430
+ return pulumi.get(self, "is_contact_mos_validated")
11431
+
11432
+ @property
11433
+ @pulumi.getter(name="phoneNumber")
11434
+ def phone_number(self) -> Optional[str]:
11435
+ """
11436
+ (Updatable) The phone number for the Exadata Infrastructure contact.
11437
+ """
11438
+ return pulumi.get(self, "phone_number")
11439
+
11440
+
11441
+ @pulumi.output_type
11442
+ class ExadataInfrastructureDefinedFileSystemConfiguration(dict):
11443
+ @staticmethod
11444
+ def __key_warning(key: str):
11445
+ suggest = None
11446
+ if key == "isBackupPartition":
11447
+ suggest = "is_backup_partition"
11448
+ elif key == "isResizable":
11449
+ suggest = "is_resizable"
11450
+ elif key == "minSizeGb":
11451
+ suggest = "min_size_gb"
11452
+ elif key == "mountPoint":
11453
+ suggest = "mount_point"
11454
+
11455
+ if suggest:
11456
+ pulumi.log.warn(f"Key '{key}' not found in ExadataInfrastructureDefinedFileSystemConfiguration. Access the value via the '{suggest}' property getter instead.")
11457
+
11458
+ def __getitem__(self, key: str) -> Any:
11459
+ ExadataInfrastructureDefinedFileSystemConfiguration.__key_warning(key)
11460
+ return super().__getitem__(key)
11461
+
11462
+ def get(self, key: str, default = None) -> Any:
11463
+ ExadataInfrastructureDefinedFileSystemConfiguration.__key_warning(key)
11464
+ return super().get(key, default)
11465
+
11466
+ def __init__(__self__, *,
11467
+ is_backup_partition: Optional[bool] = None,
11468
+ is_resizable: Optional[bool] = None,
11469
+ min_size_gb: Optional[int] = None,
11470
+ mount_point: Optional[str] = None):
11471
+ """
11472
+ :param bool is_backup_partition: If true, the file system is used to create a backup prior to Exadata VM OS update.
11473
+ :param bool is_resizable: If true, the file system resize is allowed for the Exadata Infrastructure cluster. If false, the file system resize is not allowed.
11474
+ :param int min_size_gb: The minimum size of file system.
11475
+ :param str mount_point: The mount point of file system.
11476
+ """
11477
+ if is_backup_partition is not None:
11478
+ pulumi.set(__self__, "is_backup_partition", is_backup_partition)
11479
+ if is_resizable is not None:
11480
+ pulumi.set(__self__, "is_resizable", is_resizable)
11481
+ if min_size_gb is not None:
11482
+ pulumi.set(__self__, "min_size_gb", min_size_gb)
11483
+ if mount_point is not None:
11484
+ pulumi.set(__self__, "mount_point", mount_point)
11485
+
11486
+ @property
11487
+ @pulumi.getter(name="isBackupPartition")
11488
+ def is_backup_partition(self) -> Optional[bool]:
11489
+ """
11490
+ If true, the file system is used to create a backup prior to Exadata VM OS update.
11491
+ """
11492
+ return pulumi.get(self, "is_backup_partition")
11493
+
11494
+ @property
11495
+ @pulumi.getter(name="isResizable")
11496
+ def is_resizable(self) -> Optional[bool]:
11497
+ """
11498
+ If true, the file system resize is allowed for the Exadata Infrastructure cluster. If false, the file system resize is not allowed.
11499
+ """
11500
+ return pulumi.get(self, "is_resizable")
11501
+
11502
+ @property
11503
+ @pulumi.getter(name="minSizeGb")
11504
+ def min_size_gb(self) -> Optional[int]:
11505
+ """
11506
+ The minimum size of file system.
11507
+ """
11508
+ return pulumi.get(self, "min_size_gb")
11509
+
11510
+ @property
11511
+ @pulumi.getter(name="mountPoint")
11512
+ def mount_point(self) -> Optional[str]:
11513
+ """
11514
+ The mount point of file system.
11515
+ """
11516
+ return pulumi.get(self, "mount_point")
11517
+
11518
+
11519
+ @pulumi.output_type
11520
+ class ExadataInfrastructureExascaleConfig(dict):
11521
+ @staticmethod
11522
+ def __key_warning(key: str):
11523
+ suggest = None
11524
+ if key == "availableStorageInGbs":
11525
+ suggest = "available_storage_in_gbs"
11526
+ elif key == "totalStorageInGbs":
11527
+ suggest = "total_storage_in_gbs"
11528
+
11529
+ if suggest:
11530
+ pulumi.log.warn(f"Key '{key}' not found in ExadataInfrastructureExascaleConfig. Access the value via the '{suggest}' property getter instead.")
11531
+
11532
+ def __getitem__(self, key: str) -> Any:
11533
+ ExadataInfrastructureExascaleConfig.__key_warning(key)
11534
+ return super().__getitem__(key)
11535
+
11536
+ def get(self, key: str, default = None) -> Any:
11537
+ ExadataInfrastructureExascaleConfig.__key_warning(key)
11538
+ return super().get(key, default)
11539
+
11540
+ def __init__(__self__, *,
11541
+ available_storage_in_gbs: Optional[int] = None,
11542
+ total_storage_in_gbs: Optional[int] = None):
11543
+ """
11544
+ :param int available_storage_in_gbs: Available storage size for Exascale in GBs.
11545
+ :param int total_storage_in_gbs: Storage size needed for Exascale in GBs.
11546
+ """
11547
+ if available_storage_in_gbs is not None:
11548
+ pulumi.set(__self__, "available_storage_in_gbs", available_storage_in_gbs)
11549
+ if total_storage_in_gbs is not None:
11550
+ pulumi.set(__self__, "total_storage_in_gbs", total_storage_in_gbs)
11551
+
11552
+ @property
11553
+ @pulumi.getter(name="availableStorageInGbs")
11554
+ def available_storage_in_gbs(self) -> Optional[int]:
11555
+ """
11556
+ Available storage size for Exascale in GBs.
11557
+ """
11558
+ return pulumi.get(self, "available_storage_in_gbs")
11559
+
11560
+ @property
11561
+ @pulumi.getter(name="totalStorageInGbs")
11562
+ def total_storage_in_gbs(self) -> Optional[int]:
11563
+ """
11564
+ Storage size needed for Exascale in GBs.
11565
+ """
11566
+ return pulumi.get(self, "total_storage_in_gbs")
11567
+
11568
+
10630
11569
  @pulumi.output_type
10631
11570
  class ExadataInfrastructureMaintenanceWindow(dict):
10632
11571
  @staticmethod
@@ -14886,6 +15825,7 @@ class GetApplicationVipsApplicationVipResult(dict):
14886
15825
  hostname_label: str,
14887
15826
  id: str,
14888
15827
  ip_address: str,
15828
+ ipv6address: str,
14889
15829
  lifecycle_details: str,
14890
15830
  state: str,
14891
15831
  subnet_id: str,
@@ -14897,7 +15837,8 @@ class GetApplicationVipsApplicationVipResult(dict):
14897
15837
  :param Mapping[str, str] freeform_tags: Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
14898
15838
  :param str hostname_label: The hostname of the application virtual IP (VIP) address.
14899
15839
  :param str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the application virtual IP (VIP) address.
14900
- :param str ip_address: The application virtual IP (VIP) address.
15840
+ :param str ip_address: The application virtual IP (VIP) IPv4 address.
15841
+ :param str ipv6address: The application virtual IP (VIP) IPv6 address.
14901
15842
  :param str lifecycle_details: Additional information about the current lifecycle state of the application virtual IP (VIP) address.
14902
15843
  :param str state: A filter to return only resources that match the given lifecycle state exactly.
14903
15844
  :param str subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet associated with the application virtual IP (VIP) address.
@@ -14911,6 +15852,7 @@ class GetApplicationVipsApplicationVipResult(dict):
14911
15852
  pulumi.set(__self__, "hostname_label", hostname_label)
14912
15853
  pulumi.set(__self__, "id", id)
14913
15854
  pulumi.set(__self__, "ip_address", ip_address)
15855
+ pulumi.set(__self__, "ipv6address", ipv6address)
14914
15856
  pulumi.set(__self__, "lifecycle_details", lifecycle_details)
14915
15857
  pulumi.set(__self__, "state", state)
14916
15858
  pulumi.set(__self__, "subnet_id", subnet_id)
@@ -14973,10 +15915,18 @@ class GetApplicationVipsApplicationVipResult(dict):
14973
15915
  @pulumi.getter(name="ipAddress")
14974
15916
  def ip_address(self) -> str:
14975
15917
  """
14976
- The application virtual IP (VIP) address.
15918
+ The application virtual IP (VIP) IPv4 address.
14977
15919
  """
14978
15920
  return pulumi.get(self, "ip_address")
14979
15921
 
15922
+ @property
15923
+ @pulumi.getter
15924
+ def ipv6address(self) -> str:
15925
+ """
15926
+ The application virtual IP (VIP) IPv6 address.
15927
+ """
15928
+ return pulumi.get(self, "ipv6address")
15929
+
14980
15930
  @property
14981
15931
  @pulumi.getter(name="lifecycleDetails")
14982
15932
  def lifecycle_details(self) -> str:
@@ -15088,6 +16038,123 @@ class GetAutonomousCharacterSetsFilterResult(dict):
15088
16038
  return pulumi.get(self, "regex")
15089
16039
 
15090
16040
 
16041
+ @pulumi.output_type
16042
+ class GetAutonomousContainerDatabaseAssociatedBackupConfigurationDetailResult(dict):
16043
+ def __init__(__self__, *,
16044
+ backup_destination_attach_histories: Sequence[str],
16045
+ dbrs_policy_id: str,
16046
+ id: str,
16047
+ internet_proxy: str,
16048
+ recovery_window_in_days: int,
16049
+ space_utilized_in_gbs: int,
16050
+ time_at_which_storage_details_are_updated: str,
16051
+ type: str,
16052
+ vpc_password: str,
16053
+ vpc_user: str):
16054
+ """
16055
+ :param Sequence[str] backup_destination_attach_histories: The timestamps at which this backup destination is used as the preferred destination to host the Autonomous Container Database backups.
16056
+ :param str dbrs_policy_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the DBRS policy used for backup.
16057
+ :param str id: The id of the Autonomous Database [Vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts) service key management history entry.
16058
+ :param str internet_proxy: Proxy URL to connect to object store.
16059
+ :param int recovery_window_in_days: Number of days between the current and earliest point of recoverability covered by automatic backups.
16060
+ :param int space_utilized_in_gbs: The total space utilized (in GBs) by this Autonomous Container Database on this backup destination, rounded to the nearest integer.
16061
+ :param str time_at_which_storage_details_are_updated: The latest timestamp when the backup destination details, such as 'spaceUtilized,' are updated.
16062
+ :param str type: Type of the database backup destination.
16063
+ :param str vpc_password: For a RECOVERY_APPLIANCE backup destination, the password for the VPC user that is used to access the Recovery Appliance.
16064
+ :param str vpc_user: For a RECOVERY_APPLIANCE backup destination, the Virtual Private Catalog (VPC) user that is used to access the Recovery Appliance.
16065
+ """
16066
+ pulumi.set(__self__, "backup_destination_attach_histories", backup_destination_attach_histories)
16067
+ pulumi.set(__self__, "dbrs_policy_id", dbrs_policy_id)
16068
+ pulumi.set(__self__, "id", id)
16069
+ pulumi.set(__self__, "internet_proxy", internet_proxy)
16070
+ pulumi.set(__self__, "recovery_window_in_days", recovery_window_in_days)
16071
+ pulumi.set(__self__, "space_utilized_in_gbs", space_utilized_in_gbs)
16072
+ pulumi.set(__self__, "time_at_which_storage_details_are_updated", time_at_which_storage_details_are_updated)
16073
+ pulumi.set(__self__, "type", type)
16074
+ pulumi.set(__self__, "vpc_password", vpc_password)
16075
+ pulumi.set(__self__, "vpc_user", vpc_user)
16076
+
16077
+ @property
16078
+ @pulumi.getter(name="backupDestinationAttachHistories")
16079
+ def backup_destination_attach_histories(self) -> Sequence[str]:
16080
+ """
16081
+ The timestamps at which this backup destination is used as the preferred destination to host the Autonomous Container Database backups.
16082
+ """
16083
+ return pulumi.get(self, "backup_destination_attach_histories")
16084
+
16085
+ @property
16086
+ @pulumi.getter(name="dbrsPolicyId")
16087
+ def dbrs_policy_id(self) -> str:
16088
+ """
16089
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the DBRS policy used for backup.
16090
+ """
16091
+ return pulumi.get(self, "dbrs_policy_id")
16092
+
16093
+ @property
16094
+ @pulumi.getter
16095
+ def id(self) -> str:
16096
+ """
16097
+ The id of the Autonomous Database [Vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts) service key management history entry.
16098
+ """
16099
+ return pulumi.get(self, "id")
16100
+
16101
+ @property
16102
+ @pulumi.getter(name="internetProxy")
16103
+ def internet_proxy(self) -> str:
16104
+ """
16105
+ Proxy URL to connect to object store.
16106
+ """
16107
+ return pulumi.get(self, "internet_proxy")
16108
+
16109
+ @property
16110
+ @pulumi.getter(name="recoveryWindowInDays")
16111
+ def recovery_window_in_days(self) -> int:
16112
+ """
16113
+ Number of days between the current and earliest point of recoverability covered by automatic backups.
16114
+ """
16115
+ return pulumi.get(self, "recovery_window_in_days")
16116
+
16117
+ @property
16118
+ @pulumi.getter(name="spaceUtilizedInGbs")
16119
+ def space_utilized_in_gbs(self) -> int:
16120
+ """
16121
+ The total space utilized (in GBs) by this Autonomous Container Database on this backup destination, rounded to the nearest integer.
16122
+ """
16123
+ return pulumi.get(self, "space_utilized_in_gbs")
16124
+
16125
+ @property
16126
+ @pulumi.getter(name="timeAtWhichStorageDetailsAreUpdated")
16127
+ def time_at_which_storage_details_are_updated(self) -> str:
16128
+ """
16129
+ The latest timestamp when the backup destination details, such as 'spaceUtilized,' are updated.
16130
+ """
16131
+ return pulumi.get(self, "time_at_which_storage_details_are_updated")
16132
+
16133
+ @property
16134
+ @pulumi.getter
16135
+ def type(self) -> str:
16136
+ """
16137
+ Type of the database backup destination.
16138
+ """
16139
+ return pulumi.get(self, "type")
16140
+
16141
+ @property
16142
+ @pulumi.getter(name="vpcPassword")
16143
+ def vpc_password(self) -> str:
16144
+ """
16145
+ For a RECOVERY_APPLIANCE backup destination, the password for the VPC user that is used to access the Recovery Appliance.
16146
+ """
16147
+ return pulumi.get(self, "vpc_password")
16148
+
16149
+ @property
16150
+ @pulumi.getter(name="vpcUser")
16151
+ def vpc_user(self) -> str:
16152
+ """
16153
+ For a RECOVERY_APPLIANCE backup destination, the Virtual Private Catalog (VPC) user that is used to access the Recovery Appliance.
16154
+ """
16155
+ return pulumi.get(self, "vpc_user")
16156
+
16157
+
15091
16158
  @pulumi.output_type
15092
16159
  class GetAutonomousContainerDatabaseBackupConfigResult(dict):
15093
16160
  def __init__(__self__, *,
@@ -15095,7 +16162,7 @@ class GetAutonomousContainerDatabaseBackupConfigResult(dict):
15095
16162
  recovery_window_in_days: int):
15096
16163
  """
15097
16164
  :param Sequence['GetAutonomousContainerDatabaseBackupConfigBackupDestinationDetailArgs'] backup_destination_details: Backup destination details.
15098
- :param int recovery_window_in_days: Number of days between the current and the earliest point of recoverability covered by automatic backups. This value applies to automatic backups. After a new automatic backup has been created, Oracle removes old automatic backups that are created before the window. When the value is updated, it is applied to all existing automatic backups. If the number of specified days is 0 then there will be no backups.
16165
+ :param int recovery_window_in_days: Number of days between the current and earliest point of recoverability covered by automatic backups.
15099
16166
  """
15100
16167
  pulumi.set(__self__, "backup_destination_details", backup_destination_details)
15101
16168
  pulumi.set(__self__, "recovery_window_in_days", recovery_window_in_days)
@@ -15112,7 +16179,7 @@ class GetAutonomousContainerDatabaseBackupConfigResult(dict):
15112
16179
  @pulumi.getter(name="recoveryWindowInDays")
15113
16180
  def recovery_window_in_days(self) -> int:
15114
16181
  """
15115
- Number of days between the current and the earliest point of recoverability covered by automatic backups. This value applies to automatic backups. After a new automatic backup has been created, Oracle removes old automatic backups that are created before the window. When the value is updated, it is applied to all existing automatic backups. If the number of specified days is 0 then there will be no backups.
16182
+ Number of days between the current and earliest point of recoverability covered by automatic backups.
15116
16183
  """
15117
16184
  return pulumi.get(self, "recovery_window_in_days")
15118
16185
 
@@ -15179,6 +16246,46 @@ class GetAutonomousContainerDatabaseBackupConfigBackupDestinationDetailResult(di
15179
16246
  return pulumi.get(self, "vpc_user")
15180
16247
 
15181
16248
 
16249
+ @pulumi.output_type
16250
+ class GetAutonomousContainerDatabaseBackupDestinationPropertiesListResult(dict):
16251
+ def __init__(__self__, *,
16252
+ backup_destination_attach_histories: Sequence[str],
16253
+ space_utilized_in_gbs: int,
16254
+ time_at_which_storage_details_are_updated: str):
16255
+ """
16256
+ :param Sequence[str] backup_destination_attach_histories: The timestamps at which this backup destination is used as the preferred destination to host the Autonomous Container Database backups.
16257
+ :param int space_utilized_in_gbs: The total space utilized (in GBs) by this Autonomous Container Database on this backup destination, rounded to the nearest integer.
16258
+ :param str time_at_which_storage_details_are_updated: The latest timestamp when the backup destination details, such as 'spaceUtilized,' are updated.
16259
+ """
16260
+ pulumi.set(__self__, "backup_destination_attach_histories", backup_destination_attach_histories)
16261
+ pulumi.set(__self__, "space_utilized_in_gbs", space_utilized_in_gbs)
16262
+ pulumi.set(__self__, "time_at_which_storage_details_are_updated", time_at_which_storage_details_are_updated)
16263
+
16264
+ @property
16265
+ @pulumi.getter(name="backupDestinationAttachHistories")
16266
+ def backup_destination_attach_histories(self) -> Sequence[str]:
16267
+ """
16268
+ The timestamps at which this backup destination is used as the preferred destination to host the Autonomous Container Database backups.
16269
+ """
16270
+ return pulumi.get(self, "backup_destination_attach_histories")
16271
+
16272
+ @property
16273
+ @pulumi.getter(name="spaceUtilizedInGbs")
16274
+ def space_utilized_in_gbs(self) -> int:
16275
+ """
16276
+ The total space utilized (in GBs) by this Autonomous Container Database on this backup destination, rounded to the nearest integer.
16277
+ """
16278
+ return pulumi.get(self, "space_utilized_in_gbs")
16279
+
16280
+ @property
16281
+ @pulumi.getter(name="timeAtWhichStorageDetailsAreUpdated")
16282
+ def time_at_which_storage_details_are_updated(self) -> str:
16283
+ """
16284
+ The latest timestamp when the backup destination details, such as 'spaceUtilized,' are updated.
16285
+ """
16286
+ return pulumi.get(self, "time_at_which_storage_details_are_updated")
16287
+
16288
+
15182
16289
  @pulumi.output_type
15183
16290
  class GetAutonomousContainerDatabaseDataguardAssociationPeerAutonomousContainerDatabaseBackupConfigResult(dict):
15184
16291
  def __init__(__self__, *,
@@ -16001,7 +17108,7 @@ class GetAutonomousContainerDatabasePeerAutonomousContainerDatabaseBackupConfigR
16001
17108
  recovery_window_in_days: int):
16002
17109
  """
16003
17110
  :param Sequence['GetAutonomousContainerDatabasePeerAutonomousContainerDatabaseBackupConfigBackupDestinationDetailArgs'] backup_destination_details: Backup destination details.
16004
- :param int recovery_window_in_days: Number of days between the current and the earliest point of recoverability covered by automatic backups. This value applies to automatic backups. After a new automatic backup has been created, Oracle removes old automatic backups that are created before the window. When the value is updated, it is applied to all existing automatic backups. If the number of specified days is 0 then there will be no backups.
17111
+ :param int recovery_window_in_days: Number of days between the current and earliest point of recoverability covered by automatic backups.
16005
17112
  """
16006
17113
  pulumi.set(__self__, "backup_destination_details", backup_destination_details)
16007
17114
  pulumi.set(__self__, "recovery_window_in_days", recovery_window_in_days)
@@ -16018,7 +17125,7 @@ class GetAutonomousContainerDatabasePeerAutonomousContainerDatabaseBackupConfigR
16018
17125
  @pulumi.getter(name="recoveryWindowInDays")
16019
17126
  def recovery_window_in_days(self) -> int:
16020
17127
  """
16021
- Number of days between the current and the earliest point of recoverability covered by automatic backups. This value applies to automatic backups. After a new automatic backup has been created, Oracle removes old automatic backups that are created before the window. When the value is updated, it is applied to all existing automatic backups. If the number of specified days is 0 then there will be no backups.
17128
+ Number of days between the current and earliest point of recoverability covered by automatic backups.
16022
17129
  """
16023
17130
  return pulumi.get(self, "recovery_window_in_days")
16024
17131
 
@@ -16085,6 +17192,46 @@ class GetAutonomousContainerDatabasePeerAutonomousContainerDatabaseBackupConfigB
16085
17192
  return pulumi.get(self, "vpc_user")
16086
17193
 
16087
17194
 
17195
+ @pulumi.output_type
17196
+ class GetAutonomousContainerDatabaseRecoveryApplianceDetailResult(dict):
17197
+ def __init__(__self__, *,
17198
+ allocated_storage_size_in_gbs: int,
17199
+ recovery_window_in_days: int,
17200
+ time_recovery_appliance_details_updated: str):
17201
+ """
17202
+ :param int allocated_storage_size_in_gbs: The storage size of the backup destination allocated for an Autonomous Container Database to store backups on the recovery appliance, in GBs, rounded to the nearest integer.
17203
+ :param int recovery_window_in_days: Number of days between the current and earliest point of recoverability covered by automatic backups.
17204
+ :param str time_recovery_appliance_details_updated: The time when the recovery appliance details are updated.
17205
+ """
17206
+ pulumi.set(__self__, "allocated_storage_size_in_gbs", allocated_storage_size_in_gbs)
17207
+ pulumi.set(__self__, "recovery_window_in_days", recovery_window_in_days)
17208
+ pulumi.set(__self__, "time_recovery_appliance_details_updated", time_recovery_appliance_details_updated)
17209
+
17210
+ @property
17211
+ @pulumi.getter(name="allocatedStorageSizeInGbs")
17212
+ def allocated_storage_size_in_gbs(self) -> int:
17213
+ """
17214
+ The storage size of the backup destination allocated for an Autonomous Container Database to store backups on the recovery appliance, in GBs, rounded to the nearest integer.
17215
+ """
17216
+ return pulumi.get(self, "allocated_storage_size_in_gbs")
17217
+
17218
+ @property
17219
+ @pulumi.getter(name="recoveryWindowInDays")
17220
+ def recovery_window_in_days(self) -> int:
17221
+ """
17222
+ Number of days between the current and earliest point of recoverability covered by automatic backups.
17223
+ """
17224
+ return pulumi.get(self, "recovery_window_in_days")
17225
+
17226
+ @property
17227
+ @pulumi.getter(name="timeRecoveryApplianceDetailsUpdated")
17228
+ def time_recovery_appliance_details_updated(self) -> str:
17229
+ """
17230
+ The time when the recovery appliance details are updated.
17231
+ """
17232
+ return pulumi.get(self, "time_recovery_appliance_details_updated")
17233
+
17234
+
16088
17235
  @pulumi.output_type
16089
17236
  class GetAutonomousContainerDatabaseResourceUsageAutonomousContainerDatabaseVmUsageResult(dict):
16090
17237
  def __init__(__self__, *,
@@ -16279,11 +17426,13 @@ class GetAutonomousContainerDatabaseVersionsFilterResult(dict):
16279
17426
  @pulumi.output_type
16280
17427
  class GetAutonomousContainerDatabasesAutonomousContainerDatabaseResult(dict):
16281
17428
  def __init__(__self__, *,
17429
+ associated_backup_configuration_details: Sequence['outputs.GetAutonomousContainerDatabasesAutonomousContainerDatabaseAssociatedBackupConfigurationDetailResult'],
16282
17430
  autonomous_exadata_infrastructure_id: str,
16283
17431
  autonomous_vm_cluster_id: str,
16284
17432
  availability_domain: str,
16285
17433
  available_cpus: float,
16286
17434
  backup_configs: Sequence['outputs.GetAutonomousContainerDatabasesAutonomousContainerDatabaseBackupConfigResult'],
17435
+ backup_destination_properties_lists: Sequence['outputs.GetAutonomousContainerDatabasesAutonomousContainerDatabaseBackupDestinationPropertiesListResult'],
16287
17436
  cloud_autonomous_vm_cluster_id: str,
16288
17437
  compartment_id: str,
16289
17438
  compute_model: str,
@@ -16329,6 +17478,7 @@ class GetAutonomousContainerDatabasesAutonomousContainerDatabaseResult(dict):
16329
17478
  provisionable_cpuses: Sequence[float],
16330
17479
  provisioned_cpus: float,
16331
17480
  reclaimable_cpus: float,
17481
+ recovery_appliance_details: Sequence['outputs.GetAutonomousContainerDatabasesAutonomousContainerDatabaseRecoveryApplianceDetailResult'],
16332
17482
  reserved_cpus: float,
16333
17483
  role: str,
16334
17484
  rotate_key_trigger: bool,
@@ -16343,11 +17493,13 @@ class GetAutonomousContainerDatabasesAutonomousContainerDatabaseResult(dict):
16343
17493
  version_preference: str,
16344
17494
  vm_failover_reservation: int):
16345
17495
  """
17496
+ :param Sequence['GetAutonomousContainerDatabasesAutonomousContainerDatabaseAssociatedBackupConfigurationDetailArgs'] associated_backup_configuration_details: A backup config object holds information about preferred backup destinations only. This object holds information about the associated backup destinations, such as secondary backup destinations created for local backups or remote replicated backups.
16346
17497
  :param str autonomous_exadata_infrastructure_id: The Autonomous Exadata Infrastructure [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
16347
17498
  :param str autonomous_vm_cluster_id: The Autonomous VM Cluster [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
16348
17499
  :param str availability_domain: A filter to return only resources that match the given availability domain exactly.
16349
17500
  :param float available_cpus: Sum of CPUs available on the Autonomous VM Cluster + Sum of reclaimable CPUs available in the Autonomous Container Database.<br> For Autonomous Databases on Dedicated Exadata Infrastructure, the CPU type (OCPUs or ECPUs) is determined by the parent Autonomous Exadata VM Cluster's compute model. See [Compute Models in Autonomous Database on Dedicated Exadata Infrastructure](https://docs.oracle.com/en/cloud/paas/autonomous-database/dedicated/adbak) for more details.
16350
17501
  :param Sequence['GetAutonomousContainerDatabasesAutonomousContainerDatabaseBackupConfigArgs'] backup_configs: Backup options for the Autonomous Container Database.
17502
+ :param Sequence['GetAutonomousContainerDatabasesAutonomousContainerDatabaseBackupDestinationPropertiesListArgs'] backup_destination_properties_lists: This list describes the backup destination properties associated with the Autonomous Container Database (ACD) 's preferred backup destination. The object at a given index is associated with the destination present at the same index in the backup destination details list of the ACD Backup Configuration.
16351
17503
  :param str cloud_autonomous_vm_cluster_id: The cloud Autonomous VM Cluster [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
16352
17504
  :param str compartment_id: The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
16353
17505
  :param str compute_model: The compute model of the Autonomous Container Database. For Autonomous Database on Dedicated Exadata Infrastructure, the CPU type (ECPUs or OCPUs) is determined by the parent Autonomous Exadata VM Cluster's compute model. ECPU compute model is the recommended model and OCPU compute model is legacy. See [Compute Models in Autonomous Database on Dedicated Exadata Infrastructure](https://docs.oracle.com/en/cloud/paas/autonomous-database/dedicated/adbak) for more details.
@@ -16379,6 +17531,7 @@ class GetAutonomousContainerDatabasesAutonomousContainerDatabaseResult(dict):
16379
17531
  :param Sequence[float] provisionable_cpuses: An array of CPU values that can be used to successfully provision a single Autonomous Database.
16380
17532
  :param float provisioned_cpus: The number of CPUs provisioned in an Autonomous Container Database.
16381
17533
  :param float reclaimable_cpus: CPUs that continue to be included in the count of CPUs available to the Autonomous Container Database even after one of its Autonomous Database is terminated or scaled down. You can release them to the available CPUs at its parent Autonomous VM Cluster level by restarting the Autonomous Container Database.
17534
+ :param Sequence['GetAutonomousContainerDatabasesAutonomousContainerDatabaseRecoveryApplianceDetailArgs'] recovery_appliance_details: Information about the recovery appliance configuration associated with the Autonomous Container Database.
16382
17535
  :param float reserved_cpus: The number of CPUs reserved in an Autonomous Container Database.
16383
17536
  :param str role: The Data Guard role of the Autonomous Container Database or Autonomous Database, if Autonomous Data Guard is enabled.
16384
17537
  :param str service_level_agreement_type: A filter to return only resources that match the given service level agreement type exactly.
@@ -16392,11 +17545,13 @@ class GetAutonomousContainerDatabasesAutonomousContainerDatabaseResult(dict):
16392
17545
  :param str version_preference: The next maintenance version preference.
16393
17546
  :param int vm_failover_reservation: The percentage of CPUs reserved across nodes to support node failover. Allowed values are 0%, 25%, and 50%, with 50% being the default option.
16394
17547
  """
17548
+ pulumi.set(__self__, "associated_backup_configuration_details", associated_backup_configuration_details)
16395
17549
  pulumi.set(__self__, "autonomous_exadata_infrastructure_id", autonomous_exadata_infrastructure_id)
16396
17550
  pulumi.set(__self__, "autonomous_vm_cluster_id", autonomous_vm_cluster_id)
16397
17551
  pulumi.set(__self__, "availability_domain", availability_domain)
16398
17552
  pulumi.set(__self__, "available_cpus", available_cpus)
16399
17553
  pulumi.set(__self__, "backup_configs", backup_configs)
17554
+ pulumi.set(__self__, "backup_destination_properties_lists", backup_destination_properties_lists)
16400
17555
  pulumi.set(__self__, "cloud_autonomous_vm_cluster_id", cloud_autonomous_vm_cluster_id)
16401
17556
  pulumi.set(__self__, "compartment_id", compartment_id)
16402
17557
  pulumi.set(__self__, "compute_model", compute_model)
@@ -16442,6 +17597,7 @@ class GetAutonomousContainerDatabasesAutonomousContainerDatabaseResult(dict):
16442
17597
  pulumi.set(__self__, "provisionable_cpuses", provisionable_cpuses)
16443
17598
  pulumi.set(__self__, "provisioned_cpus", provisioned_cpus)
16444
17599
  pulumi.set(__self__, "reclaimable_cpus", reclaimable_cpus)
17600
+ pulumi.set(__self__, "recovery_appliance_details", recovery_appliance_details)
16445
17601
  pulumi.set(__self__, "reserved_cpus", reserved_cpus)
16446
17602
  pulumi.set(__self__, "role", role)
16447
17603
  pulumi.set(__self__, "rotate_key_trigger", rotate_key_trigger)
@@ -16456,6 +17612,14 @@ class GetAutonomousContainerDatabasesAutonomousContainerDatabaseResult(dict):
16456
17612
  pulumi.set(__self__, "version_preference", version_preference)
16457
17613
  pulumi.set(__self__, "vm_failover_reservation", vm_failover_reservation)
16458
17614
 
17615
+ @property
17616
+ @pulumi.getter(name="associatedBackupConfigurationDetails")
17617
+ def associated_backup_configuration_details(self) -> Sequence['outputs.GetAutonomousContainerDatabasesAutonomousContainerDatabaseAssociatedBackupConfigurationDetailResult']:
17618
+ """
17619
+ A backup config object holds information about preferred backup destinations only. This object holds information about the associated backup destinations, such as secondary backup destinations created for local backups or remote replicated backups.
17620
+ """
17621
+ return pulumi.get(self, "associated_backup_configuration_details")
17622
+
16459
17623
  @property
16460
17624
  @pulumi.getter(name="autonomousExadataInfrastructureId")
16461
17625
  def autonomous_exadata_infrastructure_id(self) -> str:
@@ -16496,6 +17660,14 @@ class GetAutonomousContainerDatabasesAutonomousContainerDatabaseResult(dict):
16496
17660
  """
16497
17661
  return pulumi.get(self, "backup_configs")
16498
17662
 
17663
+ @property
17664
+ @pulumi.getter(name="backupDestinationPropertiesLists")
17665
+ def backup_destination_properties_lists(self) -> Sequence['outputs.GetAutonomousContainerDatabasesAutonomousContainerDatabaseBackupDestinationPropertiesListResult']:
17666
+ """
17667
+ This list describes the backup destination properties associated with the Autonomous Container Database (ACD) 's preferred backup destination. The object at a given index is associated with the destination present at the same index in the backup destination details list of the ACD Backup Configuration.
17668
+ """
17669
+ return pulumi.get(self, "backup_destination_properties_lists")
17670
+
16499
17671
  @property
16500
17672
  @pulumi.getter(name="cloudAutonomousVmClusterId")
16501
17673
  def cloud_autonomous_vm_cluster_id(self) -> str:
@@ -16814,6 +17986,14 @@ class GetAutonomousContainerDatabasesAutonomousContainerDatabaseResult(dict):
16814
17986
  """
16815
17987
  return pulumi.get(self, "reclaimable_cpus")
16816
17988
 
17989
+ @property
17990
+ @pulumi.getter(name="recoveryApplianceDetails")
17991
+ def recovery_appliance_details(self) -> Sequence['outputs.GetAutonomousContainerDatabasesAutonomousContainerDatabaseRecoveryApplianceDetailResult']:
17992
+ """
17993
+ Information about the recovery appliance configuration associated with the Autonomous Container Database.
17994
+ """
17995
+ return pulumi.get(self, "recovery_appliance_details")
17996
+
16817
17997
  @property
16818
17998
  @pulumi.getter(name="reservedCpus")
16819
17999
  def reserved_cpus(self) -> float:
@@ -16916,6 +18096,123 @@ class GetAutonomousContainerDatabasesAutonomousContainerDatabaseResult(dict):
16916
18096
  return pulumi.get(self, "vm_failover_reservation")
16917
18097
 
16918
18098
 
18099
+ @pulumi.output_type
18100
+ class GetAutonomousContainerDatabasesAutonomousContainerDatabaseAssociatedBackupConfigurationDetailResult(dict):
18101
+ def __init__(__self__, *,
18102
+ backup_destination_attach_histories: Sequence[str],
18103
+ dbrs_policy_id: str,
18104
+ id: str,
18105
+ internet_proxy: str,
18106
+ recovery_window_in_days: int,
18107
+ space_utilized_in_gbs: int,
18108
+ time_at_which_storage_details_are_updated: str,
18109
+ type: str,
18110
+ vpc_password: str,
18111
+ vpc_user: str):
18112
+ """
18113
+ :param Sequence[str] backup_destination_attach_histories: The timestamps at which this backup destination is used as the preferred destination to host the Autonomous Container Database backups.
18114
+ :param str dbrs_policy_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the DBRS policy used for backup.
18115
+ :param str id: The id of the Autonomous Database [Vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts) service key management history entry.
18116
+ :param str internet_proxy: Proxy URL to connect to object store.
18117
+ :param int recovery_window_in_days: Number of days between the current and earliest point of recoverability covered by automatic backups.
18118
+ :param int space_utilized_in_gbs: The total space utilized (in GBs) by this Autonomous Container Database on this backup destination, rounded to the nearest integer.
18119
+ :param str time_at_which_storage_details_are_updated: The latest timestamp when the backup destination details, such as 'spaceUtilized,' are updated.
18120
+ :param str type: Type of the database backup destination.
18121
+ :param str vpc_password: For a RECOVERY_APPLIANCE backup destination, the password for the VPC user that is used to access the Recovery Appliance.
18122
+ :param str vpc_user: For a RECOVERY_APPLIANCE backup destination, the Virtual Private Catalog (VPC) user that is used to access the Recovery Appliance.
18123
+ """
18124
+ pulumi.set(__self__, "backup_destination_attach_histories", backup_destination_attach_histories)
18125
+ pulumi.set(__self__, "dbrs_policy_id", dbrs_policy_id)
18126
+ pulumi.set(__self__, "id", id)
18127
+ pulumi.set(__self__, "internet_proxy", internet_proxy)
18128
+ pulumi.set(__self__, "recovery_window_in_days", recovery_window_in_days)
18129
+ pulumi.set(__self__, "space_utilized_in_gbs", space_utilized_in_gbs)
18130
+ pulumi.set(__self__, "time_at_which_storage_details_are_updated", time_at_which_storage_details_are_updated)
18131
+ pulumi.set(__self__, "type", type)
18132
+ pulumi.set(__self__, "vpc_password", vpc_password)
18133
+ pulumi.set(__self__, "vpc_user", vpc_user)
18134
+
18135
+ @property
18136
+ @pulumi.getter(name="backupDestinationAttachHistories")
18137
+ def backup_destination_attach_histories(self) -> Sequence[str]:
18138
+ """
18139
+ The timestamps at which this backup destination is used as the preferred destination to host the Autonomous Container Database backups.
18140
+ """
18141
+ return pulumi.get(self, "backup_destination_attach_histories")
18142
+
18143
+ @property
18144
+ @pulumi.getter(name="dbrsPolicyId")
18145
+ def dbrs_policy_id(self) -> str:
18146
+ """
18147
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the DBRS policy used for backup.
18148
+ """
18149
+ return pulumi.get(self, "dbrs_policy_id")
18150
+
18151
+ @property
18152
+ @pulumi.getter
18153
+ def id(self) -> str:
18154
+ """
18155
+ The id of the Autonomous Database [Vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts) service key management history entry.
18156
+ """
18157
+ return pulumi.get(self, "id")
18158
+
18159
+ @property
18160
+ @pulumi.getter(name="internetProxy")
18161
+ def internet_proxy(self) -> str:
18162
+ """
18163
+ Proxy URL to connect to object store.
18164
+ """
18165
+ return pulumi.get(self, "internet_proxy")
18166
+
18167
+ @property
18168
+ @pulumi.getter(name="recoveryWindowInDays")
18169
+ def recovery_window_in_days(self) -> int:
18170
+ """
18171
+ Number of days between the current and earliest point of recoverability covered by automatic backups.
18172
+ """
18173
+ return pulumi.get(self, "recovery_window_in_days")
18174
+
18175
+ @property
18176
+ @pulumi.getter(name="spaceUtilizedInGbs")
18177
+ def space_utilized_in_gbs(self) -> int:
18178
+ """
18179
+ The total space utilized (in GBs) by this Autonomous Container Database on this backup destination, rounded to the nearest integer.
18180
+ """
18181
+ return pulumi.get(self, "space_utilized_in_gbs")
18182
+
18183
+ @property
18184
+ @pulumi.getter(name="timeAtWhichStorageDetailsAreUpdated")
18185
+ def time_at_which_storage_details_are_updated(self) -> str:
18186
+ """
18187
+ The latest timestamp when the backup destination details, such as 'spaceUtilized,' are updated.
18188
+ """
18189
+ return pulumi.get(self, "time_at_which_storage_details_are_updated")
18190
+
18191
+ @property
18192
+ @pulumi.getter
18193
+ def type(self) -> str:
18194
+ """
18195
+ Type of the database backup destination.
18196
+ """
18197
+ return pulumi.get(self, "type")
18198
+
18199
+ @property
18200
+ @pulumi.getter(name="vpcPassword")
18201
+ def vpc_password(self) -> str:
18202
+ """
18203
+ For a RECOVERY_APPLIANCE backup destination, the password for the VPC user that is used to access the Recovery Appliance.
18204
+ """
18205
+ return pulumi.get(self, "vpc_password")
18206
+
18207
+ @property
18208
+ @pulumi.getter(name="vpcUser")
18209
+ def vpc_user(self) -> str:
18210
+ """
18211
+ For a RECOVERY_APPLIANCE backup destination, the Virtual Private Catalog (VPC) user that is used to access the Recovery Appliance.
18212
+ """
18213
+ return pulumi.get(self, "vpc_user")
18214
+
18215
+
16919
18216
  @pulumi.output_type
16920
18217
  class GetAutonomousContainerDatabasesAutonomousContainerDatabaseBackupConfigResult(dict):
16921
18218
  def __init__(__self__, *,
@@ -16923,7 +18220,7 @@ class GetAutonomousContainerDatabasesAutonomousContainerDatabaseBackupConfigResu
16923
18220
  recovery_window_in_days: int):
16924
18221
  """
16925
18222
  :param Sequence['GetAutonomousContainerDatabasesAutonomousContainerDatabaseBackupConfigBackupDestinationDetailArgs'] backup_destination_details: Backup destination details.
16926
- :param int recovery_window_in_days: Number of days between the current and the earliest point of recoverability covered by automatic backups. This value applies to automatic backups. After a new automatic backup has been created, Oracle removes old automatic backups that are created before the window. When the value is updated, it is applied to all existing automatic backups. If the number of specified days is 0 then there will be no backups.
18223
+ :param int recovery_window_in_days: Number of days between the current and earliest point of recoverability covered by automatic backups.
16927
18224
  """
16928
18225
  pulumi.set(__self__, "backup_destination_details", backup_destination_details)
16929
18226
  pulumi.set(__self__, "recovery_window_in_days", recovery_window_in_days)
@@ -16940,7 +18237,7 @@ class GetAutonomousContainerDatabasesAutonomousContainerDatabaseBackupConfigResu
16940
18237
  @pulumi.getter(name="recoveryWindowInDays")
16941
18238
  def recovery_window_in_days(self) -> int:
16942
18239
  """
16943
- Number of days between the current and the earliest point of recoverability covered by automatic backups. This value applies to automatic backups. After a new automatic backup has been created, Oracle removes old automatic backups that are created before the window. When the value is updated, it is applied to all existing automatic backups. If the number of specified days is 0 then there will be no backups.
18240
+ Number of days between the current and earliest point of recoverability covered by automatic backups.
16944
18241
  """
16945
18242
  return pulumi.get(self, "recovery_window_in_days")
16946
18243
 
@@ -17007,6 +18304,46 @@ class GetAutonomousContainerDatabasesAutonomousContainerDatabaseBackupConfigBack
17007
18304
  return pulumi.get(self, "vpc_user")
17008
18305
 
17009
18306
 
18307
+ @pulumi.output_type
18308
+ class GetAutonomousContainerDatabasesAutonomousContainerDatabaseBackupDestinationPropertiesListResult(dict):
18309
+ def __init__(__self__, *,
18310
+ backup_destination_attach_histories: Sequence[str],
18311
+ space_utilized_in_gbs: int,
18312
+ time_at_which_storage_details_are_updated: str):
18313
+ """
18314
+ :param Sequence[str] backup_destination_attach_histories: The timestamps at which this backup destination is used as the preferred destination to host the Autonomous Container Database backups.
18315
+ :param int space_utilized_in_gbs: The total space utilized (in GBs) by this Autonomous Container Database on this backup destination, rounded to the nearest integer.
18316
+ :param str time_at_which_storage_details_are_updated: The latest timestamp when the backup destination details, such as 'spaceUtilized,' are updated.
18317
+ """
18318
+ pulumi.set(__self__, "backup_destination_attach_histories", backup_destination_attach_histories)
18319
+ pulumi.set(__self__, "space_utilized_in_gbs", space_utilized_in_gbs)
18320
+ pulumi.set(__self__, "time_at_which_storage_details_are_updated", time_at_which_storage_details_are_updated)
18321
+
18322
+ @property
18323
+ @pulumi.getter(name="backupDestinationAttachHistories")
18324
+ def backup_destination_attach_histories(self) -> Sequence[str]:
18325
+ """
18326
+ The timestamps at which this backup destination is used as the preferred destination to host the Autonomous Container Database backups.
18327
+ """
18328
+ return pulumi.get(self, "backup_destination_attach_histories")
18329
+
18330
+ @property
18331
+ @pulumi.getter(name="spaceUtilizedInGbs")
18332
+ def space_utilized_in_gbs(self) -> int:
18333
+ """
18334
+ The total space utilized (in GBs) by this Autonomous Container Database on this backup destination, rounded to the nearest integer.
18335
+ """
18336
+ return pulumi.get(self, "space_utilized_in_gbs")
18337
+
18338
+ @property
18339
+ @pulumi.getter(name="timeAtWhichStorageDetailsAreUpdated")
18340
+ def time_at_which_storage_details_are_updated(self) -> str:
18341
+ """
18342
+ The latest timestamp when the backup destination details, such as 'spaceUtilized,' are updated.
18343
+ """
18344
+ return pulumi.get(self, "time_at_which_storage_details_are_updated")
18345
+
18346
+
17010
18347
  @pulumi.output_type
17011
18348
  class GetAutonomousContainerDatabasesAutonomousContainerDatabaseKeyHistoryEntryResult(dict):
17012
18349
  def __init__(__self__, *,
@@ -17397,7 +18734,7 @@ class GetAutonomousContainerDatabasesAutonomousContainerDatabasePeerAutonomousCo
17397
18734
  recovery_window_in_days: int):
17398
18735
  """
17399
18736
  :param Sequence['GetAutonomousContainerDatabasesAutonomousContainerDatabasePeerAutonomousContainerDatabaseBackupConfigBackupDestinationDetailArgs'] backup_destination_details: Backup destination details.
17400
- :param int recovery_window_in_days: Number of days between the current and the earliest point of recoverability covered by automatic backups. This value applies to automatic backups. After a new automatic backup has been created, Oracle removes old automatic backups that are created before the window. When the value is updated, it is applied to all existing automatic backups. If the number of specified days is 0 then there will be no backups.
18737
+ :param int recovery_window_in_days: Number of days between the current and earliest point of recoverability covered by automatic backups.
17401
18738
  """
17402
18739
  pulumi.set(__self__, "backup_destination_details", backup_destination_details)
17403
18740
  pulumi.set(__self__, "recovery_window_in_days", recovery_window_in_days)
@@ -17414,7 +18751,7 @@ class GetAutonomousContainerDatabasesAutonomousContainerDatabasePeerAutonomousCo
17414
18751
  @pulumi.getter(name="recoveryWindowInDays")
17415
18752
  def recovery_window_in_days(self) -> int:
17416
18753
  """
17417
- Number of days between the current and the earliest point of recoverability covered by automatic backups. This value applies to automatic backups. After a new automatic backup has been created, Oracle removes old automatic backups that are created before the window. When the value is updated, it is applied to all existing automatic backups. If the number of specified days is 0 then there will be no backups.
18754
+ Number of days between the current and earliest point of recoverability covered by automatic backups.
17418
18755
  """
17419
18756
  return pulumi.get(self, "recovery_window_in_days")
17420
18757
 
@@ -17481,6 +18818,46 @@ class GetAutonomousContainerDatabasesAutonomousContainerDatabasePeerAutonomousCo
17481
18818
  return pulumi.get(self, "vpc_user")
17482
18819
 
17483
18820
 
18821
+ @pulumi.output_type
18822
+ class GetAutonomousContainerDatabasesAutonomousContainerDatabaseRecoveryApplianceDetailResult(dict):
18823
+ def __init__(__self__, *,
18824
+ allocated_storage_size_in_gbs: int,
18825
+ recovery_window_in_days: int,
18826
+ time_recovery_appliance_details_updated: str):
18827
+ """
18828
+ :param int allocated_storage_size_in_gbs: The storage size of the backup destination allocated for an Autonomous Container Database to store backups on the recovery appliance, in GBs, rounded to the nearest integer.
18829
+ :param int recovery_window_in_days: Number of days between the current and earliest point of recoverability covered by automatic backups.
18830
+ :param str time_recovery_appliance_details_updated: The time when the recovery appliance details are updated.
18831
+ """
18832
+ pulumi.set(__self__, "allocated_storage_size_in_gbs", allocated_storage_size_in_gbs)
18833
+ pulumi.set(__self__, "recovery_window_in_days", recovery_window_in_days)
18834
+ pulumi.set(__self__, "time_recovery_appliance_details_updated", time_recovery_appliance_details_updated)
18835
+
18836
+ @property
18837
+ @pulumi.getter(name="allocatedStorageSizeInGbs")
18838
+ def allocated_storage_size_in_gbs(self) -> int:
18839
+ """
18840
+ The storage size of the backup destination allocated for an Autonomous Container Database to store backups on the recovery appliance, in GBs, rounded to the nearest integer.
18841
+ """
18842
+ return pulumi.get(self, "allocated_storage_size_in_gbs")
18843
+
18844
+ @property
18845
+ @pulumi.getter(name="recoveryWindowInDays")
18846
+ def recovery_window_in_days(self) -> int:
18847
+ """
18848
+ Number of days between the current and earliest point of recoverability covered by automatic backups.
18849
+ """
18850
+ return pulumi.get(self, "recovery_window_in_days")
18851
+
18852
+ @property
18853
+ @pulumi.getter(name="timeRecoveryApplianceDetailsUpdated")
18854
+ def time_recovery_appliance_details_updated(self) -> str:
18855
+ """
18856
+ The time when the recovery appliance details are updated.
18857
+ """
18858
+ return pulumi.get(self, "time_recovery_appliance_details_updated")
18859
+
18860
+
17484
18861
  @pulumi.output_type
17485
18862
  class GetAutonomousContainerDatabasesFilterResult(dict):
17486
18863
  def __init__(__self__, *,
@@ -19091,23 +20468,32 @@ class GetAutonomousDatabaseLocalStandbyDbResult(dict):
19091
20468
  availability_domain: str,
19092
20469
  lag_time_in_seconds: int,
19093
20470
  lifecycle_details: str,
20471
+ maintenance_target_component: str,
19094
20472
  state: str,
19095
20473
  time_data_guard_role_changed: str,
19096
- time_disaster_recovery_role_changed: str):
20474
+ time_disaster_recovery_role_changed: str,
20475
+ time_maintenance_begin: str,
20476
+ time_maintenance_end: str):
19097
20477
  """
19098
20478
  :param str availability_domain: The availability domain of a local Autonomous Data Guard standby database of an Autonomous Database Serverless instance.
19099
20479
  :param int lag_time_in_seconds: The amount of time, in seconds, that the data of the standby database lags the data of the primary database. Can be used to determine the potential data loss in the event of a failover.
19100
20480
  :param str lifecycle_details: Additional information about the current lifecycle state.
20481
+ :param str maintenance_target_component: The component chosen for maintenance.
19101
20482
  :param str state: The current state of the Autonomous Database.
19102
20483
  :param str time_data_guard_role_changed: The date and time the Autonomous Data Guard role was switched for the Autonomous Database. For databases that have standbys in both the primary Data Guard region and a remote Data Guard standby region, this is the latest timestamp of either the database using the "primary" role in the primary Data Guard region, or database located in the remote Data Guard standby region.
19103
20484
  :param str time_disaster_recovery_role_changed: The date and time the Disaster Recovery role was switched for the standby Autonomous Database.
20485
+ :param str time_maintenance_begin: The date and time when maintenance will begin.
20486
+ :param str time_maintenance_end: The date and time when maintenance will end.
19104
20487
  """
19105
20488
  pulumi.set(__self__, "availability_domain", availability_domain)
19106
20489
  pulumi.set(__self__, "lag_time_in_seconds", lag_time_in_seconds)
19107
20490
  pulumi.set(__self__, "lifecycle_details", lifecycle_details)
20491
+ pulumi.set(__self__, "maintenance_target_component", maintenance_target_component)
19108
20492
  pulumi.set(__self__, "state", state)
19109
20493
  pulumi.set(__self__, "time_data_guard_role_changed", time_data_guard_role_changed)
19110
20494
  pulumi.set(__self__, "time_disaster_recovery_role_changed", time_disaster_recovery_role_changed)
20495
+ pulumi.set(__self__, "time_maintenance_begin", time_maintenance_begin)
20496
+ pulumi.set(__self__, "time_maintenance_end", time_maintenance_end)
19111
20497
 
19112
20498
  @property
19113
20499
  @pulumi.getter(name="availabilityDomain")
@@ -19133,6 +20519,14 @@ class GetAutonomousDatabaseLocalStandbyDbResult(dict):
19133
20519
  """
19134
20520
  return pulumi.get(self, "lifecycle_details")
19135
20521
 
20522
+ @property
20523
+ @pulumi.getter(name="maintenanceTargetComponent")
20524
+ def maintenance_target_component(self) -> str:
20525
+ """
20526
+ The component chosen for maintenance.
20527
+ """
20528
+ return pulumi.get(self, "maintenance_target_component")
20529
+
19136
20530
  @property
19137
20531
  @pulumi.getter
19138
20532
  def state(self) -> str:
@@ -19157,6 +20551,22 @@ class GetAutonomousDatabaseLocalStandbyDbResult(dict):
19157
20551
  """
19158
20552
  return pulumi.get(self, "time_disaster_recovery_role_changed")
19159
20553
 
20554
+ @property
20555
+ @pulumi.getter(name="timeMaintenanceBegin")
20556
+ def time_maintenance_begin(self) -> str:
20557
+ """
20558
+ The date and time when maintenance will begin.
20559
+ """
20560
+ return pulumi.get(self, "time_maintenance_begin")
20561
+
20562
+ @property
20563
+ @pulumi.getter(name="timeMaintenanceEnd")
20564
+ def time_maintenance_end(self) -> str:
20565
+ """
20566
+ The date and time when maintenance will end.
20567
+ """
20568
+ return pulumi.get(self, "time_maintenance_end")
20569
+
19160
20570
 
19161
20571
  @pulumi.output_type
19162
20572
  class GetAutonomousDatabaseLongTermBackupScheduleResult(dict):
@@ -19775,23 +21185,32 @@ class GetAutonomousDatabaseStandbyDbResult(dict):
19775
21185
  availability_domain: str,
19776
21186
  lag_time_in_seconds: int,
19777
21187
  lifecycle_details: str,
21188
+ maintenance_target_component: str,
19778
21189
  state: str,
19779
21190
  time_data_guard_role_changed: str,
19780
- time_disaster_recovery_role_changed: str):
21191
+ time_disaster_recovery_role_changed: str,
21192
+ time_maintenance_begin: str,
21193
+ time_maintenance_end: str):
19781
21194
  """
19782
21195
  :param str availability_domain: The availability domain of a local Autonomous Data Guard standby database of an Autonomous Database Serverless instance.
19783
21196
  :param int lag_time_in_seconds: The amount of time, in seconds, that the data of the standby database lags the data of the primary database. Can be used to determine the potential data loss in the event of a failover.
19784
21197
  :param str lifecycle_details: Additional information about the current lifecycle state.
21198
+ :param str maintenance_target_component: The component chosen for maintenance.
19785
21199
  :param str state: The current state of the Autonomous Database.
19786
21200
  :param str time_data_guard_role_changed: The date and time the Autonomous Data Guard role was switched for the Autonomous Database. For databases that have standbys in both the primary Data Guard region and a remote Data Guard standby region, this is the latest timestamp of either the database using the "primary" role in the primary Data Guard region, or database located in the remote Data Guard standby region.
19787
21201
  :param str time_disaster_recovery_role_changed: The date and time the Disaster Recovery role was switched for the standby Autonomous Database.
21202
+ :param str time_maintenance_begin: The date and time when maintenance will begin.
21203
+ :param str time_maintenance_end: The date and time when maintenance will end.
19788
21204
  """
19789
21205
  pulumi.set(__self__, "availability_domain", availability_domain)
19790
21206
  pulumi.set(__self__, "lag_time_in_seconds", lag_time_in_seconds)
19791
21207
  pulumi.set(__self__, "lifecycle_details", lifecycle_details)
21208
+ pulumi.set(__self__, "maintenance_target_component", maintenance_target_component)
19792
21209
  pulumi.set(__self__, "state", state)
19793
21210
  pulumi.set(__self__, "time_data_guard_role_changed", time_data_guard_role_changed)
19794
21211
  pulumi.set(__self__, "time_disaster_recovery_role_changed", time_disaster_recovery_role_changed)
21212
+ pulumi.set(__self__, "time_maintenance_begin", time_maintenance_begin)
21213
+ pulumi.set(__self__, "time_maintenance_end", time_maintenance_end)
19795
21214
 
19796
21215
  @property
19797
21216
  @pulumi.getter(name="availabilityDomain")
@@ -19817,6 +21236,14 @@ class GetAutonomousDatabaseStandbyDbResult(dict):
19817
21236
  """
19818
21237
  return pulumi.get(self, "lifecycle_details")
19819
21238
 
21239
+ @property
21240
+ @pulumi.getter(name="maintenanceTargetComponent")
21241
+ def maintenance_target_component(self) -> str:
21242
+ """
21243
+ The component chosen for maintenance.
21244
+ """
21245
+ return pulumi.get(self, "maintenance_target_component")
21246
+
19820
21247
  @property
19821
21248
  @pulumi.getter
19822
21249
  def state(self) -> str:
@@ -19841,6 +21268,22 @@ class GetAutonomousDatabaseStandbyDbResult(dict):
19841
21268
  """
19842
21269
  return pulumi.get(self, "time_disaster_recovery_role_changed")
19843
21270
 
21271
+ @property
21272
+ @pulumi.getter(name="timeMaintenanceBegin")
21273
+ def time_maintenance_begin(self) -> str:
21274
+ """
21275
+ The date and time when maintenance will begin.
21276
+ """
21277
+ return pulumi.get(self, "time_maintenance_begin")
21278
+
21279
+ @property
21280
+ @pulumi.getter(name="timeMaintenanceEnd")
21281
+ def time_maintenance_end(self) -> str:
21282
+ """
21283
+ The date and time when maintenance will end.
21284
+ """
21285
+ return pulumi.get(self, "time_maintenance_end")
21286
+
19844
21287
 
19845
21288
  @pulumi.output_type
19846
21289
  class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
@@ -19862,6 +21305,7 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
19862
21305
  backup_retention_period_in_days: int,
19863
21306
  byol_compute_count_limit: float,
19864
21307
  character_set: str,
21308
+ clone_table_space_lists: Sequence[int],
19865
21309
  clone_type: str,
19866
21310
  cluster_placement_group_id: str,
19867
21311
  compartment_id: str,
@@ -19924,6 +21368,7 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
19924
21368
  local_disaster_recovery_type: str,
19925
21369
  local_standby_dbs: Sequence['outputs.GetAutonomousDatabasesAutonomousDatabaseLocalStandbyDbResult'],
19926
21370
  long_term_backup_schedules: Sequence['outputs.GetAutonomousDatabasesAutonomousDatabaseLongTermBackupScheduleResult'],
21371
+ maintenance_target_component: str,
19927
21372
  max_cpu_core_count: int,
19928
21373
  memory_per_oracle_compute_unit_in_gbs: int,
19929
21374
  ncharacter_set: str,
@@ -20005,6 +21450,7 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
20005
21450
  :param Sequence['GetAutonomousDatabasesAutonomousDatabaseBackupConfigArgs'] backup_configs: 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.
20006
21451
  :param int backup_retention_period_in_days: Retention period, in days, for backups.
20007
21452
  :param str character_set: The character set for the autonomous database. The default is AL32UTF8. Allowed values are:
21453
+ :param Sequence[int] clone_table_space_lists: A list of the source Autonomous Database's table space number(s) used to create this partial clone from the backup.
20008
21454
  :param str cluster_placement_group_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cluster placement group of the Autonomous Serverless Database.
20009
21455
  :param str compartment_id: The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
20010
21456
  :param float compute_count: Compute used by database tools.
@@ -20064,6 +21510,7 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
20064
21510
  :param str local_disaster_recovery_type: Indicates the local disaster recovery (DR) type of the Autonomous Database Serverless instance. Autonomous Data Guard (ADG) DR type provides business critical DR with a faster recovery time objective (RTO) during failover or switchover. Backup-based DR type provides lower cost DR with a slower RTO during failover or switchover.
20065
21511
  :param Sequence['GetAutonomousDatabasesAutonomousDatabaseLocalStandbyDbArgs'] local_standby_dbs: Autonomous Data Guard standby database details.
20066
21512
  :param Sequence['GetAutonomousDatabasesAutonomousDatabaseLongTermBackupScheduleArgs'] long_term_backup_schedules: Details for the long-term backup schedule.
21513
+ :param str maintenance_target_component: The component chosen for maintenance.
20067
21514
  :param int max_cpu_core_count: The number of Max OCPU cores to be made available to the autonomous database with auto scaling of cpu enabled.
20068
21515
  :param int memory_per_oracle_compute_unit_in_gbs: The amount of memory (in GBs) enabled per ECPU or OCPU.
20069
21516
  :param str ncharacter_set: The national character set for the autonomous database. The default is AL16UTF16. Allowed values are: AL16UTF16 or UTF8.
@@ -20141,6 +21588,7 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
20141
21588
  pulumi.set(__self__, "backup_retention_period_in_days", backup_retention_period_in_days)
20142
21589
  pulumi.set(__self__, "byol_compute_count_limit", byol_compute_count_limit)
20143
21590
  pulumi.set(__self__, "character_set", character_set)
21591
+ pulumi.set(__self__, "clone_table_space_lists", clone_table_space_lists)
20144
21592
  pulumi.set(__self__, "clone_type", clone_type)
20145
21593
  pulumi.set(__self__, "cluster_placement_group_id", cluster_placement_group_id)
20146
21594
  pulumi.set(__self__, "compartment_id", compartment_id)
@@ -20203,6 +21651,7 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
20203
21651
  pulumi.set(__self__, "local_disaster_recovery_type", local_disaster_recovery_type)
20204
21652
  pulumi.set(__self__, "local_standby_dbs", local_standby_dbs)
20205
21653
  pulumi.set(__self__, "long_term_backup_schedules", long_term_backup_schedules)
21654
+ pulumi.set(__self__, "maintenance_target_component", maintenance_target_component)
20206
21655
  pulumi.set(__self__, "max_cpu_core_count", max_cpu_core_count)
20207
21656
  pulumi.set(__self__, "memory_per_oracle_compute_unit_in_gbs", memory_per_oracle_compute_unit_in_gbs)
20208
21657
  pulumi.set(__self__, "ncharacter_set", ncharacter_set)
@@ -20395,6 +21844,14 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
20395
21844
  """
20396
21845
  return pulumi.get(self, "character_set")
20397
21846
 
21847
+ @property
21848
+ @pulumi.getter(name="cloneTableSpaceLists")
21849
+ def clone_table_space_lists(self) -> Sequence[int]:
21850
+ """
21851
+ A list of the source Autonomous Database's table space number(s) used to create this partial clone from the backup.
21852
+ """
21853
+ return pulumi.get(self, "clone_table_space_lists")
21854
+
20398
21855
  @property
20399
21856
  @pulumi.getter(name="cloneType")
20400
21857
  def clone_type(self) -> str:
@@ -20881,6 +22338,14 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
20881
22338
  """
20882
22339
  return pulumi.get(self, "long_term_backup_schedules")
20883
22340
 
22341
+ @property
22342
+ @pulumi.getter(name="maintenanceTargetComponent")
22343
+ def maintenance_target_component(self) -> str:
22344
+ """
22345
+ The component chosen for maintenance.
22346
+ """
22347
+ return pulumi.get(self, "maintenance_target_component")
22348
+
20884
22349
  @property
20885
22350
  @pulumi.getter(name="maxCpuCoreCount")
20886
22351
  def max_cpu_core_count(self) -> int:
@@ -22195,23 +23660,32 @@ class GetAutonomousDatabasesAutonomousDatabaseLocalStandbyDbResult(dict):
22195
23660
  availability_domain: str,
22196
23661
  lag_time_in_seconds: int,
22197
23662
  lifecycle_details: str,
23663
+ maintenance_target_component: str,
22198
23664
  state: str,
22199
23665
  time_data_guard_role_changed: str,
22200
- time_disaster_recovery_role_changed: str):
23666
+ time_disaster_recovery_role_changed: str,
23667
+ time_maintenance_begin: str,
23668
+ time_maintenance_end: str):
22201
23669
  """
22202
23670
  :param str availability_domain: The availability domain of a local Autonomous Data Guard standby database of an Autonomous Database Serverless instance.
22203
23671
  :param int lag_time_in_seconds: The amount of time, in seconds, that the data of the standby database lags the data of the primary database. Can be used to determine the potential data loss in the event of a failover.
22204
23672
  :param str lifecycle_details: Additional information about the current lifecycle state.
23673
+ :param str maintenance_target_component: The component chosen for maintenance.
22205
23674
  :param str state: A filter to return only resources that match the given lifecycle state exactly.
22206
23675
  :param str time_data_guard_role_changed: The date and time the Autonomous Data Guard role was switched for the Autonomous Database. For databases that have standbys in both the primary Data Guard region and a remote Data Guard standby region, this is the latest timestamp of either the database using the "primary" role in the primary Data Guard region, or database located in the remote Data Guard standby region.
22207
23676
  :param str time_disaster_recovery_role_changed: The date and time the Disaster Recovery role was switched for the standby Autonomous Database.
23677
+ :param str time_maintenance_begin: The date and time when maintenance will begin.
23678
+ :param str time_maintenance_end: The date and time when maintenance will end.
22208
23679
  """
22209
23680
  pulumi.set(__self__, "availability_domain", availability_domain)
22210
23681
  pulumi.set(__self__, "lag_time_in_seconds", lag_time_in_seconds)
22211
23682
  pulumi.set(__self__, "lifecycle_details", lifecycle_details)
23683
+ pulumi.set(__self__, "maintenance_target_component", maintenance_target_component)
22212
23684
  pulumi.set(__self__, "state", state)
22213
23685
  pulumi.set(__self__, "time_data_guard_role_changed", time_data_guard_role_changed)
22214
23686
  pulumi.set(__self__, "time_disaster_recovery_role_changed", time_disaster_recovery_role_changed)
23687
+ pulumi.set(__self__, "time_maintenance_begin", time_maintenance_begin)
23688
+ pulumi.set(__self__, "time_maintenance_end", time_maintenance_end)
22215
23689
 
22216
23690
  @property
22217
23691
  @pulumi.getter(name="availabilityDomain")
@@ -22237,6 +23711,14 @@ class GetAutonomousDatabasesAutonomousDatabaseLocalStandbyDbResult(dict):
22237
23711
  """
22238
23712
  return pulumi.get(self, "lifecycle_details")
22239
23713
 
23714
+ @property
23715
+ @pulumi.getter(name="maintenanceTargetComponent")
23716
+ def maintenance_target_component(self) -> str:
23717
+ """
23718
+ The component chosen for maintenance.
23719
+ """
23720
+ return pulumi.get(self, "maintenance_target_component")
23721
+
22240
23722
  @property
22241
23723
  @pulumi.getter
22242
23724
  def state(self) -> str:
@@ -22261,6 +23743,22 @@ class GetAutonomousDatabasesAutonomousDatabaseLocalStandbyDbResult(dict):
22261
23743
  """
22262
23744
  return pulumi.get(self, "time_disaster_recovery_role_changed")
22263
23745
 
23746
+ @property
23747
+ @pulumi.getter(name="timeMaintenanceBegin")
23748
+ def time_maintenance_begin(self) -> str:
23749
+ """
23750
+ The date and time when maintenance will begin.
23751
+ """
23752
+ return pulumi.get(self, "time_maintenance_begin")
23753
+
23754
+ @property
23755
+ @pulumi.getter(name="timeMaintenanceEnd")
23756
+ def time_maintenance_end(self) -> str:
23757
+ """
23758
+ The date and time when maintenance will end.
23759
+ """
23760
+ return pulumi.get(self, "time_maintenance_end")
23761
+
22264
23762
 
22265
23763
  @pulumi.output_type
22266
23764
  class GetAutonomousDatabasesAutonomousDatabaseLongTermBackupScheduleResult(dict):
@@ -22552,23 +24050,32 @@ class GetAutonomousDatabasesAutonomousDatabaseStandbyDbResult(dict):
22552
24050
  availability_domain: str,
22553
24051
  lag_time_in_seconds: int,
22554
24052
  lifecycle_details: str,
24053
+ maintenance_target_component: str,
22555
24054
  state: str,
22556
24055
  time_data_guard_role_changed: str,
22557
- time_disaster_recovery_role_changed: str):
24056
+ time_disaster_recovery_role_changed: str,
24057
+ time_maintenance_begin: str,
24058
+ time_maintenance_end: str):
22558
24059
  """
22559
24060
  :param str availability_domain: The availability domain of a local Autonomous Data Guard standby database of an Autonomous Database Serverless instance.
22560
24061
  :param int lag_time_in_seconds: The amount of time, in seconds, that the data of the standby database lags the data of the primary database. Can be used to determine the potential data loss in the event of a failover.
22561
24062
  :param str lifecycle_details: Additional information about the current lifecycle state.
24063
+ :param str maintenance_target_component: The component chosen for maintenance.
22562
24064
  :param str state: A filter to return only resources that match the given lifecycle state exactly.
22563
24065
  :param str time_data_guard_role_changed: The date and time the Autonomous Data Guard role was switched for the Autonomous Database. For databases that have standbys in both the primary Data Guard region and a remote Data Guard standby region, this is the latest timestamp of either the database using the "primary" role in the primary Data Guard region, or database located in the remote Data Guard standby region.
22564
24066
  :param str time_disaster_recovery_role_changed: The date and time the Disaster Recovery role was switched for the standby Autonomous Database.
24067
+ :param str time_maintenance_begin: The date and time when maintenance will begin.
24068
+ :param str time_maintenance_end: The date and time when maintenance will end.
22565
24069
  """
22566
24070
  pulumi.set(__self__, "availability_domain", availability_domain)
22567
24071
  pulumi.set(__self__, "lag_time_in_seconds", lag_time_in_seconds)
22568
24072
  pulumi.set(__self__, "lifecycle_details", lifecycle_details)
24073
+ pulumi.set(__self__, "maintenance_target_component", maintenance_target_component)
22569
24074
  pulumi.set(__self__, "state", state)
22570
24075
  pulumi.set(__self__, "time_data_guard_role_changed", time_data_guard_role_changed)
22571
24076
  pulumi.set(__self__, "time_disaster_recovery_role_changed", time_disaster_recovery_role_changed)
24077
+ pulumi.set(__self__, "time_maintenance_begin", time_maintenance_begin)
24078
+ pulumi.set(__self__, "time_maintenance_end", time_maintenance_end)
22572
24079
 
22573
24080
  @property
22574
24081
  @pulumi.getter(name="availabilityDomain")
@@ -22594,6 +24101,14 @@ class GetAutonomousDatabasesAutonomousDatabaseStandbyDbResult(dict):
22594
24101
  """
22595
24102
  return pulumi.get(self, "lifecycle_details")
22596
24103
 
24104
+ @property
24105
+ @pulumi.getter(name="maintenanceTargetComponent")
24106
+ def maintenance_target_component(self) -> str:
24107
+ """
24108
+ The component chosen for maintenance.
24109
+ """
24110
+ return pulumi.get(self, "maintenance_target_component")
24111
+
22597
24112
  @property
22598
24113
  @pulumi.getter
22599
24114
  def state(self) -> str:
@@ -22618,6 +24133,22 @@ class GetAutonomousDatabasesAutonomousDatabaseStandbyDbResult(dict):
22618
24133
  """
22619
24134
  return pulumi.get(self, "time_disaster_recovery_role_changed")
22620
24135
 
24136
+ @property
24137
+ @pulumi.getter(name="timeMaintenanceBegin")
24138
+ def time_maintenance_begin(self) -> str:
24139
+ """
24140
+ The date and time when maintenance will begin.
24141
+ """
24142
+ return pulumi.get(self, "time_maintenance_begin")
24143
+
24144
+ @property
24145
+ @pulumi.getter(name="timeMaintenanceEnd")
24146
+ def time_maintenance_end(self) -> str:
24147
+ """
24148
+ The date and time when maintenance will end.
24149
+ """
24150
+ return pulumi.get(self, "time_maintenance_end")
24151
+
22621
24152
 
22622
24153
  @pulumi.output_type
22623
24154
  class GetAutonomousDatabasesClonesAutonomousDatabaseResult(dict):
@@ -22636,6 +24167,7 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseResult(dict):
22636
24167
  backup_retention_period_in_days: int,
22637
24168
  byol_compute_count_limit: float,
22638
24169
  character_set: str,
24170
+ clone_table_space_lists: Sequence[int],
22639
24171
  cluster_placement_group_id: str,
22640
24172
  compartment_id: str,
22641
24173
  compute_count: float,
@@ -22691,6 +24223,7 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseResult(dict):
22691
24223
  local_disaster_recovery_type: str,
22692
24224
  local_standby_dbs: Sequence['outputs.GetAutonomousDatabasesClonesAutonomousDatabaseLocalStandbyDbResult'],
22693
24225
  long_term_backup_schedules: Sequence['outputs.GetAutonomousDatabasesClonesAutonomousDatabaseLongTermBackupScheduleResult'],
24226
+ maintenance_target_component: str,
22694
24227
  max_cpu_core_count: int,
22695
24228
  memory_per_oracle_compute_unit_in_gbs: int,
22696
24229
  ncharacter_set: str,
@@ -22758,6 +24291,7 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseResult(dict):
22758
24291
  :param Sequence['GetAutonomousDatabasesClonesAutonomousDatabaseBackupConfigArgs'] backup_configs: 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.
22759
24292
  :param int backup_retention_period_in_days: Retention period, in days, for backups.
22760
24293
  :param str character_set: The character set for the autonomous database. The default is AL32UTF8. Allowed values are:
24294
+ :param Sequence[int] clone_table_space_lists: A list of the source Autonomous Database's table space number(s) used to create this partial clone from the backup.
22761
24295
  :param str cluster_placement_group_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cluster placement group of the Autonomous Serverless Database.
22762
24296
  :param str compartment_id: The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
22763
24297
  :param float compute_count: Compute used by database tools.
@@ -22817,6 +24351,7 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseResult(dict):
22817
24351
  :param str local_disaster_recovery_type: Indicates the local disaster recovery (DR) type of the Autonomous Database Serverless instance. Autonomous Data Guard (ADG) DR type provides business critical DR with a faster recovery time objective (RTO) during failover or switchover. Backup-based DR type provides lower cost DR with a slower RTO during failover or switchover.
22818
24352
  :param Sequence['GetAutonomousDatabasesClonesAutonomousDatabaseLocalStandbyDbArgs'] local_standby_dbs: Autonomous Data Guard standby database details.* `availability_domain` - The availability domain of a local Autonomous Data Guard standby database of an Autonomous Database Serverless instance.
22819
24353
  :param Sequence['GetAutonomousDatabasesClonesAutonomousDatabaseLongTermBackupScheduleArgs'] long_term_backup_schedules: Details for the long-term backup schedule.
24354
+ :param str maintenance_target_component: The component chosen for maintenance.
22820
24355
  :param int max_cpu_core_count: The number of Max OCPU cores to be made available to the autonomous database with auto scaling of cpu enabled.
22821
24356
  :param int memory_per_oracle_compute_unit_in_gbs: The amount of memory (in GBs) enabled per OCPU or ECPU. See [Compute Models in Autonomous Database on Dedicated Exadata Infrastructure](https://docs.oracle.com/en/cloud/paas/autonomous-database/dedicated/adbak) for more details.
22822
24357
  :param str ncharacter_set: The national character set for the autonomous database. The default is AL16UTF16. Allowed values are: AL16UTF16 or UTF8.
@@ -22889,6 +24424,7 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseResult(dict):
22889
24424
  pulumi.set(__self__, "backup_retention_period_in_days", backup_retention_period_in_days)
22890
24425
  pulumi.set(__self__, "byol_compute_count_limit", byol_compute_count_limit)
22891
24426
  pulumi.set(__self__, "character_set", character_set)
24427
+ pulumi.set(__self__, "clone_table_space_lists", clone_table_space_lists)
22892
24428
  pulumi.set(__self__, "cluster_placement_group_id", cluster_placement_group_id)
22893
24429
  pulumi.set(__self__, "compartment_id", compartment_id)
22894
24430
  pulumi.set(__self__, "compute_count", compute_count)
@@ -22944,6 +24480,7 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseResult(dict):
22944
24480
  pulumi.set(__self__, "local_disaster_recovery_type", local_disaster_recovery_type)
22945
24481
  pulumi.set(__self__, "local_standby_dbs", local_standby_dbs)
22946
24482
  pulumi.set(__self__, "long_term_backup_schedules", long_term_backup_schedules)
24483
+ pulumi.set(__self__, "maintenance_target_component", maintenance_target_component)
22947
24484
  pulumi.set(__self__, "max_cpu_core_count", max_cpu_core_count)
22948
24485
  pulumi.set(__self__, "memory_per_oracle_compute_unit_in_gbs", memory_per_oracle_compute_unit_in_gbs)
22949
24486
  pulumi.set(__self__, "ncharacter_set", ncharacter_set)
@@ -23105,6 +24642,14 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseResult(dict):
23105
24642
  """
23106
24643
  return pulumi.get(self, "character_set")
23107
24644
 
24645
+ @property
24646
+ @pulumi.getter(name="cloneTableSpaceLists")
24647
+ def clone_table_space_lists(self) -> Sequence[int]:
24648
+ """
24649
+ A list of the source Autonomous Database's table space number(s) used to create this partial clone from the backup.
24650
+ """
24651
+ return pulumi.get(self, "clone_table_space_lists")
24652
+
23108
24653
  @property
23109
24654
  @pulumi.getter(name="clusterPlacementGroupId")
23110
24655
  def cluster_placement_group_id(self) -> str:
@@ -23549,6 +25094,14 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseResult(dict):
23549
25094
  """
23550
25095
  return pulumi.get(self, "long_term_backup_schedules")
23551
25096
 
25097
+ @property
25098
+ @pulumi.getter(name="maintenanceTargetComponent")
25099
+ def maintenance_target_component(self) -> str:
25100
+ """
25101
+ The component chosen for maintenance.
25102
+ """
25103
+ return pulumi.get(self, "maintenance_target_component")
25104
+
23552
25105
  @property
23553
25106
  @pulumi.getter(name="maxCpuCoreCount")
23554
25107
  def max_cpu_core_count(self) -> int:
@@ -24792,22 +26345,31 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseLocalStandbyDbResult(dict):
24792
26345
  availability_domain: str,
24793
26346
  lag_time_in_seconds: int,
24794
26347
  lifecycle_details: str,
26348
+ maintenance_target_component: str,
24795
26349
  state: str,
24796
26350
  time_data_guard_role_changed: str,
24797
- time_disaster_recovery_role_changed: str):
26351
+ time_disaster_recovery_role_changed: str,
26352
+ time_maintenance_begin: str,
26353
+ time_maintenance_end: str):
24798
26354
  """
24799
26355
  :param int lag_time_in_seconds: The amount of time, in seconds, that the data of the standby database lags the data of the primary database. Can be used to determine the potential data loss in the event of a failover.
24800
26356
  :param str lifecycle_details: Additional information about the current lifecycle state.
26357
+ :param str maintenance_target_component: The component chosen for maintenance.
24801
26358
  :param str state: A filter to return only resources that match the given lifecycle state exactly.
24802
26359
  :param str time_data_guard_role_changed: The date and time the Autonomous Data Guard role was switched for the Autonomous Database. For databases that have standbys in both the primary Data Guard region and a remote Data Guard standby region, this is the latest timestamp of either the database using the "primary" role in the primary Data Guard region, or database located in the remote Data Guard standby region.
24803
26360
  :param str time_disaster_recovery_role_changed: The date and time the Disaster Recovery role was switched for the standby Autonomous Database.
26361
+ :param str time_maintenance_begin: The date and time when maintenance will begin.
26362
+ :param str time_maintenance_end: The date and time when maintenance will end.
24804
26363
  """
24805
26364
  pulumi.set(__self__, "availability_domain", availability_domain)
24806
26365
  pulumi.set(__self__, "lag_time_in_seconds", lag_time_in_seconds)
24807
26366
  pulumi.set(__self__, "lifecycle_details", lifecycle_details)
26367
+ pulumi.set(__self__, "maintenance_target_component", maintenance_target_component)
24808
26368
  pulumi.set(__self__, "state", state)
24809
26369
  pulumi.set(__self__, "time_data_guard_role_changed", time_data_guard_role_changed)
24810
26370
  pulumi.set(__self__, "time_disaster_recovery_role_changed", time_disaster_recovery_role_changed)
26371
+ pulumi.set(__self__, "time_maintenance_begin", time_maintenance_begin)
26372
+ pulumi.set(__self__, "time_maintenance_end", time_maintenance_end)
24811
26373
 
24812
26374
  @property
24813
26375
  @pulumi.getter(name="availabilityDomain")
@@ -24830,6 +26392,14 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseLocalStandbyDbResult(dict):
24830
26392
  """
24831
26393
  return pulumi.get(self, "lifecycle_details")
24832
26394
 
26395
+ @property
26396
+ @pulumi.getter(name="maintenanceTargetComponent")
26397
+ def maintenance_target_component(self) -> str:
26398
+ """
26399
+ The component chosen for maintenance.
26400
+ """
26401
+ return pulumi.get(self, "maintenance_target_component")
26402
+
24833
26403
  @property
24834
26404
  @pulumi.getter
24835
26405
  def state(self) -> str:
@@ -24854,6 +26424,22 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseLocalStandbyDbResult(dict):
24854
26424
  """
24855
26425
  return pulumi.get(self, "time_disaster_recovery_role_changed")
24856
26426
 
26427
+ @property
26428
+ @pulumi.getter(name="timeMaintenanceBegin")
26429
+ def time_maintenance_begin(self) -> str:
26430
+ """
26431
+ The date and time when maintenance will begin.
26432
+ """
26433
+ return pulumi.get(self, "time_maintenance_begin")
26434
+
26435
+ @property
26436
+ @pulumi.getter(name="timeMaintenanceEnd")
26437
+ def time_maintenance_end(self) -> str:
26438
+ """
26439
+ The date and time when maintenance will end.
26440
+ """
26441
+ return pulumi.get(self, "time_maintenance_end")
26442
+
24857
26443
 
24858
26444
  @pulumi.output_type
24859
26445
  class GetAutonomousDatabasesClonesAutonomousDatabaseLongTermBackupScheduleResult(dict):
@@ -25141,22 +26727,31 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseStandbyDbResult(dict):
25141
26727
  availability_domain: str,
25142
26728
  lag_time_in_seconds: int,
25143
26729
  lifecycle_details: str,
26730
+ maintenance_target_component: str,
25144
26731
  state: str,
25145
26732
  time_data_guard_role_changed: str,
25146
- time_disaster_recovery_role_changed: str):
26733
+ time_disaster_recovery_role_changed: str,
26734
+ time_maintenance_begin: str,
26735
+ time_maintenance_end: str):
25147
26736
  """
25148
26737
  :param int lag_time_in_seconds: The amount of time, in seconds, that the data of the standby database lags the data of the primary database. Can be used to determine the potential data loss in the event of a failover.
25149
26738
  :param str lifecycle_details: Additional information about the current lifecycle state.
26739
+ :param str maintenance_target_component: The component chosen for maintenance.
25150
26740
  :param str state: A filter to return only resources that match the given lifecycle state exactly.
25151
26741
  :param str time_data_guard_role_changed: The date and time the Autonomous Data Guard role was switched for the Autonomous Database. For databases that have standbys in both the primary Data Guard region and a remote Data Guard standby region, this is the latest timestamp of either the database using the "primary" role in the primary Data Guard region, or database located in the remote Data Guard standby region.
25152
26742
  :param str time_disaster_recovery_role_changed: The date and time the Disaster Recovery role was switched for the standby Autonomous Database.
26743
+ :param str time_maintenance_begin: The date and time when maintenance will begin.
26744
+ :param str time_maintenance_end: The date and time when maintenance will end.
25153
26745
  """
25154
26746
  pulumi.set(__self__, "availability_domain", availability_domain)
25155
26747
  pulumi.set(__self__, "lag_time_in_seconds", lag_time_in_seconds)
25156
26748
  pulumi.set(__self__, "lifecycle_details", lifecycle_details)
26749
+ pulumi.set(__self__, "maintenance_target_component", maintenance_target_component)
25157
26750
  pulumi.set(__self__, "state", state)
25158
26751
  pulumi.set(__self__, "time_data_guard_role_changed", time_data_guard_role_changed)
25159
26752
  pulumi.set(__self__, "time_disaster_recovery_role_changed", time_disaster_recovery_role_changed)
26753
+ pulumi.set(__self__, "time_maintenance_begin", time_maintenance_begin)
26754
+ pulumi.set(__self__, "time_maintenance_end", time_maintenance_end)
25160
26755
 
25161
26756
  @property
25162
26757
  @pulumi.getter(name="availabilityDomain")
@@ -25179,6 +26774,14 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseStandbyDbResult(dict):
25179
26774
  """
25180
26775
  return pulumi.get(self, "lifecycle_details")
25181
26776
 
26777
+ @property
26778
+ @pulumi.getter(name="maintenanceTargetComponent")
26779
+ def maintenance_target_component(self) -> str:
26780
+ """
26781
+ The component chosen for maintenance.
26782
+ """
26783
+ return pulumi.get(self, "maintenance_target_component")
26784
+
25182
26785
  @property
25183
26786
  @pulumi.getter
25184
26787
  def state(self) -> str:
@@ -25203,6 +26806,22 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseStandbyDbResult(dict):
25203
26806
  """
25204
26807
  return pulumi.get(self, "time_disaster_recovery_role_changed")
25205
26808
 
26809
+ @property
26810
+ @pulumi.getter(name="timeMaintenanceBegin")
26811
+ def time_maintenance_begin(self) -> str:
26812
+ """
26813
+ The date and time when maintenance will begin.
26814
+ """
26815
+ return pulumi.get(self, "time_maintenance_begin")
26816
+
26817
+ @property
26818
+ @pulumi.getter(name="timeMaintenanceEnd")
26819
+ def time_maintenance_end(self) -> str:
26820
+ """
26821
+ The date and time when maintenance will end.
26822
+ """
26823
+ return pulumi.get(self, "time_maintenance_end")
26824
+
25206
26825
 
25207
26826
  @pulumi.output_type
25208
26827
  class GetAutonomousDatabasesClonesFilterResult(dict):
@@ -28406,8 +30025,11 @@ class GetBackupDestinationsBackupDestinationResult(dict):
28406
30025
  nfs_server_export: str,
28407
30026
  nfs_servers: Sequence[str],
28408
30027
  state: str,
30028
+ time_at_which_storage_details_are_updated: str,
28409
30029
  time_created: str,
30030
+ total_storage_size_in_gbs: int,
28410
30031
  type: str,
30032
+ utilized_storage_size_in_gbs: int,
28411
30033
  vpc_users: Sequence[str]):
28412
30034
  """
28413
30035
  :param Sequence['GetBackupDestinationsBackupDestinationAssociatedDatabaseArgs'] associated_databases: List of databases associated with the backup destination.
@@ -28423,8 +30045,11 @@ class GetBackupDestinationsBackupDestinationResult(dict):
28423
30045
  :param str nfs_server_export: Specifies the directory on which to mount the file system
28424
30046
  :param Sequence[str] nfs_servers: Host names or IP addresses for NFS Auto mount.
28425
30047
  :param str state: The current lifecycle state of the backup destination.
30048
+ :param str time_at_which_storage_details_are_updated: The time when the total storage size and the utilized storage size of the backup destination are updated.
28426
30049
  :param str time_created: The date and time the backup destination was created.
30050
+ :param int total_storage_size_in_gbs: The total storage size of the backup destination in GBs, rounded to the nearest integer.
28427
30051
  :param str type: A filter to return only resources that match the given type of the Backup Destination.
30052
+ :param int utilized_storage_size_in_gbs: The total amount of space utilized on the backup destination (in GBs), rounded to the nearest integer.
28428
30053
  :param Sequence[str] vpc_users: For a RECOVERY_APPLIANCE backup destination, the Virtual Private Catalog (VPC) users that are used to access the Recovery Appliance.
28429
30054
  """
28430
30055
  pulumi.set(__self__, "associated_databases", associated_databases)
@@ -28441,8 +30066,11 @@ class GetBackupDestinationsBackupDestinationResult(dict):
28441
30066
  pulumi.set(__self__, "nfs_server_export", nfs_server_export)
28442
30067
  pulumi.set(__self__, "nfs_servers", nfs_servers)
28443
30068
  pulumi.set(__self__, "state", state)
30069
+ pulumi.set(__self__, "time_at_which_storage_details_are_updated", time_at_which_storage_details_are_updated)
28444
30070
  pulumi.set(__self__, "time_created", time_created)
30071
+ pulumi.set(__self__, "total_storage_size_in_gbs", total_storage_size_in_gbs)
28445
30072
  pulumi.set(__self__, "type", type)
30073
+ pulumi.set(__self__, "utilized_storage_size_in_gbs", utilized_storage_size_in_gbs)
28446
30074
  pulumi.set(__self__, "vpc_users", vpc_users)
28447
30075
 
28448
30076
  @property
@@ -28555,6 +30183,14 @@ class GetBackupDestinationsBackupDestinationResult(dict):
28555
30183
  """
28556
30184
  return pulumi.get(self, "state")
28557
30185
 
30186
+ @property
30187
+ @pulumi.getter(name="timeAtWhichStorageDetailsAreUpdated")
30188
+ def time_at_which_storage_details_are_updated(self) -> str:
30189
+ """
30190
+ The time when the total storage size and the utilized storage size of the backup destination are updated.
30191
+ """
30192
+ return pulumi.get(self, "time_at_which_storage_details_are_updated")
30193
+
28558
30194
  @property
28559
30195
  @pulumi.getter(name="timeCreated")
28560
30196
  def time_created(self) -> str:
@@ -28563,6 +30199,14 @@ class GetBackupDestinationsBackupDestinationResult(dict):
28563
30199
  """
28564
30200
  return pulumi.get(self, "time_created")
28565
30201
 
30202
+ @property
30203
+ @pulumi.getter(name="totalStorageSizeInGbs")
30204
+ def total_storage_size_in_gbs(self) -> int:
30205
+ """
30206
+ The total storage size of the backup destination in GBs, rounded to the nearest integer.
30207
+ """
30208
+ return pulumi.get(self, "total_storage_size_in_gbs")
30209
+
28566
30210
  @property
28567
30211
  @pulumi.getter
28568
30212
  def type(self) -> str:
@@ -28571,6 +30215,14 @@ class GetBackupDestinationsBackupDestinationResult(dict):
28571
30215
  """
28572
30216
  return pulumi.get(self, "type")
28573
30217
 
30218
+ @property
30219
+ @pulumi.getter(name="utilizedStorageSizeInGbs")
30220
+ def utilized_storage_size_in_gbs(self) -> int:
30221
+ """
30222
+ The total amount of space utilized on the backup destination (in GBs), rounded to the nearest integer.
30223
+ """
30224
+ return pulumi.get(self, "utilized_storage_size_in_gbs")
30225
+
28574
30226
  @property
28575
30227
  @pulumi.getter(name="vpcUsers")
28576
30228
  def vpc_users(self) -> Sequence[str]:
@@ -28687,6 +30339,7 @@ class GetBackupDestinationsFilterResult(dict):
28687
30339
  class GetBackupsBackupResult(dict):
28688
30340
  def __init__(__self__, *,
28689
30341
  availability_domain: str,
30342
+ backup_destination_type: str,
28690
30343
  compartment_id: str,
28691
30344
  database_edition: str,
28692
30345
  database_id: str,
@@ -28694,41 +30347,53 @@ class GetBackupsBackupResult(dict):
28694
30347
  display_name: str,
28695
30348
  encryption_key_location_details: Sequence['outputs.GetBackupsBackupEncryptionKeyLocationDetailResult'],
28696
30349
  id: str,
30350
+ is_using_oracle_managed_keys: bool,
28697
30351
  key_store_id: str,
28698
30352
  key_store_wallet_name: str,
28699
30353
  kms_key_id: str,
28700
30354
  kms_key_version_id: str,
28701
30355
  lifecycle_details: str,
30356
+ retention_period_in_days: int,
30357
+ retention_period_in_years: int,
30358
+ secondary_kms_key_ids: Sequence[str],
28702
30359
  shape: str,
28703
30360
  state: str,
28704
30361
  time_ended: str,
30362
+ time_expiry_scheduled: str,
28705
30363
  time_started: str,
28706
30364
  type: str,
28707
30365
  vault_id: str,
28708
30366
  version: str):
28709
30367
  """
28710
30368
  :param str availability_domain: The name of the availability domain where the database backup is stored.
30369
+ :param str backup_destination_type: A filter to return only resources that match the given backup destination type.
28711
30370
  :param str compartment_id: The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
28712
- :param str database_edition: The Oracle Database edition of the DB system from which the database backup was taken.
30371
+ :param str database_edition: The Oracle Database Edition that applies to all the databases on the DB system. Exadata DB systems and 2-node RAC DB systems require ENTERPRISE_EDITION_EXTREME_PERFORMANCE.
28713
30372
  :param str database_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the database.
28714
30373
  :param float database_size_in_gbs: The size of the database in gigabytes at the time the backup was taken.
28715
30374
  :param str display_name: The user-friendly name for the backup. The name does not have to be unique.
28716
30375
  :param Sequence['GetBackupsBackupEncryptionKeyLocationDetailArgs'] encryption_key_location_details: Types of providers supported for managing database encryption keys
28717
30376
  :param str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the backup.
30377
+ :param bool is_using_oracle_managed_keys: True if Oracle Managed Keys is required for restore of the backup.
28718
30378
  :param str key_store_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the key store of Oracle Vault.
28719
30379
  :param str key_store_wallet_name: The wallet name for Oracle Key Vault.
28720
30380
  :param str kms_key_id: The OCID of the key container that is used as the master encryption key in database transparent data encryption (TDE) operations.
28721
30381
  :param str kms_key_version_id: The OCID of the key container version that is used in database transparent data encryption (TDE) operations KMS Key can have multiple key versions. If none is specified, the current key version (latest) of the Key Id is used for the operation. Autonomous Database Serverless does not use key versions, hence is not applicable for Autonomous Database Serverless instances.
28722
30382
  :param str lifecycle_details: Additional information about the current lifecycle state.
30383
+ :param int retention_period_in_days: The retention period of the long term backup in days.
30384
+ :param int retention_period_in_years: The retention period of the long term backup in years.
30385
+ :param Sequence[str] secondary_kms_key_ids: List of OCIDs of the key containers used as the secondary encryption key in database transparent data encryption (TDE) operations.
28723
30386
  :param str shape: Shape of the backup's source database.
28724
- :param str state: The current state of the backup.
30387
+ :param str state: A filter to return only resources that match the given lifecycle state exactly.
28725
30388
  :param str time_ended: The date and time the backup was completed.
30389
+ :param str time_expiry_scheduled: Expiration time of the long term database backup.
28726
30390
  :param str time_started: The date and time the backup started.
28727
- :param str type: The type of backup.
30391
+ :param str type: A filter to return only backups that matches with the given type of Backup.
28728
30392
  :param str 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). This parameter and `secretId` are required for Customer Managed Keys.
28729
- :param str version: Version of the backup's source database
30393
+ :param str version: A filter to return only resources that match the given database version.
28730
30394
  """
28731
30395
  pulumi.set(__self__, "availability_domain", availability_domain)
30396
+ pulumi.set(__self__, "backup_destination_type", backup_destination_type)
28732
30397
  pulumi.set(__self__, "compartment_id", compartment_id)
28733
30398
  pulumi.set(__self__, "database_edition", database_edition)
28734
30399
  pulumi.set(__self__, "database_id", database_id)
@@ -28736,14 +30401,19 @@ class GetBackupsBackupResult(dict):
28736
30401
  pulumi.set(__self__, "display_name", display_name)
28737
30402
  pulumi.set(__self__, "encryption_key_location_details", encryption_key_location_details)
28738
30403
  pulumi.set(__self__, "id", id)
30404
+ pulumi.set(__self__, "is_using_oracle_managed_keys", is_using_oracle_managed_keys)
28739
30405
  pulumi.set(__self__, "key_store_id", key_store_id)
28740
30406
  pulumi.set(__self__, "key_store_wallet_name", key_store_wallet_name)
28741
30407
  pulumi.set(__self__, "kms_key_id", kms_key_id)
28742
30408
  pulumi.set(__self__, "kms_key_version_id", kms_key_version_id)
28743
30409
  pulumi.set(__self__, "lifecycle_details", lifecycle_details)
30410
+ pulumi.set(__self__, "retention_period_in_days", retention_period_in_days)
30411
+ pulumi.set(__self__, "retention_period_in_years", retention_period_in_years)
30412
+ pulumi.set(__self__, "secondary_kms_key_ids", secondary_kms_key_ids)
28744
30413
  pulumi.set(__self__, "shape", shape)
28745
30414
  pulumi.set(__self__, "state", state)
28746
30415
  pulumi.set(__self__, "time_ended", time_ended)
30416
+ pulumi.set(__self__, "time_expiry_scheduled", time_expiry_scheduled)
28747
30417
  pulumi.set(__self__, "time_started", time_started)
28748
30418
  pulumi.set(__self__, "type", type)
28749
30419
  pulumi.set(__self__, "vault_id", vault_id)
@@ -28757,6 +30427,14 @@ class GetBackupsBackupResult(dict):
28757
30427
  """
28758
30428
  return pulumi.get(self, "availability_domain")
28759
30429
 
30430
+ @property
30431
+ @pulumi.getter(name="backupDestinationType")
30432
+ def backup_destination_type(self) -> str:
30433
+ """
30434
+ A filter to return only resources that match the given backup destination type.
30435
+ """
30436
+ return pulumi.get(self, "backup_destination_type")
30437
+
28760
30438
  @property
28761
30439
  @pulumi.getter(name="compartmentId")
28762
30440
  def compartment_id(self) -> str:
@@ -28769,7 +30447,7 @@ class GetBackupsBackupResult(dict):
28769
30447
  @pulumi.getter(name="databaseEdition")
28770
30448
  def database_edition(self) -> str:
28771
30449
  """
28772
- The Oracle Database edition of the DB system from which the database backup was taken.
30450
+ The Oracle Database Edition that applies to all the databases on the DB system. Exadata DB systems and 2-node RAC DB systems require ENTERPRISE_EDITION_EXTREME_PERFORMANCE.
28773
30451
  """
28774
30452
  return pulumi.get(self, "database_edition")
28775
30453
 
@@ -28813,6 +30491,14 @@ class GetBackupsBackupResult(dict):
28813
30491
  """
28814
30492
  return pulumi.get(self, "id")
28815
30493
 
30494
+ @property
30495
+ @pulumi.getter(name="isUsingOracleManagedKeys")
30496
+ def is_using_oracle_managed_keys(self) -> bool:
30497
+ """
30498
+ True if Oracle Managed Keys is required for restore of the backup.
30499
+ """
30500
+ return pulumi.get(self, "is_using_oracle_managed_keys")
30501
+
28816
30502
  @property
28817
30503
  @pulumi.getter(name="keyStoreId")
28818
30504
  def key_store_id(self) -> str:
@@ -28853,6 +30539,30 @@ class GetBackupsBackupResult(dict):
28853
30539
  """
28854
30540
  return pulumi.get(self, "lifecycle_details")
28855
30541
 
30542
+ @property
30543
+ @pulumi.getter(name="retentionPeriodInDays")
30544
+ def retention_period_in_days(self) -> int:
30545
+ """
30546
+ The retention period of the long term backup in days.
30547
+ """
30548
+ return pulumi.get(self, "retention_period_in_days")
30549
+
30550
+ @property
30551
+ @pulumi.getter(name="retentionPeriodInYears")
30552
+ def retention_period_in_years(self) -> int:
30553
+ """
30554
+ The retention period of the long term backup in years.
30555
+ """
30556
+ return pulumi.get(self, "retention_period_in_years")
30557
+
30558
+ @property
30559
+ @pulumi.getter(name="secondaryKmsKeyIds")
30560
+ def secondary_kms_key_ids(self) -> Sequence[str]:
30561
+ """
30562
+ List of OCIDs of the key containers used as the secondary encryption key in database transparent data encryption (TDE) operations.
30563
+ """
30564
+ return pulumi.get(self, "secondary_kms_key_ids")
30565
+
28856
30566
  @property
28857
30567
  @pulumi.getter
28858
30568
  def shape(self) -> str:
@@ -28865,7 +30575,7 @@ class GetBackupsBackupResult(dict):
28865
30575
  @pulumi.getter
28866
30576
  def state(self) -> str:
28867
30577
  """
28868
- The current state of the backup.
30578
+ A filter to return only resources that match the given lifecycle state exactly.
28869
30579
  """
28870
30580
  return pulumi.get(self, "state")
28871
30581
 
@@ -28877,6 +30587,14 @@ class GetBackupsBackupResult(dict):
28877
30587
  """
28878
30588
  return pulumi.get(self, "time_ended")
28879
30589
 
30590
+ @property
30591
+ @pulumi.getter(name="timeExpiryScheduled")
30592
+ def time_expiry_scheduled(self) -> str:
30593
+ """
30594
+ Expiration time of the long term database backup.
30595
+ """
30596
+ return pulumi.get(self, "time_expiry_scheduled")
30597
+
28880
30598
  @property
28881
30599
  @pulumi.getter(name="timeStarted")
28882
30600
  def time_started(self) -> str:
@@ -28889,7 +30607,7 @@ class GetBackupsBackupResult(dict):
28889
30607
  @pulumi.getter
28890
30608
  def type(self) -> str:
28891
30609
  """
28892
- The type of backup.
30610
+ A filter to return only backups that matches with the given type of Backup.
28893
30611
  """
28894
30612
  return pulumi.get(self, "type")
28895
30613
 
@@ -28905,7 +30623,7 @@ class GetBackupsBackupResult(dict):
28905
30623
  @pulumi.getter
28906
30624
  def version(self) -> str:
28907
30625
  """
28908
- Version of the backup's source database
30626
+ A filter to return only resources that match the given database version.
28909
30627
  """
28910
30628
  return pulumi.get(self, "version")
28911
30629
 
@@ -31009,9 +32727,11 @@ class GetCloudExadataInfrastructuresCloudExadataInfrastructureResult(dict):
31009
32727
  cluster_placement_group_id: str,
31010
32728
  compartment_id: str,
31011
32729
  compute_count: int,
32730
+ compute_model: str,
31012
32731
  cpu_count: int,
31013
32732
  customer_contacts: Sequence['outputs.GetCloudExadataInfrastructuresCloudExadataInfrastructureCustomerContactResult'],
31014
32733
  data_storage_size_in_tbs: float,
32734
+ database_server_type: str,
31015
32735
  db_node_storage_size_in_gbs: int,
31016
32736
  db_server_version: str,
31017
32737
  defined_file_system_configurations: Sequence['outputs.GetCloudExadataInfrastructuresCloudExadataInfrastructureDefinedFileSystemConfigurationResult'],
@@ -31034,6 +32754,7 @@ class GetCloudExadataInfrastructuresCloudExadataInfrastructureResult(dict):
31034
32754
  shape: str,
31035
32755
  state: str,
31036
32756
  storage_count: int,
32757
+ storage_server_type: str,
31037
32758
  storage_server_version: str,
31038
32759
  subscription_id: str,
31039
32760
  system_tags: Mapping[str, str],
@@ -31047,9 +32768,11 @@ class GetCloudExadataInfrastructuresCloudExadataInfrastructureResult(dict):
31047
32768
  :param str cluster_placement_group_id: A filter to return only resources that match the given cluster placement group ID exactly.
31048
32769
  :param str compartment_id: The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
31049
32770
  :param int compute_count: The number of compute servers for the cloud Exadata infrastructure.
32771
+ :param str compute_model: The compute model of the Exadata infrastructure.
31050
32772
  :param int cpu_count: The total number of CPU cores allocated.
31051
32773
  :param Sequence['GetCloudExadataInfrastructuresCloudExadataInfrastructureCustomerContactArgs'] customer_contacts: The list of customer email addresses that receive information from Oracle about the specified Oracle Cloud Infrastructure Database service resource. Oracle uses these email addresses to send notifications about planned and unplanned software maintenance updates, information about system hardware, and other information needed by administrators. Up to 10 email addresses can be added to the customer contacts for a cloud Exadata infrastructure instance.
31052
32774
  :param float data_storage_size_in_tbs: Size, in terabytes, of the DATA disk group.
32775
+ :param str database_server_type: The database server type of the Exadata infrastructure.
31053
32776
  :param int db_node_storage_size_in_gbs: The local node storage allocated in GBs.
31054
32777
  :param str db_server_version: The software version of the database servers (dom0) in the cloud Exadata infrastructure. Example: 20.1.15
31055
32778
  :param Sequence['GetCloudExadataInfrastructuresCloudExadataInfrastructureDefinedFileSystemConfigurationArgs'] defined_file_system_configurations: Details of the file system configuration of the Exadata infrastructure.
@@ -31072,6 +32795,7 @@ class GetCloudExadataInfrastructuresCloudExadataInfrastructureResult(dict):
31072
32795
  :param str shape: The model name of the cloud Exadata infrastructure resource.
31073
32796
  :param str state: A filter to return only resources that match the given lifecycle state exactly.
31074
32797
  :param int storage_count: The number of storage servers for the cloud Exadata infrastructure.
32798
+ :param str storage_server_type: The storage server type of the Exadata infrastructure.
31075
32799
  :param str storage_server_version: The software version of the storage servers (cells) in the cloud Exadata infrastructure. Example: 20.1.15
31076
32800
  :param str subscription_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subscription with which resource needs to be associated with.
31077
32801
  :param Mapping[str, str] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm).
@@ -31085,9 +32809,11 @@ class GetCloudExadataInfrastructuresCloudExadataInfrastructureResult(dict):
31085
32809
  pulumi.set(__self__, "cluster_placement_group_id", cluster_placement_group_id)
31086
32810
  pulumi.set(__self__, "compartment_id", compartment_id)
31087
32811
  pulumi.set(__self__, "compute_count", compute_count)
32812
+ pulumi.set(__self__, "compute_model", compute_model)
31088
32813
  pulumi.set(__self__, "cpu_count", cpu_count)
31089
32814
  pulumi.set(__self__, "customer_contacts", customer_contacts)
31090
32815
  pulumi.set(__self__, "data_storage_size_in_tbs", data_storage_size_in_tbs)
32816
+ pulumi.set(__self__, "database_server_type", database_server_type)
31091
32817
  pulumi.set(__self__, "db_node_storage_size_in_gbs", db_node_storage_size_in_gbs)
31092
32818
  pulumi.set(__self__, "db_server_version", db_server_version)
31093
32819
  pulumi.set(__self__, "defined_file_system_configurations", defined_file_system_configurations)
@@ -31110,6 +32836,7 @@ class GetCloudExadataInfrastructuresCloudExadataInfrastructureResult(dict):
31110
32836
  pulumi.set(__self__, "shape", shape)
31111
32837
  pulumi.set(__self__, "state", state)
31112
32838
  pulumi.set(__self__, "storage_count", storage_count)
32839
+ pulumi.set(__self__, "storage_server_type", storage_server_type)
31113
32840
  pulumi.set(__self__, "storage_server_version", storage_server_version)
31114
32841
  pulumi.set(__self__, "subscription_id", subscription_id)
31115
32842
  pulumi.set(__self__, "system_tags", system_tags)
@@ -31172,6 +32899,14 @@ class GetCloudExadataInfrastructuresCloudExadataInfrastructureResult(dict):
31172
32899
  """
31173
32900
  return pulumi.get(self, "compute_count")
31174
32901
 
32902
+ @property
32903
+ @pulumi.getter(name="computeModel")
32904
+ def compute_model(self) -> str:
32905
+ """
32906
+ The compute model of the Exadata infrastructure.
32907
+ """
32908
+ return pulumi.get(self, "compute_model")
32909
+
31175
32910
  @property
31176
32911
  @pulumi.getter(name="cpuCount")
31177
32912
  def cpu_count(self) -> int:
@@ -31196,6 +32931,14 @@ class GetCloudExadataInfrastructuresCloudExadataInfrastructureResult(dict):
31196
32931
  """
31197
32932
  return pulumi.get(self, "data_storage_size_in_tbs")
31198
32933
 
32934
+ @property
32935
+ @pulumi.getter(name="databaseServerType")
32936
+ def database_server_type(self) -> str:
32937
+ """
32938
+ The database server type of the Exadata infrastructure.
32939
+ """
32940
+ return pulumi.get(self, "database_server_type")
32941
+
31199
32942
  @property
31200
32943
  @pulumi.getter(name="dbNodeStorageSizeInGbs")
31201
32944
  def db_node_storage_size_in_gbs(self) -> int:
@@ -31372,6 +33115,14 @@ class GetCloudExadataInfrastructuresCloudExadataInfrastructureResult(dict):
31372
33115
  """
31373
33116
  return pulumi.get(self, "storage_count")
31374
33117
 
33118
+ @property
33119
+ @pulumi.getter(name="storageServerType")
33120
+ def storage_server_type(self) -> str:
33121
+ """
33122
+ The storage server type of the Exadata infrastructure.
33123
+ """
33124
+ return pulumi.get(self, "storage_server_type")
33125
+
31375
33126
  @property
31376
33127
  @pulumi.getter(name="storageServerVersion")
31377
33128
  def storage_server_version(self) -> str:
@@ -31996,6 +33747,7 @@ class GetCloudVmClustersCloudVmClusterResult(dict):
31996
33747
  cloud_exadata_infrastructure_id: str,
31997
33748
  cluster_name: str,
31998
33749
  compartment_id: str,
33750
+ compute_model: str,
31999
33751
  cpu_core_count: int,
32000
33752
  create_async: bool,
32001
33753
  data_collection_options: Sequence['outputs.GetCloudVmClustersCloudVmClusterDataCollectionOptionResult'],
@@ -32027,6 +33779,7 @@ class GetCloudVmClustersCloudVmClusterResult(dict):
32027
33779
  scan_dns_name: str,
32028
33780
  scan_dns_record_id: str,
32029
33781
  scan_ip_ids: Sequence[str],
33782
+ scan_ipv6ids: Sequence[str],
32030
33783
  scan_listener_port_tcp: int,
32031
33784
  scan_listener_port_tcp_ssl: int,
32032
33785
  security_attributes: Mapping[str, str],
@@ -32041,6 +33794,8 @@ class GetCloudVmClustersCloudVmClusterResult(dict):
32041
33794
  time_created: str,
32042
33795
  time_zone: str,
32043
33796
  vip_ids: Sequence[str],
33797
+ vipv6ids: Sequence[str],
33798
+ vm_cluster_type: str,
32044
33799
  zone_id: str):
32045
33800
  """
32046
33801
  :param str availability_domain: The name of the availability domain that the cloud Exadata infrastructure resource is located in.
@@ -32050,6 +33805,7 @@ class GetCloudVmClustersCloudVmClusterResult(dict):
32050
33805
  :param str cloud_exadata_infrastructure_id: If provided, filters the results for the specified cloud Exadata infrastructure.
32051
33806
  :param str cluster_name: The cluster name for cloud VM cluster. The cluster name must begin with an alphabetic character, and may contain hyphens (-). Underscores (_) are not permitted. The cluster name can be no longer than 11 characters and is not case sensitive.
32052
33807
  :param str compartment_id: The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
33808
+ :param str compute_model: The compute model of the cloud VM cluster.
32053
33809
  :param int cpu_core_count: The number of CPU cores enabled on the cloud VM cluster.
32054
33810
  :param Sequence['GetCloudVmClustersCloudVmClusterDataCollectionOptionArgs'] data_collection_options: Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
32055
33811
  :param int data_storage_percentage: The percentage assigned to DATA storage (user data and database files). The remaining percentage is assigned to RECO storage (database redo logs, archive logs, and recovery manager backups). Accepted values are 35, 40, 60 and 80. The default is 80 percent assigned to DATA storage. See [Storage Configuration](https://docs.cloud.oracle.com/iaas/Content/Database/Concepts/exaoverview.htm#Exadata) in the Exadata documentation for details on the impact of the configuration settings on storage.
@@ -32078,7 +33834,8 @@ class GetCloudVmClustersCloudVmClusterResult(dict):
32078
33834
  :param float ocpu_count: The number of OCPU cores to enable on the cloud VM cluster. Only 1 decimal place is allowed for the fractional part.
32079
33835
  :param str scan_dns_name: The FQDN of the DNS record for the SCAN IP addresses that are associated with the cloud VM cluster.
32080
33836
  :param str scan_dns_record_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the DNS record for the SCAN IP addresses that are associated with the cloud VM cluster.
32081
- :param Sequence[str] scan_ip_ids: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Single Client Access Name (SCAN) IP addresses associated with the cloud VM cluster. SCAN IP addresses are typically used for load balancing and are not assigned to any interface. Oracle Clusterware directs the requests to the appropriate nodes in the cluster.
33837
+ :param Sequence[str] scan_ip_ids: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Single Client Access Name (SCAN) IPv4 addresses associated with the cloud VM cluster. SCAN IPv4 addresses are typically used for load balancing and are not assigned to any interface. Oracle Clusterware directs the requests to the appropriate nodes in the cluster.
33838
+ :param Sequence[str] scan_ipv6ids: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Single Client Access Name (SCAN) IPv6 addresses associated with the cloud VM cluster. SCAN IPv6 addresses are typically used for load balancing and are not assigned to any interface. Oracle Clusterware directs the requests to the appropriate nodes in the cluster.
32082
33839
  :param int scan_listener_port_tcp: The TCP Single Client Access Name (SCAN) port. The default port is 1521.
32083
33840
  :param int scan_listener_port_tcp_ssl: The TCPS Single Client Access Name (SCAN) port. The default port is 2484.
32084
33841
  :param Mapping[str, str] security_attributes: Security Attributes for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Oracle-ZPR": {"MaxEgressCount": {"value": "42", "mode": "audit"}}}`
@@ -32092,7 +33849,9 @@ class GetCloudVmClustersCloudVmClusterResult(dict):
32092
33849
  :param str system_version: Operating system version of the image.
32093
33850
  :param str time_created: The date and time that the cloud VM cluster was created.
32094
33851
  :param str time_zone: The time zone of the cloud VM cluster. For details, see [Exadata Infrastructure Time Zones](https://docs.cloud.oracle.com/iaas/Content/Database/References/timezones.htm).
32095
- :param Sequence[str] vip_ids: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the virtual IP (VIP) addresses associated with the cloud VM cluster. The Cluster Ready Services (CRS) creates and maintains one VIP address for each node in the Exadata Cloud Service instance to enable failover. If one node fails, the VIP is reassigned to another active node in the cluster.
33852
+ :param Sequence[str] vip_ids: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the virtual IP (VIP) IPv4 addresses associated with the cloud VM cluster. The Cluster Ready Services (CRS) creates and maintains one VIP IPv4 address for each node in the Exadata Cloud Service instance to enable failover. If one node fails, the VIP is reassigned to another active node in the cluster.
33853
+ :param Sequence[str] vipv6ids: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the virtual IP (VIP) IPv6 addresses associated with the cloud VM cluster. The Cluster Ready Services (CRS) creates and maintains one VIP IPv6 address for each node in the Exadata Cloud Service instance to enable failover. If one node fails, the VIP is reassigned to another active node in the cluster.
33854
+ :param str vm_cluster_type: A filter to return only cloud vmclusters that match the given cloud vmcluster type exactly.
32096
33855
  :param str zone_id: The OCID of the zone the cloud VM cluster is associated with.
32097
33856
  """
32098
33857
  pulumi.set(__self__, "availability_domain", availability_domain)
@@ -32102,6 +33861,7 @@ class GetCloudVmClustersCloudVmClusterResult(dict):
32102
33861
  pulumi.set(__self__, "cloud_exadata_infrastructure_id", cloud_exadata_infrastructure_id)
32103
33862
  pulumi.set(__self__, "cluster_name", cluster_name)
32104
33863
  pulumi.set(__self__, "compartment_id", compartment_id)
33864
+ pulumi.set(__self__, "compute_model", compute_model)
32105
33865
  pulumi.set(__self__, "cpu_core_count", cpu_core_count)
32106
33866
  pulumi.set(__self__, "create_async", create_async)
32107
33867
  pulumi.set(__self__, "data_collection_options", data_collection_options)
@@ -32133,6 +33893,7 @@ class GetCloudVmClustersCloudVmClusterResult(dict):
32133
33893
  pulumi.set(__self__, "scan_dns_name", scan_dns_name)
32134
33894
  pulumi.set(__self__, "scan_dns_record_id", scan_dns_record_id)
32135
33895
  pulumi.set(__self__, "scan_ip_ids", scan_ip_ids)
33896
+ pulumi.set(__self__, "scan_ipv6ids", scan_ipv6ids)
32136
33897
  pulumi.set(__self__, "scan_listener_port_tcp", scan_listener_port_tcp)
32137
33898
  pulumi.set(__self__, "scan_listener_port_tcp_ssl", scan_listener_port_tcp_ssl)
32138
33899
  pulumi.set(__self__, "security_attributes", security_attributes)
@@ -32147,6 +33908,8 @@ class GetCloudVmClustersCloudVmClusterResult(dict):
32147
33908
  pulumi.set(__self__, "time_created", time_created)
32148
33909
  pulumi.set(__self__, "time_zone", time_zone)
32149
33910
  pulumi.set(__self__, "vip_ids", vip_ids)
33911
+ pulumi.set(__self__, "vipv6ids", vipv6ids)
33912
+ pulumi.set(__self__, "vm_cluster_type", vm_cluster_type)
32150
33913
  pulumi.set(__self__, "zone_id", zone_id)
32151
33914
 
32152
33915
  @property
@@ -32205,6 +33968,14 @@ class GetCloudVmClustersCloudVmClusterResult(dict):
32205
33968
  """
32206
33969
  return pulumi.get(self, "compartment_id")
32207
33970
 
33971
+ @property
33972
+ @pulumi.getter(name="computeModel")
33973
+ def compute_model(self) -> str:
33974
+ """
33975
+ The compute model of the cloud VM cluster.
33976
+ """
33977
+ return pulumi.get(self, "compute_model")
33978
+
32208
33979
  @property
32209
33980
  @pulumi.getter(name="cpuCoreCount")
32210
33981
  def cpu_core_count(self) -> int:
@@ -32441,10 +34212,18 @@ class GetCloudVmClustersCloudVmClusterResult(dict):
32441
34212
  @pulumi.getter(name="scanIpIds")
32442
34213
  def scan_ip_ids(self) -> Sequence[str]:
32443
34214
  """
32444
- The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Single Client Access Name (SCAN) IP addresses associated with the cloud VM cluster. SCAN IP addresses are typically used for load balancing and are not assigned to any interface. Oracle Clusterware directs the requests to the appropriate nodes in the cluster.
34215
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Single Client Access Name (SCAN) IPv4 addresses associated with the cloud VM cluster. SCAN IPv4 addresses are typically used for load balancing and are not assigned to any interface. Oracle Clusterware directs the requests to the appropriate nodes in the cluster.
32445
34216
  """
32446
34217
  return pulumi.get(self, "scan_ip_ids")
32447
34218
 
34219
+ @property
34220
+ @pulumi.getter(name="scanIpv6ids")
34221
+ def scan_ipv6ids(self) -> Sequence[str]:
34222
+ """
34223
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Single Client Access Name (SCAN) IPv6 addresses associated with the cloud VM cluster. SCAN IPv6 addresses are typically used for load balancing and are not assigned to any interface. Oracle Clusterware directs the requests to the appropriate nodes in the cluster.
34224
+ """
34225
+ return pulumi.get(self, "scan_ipv6ids")
34226
+
32448
34227
  @property
32449
34228
  @pulumi.getter(name="scanListenerPortTcp")
32450
34229
  def scan_listener_port_tcp(self) -> int:
@@ -32553,10 +34332,26 @@ class GetCloudVmClustersCloudVmClusterResult(dict):
32553
34332
  @pulumi.getter(name="vipIds")
32554
34333
  def vip_ids(self) -> Sequence[str]:
32555
34334
  """
32556
- The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the virtual IP (VIP) addresses associated with the cloud VM cluster. The Cluster Ready Services (CRS) creates and maintains one VIP address for each node in the Exadata Cloud Service instance to enable failover. If one node fails, the VIP is reassigned to another active node in the cluster.
34335
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the virtual IP (VIP) IPv4 addresses associated with the cloud VM cluster. The Cluster Ready Services (CRS) creates and maintains one VIP IPv4 address for each node in the Exadata Cloud Service instance to enable failover. If one node fails, the VIP is reassigned to another active node in the cluster.
32557
34336
  """
32558
34337
  return pulumi.get(self, "vip_ids")
32559
34338
 
34339
+ @property
34340
+ @pulumi.getter
34341
+ def vipv6ids(self) -> Sequence[str]:
34342
+ """
34343
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the virtual IP (VIP) IPv6 addresses associated with the cloud VM cluster. The Cluster Ready Services (CRS) creates and maintains one VIP IPv6 address for each node in the Exadata Cloud Service instance to enable failover. If one node fails, the VIP is reassigned to another active node in the cluster.
34344
+ """
34345
+ return pulumi.get(self, "vipv6ids")
34346
+
34347
+ @property
34348
+ @pulumi.getter(name="vmClusterType")
34349
+ def vm_cluster_type(self) -> str:
34350
+ """
34351
+ A filter to return only cloud vmclusters that match the given cloud vmcluster type exactly.
34352
+ """
34353
+ return pulumi.get(self, "vm_cluster_type")
34354
+
32560
34355
  @property
32561
34356
  @pulumi.getter(name="zoneId")
32562
34357
  def zone_id(self) -> str:
@@ -32906,6 +34701,7 @@ class GetDataGuardAssociationsDataGuardAssociationResult(dict):
32906
34701
  peer_sid_prefix: str,
32907
34702
  peer_vm_cluster_id: str,
32908
34703
  private_ip: str,
34704
+ private_ip_v6: str,
32909
34705
  protection_mode: str,
32910
34706
  role: str,
32911
34707
  shape: str,
@@ -32970,6 +34766,7 @@ class GetDataGuardAssociationsDataGuardAssociationResult(dict):
32970
34766
  pulumi.set(__self__, "peer_sid_prefix", peer_sid_prefix)
32971
34767
  pulumi.set(__self__, "peer_vm_cluster_id", peer_vm_cluster_id)
32972
34768
  pulumi.set(__self__, "private_ip", private_ip)
34769
+ pulumi.set(__self__, "private_ip_v6", private_ip_v6)
32973
34770
  pulumi.set(__self__, "protection_mode", protection_mode)
32974
34771
  pulumi.set(__self__, "role", role)
32975
34772
  pulumi.set(__self__, "shape", shape)
@@ -33198,6 +34995,11 @@ class GetDataGuardAssociationsDataGuardAssociationResult(dict):
33198
34995
  def private_ip(self) -> str:
33199
34996
  return pulumi.get(self, "private_ip")
33200
34997
 
34998
+ @property
34999
+ @pulumi.getter(name="privateIpV6")
35000
+ def private_ip_v6(self) -> str:
35001
+ return pulumi.get(self, "private_ip_v6")
35002
+
33201
35003
  @property
33202
35004
  @pulumi.getter(name="protectionMode")
33203
35005
  def protection_mode(self) -> str:
@@ -39696,6 +41498,7 @@ class GetDbNodesDbNodeResult(dict):
39696
41498
  def __init__(__self__, *,
39697
41499
  additional_details: str,
39698
41500
  backup_ip_id: str,
41501
+ backup_ipv6id: str,
39699
41502
  backup_vnic2id: str,
39700
41503
  backup_vnic_id: str,
39701
41504
  cpu_core_count: int,
@@ -39707,6 +41510,7 @@ class GetDbNodesDbNodeResult(dict):
39707
41510
  fault_domain: str,
39708
41511
  freeform_tags: Mapping[str, str],
39709
41512
  host_ip_id: str,
41513
+ host_ipv6id: str,
39710
41514
  hostname: str,
39711
41515
  id: str,
39712
41516
  lifecycle_details: str,
@@ -39722,7 +41526,8 @@ class GetDbNodesDbNodeResult(dict):
39722
41526
  vnic_id: str):
39723
41527
  """
39724
41528
  :param str additional_details: Additional information about the planned maintenance.
39725
- :param str backup_ip_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the backup IP address associated with the database node. Use this OCID with either the [GetPrivateIp](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/20160918/PrivateIp/GetPrivateIp) or the [GetPublicIpByPrivateIpId](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/20160918/PublicIp/GetPublicIpByPrivateIpId) API to get the IP address needed to make a database connection.
41529
+ :param str backup_ip_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the backup IPv4 address associated with the database node. Use this OCID with either the [GetPrivateIp](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/20160918/PrivateIp/GetPrivateIp) or the [GetPublicIpByPrivateIpId](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/20160918/PublicIp/GetPublicIpByPrivateIpId) API to get the IPv4 address needed to make a database connection.
41530
+ :param str backup_ipv6id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the backup IPv6 address associated with the database node. Use this OCID with the [GetIpv6](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/20160918/Ipv6/GetIpv6) API to get the IPv6 address needed to make a database connection.
39726
41531
  :param str backup_vnic2id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the second backup VNIC.
39727
41532
  :param str backup_vnic_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the backup VNIC.
39728
41533
  :param int cpu_core_count: The number of CPU cores enabled on the Db node.
@@ -39732,8 +41537,8 @@ class GetDbNodesDbNodeResult(dict):
39732
41537
  :param Mapping[str, str] defined_tags: Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm).
39733
41538
  :param str fault_domain: The name of the Fault Domain the instance is contained in.
39734
41539
  :param Mapping[str, str] freeform_tags: Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
39735
- :param str host_ip_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the host IP address associated with the database node. Use this OCID with either the [GetPrivateIp](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/20160918/PrivateIp/GetPrivateIp) or the [GetPublicIpByPrivateIpId](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/20160918/PublicIp/GetPublicIpByPrivateIpId) API to get the IP address needed to make a database connection.
39736
- **Note:** Applies only to Exadata Cloud Service.
41540
+ :param str host_ip_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the host IPv4 address associated with the database node. Use this OCID with either the [GetPrivateIp](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/20160918/PrivateIp/GetPrivateIp) or the [GetPublicIpByPrivateIpId](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/20160918/PublicIp/GetPublicIpByPrivateIpId) API to get the IPv4 address needed to make a database connection.
41541
+ :param str host_ipv6id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the host IPv6 address associated with the database node. Use this OCID with the [GetIpv6](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/20160918/Ipv6/GetIpv6) API to get the IPv6 address needed to make a database connection.
39737
41542
  :param str hostname: The host name for the database node.
39738
41543
  :param str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the database node.
39739
41544
  :param str lifecycle_details: Information about the current lifecycle state.
@@ -39750,6 +41555,7 @@ class GetDbNodesDbNodeResult(dict):
39750
41555
  """
39751
41556
  pulumi.set(__self__, "additional_details", additional_details)
39752
41557
  pulumi.set(__self__, "backup_ip_id", backup_ip_id)
41558
+ pulumi.set(__self__, "backup_ipv6id", backup_ipv6id)
39753
41559
  pulumi.set(__self__, "backup_vnic2id", backup_vnic2id)
39754
41560
  pulumi.set(__self__, "backup_vnic_id", backup_vnic_id)
39755
41561
  pulumi.set(__self__, "cpu_core_count", cpu_core_count)
@@ -39761,6 +41567,7 @@ class GetDbNodesDbNodeResult(dict):
39761
41567
  pulumi.set(__self__, "fault_domain", fault_domain)
39762
41568
  pulumi.set(__self__, "freeform_tags", freeform_tags)
39763
41569
  pulumi.set(__self__, "host_ip_id", host_ip_id)
41570
+ pulumi.set(__self__, "host_ipv6id", host_ipv6id)
39764
41571
  pulumi.set(__self__, "hostname", hostname)
39765
41572
  pulumi.set(__self__, "id", id)
39766
41573
  pulumi.set(__self__, "lifecycle_details", lifecycle_details)
@@ -39787,10 +41594,18 @@ class GetDbNodesDbNodeResult(dict):
39787
41594
  @pulumi.getter(name="backupIpId")
39788
41595
  def backup_ip_id(self) -> str:
39789
41596
  """
39790
- The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the backup IP address associated with the database node. Use this OCID with either the [GetPrivateIp](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/20160918/PrivateIp/GetPrivateIp) or the [GetPublicIpByPrivateIpId](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/20160918/PublicIp/GetPublicIpByPrivateIpId) API to get the IP address needed to make a database connection.
41597
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the backup IPv4 address associated with the database node. Use this OCID with either the [GetPrivateIp](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/20160918/PrivateIp/GetPrivateIp) or the [GetPublicIpByPrivateIpId](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/20160918/PublicIp/GetPublicIpByPrivateIpId) API to get the IPv4 address needed to make a database connection.
39791
41598
  """
39792
41599
  return pulumi.get(self, "backup_ip_id")
39793
41600
 
41601
+ @property
41602
+ @pulumi.getter(name="backupIpv6id")
41603
+ def backup_ipv6id(self) -> str:
41604
+ """
41605
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the backup IPv6 address associated with the database node. Use this OCID with the [GetIpv6](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/20160918/Ipv6/GetIpv6) API to get the IPv6 address needed to make a database connection.
41606
+ """
41607
+ return pulumi.get(self, "backup_ipv6id")
41608
+
39794
41609
  @property
39795
41610
  @pulumi.getter(name="backupVnic2id")
39796
41611
  def backup_vnic2id(self) -> str:
@@ -39872,11 +41687,18 @@ class GetDbNodesDbNodeResult(dict):
39872
41687
  @pulumi.getter(name="hostIpId")
39873
41688
  def host_ip_id(self) -> str:
39874
41689
  """
39875
- The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the host IP address associated with the database node. Use this OCID with either the [GetPrivateIp](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/20160918/PrivateIp/GetPrivateIp) or the [GetPublicIpByPrivateIpId](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/20160918/PublicIp/GetPublicIpByPrivateIpId) API to get the IP address needed to make a database connection.
39876
- **Note:** Applies only to Exadata Cloud Service.
41690
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the host IPv4 address associated with the database node. Use this OCID with either the [GetPrivateIp](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/20160918/PrivateIp/GetPrivateIp) or the [GetPublicIpByPrivateIpId](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/20160918/PublicIp/GetPublicIpByPrivateIpId) API to get the IPv4 address needed to make a database connection.
39877
41691
  """
39878
41692
  return pulumi.get(self, "host_ip_id")
39879
41693
 
41694
+ @property
41695
+ @pulumi.getter(name="hostIpv6id")
41696
+ def host_ipv6id(self) -> str:
41697
+ """
41698
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the host IPv6 address associated with the database node. Use this OCID with the [GetIpv6](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/20160918/Ipv6/GetIpv6) API to get the IPv6 address needed to make a database connection.
41699
+ """
41700
+ return pulumi.get(self, "host_ipv6id")
41701
+
39880
41702
  @property
39881
41703
  @pulumi.getter
39882
41704
  def hostname(self) -> str:
@@ -40066,6 +41888,7 @@ class GetDbServersDbServerResult(dict):
40066
41888
  autonomous_virtual_machine_ids: Sequence[str],
40067
41889
  autonomous_vm_cluster_ids: Sequence[str],
40068
41890
  compartment_id: str,
41891
+ compute_model: str,
40069
41892
  cpu_core_count: int,
40070
41893
  db_node_ids: Sequence[str],
40071
41894
  db_node_storage_size_in_gbs: int,
@@ -40088,6 +41911,7 @@ class GetDbServersDbServerResult(dict):
40088
41911
  :param Sequence[str] autonomous_virtual_machine_ids: The list of [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Autonomous Virtual Machines associated with the Db server.
40089
41912
  :param Sequence[str] autonomous_vm_cluster_ids: The list of [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Autonomous VM Clusters associated with the Db server.
40090
41913
  :param str compartment_id: The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
41914
+ :param str compute_model: The compute model of the Autonomous Database. This is required if using the `computeCount` parameter. If using `cpuCoreCount` then it is an error to specify `computeModel` to a non-null value. ECPU compute model is the recommended model and OCPU compute model is legacy.
40091
41915
  :param int cpu_core_count: The number of CPU cores enabled on the Db server.
40092
41916
  :param Sequence[str] db_node_ids: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Db nodes associated with the Db server.
40093
41917
  :param int db_node_storage_size_in_gbs: The allocated local node storage in GBs on the Db server.
@@ -40110,6 +41934,7 @@ class GetDbServersDbServerResult(dict):
40110
41934
  pulumi.set(__self__, "autonomous_virtual_machine_ids", autonomous_virtual_machine_ids)
40111
41935
  pulumi.set(__self__, "autonomous_vm_cluster_ids", autonomous_vm_cluster_ids)
40112
41936
  pulumi.set(__self__, "compartment_id", compartment_id)
41937
+ pulumi.set(__self__, "compute_model", compute_model)
40113
41938
  pulumi.set(__self__, "cpu_core_count", cpu_core_count)
40114
41939
  pulumi.set(__self__, "db_node_ids", db_node_ids)
40115
41940
  pulumi.set(__self__, "db_node_storage_size_in_gbs", db_node_storage_size_in_gbs)
@@ -40153,6 +41978,14 @@ class GetDbServersDbServerResult(dict):
40153
41978
  """
40154
41979
  return pulumi.get(self, "compartment_id")
40155
41980
 
41981
+ @property
41982
+ @pulumi.getter(name="computeModel")
41983
+ def compute_model(self) -> str:
41984
+ """
41985
+ The compute model of the Autonomous Database. This is required if using the `computeCount` parameter. If using `cpuCoreCount` then it is an error to specify `computeModel` to a non-null value. ECPU compute model is the recommended model and OCPU compute model is legacy.
41986
+ """
41987
+ return pulumi.get(self, "compute_model")
41988
+
40156
41989
  @property
40157
41990
  @pulumi.getter(name="cpuCoreCount")
40158
41991
  def cpu_core_count(self) -> int:
@@ -40741,6 +42574,7 @@ class GetDbSystemPatchesPatchResult(dict):
40741
42574
  @pulumi.output_type
40742
42575
  class GetDbSystemShapesDbSystemShapeResult(dict):
40743
42576
  def __init__(__self__, *,
42577
+ are_server_types_supported: bool,
40744
42578
  available_core_count: int,
40745
42579
  available_core_count_per_node: int,
40746
42580
  available_data_storage_in_tbs: int,
@@ -40749,7 +42583,9 @@ class GetDbSystemShapesDbSystemShapeResult(dict):
40749
42583
  available_db_node_storage_in_gbs: int,
40750
42584
  available_memory_in_gbs: int,
40751
42585
  available_memory_per_node_in_gbs: int,
42586
+ compute_model: str,
40752
42587
  core_count_increment: int,
42588
+ display_name: str,
40753
42589
  max_storage_count: int,
40754
42590
  maximum_node_count: int,
40755
42591
  min_core_count_per_node: int,
@@ -40764,6 +42600,7 @@ class GetDbSystemShapesDbSystemShapeResult(dict):
40764
42600
  shape_family: str,
40765
42601
  shape_type: str):
40766
42602
  """
42603
+ :param bool are_server_types_supported: If true, the shape supports configurable DB and Storage Server types.
40767
42604
  :param int available_core_count: The maximum number of CPU cores that can be enabled on the DB system for this shape.
40768
42605
  :param int available_core_count_per_node: The maximum number of CPU cores per database node that can be enabled for this shape. Only applicable to the flex Exadata shape, ExaCC Elastic shapes and VM Flex shapes.
40769
42606
  :param int available_data_storage_in_tbs: The maximum DATA storage that can be enabled for this shape.
@@ -40772,7 +42609,9 @@ class GetDbSystemShapesDbSystemShapeResult(dict):
40772
42609
  :param int available_db_node_storage_in_gbs: The maximum Db Node storage that can be enabled for this shape.
40773
42610
  :param int available_memory_in_gbs: The maximum memory that can be enabled for this shape.
40774
42611
  :param int available_memory_per_node_in_gbs: The maximum memory available per database node for this shape. Only applicable to ExaCC Elastic shapes.
42612
+ :param str compute_model: The compute model of the Autonomous Database. This is required if using the `computeCount` parameter. If using `cpuCoreCount` then it is an error to specify `computeModel` to a non-null value. ECPU compute model is the recommended model and OCPU compute model is legacy.
40775
42613
  :param int core_count_increment: The discrete number by which the CPU core count for this shape can be increased or decreased.
42614
+ :param str display_name: The display name of the shape used for the DB system.
40776
42615
  :param int max_storage_count: The maximum number of Exadata storage servers available for the Exadata infrastructure.
40777
42616
  :param int maximum_node_count: The maximum number of compute servers available for this shape.
40778
42617
  :param int min_core_count_per_node: The minimum number of CPU cores that can be enabled per node for this shape.
@@ -40787,6 +42626,7 @@ class GetDbSystemShapesDbSystemShapeResult(dict):
40787
42626
  :param str shape_family: The family of the shape used for the DB system.
40788
42627
  :param str shape_type: The shape type for the virtual machine DB system. Shape type is determined by CPU hardware. Valid values are `AMD` , `INTEL` or `INTEL_FLEX_X9`.
40789
42628
  """
42629
+ pulumi.set(__self__, "are_server_types_supported", are_server_types_supported)
40790
42630
  pulumi.set(__self__, "available_core_count", available_core_count)
40791
42631
  pulumi.set(__self__, "available_core_count_per_node", available_core_count_per_node)
40792
42632
  pulumi.set(__self__, "available_data_storage_in_tbs", available_data_storage_in_tbs)
@@ -40795,7 +42635,9 @@ class GetDbSystemShapesDbSystemShapeResult(dict):
40795
42635
  pulumi.set(__self__, "available_db_node_storage_in_gbs", available_db_node_storage_in_gbs)
40796
42636
  pulumi.set(__self__, "available_memory_in_gbs", available_memory_in_gbs)
40797
42637
  pulumi.set(__self__, "available_memory_per_node_in_gbs", available_memory_per_node_in_gbs)
42638
+ pulumi.set(__self__, "compute_model", compute_model)
40798
42639
  pulumi.set(__self__, "core_count_increment", core_count_increment)
42640
+ pulumi.set(__self__, "display_name", display_name)
40799
42641
  pulumi.set(__self__, "max_storage_count", max_storage_count)
40800
42642
  pulumi.set(__self__, "maximum_node_count", maximum_node_count)
40801
42643
  pulumi.set(__self__, "min_core_count_per_node", min_core_count_per_node)
@@ -40810,6 +42652,14 @@ class GetDbSystemShapesDbSystemShapeResult(dict):
40810
42652
  pulumi.set(__self__, "shape_family", shape_family)
40811
42653
  pulumi.set(__self__, "shape_type", shape_type)
40812
42654
 
42655
+ @property
42656
+ @pulumi.getter(name="areServerTypesSupported")
42657
+ def are_server_types_supported(self) -> bool:
42658
+ """
42659
+ If true, the shape supports configurable DB and Storage Server types.
42660
+ """
42661
+ return pulumi.get(self, "are_server_types_supported")
42662
+
40813
42663
  @property
40814
42664
  @pulumi.getter(name="availableCoreCount")
40815
42665
  def available_core_count(self) -> int:
@@ -40874,6 +42724,14 @@ class GetDbSystemShapesDbSystemShapeResult(dict):
40874
42724
  """
40875
42725
  return pulumi.get(self, "available_memory_per_node_in_gbs")
40876
42726
 
42727
+ @property
42728
+ @pulumi.getter(name="computeModel")
42729
+ def compute_model(self) -> str:
42730
+ """
42731
+ The compute model of the Autonomous Database. This is required if using the `computeCount` parameter. If using `cpuCoreCount` then it is an error to specify `computeModel` to a non-null value. ECPU compute model is the recommended model and OCPU compute model is legacy.
42732
+ """
42733
+ return pulumi.get(self, "compute_model")
42734
+
40877
42735
  @property
40878
42736
  @pulumi.getter(name="coreCountIncrement")
40879
42737
  def core_count_increment(self) -> int:
@@ -40882,6 +42740,14 @@ class GetDbSystemShapesDbSystemShapeResult(dict):
40882
42740
  """
40883
42741
  return pulumi.get(self, "core_count_increment")
40884
42742
 
42743
+ @property
42744
+ @pulumi.getter(name="displayName")
42745
+ def display_name(self) -> str:
42746
+ """
42747
+ The display name of the shape used for the DB system.
42748
+ """
42749
+ return pulumi.get(self, "display_name")
42750
+
40885
42751
  @property
40886
42752
  @pulumi.getter(name="maxStorageCount")
40887
42753
  def max_storage_count(self) -> int:
@@ -41324,10 +43190,12 @@ class GetDbSystemsDbSystemResult(dict):
41324
43190
  os_version: str,
41325
43191
  point_in_time_data_disk_clone_timestamp: str,
41326
43192
  private_ip: str,
43193
+ private_ip_v6: str,
41327
43194
  reco_storage_size_in_gb: int,
41328
43195
  scan_dns_name: str,
41329
43196
  scan_dns_record_id: str,
41330
43197
  scan_ip_ids: Sequence[str],
43198
+ scan_ipv6ids: Sequence[str],
41331
43199
  security_attributes: Mapping[str, str],
41332
43200
  shape: str,
41333
43201
  source: str,
@@ -41341,6 +43209,7 @@ class GetDbSystemsDbSystemResult(dict):
41341
43209
  time_zone: str,
41342
43210
  version: str,
41343
43211
  vip_ids: Sequence[str],
43212
+ vipv6ids: Sequence[str],
41344
43213
  zone_id: str):
41345
43214
  """
41346
43215
  :param str availability_domain: A filter to return only resources that match the given availability domain exactly.
@@ -41352,7 +43221,7 @@ class GetDbSystemsDbSystemResult(dict):
41352
43221
  :param Sequence['GetDbSystemsDbSystemDataCollectionOptionArgs'] data_collection_options: Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
41353
43222
  :param int data_storage_percentage: The percentage assigned to DATA storage (user data and database files). The remaining percentage is assigned to RECO storage (database redo logs, archive logs, and recovery manager backups). Accepted values are 40 and 80. The default is 80 percent assigned to DATA storage. Not applicable for virtual machine DB systems. Required for BMDBs.
41354
43223
  :param int data_storage_size_in_gb: The data storage size, in gigabytes, that is currently available to the DB system. Applies only for virtual machine DB systems. Required for VMDBs.
41355
- :param str database_edition: The Oracle Database edition that applies to all the databases on the DB system.
43224
+ :param str database_edition: The Oracle Database Edition that applies to all the databases on the DB system. Exadata DB systems and 2-node RAC DB systems require ENTERPRISE_EDITION_EXTREME_PERFORMANCE.
41356
43225
  :param Sequence['GetDbSystemsDbSystemDbSystemOptionArgs'] db_system_options: The DB system options.
41357
43226
  :param Mapping[str, str] defined_tags: Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm).
41358
43227
  :param str disk_redundancy: The type of redundancy configured for the DB system. NORMAL is 2-way redundancy. HIGH is 3-way redundancy.
@@ -41379,7 +43248,8 @@ class GetDbSystemsDbSystemResult(dict):
41379
43248
  :param int reco_storage_size_in_gb: The RECO/REDO storage size, in gigabytes, that is currently allocated to the DB system. Applies only for virtual machine DB systems.
41380
43249
  :param str scan_dns_name: The FQDN of the DNS record for the SCAN IP addresses that are associated with the DB system.
41381
43250
  :param str scan_dns_record_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the DNS record for the SCAN IP addresses that are associated with the DB system.
41382
- :param Sequence[str] scan_ip_ids: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Single Client Access Name (SCAN) IP addresses associated with the DB system. SCAN IP addresses are typically used for load balancing and are not assigned to any interface. Oracle Clusterware directs the requests to the appropriate nodes in the cluster.
43251
+ :param Sequence[str] scan_ip_ids: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Single Client Access Name (SCAN) IPv4 addresses associated with the DB system. SCAN IPv4 addresses are typically used for load balancing and are not assigned to any interface. Oracle Clusterware directs the requests to the appropriate nodes in the cluster.
43252
+ :param Sequence[str] scan_ipv6ids: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Single Client Access Name (SCAN) IPv6 addresses associated with the DB system. SCAN IPv6 addresses are typically used for load balancing and are not assigned to any interface. Oracle Clusterware directs the requests to the appropriate nodes in the cluster.
41383
43253
  :param Mapping[str, str] security_attributes: Security Attributes for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Oracle-ZPR": {"MaxEgressCount": {"value": "42", "mode": "audit"}}}`
41384
43254
  :param str shape: The shape of the DB system. The shape determines resources to allocate to the DB system.
41385
43255
  * For virtual machine shapes, the number of CPU cores and memory
@@ -41393,7 +43263,8 @@ class GetDbSystemsDbSystemResult(dict):
41393
43263
  :param str time_created: The date and time the DB system was created.
41394
43264
  :param str time_zone: The time zone of the DB system. For details, see [DB System Time Zones](https://docs.cloud.oracle.com/iaas/Content/Database/References/timezones.htm).
41395
43265
  :param str version: The Oracle Database version of the DB system.
41396
- :param Sequence[str] vip_ids: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the virtual IP (VIP) addresses associated with the DB system. The Cluster Ready Services (CRS) creates and maintains one VIP address for each node in the DB system to enable failover. If one node fails, the VIP is reassigned to another active node in the cluster.
43266
+ :param Sequence[str] vip_ids: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the virtual IPv4 (VIP) addresses associated with the DB system. The Cluster Ready Services (CRS) creates and maintains one VIPv4 address for each node in the DB system to enable failover. If one node fails, the VIPv4 is reassigned to another active node in the cluster.
43267
+ :param Sequence[str] vipv6ids: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the virtual IPv6 (VIP) addresses associated with the DB system. The Cluster Ready Services (CRS) creates and maintains one VIP IpV6 address for each node in the DB system to enable failover. If one node fails, the VIP is reassigned to another active node in the cluster.
41397
43268
  :param str zone_id: The OCID of the zone the DB system is associated with.
41398
43269
  """
41399
43270
  pulumi.set(__self__, "availability_domain", availability_domain)
@@ -41433,10 +43304,12 @@ class GetDbSystemsDbSystemResult(dict):
41433
43304
  pulumi.set(__self__, "os_version", os_version)
41434
43305
  pulumi.set(__self__, "point_in_time_data_disk_clone_timestamp", point_in_time_data_disk_clone_timestamp)
41435
43306
  pulumi.set(__self__, "private_ip", private_ip)
43307
+ pulumi.set(__self__, "private_ip_v6", private_ip_v6)
41436
43308
  pulumi.set(__self__, "reco_storage_size_in_gb", reco_storage_size_in_gb)
41437
43309
  pulumi.set(__self__, "scan_dns_name", scan_dns_name)
41438
43310
  pulumi.set(__self__, "scan_dns_record_id", scan_dns_record_id)
41439
43311
  pulumi.set(__self__, "scan_ip_ids", scan_ip_ids)
43312
+ pulumi.set(__self__, "scan_ipv6ids", scan_ipv6ids)
41440
43313
  pulumi.set(__self__, "security_attributes", security_attributes)
41441
43314
  pulumi.set(__self__, "shape", shape)
41442
43315
  pulumi.set(__self__, "source", source)
@@ -41450,6 +43323,7 @@ class GetDbSystemsDbSystemResult(dict):
41450
43323
  pulumi.set(__self__, "time_zone", time_zone)
41451
43324
  pulumi.set(__self__, "version", version)
41452
43325
  pulumi.set(__self__, "vip_ids", vip_ids)
43326
+ pulumi.set(__self__, "vipv6ids", vipv6ids)
41453
43327
  pulumi.set(__self__, "zone_id", zone_id)
41454
43328
 
41455
43329
  @property
@@ -41528,7 +43402,7 @@ class GetDbSystemsDbSystemResult(dict):
41528
43402
  @pulumi.getter(name="databaseEdition")
41529
43403
  def database_edition(self) -> str:
41530
43404
  """
41531
- The Oracle Database edition that applies to all the databases on the DB system.
43405
+ The Oracle Database Edition that applies to all the databases on the DB system. Exadata DB systems and 2-node RAC DB systems require ENTERPRISE_EDITION_EXTREME_PERFORMANCE.
41532
43406
  """
41533
43407
  return pulumi.get(self, "database_edition")
41534
43408
 
@@ -41734,6 +43608,11 @@ class GetDbSystemsDbSystemResult(dict):
41734
43608
  def private_ip(self) -> str:
41735
43609
  return pulumi.get(self, "private_ip")
41736
43610
 
43611
+ @property
43612
+ @pulumi.getter(name="privateIpV6")
43613
+ def private_ip_v6(self) -> str:
43614
+ return pulumi.get(self, "private_ip_v6")
43615
+
41737
43616
  @property
41738
43617
  @pulumi.getter(name="recoStorageSizeInGb")
41739
43618
  def reco_storage_size_in_gb(self) -> int:
@@ -41762,10 +43641,18 @@ class GetDbSystemsDbSystemResult(dict):
41762
43641
  @pulumi.getter(name="scanIpIds")
41763
43642
  def scan_ip_ids(self) -> Sequence[str]:
41764
43643
  """
41765
- The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Single Client Access Name (SCAN) IP addresses associated with the DB system. SCAN IP addresses are typically used for load balancing and are not assigned to any interface. Oracle Clusterware directs the requests to the appropriate nodes in the cluster.
43644
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Single Client Access Name (SCAN) IPv4 addresses associated with the DB system. SCAN IPv4 addresses are typically used for load balancing and are not assigned to any interface. Oracle Clusterware directs the requests to the appropriate nodes in the cluster.
41766
43645
  """
41767
43646
  return pulumi.get(self, "scan_ip_ids")
41768
43647
 
43648
+ @property
43649
+ @pulumi.getter(name="scanIpv6ids")
43650
+ def scan_ipv6ids(self) -> Sequence[str]:
43651
+ """
43652
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Single Client Access Name (SCAN) IPv6 addresses associated with the DB system. SCAN IPv6 addresses are typically used for load balancing and are not assigned to any interface. Oracle Clusterware directs the requests to the appropriate nodes in the cluster.
43653
+ """
43654
+ return pulumi.get(self, "scan_ipv6ids")
43655
+
41769
43656
  @property
41770
43657
  @pulumi.getter(name="securityAttributes")
41771
43658
  def security_attributes(self) -> Mapping[str, str]:
@@ -41865,10 +43752,18 @@ class GetDbSystemsDbSystemResult(dict):
41865
43752
  @pulumi.getter(name="vipIds")
41866
43753
  def vip_ids(self) -> Sequence[str]:
41867
43754
  """
41868
- The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the virtual IP (VIP) addresses associated with the DB system. The Cluster Ready Services (CRS) creates and maintains one VIP address for each node in the DB system to enable failover. If one node fails, the VIP is reassigned to another active node in the cluster.
43755
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the virtual IPv4 (VIP) addresses associated with the DB system. The Cluster Ready Services (CRS) creates and maintains one VIPv4 address for each node in the DB system to enable failover. If one node fails, the VIPv4 is reassigned to another active node in the cluster.
41869
43756
  """
41870
43757
  return pulumi.get(self, "vip_ids")
41871
43758
 
43759
+ @property
43760
+ @pulumi.getter
43761
+ def vipv6ids(self) -> Sequence[str]:
43762
+ """
43763
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the virtual IPv6 (VIP) addresses associated with the DB system. The Cluster Ready Services (CRS) creates and maintains one VIP IpV6 address for each node in the DB system to enable failover. If one node fails, the VIP is reassigned to another active node in the cluster.
43764
+ """
43765
+ return pulumi.get(self, "vipv6ids")
43766
+
41872
43767
  @property
41873
43768
  @pulumi.getter(name="zoneId")
41874
43769
  def zone_id(self) -> str:
@@ -43203,6 +45098,35 @@ class GetExadataInfrastructureDefinedFileSystemConfigurationResult(dict):
43203
45098
  return pulumi.get(self, "mount_point")
43204
45099
 
43205
45100
 
45101
+ @pulumi.output_type
45102
+ class GetExadataInfrastructureExascaleConfigResult(dict):
45103
+ def __init__(__self__, *,
45104
+ available_storage_in_gbs: int,
45105
+ total_storage_in_gbs: int):
45106
+ """
45107
+ :param int available_storage_in_gbs: Available storage size for Exascale in GBs.
45108
+ :param int total_storage_in_gbs: Storage size needed for Exascale in GBs.
45109
+ """
45110
+ pulumi.set(__self__, "available_storage_in_gbs", available_storage_in_gbs)
45111
+ pulumi.set(__self__, "total_storage_in_gbs", total_storage_in_gbs)
45112
+
45113
+ @property
45114
+ @pulumi.getter(name="availableStorageInGbs")
45115
+ def available_storage_in_gbs(self) -> int:
45116
+ """
45117
+ Available storage size for Exascale in GBs.
45118
+ """
45119
+ return pulumi.get(self, "available_storage_in_gbs")
45120
+
45121
+ @property
45122
+ @pulumi.getter(name="totalStorageInGbs")
45123
+ def total_storage_in_gbs(self) -> int:
45124
+ """
45125
+ Storage size needed for Exascale in GBs.
45126
+ """
45127
+ return pulumi.get(self, "total_storage_in_gbs")
45128
+
45129
+
43206
45130
  @pulumi.output_type
43207
45131
  class GetExadataInfrastructureMaintenanceWindowResult(dict):
43208
45132
  def __init__(__self__, *,
@@ -43448,18 +45372,21 @@ class GetExadataInfrastructuresExadataInfrastructureResult(dict):
43448
45372
  cloud_control_plane_server2: str,
43449
45373
  compartment_id: str,
43450
45374
  compute_count: int,
45375
+ compute_model: str,
43451
45376
  contacts: Sequence['outputs.GetExadataInfrastructuresExadataInfrastructureContactResult'],
43452
45377
  corporate_proxy: str,
43453
45378
  cpus_enabled: int,
43454
45379
  create_async: bool,
43455
45380
  csi_number: str,
43456
45381
  data_storage_size_in_tbs: float,
45382
+ database_server_type: str,
43457
45383
  db_node_storage_size_in_gbs: int,
43458
45384
  db_server_version: str,
43459
45385
  defined_file_system_configurations: Sequence['outputs.GetExadataInfrastructuresExadataInfrastructureDefinedFileSystemConfigurationResult'],
43460
45386
  defined_tags: Mapping[str, str],
43461
45387
  display_name: str,
43462
45388
  dns_servers: Sequence[str],
45389
+ exascale_configs: Sequence['outputs.GetExadataInfrastructuresExadataInfrastructureExascaleConfigResult'],
43463
45390
  freeform_tags: Mapping[str, str],
43464
45391
  gateway: str,
43465
45392
  id: str,
@@ -43484,6 +45411,7 @@ class GetExadataInfrastructuresExadataInfrastructureResult(dict):
43484
45411
  shape: str,
43485
45412
  state: str,
43486
45413
  storage_count: int,
45414
+ storage_server_type: str,
43487
45415
  storage_server_version: str,
43488
45416
  time_created: str,
43489
45417
  time_zone: str):
@@ -43498,17 +45426,20 @@ class GetExadataInfrastructuresExadataInfrastructureResult(dict):
43498
45426
  :param str cloud_control_plane_server2: The IP address for the second control plane server.
43499
45427
  :param str compartment_id: The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
43500
45428
  :param int compute_count: The number of compute servers for the Exadata infrastructure.
45429
+ :param str compute_model: The compute model of the Autonomous Database. This is required if using the `computeCount` parameter. If using `cpuCoreCount` then it is an error to specify `computeModel` to a non-null value. ECPU compute model is the recommended model and OCPU compute model is legacy.
43501
45430
  :param Sequence['GetExadataInfrastructuresExadataInfrastructureContactArgs'] contacts: The list of contacts for the Exadata infrastructure.
43502
45431
  :param str corporate_proxy: The corporate network proxy for access to the control plane network.
43503
45432
  :param int cpus_enabled: The number of enabled CPU cores.
43504
45433
  :param str csi_number: The CSI Number of the Exadata infrastructure.
43505
45434
  :param float data_storage_size_in_tbs: Size, in terabytes, of the DATA disk group.
45435
+ :param str database_server_type: The database server type of the Exadata infrastructure.
43506
45436
  :param int db_node_storage_size_in_gbs: The local node storage allocated in GBs.
43507
45437
  :param str db_server_version: The software version of the database servers (dom0) in the Exadata infrastructure.
43508
45438
  :param Sequence['GetExadataInfrastructuresExadataInfrastructureDefinedFileSystemConfigurationArgs'] defined_file_system_configurations: Details of the file system configuration of the Exadata infrastructure.
43509
45439
  :param Mapping[str, str] defined_tags: Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm).
43510
45440
  :param str display_name: A filter to return only resources that match the entire display name given. The match is not case sensitive.
43511
45441
  :param Sequence[str] dns_servers: The list of DNS server IP addresses. Maximum of 3 allowed.
45442
+ :param Sequence['GetExadataInfrastructuresExadataInfrastructureExascaleConfigArgs'] exascale_configs: The exascale config response details for the Exadata Cloud@Customer infrastructure or cloud Exadata infrastructure . Applies to both Exadata Cloud@Customer instances and Exadata Cloud Service instances.
43512
45443
  :param Mapping[str, str] freeform_tags: Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
43513
45444
  :param str gateway: The gateway for the control plane network.
43514
45445
  :param str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Exadata infrastructure.
@@ -43533,6 +45464,7 @@ class GetExadataInfrastructuresExadataInfrastructureResult(dict):
43533
45464
  :param str shape: The shape of the Exadata infrastructure. The shape determines the amount of CPU, storage, and memory resources allocated to the instance.
43534
45465
  :param str state: A filter to return only resources that match the given lifecycle state exactly.
43535
45466
  :param int storage_count: The number of Exadata storage servers for the Exadata infrastructure.
45467
+ :param str storage_server_type: The storage server type of the Exadata infrastructure.
43536
45468
  :param str storage_server_version: The software version of the storage servers (cells) in the Exadata infrastructure.
43537
45469
  :param str time_created: The date and time the Exadata infrastructure was created.
43538
45470
  :param str time_zone: The time zone of the Exadata infrastructure. For details, see [Exadata Infrastructure Time Zones](https://docs.cloud.oracle.com/iaas/Content/Database/References/timezones.htm).
@@ -43548,18 +45480,21 @@ class GetExadataInfrastructuresExadataInfrastructureResult(dict):
43548
45480
  pulumi.set(__self__, "cloud_control_plane_server2", cloud_control_plane_server2)
43549
45481
  pulumi.set(__self__, "compartment_id", compartment_id)
43550
45482
  pulumi.set(__self__, "compute_count", compute_count)
45483
+ pulumi.set(__self__, "compute_model", compute_model)
43551
45484
  pulumi.set(__self__, "contacts", contacts)
43552
45485
  pulumi.set(__self__, "corporate_proxy", corporate_proxy)
43553
45486
  pulumi.set(__self__, "cpus_enabled", cpus_enabled)
43554
45487
  pulumi.set(__self__, "create_async", create_async)
43555
45488
  pulumi.set(__self__, "csi_number", csi_number)
43556
45489
  pulumi.set(__self__, "data_storage_size_in_tbs", data_storage_size_in_tbs)
45490
+ pulumi.set(__self__, "database_server_type", database_server_type)
43557
45491
  pulumi.set(__self__, "db_node_storage_size_in_gbs", db_node_storage_size_in_gbs)
43558
45492
  pulumi.set(__self__, "db_server_version", db_server_version)
43559
45493
  pulumi.set(__self__, "defined_file_system_configurations", defined_file_system_configurations)
43560
45494
  pulumi.set(__self__, "defined_tags", defined_tags)
43561
45495
  pulumi.set(__self__, "display_name", display_name)
43562
45496
  pulumi.set(__self__, "dns_servers", dns_servers)
45497
+ pulumi.set(__self__, "exascale_configs", exascale_configs)
43563
45498
  pulumi.set(__self__, "freeform_tags", freeform_tags)
43564
45499
  pulumi.set(__self__, "gateway", gateway)
43565
45500
  pulumi.set(__self__, "id", id)
@@ -43584,6 +45519,7 @@ class GetExadataInfrastructuresExadataInfrastructureResult(dict):
43584
45519
  pulumi.set(__self__, "shape", shape)
43585
45520
  pulumi.set(__self__, "state", state)
43586
45521
  pulumi.set(__self__, "storage_count", storage_count)
45522
+ pulumi.set(__self__, "storage_server_type", storage_server_type)
43587
45523
  pulumi.set(__self__, "storage_server_version", storage_server_version)
43588
45524
  pulumi.set(__self__, "time_created", time_created)
43589
45525
  pulumi.set(__self__, "time_zone", time_zone)
@@ -43673,6 +45609,14 @@ class GetExadataInfrastructuresExadataInfrastructureResult(dict):
43673
45609
  """
43674
45610
  return pulumi.get(self, "compute_count")
43675
45611
 
45612
+ @property
45613
+ @pulumi.getter(name="computeModel")
45614
+ def compute_model(self) -> str:
45615
+ """
45616
+ The compute model of the Autonomous Database. This is required if using the `computeCount` parameter. If using `cpuCoreCount` then it is an error to specify `computeModel` to a non-null value. ECPU compute model is the recommended model and OCPU compute model is legacy.
45617
+ """
45618
+ return pulumi.get(self, "compute_model")
45619
+
43676
45620
  @property
43677
45621
  @pulumi.getter
43678
45622
  def contacts(self) -> Sequence['outputs.GetExadataInfrastructuresExadataInfrastructureContactResult']:
@@ -43718,6 +45662,14 @@ class GetExadataInfrastructuresExadataInfrastructureResult(dict):
43718
45662
  """
43719
45663
  return pulumi.get(self, "data_storage_size_in_tbs")
43720
45664
 
45665
+ @property
45666
+ @pulumi.getter(name="databaseServerType")
45667
+ def database_server_type(self) -> str:
45668
+ """
45669
+ The database server type of the Exadata infrastructure.
45670
+ """
45671
+ return pulumi.get(self, "database_server_type")
45672
+
43721
45673
  @property
43722
45674
  @pulumi.getter(name="dbNodeStorageSizeInGbs")
43723
45675
  def db_node_storage_size_in_gbs(self) -> int:
@@ -43766,6 +45718,14 @@ class GetExadataInfrastructuresExadataInfrastructureResult(dict):
43766
45718
  """
43767
45719
  return pulumi.get(self, "dns_servers")
43768
45720
 
45721
+ @property
45722
+ @pulumi.getter(name="exascaleConfigs")
45723
+ def exascale_configs(self) -> Sequence['outputs.GetExadataInfrastructuresExadataInfrastructureExascaleConfigResult']:
45724
+ """
45725
+ The exascale config response details for the Exadata Cloud@Customer infrastructure or cloud Exadata infrastructure . Applies to both Exadata Cloud@Customer instances and Exadata Cloud Service instances.
45726
+ """
45727
+ return pulumi.get(self, "exascale_configs")
45728
+
43769
45729
  @property
43770
45730
  @pulumi.getter(name="freeformTags")
43771
45731
  def freeform_tags(self) -> Mapping[str, str]:
@@ -43958,6 +45918,14 @@ class GetExadataInfrastructuresExadataInfrastructureResult(dict):
43958
45918
  """
43959
45919
  return pulumi.get(self, "storage_count")
43960
45920
 
45921
+ @property
45922
+ @pulumi.getter(name="storageServerType")
45923
+ def storage_server_type(self) -> str:
45924
+ """
45925
+ The storage server type of the Exadata infrastructure.
45926
+ """
45927
+ return pulumi.get(self, "storage_server_type")
45928
+
43961
45929
  @property
43962
45930
  @pulumi.getter(name="storageServerVersion")
43963
45931
  def storage_server_version(self) -> str:
@@ -44096,6 +46064,35 @@ class GetExadataInfrastructuresExadataInfrastructureDefinedFileSystemConfigurati
44096
46064
  return pulumi.get(self, "mount_point")
44097
46065
 
44098
46066
 
46067
+ @pulumi.output_type
46068
+ class GetExadataInfrastructuresExadataInfrastructureExascaleConfigResult(dict):
46069
+ def __init__(__self__, *,
46070
+ available_storage_in_gbs: int,
46071
+ total_storage_in_gbs: int):
46072
+ """
46073
+ :param int available_storage_in_gbs: Available storage size for Exascale in GBs.
46074
+ :param int total_storage_in_gbs: Storage size needed for Exascale in GBs.
46075
+ """
46076
+ pulumi.set(__self__, "available_storage_in_gbs", available_storage_in_gbs)
46077
+ pulumi.set(__self__, "total_storage_in_gbs", total_storage_in_gbs)
46078
+
46079
+ @property
46080
+ @pulumi.getter(name="availableStorageInGbs")
46081
+ def available_storage_in_gbs(self) -> int:
46082
+ """
46083
+ Available storage size for Exascale in GBs.
46084
+ """
46085
+ return pulumi.get(self, "available_storage_in_gbs")
46086
+
46087
+ @property
46088
+ @pulumi.getter(name="totalStorageInGbs")
46089
+ def total_storage_in_gbs(self) -> int:
46090
+ """
46091
+ Storage size needed for Exascale in GBs.
46092
+ """
46093
+ return pulumi.get(self, "total_storage_in_gbs")
46094
+
46095
+
44099
46096
  @pulumi.output_type
44100
46097
  class GetExadataInfrastructuresExadataInfrastructureMaintenanceWindowResult(dict):
44101
46098
  def __init__(__self__, *,
@@ -44895,6 +46892,7 @@ class GetExadbVmClustersExadbVmClusterResult(dict):
44895
46892
  backup_network_nsg_ids: Sequence[str],
44896
46893
  backup_subnet_id: str,
44897
46894
  cluster_name: str,
46895
+ cluster_placement_group_id: str,
44898
46896
  compartment_id: str,
44899
46897
  data_collection_options: Sequence['outputs.GetExadbVmClustersExadbVmClusterDataCollectionOptionResult'],
44900
46898
  defined_tags: Mapping[str, str],
@@ -44926,6 +46924,7 @@ class GetExadbVmClustersExadbVmClusterResult(dict):
44926
46924
  ssh_public_keys: Sequence[str],
44927
46925
  state: str,
44928
46926
  subnet_id: str,
46927
+ subscription_id: str,
44929
46928
  system_tags: Mapping[str, str],
44930
46929
  system_version: str,
44931
46930
  time_created: str,
@@ -44937,6 +46936,7 @@ class GetExadbVmClustersExadbVmClusterResult(dict):
44937
46936
  :param Sequence[str] backup_network_nsg_ids: A list of the [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the network security groups (NSGs) that the backup network of this DB system belongs to. Setting this to an empty array after the list is created removes the resource from all NSGs. For more information about NSGs, see [Security Rules](https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/securityrules.htm). Applicable only to Exadata systems.
44938
46937
  :param str backup_subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the backup network subnet associated with the Exadata VM cluster on Exascale Infrastructure.
44939
46938
  :param str cluster_name: The cluster name for Exadata VM cluster on Exascale Infrastructure. The cluster name must begin with an alphabetic character, and may contain hyphens (-). Underscores (_) are not permitted. The cluster name can be no longer than 11 characters and is not case sensitive.
46939
+ :param str cluster_placement_group_id: A filter to return only resources that match the given cluster placement group ID exactly.
44940
46940
  :param str compartment_id: The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
44941
46941
  :param Sequence['GetExadbVmClustersExadbVmClusterDataCollectionOptionArgs'] data_collection_options: Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
44942
46942
  :param Mapping[str, str] defined_tags: Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm).
@@ -44969,6 +46969,7 @@ class GetExadbVmClustersExadbVmClusterResult(dict):
44969
46969
  :param Sequence[str] ssh_public_keys: The public key portion of one or more key pairs used for SSH access to the Exadata VM cluster on Exascale Infrastructure.
44970
46970
  :param str state: A filter to return only Exadata VM clusters on Exascale Infrastructure that match the given lifecycle state exactly.
44971
46971
  :param str subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet associated with the Exadata VM cluster on Exascale Infrastructure.
46972
+ :param str subscription_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subscription with which resource needs to be associated with.
44972
46973
  :param Mapping[str, str] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm).
44973
46974
  :param str system_version: Operating system version of the image.
44974
46975
  :param str time_created: The date and time that the Exadata VM cluster on Exascale Infrastructure was created.
@@ -44980,6 +46981,7 @@ class GetExadbVmClustersExadbVmClusterResult(dict):
44980
46981
  pulumi.set(__self__, "backup_network_nsg_ids", backup_network_nsg_ids)
44981
46982
  pulumi.set(__self__, "backup_subnet_id", backup_subnet_id)
44982
46983
  pulumi.set(__self__, "cluster_name", cluster_name)
46984
+ pulumi.set(__self__, "cluster_placement_group_id", cluster_placement_group_id)
44983
46985
  pulumi.set(__self__, "compartment_id", compartment_id)
44984
46986
  pulumi.set(__self__, "data_collection_options", data_collection_options)
44985
46987
  pulumi.set(__self__, "defined_tags", defined_tags)
@@ -45011,6 +47013,7 @@ class GetExadbVmClustersExadbVmClusterResult(dict):
45011
47013
  pulumi.set(__self__, "ssh_public_keys", ssh_public_keys)
45012
47014
  pulumi.set(__self__, "state", state)
45013
47015
  pulumi.set(__self__, "subnet_id", subnet_id)
47016
+ pulumi.set(__self__, "subscription_id", subscription_id)
45014
47017
  pulumi.set(__self__, "system_tags", system_tags)
45015
47018
  pulumi.set(__self__, "system_version", system_version)
45016
47019
  pulumi.set(__self__, "time_created", time_created)
@@ -45050,6 +47053,14 @@ class GetExadbVmClustersExadbVmClusterResult(dict):
45050
47053
  """
45051
47054
  return pulumi.get(self, "cluster_name")
45052
47055
 
47056
+ @property
47057
+ @pulumi.getter(name="clusterPlacementGroupId")
47058
+ def cluster_placement_group_id(self) -> str:
47059
+ """
47060
+ A filter to return only resources that match the given cluster placement group ID exactly.
47061
+ """
47062
+ return pulumi.get(self, "cluster_placement_group_id")
47063
+
45053
47064
  @property
45054
47065
  @pulumi.getter(name="compartmentId")
45055
47066
  def compartment_id(self) -> str:
@@ -45299,6 +47310,14 @@ class GetExadbVmClustersExadbVmClusterResult(dict):
45299
47310
  """
45300
47311
  return pulumi.get(self, "subnet_id")
45301
47312
 
47313
+ @property
47314
+ @pulumi.getter(name="subscriptionId")
47315
+ def subscription_id(self) -> str:
47316
+ """
47317
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subscription with which resource needs to be associated with.
47318
+ """
47319
+ return pulumi.get(self, "subscription_id")
47320
+
45302
47321
  @property
45303
47322
  @pulumi.getter(name="systemTags")
45304
47323
  def system_tags(self) -> Mapping[str, str]:
@@ -45652,15 +47671,18 @@ class GetExascaleDbStorageVaultsExascaleDbStorageVaultResult(dict):
45652
47671
  def __init__(__self__, *,
45653
47672
  additional_flash_cache_in_percent: int,
45654
47673
  availability_domain: str,
47674
+ cluster_placement_group_id: str,
45655
47675
  compartment_id: str,
45656
47676
  defined_tags: Mapping[str, str],
45657
47677
  description: str,
45658
47678
  display_name: str,
47679
+ exadata_infrastructure_id: str,
45659
47680
  freeform_tags: Mapping[str, str],
45660
47681
  high_capacity_database_storages: Sequence['outputs.GetExascaleDbStorageVaultsExascaleDbStorageVaultHighCapacityDatabaseStorageResult'],
45661
47682
  id: str,
45662
47683
  lifecycle_details: str,
45663
47684
  state: str,
47685
+ subscription_id: str,
45664
47686
  system_tags: Mapping[str, str],
45665
47687
  time_created: str,
45666
47688
  time_zone: str,
@@ -45669,15 +47691,18 @@ class GetExascaleDbStorageVaultsExascaleDbStorageVaultResult(dict):
45669
47691
  """
45670
47692
  :param int additional_flash_cache_in_percent: The size of additional Flash Cache in percentage of High Capacity database storage.
45671
47693
  :param str availability_domain: The name of the availability domain in which the Exadata Database Storage Vault is located.
47694
+ :param str cluster_placement_group_id: A filter to return only resources that match the given cluster placement group ID exactly.
45672
47695
  :param str compartment_id: The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
45673
47696
  :param Mapping[str, str] defined_tags: Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm).
45674
47697
  :param str description: Exadata Database Storage Vault description.
45675
47698
  :param str display_name: A filter to return only resources that match the entire display name given. The match is not case sensitive.
47699
+ :param str exadata_infrastructure_id: A filter to return only list of Vaults that are linked to the exadata infrastructure Id.
45676
47700
  :param Mapping[str, str] freeform_tags: Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
45677
47701
  :param Sequence['GetExascaleDbStorageVaultsExascaleDbStorageVaultHighCapacityDatabaseStorageArgs'] high_capacity_database_storages: Exadata Database Storage Details
45678
47702
  :param str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Exadata Database Storage Vault.
45679
47703
  :param str lifecycle_details: Additional information about the current lifecycle state.
45680
47704
  :param str state: A filter to return only Exadata Database Storage Vaults that match the given lifecycle state exactly.
47705
+ :param str subscription_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subscription with which resource needs to be associated with.
45681
47706
  :param Mapping[str, str] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm).
45682
47707
  :param str time_created: The date and time that the Exadata Database Storage Vault was created.
45683
47708
  :param str time_zone: The time zone that you want to use for the Exadata Database Storage Vault. For details, see [Time Zones](https://docs.cloud.oracle.com/iaas/Content/Database/References/timezones.htm).
@@ -45686,15 +47711,18 @@ class GetExascaleDbStorageVaultsExascaleDbStorageVaultResult(dict):
45686
47711
  """
45687
47712
  pulumi.set(__self__, "additional_flash_cache_in_percent", additional_flash_cache_in_percent)
45688
47713
  pulumi.set(__self__, "availability_domain", availability_domain)
47714
+ pulumi.set(__self__, "cluster_placement_group_id", cluster_placement_group_id)
45689
47715
  pulumi.set(__self__, "compartment_id", compartment_id)
45690
47716
  pulumi.set(__self__, "defined_tags", defined_tags)
45691
47717
  pulumi.set(__self__, "description", description)
45692
47718
  pulumi.set(__self__, "display_name", display_name)
47719
+ pulumi.set(__self__, "exadata_infrastructure_id", exadata_infrastructure_id)
45693
47720
  pulumi.set(__self__, "freeform_tags", freeform_tags)
45694
47721
  pulumi.set(__self__, "high_capacity_database_storages", high_capacity_database_storages)
45695
47722
  pulumi.set(__self__, "id", id)
45696
47723
  pulumi.set(__self__, "lifecycle_details", lifecycle_details)
45697
47724
  pulumi.set(__self__, "state", state)
47725
+ pulumi.set(__self__, "subscription_id", subscription_id)
45698
47726
  pulumi.set(__self__, "system_tags", system_tags)
45699
47727
  pulumi.set(__self__, "time_created", time_created)
45700
47728
  pulumi.set(__self__, "time_zone", time_zone)
@@ -45717,6 +47745,14 @@ class GetExascaleDbStorageVaultsExascaleDbStorageVaultResult(dict):
45717
47745
  """
45718
47746
  return pulumi.get(self, "availability_domain")
45719
47747
 
47748
+ @property
47749
+ @pulumi.getter(name="clusterPlacementGroupId")
47750
+ def cluster_placement_group_id(self) -> str:
47751
+ """
47752
+ A filter to return only resources that match the given cluster placement group ID exactly.
47753
+ """
47754
+ return pulumi.get(self, "cluster_placement_group_id")
47755
+
45720
47756
  @property
45721
47757
  @pulumi.getter(name="compartmentId")
45722
47758
  def compartment_id(self) -> str:
@@ -45749,6 +47785,14 @@ class GetExascaleDbStorageVaultsExascaleDbStorageVaultResult(dict):
45749
47785
  """
45750
47786
  return pulumi.get(self, "display_name")
45751
47787
 
47788
+ @property
47789
+ @pulumi.getter(name="exadataInfrastructureId")
47790
+ def exadata_infrastructure_id(self) -> str:
47791
+ """
47792
+ A filter to return only list of Vaults that are linked to the exadata infrastructure Id.
47793
+ """
47794
+ return pulumi.get(self, "exadata_infrastructure_id")
47795
+
45752
47796
  @property
45753
47797
  @pulumi.getter(name="freeformTags")
45754
47798
  def freeform_tags(self) -> Mapping[str, str]:
@@ -45789,6 +47833,14 @@ class GetExascaleDbStorageVaultsExascaleDbStorageVaultResult(dict):
45789
47833
  """
45790
47834
  return pulumi.get(self, "state")
45791
47835
 
47836
+ @property
47837
+ @pulumi.getter(name="subscriptionId")
47838
+ def subscription_id(self) -> str:
47839
+ """
47840
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subscription with which resource needs to be associated with.
47841
+ """
47842
+ return pulumi.get(self, "subscription_id")
47843
+
45792
47844
  @property
45793
47845
  @pulumi.getter(name="systemTags")
45794
47846
  def system_tags(self) -> Mapping[str, str]:
@@ -46619,7 +48671,7 @@ class GetExternalContainerDatabasesExternalContainerDatabaseResult(dict):
46619
48671
  :param str character_set: The character set of the external database.
46620
48672
  :param str compartment_id: The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
46621
48673
  :param str database_configuration: The Oracle Database configuration
46622
- :param str database_edition: The Oracle Database edition.
48674
+ :param str database_edition: The Oracle Database Edition that applies to all the databases on the DB system. Exadata DB systems and 2-node RAC DB systems require ENTERPRISE_EDITION_EXTREME_PERFORMANCE.
46623
48675
  :param Sequence['GetExternalContainerDatabasesExternalContainerDatabaseDatabaseManagementConfigArgs'] database_management_configs: The configuration of the Database Management service.
46624
48676
  :param str database_version: The Oracle Database version.
46625
48677
  :param str db_id: The Oracle Database ID, which identifies an Oracle Database located outside of Oracle Cloud.
@@ -46684,7 +48736,7 @@ class GetExternalContainerDatabasesExternalContainerDatabaseResult(dict):
46684
48736
  @pulumi.getter(name="databaseEdition")
46685
48737
  def database_edition(self) -> str:
46686
48738
  """
46687
- The Oracle Database edition.
48739
+ The Oracle Database Edition that applies to all the databases on the DB system. Exadata DB systems and 2-node RAC DB systems require ENTERPRISE_EDITION_EXTREME_PERFORMANCE.
46688
48740
  """
46689
48741
  return pulumi.get(self, "database_edition")
46690
48742
 
@@ -47477,7 +49529,7 @@ class GetExternalNonContainerDatabasesExternalNonContainerDatabaseResult(dict):
47477
49529
  :param str character_set: The character set of the external database.
47478
49530
  :param str compartment_id: The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
47479
49531
  :param str database_configuration: The Oracle Database configuration
47480
- :param str database_edition: The Oracle Database edition.
49532
+ :param str database_edition: The Oracle Database Edition that applies to all the databases on the DB system. Exadata DB systems and 2-node RAC DB systems require ENTERPRISE_EDITION_EXTREME_PERFORMANCE.
47481
49533
  :param Sequence['GetExternalNonContainerDatabasesExternalNonContainerDatabaseDatabaseManagementConfigArgs'] database_management_configs: The configuration of the Database Management service.
47482
49534
  :param str database_version: The Oracle Database version.
47483
49535
  :param str db_id: The Oracle Database ID, which identifies an Oracle Database located outside of Oracle Cloud.
@@ -47544,7 +49596,7 @@ class GetExternalNonContainerDatabasesExternalNonContainerDatabaseResult(dict):
47544
49596
  @pulumi.getter(name="databaseEdition")
47545
49597
  def database_edition(self) -> str:
47546
49598
  """
47547
- The Oracle Database edition.
49599
+ The Oracle Database Edition that applies to all the databases on the DB system. Exadata DB systems and 2-node RAC DB systems require ENTERPRISE_EDITION_EXTREME_PERFORMANCE.
47548
49600
  """
47549
49601
  return pulumi.get(self, "database_edition")
47550
49602
 
@@ -47929,7 +49981,7 @@ class GetExternalPluggableDatabasesExternalPluggableDatabaseResult(dict):
47929
49981
  :param str character_set: The character set of the external database.
47930
49982
  :param str compartment_id: The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
47931
49983
  :param str database_configuration: The Oracle Database configuration
47932
- :param str database_edition: The Oracle Database edition.
49984
+ :param str database_edition: The Oracle Database Edition that applies to all the databases on the DB system. Exadata DB systems and 2-node RAC DB systems require ENTERPRISE_EDITION_EXTREME_PERFORMANCE.
47933
49985
  :param Sequence['GetExternalPluggableDatabasesExternalPluggableDatabaseDatabaseManagementConfigArgs'] database_management_configs: The configuration of the Database Management service.
47934
49986
  :param str database_version: The Oracle Database version.
47935
49987
  :param str db_id: The Oracle Database ID, which identifies an Oracle Database located outside of Oracle Cloud.
@@ -48000,7 +50052,7 @@ class GetExternalPluggableDatabasesExternalPluggableDatabaseResult(dict):
48000
50052
  @pulumi.getter(name="databaseEdition")
48001
50053
  def database_edition(self) -> str:
48002
50054
  """
48003
- The Oracle Database edition.
50055
+ The Oracle Database Edition that applies to all the databases on the DB system. Exadata DB systems and 2-node RAC DB systems require ENTERPRISE_EDITION_EXTREME_PERFORMANCE.
48004
50056
  """
48005
50057
  return pulumi.get(self, "database_edition")
48006
50058
 
@@ -48324,18 +50376,39 @@ class GetFlexComponentsFlexComponentCollectionItemResult(dict):
48324
50376
  def __init__(__self__, *,
48325
50377
  available_core_count: int,
48326
50378
  available_db_storage_in_gbs: int,
50379
+ available_local_storage_in_gbs: int,
50380
+ available_memory_in_gbs: int,
50381
+ compute_model: str,
50382
+ description_summary: str,
50383
+ hardware_type: str,
48327
50384
  minimum_core_count: int,
48328
- name: str):
50385
+ name: str,
50386
+ runtime_minimum_core_count: int,
50387
+ shape: str):
48329
50388
  """
48330
50389
  :param int available_core_count: The maximum number of CPU cores that can ben enabled on the DB Server for this Flex Component.
48331
50390
  :param int available_db_storage_in_gbs: The maximum storage that can be enabled on the Storage Server for this Flex Component.
50391
+ :param int available_local_storage_in_gbs: The maximum local storage that can be enabled on the DB Server for this Flex Component.
50392
+ :param int available_memory_in_gbs: The maximum memory size that can be enabled on the DB Server for this Flex Component.
50393
+ :param str compute_model: The compute model of the DB Server for this Flex Component.
50394
+ :param str description_summary: The description summary for this Flex Component.
50395
+ :param str hardware_type: The hardware type of the DB (Compute) or Storage (Cell) Server for this Flex Component.
48332
50396
  :param int minimum_core_count: The minimum number of CPU cores that can be enabled on the DB Server for this Flex Component.
48333
50397
  :param str name: A filter to return only resources that match the entire name given. The match is not case sensitive.
50398
+ :param int runtime_minimum_core_count: The runtime minimum number of CPU cores that can be enabled for this Flex Component.
50399
+ :param str shape: A filter to return only resources that belong to the entire shape name given. The match is not case sensitive.
48334
50400
  """
48335
50401
  pulumi.set(__self__, "available_core_count", available_core_count)
48336
50402
  pulumi.set(__self__, "available_db_storage_in_gbs", available_db_storage_in_gbs)
50403
+ pulumi.set(__self__, "available_local_storage_in_gbs", available_local_storage_in_gbs)
50404
+ pulumi.set(__self__, "available_memory_in_gbs", available_memory_in_gbs)
50405
+ pulumi.set(__self__, "compute_model", compute_model)
50406
+ pulumi.set(__self__, "description_summary", description_summary)
50407
+ pulumi.set(__self__, "hardware_type", hardware_type)
48337
50408
  pulumi.set(__self__, "minimum_core_count", minimum_core_count)
48338
50409
  pulumi.set(__self__, "name", name)
50410
+ pulumi.set(__self__, "runtime_minimum_core_count", runtime_minimum_core_count)
50411
+ pulumi.set(__self__, "shape", shape)
48339
50412
 
48340
50413
  @property
48341
50414
  @pulumi.getter(name="availableCoreCount")
@@ -48353,6 +50426,46 @@ class GetFlexComponentsFlexComponentCollectionItemResult(dict):
48353
50426
  """
48354
50427
  return pulumi.get(self, "available_db_storage_in_gbs")
48355
50428
 
50429
+ @property
50430
+ @pulumi.getter(name="availableLocalStorageInGbs")
50431
+ def available_local_storage_in_gbs(self) -> int:
50432
+ """
50433
+ The maximum local storage that can be enabled on the DB Server for this Flex Component.
50434
+ """
50435
+ return pulumi.get(self, "available_local_storage_in_gbs")
50436
+
50437
+ @property
50438
+ @pulumi.getter(name="availableMemoryInGbs")
50439
+ def available_memory_in_gbs(self) -> int:
50440
+ """
50441
+ The maximum memory size that can be enabled on the DB Server for this Flex Component.
50442
+ """
50443
+ return pulumi.get(self, "available_memory_in_gbs")
50444
+
50445
+ @property
50446
+ @pulumi.getter(name="computeModel")
50447
+ def compute_model(self) -> str:
50448
+ """
50449
+ The compute model of the DB Server for this Flex Component.
50450
+ """
50451
+ return pulumi.get(self, "compute_model")
50452
+
50453
+ @property
50454
+ @pulumi.getter(name="descriptionSummary")
50455
+ def description_summary(self) -> str:
50456
+ """
50457
+ The description summary for this Flex Component.
50458
+ """
50459
+ return pulumi.get(self, "description_summary")
50460
+
50461
+ @property
50462
+ @pulumi.getter(name="hardwareType")
50463
+ def hardware_type(self) -> str:
50464
+ """
50465
+ The hardware type of the DB (Compute) or Storage (Cell) Server for this Flex Component.
50466
+ """
50467
+ return pulumi.get(self, "hardware_type")
50468
+
48356
50469
  @property
48357
50470
  @pulumi.getter(name="minimumCoreCount")
48358
50471
  def minimum_core_count(self) -> int:
@@ -48369,6 +50482,22 @@ class GetFlexComponentsFlexComponentCollectionItemResult(dict):
48369
50482
  """
48370
50483
  return pulumi.get(self, "name")
48371
50484
 
50485
+ @property
50486
+ @pulumi.getter(name="runtimeMinimumCoreCount")
50487
+ def runtime_minimum_core_count(self) -> int:
50488
+ """
50489
+ The runtime minimum number of CPU cores that can be enabled for this Flex Component.
50490
+ """
50491
+ return pulumi.get(self, "runtime_minimum_core_count")
50492
+
50493
+ @property
50494
+ @pulumi.getter
50495
+ def shape(self) -> str:
50496
+ """
50497
+ A filter to return only resources that belong to the entire shape name given. The match is not case sensitive.
50498
+ """
50499
+ return pulumi.get(self, "shape")
50500
+
48372
50501
 
48373
50502
  @pulumi.output_type
48374
50503
  class GetGiVersionMinorVersionsFilterResult(dict):
@@ -53485,6 +55614,7 @@ class GetVmClustersVmClusterResult(dict):
53485
55614
  availability_domain: str,
53486
55615
  cloud_automation_update_details: Sequence['outputs.GetVmClustersVmClusterCloudAutomationUpdateDetailResult'],
53487
55616
  compartment_id: str,
55617
+ compute_model: str,
53488
55618
  cpu_core_count: int,
53489
55619
  cpus_enabled: int,
53490
55620
  data_collection_options: Sequence['outputs.GetVmClustersVmClusterDataCollectionOptionResult'],
@@ -53495,6 +55625,7 @@ class GetVmClustersVmClusterResult(dict):
53495
55625
  defined_tags: Mapping[str, str],
53496
55626
  display_name: str,
53497
55627
  exadata_infrastructure_id: str,
55628
+ exascale_db_storage_vault_id: str,
53498
55629
  file_system_configuration_details: Sequence['outputs.GetVmClustersVmClusterFileSystemConfigurationDetailResult'],
53499
55630
  freeform_tags: Mapping[str, str],
53500
55631
  gi_version: str,
@@ -53510,14 +55641,17 @@ class GetVmClustersVmClusterResult(dict):
53510
55641
  shape: str,
53511
55642
  ssh_public_keys: Sequence[str],
53512
55643
  state: str,
55644
+ storage_management_type: str,
53513
55645
  system_version: str,
53514
55646
  time_created: str,
53515
55647
  time_zone: str,
53516
- vm_cluster_network_id: str):
55648
+ vm_cluster_network_id: str,
55649
+ vm_cluster_type: str):
53517
55650
  """
53518
55651
  :param str availability_domain: The name of the availability domain that the VM cluster is located in.
53519
55652
  :param Sequence['GetVmClustersVmClusterCloudAutomationUpdateDetailArgs'] cloud_automation_update_details: Specifies the properties necessary for cloud automation updates. This includes modifying the apply update time preference, enabling or disabling early adoption, and enabling, modifying, or disabling the update freeze period.
53520
55653
  :param str compartment_id: The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
55654
+ :param str compute_model: The compute model of the Autonomous Database. This is required if using the `computeCount` parameter. If using `cpuCoreCount` then it is an error to specify `computeModel` to a non-null value. ECPU compute model is the recommended model and OCPU compute model is legacy.
53521
55655
  :param int cpus_enabled: The number of enabled CPU cores.
53522
55656
  :param Sequence['GetVmClustersVmClusterDataCollectionOptionArgs'] data_collection_options: Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
53523
55657
  :param float data_storage_size_in_gb: Size of the DATA disk group in GBs.
@@ -53527,6 +55661,7 @@ class GetVmClustersVmClusterResult(dict):
53527
55661
  :param Mapping[str, str] defined_tags: Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm).
53528
55662
  :param str display_name: A filter to return only resources that match the entire display name given. The match is not case sensitive.
53529
55663
  :param str exadata_infrastructure_id: If provided, filters the results for the given Exadata Infrastructure.
55664
+ :param str exascale_db_storage_vault_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Exadata Database Storage Vault.
53530
55665
  :param Sequence['GetVmClustersVmClusterFileSystemConfigurationDetailArgs'] file_system_configuration_details: Details of the file system configuration of the VM cluster.
53531
55666
  :param Mapping[str, str] freeform_tags: Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
53532
55667
  :param str gi_version: The Oracle Grid Infrastructure software version for the VM cluster.
@@ -53540,14 +55675,17 @@ class GetVmClustersVmClusterResult(dict):
53540
55675
  :param str shape: The shape of the Exadata infrastructure. The shape determines the amount of CPU, storage, and memory resources allocated to the instance.
53541
55676
  :param Sequence[str] ssh_public_keys: The public key portion of one or more key pairs used for SSH access to the VM cluster.
53542
55677
  :param str state: A filter to return only resources that match the given lifecycle state exactly.
55678
+ :param str storage_management_type: Specifies whether the type of storage management for the VM cluster is ASM or Exascale.
53543
55679
  :param str system_version: Operating system version of the image.
53544
55680
  :param str time_created: The date and time that the VM cluster was created.
53545
55681
  :param str time_zone: The time zone of the Exadata infrastructure. For details, see [Exadata Infrastructure Time Zones](https://docs.cloud.oracle.com/iaas/Content/Database/References/timezones.htm).
53546
55682
  :param str vm_cluster_network_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the VM cluster network.
55683
+ :param str vm_cluster_type: A filter to return only vmclusters that match the given vmcluster type exactly.
53547
55684
  """
53548
55685
  pulumi.set(__self__, "availability_domain", availability_domain)
53549
55686
  pulumi.set(__self__, "cloud_automation_update_details", cloud_automation_update_details)
53550
55687
  pulumi.set(__self__, "compartment_id", compartment_id)
55688
+ pulumi.set(__self__, "compute_model", compute_model)
53551
55689
  pulumi.set(__self__, "cpu_core_count", cpu_core_count)
53552
55690
  pulumi.set(__self__, "cpus_enabled", cpus_enabled)
53553
55691
  pulumi.set(__self__, "data_collection_options", data_collection_options)
@@ -53558,6 +55696,7 @@ class GetVmClustersVmClusterResult(dict):
53558
55696
  pulumi.set(__self__, "defined_tags", defined_tags)
53559
55697
  pulumi.set(__self__, "display_name", display_name)
53560
55698
  pulumi.set(__self__, "exadata_infrastructure_id", exadata_infrastructure_id)
55699
+ pulumi.set(__self__, "exascale_db_storage_vault_id", exascale_db_storage_vault_id)
53561
55700
  pulumi.set(__self__, "file_system_configuration_details", file_system_configuration_details)
53562
55701
  pulumi.set(__self__, "freeform_tags", freeform_tags)
53563
55702
  pulumi.set(__self__, "gi_version", gi_version)
@@ -53573,10 +55712,12 @@ class GetVmClustersVmClusterResult(dict):
53573
55712
  pulumi.set(__self__, "shape", shape)
53574
55713
  pulumi.set(__self__, "ssh_public_keys", ssh_public_keys)
53575
55714
  pulumi.set(__self__, "state", state)
55715
+ pulumi.set(__self__, "storage_management_type", storage_management_type)
53576
55716
  pulumi.set(__self__, "system_version", system_version)
53577
55717
  pulumi.set(__self__, "time_created", time_created)
53578
55718
  pulumi.set(__self__, "time_zone", time_zone)
53579
55719
  pulumi.set(__self__, "vm_cluster_network_id", vm_cluster_network_id)
55720
+ pulumi.set(__self__, "vm_cluster_type", vm_cluster_type)
53580
55721
 
53581
55722
  @property
53582
55723
  @pulumi.getter(name="availabilityDomain")
@@ -53602,6 +55743,14 @@ class GetVmClustersVmClusterResult(dict):
53602
55743
  """
53603
55744
  return pulumi.get(self, "compartment_id")
53604
55745
 
55746
+ @property
55747
+ @pulumi.getter(name="computeModel")
55748
+ def compute_model(self) -> str:
55749
+ """
55750
+ The compute model of the Autonomous Database. This is required if using the `computeCount` parameter. If using `cpuCoreCount` then it is an error to specify `computeModel` to a non-null value. ECPU compute model is the recommended model and OCPU compute model is legacy.
55751
+ """
55752
+ return pulumi.get(self, "compute_model")
55753
+
53605
55754
  @property
53606
55755
  @pulumi.getter(name="cpuCoreCount")
53607
55756
  def cpu_core_count(self) -> int:
@@ -53679,6 +55828,14 @@ class GetVmClustersVmClusterResult(dict):
53679
55828
  """
53680
55829
  return pulumi.get(self, "exadata_infrastructure_id")
53681
55830
 
55831
+ @property
55832
+ @pulumi.getter(name="exascaleDbStorageVaultId")
55833
+ def exascale_db_storage_vault_id(self) -> str:
55834
+ """
55835
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Exadata Database Storage Vault.
55836
+ """
55837
+ return pulumi.get(self, "exascale_db_storage_vault_id")
55838
+
53682
55839
  @property
53683
55840
  @pulumi.getter(name="fileSystemConfigurationDetails")
53684
55841
  def file_system_configuration_details(self) -> Sequence['outputs.GetVmClustersVmClusterFileSystemConfigurationDetailResult']:
@@ -53793,6 +55950,14 @@ class GetVmClustersVmClusterResult(dict):
53793
55950
  """
53794
55951
  return pulumi.get(self, "state")
53795
55952
 
55953
+ @property
55954
+ @pulumi.getter(name="storageManagementType")
55955
+ def storage_management_type(self) -> str:
55956
+ """
55957
+ Specifies whether the type of storage management for the VM cluster is ASM or Exascale.
55958
+ """
55959
+ return pulumi.get(self, "storage_management_type")
55960
+
53796
55961
  @property
53797
55962
  @pulumi.getter(name="systemVersion")
53798
55963
  def system_version(self) -> str:
@@ -53825,6 +55990,14 @@ class GetVmClustersVmClusterResult(dict):
53825
55990
  """
53826
55991
  return pulumi.get(self, "vm_cluster_network_id")
53827
55992
 
55993
+ @property
55994
+ @pulumi.getter(name="vmClusterType")
55995
+ def vm_cluster_type(self) -> str:
55996
+ """
55997
+ A filter to return only vmclusters that match the given vmcluster type exactly.
55998
+ """
55999
+ return pulumi.get(self, "vm_cluster_type")
56000
+
53828
56001
 
53829
56002
  @pulumi.output_type
53830
56003
  class GetVmClustersVmClusterCloudAutomationUpdateDetailResult(dict):