pulumi-oci 3.4.0a1755714728__py3-none-any.whl → 3.5.0a1756190604__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 (198) hide show
  1. pulumi_oci/__init__.py +168 -43
  2. pulumi_oci/aidocument/__init__.py +1 -0
  3. pulumi_oci/aidocument/_inputs.py +476 -6
  4. pulumi_oci/aidocument/get_model.py +63 -2
  5. pulumi_oci/aidocument/get_model_type.py +179 -0
  6. pulumi_oci/aidocument/get_models.py +1 -1
  7. pulumi_oci/aidocument/get_project.py +17 -2
  8. pulumi_oci/aidocument/get_projects.py +1 -1
  9. pulumi_oci/aidocument/model.py +188 -0
  10. pulumi_oci/aidocument/outputs.py +883 -8
  11. pulumi_oci/aidocument/processor_job.py +22 -4
  12. pulumi_oci/aidocument/project.py +50 -1
  13. pulumi_oci/apigateway/_inputs.py +608 -12
  14. pulumi_oci/apigateway/api.py +127 -38
  15. pulumi_oci/apigateway/certificate.py +122 -3
  16. pulumi_oci/apigateway/deployment.py +120 -3
  17. pulumi_oci/apigateway/gateway.py +124 -7
  18. pulumi_oci/apigateway/get_api.py +40 -1
  19. pulumi_oci/apigateway/get_certificate.py +41 -1
  20. pulumi_oci/apigateway/get_deployment.py +40 -1
  21. pulumi_oci/apigateway/get_gateway.py +40 -1
  22. pulumi_oci/apigateway/get_subscriber.py +40 -1
  23. pulumi_oci/apigateway/get_usage_plan.py +40 -1
  24. pulumi_oci/apigateway/outputs.py +1413 -39
  25. pulumi_oci/apigateway/subscriber.py +120 -3
  26. pulumi_oci/apigateway/usage_plan.py +127 -38
  27. pulumi_oci/apmconfig/_inputs.py +199 -15
  28. pulumi_oci/apmconfig/config.py +535 -17
  29. pulumi_oci/apmconfig/get_config.py +141 -1
  30. pulumi_oci/apmconfig/get_configs.py +2 -2
  31. pulumi_oci/apmconfig/outputs.py +509 -13
  32. pulumi_oci/apmtraces/__init__.py +5 -0
  33. pulumi_oci/apmtraces/_inputs.py +413 -0
  34. pulumi_oci/apmtraces/get_attribute_auto_activate_status.py +160 -0
  35. pulumi_oci/apmtraces/get_log.py +356 -0
  36. pulumi_oci/apmtraces/get_scheduled_queries.py +163 -0
  37. pulumi_oci/apmtraces/get_scheduled_query.py +368 -0
  38. pulumi_oci/apmtraces/get_trace.py +4 -4
  39. pulumi_oci/apmtraces/outputs.py +971 -0
  40. pulumi_oci/apmtraces/scheduled_query.py +925 -0
  41. pulumi_oci/autoscaling/_inputs.py +177 -13
  42. pulumi_oci/autoscaling/auto_scaling_configuration.py +12 -0
  43. pulumi_oci/autoscaling/outputs.py +269 -23
  44. pulumi_oci/core/_inputs.py +184 -0
  45. pulumi_oci/core/get_ipv6.py +15 -1
  46. pulumi_oci/core/ipv6.py +49 -0
  47. pulumi_oci/core/outputs.py +365 -0
  48. pulumi_oci/database/__init__.py +3 -0
  49. pulumi_oci/database/_inputs.py +139 -7
  50. pulumi_oci/database/autonomous_container_database.py +94 -0
  51. pulumi_oci/database/autonomous_container_database_add_standby.py +28 -0
  52. pulumi_oci/database/autonomous_database.py +578 -568
  53. pulumi_oci/database/autonomous_database_saas_admin_user.py +43 -60
  54. pulumi_oci/database/get_autonomous_container_database.py +29 -1
  55. pulumi_oci/database/get_autonomous_database.py +65 -1
  56. pulumi_oci/database/get_autonomous_databases.py +6 -1
  57. pulumi_oci/database/get_pluggable_database_snapshot.py +253 -0
  58. pulumi_oci/database/get_pluggable_database_snapshots.py +235 -0
  59. pulumi_oci/database/outputs.py +470 -75
  60. pulumi_oci/database/pluggable_database.py +0 -14
  61. pulumi_oci/database/pluggable_database_snapshot.py +539 -0
  62. pulumi_oci/databasemanagement/__init__.py +37 -0
  63. pulumi_oci/databasemanagement/_inputs.py +9516 -3414
  64. pulumi_oci/databasemanagement/cloud_asm.py +791 -0
  65. pulumi_oci/databasemanagement/cloud_asm_instance.py +686 -0
  66. pulumi_oci/databasemanagement/cloud_cluster.py +847 -0
  67. pulumi_oci/databasemanagement/cloud_cluster_instance.py +789 -0
  68. pulumi_oci/databasemanagement/cloud_db_home.py +630 -0
  69. pulumi_oci/databasemanagement/cloud_db_node.py +761 -0
  70. pulumi_oci/databasemanagement/cloud_db_system.py +789 -0
  71. pulumi_oci/databasemanagement/cloud_db_system_cloud_database_managements_management.py +354 -0
  72. pulumi_oci/databasemanagement/cloud_db_system_cloud_stack_monitorings_management.py +354 -0
  73. pulumi_oci/databasemanagement/cloud_db_system_connector.py +761 -0
  74. pulumi_oci/databasemanagement/cloud_db_system_discovery.py +754 -0
  75. pulumi_oci/databasemanagement/cloud_listener.py +1043 -0
  76. pulumi_oci/databasemanagement/get_cloud_asm.py +380 -0
  77. pulumi_oci/databasemanagement/get_cloud_asm_configuration.py +147 -0
  78. pulumi_oci/databasemanagement/get_cloud_asm_disk_groups.py +163 -0
  79. pulumi_oci/databasemanagement/get_cloud_asm_instance.py +337 -0
  80. pulumi_oci/databasemanagement/get_cloud_asm_instances.py +191 -0
  81. pulumi_oci/databasemanagement/get_cloud_asm_users.py +163 -0
  82. pulumi_oci/databasemanagement/get_cloud_asms.py +191 -0
  83. pulumi_oci/databasemanagement/get_cloud_cluster.py +408 -0
  84. pulumi_oci/databasemanagement/get_cloud_cluster_instance.py +379 -0
  85. pulumi_oci/databasemanagement/get_cloud_cluster_instances.py +191 -0
  86. pulumi_oci/databasemanagement/get_cloud_clusters.py +191 -0
  87. pulumi_oci/databasemanagement/get_cloud_databases.py +188 -0
  88. pulumi_oci/databasemanagement/get_cloud_db_home.py +309 -0
  89. pulumi_oci/databasemanagement/get_cloud_db_homes.py +191 -0
  90. pulumi_oci/databasemanagement/get_cloud_db_node.py +365 -0
  91. pulumi_oci/databasemanagement/get_cloud_db_nodes.py +191 -0
  92. pulumi_oci/databasemanagement/get_cloud_db_system.py +352 -0
  93. pulumi_oci/databasemanagement/get_cloud_db_system_connector.py +338 -0
  94. pulumi_oci/databasemanagement/get_cloud_db_system_connectors.py +191 -0
  95. pulumi_oci/databasemanagement/get_cloud_db_system_discoveries.py +169 -0
  96. pulumi_oci/databasemanagement/get_cloud_db_system_discovery.py +335 -0
  97. pulumi_oci/databasemanagement/get_cloud_db_systems.py +235 -0
  98. pulumi_oci/databasemanagement/get_cloud_listener.py +506 -0
  99. pulumi_oci/databasemanagement/get_cloud_listener_services.py +187 -0
  100. pulumi_oci/databasemanagement/get_cloud_listeners.py +191 -0
  101. pulumi_oci/databasemanagement/get_managed_database.py +2 -2
  102. pulumi_oci/databasemanagement/get_managed_database_group.py +2 -2
  103. pulumi_oci/databasemanagement/get_managed_my_sql_database_binary_log_information.py +6 -6
  104. pulumi_oci/databasemanagement/get_managed_my_sql_database_general_replication_information.py +5 -5
  105. pulumi_oci/databasemanagement/get_managed_my_sql_database_high_availability_members.py +2 -2
  106. pulumi_oci/databasemanagement/get_managed_my_sql_database_outbound_replications.py +2 -2
  107. pulumi_oci/databasemanagement/outputs.py +18049 -4222
  108. pulumi_oci/datasafe/get_security_assessment_finding_analytics.py +22 -1
  109. pulumi_oci/datasafe/get_security_assessment_findings.py +2 -2
  110. pulumi_oci/datasafe/get_security_assessments.py +2 -2
  111. pulumi_oci/datasafe/outputs.py +192 -2
  112. pulumi_oci/datascience/__init__.py +10 -0
  113. pulumi_oci/datascience/_inputs.py +6760 -2206
  114. pulumi_oci/datascience/get_job.py +15 -1
  115. pulumi_oci/datascience/get_job_run.py +44 -2
  116. pulumi_oci/datascience/get_model_deployment_model_states.py +251 -0
  117. pulumi_oci/datascience/get_model_group.py +405 -0
  118. pulumi_oci/datascience/get_model_group_artifact_content.py +132 -0
  119. pulumi_oci/datascience/get_model_group_models.py +240 -0
  120. pulumi_oci/datascience/get_model_group_version_histories.py +243 -0
  121. pulumi_oci/{aianomalydetection/get_detection_model.py → datascience/get_model_group_version_history.py} +73 -74
  122. pulumi_oci/datascience/get_model_groups.py +265 -0
  123. pulumi_oci/datascience/get_pipeline_run.py +15 -1
  124. pulumi_oci/datascience/job.py +81 -154
  125. pulumi_oci/datascience/job_run.py +250 -4
  126. pulumi_oci/datascience/model_group.py +1111 -0
  127. pulumi_oci/datascience/model_group_artifact.py +369 -0
  128. pulumi_oci/{aianomalydetection/model.py → datascience/model_group_version_history.py} +172 -187
  129. pulumi_oci/datascience/notebook_session.py +4 -0
  130. pulumi_oci/datascience/outputs.py +17168 -8021
  131. pulumi_oci/datascience/pipeline_run.py +87 -0
  132. pulumi_oci/goldengate/_inputs.py +3 -3
  133. pulumi_oci/goldengate/connection.py +175 -56
  134. pulumi_oci/goldengate/get_connection.py +20 -4
  135. pulumi_oci/goldengate/outputs.py +27 -8
  136. pulumi_oci/managementagent/__init__.py +4 -0
  137. pulumi_oci/managementagent/_inputs.py +129 -0
  138. pulumi_oci/managementagent/get_management_agent.py +26 -1
  139. pulumi_oci/managementagent/get_management_agent_install_key.py +43 -1
  140. pulumi_oci/managementagent/get_management_agent_named_credentials_metadata.py +147 -0
  141. pulumi_oci/managementagent/get_named_credential.py +268 -0
  142. pulumi_oci/managementagent/get_named_credentials.py +221 -0
  143. pulumi_oci/managementagent/management_agent.py +48 -0
  144. pulumi_oci/managementagent/management_agent_install_key.py +84 -0
  145. pulumi_oci/managementagent/named_credential.py +706 -0
  146. pulumi_oci/managementagent/outputs.py +515 -0
  147. pulumi_oci/managementdashboard/management_dashboards_import.py +178 -20
  148. pulumi_oci/oci/__init__.py +3 -0
  149. pulumi_oci/oci/_inputs.py +146 -0
  150. pulumi_oci/{aianomalydetection/project.py → oci/api_platform_api_platform_instance.py} +204 -118
  151. pulumi_oci/oci/get_api_platform_api_platform_instance.py +282 -0
  152. pulumi_oci/oci/get_api_platform_api_platform_instances.py +199 -0
  153. pulumi_oci/oci/outputs.py +367 -0
  154. pulumi_oci/opsi/_inputs.py +1001 -149
  155. pulumi_oci/opsi/database_insight.py +22 -3
  156. pulumi_oci/opsi/exadata_insight.py +86 -6
  157. pulumi_oci/opsi/outputs.py +1438 -178
  158. pulumi_oci/psql/configuration.py +109 -19
  159. pulumi_oci/psql/db_system.py +7 -7
  160. pulumi_oci/psql/get_configuration.py +30 -2
  161. pulumi_oci/psql/get_configurations.py +49 -5
  162. pulumi_oci/psql/get_db_system.py +1 -1
  163. pulumi_oci/psql/get_default_configuration.py +30 -4
  164. pulumi_oci/psql/get_default_configurations.py +49 -5
  165. pulumi_oci/psql/outputs.py +47 -14
  166. pulumi_oci/pulumi-plugin.json +1 -1
  167. pulumi_oci/redis/__init__.py +6 -0
  168. pulumi_oci/redis/_inputs.py +217 -0
  169. pulumi_oci/{aianomalydetection/get_detection_data_asset.py → redis/get_oci_cache_config_set.py} +74 -74
  170. pulumi_oci/redis/get_oci_cache_config_sets.py +221 -0
  171. pulumi_oci/redis/get_oci_cache_default_config_set.py +217 -0
  172. pulumi_oci/redis/get_oci_cache_default_config_sets.py +218 -0
  173. pulumi_oci/redis/get_redis_cluster.py +15 -1
  174. pulumi_oci/{aianomalydetection/data_asset.py → redis/oci_cache_config_set.py} +190 -254
  175. pulumi_oci/redis/oci_cache_config_setlist_associated_oci_cache_cluster.py +240 -0
  176. pulumi_oci/redis/outputs.py +713 -0
  177. pulumi_oci/redis/redis_cluster.py +49 -0
  178. pulumi_oci/vault/_inputs.py +198 -0
  179. pulumi_oci/vault/get_secret.py +43 -1
  180. pulumi_oci/vault/outputs.py +434 -0
  181. pulumi_oci/vault/secret.py +103 -0
  182. {pulumi_oci-3.4.0a1755714728.dist-info → pulumi_oci-3.5.0a1756190604.dist-info}/METADATA +1 -1
  183. {pulumi_oci-3.4.0a1755714728.dist-info → pulumi_oci-3.5.0a1756190604.dist-info}/RECORD +185 -134
  184. pulumi_oci/aianomalydetection/__init__.py +0 -25
  185. pulumi_oci/aianomalydetection/_inputs.py +0 -1742
  186. pulumi_oci/aianomalydetection/ai_private_endpoint.py +0 -643
  187. pulumi_oci/aianomalydetection/detect_anomaly_job.py +0 -739
  188. pulumi_oci/aianomalydetection/get_ai_private_endpoint.py +0 -281
  189. pulumi_oci/aianomalydetection/get_ai_private_endpoints.py +0 -199
  190. pulumi_oci/aianomalydetection/get_detect_anomaly_job.py +0 -338
  191. pulumi_oci/aianomalydetection/get_detect_anomaly_jobs.py +0 -254
  192. pulumi_oci/aianomalydetection/get_detection_data_assets.py +0 -213
  193. pulumi_oci/aianomalydetection/get_detection_models.py +0 -213
  194. pulumi_oci/aianomalydetection/get_detection_project.py +0 -239
  195. pulumi_oci/aianomalydetection/get_detection_projects.py +0 -191
  196. pulumi_oci/aianomalydetection/outputs.py +0 -3699
  197. {pulumi_oci-3.4.0a1755714728.dist-info → pulumi_oci-3.5.0a1756190604.dist-info}/WHEEL +0 -0
  198. {pulumi_oci-3.4.0a1755714728.dist-info → pulumi_oci-3.5.0a1756190604.dist-info}/top_level.txt +0 -0
@@ -30,6 +30,7 @@ __all__ = [
30
30
  'AutonomousContainerDatabaseBackupConfig',
31
31
  'AutonomousContainerDatabaseBackupConfigBackupDestinationDetails',
32
32
  'AutonomousContainerDatabaseBackupDestinationPropertiesList',
33
+ 'AutonomousContainerDatabaseCustomerContact',
33
34
  'AutonomousContainerDatabaseDataguard',
34
35
  'AutonomousContainerDatabaseDataguardAssociationPeerAutonomousContainerDatabaseBackupConfig',
35
36
  'AutonomousContainerDatabaseDataguardAssociationPeerAutonomousContainerDatabaseBackupConfigBackupDestinationDetail',
@@ -242,6 +243,7 @@ __all__ = [
242
243
  'GetAutonomousContainerDatabaseBackupsAutonomousContainerDatabaseBackupCollectionItemResult',
243
244
  'GetAutonomousContainerDatabaseBackupsAutonomousContainerDatabaseBackupCollectionItemAutonomousDatabaseResult',
244
245
  'GetAutonomousContainerDatabaseBackupsFilterResult',
246
+ 'GetAutonomousContainerDatabaseCustomerContactResult',
245
247
  'GetAutonomousContainerDatabaseDataguardResult',
246
248
  'GetAutonomousContainerDatabaseDataguardAssociationPeerAutonomousContainerDatabaseBackupConfigResult',
247
249
  'GetAutonomousContainerDatabaseDataguardAssociationPeerAutonomousContainerDatabaseBackupConfigBackupDestinationDetailResult',
@@ -269,6 +271,7 @@ __all__ = [
269
271
  'GetAutonomousContainerDatabasesAutonomousContainerDatabaseBackupConfigResult',
270
272
  'GetAutonomousContainerDatabasesAutonomousContainerDatabaseBackupConfigBackupDestinationDetailResult',
271
273
  'GetAutonomousContainerDatabasesAutonomousContainerDatabaseBackupDestinationPropertiesListResult',
274
+ 'GetAutonomousContainerDatabasesAutonomousContainerDatabaseCustomerContactResult',
272
275
  'GetAutonomousContainerDatabasesAutonomousContainerDatabaseDataguardResult',
273
276
  'GetAutonomousContainerDatabasesAutonomousContainerDatabaseDataguardGroupMemberResult',
274
277
  'GetAutonomousContainerDatabasesAutonomousContainerDatabaseKeyHistoryEntryResult',
@@ -682,6 +685,8 @@ __all__ = [
682
685
  'GetPluggableDatabasePdbNodeLevelDetailResult',
683
686
  'GetPluggableDatabasePluggableDatabaseManagementConfigResult',
684
687
  'GetPluggableDatabaseRefreshableCloneConfigResult',
688
+ 'GetPluggableDatabaseSnapshotsFilterResult',
689
+ 'GetPluggableDatabaseSnapshotsPluggableDatabaseSnapshotResult',
685
690
  'GetPluggableDatabasesFilterResult',
686
691
  'GetPluggableDatabasesPluggableDatabaseResult',
687
692
  'GetPluggableDatabasesPluggableDatabaseConnectionStringResult',
@@ -2252,6 +2257,25 @@ class AutonomousContainerDatabaseBackupDestinationPropertiesList(dict):
2252
2257
  return pulumi.get(self, "time_at_which_storage_details_are_updated")
2253
2258
 
2254
2259
 
2260
+ @pulumi.output_type
2261
+ class AutonomousContainerDatabaseCustomerContact(dict):
2262
+ def __init__(__self__, *,
2263
+ email: Optional[_builtins.str] = None):
2264
+ """
2265
+ :param _builtins.str email: (Updatable) The email address used by Oracle to send notifications regarding databases and infrastructure.
2266
+ """
2267
+ if email is not None:
2268
+ pulumi.set(__self__, "email", email)
2269
+
2270
+ @_builtins.property
2271
+ @pulumi.getter
2272
+ def email(self) -> Optional[_builtins.str]:
2273
+ """
2274
+ (Updatable) The email address used by Oracle to send notifications regarding databases and infrastructure.
2275
+ """
2276
+ return pulumi.get(self, "email")
2277
+
2278
+
2255
2279
  @pulumi.output_type
2256
2280
  class AutonomousContainerDatabaseDataguard(dict):
2257
2281
  @staticmethod
@@ -4883,7 +4907,7 @@ class AutonomousDatabaseKeyHistoryEntry(dict):
4883
4907
  :param _builtins.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.
4884
4908
  :param _builtins.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.
4885
4909
  :param _builtins.str time_activated: The date and time the kms key activated.
4886
- :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).
4910
+ :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.
4887
4911
  """
4888
4912
  if id is not None:
4889
4913
  pulumi.set(__self__, "id", id)
@@ -4922,7 +4946,7 @@ class AutonomousDatabaseKeyHistoryEntry(dict):
4922
4946
  @pulumi.getter(name="vaultId")
4923
4947
  def vault_id(self) -> Optional[_builtins.str]:
4924
4948
  """
4925
- 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).
4949
+ 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.
4926
4950
  """
4927
4951
  return pulumi.get(self, "vault_id")
4928
4952
 
@@ -5104,7 +5128,7 @@ class AutonomousDatabaseLongTermBackupSchedule(dict):
5104
5128
  retention_period_in_days: Optional[_builtins.int] = None,
5105
5129
  time_of_backup: Optional[_builtins.str] = None):
5106
5130
  """
5107
- :param _builtins.bool is_disabled: Indicates if the long-term backup schedule should be deleted. The default value is `FALSE`.
5131
+ :param _builtins.bool is_disabled: Indicates if the resource pool should be deleted for the Autonomous Database.
5108
5132
  :param _builtins.str repeat_cadence: The frequency of the long-term backup schedule
5109
5133
  :param _builtins.int retention_period_in_days: Retention period, in days, for long-term backups
5110
5134
  :param _builtins.str time_of_backup: The timestamp for the long-term backup schedule. For a MONTHLY cadence, months having fewer days than the provided date will have the backup taken on the last day of that month.
@@ -5122,7 +5146,7 @@ class AutonomousDatabaseLongTermBackupSchedule(dict):
5122
5146
  @pulumi.getter(name="isDisabled")
5123
5147
  def is_disabled(self) -> Optional[_builtins.bool]:
5124
5148
  """
5125
- Indicates if the long-term backup schedule should be deleted. The default value is `FALSE`.
5149
+ Indicates if the resource pool should be deleted for the Autonomous Database.
5126
5150
  """
5127
5151
  return pulumi.get(self, "is_disabled")
5128
5152
 
@@ -15256,6 +15280,8 @@ class KeyStoreAssociatedDatabase(dict):
15256
15280
  suggest = None
15257
15281
  if key == "dbName":
15258
15282
  suggest = "db_name"
15283
+ elif key == "dbUniqueName":
15284
+ suggest = "db_unique_name"
15259
15285
 
15260
15286
  if suggest:
15261
15287
  pulumi.log.warn(f"Key '{key}' not found in KeyStoreAssociatedDatabase. Access the value via the '{suggest}' property getter instead.")
@@ -15270,13 +15296,17 @@ class KeyStoreAssociatedDatabase(dict):
15270
15296
 
15271
15297
  def __init__(__self__, *,
15272
15298
  db_name: Optional[_builtins.str] = None,
15299
+ db_unique_name: Optional[_builtins.str] = None,
15273
15300
  id: Optional[_builtins.str] = None):
15274
15301
  """
15275
15302
  :param _builtins.str db_name: The name of the database that is associated with the key store.
15303
+ :param _builtins.str db_unique_name: The unique name of the database that is associated with the key store.
15276
15304
  :param _builtins.str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the key store.
15277
15305
  """
15278
15306
  if db_name is not None:
15279
15307
  pulumi.set(__self__, "db_name", db_name)
15308
+ if db_unique_name is not None:
15309
+ pulumi.set(__self__, "db_unique_name", db_unique_name)
15280
15310
  if id is not None:
15281
15311
  pulumi.set(__self__, "id", id)
15282
15312
 
@@ -15288,6 +15318,14 @@ class KeyStoreAssociatedDatabase(dict):
15288
15318
  """
15289
15319
  return pulumi.get(self, "db_name")
15290
15320
 
15321
+ @_builtins.property
15322
+ @pulumi.getter(name="dbUniqueName")
15323
+ def db_unique_name(self) -> Optional[_builtins.str]:
15324
+ """
15325
+ The unique name of the database that is associated with the key store.
15326
+ """
15327
+ return pulumi.get(self, "db_unique_name")
15328
+
15291
15329
  @_builtins.property
15292
15330
  @pulumi.getter
15293
15331
  def id(self) -> Optional[_builtins.str]:
@@ -15741,6 +15779,8 @@ class PluggableDatabasePdbCreationTypeDetails(dict):
15741
15779
  suggest = "refreshable_clone_details"
15742
15780
  elif key == "sourceContainerDatabaseAdminPassword":
15743
15781
  suggest = "source_container_database_admin_password"
15782
+ elif key == "sourcePluggableDatabaseSnapshotId":
15783
+ suggest = "source_pluggable_database_snapshot_id"
15744
15784
 
15745
15785
  if suggest:
15746
15786
  pulumi.log.warn(f"Key '{key}' not found in PluggableDatabasePdbCreationTypeDetails. Access the value via the '{suggest}' property getter instead.")
@@ -15760,7 +15800,8 @@ class PluggableDatabasePdbCreationTypeDetails(dict):
15760
15800
  dblink_username: Optional[_builtins.str] = None,
15761
15801
  is_thin_clone: Optional[_builtins.bool] = None,
15762
15802
  refreshable_clone_details: Optional['outputs.PluggableDatabasePdbCreationTypeDetailsRefreshableCloneDetails'] = None,
15763
- source_container_database_admin_password: Optional[_builtins.str] = None):
15803
+ source_container_database_admin_password: Optional[_builtins.str] = None,
15804
+ source_pluggable_database_snapshot_id: Optional[_builtins.str] = None):
15764
15805
  """
15765
15806
  :param _builtins.str creation_type: The Pluggable Database creation type.
15766
15807
  :param _builtins.str source_pluggable_database_id: The OCID of the Source Pluggable Database.
@@ -15769,6 +15810,7 @@ class PluggableDatabasePdbCreationTypeDetails(dict):
15769
15810
  :param _builtins.bool is_thin_clone: True if Pluggable Database needs to be thin cloned and false if Pluggable Database needs to be thick cloned.
15770
15811
  :param 'PluggableDatabasePdbCreationTypeDetailsRefreshableCloneDetailsArgs' refreshable_clone_details: Parameters for creating Pluggable Database Refreshable Clone. **Warning:** Oracle recommends that you avoid using any confidential information when you supply string values using the API.
15771
15812
  :param _builtins.str source_container_database_admin_password: The DB system administrator password of the source Container Database.
15813
+ :param _builtins.str source_pluggable_database_snapshot_id: The OCID of the Source Pluggable Database Snapshot id.
15772
15814
  """
15773
15815
  pulumi.set(__self__, "creation_type", creation_type)
15774
15816
  pulumi.set(__self__, "source_pluggable_database_id", source_pluggable_database_id)
@@ -15782,6 +15824,8 @@ class PluggableDatabasePdbCreationTypeDetails(dict):
15782
15824
  pulumi.set(__self__, "refreshable_clone_details", refreshable_clone_details)
15783
15825
  if source_container_database_admin_password is not None:
15784
15826
  pulumi.set(__self__, "source_container_database_admin_password", source_container_database_admin_password)
15827
+ if source_pluggable_database_snapshot_id is not None:
15828
+ pulumi.set(__self__, "source_pluggable_database_snapshot_id", source_pluggable_database_snapshot_id)
15785
15829
 
15786
15830
  @_builtins.property
15787
15831
  @pulumi.getter(name="creationType")
@@ -15839,6 +15883,14 @@ class PluggableDatabasePdbCreationTypeDetails(dict):
15839
15883
  """
15840
15884
  return pulumi.get(self, "source_container_database_admin_password")
15841
15885
 
15886
+ @_builtins.property
15887
+ @pulumi.getter(name="sourcePluggableDatabaseSnapshotId")
15888
+ def source_pluggable_database_snapshot_id(self) -> Optional[_builtins.str]:
15889
+ """
15890
+ The OCID of the Source Pluggable Database Snapshot id.
15891
+ """
15892
+ return pulumi.get(self, "source_pluggable_database_snapshot_id")
15893
+
15842
15894
 
15843
15895
  @pulumi.output_type
15844
15896
  class PluggableDatabasePdbCreationTypeDetailsRefreshableCloneDetails(dict):
@@ -18652,6 +18704,24 @@ class GetAutonomousContainerDatabaseBackupsFilterResult(dict):
18652
18704
  return pulumi.get(self, "regex")
18653
18705
 
18654
18706
 
18707
+ @pulumi.output_type
18708
+ class GetAutonomousContainerDatabaseCustomerContactResult(dict):
18709
+ def __init__(__self__, *,
18710
+ email: _builtins.str):
18711
+ """
18712
+ :param _builtins.str email: The email address used by Oracle to send notifications regarding databases and infrastructure.
18713
+ """
18714
+ pulumi.set(__self__, "email", email)
18715
+
18716
+ @_builtins.property
18717
+ @pulumi.getter
18718
+ def email(self) -> _builtins.str:
18719
+ """
18720
+ The email address used by Oracle to send notifications regarding databases and infrastructure.
18721
+ """
18722
+ return pulumi.get(self, "email")
18723
+
18724
+
18655
18725
  @pulumi.output_type
18656
18726
  class GetAutonomousContainerDatabaseDataguardResult(dict):
18657
18727
  def __init__(__self__, *,
@@ -20248,6 +20318,7 @@ class GetAutonomousContainerDatabasesAutonomousContainerDatabaseResult(dict):
20248
20318
  cloud_autonomous_vm_cluster_id: _builtins.str,
20249
20319
  compartment_id: _builtins.str,
20250
20320
  compute_model: _builtins.str,
20321
+ customer_contacts: Sequence['outputs.GetAutonomousContainerDatabasesAutonomousContainerDatabaseCustomerContactResult'],
20251
20322
  database_software_image_id: _builtins.str,
20252
20323
  dataguard_group_members: Sequence['outputs.GetAutonomousContainerDatabasesAutonomousContainerDatabaseDataguardGroupMemberResult'],
20253
20324
  dataguards: Sequence['outputs.GetAutonomousContainerDatabasesAutonomousContainerDatabaseDataguardResult'],
@@ -20283,6 +20354,7 @@ class GetAutonomousContainerDatabasesAutonomousContainerDatabaseResult(dict):
20283
20354
  memory_per_oracle_compute_unit_in_gbs: _builtins.int,
20284
20355
  net_services_architecture: _builtins.str,
20285
20356
  next_maintenance_run_id: _builtins.str,
20357
+ okv_end_point_group_name: _builtins.str,
20286
20358
  patch_id: _builtins.str,
20287
20359
  patch_model: _builtins.str,
20288
20360
  peer_autonomous_container_database_backup_configs: Sequence['outputs.GetAutonomousContainerDatabasesAutonomousContainerDatabasePeerAutonomousContainerDatabaseBackupConfigResult'],
@@ -20325,6 +20397,7 @@ class GetAutonomousContainerDatabasesAutonomousContainerDatabaseResult(dict):
20325
20397
  :param _builtins.str cloud_autonomous_vm_cluster_id: The cloud Autonomous VM Cluster [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
20326
20398
  :param _builtins.str compartment_id: The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
20327
20399
  :param _builtins.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.
20400
+ :param Sequence['GetAutonomousContainerDatabasesAutonomousContainerDatabaseCustomerContactArgs'] customer_contacts: Customer Contacts. Setting this to an empty list removes all customer contacts.
20328
20401
  :param Sequence['GetAutonomousContainerDatabasesAutonomousContainerDatabaseDataguardGroupMemberArgs'] dataguard_group_members: Array of Dg associations.
20329
20402
  :param Sequence['GetAutonomousContainerDatabasesAutonomousContainerDatabaseDataguardArgs'] dataguards: The properties that define Autonomous Container Databases Dataguard.
20330
20403
  :param _builtins.str db_name: The Database name for the Autonomous Container Database. The name must be unique within the Cloud Autonomous VM Cluster, starting with an alphabetic character, followed by 1 to 7 alphanumeric characters.
@@ -20355,6 +20428,7 @@ class GetAutonomousContainerDatabasesAutonomousContainerDatabaseResult(dict):
20355
20428
  :param _builtins.int memory_per_oracle_compute_unit_in_gbs: The amount of memory (in GBs) enabled per ECPU or OCPU in the Autonomous VM Cluster.
20356
20429
  :param _builtins.str net_services_architecture: Enabling SHARED server architecture enables a database server to allow many client processes to share very few server processes, thereby increasing the number of supported users.
20357
20430
  :param _builtins.str next_maintenance_run_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the next maintenance run.
20431
+ :param _builtins.str okv_end_point_group_name: The OKV End Point Group name for the Autonomous Container Database.
20358
20432
  :param _builtins.str patch_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the last patch applied on the system.
20359
20433
  :param _builtins.str patch_model: Database patch model preference.
20360
20434
  :param _builtins.str protection_mode: The protection mode of this Autonomous Data Guard association. 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.
@@ -20387,6 +20461,7 @@ class GetAutonomousContainerDatabasesAutonomousContainerDatabaseResult(dict):
20387
20461
  pulumi.set(__self__, "cloud_autonomous_vm_cluster_id", cloud_autonomous_vm_cluster_id)
20388
20462
  pulumi.set(__self__, "compartment_id", compartment_id)
20389
20463
  pulumi.set(__self__, "compute_model", compute_model)
20464
+ pulumi.set(__self__, "customer_contacts", customer_contacts)
20390
20465
  pulumi.set(__self__, "database_software_image_id", database_software_image_id)
20391
20466
  pulumi.set(__self__, "dataguard_group_members", dataguard_group_members)
20392
20467
  pulumi.set(__self__, "dataguards", dataguards)
@@ -20422,6 +20497,7 @@ class GetAutonomousContainerDatabasesAutonomousContainerDatabaseResult(dict):
20422
20497
  pulumi.set(__self__, "memory_per_oracle_compute_unit_in_gbs", memory_per_oracle_compute_unit_in_gbs)
20423
20498
  pulumi.set(__self__, "net_services_architecture", net_services_architecture)
20424
20499
  pulumi.set(__self__, "next_maintenance_run_id", next_maintenance_run_id)
20500
+ pulumi.set(__self__, "okv_end_point_group_name", okv_end_point_group_name)
20425
20501
  pulumi.set(__self__, "patch_id", patch_id)
20426
20502
  pulumi.set(__self__, "patch_model", patch_model)
20427
20503
  pulumi.set(__self__, "peer_autonomous_container_database_backup_configs", peer_autonomous_container_database_backup_configs)
@@ -20539,6 +20615,14 @@ class GetAutonomousContainerDatabasesAutonomousContainerDatabaseResult(dict):
20539
20615
  """
20540
20616
  return pulumi.get(self, "compute_model")
20541
20617
 
20618
+ @_builtins.property
20619
+ @pulumi.getter(name="customerContacts")
20620
+ def customer_contacts(self) -> Sequence['outputs.GetAutonomousContainerDatabasesAutonomousContainerDatabaseCustomerContactResult']:
20621
+ """
20622
+ Customer Contacts. Setting this to an empty list removes all customer contacts.
20623
+ """
20624
+ return pulumi.get(self, "customer_contacts")
20625
+
20542
20626
  @_builtins.property
20543
20627
  @pulumi.getter(name="databaseSoftwareImageId")
20544
20628
  def database_software_image_id(self) -> _builtins.str:
@@ -20804,6 +20888,14 @@ class GetAutonomousContainerDatabasesAutonomousContainerDatabaseResult(dict):
20804
20888
  """
20805
20889
  return pulumi.get(self, "next_maintenance_run_id")
20806
20890
 
20891
+ @_builtins.property
20892
+ @pulumi.getter(name="okvEndPointGroupName")
20893
+ def okv_end_point_group_name(self) -> _builtins.str:
20894
+ """
20895
+ The OKV End Point Group name for the Autonomous Container Database.
20896
+ """
20897
+ return pulumi.get(self, "okv_end_point_group_name")
20898
+
20807
20899
  @_builtins.property
20808
20900
  @pulumi.getter(name="patchId")
20809
20901
  def patch_id(self) -> _builtins.str:
@@ -21290,6 +21382,24 @@ class GetAutonomousContainerDatabasesAutonomousContainerDatabaseBackupDestinatio
21290
21382
  return pulumi.get(self, "time_at_which_storage_details_are_updated")
21291
21383
 
21292
21384
 
21385
+ @pulumi.output_type
21386
+ class GetAutonomousContainerDatabasesAutonomousContainerDatabaseCustomerContactResult(dict):
21387
+ def __init__(__self__, *,
21388
+ email: _builtins.str):
21389
+ """
21390
+ :param _builtins.str email: The email address used by Oracle to send notifications regarding databases and infrastructure.
21391
+ """
21392
+ pulumi.set(__self__, "email", email)
21393
+
21394
+ @_builtins.property
21395
+ @pulumi.getter
21396
+ def email(self) -> _builtins.str:
21397
+ """
21398
+ The email address used by Oracle to send notifications regarding databases and infrastructure.
21399
+ """
21400
+ return pulumi.get(self, "email")
21401
+
21402
+
21293
21403
  @pulumi.output_type
21294
21404
  class GetAutonomousContainerDatabasesAutonomousContainerDatabaseDataguardResult(dict):
21295
21405
  def __init__(__self__, *,
@@ -24819,6 +24929,7 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
24819
24929
  is_data_guard_enabled: _builtins.bool,
24820
24930
  is_dedicated: _builtins.bool,
24821
24931
  is_dev_tier: _builtins.bool,
24932
+ is_disable_db_version_upgrade_schedule: _builtins.bool,
24822
24933
  is_disconnect_peer: _builtins.bool,
24823
24934
  is_free_tier: _builtins.bool,
24824
24935
  is_local_data_guard_enabled: _builtins.bool,
@@ -24829,6 +24940,7 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
24829
24940
  is_refreshable_clone: _builtins.bool,
24830
24941
  is_remote_data_guard_enabled: _builtins.bool,
24831
24942
  is_replicate_automatic_backups: _builtins.bool,
24943
+ is_schedule_db_version_upgrade_to_earliest: _builtins.bool,
24832
24944
  is_shrink_only: _builtins.bool,
24833
24945
  key_history_entries: Sequence['outputs.GetAutonomousDatabasesAutonomousDatabaseKeyHistoryEntryResult'],
24834
24946
  key_store_id: _builtins.str,
@@ -24891,6 +25003,8 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
24891
25003
  time_data_guard_role_changed: _builtins.str,
24892
25004
  time_deletion_of_free_autonomous_database: _builtins.str,
24893
25005
  time_disaster_recovery_role_changed: _builtins.str,
25006
+ time_earliest_available_db_version_upgrade: _builtins.str,
25007
+ time_latest_available_db_version_upgrade: _builtins.str,
24894
25008
  time_local_data_guard_enabled: _builtins.str,
24895
25009
  time_maintenance_begin: _builtins.str,
24896
25010
  time_maintenance_end: _builtins.str,
@@ -24902,6 +25016,7 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
24902
25016
  time_of_last_switchover: _builtins.str,
24903
25017
  time_of_next_refresh: _builtins.str,
24904
25018
  time_reclamation_of_free_autonomous_database: _builtins.str,
25019
+ time_scheduled_db_version_upgrade: _builtins.str,
24905
25020
  time_undeleted: _builtins.str,
24906
25021
  time_until_reconnect_clone_enabled: _builtins.str,
24907
25022
  timestamp: _builtins.str,
@@ -24923,7 +25038,8 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
24923
25038
  :param _builtins.str availability_domain: The availability domain of a local Autonomous Data Guard standby database of an Autonomous Database Serverless instance.
24924
25039
  :param Sequence[_builtins.str] available_upgrade_versions: List of Oracle Database versions available for a database upgrade. If there are no version upgrades available, this list is empty.
24925
25040
  :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.
24926
- :param _builtins.int backup_retention_period_in_days: Retention period, in days, for backups.
25041
+ :param _builtins.int backup_retention_period_in_days: Retention period, in days, for long-term backups
25042
+ :param _builtins.float byol_compute_count_limit: The maximum number of CPUs allowed with a Bring Your Own License (BYOL), including those used for auto-scaling, disaster recovery, tools, etc. Any CPU usage above this limit is considered as License Included and billed.
24927
25043
  :param _builtins.str character_set: The character set for the autonomous database. The default is AL32UTF8. Allowed values are:
24928
25044
  :param Sequence[_builtins.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.
24929
25045
  :param _builtins.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.
@@ -24948,7 +25064,6 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
24948
25064
  :param _builtins.str disaster_recovery_region_type: **Deprecated.** The disaster recovery (DR) region type of the Autonomous Database. For Autonomous Database Serverless instances, DR associations have designated primary and standby regions. These region types do not change when the database changes roles. The standby region in DR associations can be the same region as the primary region, or they can be in a remote regions. Some database administration operations may be available only in the primary region of the DR association, and cannot be performed when the database using the primary role is operating in a remote region.
24949
25065
  :param _builtins.str disaster_recovery_type: Indicates the 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.
24950
25066
  :param _builtins.str display_name: A filter to return only resources that match the entire display name given. The match is not case sensitive.
24951
- :param _builtins.bool enable_delete_scheduled_operations: If omitted or set to false the provider will not delete scheduled_operations from the Autonomous Database. If set to true, provider will delete scheduled_operations from the Autonomous Database.
24952
25067
  :param Sequence['GetAutonomousDatabasesAutonomousDatabaseEncryptionKeyHistoryEntryArgs'] encryption_key_history_entries: Key History Entry.
24953
25068
  :param Sequence['GetAutonomousDatabasesAutonomousDatabaseEncryptionKeyArgs'] encryption_keys: Details of the Autonomous Database encryption key.
24954
25069
  :param _builtins.int failed_data_recovery_in_seconds: Indicates the number of seconds of data loss for a Data Guard failover.
@@ -24963,9 +25078,7 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
24963
25078
  :param _builtins.bool is_backup_retention_locked: Indicates if the Autonomous Database is backup retention locked.
24964
25079
  :param _builtins.bool is_data_guard_enabled: A filter to return only resources that have Data Guard enabled.
24965
25080
  :param _builtins.bool is_dedicated: True if the database uses [dedicated Exadata infrastructure](https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html).
24966
- :param _builtins.bool is_dev_tier: Autonomous Database for Developers are free Autonomous Databases that developers can use to build and test new applications.With Autonomous these database instancess instances, you can try new Autonomous Database features for free and apply them to ongoing or new development projects. Developer database comes with limited resources and is, therefore, not suitable for large-scale testing and production deployments. When you need more compute or storage resources, you can transition to a paid database licensing by cloning your developer database into a regular Autonomous Database. See [Autonomous Database documentation](https://docs.oracle.com/en/cloud/paas/autonomous-database/dedicated/eddjo/index.html) for more details.
24967
- This cannot be updated in parallel with any of the following: licenseModel, dbEdition, cpuCoreCount, computeCount, computeModel, adminPassword, whitelistedIps, isMTLSConnectionRequired, openMode, permissionLevel, privateEndpointLabel, nsgIds, dbVersion, isRefreshable, dbName, scheduledOperations, dbToolsDetails, or isLocalDataGuardEnabled
24968
- :param _builtins.bool is_disconnect_peer: If true, this will disconnect the Autonomous Database from its peer and the Autonomous Database can work permanently as a standalone database. To disconnect a cross region standby, please also provide the OCID of the standby database in the `peerDbId` parameter.
25081
+ :param _builtins.bool is_dev_tier: Autonomous Database for Developers are fixed-shape Autonomous Databases that developers can use to build and test new applications. On Serverless, these are low-cost and billed per instance, on Dedicated and Cloud@Customer there is no additional cost to create Developer databases. Developer databases come with limited resources and is not intended for large-scale testing and production deployments. When you need more compute or storage resources, you may upgrade to a full paid production database.
24969
25082
  :param _builtins.bool is_free_tier: Filter on the value of the resource's 'isFreeTier' property. A value of `true` returns only Always Free resources. A value of `false` excludes Always Free resources from the returned results. Omitting this parameter returns both Always Free and paid resources.
24970
25083
  :param _builtins.bool is_local_data_guard_enabled: Indicates whether the Autonomous Database has local (in-region) Data Guard enabled. Not applicable to cross-region Autonomous Data Guard associations, or to Autonomous Databases using dedicated Exadata infrastructure or Exadata Cloud@Customer infrastructure.
24971
25084
  :param _builtins.bool is_mtls_connection_required: Specifies if the Autonomous Database requires mTLS connections.
@@ -24979,7 +25092,7 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
24979
25092
  :param _builtins.str key_store_wallet_name: The wallet name for Oracle Key Vault.
24980
25093
  :param _builtins.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.
24981
25094
  :param _builtins.str kms_key_lifecycle_details: KMS key lifecycle details.
24982
- :param _builtins.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.
25095
+ :param _builtins.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.
24983
25096
  :param _builtins.str license_model: The Oracle license model that applies to the Oracle Autonomous Database. Bring your own license (BYOL) allows you to apply your current on-premises Oracle software licenses to equivalent, highly automated Oracle services in the cloud. License Included allows you to subscribe to new Oracle Database software licenses and the Oracle Database service. Note that when provisioning an [Autonomous Database on dedicated Exadata infrastructure](https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html), this attribute must be null. It is already set at the Autonomous Exadata Infrastructure level. When provisioning an [Autonomous Database Serverless] (https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html) database, if a value is not specified, the system defaults the value to `BRING_YOUR_OWN_LICENSE`. Bring your own license (BYOL) also allows you to select the DB edition using the optional parameter.
24984
25097
  :param _builtins.str lifecycle_details: Additional information about the current lifecycle state.
24985
25098
  :param _builtins.int local_adg_auto_failover_max_data_loss_limit: Parameter that allows users to select an acceptable maximum data loss limit in seconds, up to which Automatic Failover will be triggered when necessary for a Local Autonomous Data Guard
@@ -24987,7 +25100,6 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
24987
25100
  :param Sequence['GetAutonomousDatabasesAutonomousDatabaseLocalStandbyDbArgs'] local_standby_dbs: Autonomous Data Guard standby database details.
24988
25101
  :param Sequence['GetAutonomousDatabasesAutonomousDatabaseLongTermBackupScheduleArgs'] long_term_backup_schedules: Details for the long-term backup schedule.
24989
25102
  :param _builtins.str maintenance_target_component: The component chosen for maintenance.
24990
- :param _builtins.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.
24991
25103
  :param _builtins.int memory_per_oracle_compute_unit_in_gbs: The amount of memory (in GBs) enabled per ECPU or OCPU.
24992
25104
  :param _builtins.str ncharacter_set: The national character set for the autonomous database. The default is AL16UTF16. Allowed values are: AL16UTF16 or UTF8.
24993
25105
  :param _builtins.str net_services_architecture: Enabling SHARED server architecture enables a database server to allow many client processes to share very few server processes, thereby increasing the number of supported users.
@@ -24997,7 +25109,6 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
24997
25109
  :param _builtins.float ocpu_count: The number of OCPU cores to be made available to the database.
24998
25110
  :param _builtins.str open_mode: Indicates the Autonomous Database mode. The database can be opened in `READ_ONLY` or `READ_WRITE` mode.
24999
25111
  :param _builtins.str operations_insights_status: Status of Operations Insights for this Autonomous Database.
25000
- :param _builtins.str peer_db_id: The database [OCIDs](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Disaster Recovery peer (source Primary) database, which is located in a different (remote) region from the current peer database.
25001
25112
  :param Sequence[_builtins.str] peer_db_ids: The list of [OCIDs](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of standby databases located in Autonomous Data Guard remote regions that are associated with the source database. Note that for Autonomous Database Serverless instances, standby databases located in the same region as the source primary database do not have OCIDs.
25002
25113
  :param _builtins.str permission_level: The Autonomous Database permission level. Restricted mode allows access only by admin users.
25003
25114
  :param _builtins.str private_endpoint: The private endpoint for the resource.
@@ -25021,13 +25132,14 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
25021
25132
  :param _builtins.str state: A filter to return only resources that match the given lifecycle state exactly.
25022
25133
  :param _builtins.str subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet the resource is associated with.
25023
25134
  :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.
25024
- These subnets are used by the Oracle Clusterware private interconnect on the database instance. Specifying an overlapping subnet will cause the private interconnect to malfunction. This restriction applies to both the client subnet and the backup subnet.
25025
25135
  :param Sequence[_builtins.str] supported_regions_to_clone_tos: The list of regions that support the creation of an Autonomous Database clone or an Autonomous Data Guard standby database.
25026
25136
  :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).
25027
25137
  :param _builtins.str time_created: The date and time the Autonomous Database was created.
25028
25138
  :param _builtins.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.
25029
25139
  :param _builtins.str time_deletion_of_free_autonomous_database: The date and time the Always Free database will be automatically deleted because of inactivity. If the database is in the STOPPED state and without activity until this time, it will be deleted.
25030
25140
  :param _builtins.str time_disaster_recovery_role_changed: The date and time the Disaster Recovery role was switched for the standby Autonomous Database.
25141
+ :param _builtins.str time_earliest_available_db_version_upgrade: The earliest(min) date and time the Autonomous Database can be scheduled to upgrade to 23ai.
25142
+ :param _builtins.str time_latest_available_db_version_upgrade: The max date and time the Autonomous Database can be scheduled to upgrade to 23ai.
25031
25143
  :param _builtins.str time_local_data_guard_enabled: The date and time that Autonomous Data Guard was enabled for an Autonomous Database where the standby was provisioned in the same region as the primary database.
25032
25144
  :param _builtins.str time_maintenance_begin: The date and time when maintenance will begin.
25033
25145
  :param _builtins.str time_maintenance_end: The date and time when maintenance will end.
@@ -25039,12 +25151,13 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
25039
25151
  :param _builtins.str time_of_last_switchover: The timestamp of the last switchover operation for the Autonomous Database.
25040
25152
  :param _builtins.str time_of_next_refresh: The date and time of next refresh.
25041
25153
  :param _builtins.str time_reclamation_of_free_autonomous_database: The date and time the Always Free database will be stopped because of inactivity. If this time is reached without any database activity, the database will automatically be put into the STOPPED state.
25154
+ :param _builtins.str time_scheduled_db_version_upgrade: The date and time the Autonomous Database scheduled to upgrade to 23ai.
25042
25155
  :param _builtins.str time_undeleted: The date and time the Autonomous Database was most recently undeleted.
25043
25156
  :param _builtins.str time_until_reconnect_clone_enabled: The time and date as an RFC3339 formatted string, e.g., 2022-01-01T12:00:00.000Z, to set the limit for a refreshable clone to be reconnected to its source database.
25044
25157
  :param _builtins.float total_backup_storage_size_in_gbs: The backup storage to the database.
25045
25158
  :param _builtins.int used_data_storage_size_in_gbs: The storage space consumed by Autonomous Database in GBs.
25046
25159
  :param _builtins.int used_data_storage_size_in_tbs: The amount of storage that has been used for Autonomous Databases in dedicated infrastructure, in terabytes.
25047
- :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).
25160
+ :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.
25048
25161
  :param Sequence[_builtins.str] whitelisted_ips: The client IP access control list (ACL). This feature is available for [Autonomous Database Serverless] (https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html) and on Exadata Cloud@Customer. Only clients connecting from an IP address included in the ACL may access the Autonomous Database instance. If `arePrimaryWhitelistedIpsUsed` is 'TRUE' then Autonomous Database uses this primary's IP access control list (ACL) for the disaster recovery peer called `standbywhitelistedips`.
25049
25162
  """
25050
25163
  pulumi.set(__self__, "actual_used_data_storage_size_in_tbs", actual_used_data_storage_size_in_tbs)
@@ -25104,6 +25217,7 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
25104
25217
  pulumi.set(__self__, "is_data_guard_enabled", is_data_guard_enabled)
25105
25218
  pulumi.set(__self__, "is_dedicated", is_dedicated)
25106
25219
  pulumi.set(__self__, "is_dev_tier", is_dev_tier)
25220
+ pulumi.set(__self__, "is_disable_db_version_upgrade_schedule", is_disable_db_version_upgrade_schedule)
25107
25221
  pulumi.set(__self__, "is_disconnect_peer", is_disconnect_peer)
25108
25222
  pulumi.set(__self__, "is_free_tier", is_free_tier)
25109
25223
  pulumi.set(__self__, "is_local_data_guard_enabled", is_local_data_guard_enabled)
@@ -25114,6 +25228,7 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
25114
25228
  pulumi.set(__self__, "is_refreshable_clone", is_refreshable_clone)
25115
25229
  pulumi.set(__self__, "is_remote_data_guard_enabled", is_remote_data_guard_enabled)
25116
25230
  pulumi.set(__self__, "is_replicate_automatic_backups", is_replicate_automatic_backups)
25231
+ pulumi.set(__self__, "is_schedule_db_version_upgrade_to_earliest", is_schedule_db_version_upgrade_to_earliest)
25117
25232
  pulumi.set(__self__, "is_shrink_only", is_shrink_only)
25118
25233
  pulumi.set(__self__, "key_history_entries", key_history_entries)
25119
25234
  pulumi.set(__self__, "key_store_id", key_store_id)
@@ -25176,6 +25291,8 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
25176
25291
  pulumi.set(__self__, "time_data_guard_role_changed", time_data_guard_role_changed)
25177
25292
  pulumi.set(__self__, "time_deletion_of_free_autonomous_database", time_deletion_of_free_autonomous_database)
25178
25293
  pulumi.set(__self__, "time_disaster_recovery_role_changed", time_disaster_recovery_role_changed)
25294
+ pulumi.set(__self__, "time_earliest_available_db_version_upgrade", time_earliest_available_db_version_upgrade)
25295
+ pulumi.set(__self__, "time_latest_available_db_version_upgrade", time_latest_available_db_version_upgrade)
25179
25296
  pulumi.set(__self__, "time_local_data_guard_enabled", time_local_data_guard_enabled)
25180
25297
  pulumi.set(__self__, "time_maintenance_begin", time_maintenance_begin)
25181
25298
  pulumi.set(__self__, "time_maintenance_end", time_maintenance_end)
@@ -25187,6 +25304,7 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
25187
25304
  pulumi.set(__self__, "time_of_last_switchover", time_of_last_switchover)
25188
25305
  pulumi.set(__self__, "time_of_next_refresh", time_of_next_refresh)
25189
25306
  pulumi.set(__self__, "time_reclamation_of_free_autonomous_database", time_reclamation_of_free_autonomous_database)
25307
+ pulumi.set(__self__, "time_scheduled_db_version_upgrade", time_scheduled_db_version_upgrade)
25190
25308
  pulumi.set(__self__, "time_undeleted", time_undeleted)
25191
25309
  pulumi.set(__self__, "time_until_reconnect_clone_enabled", time_until_reconnect_clone_enabled)
25192
25310
  pulumi.set(__self__, "timestamp", timestamp)
@@ -25304,13 +25422,16 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
25304
25422
  @pulumi.getter(name="backupRetentionPeriodInDays")
25305
25423
  def backup_retention_period_in_days(self) -> _builtins.int:
25306
25424
  """
25307
- Retention period, in days, for backups.
25425
+ Retention period, in days, for long-term backups
25308
25426
  """
25309
25427
  return pulumi.get(self, "backup_retention_period_in_days")
25310
25428
 
25311
25429
  @_builtins.property
25312
25430
  @pulumi.getter(name="byolComputeCountLimit")
25313
25431
  def byol_compute_count_limit(self) -> _builtins.float:
25432
+ """
25433
+ The maximum number of CPUs allowed with a Bring Your Own License (BYOL), including those used for auto-scaling, disaster recovery, tools, etc. Any CPU usage above this limit is considered as License Included and billed.
25434
+ """
25314
25435
  return pulumi.get(self, "byol_compute_count_limit")
25315
25436
 
25316
25437
  @_builtins.property
@@ -25513,9 +25634,6 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
25513
25634
  @_builtins.property
25514
25635
  @pulumi.getter(name="enableDeleteScheduledOperations")
25515
25636
  def enable_delete_scheduled_operations(self) -> _builtins.bool:
25516
- """
25517
- If omitted or set to false the provider will not delete scheduled_operations from the Autonomous Database. If set to true, provider will delete scheduled_operations from the Autonomous Database.
25518
- """
25519
25637
  return pulumi.get(self, "enable_delete_scheduled_operations")
25520
25638
 
25521
25639
  @_builtins.property
@@ -25634,17 +25752,18 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
25634
25752
  @pulumi.getter(name="isDevTier")
25635
25753
  def is_dev_tier(self) -> _builtins.bool:
25636
25754
  """
25637
- Autonomous Database for Developers are free Autonomous Databases that developers can use to build and test new applications.With Autonomous these database instancess instances, you can try new Autonomous Database features for free and apply them to ongoing or new development projects. Developer database comes with limited resources and is, therefore, not suitable for large-scale testing and production deployments. When you need more compute or storage resources, you can transition to a paid database licensing by cloning your developer database into a regular Autonomous Database. See [Autonomous Database documentation](https://docs.oracle.com/en/cloud/paas/autonomous-database/dedicated/eddjo/index.html) for more details.
25638
- This cannot be updated in parallel with any of the following: licenseModel, dbEdition, cpuCoreCount, computeCount, computeModel, adminPassword, whitelistedIps, isMTLSConnectionRequired, openMode, permissionLevel, privateEndpointLabel, nsgIds, dbVersion, isRefreshable, dbName, scheduledOperations, dbToolsDetails, or isLocalDataGuardEnabled
25755
+ Autonomous Database for Developers are fixed-shape Autonomous Databases that developers can use to build and test new applications. On Serverless, these are low-cost and billed per instance, on Dedicated and Cloud@Customer there is no additional cost to create Developer databases. Developer databases come with limited resources and is not intended for large-scale testing and production deployments. When you need more compute or storage resources, you may upgrade to a full paid production database.
25639
25756
  """
25640
25757
  return pulumi.get(self, "is_dev_tier")
25641
25758
 
25759
+ @_builtins.property
25760
+ @pulumi.getter(name="isDisableDbVersionUpgradeSchedule")
25761
+ def is_disable_db_version_upgrade_schedule(self) -> _builtins.bool:
25762
+ return pulumi.get(self, "is_disable_db_version_upgrade_schedule")
25763
+
25642
25764
  @_builtins.property
25643
25765
  @pulumi.getter(name="isDisconnectPeer")
25644
25766
  def is_disconnect_peer(self) -> _builtins.bool:
25645
- """
25646
- If true, this will disconnect the Autonomous Database from its peer and the Autonomous Database can work permanently as a standalone database. To disconnect a cross region standby, please also provide the OCID of the standby database in the `peerDbId` parameter.
25647
- """
25648
25767
  return pulumi.get(self, "is_disconnect_peer")
25649
25768
 
25650
25769
  @_builtins.property
@@ -25716,6 +25835,11 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
25716
25835
  """
25717
25836
  return pulumi.get(self, "is_replicate_automatic_backups")
25718
25837
 
25838
+ @_builtins.property
25839
+ @pulumi.getter(name="isScheduleDbVersionUpgradeToEarliest")
25840
+ def is_schedule_db_version_upgrade_to_earliest(self) -> _builtins.bool:
25841
+ return pulumi.get(self, "is_schedule_db_version_upgrade_to_earliest")
25842
+
25719
25843
  @_builtins.property
25720
25844
  @pulumi.getter(name="isShrinkOnly")
25721
25845
  @_utilities.deprecated("""The 'is_shrink_only' field has been deprecated. Please use 'shrink_adb_trigger' instead.""")
@@ -25771,7 +25895,7 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
25771
25895
  @pulumi.getter(name="kmsKeyVersionId")
25772
25896
  def kms_key_version_id(self) -> _builtins.str:
25773
25897
  """
25774
- 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.
25898
+ 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.
25775
25899
  """
25776
25900
  return pulumi.get(self, "kms_key_version_id")
25777
25901
 
@@ -25834,9 +25958,6 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
25834
25958
  @_builtins.property
25835
25959
  @pulumi.getter(name="maxCpuCoreCount")
25836
25960
  def max_cpu_core_count(self) -> _builtins.int:
25837
- """
25838
- The number of Max OCPU cores to be made available to the autonomous database with auto scaling of cpu enabled.
25839
- """
25840
25961
  return pulumi.get(self, "max_cpu_core_count")
25841
25962
 
25842
25963
  @_builtins.property
@@ -25907,9 +26028,6 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
25907
26028
  @_builtins.property
25908
26029
  @pulumi.getter(name="peerDbId")
25909
26030
  def peer_db_id(self) -> _builtins.str:
25910
- """
25911
- The database [OCIDs](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Disaster Recovery peer (source Primary) database, which is located in a different (remote) region from the current peer database.
25912
- """
25913
26031
  return pulumi.get(self, "peer_db_id")
25914
26032
 
25915
26033
  @_builtins.property
@@ -26123,7 +26241,6 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
26123
26241
  def subscription_id(self) -> _builtins.str:
26124
26242
  """
26125
26243
  The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subscription with which resource needs to be associated with.
26126
- These subnets are used by the Oracle Clusterware private interconnect on the database instance. Specifying an overlapping subnet will cause the private interconnect to malfunction. This restriction applies to both the client subnet and the backup subnet.
26127
26244
  """
26128
26245
  return pulumi.get(self, "subscription_id")
26129
26246
 
@@ -26185,6 +26302,22 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
26185
26302
  """
26186
26303
  return pulumi.get(self, "time_disaster_recovery_role_changed")
26187
26304
 
26305
+ @_builtins.property
26306
+ @pulumi.getter(name="timeEarliestAvailableDbVersionUpgrade")
26307
+ def time_earliest_available_db_version_upgrade(self) -> _builtins.str:
26308
+ """
26309
+ The earliest(min) date and time the Autonomous Database can be scheduled to upgrade to 23ai.
26310
+ """
26311
+ return pulumi.get(self, "time_earliest_available_db_version_upgrade")
26312
+
26313
+ @_builtins.property
26314
+ @pulumi.getter(name="timeLatestAvailableDbVersionUpgrade")
26315
+ def time_latest_available_db_version_upgrade(self) -> _builtins.str:
26316
+ """
26317
+ The max date and time the Autonomous Database can be scheduled to upgrade to 23ai.
26318
+ """
26319
+ return pulumi.get(self, "time_latest_available_db_version_upgrade")
26320
+
26188
26321
  @_builtins.property
26189
26322
  @pulumi.getter(name="timeLocalDataGuardEnabled")
26190
26323
  def time_local_data_guard_enabled(self) -> _builtins.str:
@@ -26273,6 +26406,14 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
26273
26406
  """
26274
26407
  return pulumi.get(self, "time_reclamation_of_free_autonomous_database")
26275
26408
 
26409
+ @_builtins.property
26410
+ @pulumi.getter(name="timeScheduledDbVersionUpgrade")
26411
+ def time_scheduled_db_version_upgrade(self) -> _builtins.str:
26412
+ """
26413
+ The date and time the Autonomous Database scheduled to upgrade to 23ai.
26414
+ """
26415
+ return pulumi.get(self, "time_scheduled_db_version_upgrade")
26416
+
26276
26417
  @_builtins.property
26277
26418
  @pulumi.getter(name="timeUndeleted")
26278
26419
  def time_undeleted(self) -> _builtins.str:
@@ -26327,7 +26468,7 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
26327
26468
  @pulumi.getter(name="vaultId")
26328
26469
  def vault_id(self) -> _builtins.str:
26329
26470
  """
26330
- 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).
26471
+ 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.
26331
26472
  """
26332
26473
  return pulumi.get(self, "vault_id")
26333
26474
 
@@ -26487,9 +26628,10 @@ class GetAutonomousDatabasesAutonomousDatabaseConnectionStringProfileResult(dict
26487
26628
  :param _builtins.str consumer_group: Consumer group used by the connection.
26488
26629
  :param _builtins.str display_name: A filter to return only resources that match the entire display name given. The match is not case sensitive.
26489
26630
  :param _builtins.str host_format: Host format used in connection string.
26631
+ :param _builtins.bool is_regional: True for a regional connection string, applicable to cross-region DG only.
26490
26632
  :param _builtins.str protocol: Protocol used by the connection.
26491
26633
  :param _builtins.str session_mode: Specifies whether the listener performs a direct hand-off of the session, or redirects the session. In RAC deployments where SCAN is used, sessions are redirected to a Node VIP. Use `DIRECT` for direct hand-offs. Use `REDIRECT` to redirect the session.
26492
- :param _builtins.str syntax_format: Specifies whether the connection string is using the long (`LONG`), Easy Connect (`EZCONNECT`), or Easy Connect Plus (`EZCONNECTPLUS`) format. Autonomous Databases on shared Exadata infrastructure always use the long format.
26634
+ :param _builtins.str syntax_format: Specifies whether the connection string is using the long (`LONG`), Easy Connect (`EZCONNECT`), or Easy Connect Plus (`EZCONNECTPLUS`) format. Autonomous Database Serverless instances always use the long format.
26493
26635
  :param _builtins.str tls_authentication: Specifies whether the TLS handshake is using one-way (`SERVER`) or mutual (`MUTUAL`) authentication.
26494
26636
  :param _builtins.str value: Connection string value.
26495
26637
  """
@@ -26530,6 +26672,9 @@ class GetAutonomousDatabasesAutonomousDatabaseConnectionStringProfileResult(dict
26530
26672
  @_builtins.property
26531
26673
  @pulumi.getter(name="isRegional")
26532
26674
  def is_regional(self) -> _builtins.bool:
26675
+ """
26676
+ True for a regional connection string, applicable to cross-region DG only.
26677
+ """
26533
26678
  return pulumi.get(self, "is_regional")
26534
26679
 
26535
26680
  @_builtins.property
@@ -26552,7 +26697,7 @@ class GetAutonomousDatabasesAutonomousDatabaseConnectionStringProfileResult(dict
26552
26697
  @pulumi.getter(name="syntaxFormat")
26553
26698
  def syntax_format(self) -> _builtins.str:
26554
26699
  """
26555
- Specifies whether the connection string is using the long (`LONG`), Easy Connect (`EZCONNECT`), or Easy Connect Plus (`EZCONNECTPLUS`) format. Autonomous Databases on shared Exadata infrastructure always use the long format.
26700
+ Specifies whether the connection string is using the long (`LONG`), Easy Connect (`EZCONNECT`), or Easy Connect Plus (`EZCONNECTPLUS`) format. Autonomous Database Serverless instances always use the long format.
26556
26701
  """
26557
26702
  return pulumi.get(self, "syntax_format")
26558
26703
 
@@ -26767,7 +26912,7 @@ class GetAutonomousDatabasesAutonomousDatabaseEncryptionKeyResult(dict):
26767
26912
  :param _builtins.str okv_kms_key: UUID of OKV KMS Key
26768
26913
  :param _builtins.str okv_uri: URI of OKV server
26769
26914
  :param _builtins.str service_endpoint_uri: AWS key service endpoint URI
26770
- :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).
26915
+ :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.
26771
26916
  :param _builtins.str vault_uri: Azure vault URI
26772
26917
  """
26773
26918
  pulumi.set(__self__, "arn_role", arn_role)
@@ -26885,7 +27030,7 @@ class GetAutonomousDatabasesAutonomousDatabaseEncryptionKeyResult(dict):
26885
27030
  @pulumi.getter(name="vaultId")
26886
27031
  def vault_id(self) -> _builtins.str:
26887
27032
  """
26888
- 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).
27033
+ 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.
26889
27034
  """
26890
27035
  return pulumi.get(self, "vault_id")
26891
27036
 
@@ -26957,7 +27102,7 @@ class GetAutonomousDatabasesAutonomousDatabaseEncryptionKeyHistoryEntryEncryptio
26957
27102
  :param _builtins.str okv_kms_key: UUID of OKV KMS Key
26958
27103
  :param _builtins.str okv_uri: URI of OKV server
26959
27104
  :param _builtins.str service_endpoint_uri: AWS key service endpoint URI
26960
- :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).
27105
+ :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.
26961
27106
  :param _builtins.str vault_uri: Azure vault URI
26962
27107
  """
26963
27108
  pulumi.set(__self__, "arn_role", arn_role)
@@ -27075,7 +27220,7 @@ class GetAutonomousDatabasesAutonomousDatabaseEncryptionKeyHistoryEntryEncryptio
27075
27220
  @pulumi.getter(name="vaultId")
27076
27221
  def vault_id(self) -> _builtins.str:
27077
27222
  """
27078
- 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).
27223
+ 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.
27079
27224
  """
27080
27225
  return pulumi.get(self, "vault_id")
27081
27226
 
@@ -27097,9 +27242,9 @@ class GetAutonomousDatabasesAutonomousDatabaseKeyHistoryEntryResult(dict):
27097
27242
  vault_id: _builtins.str):
27098
27243
  """
27099
27244
  :param _builtins.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.
27100
- :param _builtins.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.
27245
+ :param _builtins.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.
27101
27246
  :param _builtins.str time_activated: The date and time the kms key activated.
27102
- :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).
27247
+ :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.
27103
27248
  """
27104
27249
  pulumi.set(__self__, "id", id)
27105
27250
  pulumi.set(__self__, "kms_key_version_id", kms_key_version_id)
@@ -27118,7 +27263,7 @@ class GetAutonomousDatabasesAutonomousDatabaseKeyHistoryEntryResult(dict):
27118
27263
  @pulumi.getter(name="kmsKeyVersionId")
27119
27264
  def kms_key_version_id(self) -> _builtins.str:
27120
27265
  """
27121
- 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.
27266
+ 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.
27122
27267
  """
27123
27268
  return pulumi.get(self, "kms_key_version_id")
27124
27269
 
@@ -27134,7 +27279,7 @@ class GetAutonomousDatabasesAutonomousDatabaseKeyHistoryEntryResult(dict):
27134
27279
  @pulumi.getter(name="vaultId")
27135
27280
  def vault_id(self) -> _builtins.str:
27136
27281
  """
27137
- 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).
27282
+ 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.
27138
27283
  """
27139
27284
  return pulumi.get(self, "vault_id")
27140
27285
 
@@ -27745,6 +27890,8 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseResult(dict):
27745
27890
  time_data_guard_role_changed: _builtins.str,
27746
27891
  time_deletion_of_free_autonomous_database: _builtins.str,
27747
27892
  time_disaster_recovery_role_changed: _builtins.str,
27893
+ time_earliest_available_db_version_upgrade: _builtins.str,
27894
+ time_latest_available_db_version_upgrade: _builtins.str,
27748
27895
  time_local_data_guard_enabled: _builtins.str,
27749
27896
  time_maintenance_begin: _builtins.str,
27750
27897
  time_maintenance_end: _builtins.str,
@@ -27756,6 +27903,7 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseResult(dict):
27756
27903
  time_of_last_switchover: _builtins.str,
27757
27904
  time_of_next_refresh: _builtins.str,
27758
27905
  time_reclamation_of_free_autonomous_database: _builtins.str,
27906
+ time_scheduled_db_version_upgrade: _builtins.str,
27759
27907
  time_undeleted: _builtins.str,
27760
27908
  time_until_reconnect_clone_enabled: _builtins.str,
27761
27909
  total_backup_storage_size_in_gbs: _builtins.float,
@@ -27770,11 +27918,13 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseResult(dict):
27770
27918
  :param _builtins.bool are_primary_whitelisted_ips_used: This field will be null if the Autonomous Database is not Data Guard enabled or Access Control is disabled. It's value would be `TRUE` if Autonomous Database is Data Guard enabled and Access Control is enabled and if the Autonomous Database uses primary IP access control list (ACL) for standby. It's value would be `FALSE` if Autonomous Database is Data Guard enabled and Access Control is enabled and if the Autonomous Database uses different IP access control list (ACL) for standby compared to primary.
27771
27919
  :param _builtins.int auto_refresh_frequency_in_seconds: The frequency a refreshable clone is refreshed after auto-refresh is enabled. The minimum is 1 hour. The maximum is 7 days. The date and time that auto-refresh is enabled is controlled by the `timeOfAutoRefreshStart` parameter.
27772
27920
  :param _builtins.int auto_refresh_point_lag_in_seconds: The time, in seconds, the data of the refreshable clone lags the primary database at the point of refresh. The minimum is 0 minutes (0 mins means refresh to the latest available timestamp). The maximum is 7 days. The lag time increases after refreshing until the next data refresh happens.
27773
- :param _builtins.str autonomous_container_database_id: The Autonomous Container Database [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
27774
- :param _builtins.str autonomous_maintenance_schedule_type: The maintenance schedule type of the Autonomous Database Serverless. An EARLY maintenance schedule follows a schedule applying patches prior to the REGULAR schedule. A REGULAR maintenance schedule follows the normal cycle* `availability_domain` - The availability domain where the Autonomous Database Serverless instance is located.
27921
+ :param _builtins.str autonomous_container_database_id: The Autonomous Container Database [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). Used only by Autonomous Database on Dedicated Exadata Infrastructure.
27922
+ :param _builtins.str autonomous_maintenance_schedule_type: The maintenance schedule type of the Autonomous Database Serverless. An EARLY maintenance schedule follows a schedule applying patches prior to the REGULAR schedule. A REGULAR maintenance schedule follows the normal cycle
27923
+ :param _builtins.str availability_domain: The availability domain of a local Autonomous Data Guard standby database of an Autonomous Database Serverless instance.
27775
27924
  :param Sequence[_builtins.str] available_upgrade_versions: List of Oracle Database versions available for a database upgrade. If there are no version upgrades available, this list is empty.
27776
27925
  :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.
27777
- :param _builtins.int backup_retention_period_in_days: Retention period, in days, for backups.
27926
+ :param _builtins.int backup_retention_period_in_days: Retention period, in days, for long-term backups
27927
+ :param _builtins.float byol_compute_count_limit: The maximum number of CPUs allowed with a Bring Your Own License (BYOL), including those used for auto-scaling, disaster recovery, tools, etc. Any CPU usage above this limit is considered as License Included and billed.
27778
27928
  :param _builtins.str character_set: The character set for the autonomous database. The default is AL32UTF8. Allowed values are:
27779
27929
  :param Sequence[_builtins.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.
27780
27930
  :param _builtins.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.
@@ -27816,7 +27966,7 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseResult(dict):
27816
27966
  :param _builtins.bool is_backup_retention_locked: Indicates if the Autonomous Database is backup retention locked.
27817
27967
  :param _builtins.bool is_data_guard_enabled: **Deprecated.** Indicates whether the Autonomous Database has local (in-region) Data Guard enabled. Not applicable to cross-region Autonomous Data Guard associations, or to Autonomous Databases using dedicated Exadata infrastructure or Exadata Cloud@Customer infrastructure.
27818
27968
  :param _builtins.bool is_dedicated: True if the database uses [dedicated Exadata infrastructure](https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html).
27819
- :param _builtins.bool is_dev_tier: Autonomous Database for Developers are free Autonomous Databases that developers can use to build and test new applications.With Autonomous these database instancess instances, you can try new Autonomous Database features for free and apply them to ongoing or new development projects. Developer database comes with limited resources and is, therefore, not suitable for large-scale testing and production deployments. When you need more compute or storage resources, you can transition to a paid database licensing by cloning your developer database into a regular Autonomous Database. See [Autonomous Database documentation](https://docs.oracle.com/en/cloud/paas/autonomous-database/dedicated/eddjo/index.html) for more details.
27969
+ :param _builtins.bool is_dev_tier: Autonomous Database for Developers are fixed-shape Autonomous Databases that developers can use to build and test new applications. On Serverless, these are low-cost and billed per instance, on Dedicated and Cloud@Customer there is no additional cost to create Developer databases. Developer databases come with limited resources and is not intended for large-scale testing and production deployments. When you need more compute or storage resources, you may upgrade to a full paid production database.
27820
27970
  :param _builtins.bool is_free_tier: Indicates if this is an Always Free resource. The default value is false. Note that Always Free Autonomous Databases have 1 CPU and 20GB of memory. For Always Free databases, memory and CPU cannot be scaled.
27821
27971
  :param _builtins.bool is_local_data_guard_enabled: Indicates whether the Autonomous Database has local (in-region) Data Guard enabled. Not applicable to cross-region Autonomous Data Guard associations, or to Autonomous Databases using dedicated Exadata infrastructure or Exadata Cloud@Customer infrastructure.
27822
27972
  :param _builtins.bool is_mtls_connection_required: Specifies if the Autonomous Database requires mTLS connections.
@@ -27829,16 +27979,15 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseResult(dict):
27829
27979
  :param _builtins.str key_store_wallet_name: The wallet name for Oracle Key Vault.
27830
27980
  :param _builtins.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.
27831
27981
  :param _builtins.str kms_key_lifecycle_details: KMS key lifecycle details.
27832
- :param _builtins.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.
27982
+ :param _builtins.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.
27833
27983
  :param _builtins.str license_model: The Oracle license model that applies to the Oracle Autonomous Database. Bring your own license (BYOL) allows you to apply your current on-premises Oracle software licenses to equivalent, highly automated Oracle services in the cloud. License Included allows you to subscribe to new Oracle Database software licenses and the Oracle Database service. Note that when provisioning an [Autonomous Database on dedicated Exadata infrastructure](https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html), this attribute must be null. It is already set at the Autonomous Exadata Infrastructure level. When provisioning an [Autonomous Database Serverless] (https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html) database, if a value is not specified, the system defaults the value to `BRING_YOUR_OWN_LICENSE`. Bring your own license (BYOL) also allows you to select the DB edition using the optional parameter.
27834
27984
  :param _builtins.str lifecycle_details: Additional information about the current lifecycle state.
27835
27985
  :param _builtins.int local_adg_auto_failover_max_data_loss_limit: Parameter that allows users to select an acceptable maximum data loss limit in seconds, up to which Automatic Failover will be triggered when necessary for a Local Autonomous Data Guard
27836
27986
  :param _builtins.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.
27837
- :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.
27987
+ :param Sequence['GetAutonomousDatabasesClonesAutonomousDatabaseLocalStandbyDbArgs'] local_standby_dbs: Autonomous Data Guard standby database details.
27838
27988
  :param Sequence['GetAutonomousDatabasesClonesAutonomousDatabaseLongTermBackupScheduleArgs'] long_term_backup_schedules: Details for the long-term backup schedule.
27839
27989
  :param _builtins.str maintenance_target_component: The component chosen for maintenance.
27840
- :param _builtins.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.
27841
- :param _builtins.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.
27990
+ :param _builtins.int memory_per_oracle_compute_unit_in_gbs: The amount of memory (in GBs) enabled per ECPU or OCPU.
27842
27991
  :param _builtins.str ncharacter_set: The national character set for the autonomous database. The default is AL16UTF16. Allowed values are: AL16UTF16 or UTF8.
27843
27992
  :param _builtins.str net_services_architecture: Enabling SHARED server architecture enables a database server to allow many client processes to share very few server processes, thereby increasing the number of supported users.
27844
27993
  :param _builtins.str next_long_term_backup_time_stamp: The date and time when the next long-term backup would be created.
@@ -27866,7 +28015,7 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseResult(dict):
27866
28015
  :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"}}}`
27867
28016
  :param _builtins.str service_console_url: The URL of the Service Console for the Autonomous Database.
27868
28017
  :param _builtins.str source_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the source Autonomous Database that was cloned to create the current Autonomous Database.
27869
- :param Sequence['GetAutonomousDatabasesClonesAutonomousDatabaseStandbyDbArgs'] standby_dbs: **Deprecated** 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.
28018
+ :param Sequence['GetAutonomousDatabasesClonesAutonomousDatabaseStandbyDbArgs'] standby_dbs: **Deprecated** Autonomous Data Guard standby database details.
27870
28019
  :param Sequence[_builtins.str] standby_whitelisted_ips: The client IP access control list (ACL). This feature is available for [Autonomous Database Serverless] (https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html) and on Exadata Cloud@Customer. Only clients connecting from an IP address included in the ACL may access the Autonomous Database instance. If `arePrimaryWhitelistedIpsUsed` is 'TRUE' then Autonomous Database uses this primary's IP access control list (ACL) for the disaster recovery peer called `standbywhitelistedips`.
27871
28020
  :param _builtins.str state: A filter to return only resources that match the given lifecycle state exactly.
27872
28021
  :param _builtins.str subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet the resource is associated with.
@@ -27877,22 +28026,26 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseResult(dict):
27877
28026
  :param _builtins.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.
27878
28027
  :param _builtins.str time_deletion_of_free_autonomous_database: The date and time the Always Free database will be automatically deleted because of inactivity. If the database is in the STOPPED state and without activity until this time, it will be deleted.
27879
28028
  :param _builtins.str time_disaster_recovery_role_changed: The date and time the Disaster Recovery role was switched for the standby Autonomous Database.
28029
+ :param _builtins.str time_earliest_available_db_version_upgrade: The earliest(min) date and time the Autonomous Database can be scheduled to upgrade to 23ai.
28030
+ :param _builtins.str time_latest_available_db_version_upgrade: The max date and time the Autonomous Database can be scheduled to upgrade to 23ai.
27880
28031
  :param _builtins.str time_local_data_guard_enabled: The date and time that Autonomous Data Guard was enabled for an Autonomous Database where the standby was provisioned in the same region as the primary database.
27881
28032
  :param _builtins.str time_maintenance_begin: The date and time when maintenance will begin.
27882
28033
  :param _builtins.str time_maintenance_end: The date and time when maintenance will end.
27883
28034
  :param _builtins.str time_of_auto_refresh_start: The the date and time that auto-refreshing will begin for an Autonomous Database refreshable clone. This value controls only the start time for the first refresh operation. Subsequent (ongoing) refresh operations have start times controlled by the value of the `autoRefreshFrequencyInSeconds` parameter.
28035
+ :param _builtins.str time_of_joining_resource_pool: The time the member joined the resource pool.
27884
28036
  :param _builtins.str time_of_last_failover: The timestamp of the last failover operation.
27885
28037
  :param _builtins.str time_of_last_refresh: The date and time when last refresh happened.
27886
28038
  :param _builtins.str time_of_last_refresh_point: The refresh point timestamp (UTC). The refresh point is the time to which the database was most recently refreshed. Data created after the refresh point is not included in the refresh.
27887
28039
  :param _builtins.str time_of_last_switchover: The timestamp of the last switchover operation for the Autonomous Database.
27888
28040
  :param _builtins.str time_of_next_refresh: The date and time of next refresh.
27889
28041
  :param _builtins.str time_reclamation_of_free_autonomous_database: The date and time the Always Free database will be stopped because of inactivity. If this time is reached without any database activity, the database will automatically be put into the STOPPED state.
28042
+ :param _builtins.str time_scheduled_db_version_upgrade: The date and time the Autonomous Database scheduled to upgrade to 23ai.
27890
28043
  :param _builtins.str time_undeleted: The date and time the Autonomous Database was most recently undeleted.
27891
28044
  :param _builtins.str time_until_reconnect_clone_enabled: The time and date as an RFC3339 formatted string, e.g., 2022-01-01T12:00:00.000Z, to set the limit for a refreshable clone to be reconnected to its source database.
27892
28045
  :param _builtins.float total_backup_storage_size_in_gbs: The backup storage to the database.
27893
28046
  :param _builtins.int used_data_storage_size_in_gbs: The storage space consumed by Autonomous Database in GBs.
27894
28047
  :param _builtins.int used_data_storage_size_in_tbs: The amount of storage that has been used for Autonomous Databases in dedicated infrastructure, in terabytes.
27895
- :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).
28048
+ :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.
27896
28049
  :param Sequence[_builtins.str] whitelisted_ips: The client IP access control list (ACL). This feature is available for [Autonomous Database Serverless] (https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html) and on Exadata Cloud@Customer. Only clients connecting from an IP address included in the ACL may access the Autonomous Database instance. If `arePrimaryWhitelistedIpsUsed` is 'TRUE' then Autonomous Database uses this primary's IP access control list (ACL) for the disaster recovery peer called `standbywhitelistedips`.
27897
28050
  """
27898
28051
  pulumi.set(__self__, "actual_used_data_storage_size_in_tbs", actual_used_data_storage_size_in_tbs)
@@ -28002,6 +28155,8 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseResult(dict):
28002
28155
  pulumi.set(__self__, "time_data_guard_role_changed", time_data_guard_role_changed)
28003
28156
  pulumi.set(__self__, "time_deletion_of_free_autonomous_database", time_deletion_of_free_autonomous_database)
28004
28157
  pulumi.set(__self__, "time_disaster_recovery_role_changed", time_disaster_recovery_role_changed)
28158
+ pulumi.set(__self__, "time_earliest_available_db_version_upgrade", time_earliest_available_db_version_upgrade)
28159
+ pulumi.set(__self__, "time_latest_available_db_version_upgrade", time_latest_available_db_version_upgrade)
28005
28160
  pulumi.set(__self__, "time_local_data_guard_enabled", time_local_data_guard_enabled)
28006
28161
  pulumi.set(__self__, "time_maintenance_begin", time_maintenance_begin)
28007
28162
  pulumi.set(__self__, "time_maintenance_end", time_maintenance_end)
@@ -28013,6 +28168,7 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseResult(dict):
28013
28168
  pulumi.set(__self__, "time_of_last_switchover", time_of_last_switchover)
28014
28169
  pulumi.set(__self__, "time_of_next_refresh", time_of_next_refresh)
28015
28170
  pulumi.set(__self__, "time_reclamation_of_free_autonomous_database", time_reclamation_of_free_autonomous_database)
28171
+ pulumi.set(__self__, "time_scheduled_db_version_upgrade", time_scheduled_db_version_upgrade)
28016
28172
  pulumi.set(__self__, "time_undeleted", time_undeleted)
28017
28173
  pulumi.set(__self__, "time_until_reconnect_clone_enabled", time_until_reconnect_clone_enabled)
28018
28174
  pulumi.set(__self__, "total_backup_storage_size_in_gbs", total_backup_storage_size_in_gbs)
@@ -28073,7 +28229,7 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseResult(dict):
28073
28229
  @pulumi.getter(name="autonomousContainerDatabaseId")
28074
28230
  def autonomous_container_database_id(self) -> _builtins.str:
28075
28231
  """
28076
- The Autonomous Container Database [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
28232
+ The Autonomous Container Database [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). Used only by Autonomous Database on Dedicated Exadata Infrastructure.
28077
28233
  """
28078
28234
  return pulumi.get(self, "autonomous_container_database_id")
28079
28235
 
@@ -28081,13 +28237,16 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseResult(dict):
28081
28237
  @pulumi.getter(name="autonomousMaintenanceScheduleType")
28082
28238
  def autonomous_maintenance_schedule_type(self) -> _builtins.str:
28083
28239
  """
28084
- The maintenance schedule type of the Autonomous Database Serverless. An EARLY maintenance schedule follows a schedule applying patches prior to the REGULAR schedule. A REGULAR maintenance schedule follows the normal cycle* `availability_domain` - The availability domain where the Autonomous Database Serverless instance is located.
28240
+ The maintenance schedule type of the Autonomous Database Serverless. An EARLY maintenance schedule follows a schedule applying patches prior to the REGULAR schedule. A REGULAR maintenance schedule follows the normal cycle
28085
28241
  """
28086
28242
  return pulumi.get(self, "autonomous_maintenance_schedule_type")
28087
28243
 
28088
28244
  @_builtins.property
28089
28245
  @pulumi.getter(name="availabilityDomain")
28090
28246
  def availability_domain(self) -> _builtins.str:
28247
+ """
28248
+ The availability domain of a local Autonomous Data Guard standby database of an Autonomous Database Serverless instance.
28249
+ """
28091
28250
  return pulumi.get(self, "availability_domain")
28092
28251
 
28093
28252
  @_builtins.property
@@ -28110,13 +28269,16 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseResult(dict):
28110
28269
  @pulumi.getter(name="backupRetentionPeriodInDays")
28111
28270
  def backup_retention_period_in_days(self) -> _builtins.int:
28112
28271
  """
28113
- Retention period, in days, for backups.
28272
+ Retention period, in days, for long-term backups
28114
28273
  """
28115
28274
  return pulumi.get(self, "backup_retention_period_in_days")
28116
28275
 
28117
28276
  @_builtins.property
28118
28277
  @pulumi.getter(name="byolComputeCountLimit")
28119
28278
  def byol_compute_count_limit(self) -> _builtins.float:
28279
+ """
28280
+ The maximum number of CPUs allowed with a Bring Your Own License (BYOL), including those used for auto-scaling, disaster recovery, tools, etc. Any CPU usage above this limit is considered as License Included and billed.
28281
+ """
28120
28282
  return pulumi.get(self, "byol_compute_count_limit")
28121
28283
 
28122
28284
  @_builtins.property
@@ -28423,7 +28585,7 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseResult(dict):
28423
28585
  @pulumi.getter(name="isDevTier")
28424
28586
  def is_dev_tier(self) -> _builtins.bool:
28425
28587
  """
28426
- Autonomous Database for Developers are free Autonomous Databases that developers can use to build and test new applications.With Autonomous these database instancess instances, you can try new Autonomous Database features for free and apply them to ongoing or new development projects. Developer database comes with limited resources and is, therefore, not suitable for large-scale testing and production deployments. When you need more compute or storage resources, you can transition to a paid database licensing by cloning your developer database into a regular Autonomous Database. See [Autonomous Database documentation](https://docs.oracle.com/en/cloud/paas/autonomous-database/dedicated/eddjo/index.html) for more details.
28588
+ Autonomous Database for Developers are fixed-shape Autonomous Databases that developers can use to build and test new applications. On Serverless, these are low-cost and billed per instance, on Dedicated and Cloud@Customer there is no additional cost to create Developer databases. Developer databases come with limited resources and is not intended for large-scale testing and production deployments. When you need more compute or storage resources, you may upgrade to a full paid production database.
28427
28589
  """
28428
28590
  return pulumi.get(self, "is_dev_tier")
28429
28591
 
@@ -28527,7 +28689,7 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseResult(dict):
28527
28689
  @pulumi.getter(name="kmsKeyVersionId")
28528
28690
  def kms_key_version_id(self) -> _builtins.str:
28529
28691
  """
28530
- 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.
28692
+ 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.
28531
28693
  """
28532
28694
  return pulumi.get(self, "kms_key_version_id")
28533
28695
 
@@ -28567,7 +28729,7 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseResult(dict):
28567
28729
  @pulumi.getter(name="localStandbyDbs")
28568
28730
  def local_standby_dbs(self) -> Sequence['outputs.GetAutonomousDatabasesClonesAutonomousDatabaseLocalStandbyDbResult']:
28569
28731
  """
28570
- 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.
28732
+ Autonomous Data Guard standby database details.
28571
28733
  """
28572
28734
  return pulumi.get(self, "local_standby_dbs")
28573
28735
 
@@ -28590,16 +28752,13 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseResult(dict):
28590
28752
  @_builtins.property
28591
28753
  @pulumi.getter(name="maxCpuCoreCount")
28592
28754
  def max_cpu_core_count(self) -> _builtins.int:
28593
- """
28594
- The number of Max OCPU cores to be made available to the autonomous database with auto scaling of cpu enabled.
28595
- """
28596
28755
  return pulumi.get(self, "max_cpu_core_count")
28597
28756
 
28598
28757
  @_builtins.property
28599
28758
  @pulumi.getter(name="memoryPerOracleComputeUnitInGbs")
28600
28759
  def memory_per_oracle_compute_unit_in_gbs(self) -> _builtins.int:
28601
28760
  """
28602
- 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.
28761
+ The amount of memory (in GBs) enabled per ECPU or OCPU.
28603
28762
  """
28604
28763
  return pulumi.get(self, "memory_per_oracle_compute_unit_in_gbs")
28605
28764
 
@@ -28795,7 +28954,7 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseResult(dict):
28795
28954
  @pulumi.getter(name="standbyDbs")
28796
28955
  def standby_dbs(self) -> Sequence['outputs.GetAutonomousDatabasesClonesAutonomousDatabaseStandbyDbResult']:
28797
28956
  """
28798
- **Deprecated** 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.
28957
+ **Deprecated** Autonomous Data Guard standby database details.
28799
28958
  """
28800
28959
  return pulumi.get(self, "standby_dbs")
28801
28960
 
@@ -28879,6 +29038,22 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseResult(dict):
28879
29038
  """
28880
29039
  return pulumi.get(self, "time_disaster_recovery_role_changed")
28881
29040
 
29041
+ @_builtins.property
29042
+ @pulumi.getter(name="timeEarliestAvailableDbVersionUpgrade")
29043
+ def time_earliest_available_db_version_upgrade(self) -> _builtins.str:
29044
+ """
29045
+ The earliest(min) date and time the Autonomous Database can be scheduled to upgrade to 23ai.
29046
+ """
29047
+ return pulumi.get(self, "time_earliest_available_db_version_upgrade")
29048
+
29049
+ @_builtins.property
29050
+ @pulumi.getter(name="timeLatestAvailableDbVersionUpgrade")
29051
+ def time_latest_available_db_version_upgrade(self) -> _builtins.str:
29052
+ """
29053
+ The max date and time the Autonomous Database can be scheduled to upgrade to 23ai.
29054
+ """
29055
+ return pulumi.get(self, "time_latest_available_db_version_upgrade")
29056
+
28882
29057
  @_builtins.property
28883
29058
  @pulumi.getter(name="timeLocalDataGuardEnabled")
28884
29059
  def time_local_data_guard_enabled(self) -> _builtins.str:
@@ -28914,6 +29089,9 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseResult(dict):
28914
29089
  @_builtins.property
28915
29090
  @pulumi.getter(name="timeOfJoiningResourcePool")
28916
29091
  def time_of_joining_resource_pool(self) -> _builtins.str:
29092
+ """
29093
+ The time the member joined the resource pool.
29094
+ """
28917
29095
  return pulumi.get(self, "time_of_joining_resource_pool")
28918
29096
 
28919
29097
  @_builtins.property
@@ -28964,6 +29142,14 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseResult(dict):
28964
29142
  """
28965
29143
  return pulumi.get(self, "time_reclamation_of_free_autonomous_database")
28966
29144
 
29145
+ @_builtins.property
29146
+ @pulumi.getter(name="timeScheduledDbVersionUpgrade")
29147
+ def time_scheduled_db_version_upgrade(self) -> _builtins.str:
29148
+ """
29149
+ The date and time the Autonomous Database scheduled to upgrade to 23ai.
29150
+ """
29151
+ return pulumi.get(self, "time_scheduled_db_version_upgrade")
29152
+
28967
29153
  @_builtins.property
28968
29154
  @pulumi.getter(name="timeUndeleted")
28969
29155
  def time_undeleted(self) -> _builtins.str:
@@ -29008,7 +29194,7 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseResult(dict):
29008
29194
  @pulumi.getter(name="vaultId")
29009
29195
  def vault_id(self) -> _builtins.str:
29010
29196
  """
29011
- 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).
29197
+ 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.
29012
29198
  """
29013
29199
  return pulumi.get(self, "vault_id")
29014
29200
 
@@ -29452,7 +29638,7 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseEncryptionKeyResult(dict):
29452
29638
  :param _builtins.str okv_kms_key: UUID of OKV KMS Key
29453
29639
  :param _builtins.str okv_uri: URI of OKV server
29454
29640
  :param _builtins.str service_endpoint_uri: AWS key service endpoint URI
29455
- :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).
29641
+ :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.
29456
29642
  :param _builtins.str vault_uri: Azure vault URI
29457
29643
  """
29458
29644
  pulumi.set(__self__, "arn_role", arn_role)
@@ -29570,7 +29756,7 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseEncryptionKeyResult(dict):
29570
29756
  @pulumi.getter(name="vaultId")
29571
29757
  def vault_id(self) -> _builtins.str:
29572
29758
  """
29573
- 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).
29759
+ 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.
29574
29760
  """
29575
29761
  return pulumi.get(self, "vault_id")
29576
29762
 
@@ -29642,7 +29828,7 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseEncryptionKeyHistoryEntryEnc
29642
29828
  :param _builtins.str okv_kms_key: UUID of OKV KMS Key
29643
29829
  :param _builtins.str okv_uri: URI of OKV server
29644
29830
  :param _builtins.str service_endpoint_uri: AWS key service endpoint URI
29645
- :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).
29831
+ :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.
29646
29832
  :param _builtins.str vault_uri: Azure vault URI
29647
29833
  """
29648
29834
  pulumi.set(__self__, "arn_role", arn_role)
@@ -29760,7 +29946,7 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseEncryptionKeyHistoryEntryEnc
29760
29946
  @pulumi.getter(name="vaultId")
29761
29947
  def vault_id(self) -> _builtins.str:
29762
29948
  """
29763
- 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).
29949
+ 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.
29764
29950
  """
29765
29951
  return pulumi.get(self, "vault_id")
29766
29952
 
@@ -29782,9 +29968,9 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseKeyHistoryEntryResult(dict):
29782
29968
  vault_id: _builtins.str):
29783
29969
  """
29784
29970
  :param _builtins.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.
29785
- :param _builtins.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.
29971
+ :param _builtins.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.
29786
29972
  :param _builtins.str time_activated: The date and time the kms key activated.
29787
- :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).
29973
+ :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.
29788
29974
  """
29789
29975
  pulumi.set(__self__, "id", id)
29790
29976
  pulumi.set(__self__, "kms_key_version_id", kms_key_version_id)
@@ -29803,7 +29989,7 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseKeyHistoryEntryResult(dict):
29803
29989
  @pulumi.getter(name="kmsKeyVersionId")
29804
29990
  def kms_key_version_id(self) -> _builtins.str:
29805
29991
  """
29806
- 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.
29992
+ 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.
29807
29993
  """
29808
29994
  return pulumi.get(self, "kms_key_version_id")
29809
29995
 
@@ -29819,7 +30005,7 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseKeyHistoryEntryResult(dict):
29819
30005
  @pulumi.getter(name="vaultId")
29820
30006
  def vault_id(self) -> _builtins.str:
29821
30007
  """
29822
- 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).
30008
+ 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.
29823
30009
  """
29824
30010
  return pulumi.get(self, "vault_id")
29825
30011
 
@@ -29837,6 +30023,7 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseLocalStandbyDbResult(dict):
29837
30023
  time_maintenance_begin: _builtins.str,
29838
30024
  time_maintenance_end: _builtins.str):
29839
30025
  """
30026
+ :param _builtins.str availability_domain: The availability domain of a local Autonomous Data Guard standby database of an Autonomous Database Serverless instance.
29840
30027
  :param _builtins.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.
29841
30028
  :param _builtins.str lifecycle_details: Additional information about the current lifecycle state.
29842
30029
  :param _builtins.str maintenance_target_component: The component chosen for maintenance.
@@ -29859,6 +30046,9 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseLocalStandbyDbResult(dict):
29859
30046
  @_builtins.property
29860
30047
  @pulumi.getter(name="availabilityDomain")
29861
30048
  def availability_domain(self) -> _builtins.str:
30049
+ """
30050
+ The availability domain of a local Autonomous Data Guard standby database of an Autonomous Database Serverless instance.
30051
+ """
29862
30052
  return pulumi.get(self, "availability_domain")
29863
30053
 
29864
30054
  @_builtins.property
@@ -30081,6 +30271,7 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseRemoteDisasterRecoveryConfig
30081
30271
  time_snapshot_standby_enabled_till: _builtins.str):
30082
30272
  """
30083
30273
  :param _builtins.str disaster_recovery_type: Indicates the 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.
30274
+ :param _builtins.bool is_replicate_automatic_backups: If true, 7 days worth of backups are replicated across regions for Cross-Region ADB or Backup-Based DR between Primary and Standby. If false, the backups taken on the Primary are not replicated to the Standby database.
30084
30275
  :param _builtins.bool is_snapshot_standby: Indicates if user wants to convert to a snapshot standby. For example, true would set a standby database to snapshot standby database. False would set a snapshot standby database back to regular standby database.
30085
30276
  :param _builtins.str time_snapshot_standby_enabled_till: Time and date stored as an RFC 3339 formatted timestamp string. For example, 2022-01-01T12:00:00.000Z would set a limit for the snapshot standby to be converted back to a cross-region standby database.
30086
30277
  """
@@ -30100,6 +30291,9 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseRemoteDisasterRecoveryConfig
30100
30291
  @_builtins.property
30101
30292
  @pulumi.getter(name="isReplicateAutomaticBackups")
30102
30293
  def is_replicate_automatic_backups(self) -> _builtins.bool:
30294
+ """
30295
+ If true, 7 days worth of backups are replicated across regions for Cross-Region ADB or Backup-Based DR between Primary and Standby. If false, the backups taken on the Primary are not replicated to the Standby database.
30296
+ """
30103
30297
  return pulumi.get(self, "is_replicate_automatic_backups")
30104
30298
 
30105
30299
  @_builtins.property
@@ -30219,6 +30413,7 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseStandbyDbResult(dict):
30219
30413
  time_maintenance_begin: _builtins.str,
30220
30414
  time_maintenance_end: _builtins.str):
30221
30415
  """
30416
+ :param _builtins.str availability_domain: The availability domain of a local Autonomous Data Guard standby database of an Autonomous Database Serverless instance.
30222
30417
  :param _builtins.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.
30223
30418
  :param _builtins.str lifecycle_details: Additional information about the current lifecycle state.
30224
30419
  :param _builtins.str maintenance_target_component: The component chosen for maintenance.
@@ -30241,6 +30436,9 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseStandbyDbResult(dict):
30241
30436
  @_builtins.property
30242
30437
  @pulumi.getter(name="availabilityDomain")
30243
30438
  def availability_domain(self) -> _builtins.str:
30439
+ """
30440
+ The availability domain of a local Autonomous Data Guard standby database of an Autonomous Database Serverless instance.
30441
+ """
30244
30442
  return pulumi.get(self, "availability_domain")
30245
30443
 
30246
30444
  @_builtins.property
@@ -54634,12 +54832,15 @@ class GetGiVersionsGiVersionResult(dict):
54634
54832
  class GetKeyStoreAssociatedDatabaseResult(dict):
54635
54833
  def __init__(__self__, *,
54636
54834
  db_name: _builtins.str,
54835
+ db_unique_name: _builtins.str,
54637
54836
  id: _builtins.str):
54638
54837
  """
54639
54838
  :param _builtins.str db_name: The name of the database that is associated with the key store.
54839
+ :param _builtins.str db_unique_name: The unique name of the database that is associated with the key store.
54640
54840
  :param _builtins.str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the key store.
54641
54841
  """
54642
54842
  pulumi.set(__self__, "db_name", db_name)
54843
+ pulumi.set(__self__, "db_unique_name", db_unique_name)
54643
54844
  pulumi.set(__self__, "id", id)
54644
54845
 
54645
54846
  @_builtins.property
@@ -54650,6 +54851,14 @@ class GetKeyStoreAssociatedDatabaseResult(dict):
54650
54851
  """
54651
54852
  return pulumi.get(self, "db_name")
54652
54853
 
54854
+ @_builtins.property
54855
+ @pulumi.getter(name="dbUniqueName")
54856
+ def db_unique_name(self) -> _builtins.str:
54857
+ """
54858
+ The unique name of the database that is associated with the key store.
54859
+ """
54860
+ return pulumi.get(self, "db_unique_name")
54861
+
54653
54862
  @_builtins.property
54654
54863
  @pulumi.getter
54655
54864
  def id(self) -> _builtins.str:
@@ -54887,12 +55096,15 @@ class GetKeyStoresKeyStoreResult(dict):
54887
55096
  class GetKeyStoresKeyStoreAssociatedDatabaseResult(dict):
54888
55097
  def __init__(__self__, *,
54889
55098
  db_name: _builtins.str,
55099
+ db_unique_name: _builtins.str,
54890
55100
  id: _builtins.str):
54891
55101
  """
54892
55102
  :param _builtins.str db_name: The name of the database that is associated with the key store.
55103
+ :param _builtins.str db_unique_name: The unique name of the database that is associated with the key store.
54893
55104
  :param _builtins.str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the key store.
54894
55105
  """
54895
55106
  pulumi.set(__self__, "db_name", db_name)
55107
+ pulumi.set(__self__, "db_unique_name", db_unique_name)
54896
55108
  pulumi.set(__self__, "id", id)
54897
55109
 
54898
55110
  @_builtins.property
@@ -54903,6 +55115,14 @@ class GetKeyStoresKeyStoreAssociatedDatabaseResult(dict):
54903
55115
  """
54904
55116
  return pulumi.get(self, "db_name")
54905
55117
 
55118
+ @_builtins.property
55119
+ @pulumi.getter(name="dbUniqueName")
55120
+ def db_unique_name(self) -> _builtins.str:
55121
+ """
55122
+ The unique name of the database that is associated with the key store.
55123
+ """
55124
+ return pulumi.get(self, "db_unique_name")
55125
+
54906
55126
  @_builtins.property
54907
55127
  @pulumi.getter
54908
55128
  def id(self) -> _builtins.str:
@@ -55891,7 +56111,8 @@ class GetPluggableDatabasePdbCreationTypeDetailResult(dict):
55891
56111
  is_thin_clone: _builtins.bool,
55892
56112
  refreshable_clone_details: Sequence['outputs.GetPluggableDatabasePdbCreationTypeDetailRefreshableCloneDetailResult'],
55893
56113
  source_container_database_admin_password: _builtins.str,
55894
- source_pluggable_database_id: _builtins.str):
56114
+ source_pluggable_database_id: _builtins.str,
56115
+ source_pluggable_database_snapshot_id: _builtins.str):
55895
56116
  pulumi.set(__self__, "creation_type", creation_type)
55896
56117
  pulumi.set(__self__, "dblink_user_password", dblink_user_password)
55897
56118
  pulumi.set(__self__, "dblink_username", dblink_username)
@@ -55899,6 +56120,7 @@ class GetPluggableDatabasePdbCreationTypeDetailResult(dict):
55899
56120
  pulumi.set(__self__, "refreshable_clone_details", refreshable_clone_details)
55900
56121
  pulumi.set(__self__, "source_container_database_admin_password", source_container_database_admin_password)
55901
56122
  pulumi.set(__self__, "source_pluggable_database_id", source_pluggable_database_id)
56123
+ pulumi.set(__self__, "source_pluggable_database_snapshot_id", source_pluggable_database_snapshot_id)
55902
56124
 
55903
56125
  @_builtins.property
55904
56126
  @pulumi.getter(name="creationType")
@@ -55935,6 +56157,11 @@ class GetPluggableDatabasePdbCreationTypeDetailResult(dict):
55935
56157
  def source_pluggable_database_id(self) -> _builtins.str:
55936
56158
  return pulumi.get(self, "source_pluggable_database_id")
55937
56159
 
56160
+ @_builtins.property
56161
+ @pulumi.getter(name="sourcePluggableDatabaseSnapshotId")
56162
+ def source_pluggable_database_snapshot_id(self) -> _builtins.str:
56163
+ return pulumi.get(self, "source_pluggable_database_snapshot_id")
56164
+
55938
56165
 
55939
56166
  @pulumi.output_type
55940
56167
  class GetPluggableDatabasePdbCreationTypeDetailRefreshableCloneDetailResult(dict):
@@ -56019,6 +56246,167 @@ class GetPluggableDatabaseRefreshableCloneConfigResult(dict):
56019
56246
  return pulumi.get(self, "is_refreshable_clone")
56020
56247
 
56021
56248
 
56249
+ @pulumi.output_type
56250
+ class GetPluggableDatabaseSnapshotsFilterResult(dict):
56251
+ def __init__(__self__, *,
56252
+ name: _builtins.str,
56253
+ values: Sequence[_builtins.str],
56254
+ regex: Optional[_builtins.bool] = None):
56255
+ """
56256
+ :param _builtins.str name: A filter to return only resources that match the entire name given. The match is not case sensitive.
56257
+ """
56258
+ pulumi.set(__self__, "name", name)
56259
+ pulumi.set(__self__, "values", values)
56260
+ if regex is not None:
56261
+ pulumi.set(__self__, "regex", regex)
56262
+
56263
+ @_builtins.property
56264
+ @pulumi.getter
56265
+ def name(self) -> _builtins.str:
56266
+ """
56267
+ A filter to return only resources that match the entire name given. The match is not case sensitive.
56268
+ """
56269
+ return pulumi.get(self, "name")
56270
+
56271
+ @_builtins.property
56272
+ @pulumi.getter
56273
+ def values(self) -> Sequence[_builtins.str]:
56274
+ return pulumi.get(self, "values")
56275
+
56276
+ @_builtins.property
56277
+ @pulumi.getter
56278
+ def regex(self) -> Optional[_builtins.bool]:
56279
+ return pulumi.get(self, "regex")
56280
+
56281
+
56282
+ @pulumi.output_type
56283
+ class GetPluggableDatabaseSnapshotsPluggableDatabaseSnapshotResult(dict):
56284
+ def __init__(__self__, *,
56285
+ cluster_id: _builtins.str,
56286
+ compartment_id: _builtins.str,
56287
+ defined_tags: Mapping[str, _builtins.str],
56288
+ freeform_tags: Mapping[str, _builtins.str],
56289
+ id: _builtins.str,
56290
+ lifecycle_details: _builtins.str,
56291
+ name: _builtins.str,
56292
+ pluggable_database_id: _builtins.str,
56293
+ state: _builtins.str,
56294
+ system_tags: Mapping[str, _builtins.str],
56295
+ time_created: _builtins.str):
56296
+ """
56297
+ :param _builtins.str cluster_id: A filter to return only Exadata Database Node Snapshots that match the given VM cluster.
56298
+ :param _builtins.str compartment_id: The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
56299
+ :param Mapping[str, _builtins.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).
56300
+ :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"}`
56301
+ :param _builtins.str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Exadata Pluggable Database Snapshot.
56302
+ :param _builtins.str lifecycle_details: Additional information about the current lifecycle state of the Exadata Pluggable Database Snapshot.
56303
+ :param _builtins.str name: A filter to return only resources that match the entire name given. The match is not case sensitive.
56304
+ :param _builtins.str pluggable_database_id: A filter to return only Exadata Pluggable Database Snapshots that match the given database [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
56305
+ :param _builtins.str state: A filter to return only Exadata Pluggable Database Snapshots that match the given lifecycle state exactly.
56306
+ :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).
56307
+ :param _builtins.str time_created: The date and time that the Exadata Pluggable Database Snapshot was created, as expressed in RFC 3339 format. For example: 2023-06-27T21:10:29Z
56308
+ """
56309
+ pulumi.set(__self__, "cluster_id", cluster_id)
56310
+ pulumi.set(__self__, "compartment_id", compartment_id)
56311
+ pulumi.set(__self__, "defined_tags", defined_tags)
56312
+ pulumi.set(__self__, "freeform_tags", freeform_tags)
56313
+ pulumi.set(__self__, "id", id)
56314
+ pulumi.set(__self__, "lifecycle_details", lifecycle_details)
56315
+ pulumi.set(__self__, "name", name)
56316
+ pulumi.set(__self__, "pluggable_database_id", pluggable_database_id)
56317
+ pulumi.set(__self__, "state", state)
56318
+ pulumi.set(__self__, "system_tags", system_tags)
56319
+ pulumi.set(__self__, "time_created", time_created)
56320
+
56321
+ @_builtins.property
56322
+ @pulumi.getter(name="clusterId")
56323
+ def cluster_id(self) -> _builtins.str:
56324
+ """
56325
+ A filter to return only Exadata Database Node Snapshots that match the given VM cluster.
56326
+ """
56327
+ return pulumi.get(self, "cluster_id")
56328
+
56329
+ @_builtins.property
56330
+ @pulumi.getter(name="compartmentId")
56331
+ def compartment_id(self) -> _builtins.str:
56332
+ """
56333
+ The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
56334
+ """
56335
+ return pulumi.get(self, "compartment_id")
56336
+
56337
+ @_builtins.property
56338
+ @pulumi.getter(name="definedTags")
56339
+ def defined_tags(self) -> Mapping[str, _builtins.str]:
56340
+ """
56341
+ 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).
56342
+ """
56343
+ return pulumi.get(self, "defined_tags")
56344
+
56345
+ @_builtins.property
56346
+ @pulumi.getter(name="freeformTags")
56347
+ def freeform_tags(self) -> Mapping[str, _builtins.str]:
56348
+ """
56349
+ 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"}`
56350
+ """
56351
+ return pulumi.get(self, "freeform_tags")
56352
+
56353
+ @_builtins.property
56354
+ @pulumi.getter
56355
+ def id(self) -> _builtins.str:
56356
+ """
56357
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Exadata Pluggable Database Snapshot.
56358
+ """
56359
+ return pulumi.get(self, "id")
56360
+
56361
+ @_builtins.property
56362
+ @pulumi.getter(name="lifecycleDetails")
56363
+ def lifecycle_details(self) -> _builtins.str:
56364
+ """
56365
+ Additional information about the current lifecycle state of the Exadata Pluggable Database Snapshot.
56366
+ """
56367
+ return pulumi.get(self, "lifecycle_details")
56368
+
56369
+ @_builtins.property
56370
+ @pulumi.getter
56371
+ def name(self) -> _builtins.str:
56372
+ """
56373
+ A filter to return only resources that match the entire name given. The match is not case sensitive.
56374
+ """
56375
+ return pulumi.get(self, "name")
56376
+
56377
+ @_builtins.property
56378
+ @pulumi.getter(name="pluggableDatabaseId")
56379
+ def pluggable_database_id(self) -> _builtins.str:
56380
+ """
56381
+ A filter to return only Exadata Pluggable Database Snapshots that match the given database [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
56382
+ """
56383
+ return pulumi.get(self, "pluggable_database_id")
56384
+
56385
+ @_builtins.property
56386
+ @pulumi.getter
56387
+ def state(self) -> _builtins.str:
56388
+ """
56389
+ A filter to return only Exadata Pluggable Database Snapshots that match the given lifecycle state exactly.
56390
+ """
56391
+ return pulumi.get(self, "state")
56392
+
56393
+ @_builtins.property
56394
+ @pulumi.getter(name="systemTags")
56395
+ def system_tags(self) -> Mapping[str, _builtins.str]:
56396
+ """
56397
+ 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).
56398
+ """
56399
+ return pulumi.get(self, "system_tags")
56400
+
56401
+ @_builtins.property
56402
+ @pulumi.getter(name="timeCreated")
56403
+ def time_created(self) -> _builtins.str:
56404
+ """
56405
+ The date and time that the Exadata Pluggable Database Snapshot was created, as expressed in RFC 3339 format. For example: 2023-06-27T21:10:29Z
56406
+ """
56407
+ return pulumi.get(self, "time_created")
56408
+
56409
+
56022
56410
  @pulumi.output_type
56023
56411
  class GetPluggableDatabasesFilterResult(dict):
56024
56412
  def __init__(__self__, *,
@@ -56348,7 +56736,8 @@ class GetPluggableDatabasesPluggableDatabasePdbCreationTypeDetailResult(dict):
56348
56736
  is_thin_clone: _builtins.bool,
56349
56737
  refreshable_clone_details: Sequence['outputs.GetPluggableDatabasesPluggableDatabasePdbCreationTypeDetailRefreshableCloneDetailResult'],
56350
56738
  source_container_database_admin_password: _builtins.str,
56351
- source_pluggable_database_id: _builtins.str):
56739
+ source_pluggable_database_id: _builtins.str,
56740
+ source_pluggable_database_snapshot_id: _builtins.str):
56352
56741
  pulumi.set(__self__, "creation_type", creation_type)
56353
56742
  pulumi.set(__self__, "dblink_user_password", dblink_user_password)
56354
56743
  pulumi.set(__self__, "dblink_username", dblink_username)
@@ -56356,6 +56745,7 @@ class GetPluggableDatabasesPluggableDatabasePdbCreationTypeDetailResult(dict):
56356
56745
  pulumi.set(__self__, "refreshable_clone_details", refreshable_clone_details)
56357
56746
  pulumi.set(__self__, "source_container_database_admin_password", source_container_database_admin_password)
56358
56747
  pulumi.set(__self__, "source_pluggable_database_id", source_pluggable_database_id)
56748
+ pulumi.set(__self__, "source_pluggable_database_snapshot_id", source_pluggable_database_snapshot_id)
56359
56749
 
56360
56750
  @_builtins.property
56361
56751
  @pulumi.getter(name="creationType")
@@ -56392,6 +56782,11 @@ class GetPluggableDatabasesPluggableDatabasePdbCreationTypeDetailResult(dict):
56392
56782
  def source_pluggable_database_id(self) -> _builtins.str:
56393
56783
  return pulumi.get(self, "source_pluggable_database_id")
56394
56784
 
56785
+ @_builtins.property
56786
+ @pulumi.getter(name="sourcePluggableDatabaseSnapshotId")
56787
+ def source_pluggable_database_snapshot_id(self) -> _builtins.str:
56788
+ return pulumi.get(self, "source_pluggable_database_snapshot_id")
56789
+
56395
56790
 
56396
56791
  @pulumi.output_type
56397
56792
  class GetPluggableDatabasesPluggableDatabasePdbCreationTypeDetailRefreshableCloneDetailResult(dict):