pulumi-oci 3.5.0a1756363728__py3-none-any.whl → 3.6.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 (194) hide show
  1. pulumi_oci/__init__.py +128 -0
  2. pulumi_oci/aivision/__init__.py +12 -0
  3. pulumi_oci/aivision/_inputs.py +787 -51
  4. pulumi_oci/aivision/get_model.py +4 -4
  5. pulumi_oci/aivision/get_models.py +11 -11
  6. pulumi_oci/aivision/get_project.py +15 -15
  7. pulumi_oci/aivision/get_projects.py +10 -10
  8. pulumi_oci/aivision/get_stream_group.py +268 -0
  9. pulumi_oci/aivision/get_stream_groups.py +177 -0
  10. pulumi_oci/aivision/get_stream_job.py +296 -0
  11. pulumi_oci/aivision/get_stream_jobs.py +199 -0
  12. pulumi_oci/aivision/get_stream_source.py +240 -0
  13. pulumi_oci/aivision/get_stream_sources.py +199 -0
  14. pulumi_oci/aivision/get_vision_private_endpoint.py +267 -0
  15. pulumi_oci/aivision/get_vision_private_endpoints.py +199 -0
  16. pulumi_oci/aivision/model.py +149 -157
  17. pulumi_oci/aivision/outputs.py +1920 -116
  18. pulumi_oci/aivision/project.py +61 -69
  19. pulumi_oci/aivision/stream_group.py +632 -0
  20. pulumi_oci/aivision/stream_job.py +744 -0
  21. pulumi_oci/aivision/stream_source.py +519 -0
  22. pulumi_oci/aivision/vision_private_endpoint.py +606 -0
  23. pulumi_oci/cloudguard/_inputs.py +1198 -72
  24. pulumi_oci/cloudguard/get_managed_list.py +15 -1
  25. pulumi_oci/cloudguard/managed_list.py +47 -0
  26. pulumi_oci/cloudguard/outputs.py +2104 -67
  27. pulumi_oci/config/__init__.pyi +12 -17
  28. pulumi_oci/config/vars.py +12 -17
  29. pulumi_oci/core/compute_gpu_memory_fabric.py +28 -0
  30. pulumi_oci/core/get_compute_gpu_memory_fabric.py +15 -1
  31. pulumi_oci/core/outputs.py +11 -0
  32. pulumi_oci/database/_inputs.py +298 -13
  33. pulumi_oci/database/data_guard_association.py +98 -0
  34. pulumi_oci/database/database.py +28 -0
  35. pulumi_oci/database/db_node.py +56 -0
  36. pulumi_oci/database/db_system.py +108 -14
  37. pulumi_oci/database/exadb_vm_cluster.py +49 -0
  38. pulumi_oci/database/exascale_db_storage_vault.py +126 -0
  39. pulumi_oci/database/get_data_guard_association.py +23 -1
  40. pulumi_oci/database/get_database.py +15 -1
  41. pulumi_oci/database/get_db_node.py +29 -1
  42. pulumi_oci/database/get_db_system_shapes.py +25 -6
  43. pulumi_oci/database/get_db_system_storage_performances.py +20 -3
  44. pulumi_oci/database/get_db_versions.py +20 -1
  45. pulumi_oci/database/get_exadb_vm_cluster.py +15 -1
  46. pulumi_oci/database/get_exascale_db_storage_vault.py +43 -1
  47. pulumi_oci/database/get_exascale_db_storage_vaults.py +87 -8
  48. pulumi_oci/database/get_gi_versions.py +25 -6
  49. pulumi_oci/database/outputs.py +696 -13
  50. pulumi_oci/datasafe/__init__.py +24 -0
  51. pulumi_oci/datasafe/_inputs.py +3669 -1537
  52. pulumi_oci/datasafe/attribute_set.py +693 -0
  53. pulumi_oci/datasafe/audit_profile.py +356 -95
  54. pulumi_oci/datasafe/audit_profile_management.py +389 -129
  55. pulumi_oci/datasafe/audit_trail.py +47 -0
  56. pulumi_oci/datasafe/audit_trail_management.py +49 -0
  57. pulumi_oci/datasafe/get_alerts.py +2 -2
  58. pulumi_oci/datasafe/get_attribute_set.py +295 -0
  59. pulumi_oci/datasafe/get_attribute_set_associated_resources.py +188 -0
  60. pulumi_oci/datasafe/get_attribute_sets.py +340 -0
  61. pulumi_oci/datasafe/get_audit_archive_retrievals.py +20 -1
  62. pulumi_oci/datasafe/get_audit_events.py +2 -2
  63. pulumi_oci/datasafe/get_audit_policies.py +20 -1
  64. pulumi_oci/datasafe/get_audit_profile.py +78 -8
  65. pulumi_oci/datasafe/get_audit_profile_target_overrides.py +163 -0
  66. pulumi_oci/datasafe/get_audit_profiles.py +50 -9
  67. pulumi_oci/datasafe/get_audit_trail.py +15 -1
  68. pulumi_oci/datasafe/get_audit_trails.py +20 -1
  69. pulumi_oci/datasafe/get_database_security_configs.py +20 -1
  70. pulumi_oci/datasafe/get_discovery_analytics.py +39 -1
  71. pulumi_oci/datasafe/get_masking_analytics.py +42 -1
  72. pulumi_oci/datasafe/get_onprem_connectors.py +26 -23
  73. pulumi_oci/datasafe/get_report.py +43 -1
  74. pulumi_oci/datasafe/get_reports.py +23 -1
  75. pulumi_oci/datasafe/get_security_assessment.py +116 -2
  76. pulumi_oci/datasafe/get_security_assessment_checks.py +264 -0
  77. pulumi_oci/datasafe/get_security_assessment_finding.py +64 -4
  78. pulumi_oci/datasafe/get_security_assessment_findings.py +73 -6
  79. pulumi_oci/datasafe/get_security_assessment_template_analytics.py +362 -0
  80. pulumi_oci/datasafe/get_security_assessment_template_association_analytics.py +298 -0
  81. pulumi_oci/datasafe/get_security_assessment_template_baseline_comparison.py +347 -0
  82. pulumi_oci/datasafe/get_security_assessments.py +68 -2
  83. pulumi_oci/datasafe/get_security_policies.py +23 -1
  84. pulumi_oci/datasafe/get_security_policy.py +15 -1
  85. pulumi_oci/datasafe/get_security_policy_config.py +296 -0
  86. pulumi_oci/datasafe/get_security_policy_configs.py +342 -0
  87. pulumi_oci/datasafe/get_security_policy_deployment.py +52 -2
  88. pulumi_oci/datasafe/get_security_policy_deployment_security_policy_entry_state.py +49 -4
  89. pulumi_oci/datasafe/get_security_policy_deployment_security_policy_entry_states.py +47 -6
  90. pulumi_oci/datasafe/get_security_policy_deployments.py +29 -7
  91. pulumi_oci/datasafe/get_sensitive_column_analytics.py +20 -1
  92. pulumi_oci/datasafe/get_sql_collection_analytics.py +20 -1
  93. pulumi_oci/datasafe/get_sql_collections.py +20 -1
  94. pulumi_oci/datasafe/get_sql_firewall_allowed_sql_analytics.py +2 -2
  95. pulumi_oci/datasafe/get_sql_firewall_allowed_sqls.py +2 -2
  96. pulumi_oci/datasafe/get_sql_firewall_violation_analytics.py +2 -2
  97. pulumi_oci/datasafe/get_sql_firewall_violations.py +2 -2
  98. pulumi_oci/datasafe/get_target_alert_policy_associations.py +0 -34
  99. pulumi_oci/datasafe/get_target_database_group.py +296 -0
  100. pulumi_oci/datasafe/get_target_database_group_group_member.py +146 -0
  101. pulumi_oci/datasafe/get_target_database_groups.py +313 -0
  102. pulumi_oci/datasafe/get_unified_audit_policies.py +386 -0
  103. pulumi_oci/datasafe/get_unified_audit_policy.py +338 -0
  104. pulumi_oci/datasafe/get_unified_audit_policy_definition.py +309 -0
  105. pulumi_oci/datasafe/get_unified_audit_policy_definitions.py +334 -0
  106. pulumi_oci/datasafe/get_user_assessment.py +29 -1
  107. pulumi_oci/datasafe/get_user_assessments.py +45 -1
  108. pulumi_oci/datasafe/outputs.py +6964 -192
  109. pulumi_oci/datasafe/report.py +84 -0
  110. pulumi_oci/datasafe/report_definition.py +4 -0
  111. pulumi_oci/datasafe/security_assessment.py +425 -82
  112. pulumi_oci/datasafe/security_assessment_check.py +456 -0
  113. pulumi_oci/datasafe/security_assessment_finding.py +818 -0
  114. pulumi_oci/datasafe/security_policy.py +94 -77
  115. pulumi_oci/datasafe/security_policy_config.py +698 -0
  116. pulumi_oci/datasafe/security_policy_deployment.py +272 -67
  117. pulumi_oci/datasafe/security_policy_deployment_management.py +266 -42
  118. pulumi_oci/datasafe/security_policy_management.py +87 -30
  119. pulumi_oci/datasafe/target_alert_policy_association.py +7 -77
  120. pulumi_oci/datasafe/target_database.py +4 -0
  121. pulumi_oci/datasafe/target_database_group.py +679 -0
  122. pulumi_oci/datasafe/target_database_peer_target_database.py +2 -0
  123. pulumi_oci/datasafe/unified_audit_policy.py +836 -0
  124. pulumi_oci/datasafe/unified_audit_policy_definition.py +687 -0
  125. pulumi_oci/datasafe/user_assessment.py +105 -28
  126. pulumi_oci/disasterrecovery/_inputs.py +231 -3
  127. pulumi_oci/disasterrecovery/dr_protection_group.py +24 -0
  128. pulumi_oci/disasterrecovery/outputs.py +446 -12
  129. pulumi_oci/generativeai/_inputs.py +572 -63
  130. pulumi_oci/generativeai/agent_data_ingestion_job.py +48 -0
  131. pulumi_oci/generativeai/agent_data_source.py +7 -81
  132. pulumi_oci/generativeai/agent_knowledge_base.py +35 -25
  133. pulumi_oci/generativeai/agent_tool.py +172 -0
  134. pulumi_oci/generativeai/get_agent_data_ingestion_job.py +26 -1
  135. pulumi_oci/generativeai/get_agent_data_source.py +1 -5
  136. pulumi_oci/generativeai/get_agent_data_sources.py +0 -4
  137. pulumi_oci/generativeai/get_agent_knowledge_base.py +16 -6
  138. pulumi_oci/generativeai/get_agent_knowledge_bases.py +0 -4
  139. pulumi_oci/generativeai/outputs.py +1128 -106
  140. pulumi_oci/goldengate/deployment.py +94 -0
  141. pulumi_oci/goldengate/get_deployment.py +29 -1
  142. pulumi_oci/goldengate/get_deployments.py +23 -1
  143. pulumi_oci/goldengate/outputs.py +35 -2
  144. pulumi_oci/mysql/_inputs.py +221 -0
  145. pulumi_oci/mysql/get_mysql_backup.py +40 -4
  146. pulumi_oci/mysql/get_mysql_backups.py +2 -2
  147. pulumi_oci/mysql/mysql_backup.py +119 -3
  148. pulumi_oci/mysql/outputs.py +343 -957
  149. pulumi_oci/oci/__init__.py +17 -0
  150. pulumi_oci/oci/_inputs.py +676 -15
  151. pulumi_oci/oci/dbmulticloud_multi_cloud_resource_discovery.py +103 -54
  152. pulumi_oci/oci/dbmulticloud_oracle_db_azure_blob_container.py +45 -45
  153. pulumi_oci/oci/dbmulticloud_oracle_db_azure_blob_mount.py +42 -44
  154. pulumi_oci/oci/dbmulticloud_oracle_db_azure_connector.py +100 -72
  155. pulumi_oci/oci/dbmulticloud_oracle_db_azure_vault.py +74 -74
  156. pulumi_oci/oci/dbmulticloud_oracle_db_azure_vault_association.py +50 -50
  157. pulumi_oci/oci/dbmulticloud_oracle_db_gcp_identity_connector.py +924 -0
  158. pulumi_oci/oci/dbmulticloud_oracle_db_gcp_key_ring.py +762 -0
  159. pulumi_oci/oci/get_dbmulticloud_multi_cloud_resource_discoveries.py +37 -15
  160. pulumi_oci/oci/get_dbmulticloud_multi_cloud_resource_discovery.py +26 -12
  161. pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_blob_container.py +12 -12
  162. pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_blob_containers.py +15 -15
  163. pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_blob_mount.py +12 -12
  164. pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_blob_mounts.py +15 -15
  165. pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_connector.py +30 -16
  166. pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_connectors.py +11 -11
  167. pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_key.py +41 -13
  168. pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_keys.py +12 -12
  169. pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_vault.py +17 -17
  170. pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_vault_association.py +14 -14
  171. pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_vault_associations.py +15 -15
  172. pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_vaults.py +14 -14
  173. pulumi_oci/oci/get_dbmulticloud_oracle_db_gcp_identity_connector.py +366 -0
  174. pulumi_oci/oci/get_dbmulticloud_oracle_db_gcp_identity_connectors.py +213 -0
  175. pulumi_oci/oci/get_dbmulticloud_oracle_db_gcp_key.py +295 -0
  176. pulumi_oci/oci/get_dbmulticloud_oracle_db_gcp_key_ring.py +309 -0
  177. pulumi_oci/oci/get_dbmulticloud_oracle_db_gcp_key_rings.py +229 -0
  178. pulumi_oci/oci/get_dbmulticloud_oracle_db_gcp_keys.py +232 -0
  179. pulumi_oci/oci/get_managed_kafka_kafka_cluster.py +380 -0
  180. pulumi_oci/oci/get_managed_kafka_kafka_cluster_config.py +254 -0
  181. pulumi_oci/oci/get_managed_kafka_kafka_cluster_config_version.py +177 -0
  182. pulumi_oci/oci/get_managed_kafka_kafka_cluster_config_versions.py +144 -0
  183. pulumi_oci/oci/get_managed_kafka_kafka_cluster_configs.py +199 -0
  184. pulumi_oci/oci/get_managed_kafka_kafka_clusters.py +199 -0
  185. pulumi_oci/oci/managed_kafka_kafka_cluster.py +984 -0
  186. pulumi_oci/oci/managed_kafka_kafka_cluster_config.py +549 -0
  187. pulumi_oci/oci/managed_kafka_kafka_cluster_superusers_management.py +352 -0
  188. pulumi_oci/oci/outputs.py +2051 -142
  189. pulumi_oci/provider.py +44 -63
  190. pulumi_oci/pulumi-plugin.json +1 -1
  191. {pulumi_oci-3.5.0a1756363728.dist-info → pulumi_oci-3.6.0.dist-info}/METADATA +1 -1
  192. {pulumi_oci-3.5.0a1756363728.dist-info → pulumi_oci-3.6.0.dist-info}/RECORD +194 -141
  193. {pulumi_oci-3.5.0a1756363728.dist-info → pulumi_oci-3.6.0.dist-info}/WHEEL +0 -0
  194. {pulumi_oci-3.5.0a1756363728.dist-info → pulumi_oci-3.6.0.dist-info}/top_level.txt +0 -0
@@ -111,8 +111,10 @@ __all__ = [
111
111
  'DatabaseDatabaseEncryptionKeyLocationDetails',
112
112
  'DatabaseDatabaseManagementConfig',
113
113
  'DatabaseDatabaseSourceEncryptionKeyLocationDetails',
114
+ 'DatabaseDatabaseStorageSizeDetails',
114
115
  'DatabaseDbBackupConfig',
115
116
  'DatabaseDbBackupConfigBackupDestinationDetail',
117
+ 'DatabaseStorageSizeDetail',
116
118
  'DatabaseUpgradeConnectionString',
117
119
  'DatabaseUpgradeDataGuardGroup',
118
120
  'DatabaseUpgradeDataGuardGroupMember',
@@ -124,6 +126,7 @@ __all__ = [
124
126
  'DbHomeDatabaseDbBackupConfig',
125
127
  'DbHomeDatabaseDbBackupConfigBackupDestinationDetail',
126
128
  'DbHomeDatabaseEncryptionKeyLocationDetails',
129
+ 'DbHomeDatabaseStorageSizeDetails',
127
130
  'DbSystemDataCollectionOptions',
128
131
  'DbSystemDbHome',
129
132
  'DbSystemDbHomeDatabase',
@@ -481,6 +484,7 @@ __all__ = [
481
484
  'GetDatabaseDatabaseEncryptionKeyLocationDetailResult',
482
485
  'GetDatabaseDatabaseManagementConfigResult',
483
486
  'GetDatabaseDatabaseSourceEncryptionKeyLocationDetailResult',
487
+ 'GetDatabaseDatabaseStorageSizeDetailResult',
484
488
  'GetDatabaseDbBackupConfigResult',
485
489
  'GetDatabaseDbBackupConfigBackupDestinationDetailResult',
486
490
  'GetDatabaseMaintenanceRunHistoriesFilterResult',
@@ -505,6 +509,7 @@ __all__ = [
505
509
  'GetDatabasePdbConversionHistoryEntriesPdbConversionHistoryEntryResult',
506
510
  'GetDatabaseSoftwareImagesDatabaseSoftwareImageResult',
507
511
  'GetDatabaseSoftwareImagesFilterResult',
512
+ 'GetDatabaseStorageSizeDetailResult',
508
513
  'GetDatabaseUpgradeHistoryEntriesDatabaseUpgradeHistoryEntryResult',
509
514
  'GetDatabaseUpgradeHistoryEntriesFilterResult',
510
515
  'GetDatabasesDatabaseResult',
@@ -517,14 +522,17 @@ __all__ = [
517
522
  'GetDatabasesDatabaseDatabaseEncryptionKeyLocationDetailResult',
518
523
  'GetDatabasesDatabaseDatabaseManagementConfigResult',
519
524
  'GetDatabasesDatabaseDatabaseSourceEncryptionKeyLocationDetailResult',
525
+ 'GetDatabasesDatabaseDatabaseStorageSizeDetailResult',
520
526
  'GetDatabasesDatabaseDbBackupConfigResult',
521
527
  'GetDatabasesDatabaseDbBackupConfigBackupDestinationDetailResult',
528
+ 'GetDatabasesDatabaseStorageSizeDetailResult',
522
529
  'GetDatabasesFilterResult',
523
530
  'GetDbHomeDatabaseResult',
524
531
  'GetDbHomeDatabaseConnectionStringResult',
525
532
  'GetDbHomeDatabaseDbBackupConfigResult',
526
533
  'GetDbHomeDatabaseDbBackupConfigBackupDestinationDetailResult',
527
534
  'GetDbHomeDatabaseEncryptionKeyLocationDetailResult',
535
+ 'GetDbHomeDatabaseStorageSizeDetailResult',
528
536
  'GetDbHomePatchHistoryEntriesFilterResult',
529
537
  'GetDbHomePatchHistoryEntriesPatchHistoryEntryResult',
530
538
  'GetDbHomePatchesFilterResult',
@@ -535,6 +543,7 @@ __all__ = [
535
543
  'GetDbHomesDbHomeDatabaseDbBackupConfigResult',
536
544
  'GetDbHomesDbHomeDatabaseDbBackupConfigBackupDestinationDetailResult',
537
545
  'GetDbHomesDbHomeDatabaseEncryptionKeyLocationDetailResult',
546
+ 'GetDbHomesDbHomeDatabaseStorageSizeDetailResult',
538
547
  'GetDbHomesFilterResult',
539
548
  'GetDbNodeConsoleConnectionsConsoleConnectionResult',
540
549
  'GetDbNodeConsoleConnectionsFilterResult',
@@ -5392,10 +5401,14 @@ class AutonomousDatabaseResourcePoolSummary(dict):
5392
5401
  @staticmethod
5393
5402
  def __key_warning(key: str):
5394
5403
  suggest = None
5395
- if key == "isDisabled":
5404
+ if key == "availableComputeCapacity":
5405
+ suggest = "available_compute_capacity"
5406
+ elif key == "isDisabled":
5396
5407
  suggest = "is_disabled"
5397
5408
  elif key == "poolSize":
5398
5409
  suggest = "pool_size"
5410
+ elif key == "totalComputeCapacity":
5411
+ suggest = "total_compute_capacity"
5399
5412
 
5400
5413
  if suggest:
5401
5414
  pulumi.log.warn(f"Key '{key}' not found in AutonomousDatabaseResourcePoolSummary. Access the value via the '{suggest}' property getter instead.")
@@ -5409,16 +5422,32 @@ class AutonomousDatabaseResourcePoolSummary(dict):
5409
5422
  return super().get(key, default)
5410
5423
 
5411
5424
  def __init__(__self__, *,
5425
+ available_compute_capacity: Optional[_builtins.int] = None,
5412
5426
  is_disabled: Optional[_builtins.bool] = None,
5413
- pool_size: Optional[_builtins.int] = None):
5427
+ pool_size: Optional[_builtins.int] = None,
5428
+ total_compute_capacity: Optional[_builtins.int] = None):
5414
5429
  """
5430
+ :param _builtins.int available_compute_capacity: Available capacity left for new elastic pool members provision
5415
5431
  :param _builtins.bool is_disabled: (Updatable) Indicates if the resource pool should be deleted for the Autonomous Database.
5416
5432
  :param _builtins.int pool_size: (Updatable) Resource pool size.
5433
+ :param _builtins.int total_compute_capacity: Resource Pool total capacity, it's currently 4x of pool size
5417
5434
  """
5435
+ if available_compute_capacity is not None:
5436
+ pulumi.set(__self__, "available_compute_capacity", available_compute_capacity)
5418
5437
  if is_disabled is not None:
5419
5438
  pulumi.set(__self__, "is_disabled", is_disabled)
5420
5439
  if pool_size is not None:
5421
5440
  pulumi.set(__self__, "pool_size", pool_size)
5441
+ if total_compute_capacity is not None:
5442
+ pulumi.set(__self__, "total_compute_capacity", total_compute_capacity)
5443
+
5444
+ @_builtins.property
5445
+ @pulumi.getter(name="availableComputeCapacity")
5446
+ def available_compute_capacity(self) -> Optional[_builtins.int]:
5447
+ """
5448
+ Available capacity left for new elastic pool members provision
5449
+ """
5450
+ return pulumi.get(self, "available_compute_capacity")
5422
5451
 
5423
5452
  @_builtins.property
5424
5453
  @pulumi.getter(name="isDisabled")
@@ -5436,6 +5465,14 @@ class AutonomousDatabaseResourcePoolSummary(dict):
5436
5465
  """
5437
5466
  return pulumi.get(self, "pool_size")
5438
5467
 
5468
+ @_builtins.property
5469
+ @pulumi.getter(name="totalComputeCapacity")
5470
+ def total_compute_capacity(self) -> Optional[_builtins.int]:
5471
+ """
5472
+ Resource Pool total capacity, it's currently 4x of pool size
5473
+ """
5474
+ return pulumi.get(self, "total_compute_capacity")
5475
+
5439
5476
 
5440
5477
  @pulumi.output_type
5441
5478
  class AutonomousDatabaseScheduledOperation(dict):
@@ -8368,6 +8405,8 @@ class DatabaseDatabase(dict):
8368
8405
  suggest = "source_encryption_key_location_details"
8369
8406
  elif key == "sourceTdeWalletPassword":
8370
8407
  suggest = "source_tde_wallet_password"
8408
+ elif key == "storageSizeDetails":
8409
+ suggest = "storage_size_details"
8371
8410
  elif key == "tdeWalletPassword":
8372
8411
  suggest = "tde_wallet_password"
8373
8412
  elif key == "transportType":
@@ -8411,6 +8450,7 @@ class DatabaseDatabase(dict):
8411
8450
  source_database_id: Optional[_builtins.str] = None,
8412
8451
  source_encryption_key_location_details: Optional['outputs.DatabaseDatabaseSourceEncryptionKeyLocationDetails'] = None,
8413
8452
  source_tde_wallet_password: Optional[_builtins.str] = None,
8453
+ storage_size_details: Optional['outputs.DatabaseDatabaseStorageSizeDetails'] = None,
8414
8454
  tde_wallet_password: Optional[_builtins.str] = None,
8415
8455
  transport_type: Optional[_builtins.str] = None,
8416
8456
  vault_id: Optional[_builtins.str] = None):
@@ -8445,6 +8485,7 @@ class DatabaseDatabase(dict):
8445
8485
  :param _builtins.str source_database_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the source database.
8446
8486
  :param 'DatabaseDatabaseSourceEncryptionKeyLocationDetailsArgs' source_encryption_key_location_details: Types of providers supported for managing database encryption keys
8447
8487
  :param _builtins.str source_tde_wallet_password: The TDE wallet password of the source database specified by 'sourceDatabaseId'.
8488
+ :param 'DatabaseDatabaseStorageSizeDetailsArgs' storage_size_details: The database storage size details. This database option is supported for the Exadata VM cluster on Exascale Infrastructure.
8448
8489
  :param _builtins.str tde_wallet_password: The optional password to open the TDE wallet. The password must be at least nine characters and contain at least two uppercase, two lowercase, two numeric, and two special characters. The special characters must be _, \\#, or -.
8449
8490
  :param _builtins.str transport_type: The redo transport type to use for this Data Guard association. Valid values depend on the specified `protectionMode`:
8450
8491
  * MAXIMUM_AVAILABILITY - SYNC or FASTSYNC
@@ -8504,6 +8545,8 @@ class DatabaseDatabase(dict):
8504
8545
  pulumi.set(__self__, "source_encryption_key_location_details", source_encryption_key_location_details)
8505
8546
  if source_tde_wallet_password is not None:
8506
8547
  pulumi.set(__self__, "source_tde_wallet_password", source_tde_wallet_password)
8548
+ if storage_size_details is not None:
8549
+ pulumi.set(__self__, "storage_size_details", storage_size_details)
8507
8550
  if tde_wallet_password is not None:
8508
8551
  pulumi.set(__self__, "tde_wallet_password", tde_wallet_password)
8509
8552
  if transport_type is not None:
@@ -8709,6 +8752,14 @@ class DatabaseDatabase(dict):
8709
8752
  """
8710
8753
  return pulumi.get(self, "source_tde_wallet_password")
8711
8754
 
8755
+ @_builtins.property
8756
+ @pulumi.getter(name="storageSizeDetails")
8757
+ def storage_size_details(self) -> Optional['outputs.DatabaseDatabaseStorageSizeDetails']:
8758
+ """
8759
+ The database storage size details. This database option is supported for the Exadata VM cluster on Exascale Infrastructure.
8760
+ """
8761
+ return pulumi.get(self, "storage_size_details")
8762
+
8712
8763
  @_builtins.property
8713
8764
  @pulumi.getter(name="tdeWalletPassword")
8714
8765
  def tde_wallet_password(self) -> Optional[_builtins.str]:
@@ -9156,6 +9207,68 @@ class DatabaseDatabaseSourceEncryptionKeyLocationDetails(dict):
9156
9207
  return pulumi.get(self, "provider_type")
9157
9208
 
9158
9209
 
9210
+ @pulumi.output_type
9211
+ class DatabaseDatabaseStorageSizeDetails(dict):
9212
+ @staticmethod
9213
+ def __key_warning(key: str):
9214
+ suggest = None
9215
+ if key == "dataStorageSizeInGb":
9216
+ suggest = "data_storage_size_in_gb"
9217
+ elif key == "recoStorageSizeInGbs":
9218
+ suggest = "reco_storage_size_in_gbs"
9219
+ elif key == "redoLogStorageSizeInGbs":
9220
+ suggest = "redo_log_storage_size_in_gbs"
9221
+
9222
+ if suggest:
9223
+ pulumi.log.warn(f"Key '{key}' not found in DatabaseDatabaseStorageSizeDetails. Access the value via the '{suggest}' property getter instead.")
9224
+
9225
+ def __getitem__(self, key: str) -> Any:
9226
+ DatabaseDatabaseStorageSizeDetails.__key_warning(key)
9227
+ return super().__getitem__(key)
9228
+
9229
+ def get(self, key: str, default = None) -> Any:
9230
+ DatabaseDatabaseStorageSizeDetails.__key_warning(key)
9231
+ return super().get(key, default)
9232
+
9233
+ def __init__(__self__, *,
9234
+ data_storage_size_in_gb: _builtins.int,
9235
+ reco_storage_size_in_gbs: _builtins.int,
9236
+ redo_log_storage_size_in_gbs: Optional[_builtins.int] = None):
9237
+ """
9238
+ :param _builtins.int data_storage_size_in_gb: (Updatable) The DATA storage size, in gigabytes, that is applicable for the database.
9239
+ :param _builtins.int reco_storage_size_in_gbs: (Updatable) The RECO storage size, in gigabytes, that is applicable for the database.
9240
+ :param _builtins.int redo_log_storage_size_in_gbs: The REDO Log storage size, in gigabytes, that is applicable for the database.
9241
+ """
9242
+ pulumi.set(__self__, "data_storage_size_in_gb", data_storage_size_in_gb)
9243
+ pulumi.set(__self__, "reco_storage_size_in_gbs", reco_storage_size_in_gbs)
9244
+ if redo_log_storage_size_in_gbs is not None:
9245
+ pulumi.set(__self__, "redo_log_storage_size_in_gbs", redo_log_storage_size_in_gbs)
9246
+
9247
+ @_builtins.property
9248
+ @pulumi.getter(name="dataStorageSizeInGb")
9249
+ def data_storage_size_in_gb(self) -> _builtins.int:
9250
+ """
9251
+ (Updatable) The DATA storage size, in gigabytes, that is applicable for the database.
9252
+ """
9253
+ return pulumi.get(self, "data_storage_size_in_gb")
9254
+
9255
+ @_builtins.property
9256
+ @pulumi.getter(name="recoStorageSizeInGbs")
9257
+ def reco_storage_size_in_gbs(self) -> _builtins.int:
9258
+ """
9259
+ (Updatable) The RECO storage size, in gigabytes, that is applicable for the database.
9260
+ """
9261
+ return pulumi.get(self, "reco_storage_size_in_gbs")
9262
+
9263
+ @_builtins.property
9264
+ @pulumi.getter(name="redoLogStorageSizeInGbs")
9265
+ def redo_log_storage_size_in_gbs(self) -> Optional[_builtins.int]:
9266
+ """
9267
+ The REDO Log storage size, in gigabytes, that is applicable for the database.
9268
+ """
9269
+ return pulumi.get(self, "redo_log_storage_size_in_gbs")
9270
+
9271
+
9159
9272
  @pulumi.output_type
9160
9273
  class DatabaseDbBackupConfig(dict):
9161
9274
  @staticmethod
@@ -9406,6 +9519,70 @@ class DatabaseDbBackupConfigBackupDestinationDetail(dict):
9406
9519
  return pulumi.get(self, "vpc_user")
9407
9520
 
9408
9521
 
9522
+ @pulumi.output_type
9523
+ class DatabaseStorageSizeDetail(dict):
9524
+ @staticmethod
9525
+ def __key_warning(key: str):
9526
+ suggest = None
9527
+ if key == "dataStorageSizeInGb":
9528
+ suggest = "data_storage_size_in_gb"
9529
+ elif key == "recoStorageSizeInGbs":
9530
+ suggest = "reco_storage_size_in_gbs"
9531
+ elif key == "redoLogStorageSizeInGbs":
9532
+ suggest = "redo_log_storage_size_in_gbs"
9533
+
9534
+ if suggest:
9535
+ pulumi.log.warn(f"Key '{key}' not found in DatabaseStorageSizeDetail. Access the value via the '{suggest}' property getter instead.")
9536
+
9537
+ def __getitem__(self, key: str) -> Any:
9538
+ DatabaseStorageSizeDetail.__key_warning(key)
9539
+ return super().__getitem__(key)
9540
+
9541
+ def get(self, key: str, default = None) -> Any:
9542
+ DatabaseStorageSizeDetail.__key_warning(key)
9543
+ return super().get(key, default)
9544
+
9545
+ def __init__(__self__, *,
9546
+ data_storage_size_in_gb: Optional[_builtins.int] = None,
9547
+ reco_storage_size_in_gbs: Optional[_builtins.int] = None,
9548
+ redo_log_storage_size_in_gbs: Optional[_builtins.int] = None):
9549
+ """
9550
+ :param _builtins.int data_storage_size_in_gb: The DATA storage size, in gigabytes, that is applicable for the database.
9551
+ :param _builtins.int reco_storage_size_in_gbs: The RECO storage size, in gigabytes, that is applicable for the database.
9552
+ :param _builtins.int redo_log_storage_size_in_gbs: The REDO Log storage size, in gigabytes, that is applicable for the database.
9553
+ """
9554
+ if data_storage_size_in_gb is not None:
9555
+ pulumi.set(__self__, "data_storage_size_in_gb", data_storage_size_in_gb)
9556
+ if reco_storage_size_in_gbs is not None:
9557
+ pulumi.set(__self__, "reco_storage_size_in_gbs", reco_storage_size_in_gbs)
9558
+ if redo_log_storage_size_in_gbs is not None:
9559
+ pulumi.set(__self__, "redo_log_storage_size_in_gbs", redo_log_storage_size_in_gbs)
9560
+
9561
+ @_builtins.property
9562
+ @pulumi.getter(name="dataStorageSizeInGb")
9563
+ def data_storage_size_in_gb(self) -> Optional[_builtins.int]:
9564
+ """
9565
+ The DATA storage size, in gigabytes, that is applicable for the database.
9566
+ """
9567
+ return pulumi.get(self, "data_storage_size_in_gb")
9568
+
9569
+ @_builtins.property
9570
+ @pulumi.getter(name="recoStorageSizeInGbs")
9571
+ def reco_storage_size_in_gbs(self) -> Optional[_builtins.int]:
9572
+ """
9573
+ The RECO storage size, in gigabytes, that is applicable for the database.
9574
+ """
9575
+ return pulumi.get(self, "reco_storage_size_in_gbs")
9576
+
9577
+ @_builtins.property
9578
+ @pulumi.getter(name="redoLogStorageSizeInGbs")
9579
+ def redo_log_storage_size_in_gbs(self) -> Optional[_builtins.int]:
9580
+ """
9581
+ The REDO Log storage size, in gigabytes, that is applicable for the database.
9582
+ """
9583
+ return pulumi.get(self, "redo_log_storage_size_in_gbs")
9584
+
9585
+
9409
9586
  @pulumi.output_type
9410
9587
  class DatabaseUpgradeConnectionString(dict):
9411
9588
  @staticmethod
@@ -10075,6 +10252,8 @@ class DbHomeDatabase(dict):
10075
10252
  suggest = "pluggable_databases"
10076
10253
  elif key == "sidPrefix":
10077
10254
  suggest = "sid_prefix"
10255
+ elif key == "storageSizeDetails":
10256
+ suggest = "storage_size_details"
10078
10257
  elif key == "tdeWalletPassword":
10079
10258
  suggest = "tde_wallet_password"
10080
10259
  elif key == "timeCreated":
@@ -10121,6 +10300,7 @@ class DbHomeDatabase(dict):
10121
10300
  pluggable_databases: Optional[Sequence[_builtins.str]] = None,
10122
10301
  sid_prefix: Optional[_builtins.str] = None,
10123
10302
  state: Optional[_builtins.str] = None,
10303
+ storage_size_details: Optional['outputs.DbHomeDatabaseStorageSizeDetails'] = None,
10124
10304
  tde_wallet_password: Optional[_builtins.str] = None,
10125
10305
  time_created: Optional[_builtins.str] = None,
10126
10306
  time_stamp_for_point_in_time_recovery: Optional[_builtins.str] = None,
@@ -10153,6 +10333,7 @@ class DbHomeDatabase(dict):
10153
10333
  :param Sequence[_builtins.str] pluggable_databases: The list of pluggable databases that needs to be restored into new database.
10154
10334
  :param _builtins.str sid_prefix: Specifies a prefix for the `Oracle SID` of the database to be created.
10155
10335
  :param _builtins.str state: The current state of the Database Home.
10336
+ :param 'DbHomeDatabaseStorageSizeDetailsArgs' storage_size_details: The database storage size details. This database option is supported for the Exadata VM cluster on Exascale Infrastructure.
10156
10337
  :param _builtins.str tde_wallet_password: The optional password to open the TDE wallet. The password must be at least nine characters and contain at least two uppercase, two lowercase, two numeric, and two special characters. The special characters must be _, \\#, or -.
10157
10338
  :param _builtins.str time_created: The date and time the Database Home was created.
10158
10339
  :param _builtins.str time_stamp_for_point_in_time_recovery: The point in time of the original database from which the new database is created. If not specifed, the latest backup is used to create the database.
@@ -10207,6 +10388,8 @@ class DbHomeDatabase(dict):
10207
10388
  pulumi.set(__self__, "sid_prefix", sid_prefix)
10208
10389
  if state is not None:
10209
10390
  pulumi.set(__self__, "state", state)
10391
+ if storage_size_details is not None:
10392
+ pulumi.set(__self__, "storage_size_details", storage_size_details)
10210
10393
  if tde_wallet_password is not None:
10211
10394
  pulumi.set(__self__, "tde_wallet_password", tde_wallet_password)
10212
10395
  if time_created is not None:
@@ -10414,6 +10597,14 @@ class DbHomeDatabase(dict):
10414
10597
  """
10415
10598
  return pulumi.get(self, "state")
10416
10599
 
10600
+ @_builtins.property
10601
+ @pulumi.getter(name="storageSizeDetails")
10602
+ def storage_size_details(self) -> Optional['outputs.DbHomeDatabaseStorageSizeDetails']:
10603
+ """
10604
+ The database storage size details. This database option is supported for the Exadata VM cluster on Exascale Infrastructure.
10605
+ """
10606
+ return pulumi.get(self, "storage_size_details")
10607
+
10417
10608
  @_builtins.property
10418
10609
  @pulumi.getter(name="tdeWalletPassword")
10419
10610
  def tde_wallet_password(self) -> Optional[_builtins.str]:
@@ -10806,6 +10997,64 @@ class DbHomeDatabaseEncryptionKeyLocationDetails(dict):
10806
10997
  return pulumi.get(self, "hsm_password")
10807
10998
 
10808
10999
 
11000
+ @pulumi.output_type
11001
+ class DbHomeDatabaseStorageSizeDetails(dict):
11002
+ @staticmethod
11003
+ def __key_warning(key: str):
11004
+ suggest = None
11005
+ if key == "dataStorageSizeInGb":
11006
+ suggest = "data_storage_size_in_gb"
11007
+ elif key == "recoStorageSizeInGbs":
11008
+ suggest = "reco_storage_size_in_gbs"
11009
+ elif key == "redoLogStorageSizeInGbs":
11010
+ suggest = "redo_log_storage_size_in_gbs"
11011
+
11012
+ if suggest:
11013
+ pulumi.log.warn(f"Key '{key}' not found in DbHomeDatabaseStorageSizeDetails. Access the value via the '{suggest}' property getter instead.")
11014
+
11015
+ def __getitem__(self, key: str) -> Any:
11016
+ DbHomeDatabaseStorageSizeDetails.__key_warning(key)
11017
+ return super().__getitem__(key)
11018
+
11019
+ def get(self, key: str, default = None) -> Any:
11020
+ DbHomeDatabaseStorageSizeDetails.__key_warning(key)
11021
+ return super().get(key, default)
11022
+
11023
+ def __init__(__self__, *,
11024
+ data_storage_size_in_gb: _builtins.int,
11025
+ reco_storage_size_in_gbs: _builtins.int,
11026
+ redo_log_storage_size_in_gbs: Optional[_builtins.int] = None):
11027
+ """
11028
+ :param _builtins.int data_storage_size_in_gb: The DATA storage size, in gigabytes, that is applicable for the database.
11029
+ :param _builtins.int reco_storage_size_in_gbs: The RECO storage size, in gigabytes, that is applicable for the database.
11030
+ """
11031
+ pulumi.set(__self__, "data_storage_size_in_gb", data_storage_size_in_gb)
11032
+ pulumi.set(__self__, "reco_storage_size_in_gbs", reco_storage_size_in_gbs)
11033
+ if redo_log_storage_size_in_gbs is not None:
11034
+ pulumi.set(__self__, "redo_log_storage_size_in_gbs", redo_log_storage_size_in_gbs)
11035
+
11036
+ @_builtins.property
11037
+ @pulumi.getter(name="dataStorageSizeInGb")
11038
+ def data_storage_size_in_gb(self) -> _builtins.int:
11039
+ """
11040
+ The DATA storage size, in gigabytes, that is applicable for the database.
11041
+ """
11042
+ return pulumi.get(self, "data_storage_size_in_gb")
11043
+
11044
+ @_builtins.property
11045
+ @pulumi.getter(name="recoStorageSizeInGbs")
11046
+ def reco_storage_size_in_gbs(self) -> _builtins.int:
11047
+ """
11048
+ The RECO storage size, in gigabytes, that is applicable for the database.
11049
+ """
11050
+ return pulumi.get(self, "reco_storage_size_in_gbs")
11051
+
11052
+ @_builtins.property
11053
+ @pulumi.getter(name="redoLogStorageSizeInGbs")
11054
+ def redo_log_storage_size_in_gbs(self) -> Optional[_builtins.int]:
11055
+ return pulumi.get(self, "redo_log_storage_size_in_gbs")
11056
+
11057
+
10809
11058
  @pulumi.output_type
10810
11059
  class DbSystemDataCollectionOptions(dict):
10811
11060
  @staticmethod
@@ -11682,10 +11931,8 @@ class DbSystemDbHomeDatabaseDbBackupConfigBackupDestinationDetail(dict):
11682
11931
  """
11683
11932
  :param _builtins.str dbrs_policy_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the DBRS policy used for backup.
11684
11933
  :param _builtins.str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the backup destination.
11685
- :param _builtins.bool is_remote: Indicates whether the backup destination is cross-region or local region.
11686
- :param _builtins.str remote_region: The name of the remote region where the remote automatic incremental backups will be stored.
11687
-
11688
- For information about valid region names, see [Regions and Availability Domains](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/regions.htm).
11934
+ :param _builtins.bool is_remote: Indicates whether the backup destination is cross-region or local.
11935
+ :param _builtins.str remote_region: The name of the remote region where the remote automatic incremental backups will be stored. For information about valid region names, see [Regions and Availability Domains](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/regions.htm).
11689
11936
  :param _builtins.str type: Type of the database backup destination.
11690
11937
  """
11691
11938
  if dbrs_policy_id is not None:
@@ -11719,7 +11966,7 @@ class DbSystemDbHomeDatabaseDbBackupConfigBackupDestinationDetail(dict):
11719
11966
  @pulumi.getter(name="isRemote")
11720
11967
  def is_remote(self) -> Optional[_builtins.bool]:
11721
11968
  """
11722
- Indicates whether the backup destination is cross-region or local region.
11969
+ Indicates whether the backup destination is cross-region or local.
11723
11970
  """
11724
11971
  return pulumi.get(self, "is_remote")
11725
11972
 
@@ -11727,9 +11974,7 @@ class DbSystemDbHomeDatabaseDbBackupConfigBackupDestinationDetail(dict):
11727
11974
  @pulumi.getter(name="remoteRegion")
11728
11975
  def remote_region(self) -> Optional[_builtins.str]:
11729
11976
  """
11730
- The name of the remote region where the remote automatic incremental backups will be stored.
11731
-
11732
- For information about valid region names, see [Regions and Availability Domains](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/regions.htm).
11977
+ The name of the remote region where the remote automatic incremental backups will be stored. For information about valid region names, see [Regions and Availability Domains](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/regions.htm).
11733
11978
  """
11734
11979
  return pulumi.get(self, "remote_region")
11735
11980
 
@@ -24483,14 +24728,28 @@ class GetAutonomousDatabaseResourcePoolMembersResourcePoolMemberCollectionItemRe
24483
24728
  @pulumi.output_type
24484
24729
  class GetAutonomousDatabaseResourcePoolSummaryResult(dict):
24485
24730
  def __init__(__self__, *,
24731
+ available_compute_capacity: _builtins.int,
24486
24732
  is_disabled: _builtins.bool,
24487
- pool_size: _builtins.int):
24733
+ pool_size: _builtins.int,
24734
+ total_compute_capacity: _builtins.int):
24488
24735
  """
24736
+ :param _builtins.int available_compute_capacity: Available capacity left for new elastic pool members provision
24489
24737
  :param _builtins.bool is_disabled: Indicates if the resource pool should be deleted for the Autonomous Database.
24490
24738
  :param _builtins.int pool_size: Resource pool size.
24739
+ :param _builtins.int total_compute_capacity: Resource Pool total capacity, it's currently 4x of pool size
24491
24740
  """
24741
+ pulumi.set(__self__, "available_compute_capacity", available_compute_capacity)
24492
24742
  pulumi.set(__self__, "is_disabled", is_disabled)
24493
24743
  pulumi.set(__self__, "pool_size", pool_size)
24744
+ pulumi.set(__self__, "total_compute_capacity", total_compute_capacity)
24745
+
24746
+ @_builtins.property
24747
+ @pulumi.getter(name="availableComputeCapacity")
24748
+ def available_compute_capacity(self) -> _builtins.int:
24749
+ """
24750
+ Available capacity left for new elastic pool members provision
24751
+ """
24752
+ return pulumi.get(self, "available_compute_capacity")
24494
24753
 
24495
24754
  @_builtins.property
24496
24755
  @pulumi.getter(name="isDisabled")
@@ -24508,6 +24767,14 @@ class GetAutonomousDatabaseResourcePoolSummaryResult(dict):
24508
24767
  """
24509
24768
  return pulumi.get(self, "pool_size")
24510
24769
 
24770
+ @_builtins.property
24771
+ @pulumi.getter(name="totalComputeCapacity")
24772
+ def total_compute_capacity(self) -> _builtins.int:
24773
+ """
24774
+ Resource Pool total capacity, it's currently 4x of pool size
24775
+ """
24776
+ return pulumi.get(self, "total_compute_capacity")
24777
+
24511
24778
 
24512
24779
  @pulumi.output_type
24513
24780
  class GetAutonomousDatabaseScheduledOperationResult(dict):
@@ -27590,14 +27857,28 @@ class GetAutonomousDatabasesAutonomousDatabaseRemoteDisasterRecoveryConfiguratio
27590
27857
  @pulumi.output_type
27591
27858
  class GetAutonomousDatabasesAutonomousDatabaseResourcePoolSummaryResult(dict):
27592
27859
  def __init__(__self__, *,
27860
+ available_compute_capacity: _builtins.int,
27593
27861
  is_disabled: _builtins.bool,
27594
- pool_size: _builtins.int):
27862
+ pool_size: _builtins.int,
27863
+ total_compute_capacity: _builtins.int):
27595
27864
  """
27865
+ :param _builtins.int available_compute_capacity: Available capacity left for new elastic pool members provision
27596
27866
  :param _builtins.bool is_disabled: Indicates if the resource pool should be deleted for the Autonomous Database.
27597
27867
  :param _builtins.int pool_size: Resource pool size.
27868
+ :param _builtins.int total_compute_capacity: Resource Pool total capacity, it's currently 4x of pool size
27598
27869
  """
27870
+ pulumi.set(__self__, "available_compute_capacity", available_compute_capacity)
27599
27871
  pulumi.set(__self__, "is_disabled", is_disabled)
27600
27872
  pulumi.set(__self__, "pool_size", pool_size)
27873
+ pulumi.set(__self__, "total_compute_capacity", total_compute_capacity)
27874
+
27875
+ @_builtins.property
27876
+ @pulumi.getter(name="availableComputeCapacity")
27877
+ def available_compute_capacity(self) -> _builtins.int:
27878
+ """
27879
+ Available capacity left for new elastic pool members provision
27880
+ """
27881
+ return pulumi.get(self, "available_compute_capacity")
27601
27882
 
27602
27883
  @_builtins.property
27603
27884
  @pulumi.getter(name="isDisabled")
@@ -27615,6 +27896,14 @@ class GetAutonomousDatabasesAutonomousDatabaseResourcePoolSummaryResult(dict):
27615
27896
  """
27616
27897
  return pulumi.get(self, "pool_size")
27617
27898
 
27899
+ @_builtins.property
27900
+ @pulumi.getter(name="totalComputeCapacity")
27901
+ def total_compute_capacity(self) -> _builtins.int:
27902
+ """
27903
+ Resource Pool total capacity, it's currently 4x of pool size
27904
+ """
27905
+ return pulumi.get(self, "total_compute_capacity")
27906
+
27618
27907
 
27619
27908
  @pulumi.output_type
27620
27909
  class GetAutonomousDatabasesAutonomousDatabaseScheduledOperationResult(dict):
@@ -30316,14 +30605,28 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseRemoteDisasterRecoveryConfig
30316
30605
  @pulumi.output_type
30317
30606
  class GetAutonomousDatabasesClonesAutonomousDatabaseResourcePoolSummaryResult(dict):
30318
30607
  def __init__(__self__, *,
30608
+ available_compute_capacity: _builtins.int,
30319
30609
  is_disabled: _builtins.bool,
30320
- pool_size: _builtins.int):
30610
+ pool_size: _builtins.int,
30611
+ total_compute_capacity: _builtins.int):
30321
30612
  """
30613
+ :param _builtins.int available_compute_capacity: Available capacity left for new elastic pool members provision
30322
30614
  :param _builtins.bool is_disabled: Indicates if the resource pool should be deleted for the Autonomous Database.
30323
30615
  :param _builtins.int pool_size: Resource pool size.
30616
+ :param _builtins.int total_compute_capacity: Resource Pool total capacity, it's currently 4x of pool size
30324
30617
  """
30618
+ pulumi.set(__self__, "available_compute_capacity", available_compute_capacity)
30325
30619
  pulumi.set(__self__, "is_disabled", is_disabled)
30326
30620
  pulumi.set(__self__, "pool_size", pool_size)
30621
+ pulumi.set(__self__, "total_compute_capacity", total_compute_capacity)
30622
+
30623
+ @_builtins.property
30624
+ @pulumi.getter(name="availableComputeCapacity")
30625
+ def available_compute_capacity(self) -> _builtins.int:
30626
+ """
30627
+ Available capacity left for new elastic pool members provision
30628
+ """
30629
+ return pulumi.get(self, "available_compute_capacity")
30327
30630
 
30328
30631
  @_builtins.property
30329
30632
  @pulumi.getter(name="isDisabled")
@@ -30341,6 +30644,14 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseResourcePoolSummaryResult(di
30341
30644
  """
30342
30645
  return pulumi.get(self, "pool_size")
30343
30646
 
30647
+ @_builtins.property
30648
+ @pulumi.getter(name="totalComputeCapacity")
30649
+ def total_compute_capacity(self) -> _builtins.int:
30650
+ """
30651
+ Resource Pool total capacity, it's currently 4x of pool size
30652
+ """
30653
+ return pulumi.get(self, "total_compute_capacity")
30654
+
30344
30655
 
30345
30656
  @pulumi.output_type
30346
30657
  class GetAutonomousDatabasesClonesAutonomousDatabaseScheduledOperationResult(dict):
@@ -38493,6 +38804,8 @@ class GetDataGuardAssociationsDataGuardAssociationResult(dict):
38493
38804
  apply_rate: _builtins.str,
38494
38805
  availability_domain: _builtins.str,
38495
38806
  backup_network_nsg_ids: Sequence[_builtins.str],
38807
+ compute_count: _builtins.int,
38808
+ compute_model: _builtins.str,
38496
38809
  cpu_core_count: _builtins.int,
38497
38810
  create_async: _builtins.bool,
38498
38811
  creation_type: _builtins.str,
@@ -38558,6 +38871,8 @@ class GetDataGuardAssociationsDataGuardAssociationResult(dict):
38558
38871
  pulumi.set(__self__, "apply_rate", apply_rate)
38559
38872
  pulumi.set(__self__, "availability_domain", availability_domain)
38560
38873
  pulumi.set(__self__, "backup_network_nsg_ids", backup_network_nsg_ids)
38874
+ pulumi.set(__self__, "compute_count", compute_count)
38875
+ pulumi.set(__self__, "compute_model", compute_model)
38561
38876
  pulumi.set(__self__, "cpu_core_count", cpu_core_count)
38562
38877
  pulumi.set(__self__, "create_async", create_async)
38563
38878
  pulumi.set(__self__, "creation_type", creation_type)
@@ -38628,6 +38943,16 @@ class GetDataGuardAssociationsDataGuardAssociationResult(dict):
38628
38943
  def backup_network_nsg_ids(self) -> Sequence[_builtins.str]:
38629
38944
  return pulumi.get(self, "backup_network_nsg_ids")
38630
38945
 
38946
+ @_builtins.property
38947
+ @pulumi.getter(name="computeCount")
38948
+ def compute_count(self) -> _builtins.int:
38949
+ return pulumi.get(self, "compute_count")
38950
+
38951
+ @_builtins.property
38952
+ @pulumi.getter(name="computeModel")
38953
+ def compute_model(self) -> _builtins.str:
38954
+ return pulumi.get(self, "compute_model")
38955
+
38631
38956
  @_builtins.property
38632
38957
  @pulumi.getter(name="cpuCoreCount")
38633
38958
  def cpu_core_count(self) -> _builtins.int:
@@ -39147,6 +39472,7 @@ class GetDatabaseDatabaseResult(dict):
39147
39472
  source_database_id: _builtins.str,
39148
39473
  source_encryption_key_location_details: Sequence['outputs.GetDatabaseDatabaseSourceEncryptionKeyLocationDetailResult'],
39149
39474
  source_tde_wallet_password: _builtins.str,
39475
+ storage_size_details: Sequence['outputs.GetDatabaseDatabaseStorageSizeDetailResult'],
39150
39476
  tde_wallet_password: _builtins.str,
39151
39477
  transport_type: _builtins.str,
39152
39478
  vault_id: _builtins.str):
@@ -39167,6 +39493,7 @@ class GetDatabaseDatabaseResult(dict):
39167
39493
  :param _builtins.str pdb_name: The name of the pluggable database. The name must begin with an alphabetic character and can contain a maximum of thirty alphanumeric characters. Special characters are not permitted. Pluggable database should not be same as database name.
39168
39494
  :param _builtins.str protection_mode: The protection mode of this Data Guard. For more information, see [Oracle Data Guard Protection Modes](http://docs.oracle.com/database/122/SBYDB/oracle-data-guard-protection-modes.htm#SBYDB02000) in the Oracle Data Guard documentation.
39169
39495
  :param _builtins.str sid_prefix: Specifies a prefix for the `Oracle SID` of the database to be created.
39496
+ :param Sequence['GetDatabaseDatabaseStorageSizeDetailArgs'] storage_size_details: The database storage size details. This database option is supported for the Exadata VM cluster on Exascale Infrastructure.
39170
39497
  :param _builtins.str transport_type: The redo transport type to use for this Data Guard association. Valid values depend on the specified `protectionMode`:
39171
39498
  * MAXIMUM_AVAILABILITY - SYNC or FASTSYNC
39172
39499
  * MAXIMUM_PERFORMANCE - ASYNC
@@ -39197,6 +39524,7 @@ class GetDatabaseDatabaseResult(dict):
39197
39524
  pulumi.set(__self__, "source_database_id", source_database_id)
39198
39525
  pulumi.set(__self__, "source_encryption_key_location_details", source_encryption_key_location_details)
39199
39526
  pulumi.set(__self__, "source_tde_wallet_password", source_tde_wallet_password)
39527
+ pulumi.set(__self__, "storage_size_details", storage_size_details)
39200
39528
  pulumi.set(__self__, "tde_wallet_password", tde_wallet_password)
39201
39529
  pulumi.set(__self__, "transport_type", transport_type)
39202
39530
  pulumi.set(__self__, "vault_id", vault_id)
@@ -39369,6 +39697,14 @@ class GetDatabaseDatabaseResult(dict):
39369
39697
  def source_tde_wallet_password(self) -> _builtins.str:
39370
39698
  return pulumi.get(self, "source_tde_wallet_password")
39371
39699
 
39700
+ @_builtins.property
39701
+ @pulumi.getter(name="storageSizeDetails")
39702
+ def storage_size_details(self) -> Sequence['outputs.GetDatabaseDatabaseStorageSizeDetailResult']:
39703
+ """
39704
+ The database storage size details. This database option is supported for the Exadata VM cluster on Exascale Infrastructure.
39705
+ """
39706
+ return pulumi.get(self, "storage_size_details")
39707
+
39372
39708
  @_builtins.property
39373
39709
  @pulumi.getter(name="tdeWalletPassword")
39374
39710
  def tde_wallet_password(self) -> _builtins.str:
@@ -39671,6 +40007,46 @@ class GetDatabaseDatabaseSourceEncryptionKeyLocationDetailResult(dict):
39671
40007
  return pulumi.get(self, "provider_type")
39672
40008
 
39673
40009
 
40010
+ @pulumi.output_type
40011
+ class GetDatabaseDatabaseStorageSizeDetailResult(dict):
40012
+ def __init__(__self__, *,
40013
+ data_storage_size_in_gb: _builtins.int,
40014
+ reco_storage_size_in_gbs: _builtins.int,
40015
+ redo_log_storage_size_in_gbs: _builtins.int):
40016
+ """
40017
+ :param _builtins.int data_storage_size_in_gb: The DATA storage size, in gigabytes, that is applicable for the database.
40018
+ :param _builtins.int reco_storage_size_in_gbs: The RECO storage size, in gigabytes, that is applicable for the database.
40019
+ :param _builtins.int redo_log_storage_size_in_gbs: The REDO Log storage size, in gigabytes, that is applicable for the database.
40020
+ """
40021
+ pulumi.set(__self__, "data_storage_size_in_gb", data_storage_size_in_gb)
40022
+ pulumi.set(__self__, "reco_storage_size_in_gbs", reco_storage_size_in_gbs)
40023
+ pulumi.set(__self__, "redo_log_storage_size_in_gbs", redo_log_storage_size_in_gbs)
40024
+
40025
+ @_builtins.property
40026
+ @pulumi.getter(name="dataStorageSizeInGb")
40027
+ def data_storage_size_in_gb(self) -> _builtins.int:
40028
+ """
40029
+ The DATA storage size, in gigabytes, that is applicable for the database.
40030
+ """
40031
+ return pulumi.get(self, "data_storage_size_in_gb")
40032
+
40033
+ @_builtins.property
40034
+ @pulumi.getter(name="recoStorageSizeInGbs")
40035
+ def reco_storage_size_in_gbs(self) -> _builtins.int:
40036
+ """
40037
+ The RECO storage size, in gigabytes, that is applicable for the database.
40038
+ """
40039
+ return pulumi.get(self, "reco_storage_size_in_gbs")
40040
+
40041
+ @_builtins.property
40042
+ @pulumi.getter(name="redoLogStorageSizeInGbs")
40043
+ def redo_log_storage_size_in_gbs(self) -> _builtins.int:
40044
+ """
40045
+ The REDO Log storage size, in gigabytes, that is applicable for the database.
40046
+ """
40047
+ return pulumi.get(self, "redo_log_storage_size_in_gbs")
40048
+
40049
+
39674
40050
  @pulumi.output_type
39675
40051
  class GetDatabaseDbBackupConfigResult(dict):
39676
40052
  def __init__(__self__, *,
@@ -42463,6 +42839,46 @@ class GetDatabaseSoftwareImagesFilterResult(dict):
42463
42839
  return pulumi.get(self, "regex")
42464
42840
 
42465
42841
 
42842
+ @pulumi.output_type
42843
+ class GetDatabaseStorageSizeDetailResult(dict):
42844
+ def __init__(__self__, *,
42845
+ data_storage_size_in_gb: _builtins.int,
42846
+ reco_storage_size_in_gbs: _builtins.int,
42847
+ redo_log_storage_size_in_gbs: _builtins.int):
42848
+ """
42849
+ :param _builtins.int data_storage_size_in_gb: The DATA storage size, in gigabytes, that is applicable for the database.
42850
+ :param _builtins.int reco_storage_size_in_gbs: The RECO storage size, in gigabytes, that is applicable for the database.
42851
+ :param _builtins.int redo_log_storage_size_in_gbs: The REDO Log storage size, in gigabytes, that is applicable for the database.
42852
+ """
42853
+ pulumi.set(__self__, "data_storage_size_in_gb", data_storage_size_in_gb)
42854
+ pulumi.set(__self__, "reco_storage_size_in_gbs", reco_storage_size_in_gbs)
42855
+ pulumi.set(__self__, "redo_log_storage_size_in_gbs", redo_log_storage_size_in_gbs)
42856
+
42857
+ @_builtins.property
42858
+ @pulumi.getter(name="dataStorageSizeInGb")
42859
+ def data_storage_size_in_gb(self) -> _builtins.int:
42860
+ """
42861
+ The DATA storage size, in gigabytes, that is applicable for the database.
42862
+ """
42863
+ return pulumi.get(self, "data_storage_size_in_gb")
42864
+
42865
+ @_builtins.property
42866
+ @pulumi.getter(name="recoStorageSizeInGbs")
42867
+ def reco_storage_size_in_gbs(self) -> _builtins.int:
42868
+ """
42869
+ The RECO storage size, in gigabytes, that is applicable for the database.
42870
+ """
42871
+ return pulumi.get(self, "reco_storage_size_in_gbs")
42872
+
42873
+ @_builtins.property
42874
+ @pulumi.getter(name="redoLogStorageSizeInGbs")
42875
+ def redo_log_storage_size_in_gbs(self) -> _builtins.int:
42876
+ """
42877
+ The REDO Log storage size, in gigabytes, that is applicable for the database.
42878
+ """
42879
+ return pulumi.get(self, "redo_log_storage_size_in_gbs")
42880
+
42881
+
42466
42882
  @pulumi.output_type
42467
42883
  class GetDatabaseUpgradeHistoryEntriesDatabaseUpgradeHistoryEntryResult(dict):
42468
42884
  def __init__(__self__, *,
@@ -42672,6 +43088,7 @@ class GetDatabasesDatabaseResult(dict):
42672
43088
  source: _builtins.str,
42673
43089
  source_database_point_in_time_recovery_timestamp: _builtins.str,
42674
43090
  state: _builtins.str,
43091
+ storage_size_details: Sequence['outputs.GetDatabasesDatabaseStorageSizeDetailResult'],
42675
43092
  system_tags: Mapping[str, _builtins.str],
42676
43093
  time_created: _builtins.str,
42677
43094
  vault_id: _builtins.str,
@@ -42706,6 +43123,7 @@ class GetDatabasesDatabaseResult(dict):
42706
43123
  :param _builtins.str sid_prefix: Specifies a prefix for the `Oracle SID` of the database to be created.
42707
43124
  :param _builtins.str source_database_point_in_time_recovery_timestamp: Point in time recovery timeStamp of the source database at which cloned database system is cloned from the source database system, as described in [RFC 3339](https://tools.ietf.org/rfc/rfc3339)
42708
43125
  :param _builtins.str state: A filter to return only resources that match the given lifecycle state exactly.
43126
+ :param Sequence['GetDatabasesDatabaseStorageSizeDetailArgs'] storage_size_details: The database storage size details. This database option is supported for the Exadata VM cluster on Exascale Infrastructure.
42709
43127
  :param Mapping[str, _builtins.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).
42710
43128
  :param _builtins.str time_created: The date and time the database was created.
42711
43129
  :param _builtins.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.
@@ -42747,6 +43165,7 @@ class GetDatabasesDatabaseResult(dict):
42747
43165
  pulumi.set(__self__, "source", source)
42748
43166
  pulumi.set(__self__, "source_database_point_in_time_recovery_timestamp", source_database_point_in_time_recovery_timestamp)
42749
43167
  pulumi.set(__self__, "state", state)
43168
+ pulumi.set(__self__, "storage_size_details", storage_size_details)
42750
43169
  pulumi.set(__self__, "system_tags", system_tags)
42751
43170
  pulumi.set(__self__, "time_created", time_created)
42752
43171
  pulumi.set(__self__, "vault_id", vault_id)
@@ -43019,6 +43438,14 @@ class GetDatabasesDatabaseResult(dict):
43019
43438
  """
43020
43439
  return pulumi.get(self, "state")
43021
43440
 
43441
+ @_builtins.property
43442
+ @pulumi.getter(name="storageSizeDetails")
43443
+ def storage_size_details(self) -> Sequence['outputs.GetDatabasesDatabaseStorageSizeDetailResult']:
43444
+ """
43445
+ The database storage size details. This database option is supported for the Exadata VM cluster on Exascale Infrastructure.
43446
+ """
43447
+ return pulumi.get(self, "storage_size_details")
43448
+
43022
43449
  @_builtins.property
43023
43450
  @pulumi.getter(name="systemTags")
43024
43451
  def system_tags(self) -> Mapping[str, _builtins.str]:
@@ -43260,6 +43687,7 @@ class GetDatabasesDatabaseDatabaseResult(dict):
43260
43687
  source_database_id: _builtins.str,
43261
43688
  source_encryption_key_location_details: Sequence['outputs.GetDatabasesDatabaseDatabaseSourceEncryptionKeyLocationDetailResult'],
43262
43689
  source_tde_wallet_password: _builtins.str,
43690
+ storage_size_details: Sequence['outputs.GetDatabasesDatabaseDatabaseStorageSizeDetailResult'],
43263
43691
  tde_wallet_password: _builtins.str,
43264
43692
  transport_type: _builtins.str,
43265
43693
  vault_id: _builtins.str):
@@ -43280,6 +43708,7 @@ class GetDatabasesDatabaseDatabaseResult(dict):
43280
43708
  :param _builtins.str pdb_name: The name of the pluggable database. The name must begin with an alphabetic character and can contain a maximum of thirty alphanumeric characters. Special characters are not permitted. Pluggable database should not be same as database name.
43281
43709
  :param _builtins.str protection_mode: The protection mode of this Data Guard. For more information, see [Oracle Data Guard Protection Modes](http://docs.oracle.com/database/122/SBYDB/oracle-data-guard-protection-modes.htm#SBYDB02000) in the Oracle Data Guard documentation.
43282
43710
  :param _builtins.str sid_prefix: Specifies a prefix for the `Oracle SID` of the database to be created.
43711
+ :param Sequence['GetDatabasesDatabaseDatabaseStorageSizeDetailArgs'] storage_size_details: The database storage size details. This database option is supported for the Exadata VM cluster on Exascale Infrastructure.
43283
43712
  :param _builtins.str transport_type: The redo transport type to use for this Data Guard association. Valid values depend on the specified `protectionMode`:
43284
43713
  * MAXIMUM_AVAILABILITY - SYNC or FASTSYNC
43285
43714
  * MAXIMUM_PERFORMANCE - ASYNC
@@ -43310,6 +43739,7 @@ class GetDatabasesDatabaseDatabaseResult(dict):
43310
43739
  pulumi.set(__self__, "source_database_id", source_database_id)
43311
43740
  pulumi.set(__self__, "source_encryption_key_location_details", source_encryption_key_location_details)
43312
43741
  pulumi.set(__self__, "source_tde_wallet_password", source_tde_wallet_password)
43742
+ pulumi.set(__self__, "storage_size_details", storage_size_details)
43313
43743
  pulumi.set(__self__, "tde_wallet_password", tde_wallet_password)
43314
43744
  pulumi.set(__self__, "transport_type", transport_type)
43315
43745
  pulumi.set(__self__, "vault_id", vault_id)
@@ -43482,6 +43912,14 @@ class GetDatabasesDatabaseDatabaseResult(dict):
43482
43912
  def source_tde_wallet_password(self) -> _builtins.str:
43483
43913
  return pulumi.get(self, "source_tde_wallet_password")
43484
43914
 
43915
+ @_builtins.property
43916
+ @pulumi.getter(name="storageSizeDetails")
43917
+ def storage_size_details(self) -> Sequence['outputs.GetDatabasesDatabaseDatabaseStorageSizeDetailResult']:
43918
+ """
43919
+ The database storage size details. This database option is supported for the Exadata VM cluster on Exascale Infrastructure.
43920
+ """
43921
+ return pulumi.get(self, "storage_size_details")
43922
+
43485
43923
  @_builtins.property
43486
43924
  @pulumi.getter(name="tdeWalletPassword")
43487
43925
  def tde_wallet_password(self) -> _builtins.str:
@@ -43776,6 +44214,46 @@ class GetDatabasesDatabaseDatabaseSourceEncryptionKeyLocationDetailResult(dict):
43776
44214
  return pulumi.get(self, "provider_type")
43777
44215
 
43778
44216
 
44217
+ @pulumi.output_type
44218
+ class GetDatabasesDatabaseDatabaseStorageSizeDetailResult(dict):
44219
+ def __init__(__self__, *,
44220
+ data_storage_size_in_gb: _builtins.int,
44221
+ reco_storage_size_in_gbs: _builtins.int,
44222
+ redo_log_storage_size_in_gbs: _builtins.int):
44223
+ """
44224
+ :param _builtins.int data_storage_size_in_gb: The DATA storage size, in gigabytes, that is applicable for the database.
44225
+ :param _builtins.int reco_storage_size_in_gbs: The RECO storage size, in gigabytes, that is applicable for the database.
44226
+ :param _builtins.int redo_log_storage_size_in_gbs: The REDO Log storage size, in gigabytes, that is applicable for the database.
44227
+ """
44228
+ pulumi.set(__self__, "data_storage_size_in_gb", data_storage_size_in_gb)
44229
+ pulumi.set(__self__, "reco_storage_size_in_gbs", reco_storage_size_in_gbs)
44230
+ pulumi.set(__self__, "redo_log_storage_size_in_gbs", redo_log_storage_size_in_gbs)
44231
+
44232
+ @_builtins.property
44233
+ @pulumi.getter(name="dataStorageSizeInGb")
44234
+ def data_storage_size_in_gb(self) -> _builtins.int:
44235
+ """
44236
+ The DATA storage size, in gigabytes, that is applicable for the database.
44237
+ """
44238
+ return pulumi.get(self, "data_storage_size_in_gb")
44239
+
44240
+ @_builtins.property
44241
+ @pulumi.getter(name="recoStorageSizeInGbs")
44242
+ def reco_storage_size_in_gbs(self) -> _builtins.int:
44243
+ """
44244
+ The RECO storage size, in gigabytes, that is applicable for the database.
44245
+ """
44246
+ return pulumi.get(self, "reco_storage_size_in_gbs")
44247
+
44248
+ @_builtins.property
44249
+ @pulumi.getter(name="redoLogStorageSizeInGbs")
44250
+ def redo_log_storage_size_in_gbs(self) -> _builtins.int:
44251
+ """
44252
+ The REDO Log storage size, in gigabytes, that is applicable for the database.
44253
+ """
44254
+ return pulumi.get(self, "redo_log_storage_size_in_gbs")
44255
+
44256
+
43779
44257
  @pulumi.output_type
43780
44258
  class GetDatabasesDatabaseDbBackupConfigResult(dict):
43781
44259
  def __init__(__self__, *,
@@ -43947,6 +44425,46 @@ class GetDatabasesDatabaseDbBackupConfigBackupDestinationDetailResult(dict):
43947
44425
  return pulumi.get(self, "vpc_user")
43948
44426
 
43949
44427
 
44428
+ @pulumi.output_type
44429
+ class GetDatabasesDatabaseStorageSizeDetailResult(dict):
44430
+ def __init__(__self__, *,
44431
+ data_storage_size_in_gb: _builtins.int,
44432
+ reco_storage_size_in_gbs: _builtins.int,
44433
+ redo_log_storage_size_in_gbs: _builtins.int):
44434
+ """
44435
+ :param _builtins.int data_storage_size_in_gb: The DATA storage size, in gigabytes, that is applicable for the database.
44436
+ :param _builtins.int reco_storage_size_in_gbs: The RECO storage size, in gigabytes, that is applicable for the database.
44437
+ :param _builtins.int redo_log_storage_size_in_gbs: The REDO Log storage size, in gigabytes, that is applicable for the database.
44438
+ """
44439
+ pulumi.set(__self__, "data_storage_size_in_gb", data_storage_size_in_gb)
44440
+ pulumi.set(__self__, "reco_storage_size_in_gbs", reco_storage_size_in_gbs)
44441
+ pulumi.set(__self__, "redo_log_storage_size_in_gbs", redo_log_storage_size_in_gbs)
44442
+
44443
+ @_builtins.property
44444
+ @pulumi.getter(name="dataStorageSizeInGb")
44445
+ def data_storage_size_in_gb(self) -> _builtins.int:
44446
+ """
44447
+ The DATA storage size, in gigabytes, that is applicable for the database.
44448
+ """
44449
+ return pulumi.get(self, "data_storage_size_in_gb")
44450
+
44451
+ @_builtins.property
44452
+ @pulumi.getter(name="recoStorageSizeInGbs")
44453
+ def reco_storage_size_in_gbs(self) -> _builtins.int:
44454
+ """
44455
+ The RECO storage size, in gigabytes, that is applicable for the database.
44456
+ """
44457
+ return pulumi.get(self, "reco_storage_size_in_gbs")
44458
+
44459
+ @_builtins.property
44460
+ @pulumi.getter(name="redoLogStorageSizeInGbs")
44461
+ def redo_log_storage_size_in_gbs(self) -> _builtins.int:
44462
+ """
44463
+ The REDO Log storage size, in gigabytes, that is applicable for the database.
44464
+ """
44465
+ return pulumi.get(self, "redo_log_storage_size_in_gbs")
44466
+
44467
+
43950
44468
  @pulumi.output_type
43951
44469
  class GetDatabasesFilterResult(dict):
43952
44470
  def __init__(__self__, *,
@@ -44002,6 +44520,7 @@ class GetDbHomeDatabaseResult(dict):
44002
44520
  pluggable_databases: Sequence[_builtins.str],
44003
44521
  sid_prefix: _builtins.str,
44004
44522
  state: _builtins.str,
44523
+ storage_size_details: Sequence['outputs.GetDbHomeDatabaseStorageSizeDetailResult'],
44005
44524
  tde_wallet_password: _builtins.str,
44006
44525
  time_created: _builtins.str,
44007
44526
  time_stamp_for_point_in_time_recovery: _builtins.str,
@@ -44042,6 +44561,7 @@ class GetDbHomeDatabaseResult(dict):
44042
44561
  pulumi.set(__self__, "pluggable_databases", pluggable_databases)
44043
44562
  pulumi.set(__self__, "sid_prefix", sid_prefix)
44044
44563
  pulumi.set(__self__, "state", state)
44564
+ pulumi.set(__self__, "storage_size_details", storage_size_details)
44045
44565
  pulumi.set(__self__, "tde_wallet_password", tde_wallet_password)
44046
44566
  pulumi.set(__self__, "time_created", time_created)
44047
44567
  pulumi.set(__self__, "time_stamp_for_point_in_time_recovery", time_stamp_for_point_in_time_recovery)
@@ -44196,6 +44716,11 @@ class GetDbHomeDatabaseResult(dict):
44196
44716
  """
44197
44717
  return pulumi.get(self, "state")
44198
44718
 
44719
+ @_builtins.property
44720
+ @pulumi.getter(name="storageSizeDetails")
44721
+ def storage_size_details(self) -> Sequence['outputs.GetDbHomeDatabaseStorageSizeDetailResult']:
44722
+ return pulumi.get(self, "storage_size_details")
44723
+
44199
44724
  @_builtins.property
44200
44725
  @pulumi.getter(name="tdeWalletPassword")
44201
44726
  def tde_wallet_password(self) -> _builtins.str:
@@ -44393,6 +44918,32 @@ class GetDbHomeDatabaseEncryptionKeyLocationDetailResult(dict):
44393
44918
  return pulumi.get(self, "provider_type")
44394
44919
 
44395
44920
 
44921
+ @pulumi.output_type
44922
+ class GetDbHomeDatabaseStorageSizeDetailResult(dict):
44923
+ def __init__(__self__, *,
44924
+ data_storage_size_in_gb: _builtins.int,
44925
+ reco_storage_size_in_gbs: _builtins.int,
44926
+ redo_log_storage_size_in_gbs: _builtins.int):
44927
+ pulumi.set(__self__, "data_storage_size_in_gb", data_storage_size_in_gb)
44928
+ pulumi.set(__self__, "reco_storage_size_in_gbs", reco_storage_size_in_gbs)
44929
+ pulumi.set(__self__, "redo_log_storage_size_in_gbs", redo_log_storage_size_in_gbs)
44930
+
44931
+ @_builtins.property
44932
+ @pulumi.getter(name="dataStorageSizeInGb")
44933
+ def data_storage_size_in_gb(self) -> _builtins.int:
44934
+ return pulumi.get(self, "data_storage_size_in_gb")
44935
+
44936
+ @_builtins.property
44937
+ @pulumi.getter(name="recoStorageSizeInGbs")
44938
+ def reco_storage_size_in_gbs(self) -> _builtins.int:
44939
+ return pulumi.get(self, "reco_storage_size_in_gbs")
44940
+
44941
+ @_builtins.property
44942
+ @pulumi.getter(name="redoLogStorageSizeInGbs")
44943
+ def redo_log_storage_size_in_gbs(self) -> _builtins.int:
44944
+ return pulumi.get(self, "redo_log_storage_size_in_gbs")
44945
+
44946
+
44396
44947
  @pulumi.output_type
44397
44948
  class GetDbHomePatchHistoryEntriesFilterResult(dict):
44398
44949
  def __init__(__self__, *,
@@ -44901,6 +45452,7 @@ class GetDbHomesDbHomeDatabaseResult(dict):
44901
45452
  pluggable_databases: Sequence[_builtins.str],
44902
45453
  sid_prefix: _builtins.str,
44903
45454
  state: _builtins.str,
45455
+ storage_size_details: Sequence['outputs.GetDbHomesDbHomeDatabaseStorageSizeDetailResult'],
44904
45456
  tde_wallet_password: _builtins.str,
44905
45457
  time_created: _builtins.str,
44906
45458
  time_stamp_for_point_in_time_recovery: _builtins.str,
@@ -44942,6 +45494,7 @@ class GetDbHomesDbHomeDatabaseResult(dict):
44942
45494
  pulumi.set(__self__, "pluggable_databases", pluggable_databases)
44943
45495
  pulumi.set(__self__, "sid_prefix", sid_prefix)
44944
45496
  pulumi.set(__self__, "state", state)
45497
+ pulumi.set(__self__, "storage_size_details", storage_size_details)
44945
45498
  pulumi.set(__self__, "tde_wallet_password", tde_wallet_password)
44946
45499
  pulumi.set(__self__, "time_created", time_created)
44947
45500
  pulumi.set(__self__, "time_stamp_for_point_in_time_recovery", time_stamp_for_point_in_time_recovery)
@@ -45099,6 +45652,11 @@ class GetDbHomesDbHomeDatabaseResult(dict):
45099
45652
  """
45100
45653
  return pulumi.get(self, "state")
45101
45654
 
45655
+ @_builtins.property
45656
+ @pulumi.getter(name="storageSizeDetails")
45657
+ def storage_size_details(self) -> Sequence['outputs.GetDbHomesDbHomeDatabaseStorageSizeDetailResult']:
45658
+ return pulumi.get(self, "storage_size_details")
45659
+
45102
45660
  @_builtins.property
45103
45661
  @pulumi.getter(name="tdeWalletPassword")
45104
45662
  def tde_wallet_password(self) -> _builtins.str:
@@ -45296,6 +45854,32 @@ class GetDbHomesDbHomeDatabaseEncryptionKeyLocationDetailResult(dict):
45296
45854
  return pulumi.get(self, "provider_type")
45297
45855
 
45298
45856
 
45857
+ @pulumi.output_type
45858
+ class GetDbHomesDbHomeDatabaseStorageSizeDetailResult(dict):
45859
+ def __init__(__self__, *,
45860
+ data_storage_size_in_gb: _builtins.int,
45861
+ reco_storage_size_in_gbs: _builtins.int,
45862
+ redo_log_storage_size_in_gbs: _builtins.int):
45863
+ pulumi.set(__self__, "data_storage_size_in_gb", data_storage_size_in_gb)
45864
+ pulumi.set(__self__, "reco_storage_size_in_gbs", reco_storage_size_in_gbs)
45865
+ pulumi.set(__self__, "redo_log_storage_size_in_gbs", redo_log_storage_size_in_gbs)
45866
+
45867
+ @_builtins.property
45868
+ @pulumi.getter(name="dataStorageSizeInGb")
45869
+ def data_storage_size_in_gb(self) -> _builtins.int:
45870
+ return pulumi.get(self, "data_storage_size_in_gb")
45871
+
45872
+ @_builtins.property
45873
+ @pulumi.getter(name="recoStorageSizeInGbs")
45874
+ def reco_storage_size_in_gbs(self) -> _builtins.int:
45875
+ return pulumi.get(self, "reco_storage_size_in_gbs")
45876
+
45877
+ @_builtins.property
45878
+ @pulumi.getter(name="redoLogStorageSizeInGbs")
45879
+ def redo_log_storage_size_in_gbs(self) -> _builtins.int:
45880
+ return pulumi.get(self, "redo_log_storage_size_in_gbs")
45881
+
45882
+
45299
45883
  @pulumi.output_type
45300
45884
  class GetDbHomesFilterResult(dict):
45301
45885
  def __init__(__self__, *,
@@ -45627,6 +46211,8 @@ class GetDbNodesDbNodeResult(dict):
45627
46211
  backup_ipv6id: _builtins.str,
45628
46212
  backup_vnic2id: _builtins.str,
45629
46213
  backup_vnic_id: _builtins.str,
46214
+ compute_count: _builtins.int,
46215
+ compute_model: _builtins.str,
45630
46216
  cpu_core_count: _builtins.int,
45631
46217
  db_node_id: _builtins.str,
45632
46218
  db_node_storage_size_in_gbs: _builtins.int,
@@ -45657,6 +46243,8 @@ class GetDbNodesDbNodeResult(dict):
45657
46243
  :param _builtins.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.
45658
46244
  :param _builtins.str backup_vnic2id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the second backup VNIC.
45659
46245
  :param _builtins.str backup_vnic_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the backup VNIC.
46246
+ :param _builtins.int compute_count: The number of compute servers for the DB system.
46247
+ :param _builtins.str compute_model: The compute model for Base Database Service. This is required if using the `computeCount` parameter. If using `cpuCoreCount` then it is an error to specify `computeModel` to a non-null value. The ECPU compute model is the recommended model, and the OCPU compute model is legacy.
45660
46248
  :param _builtins.int cpu_core_count: The number of CPU cores enabled on the Db node.
45661
46249
  :param _builtins.int db_node_storage_size_in_gbs: The allocated local node storage in GBs on the Db node.
45662
46250
  :param _builtins.str db_server_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Exacc Db server.
@@ -45686,6 +46274,8 @@ class GetDbNodesDbNodeResult(dict):
45686
46274
  pulumi.set(__self__, "backup_ipv6id", backup_ipv6id)
45687
46275
  pulumi.set(__self__, "backup_vnic2id", backup_vnic2id)
45688
46276
  pulumi.set(__self__, "backup_vnic_id", backup_vnic_id)
46277
+ pulumi.set(__self__, "compute_count", compute_count)
46278
+ pulumi.set(__self__, "compute_model", compute_model)
45689
46279
  pulumi.set(__self__, "cpu_core_count", cpu_core_count)
45690
46280
  pulumi.set(__self__, "db_node_id", db_node_id)
45691
46281
  pulumi.set(__self__, "db_node_storage_size_in_gbs", db_node_storage_size_in_gbs)
@@ -45751,6 +46341,22 @@ class GetDbNodesDbNodeResult(dict):
45751
46341
  """
45752
46342
  return pulumi.get(self, "backup_vnic_id")
45753
46343
 
46344
+ @_builtins.property
46345
+ @pulumi.getter(name="computeCount")
46346
+ def compute_count(self) -> _builtins.int:
46347
+ """
46348
+ The number of compute servers for the DB system.
46349
+ """
46350
+ return pulumi.get(self, "compute_count")
46351
+
46352
+ @_builtins.property
46353
+ @pulumi.getter(name="computeModel")
46354
+ def compute_model(self) -> _builtins.str:
46355
+ """
46356
+ The compute model for Base Database Service. This is required if using the `computeCount` parameter. If using `cpuCoreCount` then it is an error to specify `computeModel` to a non-null value. The ECPU compute model is the recommended model, and the OCPU compute model is legacy.
46357
+ """
46358
+ return pulumi.get(self, "compute_model")
46359
+
45754
46360
  @_builtins.property
45755
46361
  @pulumi.getter(name="cpuCoreCount")
45756
46362
  def cpu_core_count(self) -> _builtins.int:
@@ -46745,6 +47351,7 @@ class GetDbSystemShapesDbSystemShapeResult(dict):
46745
47351
  minimum_node_count: _builtins.int,
46746
47352
  name: _builtins.str,
46747
47353
  shape: _builtins.str,
47354
+ shape_attributes: Sequence[_builtins.str],
46748
47355
  shape_family: _builtins.str,
46749
47356
  shape_type: _builtins.str):
46750
47357
  """
@@ -46771,6 +47378,7 @@ class GetDbSystemShapesDbSystemShapeResult(dict):
46771
47378
  :param _builtins.int minimum_node_count: The minimum number of compute servers available for this shape.
46772
47379
  :param _builtins.str name: The name of the shape used for the DB system.
46773
47380
  :param _builtins.str shape: Deprecated. Use `name` instead of `shape`.
47381
+ :param Sequence[_builtins.str] shape_attributes: The shapeAttributes of the DB system shape.
46774
47382
  :param _builtins.str shape_family: The family of the shape used for the DB system.
46775
47383
  :param _builtins.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`.
46776
47384
  """
@@ -46797,6 +47405,7 @@ class GetDbSystemShapesDbSystemShapeResult(dict):
46797
47405
  pulumi.set(__self__, "minimum_node_count", minimum_node_count)
46798
47406
  pulumi.set(__self__, "name", name)
46799
47407
  pulumi.set(__self__, "shape", shape)
47408
+ pulumi.set(__self__, "shape_attributes", shape_attributes)
46800
47409
  pulumi.set(__self__, "shape_family", shape_family)
46801
47410
  pulumi.set(__self__, "shape_type", shape_type)
46802
47411
 
@@ -46985,6 +47594,14 @@ class GetDbSystemShapesDbSystemShapeResult(dict):
46985
47594
  """
46986
47595
  return pulumi.get(self, "shape")
46987
47596
 
47597
+ @_builtins.property
47598
+ @pulumi.getter(name="shapeAttributes")
47599
+ def shape_attributes(self) -> Sequence[_builtins.str]:
47600
+ """
47601
+ The shapeAttributes of the DB system shape.
47602
+ """
47603
+ return pulumi.get(self, "shape_attributes")
47604
+
46988
47605
  @_builtins.property
46989
47606
  @pulumi.getter(name="shapeFamily")
46990
47607
  def shape_family(self) -> _builtins.str:
@@ -47306,6 +47923,8 @@ class GetDbSystemsDbSystemResult(dict):
47306
47923
  backup_subnet_id: _builtins.str,
47307
47924
  cluster_name: _builtins.str,
47308
47925
  compartment_id: _builtins.str,
47926
+ compute_count: _builtins.int,
47927
+ compute_model: _builtins.str,
47309
47928
  cpu_core_count: _builtins.int,
47310
47929
  data_collection_options: Sequence['outputs.GetDbSystemsDbSystemDataCollectionOptionResult'],
47311
47930
  data_storage_percentage: _builtins.int,
@@ -47366,6 +47985,8 @@ class GetDbSystemsDbSystemResult(dict):
47366
47985
  :param _builtins.str backup_subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the backup network subnet the DB system is associated with. Applicable only to Exadata DB systems.
47367
47986
  :param _builtins.str cluster_name: The cluster name for Exadata and 2-node RAC virtual machine DB systems. 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.
47368
47987
  :param _builtins.str compartment_id: The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
47988
+ :param _builtins.int compute_count: The number of compute servers for the DB system.
47989
+ :param _builtins.str compute_model: The compute model for Base Database Service. This is required if using the `computeCount` parameter. If using `cpuCoreCount` then it is an error to specify `computeModel` to a non-null value. The ECPU compute model is the recommended model, and the OCPU compute model is legacy.
47369
47990
  :param _builtins.int cpu_core_count: The number of CPU cores enabled on the DB system.
47370
47991
  :param Sequence['GetDbSystemsDbSystemDataCollectionOptionArgs'] data_collection_options: Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
47371
47992
  :param _builtins.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.
@@ -47422,6 +48043,8 @@ class GetDbSystemsDbSystemResult(dict):
47422
48043
  pulumi.set(__self__, "backup_subnet_id", backup_subnet_id)
47423
48044
  pulumi.set(__self__, "cluster_name", cluster_name)
47424
48045
  pulumi.set(__self__, "compartment_id", compartment_id)
48046
+ pulumi.set(__self__, "compute_count", compute_count)
48047
+ pulumi.set(__self__, "compute_model", compute_model)
47425
48048
  pulumi.set(__self__, "cpu_core_count", cpu_core_count)
47426
48049
  pulumi.set(__self__, "data_collection_options", data_collection_options)
47427
48050
  pulumi.set(__self__, "data_storage_percentage", data_storage_percentage)
@@ -47517,6 +48140,22 @@ class GetDbSystemsDbSystemResult(dict):
47517
48140
  """
47518
48141
  return pulumi.get(self, "compartment_id")
47519
48142
 
48143
+ @_builtins.property
48144
+ @pulumi.getter(name="computeCount")
48145
+ def compute_count(self) -> _builtins.int:
48146
+ """
48147
+ The number of compute servers for the DB system.
48148
+ """
48149
+ return pulumi.get(self, "compute_count")
48150
+
48151
+ @_builtins.property
48152
+ @pulumi.getter(name="computeModel")
48153
+ def compute_model(self) -> _builtins.str:
48154
+ """
48155
+ The compute model for Base Database Service. This is required if using the `computeCount` parameter. If using `cpuCoreCount` then it is an error to specify `computeModel` to a non-null value. The ECPU compute model is the recommended model, and the OCPU compute model is legacy.
48156
+ """
48157
+ return pulumi.get(self, "compute_model")
48158
+
47520
48159
  @_builtins.property
47521
48160
  @pulumi.getter(name="cpuCoreCount")
47522
48161
  def cpu_core_count(self) -> _builtins.int:
@@ -51105,6 +51744,7 @@ class GetExadbVmClustersExadbVmClusterResult(dict):
51105
51744
  scan_listener_port_tcp_ssl: _builtins.int,
51106
51745
  security_attributes: Mapping[str, _builtins.str],
51107
51746
  shape: _builtins.str,
51747
+ shape_attribute: _builtins.str,
51108
51748
  ssh_public_keys: Sequence[_builtins.str],
51109
51749
  state: _builtins.str,
51110
51750
  subnet_id: _builtins.str,
@@ -51150,6 +51790,7 @@ class GetExadbVmClustersExadbVmClusterResult(dict):
51150
51790
  :param _builtins.int scan_listener_port_tcp_ssl: The Secured Communication (TCPS) protocol Single Client Access Name (SCAN) port. The default port is 2484.
51151
51791
  :param Mapping[str, _builtins.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"}}}`
51152
51792
  :param _builtins.str shape: The shape of the Exadata VM cluster on Exascale Infrastructure resource
51793
+ :param _builtins.str shape_attribute: The type of Exascale storage used for Exadata VM cluster. The default is SMART_STORAGE which supports Oracle Database 23ai and later
51153
51794
  :param Sequence[_builtins.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.
51154
51795
  :param _builtins.str state: A filter to return only Exadata VM clusters on Exascale Infrastructure that match the given lifecycle state exactly.
51155
51796
  :param _builtins.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.
@@ -51194,6 +51835,7 @@ class GetExadbVmClustersExadbVmClusterResult(dict):
51194
51835
  pulumi.set(__self__, "scan_listener_port_tcp_ssl", scan_listener_port_tcp_ssl)
51195
51836
  pulumi.set(__self__, "security_attributes", security_attributes)
51196
51837
  pulumi.set(__self__, "shape", shape)
51838
+ pulumi.set(__self__, "shape_attribute", shape_attribute)
51197
51839
  pulumi.set(__self__, "ssh_public_keys", ssh_public_keys)
51198
51840
  pulumi.set(__self__, "state", state)
51199
51841
  pulumi.set(__self__, "subnet_id", subnet_id)
@@ -51470,6 +52112,14 @@ class GetExadbVmClustersExadbVmClusterResult(dict):
51470
52112
  """
51471
52113
  return pulumi.get(self, "shape")
51472
52114
 
52115
+ @_builtins.property
52116
+ @pulumi.getter(name="shapeAttribute")
52117
+ def shape_attribute(self) -> _builtins.str:
52118
+ """
52119
+ The type of Exascale storage used for Exadata VM cluster. The default is SMART_STORAGE which supports Oracle Database 23ai and later
52120
+ """
52121
+ return pulumi.get(self, "shape_attribute")
52122
+
51473
52123
  @_builtins.property
51474
52124
  @pulumi.getter(name="sshPublicKeys")
51475
52125
  def ssh_public_keys(self) -> Sequence[_builtins.str]:
@@ -51854,6 +52504,8 @@ class GetExascaleDbStorageVaultHighCapacityDatabaseStorageResult(dict):
51854
52504
  class GetExascaleDbStorageVaultsExascaleDbStorageVaultResult(dict):
51855
52505
  def __init__(__self__, *,
51856
52506
  additional_flash_cache_in_percent: _builtins.int,
52507
+ attached_shape_attributes: Sequence[_builtins.str],
52508
+ autoscale_limit_in_gbs: _builtins.int,
51857
52509
  availability_domain: _builtins.str,
51858
52510
  cluster_placement_group_id: _builtins.str,
51859
52511
  compartment_id: _builtins.str,
@@ -51864,6 +52516,7 @@ class GetExascaleDbStorageVaultsExascaleDbStorageVaultResult(dict):
51864
52516
  freeform_tags: Mapping[str, _builtins.str],
51865
52517
  high_capacity_database_storages: Sequence['outputs.GetExascaleDbStorageVaultsExascaleDbStorageVaultHighCapacityDatabaseStorageResult'],
51866
52518
  id: _builtins.str,
52519
+ is_autoscale_enabled: _builtins.bool,
51867
52520
  lifecycle_details: _builtins.str,
51868
52521
  state: _builtins.str,
51869
52522
  subscription_id: _builtins.str,
@@ -51874,6 +52527,8 @@ class GetExascaleDbStorageVaultsExascaleDbStorageVaultResult(dict):
51874
52527
  vm_cluster_ids: Sequence[_builtins.str]):
51875
52528
  """
51876
52529
  :param _builtins.int additional_flash_cache_in_percent: The size of additional Flash Cache in percentage of High Capacity database storage.
52530
+ :param Sequence[_builtins.str] attached_shape_attributes: A filter to return only Exadata Database Storage Vaults which match the given attachedShapeAttributes or has null attachedShapeAttributes
52531
+ :param _builtins.int autoscale_limit_in_gbs: Maximum limit storage size in gigabytes, that is applicable for the Database Storage Vault.
51877
52532
  :param _builtins.str availability_domain: The name of the availability domain in which the Exadata Database Storage Vault is located.
51878
52533
  :param _builtins.str cluster_placement_group_id: A filter to return only resources that match the given cluster placement group ID exactly.
51879
52534
  :param _builtins.str compartment_id: The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
@@ -51884,6 +52539,7 @@ class GetExascaleDbStorageVaultsExascaleDbStorageVaultResult(dict):
51884
52539
  :param Mapping[str, _builtins.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"}`
51885
52540
  :param Sequence['GetExascaleDbStorageVaultsExascaleDbStorageVaultHighCapacityDatabaseStorageArgs'] high_capacity_database_storages: Exadata Database Storage Details
51886
52541
  :param _builtins.str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Exadata Database Storage Vault.
52542
+ :param _builtins.bool is_autoscale_enabled: Indicates if autoscale feature is enabled for the Database Storage Vault. The default value is `FALSE`.
51887
52543
  :param _builtins.str lifecycle_details: Additional information about the current lifecycle state.
51888
52544
  :param _builtins.str state: A filter to return only Exadata Database Storage Vaults that match the given lifecycle state exactly.
51889
52545
  :param _builtins.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.
@@ -51894,6 +52550,8 @@ class GetExascaleDbStorageVaultsExascaleDbStorageVaultResult(dict):
51894
52550
  :param Sequence[_builtins.str] vm_cluster_ids: The List of Exadata VM cluster on Exascale Infrastructure [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) **Note:** If Exadata Database Storage Vault is not used for any Exadata VM cluster on Exascale Infrastructure, this list is empty.
51895
52551
  """
51896
52552
  pulumi.set(__self__, "additional_flash_cache_in_percent", additional_flash_cache_in_percent)
52553
+ pulumi.set(__self__, "attached_shape_attributes", attached_shape_attributes)
52554
+ pulumi.set(__self__, "autoscale_limit_in_gbs", autoscale_limit_in_gbs)
51897
52555
  pulumi.set(__self__, "availability_domain", availability_domain)
51898
52556
  pulumi.set(__self__, "cluster_placement_group_id", cluster_placement_group_id)
51899
52557
  pulumi.set(__self__, "compartment_id", compartment_id)
@@ -51904,6 +52562,7 @@ class GetExascaleDbStorageVaultsExascaleDbStorageVaultResult(dict):
51904
52562
  pulumi.set(__self__, "freeform_tags", freeform_tags)
51905
52563
  pulumi.set(__self__, "high_capacity_database_storages", high_capacity_database_storages)
51906
52564
  pulumi.set(__self__, "id", id)
52565
+ pulumi.set(__self__, "is_autoscale_enabled", is_autoscale_enabled)
51907
52566
  pulumi.set(__self__, "lifecycle_details", lifecycle_details)
51908
52567
  pulumi.set(__self__, "state", state)
51909
52568
  pulumi.set(__self__, "subscription_id", subscription_id)
@@ -51921,6 +52580,22 @@ class GetExascaleDbStorageVaultsExascaleDbStorageVaultResult(dict):
51921
52580
  """
51922
52581
  return pulumi.get(self, "additional_flash_cache_in_percent")
51923
52582
 
52583
+ @_builtins.property
52584
+ @pulumi.getter(name="attachedShapeAttributes")
52585
+ def attached_shape_attributes(self) -> Sequence[_builtins.str]:
52586
+ """
52587
+ A filter to return only Exadata Database Storage Vaults which match the given attachedShapeAttributes or has null attachedShapeAttributes
52588
+ """
52589
+ return pulumi.get(self, "attached_shape_attributes")
52590
+
52591
+ @_builtins.property
52592
+ @pulumi.getter(name="autoscaleLimitInGbs")
52593
+ def autoscale_limit_in_gbs(self) -> _builtins.int:
52594
+ """
52595
+ Maximum limit storage size in gigabytes, that is applicable for the Database Storage Vault.
52596
+ """
52597
+ return pulumi.get(self, "autoscale_limit_in_gbs")
52598
+
51924
52599
  @_builtins.property
51925
52600
  @pulumi.getter(name="availabilityDomain")
51926
52601
  def availability_domain(self) -> _builtins.str:
@@ -52001,6 +52676,14 @@ class GetExascaleDbStorageVaultsExascaleDbStorageVaultResult(dict):
52001
52676
  """
52002
52677
  return pulumi.get(self, "id")
52003
52678
 
52679
+ @_builtins.property
52680
+ @pulumi.getter(name="isAutoscaleEnabled")
52681
+ def is_autoscale_enabled(self) -> _builtins.bool:
52682
+ """
52683
+ Indicates if autoscale feature is enabled for the Database Storage Vault. The default value is `FALSE`.
52684
+ """
52685
+ return pulumi.get(self, "is_autoscale_enabled")
52686
+
52004
52687
  @_builtins.property
52005
52688
  @pulumi.getter(name="lifecycleDetails")
52006
52689
  def lifecycle_details(self) -> _builtins.str: