pulumi-oci 3.4.0a1755585924__py3-none-any.whl → 3.4.0a1755922408__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.0a1755585924.dist-info → pulumi_oci-3.4.0a1755922408.dist-info}/METADATA +1 -1
  183. {pulumi_oci-3.4.0a1755585924.dist-info → pulumi_oci-3.4.0a1755922408.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.0a1755585924.dist-info → pulumi_oci-3.4.0a1755922408.dist-info}/WHEEL +0 -0
  198. {pulumi_oci-3.4.0a1755585924.dist-info → pulumi_oci-3.4.0a1755922408.dist-info}/top_level.txt +0 -0
@@ -62,6 +62,7 @@ class AutonomousDatabaseArgs:
62
62
  is_data_guard_enabled: Optional[pulumi.Input[_builtins.bool]] = None,
63
63
  is_dedicated: Optional[pulumi.Input[_builtins.bool]] = None,
64
64
  is_dev_tier: Optional[pulumi.Input[_builtins.bool]] = None,
65
+ is_disable_db_version_upgrade_schedule: Optional[pulumi.Input[_builtins.bool]] = None,
65
66
  is_disconnect_peer: Optional[pulumi.Input[_builtins.bool]] = None,
66
67
  is_free_tier: Optional[pulumi.Input[_builtins.bool]] = None,
67
68
  is_local_data_guard_enabled: Optional[pulumi.Input[_builtins.bool]] = None,
@@ -69,6 +70,7 @@ class AutonomousDatabaseArgs:
69
70
  is_preview_version_with_service_terms_accepted: Optional[pulumi.Input[_builtins.bool]] = None,
70
71
  is_refreshable_clone: Optional[pulumi.Input[_builtins.bool]] = None,
71
72
  is_replicate_automatic_backups: Optional[pulumi.Input[_builtins.bool]] = None,
73
+ is_schedule_db_version_upgrade_to_earliest: Optional[pulumi.Input[_builtins.bool]] = None,
72
74
  is_shrink_only: Optional[pulumi.Input[_builtins.bool]] = None,
73
75
  key_version_id: Optional[pulumi.Input[_builtins.str]] = None,
74
76
  kms_key_id: Optional[pulumi.Input[_builtins.str]] = None,
@@ -104,6 +106,7 @@ class AutonomousDatabaseArgs:
104
106
  switchover_to: Optional[pulumi.Input[_builtins.str]] = None,
105
107
  switchover_to_remote_peer_id: Optional[pulumi.Input[_builtins.str]] = None,
106
108
  time_of_auto_refresh_start: Optional[pulumi.Input[_builtins.str]] = None,
109
+ time_scheduled_db_version_upgrade: Optional[pulumi.Input[_builtins.str]] = None,
107
110
  timestamp: Optional[pulumi.Input[_builtins.str]] = None,
108
111
  use_latest_available_backup_time_stamp: Optional[pulumi.Input[_builtins.bool]] = None,
109
112
  vault_id: Optional[pulumi.Input[_builtins.str]] = None,
@@ -111,34 +114,31 @@ class AutonomousDatabaseArgs:
111
114
  """
112
115
  The set of arguments for constructing a AutonomousDatabase resource.
113
116
  :param pulumi.Input[_builtins.str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment of the Autonomous Database.
114
- :param pulumi.Input[_builtins.str] db_name: The database name. The name must begin with an alphabetic character and can contain a maximum of 14 alphanumeric characters. Special characters are not permitted. The database name must be unique in the tenancy. It is required in all cases except when creating a cross-region Autonomous Data Guard standby instance or a cross-region disaster recovery standby instance.
117
+ :param pulumi.Input[_builtins.str] db_name: The database name. The name must begin with an alphabetic character and can contain a maximum of 30 alphanumeric characters. Special characters are not permitted. The database name must be unique in the tenancy. It is required in all cases except when creating a cross-region Autonomous Data Guard standby instance or a cross-region disaster recovery standby instance.
115
118
  :param pulumi.Input[_builtins.str] admin_password: (Updatable) The password must be between 12 and 30 characters long, and must contain at least 1 uppercase, 1 lowercase, and 1 numeric character. It cannot contain the double quote symbol (") or the username "admin", regardless of casing. The password is mandatory if source value is "BACKUP_FROM_ID", "BACKUP_FROM_TIMESTAMP", "DATABASE" or "NONE".
116
119
  :param pulumi.Input[_builtins.bool] are_primary_whitelisted_ips_used: (Updatable) 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.
117
120
  :param pulumi.Input[_builtins.int] auto_refresh_frequency_in_seconds: (Updatable) 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.
118
121
  :param pulumi.Input[_builtins.int] auto_refresh_point_lag_in_seconds: (Updatable) 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.
119
- :param pulumi.Input[_builtins.str] autonomous_container_database_id: The Autonomous Container Database [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
122
+ :param pulumi.Input[_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.
120
123
  :param pulumi.Input[_builtins.str] autonomous_database_backup_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the source Autonomous Database Backup that you will clone to create a new Autonomous Database.
121
124
  :param pulumi.Input[_builtins.str] autonomous_database_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the source Autonomous Database that you will clone to create a new Autonomous Database.
122
- :param pulumi.Input[_builtins.str] autonomous_maintenance_schedule_type: The maintenance schedule type of the Autonomous Database Serverless instances. The EARLY maintenance schedule of this Autonomous Database follows a schedule that applies patches prior to the REGULAR schedule.The REGULAR maintenance schedule of this Autonomous Database follows the normal cycle.
123
- :param pulumi.Input[_builtins.int] backup_retention_period_in_days: (Updatable) Retention period, in days, for backups.
124
- :param pulumi.Input[_builtins.str] character_set: The character set for the autonomous database. The default is AL32UTF8. Allowed values for an Autonomous Database on Serverless infrastructure as returned by [List Autonomous Database Character Sets](https://www.terraform.io/autonomousDatabaseCharacterSets)
125
+ :param pulumi.Input[_builtins.str] autonomous_maintenance_schedule_type: (Updatable) 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
126
+ :param pulumi.Input[_builtins.int] backup_retention_period_in_days: (Updatable) Retention period, in days, for long-term backups
127
+ :param pulumi.Input[_builtins.float] byol_compute_count_limit: (Updatable) 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.
128
+ :param pulumi.Input[_builtins.str] character_set: The character set for the autonomous database. The default is AL32UTF8. Allowed values for an Autonomous Database Serverless instance as as returned by [List Autonomous Database Character Sets](https://docs.oracle.com/iaas/autonomous-database-serverless/doc/autonomous-character-set-selection.html)
129
+
130
+ For an Autonomous Database on dedicated infrastructure, the allowed values are:
125
131
 
126
- For an Autonomous Database on dedicated infrastructure, the allowed values are
127
132
  AL32UTF8, AR8ADOS710, AR8ADOS720, AR8APTEC715, AR8ARABICMACS, AR8ASMO8X, AR8ISO8859P6, AR8MSWIN1256, AR8MUSSAD768, AR8NAFITHA711, AR8NAFITHA721, AR8SAKHR706, AR8SAKHR707, AZ8ISO8859P9E, BG8MSWIN, BG8PC437S, BLT8CP921, BLT8ISO8859P13, BLT8MSWIN1257, BLT8PC775, BN8BSCII, CDN8PC863, CEL8ISO8859P14, CL8ISO8859P5, CL8ISOIR111, CL8KOI8R, CL8KOI8U, CL8MACCYRILLICS, CL8MSWIN1251, EE8ISO8859P2, EE8MACCES, EE8MACCROATIANS, EE8MSWIN1250, EE8PC852, EL8DEC, EL8ISO8859P7, EL8MACGREEKS, EL8MSWIN1253, EL8PC437S, EL8PC851, EL8PC869, ET8MSWIN923, HU8ABMOD, HU8CWI2, IN8ISCII, IS8PC861, IW8ISO8859P8, IW8MACHEBREWS, IW8MSWIN1255, IW8PC1507, JA16EUC, JA16EUCTILDE, JA16SJIS, JA16SJISTILDE, JA16VMS, KO16KSC5601, KO16KSCCS, KO16MSWIN949, LA8ISO6937, LA8PASSPORT, LT8MSWIN921, LT8PC772, LT8PC774, LV8PC1117, LV8PC8LR, LV8RST104090, N8PC865, NE8ISO8859P10, NEE8ISO8859P4, RU8BESTA, RU8PC855, RU8PC866, SE8ISO8859P3, TH8MACTHAIS, TH8TISASCII, TR8DEC, TR8MACTURKISHS, TR8MSWIN1254, TR8PC857, US7ASCII, US8PC437, UTF8, VN8MSWIN1258, VN8VN3, WE8DEC, WE8DG, WE8ISO8859P1, WE8ISO8859P15, WE8ISO8859P9, WE8MACROMAN8S, WE8MSWIN1252, WE8NCR4970, WE8NEXTSTEP, WE8PC850, WE8PC858, WE8PC860, WE8ROMAN8, ZHS16CGB231280, ZHS16GBK, ZHT16BIG5, ZHT16CCDC, ZHT16DBT, ZHT16HKSCS, ZHT16MSWIN950, ZHT32EUC, ZHT32SOPS, ZHT32TRIS
128
133
  :param pulumi.Input[Sequence[pulumi.Input[_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.
129
- :param pulumi.Input[_builtins.str] clone_type: The Autonomous Database clone type. This parameter is not used to create a refreshable clone type, and for refreshable clones one must use the (source=CLONE_TO_REFRESHABLE) parameter.
134
+ :param pulumi.Input[_builtins.str] clone_type: The Autonomous Database clone type.
130
135
  * `FULL` - This option creates a new database that includes all source database data.
131
136
  * `METADATA` - This option creates a new database that includes the source database schema and select metadata, but not the source database data.
132
- :param pulumi.Input[_builtins.float] compute_count: (Updatable) The compute amount available to the database. Minimum and maximum values depend on the compute model and whether the database is an Autonomous Database Serverless instance or an Autonomous Database on Dedicated Exadata Infrastructure. For an Autonomous Database Serverless instance, the 'ECPU' compute model requires a minimum value of one, for databases in the elastic resource pool and minimum value of two, otherwise. Required when using the `computeModel` parameter. When using `cpuCoreCount` parameter, it is an error to specify computeCount to a non-null value. Providing `computeModel` and `computeCount` is the preferred method for both OCPU and ECPU.
137
+ :param pulumi.Input[_builtins.float] compute_count: (Updatable) The compute amount (CPUs) available to the database. Minimum and maximum values depend on the compute model and whether the database is an Autonomous Database Serverless instance or an Autonomous Database on Dedicated Exadata Infrastructure. The 'ECPU' compute model requires a minimum value of one, for databases in the elastic resource pool and minimum value of two, otherwise. Required when using the `computeModel` parameter. When using `cpuCoreCount` parameter, it is an error to specify computeCount to a non-null value. Providing `computeModel` and `computeCount` is the preferred method for both OCPU and ECPU.
133
138
  :param pulumi.Input[_builtins.str] compute_model: (Updatable) The compute model of the Autonomous Database. This is required if using the `computeCount` parameter. If using `cpuCoreCount` then it is an error to specify `computeModel` to a non-null value. ECPU compute model is the recommended model and OCPU compute model is legacy.
134
139
  :param pulumi.Input[_builtins.int] cpu_core_count: (Updatable) The number of CPU cores to be made available to the database. For Autonomous Databases on dedicated Exadata infrastructure, the maximum number of cores is determined by the infrastructure shape. See [Characteristics of Infrastructure Shapes](https://www.oracle.com/pls/topic/lookup?ctx=en/cloud/paas/autonomous-database&id=ATPFG-GUID-B0F033C1-CC5A-42F0-B2E7-3CECFEDA1FD1) for shape details.
140
+
135
141
  **Note:** This parameter cannot be used with the `ocpuCount` parameter. This input is ignored for Always Free resources.
136
- * The data type must be an *integer*.
137
- * The minimum number of cores for all types of autonomous database is *1*
138
- * The maximum number of cores is as follows:
139
- * Autonomous Database Serverless instances: The maximum number of cores is *128*.
140
- * Autonomous Databases on dedicated Exadata infrastructure: The maximum number of cores is determined by the infrastructure shape. See [Characteristics of Infrastructure Shapes](https://www.oracle.com/pls/topic/lookup?ctx=en/cloud/paas/autonomous-database&id=ATPFG-GUID-B0F033C1-CC5A-42F0-B2E7-3CECFEDA1FD1) for shape details.
141
- * Providing `computeModel` and `computeCount` is the preferred method for setting CPUs for both OCPU and ECPU.
142
142
  :param pulumi.Input[Sequence[pulumi.Input['AutonomousDatabaseCustomerContactArgs']]] customer_contacts: (Updatable) Customer Contacts.
143
143
  :param pulumi.Input[_builtins.str] data_safe_status: (Updatable) Status of the Data Safe registration for this Autonomous Database. Could be REGISTERED or NOT_REGISTERED.
144
144
  :param pulumi.Input[_builtins.int] data_storage_size_in_gb: (Updatable) The size, in gigabytes, of the data volume that will be created and attached to the database. This storage can later be scaled up if needed. The maximum storage value is determined by the infrastructure shape. See [Characteristics of Infrastructure Shapes](https://www.oracle.com/pls/topic/lookup?ctx=en/cloud/paas/autonomous-database&id=ATPFG-GUID-B0F033C1-CC5A-42F0-B2E7-3CECFEDA1FD1) for shape details.
@@ -146,15 +146,15 @@ class AutonomousDatabaseArgs:
146
146
  **Notes**
147
147
  * This parameter is only supported for dedicated Exadata infrastructure.
148
148
  * This parameter cannot be used with the `dataStorageSizeInTBs` parameter.
149
- :param pulumi.Input[_builtins.int] data_storage_size_in_tbs: (Updatable) The size, in terabytes, of the data volume that will be created and attached to the database. This storage can later be scaled up if needed. For Autonomous Databases on dedicated Exadata infrastructure, the maximum storage value is determined by the infrastructure shape. See [Characteristics of Infrastructure Shapes](https://www.oracle.com/pls/topic/lookup?ctx=en/cloud/paas/autonomous-database&id=ATPFG-GUID-B0F033C1-CC5A-42F0-B2E7-3CECFEDA1FD1) for shape details. A full Exadata service is allocated when the Autonomous Database size is set to the upper limit (384 TB).
149
+ :param pulumi.Input[_builtins.int] data_storage_size_in_tbs: (Updatable) The size, in terabytes, of the data volume that will be created and attached to the database. This storage can later be scaled up if needed. For Autonomous Databases on dedicated Exadata infrastructure, the maximum storage value is determined by the infrastructure shape. See [Characteristics of Infrastructure Shapes](https://www.oracle.com/pls/topic/lookup?ctx=en/cloud/paas/autonomous-database&id=ATPFG-GUID-B0F033C1-CC5A-42F0-B2E7-3CECFEDA1FD1) for shape details. A full Exadata service is allocated when the Autonomous Database size is set to the upper limit (384 TB).
150
150
 
151
151
  **Note:** This parameter cannot be used with the `dataStorageSizeInGBs` parameter. This input is ignored for Always Free resources.
152
- :param pulumi.Input[_builtins.str] database_edition: (Updatable) The Oracle Database Edition that applies to the Autonomous databases. It can be set to `ENTERPRISE_EDITION` or `STANDARD_EDITION`.
152
+ :param pulumi.Input[_builtins.str] database_edition: (Updatable) The Oracle Database Edition that applies to the Autonomous databases. This parameter accepts options `STANDARD_EDITION` and `ENTERPRISE_EDITION`.
153
153
  :param pulumi.Input[_builtins.str] database_management_status: Status of Database Management for this Autonomous Database.
154
154
  :param pulumi.Input[Sequence[pulumi.Input['AutonomousDatabaseDbToolsDetailArgs']]] db_tools_details: (Updatable) The list of database tools details.
155
155
 
156
156
  This cannot be updated in parallel with any of the following: licenseModel, dbEdition, cpuCoreCount, computeCount, computeModel, whitelistedIps, isMTLSConnectionRequired, openMode, permissionLevel, dbWorkload, privateEndpointLabel, nsgIds, dbVersion, isRefreshable, dbName, scheduledOperations, isLocalDataGuardEnabled, or isFreeTier.
157
- :param pulumi.Input[_builtins.str] db_version: (Updatable) A valid Oracle Database version for Autonomous Database.`db_workload` AJD and APEX are only supported for `db_version` `19c` and above.
157
+ :param pulumi.Input[_builtins.str] db_version: (Updatable) A valid Oracle Database version for Autonomous Database.`db_workload` AJD is only supported for `db_version` `19c` and above.
158
158
  :param pulumi.Input[_builtins.str] db_workload: (Updatable) The Autonomous Database workload type. The following values are valid:
159
159
  * OLTP - indicates an Autonomous Transaction Processing database
160
160
  * DW - indicates an Autonomous Data Warehouse database
@@ -165,7 +165,6 @@ class AutonomousDatabaseArgs:
165
165
  :param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] defined_tags: (Updatable) 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).
166
166
  :param pulumi.Input[_builtins.str] disaster_recovery_type: Indicates the disaster recovery (DR) type of the standby 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.
167
167
  :param pulumi.Input[_builtins.str] display_name: (Updatable) The user-friendly name for the Autonomous Database. The name does not have to be unique.
168
- :param pulumi.Input[_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.
169
168
  :param pulumi.Input['AutonomousDatabaseEncryptionKeyArgs'] encryption_key: (Updatable) Details of the Autonomous Database encryption key.
170
169
  :param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] freeform_tags: (Updatable) 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"}`
171
170
  :param pulumi.Input[_builtins.int] in_memory_percentage: (Updatable) The percentage of the System Global Area(SGA) assigned to In-Memory tables in Autonomous Database. This property is applicable only to Autonomous Databases on the Exadata Cloud@Customer platform.
@@ -176,53 +175,45 @@ class AutonomousDatabaseArgs:
176
175
  :param pulumi.Input[_builtins.bool] is_auto_scaling_for_storage_enabled: (Updatable) Indicates if auto scaling is enabled for the Autonomous Database storage. The default value is `FALSE`.
177
176
  :param pulumi.Input[_builtins.bool] is_backup_retention_locked: (Updatable) True if the Autonomous Database is backup retention locked.
178
177
  :param pulumi.Input[_builtins.bool] is_data_guard_enabled: (Updatable) **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.
179
- :param pulumi.Input[_builtins.bool] is_dedicated: True if the database is on [dedicated Exadata infrastructure](https://docs.cloud.oracle.com/iaas/Content/Database/Concepts/adbddoverview.htm).
180
- :param pulumi.Input[_builtins.bool] is_dev_tier: (Updatable) 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.
181
- :param pulumi.Input[_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.
182
- :param pulumi.Input[_builtins.bool] is_free_tier: (Updatable) 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. When `db_workload` is `AJD` or `APEX` it cannot be `true`.
183
- :param pulumi.Input[_builtins.bool] is_local_data_guard_enabled: (Updatable) Indicates whether the Autonomous Database has local (in-region) Data Guard enabled. It takes boolean values. Not applicable to cross-region Autonomous Data Guard associations, or to Autonomous Databases using dedicated Exadata infrastructure or Exadata Cloud@Customer infrastructure.
184
- :param pulumi.Input[_builtins.bool] is_mtls_connection_required: (Updatable) Indicates whether the Autonomous Database requires mTLS connections.
185
- :param pulumi.Input[_builtins.bool] is_preview_version_with_service_terms_accepted: If set to `TRUE`, indicates that an Autonomous Database preview version is being provisioned, and that the preview version's terms of service have been accepted. Note that preview version software is only available for databases on [Autonomous Database Serverless](https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html).
186
- :param pulumi.Input[_builtins.bool] is_refreshable_clone: (Updatable) True for creating a refreshable clone and False for detaching the clone from source Autonomous Database. Detaching is one time operation and clone becomes a regular Autonomous Database.
187
- :param pulumi.Input[_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.
188
- :param pulumi.Input[_builtins.bool] is_shrink_only: (Updatable) An optional property when enabled triggers the Shrinking of Autonomous Database once. To trigger Shrinking of ADB once again, this flag needs to be disabled and re-enabled again. It should not be passed during create database operation. It is only applicable on Serverless databases i.e. where `is_dedicated` is false.
178
+ :param pulumi.Input[_builtins.bool] is_dedicated: True if the database is on [dedicated Exadata infrastructure](https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html).
179
+ :param pulumi.Input[_builtins.bool] is_dev_tier: (Updatable) 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.
180
+ :param pulumi.Input[_builtins.bool] is_free_tier: (Updatable) 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.
189
181
 
190
- ** IMPORTANT **
191
- Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
192
- :param pulumi.Input[_builtins.str] key_version_id: The OCID of the key version that is used in rotate key operations.
182
+ 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 When `db_workload` is `AJD` it cannot be `true`.
183
+ :param pulumi.Input[_builtins.bool] is_local_data_guard_enabled: (Updatable) 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.
184
+ :param pulumi.Input[_builtins.bool] is_preview_version_with_service_terms_accepted: If set to `TRUE`, indicates that an Autonomous Database preview version is being provisioned, and that the preview version's terms of service have been accepted. Note that preview version software is only available for Autonomous Database Serverless instances (https://docs.oracle.com/en/cloud/paas/autonomous-database/serverless/).
185
+ :param pulumi.Input[_builtins.bool] is_refreshable_clone: Indicates if the Autonomous Database is a refreshable clone.
186
+ :param pulumi.Input[_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.
193
187
  :param pulumi.Input[_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.
194
- :param pulumi.Input[_builtins.str] license_model: (Updatable) 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 PaaS and IaaS services in the cloud. License Included allows you to subscribe to new Oracle Database software licenses and the Database service. Note that when provisioning an Autonomous Database on [dedicated Exadata infrastructure](https://docs.cloud.oracle.com/iaas/Content/Database/Concepts/adbddoverview.htm), this attribute must be null because the attribute is already set at the Autonomous Exadata Infrastructure level. When using [shared Exadata infrastructure](https://docs.cloud.oracle.com/iaas/Content/Database/Concepts/adboverview.htm#AEI), if a value is not specified, the system will supply the value of `BRING_YOUR_OWN_LICENSE`. It is a required field when `db_workload` is AJD and needs to be set to `LICENSE_INCLUDED` as AJD does not support default `license_model` value `BRING_YOUR_OWN_LICENSE`.
188
+ :param pulumi.Input[_builtins.str] license_model: (Updatable) 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.
189
+
190
+ This cannot be updated in parallel with any of the following: cpuCoreCount, computeCount, dataStorageSizeInTBs, adminPassword, isMTLSConnectionRequired, dbWorkload, privateEndpointLabel, nsgIds, dbVersion, dbName, scheduledOperations, dbToolsDetails, or isFreeTier. It is a required field when `db_workload` is AJD and needs to be set to `LICENSE_INCLUDED` as AJD does not support default `license_model` value `BRING_YOUR_OWN_LICENSE`.
195
191
  :param pulumi.Input[_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
196
192
  :param pulumi.Input[Sequence[pulumi.Input['AutonomousDatabaseLongTermBackupScheduleArgs']]] long_term_backup_schedules: Details for the long-term backup schedule.
197
- :param pulumi.Input[_builtins.int] max_cpu_core_count: (Updatable) **Deprecated.** The number of Max OCPU cores to be made available to the autonomous database with auto scaling of cpu enabled.
198
- :param pulumi.Input[_builtins.str] ncharacter_set: The national character set for the autonomous database. The default is AL16UTF16. Allowed values are: AL16UTF16 or UTF8.
193
+ :param pulumi.Input[_builtins.str] ncharacter_set: The character set for the Autonomous Database. The default is AL32UTF8. Use [List Autonomous Database Character Sets](https://docs.oracle.com/iaas/autonomous-database-serverless/doc/autonomous-character-set-selection.html) to list the allowed values for an Autonomous Database Serverless instance. For an Autonomous Database on dedicated Exadata infrastructure, the allowed values are: AL16UTF16 or UTF8.
199
194
  :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] nsg_ids: (Updatable) The list of [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for the network security groups (NSGs) to which this resource belongs. Setting this to an empty list removes all resources from all NSGs. For more information about NSGs, see [Security Rules](https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/securityrules.htm). **NsgIds restrictions:**
200
195
  * A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
201
196
  :param pulumi.Input[_builtins.float] ocpu_count: (Updatable) The number of OCPU cores to be made available to the database.
202
197
 
203
-
204
- * Providing `computeModel` and `computeCount` is the preferred method for setting CPUs for both OCPU and ECPU.
205
198
  The following points apply:
206
- * For Autonomous Databases on dedicated Exadata infrastructure, to provision less than 1 core, enter a fractional value in an increment of 0.1. For example, you can provision 0.3 or 0.4 cores, but not 0.35 cores. (Note that fractional OCPU values are not supported for Autonomous Databasese on shared Exadata infrastructure.)
207
- * To provision 1 or more cores, you must enter an integer between 1 and the maximum number of cores available for the infrastructure shape. For example, you can provision 2 cores or 3 cores, but not 2.5 cores. This applies to Autonomous Databases on both shared and dedicated Exadata infrastructure.
199
+ * For Autonomous Databases on Dedicated Exadata infrastructure, to provision less than 1 core, enter a fractional value in an increment of 0.1. For example, you can provision 0.3 or 0.4 cores, but not 0.35 cores. (Note that fractional OCPU values are not supported for Autonomous Database Serverless instances.)
200
+ * To provision 1 or more cores, you must enter an integer between 1 and the maximum number of cores available for the infrastructure shape. For example, you can provision 2 cores or 3 cores, but not 2.5 cores. This applies to an Autonomous Database Serverless instance or an Autonomous Database on Dedicated Exadata Infrastructure.
201
+ * For Autonomous Database Serverless instances, this parameter is not used.
208
202
 
209
- For Autonomous Databases on dedicated Exadata infrastructure, the maximum number of cores is determined by the infrastructure shape. See [Characteristics of Infrastructure Shapes](https://www.oracle.com/pls/topic/lookup?ctx=en/cloud/paas/autonomous-database&id=ATPFG-GUID-B0F033C1-CC5A-42F0-B2E7-3CECFEDA1FD1) for shape details.
203
+ For Autonomous Databases on Dedicated Exadata infrastructure, the maximum number of cores is determined by the infrastructure shape. See [Characteristics of Infrastructure Shapes](https://www.oracle.com/pls/topic/lookup?ctx=en/cloud/paas/autonomous-database&id=ATPFG-GUID-B0F033C1-CC5A-42F0-B2E7-3CECFEDA1FD1) for shape details.
210
204
 
211
205
  **Note:** This parameter cannot be used with the `cpuCoreCount` parameter.
212
- :param pulumi.Input[_builtins.str] open_mode: Indicates the Autonomous Database mode. The database can be opened in `READ_ONLY` or `READ_WRITE` mode.
213
- :param pulumi.Input[_builtins.str] operations_insights_status: (Updatable) Status of Operations Insights for this Autonomous Database. Values supported are `ENABLED` and `NOT_ENABLED`
214
- :param pulumi.Input[_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.
206
+ :param pulumi.Input[_builtins.str] open_mode: (Updatable) Indicates the Autonomous Database mode. The database can be opened in `READ_ONLY` or `READ_WRITE` mode.
207
+
208
+ This cannot be updated in parallel with any of the following: cpuCoreCount, computeCount, computeModel, adminPassword, whitelistedIps, isMTLSConnectionRequired, dbVersion, isRefreshable, dbName, scheduledOperations, dbToolsDetails, or isFreeTier.
209
+ :param pulumi.Input[_builtins.str] operations_insights_status: Status of Operations Insights for this Autonomous Database.
215
210
  :param pulumi.Input[_builtins.str] permission_level: The Autonomous Database permission level. Restricted mode allows access only by admin users.
216
- :param pulumi.Input[_builtins.str] private_endpoint_ip: The private endpoint Ip address for the resource.
217
- :param pulumi.Input[_builtins.str] private_endpoint_label: (Updatable) (Optional) (Updatable) The resource's private endpoint label.
218
- * Setting the endpoint label to a non-empty string creates a private endpoint database.
219
- * Resetting the endpoint label to an empty string, after the creation of the private endpoint database, changes the private endpoint database to a public endpoint database.
220
- * Setting the endpoint label to a non-empty string value, updates to a new private endpoint database, when the database is disabled and re-enabled.
211
+ :param pulumi.Input[_builtins.str] private_endpoint_ip: (Updatable) The private endpoint Ip address for the resource.
212
+ :param pulumi.Input[_builtins.str] private_endpoint_label: (Updatable) The private endpoint label for the resource.
221
213
  :param pulumi.Input[_builtins.str] refreshable_mode: (Updatable) The refresh mode of the clone. AUTOMATIC indicates that the clone is automatically being refreshed with data from the source Autonomous Database.
222
214
  :param pulumi.Input[_builtins.str] remote_disaster_recovery_type: Indicates the cross-region disaster recovery (DR) type of the standby 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.
223
215
  :param pulumi.Input[_builtins.str] resource_pool_leader_id: (Updatable) The unique identifier for leader autonomous database OCID [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
224
216
  :param pulumi.Input['AutonomousDatabaseResourcePoolSummaryArgs'] resource_pool_summary: (Updatable) The configuration details for resource pool
225
- :param pulumi.Input[_builtins.bool] rotate_key_trigger: (Updatable) An optional property when flipped triggers rotation of KMS key. It is only applicable on dedicated databases i.e. where `is_dedicated` is true.
226
217
  :param pulumi.Input[Sequence[pulumi.Input['AutonomousDatabaseScheduledOperationArgs']]] scheduled_operations: (Updatable) The list of scheduled operations. Consists of values such as dayOfWeek, scheduledStartTime, scheduledStopTime.
227
218
 
228
219
  This cannot be updated in parallel with any of the following: licenseModel, dbEdition, cpuCoreCount, computeCount, computeModel, whitelistedIps, isMTLSConnectionRequired, openMode, permissionLevel, dbWorkload, privateEndpointLabel, nsgIds, dbVersion, isRefreshable, dbName, dbToolsDetails, isLocalDataGuardEnabled, or isFreeTier.
@@ -231,47 +222,43 @@ class AutonomousDatabaseArgs:
231
222
  This cannot be used in conjunction with adminPassword.
232
223
  :param pulumi.Input[_builtins.int] secret_version_number: (Updatable) The version of the vault secret. If no version is specified, the latest version will be used.
233
224
  :param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] security_attributes: (Updatable) 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"}}}`
234
- :param pulumi.Input[_builtins.str] source: The source of the database:
235
- * Use `NONE` for creating a new Autonomous Database.
236
- * Use `DATABASE` for creating a new Autonomous Database by cloning an existing running Autonomous Database from the latest timestamp, also provide the source database OCID in the `source_id` parameter.
237
- * Use `CROSS_REGION_DATAGUARD` to create a standby Data Guard database in another region, also provide the remote primary database OCID in the `source_id` parameter.
238
- * Use `CLONE_TO_REFRESHABLE` for creating a refreshable clone.
225
+ :param pulumi.Input[_builtins.str] source: The source of the database: Use `NONE` for creating a new Autonomous Database. Use `DATABASE` for creating a new Autonomous Database by cloning an existing Autonomous Database. Use `CROSS_REGION_DATAGUARD` to create a standby Data Guard database in another region.
239
226
 
240
- For [Autonomous Database Serverless](https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html) instances, the following cloning options are available:
241
- * Use `BACKUP_FROM_ID` for creating a new Autonomous Database by cloning from a specified backup. Also provide the backup OCID in the `autonomous_database_backup_id` parameter.
242
- * Use `BACKUP_FROM_TIMESTAMP` for creating a point-in-time Autonomous Database clone using backups. Also provide the backup timestamp in the `timestamp` parameter. For more information, see [Cloning and Moving an Autonomous Database](https://docs.oracle.com/en/cloud/paas/autonomous-database/adbsa/clone-autonomous-database.html#GUID-D771796F-5081-4CFB-A7FF-0F893EABD7BC).
243
- :param pulumi.Input[_builtins.str] source_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the source Autonomous Database that will be used to create a new standby database for the Data Guard association.
227
+ For [Autonomous Database Serverless instances](https://docs.oracle.com/en/cloud/paas/autonomous-database/serverless/), the following cloning options are available: Use `BACKUP_FROM_ID` for creating a new Autonomous Database from a specified backup. Use `BACKUP_FROM_TIMESTAMP` for creating a point-in-time Autonomous Database clone using backups. For more information, see [Cloning and Moving an Autonomous Database](https://docs.oracle.com/en/cloud/paas/autonomous-database/adbsa/clone-autonomous-database.html#GUID-D771796F-5081-4CFB-A7FF-0F893EABD7BC).
228
+ :param pulumi.Input[_builtins.str] source_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the source Autonomous Database that will be used to create a new peer database for the Data Guard association.
244
229
  :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] standby_whitelisted_ips: (Updatable) 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`.
245
230
 
246
- For Autonomous Database Serverless instances, this is an array of CIDR (Classless Inter-Domain Routing) notations for a subnet or VCN OCID. Use a semicolon (;) as a deliminator between the VCN-specific subnets or IPs. Example: `["1.1.1.1","1.1.1.0/24","ocid1.vcn.oc1.sea.<unique_id>","ocid1.vcn.oc1.sea.<unique_id1>;1.1.1.1","ocid1.vcn.oc1.sea.<unique_id2>;1.1.0.0/16"]` For Exadata Cloud@Customer, this is an array of IP addresses or CIDR (Classless Inter-Domain Routing) notations. Example: `["1.1.1.1","1.1.1.0/24","1.1.2.25"]`
231
+ For Autonomous Database Serverless, this is an array of CIDR (classless inter-domain routing) notations for a subnet or VCN OCID (virtual cloud network Oracle Cloud ID). Multiple IPs and VCN OCIDs should be separate strings separated by commas, but if it’s other configurations that need multiple pieces of information then its each piece is connected with semicolon (;) as a delimiter. Example: `["1.1.1.1","1.1.1.0/24","ocid1.vcn.oc1.sea.<unique_id>","ocid1.vcn.oc1.sea.<unique_id1>;1.1.1.1","ocid1.vcn.oc1.sea.<unique_id2>;1.1.0.0/16"]` For Exadata Cloud@Customer, this is an array of IP addresses or CIDR notations. Example: `["1.1.1.1","1.1.1.0/24","1.1.2.25"]`
247
232
 
248
233
  For an update operation, if you want to delete all the IPs in the ACL, use an array with a single empty string entry.
249
234
 
250
- If `arePrimaryWhitelistedIpsUsed` is 'TRUE' then Autonomous Database uses `whitelisted_ips` primary's IP access control list (ACL) as `standbywhitelistedips` for the disaster recovery peer.
251
-
252
235
  This cannot be updated in parallel with any of the following: licenseModel, dbEdition, cpuCoreCount, computeCount, computeModel, adminPassword, isMTLSConnectionRequired, openMode, permissionLevel, dbWorkload, dbVersion, isRefreshable, dbName, scheduledOperations, dbToolsDetails, isLocalDataGuardEnabled, or isFreeTier.
253
236
  :param pulumi.Input[_builtins.str] state: The current state of the Autonomous Database.
254
- :param pulumi.Input[_builtins.str] subnet_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet the resource is associated with. This the only parameter to configure private endpoint, VCN details are obtained from the `subnet_id`.
237
+ :param pulumi.Input[_builtins.str] subnet_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet the resource is associated with.
255
238
 
256
239
  **Subnet Restrictions:**
257
240
  * For bare metal DB systems and for single node virtual machine DB systems, do not use a subnet that overlaps with 192.168.16.16/28.
258
241
  * For Exadata and virtual machine 2-node RAC systems, do not use a subnet that overlaps with 192.168.128.0/20.
259
242
  * For Autonomous Database, setting this will disable public secure access to the database.
260
- :param pulumi.Input[_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.
243
+
261
244
  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.
262
- :param pulumi.Input[_builtins.str] switchover_to: It is applicable only when `is_local_data_guard_enabled` is true. Could be set to `PRIMARY` or `STANDBY`. Default value is `PRIMARY`.
263
- :param pulumi.Input[_builtins.str] switchover_to_remote_peer_id: (Updatable) It is applicable only when `dataguard_region_type` and `role` are set, and `is_dedicated` is false. For Autonomous Database Serverless instances, Data Guard associations have designated primary and standby regions, and these region types do not change when the database changes roles. It takes the [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the remote peer to switchover to and the API is called from the remote region.
264
- :param pulumi.Input[_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.
245
+ :param pulumi.Input[_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.
246
+ :param pulumi.Input[_builtins.str] time_of_auto_refresh_start: (Updatable) 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.
247
+ :param pulumi.Input[_builtins.str] time_scheduled_db_version_upgrade: The date and time the Autonomous Database scheduled to upgrade to 23ai. Send this value along with the target db_version value to schedule the database version upgrade. After the upgrade is scheduled and before the scheduled upgrade time arrives, please keep the db_version value the same as the backend's current db_version.
265
248
  :param pulumi.Input[_builtins.str] timestamp: The timestamp specified for the point-in-time clone of the source Autonomous Database. The timestamp must be in the past.
266
249
  :param pulumi.Input[_builtins.bool] use_latest_available_backup_time_stamp: Clone from latest available backup timestamp.
267
- :param pulumi.Input[_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).
268
- :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] whitelisted_ips: (Updatable) The client IP access control list (ACL). This feature is available for autonomous databases on [shared Exadata infrastructure](https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html) and on Exadata Cloud@Customer. Only clients connecting from an IP address included in the ACL may access the Autonomous Database instance.
250
+ :param pulumi.Input[_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.
251
+ :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] whitelisted_ips: (Updatable) 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`.
269
252
 
270
- For Autonomous Database Serverless instances, this is an array of CIDR (Classless Inter-Domain Routing) notations for a subnet or VCN OCID. Use a semicolon (;) as a deliminator between the VCN-specific subnets or IPs. Example: `["1.1.1.1","1.1.1.0/24","ocid1.vcn.oc1.sea.<unique_id>","ocid1.vcn.oc1.sea.<unique_id1>;1.1.1.1","ocid1.vcn.oc1.sea.<unique_id2>;1.1.0.0/16"]` For Exadata Cloud@Customer, this is an array of IP addresses or CIDR (Classless Inter-Domain Routing) notations. Example: `["1.1.1.1","1.1.1.0/24","1.1.2.25"]`
253
+ For Autonomous Database Serverless, this is an array of CIDR (classless inter-domain routing) notations for a subnet or VCN OCID (virtual cloud network Oracle Cloud ID). Multiple IPs and VCN OCIDs should be separate strings separated by commas, but if it’s other configurations that need multiple pieces of information then its each piece is connected with semicolon (;) as a delimiter. Example: `["1.1.1.1","1.1.1.0/24","ocid1.vcn.oc1.sea.<unique_id>","ocid1.vcn.oc1.sea.<unique_id1>;1.1.1.1","ocid1.vcn.oc1.sea.<unique_id2>;1.1.0.0/16"]` For Exadata Cloud@Customer, this is an array of IP addresses or CIDR notations. Example: `["1.1.1.1","1.1.1.0/24","1.1.2.25"]`
271
254
 
272
255
  For an update operation, if you want to delete all the IPs in the ACL, use an array with a single empty string entry.
273
256
 
274
257
  This cannot be updated in parallel with any of the following: licenseModel, dbEdition, cpuCoreCount, computeCount, computeModel, adminPassword, isMTLSConnectionRequired, openMode, permissionLevel, dbWorkload, dbVersion, isRefreshable, dbName, scheduledOperations, dbToolsDetails, isLocalDataGuardEnabled, or isFreeTier. To remove all whitelisted IPs, set the field to a list with an empty string `[""]`.
258
+
259
+
260
+ ** IMPORTANT **
261
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
275
262
  """
276
263
  pulumi.set(__self__, "compartment_id", compartment_id)
277
264
  pulumi.set(__self__, "db_name", db_name)
@@ -353,6 +340,8 @@ class AutonomousDatabaseArgs:
353
340
  pulumi.set(__self__, "is_dedicated", is_dedicated)
354
341
  if is_dev_tier is not None:
355
342
  pulumi.set(__self__, "is_dev_tier", is_dev_tier)
343
+ if is_disable_db_version_upgrade_schedule is not None:
344
+ pulumi.set(__self__, "is_disable_db_version_upgrade_schedule", is_disable_db_version_upgrade_schedule)
356
345
  if is_disconnect_peer is not None:
357
346
  pulumi.set(__self__, "is_disconnect_peer", is_disconnect_peer)
358
347
  if is_free_tier is not None:
@@ -367,6 +356,8 @@ class AutonomousDatabaseArgs:
367
356
  pulumi.set(__self__, "is_refreshable_clone", is_refreshable_clone)
368
357
  if is_replicate_automatic_backups is not None:
369
358
  pulumi.set(__self__, "is_replicate_automatic_backups", is_replicate_automatic_backups)
359
+ if is_schedule_db_version_upgrade_to_earliest is not None:
360
+ pulumi.set(__self__, "is_schedule_db_version_upgrade_to_earliest", is_schedule_db_version_upgrade_to_earliest)
370
361
  if is_shrink_only is not None:
371
362
  warnings.warn("""The 'is_shrink_only' field has been deprecated. Please use 'shrink_adb_trigger' instead.""", DeprecationWarning)
372
363
  pulumi.log.warn("""is_shrink_only is deprecated: The 'is_shrink_only' field has been deprecated. Please use 'shrink_adb_trigger' instead.""")
@@ -440,6 +431,8 @@ class AutonomousDatabaseArgs:
440
431
  pulumi.set(__self__, "switchover_to_remote_peer_id", switchover_to_remote_peer_id)
441
432
  if time_of_auto_refresh_start is not None:
442
433
  pulumi.set(__self__, "time_of_auto_refresh_start", time_of_auto_refresh_start)
434
+ if time_scheduled_db_version_upgrade is not None:
435
+ pulumi.set(__self__, "time_scheduled_db_version_upgrade", time_scheduled_db_version_upgrade)
443
436
  if timestamp is not None:
444
437
  pulumi.set(__self__, "timestamp", timestamp)
445
438
  if use_latest_available_backup_time_stamp is not None:
@@ -465,7 +458,7 @@ class AutonomousDatabaseArgs:
465
458
  @pulumi.getter(name="dbName")
466
459
  def db_name(self) -> pulumi.Input[_builtins.str]:
467
460
  """
468
- The database name. The name must begin with an alphabetic character and can contain a maximum of 14 alphanumeric characters. Special characters are not permitted. The database name must be unique in the tenancy. It is required in all cases except when creating a cross-region Autonomous Data Guard standby instance or a cross-region disaster recovery standby instance.
461
+ The database name. The name must begin with an alphabetic character and can contain a maximum of 30 alphanumeric characters. Special characters are not permitted. The database name must be unique in the tenancy. It is required in all cases except when creating a cross-region Autonomous Data Guard standby instance or a cross-region disaster recovery standby instance.
469
462
  """
470
463
  return pulumi.get(self, "db_name")
471
464
 
@@ -525,7 +518,7 @@ class AutonomousDatabaseArgs:
525
518
  @pulumi.getter(name="autonomousContainerDatabaseId")
526
519
  def autonomous_container_database_id(self) -> Optional[pulumi.Input[_builtins.str]]:
527
520
  """
528
- The Autonomous Container Database [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
521
+ 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.
529
522
  """
530
523
  return pulumi.get(self, "autonomous_container_database_id")
531
524
 
@@ -561,7 +554,7 @@ class AutonomousDatabaseArgs:
561
554
  @pulumi.getter(name="autonomousMaintenanceScheduleType")
562
555
  def autonomous_maintenance_schedule_type(self) -> Optional[pulumi.Input[_builtins.str]]:
563
556
  """
564
- The maintenance schedule type of the Autonomous Database Serverless instances. The EARLY maintenance schedule of this Autonomous Database follows a schedule that applies patches prior to the REGULAR schedule.The REGULAR maintenance schedule of this Autonomous Database follows the normal cycle.
557
+ (Updatable) 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
565
558
  """
566
559
  return pulumi.get(self, "autonomous_maintenance_schedule_type")
567
560
 
@@ -573,7 +566,7 @@ class AutonomousDatabaseArgs:
573
566
  @pulumi.getter(name="backupRetentionPeriodInDays")
574
567
  def backup_retention_period_in_days(self) -> Optional[pulumi.Input[_builtins.int]]:
575
568
  """
576
- (Updatable) Retention period, in days, for backups.
569
+ (Updatable) Retention period, in days, for long-term backups
577
570
  """
578
571
  return pulumi.get(self, "backup_retention_period_in_days")
579
572
 
@@ -584,6 +577,9 @@ class AutonomousDatabaseArgs:
584
577
  @_builtins.property
585
578
  @pulumi.getter(name="byolComputeCountLimit")
586
579
  def byol_compute_count_limit(self) -> Optional[pulumi.Input[_builtins.float]]:
580
+ """
581
+ (Updatable) 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.
582
+ """
587
583
  return pulumi.get(self, "byol_compute_count_limit")
588
584
 
589
585
  @byol_compute_count_limit.setter
@@ -594,9 +590,10 @@ class AutonomousDatabaseArgs:
594
590
  @pulumi.getter(name="characterSet")
595
591
  def character_set(self) -> Optional[pulumi.Input[_builtins.str]]:
596
592
  """
597
- The character set for the autonomous database. The default is AL32UTF8. Allowed values for an Autonomous Database on Serverless infrastructure as returned by [List Autonomous Database Character Sets](https://www.terraform.io/autonomousDatabaseCharacterSets)
593
+ The character set for the autonomous database. The default is AL32UTF8. Allowed values for an Autonomous Database Serverless instance as as returned by [List Autonomous Database Character Sets](https://docs.oracle.com/iaas/autonomous-database-serverless/doc/autonomous-character-set-selection.html)
594
+
595
+ For an Autonomous Database on dedicated infrastructure, the allowed values are:
598
596
 
599
- For an Autonomous Database on dedicated infrastructure, the allowed values are
600
597
  AL32UTF8, AR8ADOS710, AR8ADOS720, AR8APTEC715, AR8ARABICMACS, AR8ASMO8X, AR8ISO8859P6, AR8MSWIN1256, AR8MUSSAD768, AR8NAFITHA711, AR8NAFITHA721, AR8SAKHR706, AR8SAKHR707, AZ8ISO8859P9E, BG8MSWIN, BG8PC437S, BLT8CP921, BLT8ISO8859P13, BLT8MSWIN1257, BLT8PC775, BN8BSCII, CDN8PC863, CEL8ISO8859P14, CL8ISO8859P5, CL8ISOIR111, CL8KOI8R, CL8KOI8U, CL8MACCYRILLICS, CL8MSWIN1251, EE8ISO8859P2, EE8MACCES, EE8MACCROATIANS, EE8MSWIN1250, EE8PC852, EL8DEC, EL8ISO8859P7, EL8MACGREEKS, EL8MSWIN1253, EL8PC437S, EL8PC851, EL8PC869, ET8MSWIN923, HU8ABMOD, HU8CWI2, IN8ISCII, IS8PC861, IW8ISO8859P8, IW8MACHEBREWS, IW8MSWIN1255, IW8PC1507, JA16EUC, JA16EUCTILDE, JA16SJIS, JA16SJISTILDE, JA16VMS, KO16KSC5601, KO16KSCCS, KO16MSWIN949, LA8ISO6937, LA8PASSPORT, LT8MSWIN921, LT8PC772, LT8PC774, LV8PC1117, LV8PC8LR, LV8RST104090, N8PC865, NE8ISO8859P10, NEE8ISO8859P4, RU8BESTA, RU8PC855, RU8PC866, SE8ISO8859P3, TH8MACTHAIS, TH8TISASCII, TR8DEC, TR8MACTURKISHS, TR8MSWIN1254, TR8PC857, US7ASCII, US8PC437, UTF8, VN8MSWIN1258, VN8VN3, WE8DEC, WE8DG, WE8ISO8859P1, WE8ISO8859P15, WE8ISO8859P9, WE8MACROMAN8S, WE8MSWIN1252, WE8NCR4970, WE8NEXTSTEP, WE8PC850, WE8PC858, WE8PC860, WE8ROMAN8, ZHS16CGB231280, ZHS16GBK, ZHT16BIG5, ZHT16CCDC, ZHT16DBT, ZHT16HKSCS, ZHT16MSWIN950, ZHT32EUC, ZHT32SOPS, ZHT32TRIS
601
598
  """
602
599
  return pulumi.get(self, "character_set")
@@ -621,7 +618,7 @@ class AutonomousDatabaseArgs:
621
618
  @pulumi.getter(name="cloneType")
622
619
  def clone_type(self) -> Optional[pulumi.Input[_builtins.str]]:
623
620
  """
624
- The Autonomous Database clone type. This parameter is not used to create a refreshable clone type, and for refreshable clones one must use the (source=CLONE_TO_REFRESHABLE) parameter.
621
+ The Autonomous Database clone type.
625
622
  * `FULL` - This option creates a new database that includes all source database data.
626
623
  * `METADATA` - This option creates a new database that includes the source database schema and select metadata, but not the source database data.
627
624
  """
@@ -635,7 +632,7 @@ class AutonomousDatabaseArgs:
635
632
  @pulumi.getter(name="computeCount")
636
633
  def compute_count(self) -> Optional[pulumi.Input[_builtins.float]]:
637
634
  """
638
- (Updatable) The compute amount available to the database. Minimum and maximum values depend on the compute model and whether the database is an Autonomous Database Serverless instance or an Autonomous Database on Dedicated Exadata Infrastructure. For an Autonomous Database Serverless instance, the 'ECPU' compute model requires a minimum value of one, for databases in the elastic resource pool and minimum value of two, otherwise. Required when using the `computeModel` parameter. When using `cpuCoreCount` parameter, it is an error to specify computeCount to a non-null value. Providing `computeModel` and `computeCount` is the preferred method for both OCPU and ECPU.
635
+ (Updatable) The compute amount (CPUs) available to the database. Minimum and maximum values depend on the compute model and whether the database is an Autonomous Database Serverless instance or an Autonomous Database on Dedicated Exadata Infrastructure. The 'ECPU' compute model requires a minimum value of one, for databases in the elastic resource pool and minimum value of two, otherwise. Required when using the `computeModel` parameter. When using `cpuCoreCount` parameter, it is an error to specify computeCount to a non-null value. Providing `computeModel` and `computeCount` is the preferred method for both OCPU and ECPU.
639
636
  """
640
637
  return pulumi.get(self, "compute_count")
641
638
 
@@ -660,13 +657,8 @@ class AutonomousDatabaseArgs:
660
657
  def cpu_core_count(self) -> Optional[pulumi.Input[_builtins.int]]:
661
658
  """
662
659
  (Updatable) The number of CPU cores to be made available to the database. For Autonomous Databases on dedicated Exadata infrastructure, the maximum number of cores is determined by the infrastructure shape. See [Characteristics of Infrastructure Shapes](https://www.oracle.com/pls/topic/lookup?ctx=en/cloud/paas/autonomous-database&id=ATPFG-GUID-B0F033C1-CC5A-42F0-B2E7-3CECFEDA1FD1) for shape details.
660
+
663
661
  **Note:** This parameter cannot be used with the `ocpuCount` parameter. This input is ignored for Always Free resources.
664
- * The data type must be an *integer*.
665
- * The minimum number of cores for all types of autonomous database is *1*
666
- * The maximum number of cores is as follows:
667
- * Autonomous Database Serverless instances: The maximum number of cores is *128*.
668
- * Autonomous Databases on dedicated Exadata infrastructure: The maximum number of cores is determined by the infrastructure shape. See [Characteristics of Infrastructure Shapes](https://www.oracle.com/pls/topic/lookup?ctx=en/cloud/paas/autonomous-database&id=ATPFG-GUID-B0F033C1-CC5A-42F0-B2E7-3CECFEDA1FD1) for shape details.
669
- * Providing `computeModel` and `computeCount` is the preferred method for setting CPUs for both OCPU and ECPU.
670
662
  """
671
663
  return pulumi.get(self, "cpu_core_count")
672
664
 
@@ -718,7 +710,7 @@ class AutonomousDatabaseArgs:
718
710
  @pulumi.getter(name="dataStorageSizeInTbs")
719
711
  def data_storage_size_in_tbs(self) -> Optional[pulumi.Input[_builtins.int]]:
720
712
  """
721
- (Updatable) The size, in terabytes, of the data volume that will be created and attached to the database. This storage can later be scaled up if needed. For Autonomous Databases on dedicated Exadata infrastructure, the maximum storage value is determined by the infrastructure shape. See [Characteristics of Infrastructure Shapes](https://www.oracle.com/pls/topic/lookup?ctx=en/cloud/paas/autonomous-database&id=ATPFG-GUID-B0F033C1-CC5A-42F0-B2E7-3CECFEDA1FD1) for shape details. A full Exadata service is allocated when the Autonomous Database size is set to the upper limit (384 TB).
713
+ (Updatable) The size, in terabytes, of the data volume that will be created and attached to the database. This storage can later be scaled up if needed. For Autonomous Databases on dedicated Exadata infrastructure, the maximum storage value is determined by the infrastructure shape. See [Characteristics of Infrastructure Shapes](https://www.oracle.com/pls/topic/lookup?ctx=en/cloud/paas/autonomous-database&id=ATPFG-GUID-B0F033C1-CC5A-42F0-B2E7-3CECFEDA1FD1) for shape details. A full Exadata service is allocated when the Autonomous Database size is set to the upper limit (384 TB).
722
714
 
723
715
  **Note:** This parameter cannot be used with the `dataStorageSizeInGBs` parameter. This input is ignored for Always Free resources.
724
716
  """
@@ -732,7 +724,7 @@ class AutonomousDatabaseArgs:
732
724
  @pulumi.getter(name="databaseEdition")
733
725
  def database_edition(self) -> Optional[pulumi.Input[_builtins.str]]:
734
726
  """
735
- (Updatable) The Oracle Database Edition that applies to the Autonomous databases. It can be set to `ENTERPRISE_EDITION` or `STANDARD_EDITION`.
727
+ (Updatable) The Oracle Database Edition that applies to the Autonomous databases. This parameter accepts options `STANDARD_EDITION` and `ENTERPRISE_EDITION`.
736
728
  """
737
729
  return pulumi.get(self, "database_edition")
738
730
 
@@ -770,7 +762,7 @@ class AutonomousDatabaseArgs:
770
762
  @pulumi.getter(name="dbVersion")
771
763
  def db_version(self) -> Optional[pulumi.Input[_builtins.str]]:
772
764
  """
773
- (Updatable) A valid Oracle Database version for Autonomous Database.`db_workload` AJD and APEX are only supported for `db_version` `19c` and above.
765
+ (Updatable) A valid Oracle Database version for Autonomous Database.`db_workload` AJD is only supported for `db_version` `19c` and above.
774
766
  """
775
767
  return pulumi.get(self, "db_version")
776
768
 
@@ -835,9 +827,6 @@ class AutonomousDatabaseArgs:
835
827
  @_builtins.property
836
828
  @pulumi.getter(name="enableDeleteScheduledOperations")
837
829
  def enable_delete_scheduled_operations(self) -> Optional[pulumi.Input[_builtins.bool]]:
838
- """
839
- 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.
840
- """
841
830
  return pulumi.get(self, "enable_delete_scheduled_operations")
842
831
 
843
832
  @enable_delete_scheduled_operations.setter
@@ -946,7 +935,7 @@ class AutonomousDatabaseArgs:
946
935
  @pulumi.getter(name="isDedicated")
947
936
  def is_dedicated(self) -> Optional[pulumi.Input[_builtins.bool]]:
948
937
  """
949
- True if the database is on [dedicated Exadata infrastructure](https://docs.cloud.oracle.com/iaas/Content/Database/Concepts/adbddoverview.htm).
938
+ True if the database is on [dedicated Exadata infrastructure](https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html).
950
939
  """
951
940
  return pulumi.get(self, "is_dedicated")
952
941
 
@@ -958,7 +947,7 @@ class AutonomousDatabaseArgs:
958
947
  @pulumi.getter(name="isDevTier")
959
948
  def is_dev_tier(self) -> Optional[pulumi.Input[_builtins.bool]]:
960
949
  """
961
- (Updatable) 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.
950
+ (Updatable) 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.
962
951
  """
963
952
  return pulumi.get(self, "is_dev_tier")
964
953
 
@@ -966,12 +955,18 @@ class AutonomousDatabaseArgs:
966
955
  def is_dev_tier(self, value: Optional[pulumi.Input[_builtins.bool]]):
967
956
  pulumi.set(self, "is_dev_tier", value)
968
957
 
958
+ @_builtins.property
959
+ @pulumi.getter(name="isDisableDbVersionUpgradeSchedule")
960
+ def is_disable_db_version_upgrade_schedule(self) -> Optional[pulumi.Input[_builtins.bool]]:
961
+ return pulumi.get(self, "is_disable_db_version_upgrade_schedule")
962
+
963
+ @is_disable_db_version_upgrade_schedule.setter
964
+ def is_disable_db_version_upgrade_schedule(self, value: Optional[pulumi.Input[_builtins.bool]]):
965
+ pulumi.set(self, "is_disable_db_version_upgrade_schedule", value)
966
+
969
967
  @_builtins.property
970
968
  @pulumi.getter(name="isDisconnectPeer")
971
969
  def is_disconnect_peer(self) -> Optional[pulumi.Input[_builtins.bool]]:
972
- """
973
- 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.
974
- """
975
970
  return pulumi.get(self, "is_disconnect_peer")
976
971
 
977
972
  @is_disconnect_peer.setter
@@ -982,7 +977,9 @@ class AutonomousDatabaseArgs:
982
977
  @pulumi.getter(name="isFreeTier")
983
978
  def is_free_tier(self) -> Optional[pulumi.Input[_builtins.bool]]:
984
979
  """
985
- (Updatable) 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. When `db_workload` is `AJD` or `APEX` it cannot be `true`.
980
+ (Updatable) 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.
981
+
982
+ 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 When `db_workload` is `AJD` it cannot be `true`.
986
983
  """
987
984
  return pulumi.get(self, "is_free_tier")
988
985
 
@@ -994,7 +991,7 @@ class AutonomousDatabaseArgs:
994
991
  @pulumi.getter(name="isLocalDataGuardEnabled")
995
992
  def is_local_data_guard_enabled(self) -> Optional[pulumi.Input[_builtins.bool]]:
996
993
  """
997
- (Updatable) Indicates whether the Autonomous Database has local (in-region) Data Guard enabled. It takes boolean values. Not applicable to cross-region Autonomous Data Guard associations, or to Autonomous Databases using dedicated Exadata infrastructure or Exadata Cloud@Customer infrastructure.
994
+ (Updatable) 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.
998
995
  """
999
996
  return pulumi.get(self, "is_local_data_guard_enabled")
1000
997
 
@@ -1005,9 +1002,6 @@ class AutonomousDatabaseArgs:
1005
1002
  @_builtins.property
1006
1003
  @pulumi.getter(name="isMtlsConnectionRequired")
1007
1004
  def is_mtls_connection_required(self) -> Optional[pulumi.Input[_builtins.bool]]:
1008
- """
1009
- (Updatable) Indicates whether the Autonomous Database requires mTLS connections.
1010
- """
1011
1005
  return pulumi.get(self, "is_mtls_connection_required")
1012
1006
 
1013
1007
  @is_mtls_connection_required.setter
@@ -1018,7 +1012,7 @@ class AutonomousDatabaseArgs:
1018
1012
  @pulumi.getter(name="isPreviewVersionWithServiceTermsAccepted")
1019
1013
  def is_preview_version_with_service_terms_accepted(self) -> Optional[pulumi.Input[_builtins.bool]]:
1020
1014
  """
1021
- If set to `TRUE`, indicates that an Autonomous Database preview version is being provisioned, and that the preview version's terms of service have been accepted. Note that preview version software is only available for databases on [Autonomous Database Serverless](https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html).
1015
+ If set to `TRUE`, indicates that an Autonomous Database preview version is being provisioned, and that the preview version's terms of service have been accepted. Note that preview version software is only available for Autonomous Database Serverless instances (https://docs.oracle.com/en/cloud/paas/autonomous-database/serverless/).
1022
1016
  """
1023
1017
  return pulumi.get(self, "is_preview_version_with_service_terms_accepted")
1024
1018
 
@@ -1030,7 +1024,7 @@ class AutonomousDatabaseArgs:
1030
1024
  @pulumi.getter(name="isRefreshableClone")
1031
1025
  def is_refreshable_clone(self) -> Optional[pulumi.Input[_builtins.bool]]:
1032
1026
  """
1033
- (Updatable) True for creating a refreshable clone and False for detaching the clone from source Autonomous Database. Detaching is one time operation and clone becomes a regular Autonomous Database.
1027
+ Indicates if the Autonomous Database is a refreshable clone.
1034
1028
  """
1035
1029
  return pulumi.get(self, "is_refreshable_clone")
1036
1030
 
@@ -1050,16 +1044,19 @@ class AutonomousDatabaseArgs:
1050
1044
  def is_replicate_automatic_backups(self, value: Optional[pulumi.Input[_builtins.bool]]):
1051
1045
  pulumi.set(self, "is_replicate_automatic_backups", value)
1052
1046
 
1047
+ @_builtins.property
1048
+ @pulumi.getter(name="isScheduleDbVersionUpgradeToEarliest")
1049
+ def is_schedule_db_version_upgrade_to_earliest(self) -> Optional[pulumi.Input[_builtins.bool]]:
1050
+ return pulumi.get(self, "is_schedule_db_version_upgrade_to_earliest")
1051
+
1052
+ @is_schedule_db_version_upgrade_to_earliest.setter
1053
+ def is_schedule_db_version_upgrade_to_earliest(self, value: Optional[pulumi.Input[_builtins.bool]]):
1054
+ pulumi.set(self, "is_schedule_db_version_upgrade_to_earliest", value)
1055
+
1053
1056
  @_builtins.property
1054
1057
  @pulumi.getter(name="isShrinkOnly")
1055
1058
  @_utilities.deprecated("""The 'is_shrink_only' field has been deprecated. Please use 'shrink_adb_trigger' instead.""")
1056
1059
  def is_shrink_only(self) -> Optional[pulumi.Input[_builtins.bool]]:
1057
- """
1058
- (Updatable) An optional property when enabled triggers the Shrinking of Autonomous Database once. To trigger Shrinking of ADB once again, this flag needs to be disabled and re-enabled again. It should not be passed during create database operation. It is only applicable on Serverless databases i.e. where `is_dedicated` is false.
1059
-
1060
- ** IMPORTANT **
1061
- Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
1062
- """
1063
1060
  return pulumi.get(self, "is_shrink_only")
1064
1061
 
1065
1062
  @is_shrink_only.setter
@@ -1069,9 +1066,6 @@ class AutonomousDatabaseArgs:
1069
1066
  @_builtins.property
1070
1067
  @pulumi.getter(name="keyVersionId")
1071
1068
  def key_version_id(self) -> Optional[pulumi.Input[_builtins.str]]:
1072
- """
1073
- The OCID of the key version that is used in rotate key operations.
1074
- """
1075
1069
  return pulumi.get(self, "key_version_id")
1076
1070
 
1077
1071
  @key_version_id.setter
@@ -1094,7 +1088,9 @@ class AutonomousDatabaseArgs:
1094
1088
  @pulumi.getter(name="licenseModel")
1095
1089
  def license_model(self) -> Optional[pulumi.Input[_builtins.str]]:
1096
1090
  """
1097
- (Updatable) 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 PaaS and IaaS services in the cloud. License Included allows you to subscribe to new Oracle Database software licenses and the Database service. Note that when provisioning an Autonomous Database on [dedicated Exadata infrastructure](https://docs.cloud.oracle.com/iaas/Content/Database/Concepts/adbddoverview.htm), this attribute must be null because the attribute is already set at the Autonomous Exadata Infrastructure level. When using [shared Exadata infrastructure](https://docs.cloud.oracle.com/iaas/Content/Database/Concepts/adboverview.htm#AEI), if a value is not specified, the system will supply the value of `BRING_YOUR_OWN_LICENSE`. It is a required field when `db_workload` is AJD and needs to be set to `LICENSE_INCLUDED` as AJD does not support default `license_model` value `BRING_YOUR_OWN_LICENSE`.
1091
+ (Updatable) 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.
1092
+
1093
+ This cannot be updated in parallel with any of the following: cpuCoreCount, computeCount, dataStorageSizeInTBs, adminPassword, isMTLSConnectionRequired, dbWorkload, privateEndpointLabel, nsgIds, dbVersion, dbName, scheduledOperations, dbToolsDetails, or isFreeTier. It is a required field when `db_workload` is AJD and needs to be set to `LICENSE_INCLUDED` as AJD does not support default `license_model` value `BRING_YOUR_OWN_LICENSE`.
1098
1094
  """
1099
1095
  return pulumi.get(self, "license_model")
1100
1096
 
@@ -1129,9 +1125,6 @@ class AutonomousDatabaseArgs:
1129
1125
  @_builtins.property
1130
1126
  @pulumi.getter(name="maxCpuCoreCount")
1131
1127
  def max_cpu_core_count(self) -> Optional[pulumi.Input[_builtins.int]]:
1132
- """
1133
- (Updatable) **Deprecated.** The number of Max OCPU cores to be made available to the autonomous database with auto scaling of cpu enabled.
1134
- """
1135
1128
  return pulumi.get(self, "max_cpu_core_count")
1136
1129
 
1137
1130
  @max_cpu_core_count.setter
@@ -1142,7 +1135,7 @@ class AutonomousDatabaseArgs:
1142
1135
  @pulumi.getter(name="ncharacterSet")
1143
1136
  def ncharacter_set(self) -> Optional[pulumi.Input[_builtins.str]]:
1144
1137
  """
1145
- The national character set for the autonomous database. The default is AL16UTF16. Allowed values are: AL16UTF16 or UTF8.
1138
+ The character set for the Autonomous Database. The default is AL32UTF8. Use [List Autonomous Database Character Sets](https://docs.oracle.com/iaas/autonomous-database-serverless/doc/autonomous-character-set-selection.html) to list the allowed values for an Autonomous Database Serverless instance. For an Autonomous Database on dedicated Exadata infrastructure, the allowed values are: AL16UTF16 or UTF8.
1146
1139
  """
1147
1140
  return pulumi.get(self, "ncharacter_set")
1148
1141
 
@@ -1169,13 +1162,12 @@ class AutonomousDatabaseArgs:
1169
1162
  """
1170
1163
  (Updatable) The number of OCPU cores to be made available to the database.
1171
1164
 
1172
-
1173
- * Providing `computeModel` and `computeCount` is the preferred method for setting CPUs for both OCPU and ECPU.
1174
1165
  The following points apply:
1175
- * For Autonomous Databases on dedicated Exadata infrastructure, to provision less than 1 core, enter a fractional value in an increment of 0.1. For example, you can provision 0.3 or 0.4 cores, but not 0.35 cores. (Note that fractional OCPU values are not supported for Autonomous Databasese on shared Exadata infrastructure.)
1176
- * To provision 1 or more cores, you must enter an integer between 1 and the maximum number of cores available for the infrastructure shape. For example, you can provision 2 cores or 3 cores, but not 2.5 cores. This applies to Autonomous Databases on both shared and dedicated Exadata infrastructure.
1166
+ * For Autonomous Databases on Dedicated Exadata infrastructure, to provision less than 1 core, enter a fractional value in an increment of 0.1. For example, you can provision 0.3 or 0.4 cores, but not 0.35 cores. (Note that fractional OCPU values are not supported for Autonomous Database Serverless instances.)
1167
+ * To provision 1 or more cores, you must enter an integer between 1 and the maximum number of cores available for the infrastructure shape. For example, you can provision 2 cores or 3 cores, but not 2.5 cores. This applies to an Autonomous Database Serverless instance or an Autonomous Database on Dedicated Exadata Infrastructure.
1168
+ * For Autonomous Database Serverless instances, this parameter is not used.
1177
1169
 
1178
- For Autonomous Databases on dedicated Exadata infrastructure, the maximum number of cores is determined by the infrastructure shape. See [Characteristics of Infrastructure Shapes](https://www.oracle.com/pls/topic/lookup?ctx=en/cloud/paas/autonomous-database&id=ATPFG-GUID-B0F033C1-CC5A-42F0-B2E7-3CECFEDA1FD1) for shape details.
1170
+ For Autonomous Databases on Dedicated Exadata infrastructure, the maximum number of cores is determined by the infrastructure shape. See [Characteristics of Infrastructure Shapes](https://www.oracle.com/pls/topic/lookup?ctx=en/cloud/paas/autonomous-database&id=ATPFG-GUID-B0F033C1-CC5A-42F0-B2E7-3CECFEDA1FD1) for shape details.
1179
1171
 
1180
1172
  **Note:** This parameter cannot be used with the `cpuCoreCount` parameter.
1181
1173
  """
@@ -1189,7 +1181,9 @@ class AutonomousDatabaseArgs:
1189
1181
  @pulumi.getter(name="openMode")
1190
1182
  def open_mode(self) -> Optional[pulumi.Input[_builtins.str]]:
1191
1183
  """
1192
- Indicates the Autonomous Database mode. The database can be opened in `READ_ONLY` or `READ_WRITE` mode.
1184
+ (Updatable) Indicates the Autonomous Database mode. The database can be opened in `READ_ONLY` or `READ_WRITE` mode.
1185
+
1186
+ This cannot be updated in parallel with any of the following: cpuCoreCount, computeCount, computeModel, adminPassword, whitelistedIps, isMTLSConnectionRequired, dbVersion, isRefreshable, dbName, scheduledOperations, dbToolsDetails, or isFreeTier.
1193
1187
  """
1194
1188
  return pulumi.get(self, "open_mode")
1195
1189
 
@@ -1201,7 +1195,7 @@ class AutonomousDatabaseArgs:
1201
1195
  @pulumi.getter(name="operationsInsightsStatus")
1202
1196
  def operations_insights_status(self) -> Optional[pulumi.Input[_builtins.str]]:
1203
1197
  """
1204
- (Updatable) Status of Operations Insights for this Autonomous Database. Values supported are `ENABLED` and `NOT_ENABLED`
1198
+ Status of Operations Insights for this Autonomous Database.
1205
1199
  """
1206
1200
  return pulumi.get(self, "operations_insights_status")
1207
1201
 
@@ -1212,9 +1206,6 @@ class AutonomousDatabaseArgs:
1212
1206
  @_builtins.property
1213
1207
  @pulumi.getter(name="peerDbId")
1214
1208
  def peer_db_id(self) -> Optional[pulumi.Input[_builtins.str]]:
1215
- """
1216
- 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.
1217
- """
1218
1209
  return pulumi.get(self, "peer_db_id")
1219
1210
 
1220
1211
  @peer_db_id.setter
@@ -1237,7 +1228,7 @@ class AutonomousDatabaseArgs:
1237
1228
  @pulumi.getter(name="privateEndpointIp")
1238
1229
  def private_endpoint_ip(self) -> Optional[pulumi.Input[_builtins.str]]:
1239
1230
  """
1240
- The private endpoint Ip address for the resource.
1231
+ (Updatable) The private endpoint Ip address for the resource.
1241
1232
  """
1242
1233
  return pulumi.get(self, "private_endpoint_ip")
1243
1234
 
@@ -1249,10 +1240,7 @@ class AutonomousDatabaseArgs:
1249
1240
  @pulumi.getter(name="privateEndpointLabel")
1250
1241
  def private_endpoint_label(self) -> Optional[pulumi.Input[_builtins.str]]:
1251
1242
  """
1252
- (Updatable) (Optional) (Updatable) The resource's private endpoint label.
1253
- * Setting the endpoint label to a non-empty string creates a private endpoint database.
1254
- * Resetting the endpoint label to an empty string, after the creation of the private endpoint database, changes the private endpoint database to a public endpoint database.
1255
- * Setting the endpoint label to a non-empty string value, updates to a new private endpoint database, when the database is disabled and re-enabled.
1243
+ (Updatable) The private endpoint label for the resource.
1256
1244
  """
1257
1245
  return pulumi.get(self, "private_endpoint_label")
1258
1246
 
@@ -1311,9 +1299,6 @@ class AutonomousDatabaseArgs:
1311
1299
  @_builtins.property
1312
1300
  @pulumi.getter(name="rotateKeyTrigger")
1313
1301
  def rotate_key_trigger(self) -> Optional[pulumi.Input[_builtins.bool]]:
1314
- """
1315
- (Updatable) An optional property when flipped triggers rotation of KMS key. It is only applicable on dedicated databases i.e. where `is_dedicated` is true.
1316
- """
1317
1302
  return pulumi.get(self, "rotate_key_trigger")
1318
1303
 
1319
1304
  @rotate_key_trigger.setter
@@ -1385,15 +1370,9 @@ class AutonomousDatabaseArgs:
1385
1370
  @pulumi.getter
1386
1371
  def source(self) -> Optional[pulumi.Input[_builtins.str]]:
1387
1372
  """
1388
- The source of the database:
1389
- * Use `NONE` for creating a new Autonomous Database.
1390
- * Use `DATABASE` for creating a new Autonomous Database by cloning an existing running Autonomous Database from the latest timestamp, also provide the source database OCID in the `source_id` parameter.
1391
- * Use `CROSS_REGION_DATAGUARD` to create a standby Data Guard database in another region, also provide the remote primary database OCID in the `source_id` parameter.
1392
- * Use `CLONE_TO_REFRESHABLE` for creating a refreshable clone.
1373
+ The source of the database: Use `NONE` for creating a new Autonomous Database. Use `DATABASE` for creating a new Autonomous Database by cloning an existing Autonomous Database. Use `CROSS_REGION_DATAGUARD` to create a standby Data Guard database in another region.
1393
1374
 
1394
- For [Autonomous Database Serverless](https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html) instances, the following cloning options are available:
1395
- * Use `BACKUP_FROM_ID` for creating a new Autonomous Database by cloning from a specified backup. Also provide the backup OCID in the `autonomous_database_backup_id` parameter.
1396
- * Use `BACKUP_FROM_TIMESTAMP` for creating a point-in-time Autonomous Database clone using backups. Also provide the backup timestamp in the `timestamp` parameter. For more information, see [Cloning and Moving an Autonomous Database](https://docs.oracle.com/en/cloud/paas/autonomous-database/adbsa/clone-autonomous-database.html#GUID-D771796F-5081-4CFB-A7FF-0F893EABD7BC).
1375
+ For [Autonomous Database Serverless instances](https://docs.oracle.com/en/cloud/paas/autonomous-database/serverless/), the following cloning options are available: Use `BACKUP_FROM_ID` for creating a new Autonomous Database from a specified backup. Use `BACKUP_FROM_TIMESTAMP` for creating a point-in-time Autonomous Database clone using backups. For more information, see [Cloning and Moving an Autonomous Database](https://docs.oracle.com/en/cloud/paas/autonomous-database/adbsa/clone-autonomous-database.html#GUID-D771796F-5081-4CFB-A7FF-0F893EABD7BC).
1397
1376
  """
1398
1377
  return pulumi.get(self, "source")
1399
1378
 
@@ -1405,7 +1384,7 @@ class AutonomousDatabaseArgs:
1405
1384
  @pulumi.getter(name="sourceId")
1406
1385
  def source_id(self) -> Optional[pulumi.Input[_builtins.str]]:
1407
1386
  """
1408
- The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the source Autonomous Database that will be used to create a new standby database for the Data Guard association.
1387
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the source Autonomous Database that will be used to create a new peer database for the Data Guard association.
1409
1388
  """
1410
1389
  return pulumi.get(self, "source_id")
1411
1390
 
@@ -1419,12 +1398,10 @@ class AutonomousDatabaseArgs:
1419
1398
  """
1420
1399
  (Updatable) 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`.
1421
1400
 
1422
- For Autonomous Database Serverless instances, this is an array of CIDR (Classless Inter-Domain Routing) notations for a subnet or VCN OCID. Use a semicolon (;) as a deliminator between the VCN-specific subnets or IPs. Example: `["1.1.1.1","1.1.1.0/24","ocid1.vcn.oc1.sea.<unique_id>","ocid1.vcn.oc1.sea.<unique_id1>;1.1.1.1","ocid1.vcn.oc1.sea.<unique_id2>;1.1.0.0/16"]` For Exadata Cloud@Customer, this is an array of IP addresses or CIDR (Classless Inter-Domain Routing) notations. Example: `["1.1.1.1","1.1.1.0/24","1.1.2.25"]`
1401
+ For Autonomous Database Serverless, this is an array of CIDR (classless inter-domain routing) notations for a subnet or VCN OCID (virtual cloud network Oracle Cloud ID). Multiple IPs and VCN OCIDs should be separate strings separated by commas, but if it’s other configurations that need multiple pieces of information then its each piece is connected with semicolon (;) as a delimiter. Example: `["1.1.1.1","1.1.1.0/24","ocid1.vcn.oc1.sea.<unique_id>","ocid1.vcn.oc1.sea.<unique_id1>;1.1.1.1","ocid1.vcn.oc1.sea.<unique_id2>;1.1.0.0/16"]` For Exadata Cloud@Customer, this is an array of IP addresses or CIDR notations. Example: `["1.1.1.1","1.1.1.0/24","1.1.2.25"]`
1423
1402
 
1424
1403
  For an update operation, if you want to delete all the IPs in the ACL, use an array with a single empty string entry.
1425
1404
 
1426
- If `arePrimaryWhitelistedIpsUsed` is 'TRUE' then Autonomous Database uses `whitelisted_ips` primary's IP access control list (ACL) as `standbywhitelistedips` for the disaster recovery peer.
1427
-
1428
1405
  This cannot be updated in parallel with any of the following: licenseModel, dbEdition, cpuCoreCount, computeCount, computeModel, adminPassword, isMTLSConnectionRequired, openMode, permissionLevel, dbWorkload, dbVersion, isRefreshable, dbName, scheduledOperations, dbToolsDetails, isLocalDataGuardEnabled, or isFreeTier.
1429
1406
  """
1430
1407
  return pulumi.get(self, "standby_whitelisted_ips")
@@ -1449,12 +1426,14 @@ class AutonomousDatabaseArgs:
1449
1426
  @pulumi.getter(name="subnetId")
1450
1427
  def subnet_id(self) -> Optional[pulumi.Input[_builtins.str]]:
1451
1428
  """
1452
- (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet the resource is associated with. This the only parameter to configure private endpoint, VCN details are obtained from the `subnet_id`.
1429
+ (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet the resource is associated with.
1453
1430
 
1454
1431
  **Subnet Restrictions:**
1455
1432
  * For bare metal DB systems and for single node virtual machine DB systems, do not use a subnet that overlaps with 192.168.16.16/28.
1456
1433
  * For Exadata and virtual machine 2-node RAC systems, do not use a subnet that overlaps with 192.168.128.0/20.
1457
1434
  * For Autonomous Database, setting this will disable public secure access to the database.
1435
+
1436
+ 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.
1458
1437
  """
1459
1438
  return pulumi.get(self, "subnet_id")
1460
1439
 
@@ -1467,7 +1446,6 @@ class AutonomousDatabaseArgs:
1467
1446
  def subscription_id(self) -> Optional[pulumi.Input[_builtins.str]]:
1468
1447
  """
1469
1448
  The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subscription with which resource needs to be associated with.
1470
- 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.
1471
1449
  """
1472
1450
  return pulumi.get(self, "subscription_id")
1473
1451
 
@@ -1478,9 +1456,6 @@ class AutonomousDatabaseArgs:
1478
1456
  @_builtins.property
1479
1457
  @pulumi.getter(name="switchoverTo")
1480
1458
  def switchover_to(self) -> Optional[pulumi.Input[_builtins.str]]:
1481
- """
1482
- It is applicable only when `is_local_data_guard_enabled` is true. Could be set to `PRIMARY` or `STANDBY`. Default value is `PRIMARY`.
1483
- """
1484
1459
  return pulumi.get(self, "switchover_to")
1485
1460
 
1486
1461
  @switchover_to.setter
@@ -1490,9 +1465,6 @@ class AutonomousDatabaseArgs:
1490
1465
  @_builtins.property
1491
1466
  @pulumi.getter(name="switchoverToRemotePeerId")
1492
1467
  def switchover_to_remote_peer_id(self) -> Optional[pulumi.Input[_builtins.str]]:
1493
- """
1494
- (Updatable) It is applicable only when `dataguard_region_type` and `role` are set, and `is_dedicated` is false. For Autonomous Database Serverless instances, Data Guard associations have designated primary and standby regions, and these region types do not change when the database changes roles. It takes the [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the remote peer to switchover to and the API is called from the remote region.
1495
- """
1496
1468
  return pulumi.get(self, "switchover_to_remote_peer_id")
1497
1469
 
1498
1470
  @switchover_to_remote_peer_id.setter
@@ -1503,7 +1475,7 @@ class AutonomousDatabaseArgs:
1503
1475
  @pulumi.getter(name="timeOfAutoRefreshStart")
1504
1476
  def time_of_auto_refresh_start(self) -> Optional[pulumi.Input[_builtins.str]]:
1505
1477
  """
1506
- 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.
1478
+ (Updatable) 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.
1507
1479
  """
1508
1480
  return pulumi.get(self, "time_of_auto_refresh_start")
1509
1481
 
@@ -1511,6 +1483,18 @@ class AutonomousDatabaseArgs:
1511
1483
  def time_of_auto_refresh_start(self, value: Optional[pulumi.Input[_builtins.str]]):
1512
1484
  pulumi.set(self, "time_of_auto_refresh_start", value)
1513
1485
 
1486
+ @_builtins.property
1487
+ @pulumi.getter(name="timeScheduledDbVersionUpgrade")
1488
+ def time_scheduled_db_version_upgrade(self) -> Optional[pulumi.Input[_builtins.str]]:
1489
+ """
1490
+ The date and time the Autonomous Database scheduled to upgrade to 23ai. Send this value along with the target db_version value to schedule the database version upgrade. After the upgrade is scheduled and before the scheduled upgrade time arrives, please keep the db_version value the same as the backend's current db_version.
1491
+ """
1492
+ return pulumi.get(self, "time_scheduled_db_version_upgrade")
1493
+
1494
+ @time_scheduled_db_version_upgrade.setter
1495
+ def time_scheduled_db_version_upgrade(self, value: Optional[pulumi.Input[_builtins.str]]):
1496
+ pulumi.set(self, "time_scheduled_db_version_upgrade", value)
1497
+
1514
1498
  @_builtins.property
1515
1499
  @pulumi.getter
1516
1500
  def timestamp(self) -> Optional[pulumi.Input[_builtins.str]]:
@@ -1539,7 +1523,7 @@ class AutonomousDatabaseArgs:
1539
1523
  @pulumi.getter(name="vaultId")
1540
1524
  def vault_id(self) -> Optional[pulumi.Input[_builtins.str]]:
1541
1525
  """
1542
- 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).
1526
+ 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.
1543
1527
  """
1544
1528
  return pulumi.get(self, "vault_id")
1545
1529
 
@@ -1551,13 +1535,17 @@ class AutonomousDatabaseArgs:
1551
1535
  @pulumi.getter(name="whitelistedIps")
1552
1536
  def whitelisted_ips(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
1553
1537
  """
1554
- (Updatable) The client IP access control list (ACL). This feature is available for autonomous databases on [shared Exadata infrastructure](https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html) and on Exadata Cloud@Customer. Only clients connecting from an IP address included in the ACL may access the Autonomous Database instance.
1538
+ (Updatable) 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`.
1555
1539
 
1556
- For Autonomous Database Serverless instances, this is an array of CIDR (Classless Inter-Domain Routing) notations for a subnet or VCN OCID. Use a semicolon (;) as a deliminator between the VCN-specific subnets or IPs. Example: `["1.1.1.1","1.1.1.0/24","ocid1.vcn.oc1.sea.<unique_id>","ocid1.vcn.oc1.sea.<unique_id1>;1.1.1.1","ocid1.vcn.oc1.sea.<unique_id2>;1.1.0.0/16"]` For Exadata Cloud@Customer, this is an array of IP addresses or CIDR (Classless Inter-Domain Routing) notations. Example: `["1.1.1.1","1.1.1.0/24","1.1.2.25"]`
1540
+ For Autonomous Database Serverless, this is an array of CIDR (classless inter-domain routing) notations for a subnet or VCN OCID (virtual cloud network Oracle Cloud ID). Multiple IPs and VCN OCIDs should be separate strings separated by commas, but if it’s other configurations that need multiple pieces of information then its each piece is connected with semicolon (;) as a delimiter. Example: `["1.1.1.1","1.1.1.0/24","ocid1.vcn.oc1.sea.<unique_id>","ocid1.vcn.oc1.sea.<unique_id1>;1.1.1.1","ocid1.vcn.oc1.sea.<unique_id2>;1.1.0.0/16"]` For Exadata Cloud@Customer, this is an array of IP addresses or CIDR notations. Example: `["1.1.1.1","1.1.1.0/24","1.1.2.25"]`
1557
1541
 
1558
1542
  For an update operation, if you want to delete all the IPs in the ACL, use an array with a single empty string entry.
1559
1543
 
1560
1544
  This cannot be updated in parallel with any of the following: licenseModel, dbEdition, cpuCoreCount, computeCount, computeModel, adminPassword, isMTLSConnectionRequired, openMode, permissionLevel, dbWorkload, dbVersion, isRefreshable, dbName, scheduledOperations, dbToolsDetails, isLocalDataGuardEnabled, or isFreeTier. To remove all whitelisted IPs, set the field to a list with an empty string `[""]`.
1545
+
1546
+
1547
+ ** IMPORTANT **
1548
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
1561
1549
  """
1562
1550
  return pulumi.get(self, "whitelisted_ips")
1563
1551
 
@@ -1625,6 +1613,7 @@ class _AutonomousDatabaseState:
1625
1613
  is_data_guard_enabled: Optional[pulumi.Input[_builtins.bool]] = None,
1626
1614
  is_dedicated: Optional[pulumi.Input[_builtins.bool]] = None,
1627
1615
  is_dev_tier: Optional[pulumi.Input[_builtins.bool]] = None,
1616
+ is_disable_db_version_upgrade_schedule: Optional[pulumi.Input[_builtins.bool]] = None,
1628
1617
  is_disconnect_peer: Optional[pulumi.Input[_builtins.bool]] = None,
1629
1618
  is_free_tier: Optional[pulumi.Input[_builtins.bool]] = None,
1630
1619
  is_local_data_guard_enabled: Optional[pulumi.Input[_builtins.bool]] = None,
@@ -1635,6 +1624,7 @@ class _AutonomousDatabaseState:
1635
1624
  is_refreshable_clone: Optional[pulumi.Input[_builtins.bool]] = None,
1636
1625
  is_remote_data_guard_enabled: Optional[pulumi.Input[_builtins.bool]] = None,
1637
1626
  is_replicate_automatic_backups: Optional[pulumi.Input[_builtins.bool]] = None,
1627
+ is_schedule_db_version_upgrade_to_earliest: Optional[pulumi.Input[_builtins.bool]] = None,
1638
1628
  is_shrink_only: Optional[pulumi.Input[_builtins.bool]] = None,
1639
1629
  key_history_entries: Optional[pulumi.Input[Sequence[pulumi.Input['AutonomousDatabaseKeyHistoryEntryArgs']]]] = None,
1640
1630
  key_store_id: Optional[pulumi.Input[_builtins.str]] = None,
@@ -1697,6 +1687,8 @@ class _AutonomousDatabaseState:
1697
1687
  time_data_guard_role_changed: Optional[pulumi.Input[_builtins.str]] = None,
1698
1688
  time_deletion_of_free_autonomous_database: Optional[pulumi.Input[_builtins.str]] = None,
1699
1689
  time_disaster_recovery_role_changed: Optional[pulumi.Input[_builtins.str]] = None,
1690
+ time_earliest_available_db_version_upgrade: Optional[pulumi.Input[_builtins.str]] = None,
1691
+ time_latest_available_db_version_upgrade: Optional[pulumi.Input[_builtins.str]] = None,
1700
1692
  time_local_data_guard_enabled: Optional[pulumi.Input[_builtins.str]] = None,
1701
1693
  time_maintenance_begin: Optional[pulumi.Input[_builtins.str]] = None,
1702
1694
  time_maintenance_end: Optional[pulumi.Input[_builtins.str]] = None,
@@ -1708,6 +1700,7 @@ class _AutonomousDatabaseState:
1708
1700
  time_of_last_switchover: Optional[pulumi.Input[_builtins.str]] = None,
1709
1701
  time_of_next_refresh: Optional[pulumi.Input[_builtins.str]] = None,
1710
1702
  time_reclamation_of_free_autonomous_database: Optional[pulumi.Input[_builtins.str]] = None,
1703
+ time_scheduled_db_version_upgrade: Optional[pulumi.Input[_builtins.str]] = None,
1711
1704
  time_undeleted: Optional[pulumi.Input[_builtins.str]] = None,
1712
1705
  time_until_reconnect_clone_enabled: Optional[pulumi.Input[_builtins.str]] = None,
1713
1706
  timestamp: Optional[pulumi.Input[_builtins.str]] = None,
@@ -1726,36 +1719,33 @@ class _AutonomousDatabaseState:
1726
1719
  :param pulumi.Input[_builtins.bool] are_primary_whitelisted_ips_used: (Updatable) 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.
1727
1720
  :param pulumi.Input[_builtins.int] auto_refresh_frequency_in_seconds: (Updatable) 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.
1728
1721
  :param pulumi.Input[_builtins.int] auto_refresh_point_lag_in_seconds: (Updatable) 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.
1729
- :param pulumi.Input[_builtins.str] autonomous_container_database_id: The Autonomous Container Database [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
1722
+ :param pulumi.Input[_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.
1730
1723
  :param pulumi.Input[_builtins.str] autonomous_database_backup_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the source Autonomous Database Backup that you will clone to create a new Autonomous Database.
1731
1724
  :param pulumi.Input[_builtins.str] autonomous_database_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the source Autonomous Database that you will clone to create a new Autonomous Database.
1732
- :param pulumi.Input[_builtins.str] autonomous_maintenance_schedule_type: The maintenance schedule type of the Autonomous Database Serverless instances. The EARLY maintenance schedule of this Autonomous Database follows a schedule that applies patches prior to the REGULAR schedule.The REGULAR maintenance schedule of this Autonomous Database follows the normal cycle.
1725
+ :param pulumi.Input[_builtins.str] autonomous_maintenance_schedule_type: (Updatable) 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
1733
1726
  :param pulumi.Input[_builtins.str] availability_domain: The availability domain of a local Autonomous Data Guard standby database of an Autonomous Database Serverless instance.
1734
1727
  :param pulumi.Input[Sequence[pulumi.Input[_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.
1735
1728
  :param pulumi.Input[Sequence[pulumi.Input['AutonomousDatabaseBackupConfigArgs']]] 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.
1736
- :param pulumi.Input[_builtins.int] backup_retention_period_in_days: (Updatable) Retention period, in days, for backups.
1737
- :param pulumi.Input[_builtins.str] character_set: The character set for the autonomous database. The default is AL32UTF8. Allowed values for an Autonomous Database on Serverless infrastructure as returned by [List Autonomous Database Character Sets](https://www.terraform.io/autonomousDatabaseCharacterSets)
1729
+ :param pulumi.Input[_builtins.int] backup_retention_period_in_days: (Updatable) Retention period, in days, for long-term backups
1730
+ :param pulumi.Input[_builtins.float] byol_compute_count_limit: (Updatable) 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.
1731
+ :param pulumi.Input[_builtins.str] character_set: The character set for the autonomous database. The default is AL32UTF8. Allowed values for an Autonomous Database Serverless instance as as returned by [List Autonomous Database Character Sets](https://docs.oracle.com/iaas/autonomous-database-serverless/doc/autonomous-character-set-selection.html)
1732
+
1733
+ For an Autonomous Database on dedicated infrastructure, the allowed values are:
1738
1734
 
1739
- For an Autonomous Database on dedicated infrastructure, the allowed values are
1740
1735
  AL32UTF8, AR8ADOS710, AR8ADOS720, AR8APTEC715, AR8ARABICMACS, AR8ASMO8X, AR8ISO8859P6, AR8MSWIN1256, AR8MUSSAD768, AR8NAFITHA711, AR8NAFITHA721, AR8SAKHR706, AR8SAKHR707, AZ8ISO8859P9E, BG8MSWIN, BG8PC437S, BLT8CP921, BLT8ISO8859P13, BLT8MSWIN1257, BLT8PC775, BN8BSCII, CDN8PC863, CEL8ISO8859P14, CL8ISO8859P5, CL8ISOIR111, CL8KOI8R, CL8KOI8U, CL8MACCYRILLICS, CL8MSWIN1251, EE8ISO8859P2, EE8MACCES, EE8MACCROATIANS, EE8MSWIN1250, EE8PC852, EL8DEC, EL8ISO8859P7, EL8MACGREEKS, EL8MSWIN1253, EL8PC437S, EL8PC851, EL8PC869, ET8MSWIN923, HU8ABMOD, HU8CWI2, IN8ISCII, IS8PC861, IW8ISO8859P8, IW8MACHEBREWS, IW8MSWIN1255, IW8PC1507, JA16EUC, JA16EUCTILDE, JA16SJIS, JA16SJISTILDE, JA16VMS, KO16KSC5601, KO16KSCCS, KO16MSWIN949, LA8ISO6937, LA8PASSPORT, LT8MSWIN921, LT8PC772, LT8PC774, LV8PC1117, LV8PC8LR, LV8RST104090, N8PC865, NE8ISO8859P10, NEE8ISO8859P4, RU8BESTA, RU8PC855, RU8PC866, SE8ISO8859P3, TH8MACTHAIS, TH8TISASCII, TR8DEC, TR8MACTURKISHS, TR8MSWIN1254, TR8PC857, US7ASCII, US8PC437, UTF8, VN8MSWIN1258, VN8VN3, WE8DEC, WE8DG, WE8ISO8859P1, WE8ISO8859P15, WE8ISO8859P9, WE8MACROMAN8S, WE8MSWIN1252, WE8NCR4970, WE8NEXTSTEP, WE8PC850, WE8PC858, WE8PC860, WE8ROMAN8, ZHS16CGB231280, ZHS16GBK, ZHT16BIG5, ZHT16CCDC, ZHT16DBT, ZHT16HKSCS, ZHT16MSWIN950, ZHT32EUC, ZHT32SOPS, ZHT32TRIS
1741
1736
  :param pulumi.Input[Sequence[pulumi.Input[_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.
1742
- :param pulumi.Input[_builtins.str] clone_type: The Autonomous Database clone type. This parameter is not used to create a refreshable clone type, and for refreshable clones one must use the (source=CLONE_TO_REFRESHABLE) parameter.
1737
+ :param pulumi.Input[_builtins.str] clone_type: The Autonomous Database clone type.
1743
1738
  * `FULL` - This option creates a new database that includes all source database data.
1744
1739
  * `METADATA` - This option creates a new database that includes the source database schema and select metadata, but not the source database data.
1745
1740
  :param pulumi.Input[_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.
1746
1741
  :param pulumi.Input[_builtins.str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment of the Autonomous Database.
1747
- :param pulumi.Input[_builtins.float] compute_count: (Updatable) The compute amount available to the database. Minimum and maximum values depend on the compute model and whether the database is an Autonomous Database Serverless instance or an Autonomous Database on Dedicated Exadata Infrastructure. For an Autonomous Database Serverless instance, the 'ECPU' compute model requires a minimum value of one, for databases in the elastic resource pool and minimum value of two, otherwise. Required when using the `computeModel` parameter. When using `cpuCoreCount` parameter, it is an error to specify computeCount to a non-null value. Providing `computeModel` and `computeCount` is the preferred method for both OCPU and ECPU.
1742
+ :param pulumi.Input[_builtins.float] compute_count: (Updatable) The compute amount (CPUs) available to the database. Minimum and maximum values depend on the compute model and whether the database is an Autonomous Database Serverless instance or an Autonomous Database on Dedicated Exadata Infrastructure. The 'ECPU' compute model requires a minimum value of one, for databases in the elastic resource pool and minimum value of two, otherwise. Required when using the `computeModel` parameter. When using `cpuCoreCount` parameter, it is an error to specify computeCount to a non-null value. Providing `computeModel` and `computeCount` is the preferred method for both OCPU and ECPU.
1748
1743
  :param pulumi.Input[_builtins.str] compute_model: (Updatable) The compute model of the Autonomous Database. This is required if using the `computeCount` parameter. If using `cpuCoreCount` then it is an error to specify `computeModel` to a non-null value. ECPU compute model is the recommended model and OCPU compute model is legacy.
1749
1744
  :param pulumi.Input[Sequence[pulumi.Input['AutonomousDatabaseConnectionStringArgs']]] connection_strings: The connection string used to connect to the Autonomous Database. The username for the Service Console is ADMIN. Use the password you entered when creating the Autonomous Database for the password value.
1750
1745
  :param pulumi.Input[Sequence[pulumi.Input['AutonomousDatabaseConnectionUrlArgs']]] connection_urls: The URLs for accessing Oracle Application Express (APEX) and SQL Developer Web with a browser from a Compute instance within your VCN or that has a direct connection to your VCN. Note that these URLs are provided by the console only for databases on [dedicated Exadata infrastructure](https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html). Example: `{"sqlDevWebUrl": "https://<hostname>/ords...", "apexUrl", "https://<hostname>/ords..."}`
1751
1746
  :param pulumi.Input[_builtins.int] cpu_core_count: (Updatable) The number of CPU cores to be made available to the database. For Autonomous Databases on dedicated Exadata infrastructure, the maximum number of cores is determined by the infrastructure shape. See [Characteristics of Infrastructure Shapes](https://www.oracle.com/pls/topic/lookup?ctx=en/cloud/paas/autonomous-database&id=ATPFG-GUID-B0F033C1-CC5A-42F0-B2E7-3CECFEDA1FD1) for shape details.
1747
+
1752
1748
  **Note:** This parameter cannot be used with the `ocpuCount` parameter. This input is ignored for Always Free resources.
1753
- * The data type must be an *integer*.
1754
- * The minimum number of cores for all types of autonomous database is *1*
1755
- * The maximum number of cores is as follows:
1756
- * Autonomous Database Serverless instances: The maximum number of cores is *128*.
1757
- * Autonomous Databases on dedicated Exadata infrastructure: The maximum number of cores is determined by the infrastructure shape. See [Characteristics of Infrastructure Shapes](https://www.oracle.com/pls/topic/lookup?ctx=en/cloud/paas/autonomous-database&id=ATPFG-GUID-B0F033C1-CC5A-42F0-B2E7-3CECFEDA1FD1) for shape details.
1758
- * Providing `computeModel` and `computeCount` is the preferred method for setting CPUs for both OCPU and ECPU.
1759
1749
  :param pulumi.Input[Sequence[pulumi.Input['AutonomousDatabaseCustomerContactArgs']]] customer_contacts: (Updatable) Customer Contacts.
1760
1750
  :param pulumi.Input[_builtins.str] data_safe_status: (Updatable) Status of the Data Safe registration for this Autonomous Database. Could be REGISTERED or NOT_REGISTERED.
1761
1751
  :param pulumi.Input[_builtins.int] data_storage_size_in_gb: (Updatable) The size, in gigabytes, of the data volume that will be created and attached to the database. This storage can later be scaled up if needed. The maximum storage value is determined by the infrastructure shape. See [Characteristics of Infrastructure Shapes](https://www.oracle.com/pls/topic/lookup?ctx=en/cloud/paas/autonomous-database&id=ATPFG-GUID-B0F033C1-CC5A-42F0-B2E7-3CECFEDA1FD1) for shape details.
@@ -1763,17 +1753,17 @@ class _AutonomousDatabaseState:
1763
1753
  **Notes**
1764
1754
  * This parameter is only supported for dedicated Exadata infrastructure.
1765
1755
  * This parameter cannot be used with the `dataStorageSizeInTBs` parameter.
1766
- :param pulumi.Input[_builtins.int] data_storage_size_in_tbs: (Updatable) The size, in terabytes, of the data volume that will be created and attached to the database. This storage can later be scaled up if needed. For Autonomous Databases on dedicated Exadata infrastructure, the maximum storage value is determined by the infrastructure shape. See [Characteristics of Infrastructure Shapes](https://www.oracle.com/pls/topic/lookup?ctx=en/cloud/paas/autonomous-database&id=ATPFG-GUID-B0F033C1-CC5A-42F0-B2E7-3CECFEDA1FD1) for shape details. A full Exadata service is allocated when the Autonomous Database size is set to the upper limit (384 TB).
1756
+ :param pulumi.Input[_builtins.int] data_storage_size_in_tbs: (Updatable) The size, in terabytes, of the data volume that will be created and attached to the database. This storage can later be scaled up if needed. For Autonomous Databases on dedicated Exadata infrastructure, the maximum storage value is determined by the infrastructure shape. See [Characteristics of Infrastructure Shapes](https://www.oracle.com/pls/topic/lookup?ctx=en/cloud/paas/autonomous-database&id=ATPFG-GUID-B0F033C1-CC5A-42F0-B2E7-3CECFEDA1FD1) for shape details. A full Exadata service is allocated when the Autonomous Database size is set to the upper limit (384 TB).
1767
1757
 
1768
1758
  **Note:** This parameter cannot be used with the `dataStorageSizeInGBs` parameter. This input is ignored for Always Free resources.
1769
- :param pulumi.Input[_builtins.str] database_edition: (Updatable) The Oracle Database Edition that applies to the Autonomous databases. It can be set to `ENTERPRISE_EDITION` or `STANDARD_EDITION`.
1759
+ :param pulumi.Input[_builtins.str] database_edition: (Updatable) The Oracle Database Edition that applies to the Autonomous databases. This parameter accepts options `STANDARD_EDITION` and `ENTERPRISE_EDITION`.
1770
1760
  :param pulumi.Input[_builtins.str] database_management_status: Status of Database Management for this Autonomous Database.
1771
- :param pulumi.Input[_builtins.str] dataguard_region_type: **Deprecated** (Optional) The Autonomous Data Guard region type of the Autonomous Database. For Autonomous Database Serverless instances, Data Guard associations have designated primary (`PRIMARY_DG_REGION`) and standby (`REMOTE_STANDBY_DG_REGION`) regions, and these region types do not change when the database changes roles. The standby regions in Data Guard associations can be the same region designated as the primary region, or they can be remote regions. Certain database administrative operations may be available only in the primary region of the Data Guard association, and cannot be performed when the database using the "primary" role is operating in a remote Data Guard standby region.
1772
- :param pulumi.Input[_builtins.str] db_name: The database name. The name must begin with an alphabetic character and can contain a maximum of 14 alphanumeric characters. Special characters are not permitted. The database name must be unique in the tenancy. It is required in all cases except when creating a cross-region Autonomous Data Guard standby instance or a cross-region disaster recovery standby instance.
1761
+ :param pulumi.Input[_builtins.str] dataguard_region_type: **Deprecated.** The Autonomous Data Guard region type of the Autonomous Database. For Autonomous Database Serverless, Autonomous Data Guard associations have designated primary and standby regions, and these region types do not change when the database changes roles. The standby regions in Autonomous Data Guard associations can be the same region designated as the primary region, or they can be remote regions. Certain database administrative operations may be available only in the primary region of the Autonomous Data Guard association, and cannot be performed when the database using the primary role is operating in a remote Autonomous Data Guard standby region.
1762
+ :param pulumi.Input[_builtins.str] db_name: The database name. The name must begin with an alphabetic character and can contain a maximum of 30 alphanumeric characters. Special characters are not permitted. The database name must be unique in the tenancy. It is required in all cases except when creating a cross-region Autonomous Data Guard standby instance or a cross-region disaster recovery standby instance.
1773
1763
  :param pulumi.Input[Sequence[pulumi.Input['AutonomousDatabaseDbToolsDetailArgs']]] db_tools_details: (Updatable) The list of database tools details.
1774
1764
 
1775
1765
  This cannot be updated in parallel with any of the following: licenseModel, dbEdition, cpuCoreCount, computeCount, computeModel, whitelistedIps, isMTLSConnectionRequired, openMode, permissionLevel, dbWorkload, privateEndpointLabel, nsgIds, dbVersion, isRefreshable, dbName, scheduledOperations, isLocalDataGuardEnabled, or isFreeTier.
1776
- :param pulumi.Input[_builtins.str] db_version: (Updatable) A valid Oracle Database version for Autonomous Database.`db_workload` AJD and APEX are only supported for `db_version` `19c` and above.
1766
+ :param pulumi.Input[_builtins.str] db_version: (Updatable) A valid Oracle Database version for Autonomous Database.`db_workload` AJD is only supported for `db_version` `19c` and above.
1777
1767
  :param pulumi.Input[_builtins.str] db_workload: (Updatable) The Autonomous Database workload type. The following values are valid:
1778
1768
  * OLTP - indicates an Autonomous Transaction Processing database
1779
1769
  * DW - indicates an Autonomous Data Warehouse database
@@ -1782,10 +1772,9 @@ class _AutonomousDatabaseState:
1782
1772
 
1783
1773
  This cannot be updated in parallel with any of the following: licenseModel, dbEdition, cpuCoreCount, computeCount, computeModel, adminPassword, whitelistedIps, isMTLSConnectionRequired, privateEndpointLabel, nsgIds, dbVersion, isRefreshable, dbName, scheduledOperations, dbToolsDetails, isLocalDataGuardEnabled, or isFreeTier. *Note: `db_workload` can only be updated from AJD to OLTP or from a free OLTP to AJD.
1784
1774
  :param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] defined_tags: (Updatable) 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).
1785
- :param pulumi.Input[_builtins.str] disaster_recovery_region_type: **Deprecated** The disaster recovery (DR) region type of the Autonomous Database. For Serverless Autonomous Databases, DR associations have designated primary (`PRIMARY`) and standby (`REMOTE`) 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.
1775
+ :param pulumi.Input[_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.
1786
1776
  :param pulumi.Input[_builtins.str] disaster_recovery_type: Indicates the disaster recovery (DR) type of the standby 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.
1787
1777
  :param pulumi.Input[_builtins.str] display_name: (Updatable) The user-friendly name for the Autonomous Database. The name does not have to be unique.
1788
- :param pulumi.Input[_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.
1789
1778
  :param pulumi.Input['AutonomousDatabaseEncryptionKeyArgs'] encryption_key: (Updatable) Details of the Autonomous Database encryption key.
1790
1779
  :param pulumi.Input[Sequence[pulumi.Input['AutonomousDatabaseEncryptionKeyHistoryEntryArgs']]] encryption_key_history_entries: Key History Entry.
1791
1780
  :param pulumi.Input[_builtins.int] failed_data_recovery_in_seconds: Indicates the number of seconds of data loss for a Data Guard failover.
@@ -1800,65 +1789,58 @@ class _AutonomousDatabaseState:
1800
1789
  :param pulumi.Input[_builtins.bool] is_auto_scaling_for_storage_enabled: (Updatable) Indicates if auto scaling is enabled for the Autonomous Database storage. The default value is `FALSE`.
1801
1790
  :param pulumi.Input[_builtins.bool] is_backup_retention_locked: (Updatable) True if the Autonomous Database is backup retention locked.
1802
1791
  :param pulumi.Input[_builtins.bool] is_data_guard_enabled: (Updatable) **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.
1803
- :param pulumi.Input[_builtins.bool] is_dedicated: True if the database is on [dedicated Exadata infrastructure](https://docs.cloud.oracle.com/iaas/Content/Database/Concepts/adbddoverview.htm).
1804
- :param pulumi.Input[_builtins.bool] is_dev_tier: (Updatable) 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.
1805
- :param pulumi.Input[_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.
1806
- :param pulumi.Input[_builtins.bool] is_free_tier: (Updatable) 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. When `db_workload` is `AJD` or `APEX` it cannot be `true`.
1807
- :param pulumi.Input[_builtins.bool] is_local_data_guard_enabled: (Updatable) Indicates whether the Autonomous Database has local (in-region) Data Guard enabled. It takes boolean values. Not applicable to cross-region Autonomous Data Guard associations, or to Autonomous Databases using dedicated Exadata infrastructure or Exadata Cloud@Customer infrastructure.
1808
- :param pulumi.Input[_builtins.bool] is_mtls_connection_required: (Updatable) Indicates whether the Autonomous Database requires mTLS connections.
1792
+ :param pulumi.Input[_builtins.bool] is_dedicated: True if the database is on [dedicated Exadata infrastructure](https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html).
1793
+ :param pulumi.Input[_builtins.bool] is_dev_tier: (Updatable) 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.
1794
+ :param pulumi.Input[_builtins.bool] is_free_tier: (Updatable) 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.
1795
+
1796
+ 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 When `db_workload` is `AJD` it cannot be `true`.
1797
+ :param pulumi.Input[_builtins.bool] is_local_data_guard_enabled: (Updatable) 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.
1809
1798
  :param pulumi.Input[_builtins.bool] is_preview: Indicates if the Autonomous Database version is a preview version.
1810
- :param pulumi.Input[_builtins.bool] is_preview_version_with_service_terms_accepted: If set to `TRUE`, indicates that an Autonomous Database preview version is being provisioned, and that the preview version's terms of service have been accepted. Note that preview version software is only available for databases on [Autonomous Database Serverless](https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html).
1799
+ :param pulumi.Input[_builtins.bool] is_preview_version_with_service_terms_accepted: If set to `TRUE`, indicates that an Autonomous Database preview version is being provisioned, and that the preview version's terms of service have been accepted. Note that preview version software is only available for Autonomous Database Serverless instances (https://docs.oracle.com/en/cloud/paas/autonomous-database/serverless/).
1811
1800
  :param pulumi.Input[_builtins.bool] is_reconnect_clone_enabled: Indicates if the refreshable clone can be reconnected to its source database.
1812
- :param pulumi.Input[_builtins.bool] is_refreshable_clone: (Updatable) True for creating a refreshable clone and False for detaching the clone from source Autonomous Database. Detaching is one time operation and clone becomes a regular Autonomous Database.
1813
- :param pulumi.Input[_builtins.bool] is_remote_data_guard_enabled: Indicates whether the Autonomous Database has Cross Region Data Guard enabled. It takes boolean values. Not applicable to Autonomous Databases using dedicated Exadata infrastructure or Exadata Cloud@Customer infrastructure.
1801
+ :param pulumi.Input[_builtins.bool] is_refreshable_clone: Indicates if the Autonomous Database is a refreshable clone.
1802
+ :param pulumi.Input[_builtins.bool] is_remote_data_guard_enabled: Indicates whether the Autonomous Database has Cross Region Data Guard enabled. Not applicable to Autonomous Databases using dedicated Exadata infrastructure or Exadata Cloud@Customer infrastructure.
1814
1803
  :param pulumi.Input[_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.
1815
- :param pulumi.Input[_builtins.bool] is_shrink_only: (Updatable) An optional property when enabled triggers the Shrinking of Autonomous Database once. To trigger Shrinking of ADB once again, this flag needs to be disabled and re-enabled again. It should not be passed during create database operation. It is only applicable on Serverless databases i.e. where `is_dedicated` is false.
1816
-
1817
- ** IMPORTANT **
1818
- Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
1819
1804
  :param pulumi.Input[Sequence[pulumi.Input['AutonomousDatabaseKeyHistoryEntryArgs']]] key_history_entries: Key History Entry.
1820
- :param pulumi.Input[_builtins.str] key_store_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the key store of Oracle Vault. This is used in Autonomous Databases on Serverless instances and dedicated Exadata infrastructure.
1805
+ :param pulumi.Input[_builtins.str] key_store_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the key store of Oracle Vault.
1821
1806
  :param pulumi.Input[_builtins.str] key_store_wallet_name: The wallet name for Oracle Key Vault.
1822
- :param pulumi.Input[_builtins.str] key_version_id: The OCID of the key version that is used in rotate key operations.
1823
1807
  :param pulumi.Input[_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.
1824
1808
  :param pulumi.Input[_builtins.str] kms_key_lifecycle_details: KMS key lifecycle details.
1825
1809
  :param pulumi.Input[_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.
1826
- :param pulumi.Input[_builtins.str] license_model: (Updatable) 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 PaaS and IaaS services in the cloud. License Included allows you to subscribe to new Oracle Database software licenses and the Database service. Note that when provisioning an Autonomous Database on [dedicated Exadata infrastructure](https://docs.cloud.oracle.com/iaas/Content/Database/Concepts/adbddoverview.htm), this attribute must be null because the attribute is already set at the Autonomous Exadata Infrastructure level. When using [shared Exadata infrastructure](https://docs.cloud.oracle.com/iaas/Content/Database/Concepts/adboverview.htm#AEI), if a value is not specified, the system will supply the value of `BRING_YOUR_OWN_LICENSE`. It is a required field when `db_workload` is AJD and needs to be set to `LICENSE_INCLUDED` as AJD does not support default `license_model` value `BRING_YOUR_OWN_LICENSE`.
1810
+ :param pulumi.Input[_builtins.str] license_model: (Updatable) 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.
1811
+
1812
+ This cannot be updated in parallel with any of the following: cpuCoreCount, computeCount, dataStorageSizeInTBs, adminPassword, isMTLSConnectionRequired, dbWorkload, privateEndpointLabel, nsgIds, dbVersion, dbName, scheduledOperations, dbToolsDetails, or isFreeTier. It is a required field when `db_workload` is AJD and needs to be set to `LICENSE_INCLUDED` as AJD does not support default `license_model` value `BRING_YOUR_OWN_LICENSE`.
1827
1813
  :param pulumi.Input[_builtins.str] lifecycle_details: Additional information about the current lifecycle state.
1828
1814
  :param pulumi.Input[_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
1829
1815
  :param pulumi.Input[_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.
1830
1816
  :param pulumi.Input[Sequence[pulumi.Input['AutonomousDatabaseLocalStandbyDbArgs']]] local_standby_dbs: Autonomous Data Guard standby database details.
1831
1817
  :param pulumi.Input[Sequence[pulumi.Input['AutonomousDatabaseLongTermBackupScheduleArgs']]] long_term_backup_schedules: Details for the long-term backup schedule.
1832
1818
  :param pulumi.Input[_builtins.str] maintenance_target_component: The component chosen for maintenance.
1833
- :param pulumi.Input[_builtins.int] max_cpu_core_count: (Updatable) **Deprecated.** The number of Max OCPU cores to be made available to the autonomous database with auto scaling of cpu enabled.
1834
- :param pulumi.Input[_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. This parameter is not used for Autonomous database Serverless.
1835
- :param pulumi.Input[_builtins.str] ncharacter_set: The national character set for the autonomous database. The default is AL16UTF16. Allowed values are: AL16UTF16 or UTF8.
1819
+ :param pulumi.Input[_builtins.int] memory_per_oracle_compute_unit_in_gbs: The amount of memory (in GBs) enabled per ECPU or OCPU.
1820
+ :param pulumi.Input[_builtins.str] ncharacter_set: The character set for the Autonomous Database. The default is AL32UTF8. Use [List Autonomous Database Character Sets](https://docs.oracle.com/iaas/autonomous-database-serverless/doc/autonomous-character-set-selection.html) to list the allowed values for an Autonomous Database Serverless instance. For an Autonomous Database on dedicated Exadata infrastructure, the allowed values are: AL16UTF16 or UTF8.
1836
1821
  :param pulumi.Input[_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.
1837
1822
  :param pulumi.Input[_builtins.str] next_long_term_backup_time_stamp: The date and time when the next long-term backup would be created.
1838
1823
  :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] nsg_ids: (Updatable) The list of [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for the network security groups (NSGs) to which this resource belongs. Setting this to an empty list removes all resources from all NSGs. For more information about NSGs, see [Security Rules](https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/securityrules.htm). **NsgIds restrictions:**
1839
1824
  * A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
1840
1825
  :param pulumi.Input[_builtins.float] ocpu_count: (Updatable) The number of OCPU cores to be made available to the database.
1841
1826
 
1842
-
1843
- * Providing `computeModel` and `computeCount` is the preferred method for setting CPUs for both OCPU and ECPU.
1844
1827
  The following points apply:
1845
- * For Autonomous Databases on dedicated Exadata infrastructure, to provision less than 1 core, enter a fractional value in an increment of 0.1. For example, you can provision 0.3 or 0.4 cores, but not 0.35 cores. (Note that fractional OCPU values are not supported for Autonomous Databasese on shared Exadata infrastructure.)
1846
- * To provision 1 or more cores, you must enter an integer between 1 and the maximum number of cores available for the infrastructure shape. For example, you can provision 2 cores or 3 cores, but not 2.5 cores. This applies to Autonomous Databases on both shared and dedicated Exadata infrastructure.
1828
+ * For Autonomous Databases on Dedicated Exadata infrastructure, to provision less than 1 core, enter a fractional value in an increment of 0.1. For example, you can provision 0.3 or 0.4 cores, but not 0.35 cores. (Note that fractional OCPU values are not supported for Autonomous Database Serverless instances.)
1829
+ * To provision 1 or more cores, you must enter an integer between 1 and the maximum number of cores available for the infrastructure shape. For example, you can provision 2 cores or 3 cores, but not 2.5 cores. This applies to an Autonomous Database Serverless instance or an Autonomous Database on Dedicated Exadata Infrastructure.
1830
+ * For Autonomous Database Serverless instances, this parameter is not used.
1847
1831
 
1848
- For Autonomous Databases on dedicated Exadata infrastructure, the maximum number of cores is determined by the infrastructure shape. See [Characteristics of Infrastructure Shapes](https://www.oracle.com/pls/topic/lookup?ctx=en/cloud/paas/autonomous-database&id=ATPFG-GUID-B0F033C1-CC5A-42F0-B2E7-3CECFEDA1FD1) for shape details.
1832
+ For Autonomous Databases on Dedicated Exadata infrastructure, the maximum number of cores is determined by the infrastructure shape. See [Characteristics of Infrastructure Shapes](https://www.oracle.com/pls/topic/lookup?ctx=en/cloud/paas/autonomous-database&id=ATPFG-GUID-B0F033C1-CC5A-42F0-B2E7-3CECFEDA1FD1) for shape details.
1849
1833
 
1850
1834
  **Note:** This parameter cannot be used with the `cpuCoreCount` parameter.
1851
- :param pulumi.Input[_builtins.str] open_mode: Indicates the Autonomous Database mode. The database can be opened in `READ_ONLY` or `READ_WRITE` mode.
1852
- :param pulumi.Input[_builtins.str] operations_insights_status: (Updatable) Status of Operations Insights for this Autonomous Database. Values supported are `ENABLED` and `NOT_ENABLED`
1853
- :param pulumi.Input[_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.
1854
- :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] peer_db_ids: The list of [OCIDs](https://docs.cloud.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.
1835
+ :param pulumi.Input[_builtins.str] open_mode: (Updatable) Indicates the Autonomous Database mode. The database can be opened in `READ_ONLY` or `READ_WRITE` mode.
1836
+
1837
+ This cannot be updated in parallel with any of the following: cpuCoreCount, computeCount, computeModel, adminPassword, whitelistedIps, isMTLSConnectionRequired, dbVersion, isRefreshable, dbName, scheduledOperations, dbToolsDetails, or isFreeTier.
1838
+ :param pulumi.Input[_builtins.str] operations_insights_status: Status of Operations Insights for this Autonomous Database.
1839
+ :param pulumi.Input[Sequence[pulumi.Input[_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.
1855
1840
  :param pulumi.Input[_builtins.str] permission_level: The Autonomous Database permission level. Restricted mode allows access only by admin users.
1856
- :param pulumi.Input[_builtins.str] private_endpoint: The private endpoint for the resource. This parameter is not used in Autonomous Databases using Serverless infrastructure and Exadata Cloud@Customer infrastructure.
1857
- :param pulumi.Input[_builtins.str] private_endpoint_ip: The private endpoint Ip address for the resource.
1858
- :param pulumi.Input[_builtins.str] private_endpoint_label: (Updatable) (Optional) (Updatable) The resource's private endpoint label.
1859
- * Setting the endpoint label to a non-empty string creates a private endpoint database.
1860
- * Resetting the endpoint label to an empty string, after the creation of the private endpoint database, changes the private endpoint database to a public endpoint database.
1861
- * Setting the endpoint label to a non-empty string value, updates to a new private endpoint database, when the database is disabled and re-enabled.
1841
+ :param pulumi.Input[_builtins.str] private_endpoint: The private endpoint for the resource.
1842
+ :param pulumi.Input[_builtins.str] private_endpoint_ip: (Updatable) The private endpoint Ip address for the resource.
1843
+ :param pulumi.Input[_builtins.str] private_endpoint_label: (Updatable) The private endpoint label for the resource.
1862
1844
  :param pulumi.Input[Sequence[pulumi.Input[_builtins.float]]] provisionable_cpuses: An array of CPU values that an Autonomous Database can be scaled to.
1863
1845
  :param pulumi.Input[Sequence[pulumi.Input['AutonomousDatabasePublicConnectionUrlArgs']]] public_connection_urls: The Public URLs of Private Endpoint database for accessing Oracle Application Express (APEX) and SQL Developer Web with a browser from a Compute instance within your VCN or that has a direct connection to your VCN.
1864
1846
  :param pulumi.Input[_builtins.str] public_endpoint: The public endpoint for the private endpoint enabled resource.
@@ -1869,7 +1851,6 @@ class _AutonomousDatabaseState:
1869
1851
  :param pulumi.Input[_builtins.str] resource_pool_leader_id: (Updatable) The unique identifier for leader autonomous database OCID [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
1870
1852
  :param pulumi.Input['AutonomousDatabaseResourcePoolSummaryArgs'] resource_pool_summary: (Updatable) The configuration details for resource pool
1871
1853
  :param pulumi.Input[_builtins.str] role: The Data Guard role of the Autonomous Container Database or Autonomous Database, if Autonomous Data Guard is enabled.
1872
- :param pulumi.Input[_builtins.bool] rotate_key_trigger: (Updatable) An optional property when flipped triggers rotation of KMS key. It is only applicable on dedicated databases i.e. where `is_dedicated` is true.
1873
1854
  :param pulumi.Input[Sequence[pulumi.Input['AutonomousDatabaseScheduledOperationArgs']]] scheduled_operations: (Updatable) The list of scheduled operations. Consists of values such as dayOfWeek, scheduledStartTime, scheduledStopTime.
1874
1855
 
1875
1856
  This cannot be updated in parallel with any of the following: licenseModel, dbEdition, cpuCoreCount, computeCount, computeModel, whitelistedIps, isMTLSConnectionRequired, openMode, permissionLevel, dbWorkload, privateEndpointLabel, nsgIds, dbVersion, isRefreshable, dbName, dbToolsDetails, isLocalDataGuardEnabled, or isFreeTier.
@@ -1879,67 +1860,67 @@ class _AutonomousDatabaseState:
1879
1860
  :param pulumi.Input[_builtins.int] secret_version_number: (Updatable) The version of the vault secret. If no version is specified, the latest version will be used.
1880
1861
  :param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] security_attributes: (Updatable) 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"}}}`
1881
1862
  :param pulumi.Input[_builtins.str] service_console_url: The URL of the Service Console for the Autonomous Database.
1882
- :param pulumi.Input[_builtins.str] source: The source of the database:
1883
- * Use `NONE` for creating a new Autonomous Database.
1884
- * Use `DATABASE` for creating a new Autonomous Database by cloning an existing running Autonomous Database from the latest timestamp, also provide the source database OCID in the `source_id` parameter.
1885
- * Use `CROSS_REGION_DATAGUARD` to create a standby Data Guard database in another region, also provide the remote primary database OCID in the `source_id` parameter.
1886
- * Use `CLONE_TO_REFRESHABLE` for creating a refreshable clone.
1863
+ :param pulumi.Input[_builtins.str] source: The source of the database: Use `NONE` for creating a new Autonomous Database. Use `DATABASE` for creating a new Autonomous Database by cloning an existing Autonomous Database. Use `CROSS_REGION_DATAGUARD` to create a standby Data Guard database in another region.
1887
1864
 
1888
- For [Autonomous Database Serverless](https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html) instances, the following cloning options are available:
1889
- * Use `BACKUP_FROM_ID` for creating a new Autonomous Database by cloning from a specified backup. Also provide the backup OCID in the `autonomous_database_backup_id` parameter.
1890
- * Use `BACKUP_FROM_TIMESTAMP` for creating a point-in-time Autonomous Database clone using backups. Also provide the backup timestamp in the `timestamp` parameter. For more information, see [Cloning and Moving an Autonomous Database](https://docs.oracle.com/en/cloud/paas/autonomous-database/adbsa/clone-autonomous-database.html#GUID-D771796F-5081-4CFB-A7FF-0F893EABD7BC).
1891
- :param pulumi.Input[_builtins.str] source_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the source Autonomous Database that will be used to create a new standby database for the Data Guard association.
1865
+ For [Autonomous Database Serverless instances](https://docs.oracle.com/en/cloud/paas/autonomous-database/serverless/), the following cloning options are available: Use `BACKUP_FROM_ID` for creating a new Autonomous Database from a specified backup. Use `BACKUP_FROM_TIMESTAMP` for creating a point-in-time Autonomous Database clone using backups. For more information, see [Cloning and Moving an Autonomous Database](https://docs.oracle.com/en/cloud/paas/autonomous-database/adbsa/clone-autonomous-database.html#GUID-D771796F-5081-4CFB-A7FF-0F893EABD7BC).
1866
+ :param pulumi.Input[_builtins.str] source_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the source Autonomous Database that will be used to create a new peer database for the Data Guard association.
1892
1867
  :param pulumi.Input[Sequence[pulumi.Input['AutonomousDatabaseStandbyDbArgs']]] standby_dbs: **Deprecated** Autonomous Data Guard standby database details.
1893
1868
  :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] standby_whitelisted_ips: (Updatable) 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`.
1894
1869
 
1895
- For Autonomous Database Serverless instances, this is an array of CIDR (Classless Inter-Domain Routing) notations for a subnet or VCN OCID. Use a semicolon (;) as a deliminator between the VCN-specific subnets or IPs. Example: `["1.1.1.1","1.1.1.0/24","ocid1.vcn.oc1.sea.<unique_id>","ocid1.vcn.oc1.sea.<unique_id1>;1.1.1.1","ocid1.vcn.oc1.sea.<unique_id2>;1.1.0.0/16"]` For Exadata Cloud@Customer, this is an array of IP addresses or CIDR (Classless Inter-Domain Routing) notations. Example: `["1.1.1.1","1.1.1.0/24","1.1.2.25"]`
1870
+ For Autonomous Database Serverless, this is an array of CIDR (classless inter-domain routing) notations for a subnet or VCN OCID (virtual cloud network Oracle Cloud ID). Multiple IPs and VCN OCIDs should be separate strings separated by commas, but if it’s other configurations that need multiple pieces of information then its each piece is connected with semicolon (;) as a delimiter. Example: `["1.1.1.1","1.1.1.0/24","ocid1.vcn.oc1.sea.<unique_id>","ocid1.vcn.oc1.sea.<unique_id1>;1.1.1.1","ocid1.vcn.oc1.sea.<unique_id2>;1.1.0.0/16"]` For Exadata Cloud@Customer, this is an array of IP addresses or CIDR notations. Example: `["1.1.1.1","1.1.1.0/24","1.1.2.25"]`
1896
1871
 
1897
1872
  For an update operation, if you want to delete all the IPs in the ACL, use an array with a single empty string entry.
1898
1873
 
1899
- If `arePrimaryWhitelistedIpsUsed` is 'TRUE' then Autonomous Database uses `whitelisted_ips` primary's IP access control list (ACL) as `standbywhitelistedips` for the disaster recovery peer.
1900
-
1901
1874
  This cannot be updated in parallel with any of the following: licenseModel, dbEdition, cpuCoreCount, computeCount, computeModel, adminPassword, isMTLSConnectionRequired, openMode, permissionLevel, dbWorkload, dbVersion, isRefreshable, dbName, scheduledOperations, dbToolsDetails, isLocalDataGuardEnabled, or isFreeTier.
1902
1875
  :param pulumi.Input[_builtins.str] state: The current state of the Autonomous Database.
1903
- :param pulumi.Input[_builtins.str] subnet_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet the resource is associated with. This the only parameter to configure private endpoint, VCN details are obtained from the `subnet_id`.
1876
+ :param pulumi.Input[_builtins.str] subnet_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet the resource is associated with.
1904
1877
 
1905
1878
  **Subnet Restrictions:**
1906
1879
  * For bare metal DB systems and for single node virtual machine DB systems, do not use a subnet that overlaps with 192.168.16.16/28.
1907
1880
  * For Exadata and virtual machine 2-node RAC systems, do not use a subnet that overlaps with 192.168.128.0/20.
1908
1881
  * For Autonomous Database, setting this will disable public secure access to the database.
1909
- :param pulumi.Input[_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.
1882
+
1910
1883
  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.
1884
+ :param pulumi.Input[_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.
1911
1885
  :param pulumi.Input[Sequence[pulumi.Input[_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.
1912
- :param pulumi.Input[_builtins.str] switchover_to: It is applicable only when `is_local_data_guard_enabled` is true. Could be set to `PRIMARY` or `STANDBY`. Default value is `PRIMARY`.
1913
- :param pulumi.Input[_builtins.str] switchover_to_remote_peer_id: (Updatable) It is applicable only when `dataguard_region_type` and `role` are set, and `is_dedicated` is false. For Autonomous Database Serverless instances, Data Guard associations have designated primary and standby regions, and these region types do not change when the database changes roles. It takes the [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the remote peer to switchover to and the API is called from the remote region.
1914
1886
  :param pulumi.Input[Mapping[str, pulumi.Input[_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).
1915
1887
  :param pulumi.Input[_builtins.str] time_created: The date and time the Autonomous Database was created.
1916
1888
  :param pulumi.Input[_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.
1917
1889
  :param pulumi.Input[_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.
1918
1890
  :param pulumi.Input[_builtins.str] time_disaster_recovery_role_changed: The date and time the Disaster Recovery role was switched for the standby Autonomous Database.
1891
+ :param pulumi.Input[_builtins.str] time_earliest_available_db_version_upgrade: The earliest(min) date and time the Autonomous Database can be scheduled to upgrade to 23ai.
1892
+ :param pulumi.Input[_builtins.str] time_latest_available_db_version_upgrade: The max date and time the Autonomous Database can be scheduled to upgrade to 23ai.
1919
1893
  :param pulumi.Input[_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.
1920
1894
  :param pulumi.Input[_builtins.str] time_maintenance_begin: The date and time when maintenance will begin.
1921
1895
  :param pulumi.Input[_builtins.str] time_maintenance_end: The date and time when maintenance will end.
1922
- :param pulumi.Input[_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.
1896
+ :param pulumi.Input[_builtins.str] time_of_auto_refresh_start: (Updatable) 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.
1897
+ :param pulumi.Input[_builtins.str] time_of_joining_resource_pool: The time the member joined the resource pool.
1923
1898
  :param pulumi.Input[_builtins.str] time_of_last_failover: The timestamp of the last failover operation.
1924
1899
  :param pulumi.Input[_builtins.str] time_of_last_refresh: The date and time when last refresh happened.
1925
1900
  :param pulumi.Input[_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.
1926
1901
  :param pulumi.Input[_builtins.str] time_of_last_switchover: The timestamp of the last switchover operation for the Autonomous Database.
1927
1902
  :param pulumi.Input[_builtins.str] time_of_next_refresh: The date and time of next refresh.
1928
1903
  :param pulumi.Input[_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.
1904
+ :param pulumi.Input[_builtins.str] time_scheduled_db_version_upgrade: The date and time the Autonomous Database scheduled to upgrade to 23ai. Send this value along with the target db_version value to schedule the database version upgrade. After the upgrade is scheduled and before the scheduled upgrade time arrives, please keep the db_version value the same as the backend's current db_version.
1905
+ :param pulumi.Input[_builtins.str] time_undeleted: The date and time the Autonomous Database was most recently undeleted.
1929
1906
  :param pulumi.Input[_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.
1930
1907
  :param pulumi.Input[_builtins.str] timestamp: The timestamp specified for the point-in-time clone of the source Autonomous Database. The timestamp must be in the past.
1931
1908
  :param pulumi.Input[_builtins.float] total_backup_storage_size_in_gbs: The backup storage to the database.
1932
1909
  :param pulumi.Input[_builtins.bool] use_latest_available_backup_time_stamp: Clone from latest available backup timestamp.
1933
1910
  :param pulumi.Input[_builtins.int] used_data_storage_size_in_gbs: The storage space consumed by Autonomous Database in GBs.
1934
1911
  :param pulumi.Input[_builtins.int] used_data_storage_size_in_tbs: The amount of storage that has been used for Autonomous Databases in dedicated infrastructure, in terabytes.
1935
- :param pulumi.Input[_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).
1936
- :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] whitelisted_ips: (Updatable) The client IP access control list (ACL). This feature is available for autonomous databases on [shared Exadata infrastructure](https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html) and on Exadata Cloud@Customer. Only clients connecting from an IP address included in the ACL may access the Autonomous Database instance.
1912
+ :param pulumi.Input[_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.
1913
+ :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] whitelisted_ips: (Updatable) 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`.
1937
1914
 
1938
- For Autonomous Database Serverless instances, this is an array of CIDR (Classless Inter-Domain Routing) notations for a subnet or VCN OCID. Use a semicolon (;) as a deliminator between the VCN-specific subnets or IPs. Example: `["1.1.1.1","1.1.1.0/24","ocid1.vcn.oc1.sea.<unique_id>","ocid1.vcn.oc1.sea.<unique_id1>;1.1.1.1","ocid1.vcn.oc1.sea.<unique_id2>;1.1.0.0/16"]` For Exadata Cloud@Customer, this is an array of IP addresses or CIDR (Classless Inter-Domain Routing) notations. Example: `["1.1.1.1","1.1.1.0/24","1.1.2.25"]`
1915
+ For Autonomous Database Serverless, this is an array of CIDR (classless inter-domain routing) notations for a subnet or VCN OCID (virtual cloud network Oracle Cloud ID). Multiple IPs and VCN OCIDs should be separate strings separated by commas, but if it’s other configurations that need multiple pieces of information then its each piece is connected with semicolon (;) as a delimiter. Example: `["1.1.1.1","1.1.1.0/24","ocid1.vcn.oc1.sea.<unique_id>","ocid1.vcn.oc1.sea.<unique_id1>;1.1.1.1","ocid1.vcn.oc1.sea.<unique_id2>;1.1.0.0/16"]` For Exadata Cloud@Customer, this is an array of IP addresses or CIDR notations. Example: `["1.1.1.1","1.1.1.0/24","1.1.2.25"]`
1939
1916
 
1940
1917
  For an update operation, if you want to delete all the IPs in the ACL, use an array with a single empty string entry.
1941
1918
 
1942
1919
  This cannot be updated in parallel with any of the following: licenseModel, dbEdition, cpuCoreCount, computeCount, computeModel, adminPassword, isMTLSConnectionRequired, openMode, permissionLevel, dbWorkload, dbVersion, isRefreshable, dbName, scheduledOperations, dbToolsDetails, isLocalDataGuardEnabled, or isFreeTier. To remove all whitelisted IPs, set the field to a list with an empty string `[""]`.
1920
+
1921
+
1922
+ ** IMPORTANT **
1923
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
1943
1924
  """
1944
1925
  if actual_used_data_storage_size_in_tbs is not None:
1945
1926
  pulumi.set(__self__, "actual_used_data_storage_size_in_tbs", actual_used_data_storage_size_in_tbs)
@@ -2053,6 +2034,8 @@ class _AutonomousDatabaseState:
2053
2034
  pulumi.set(__self__, "is_dedicated", is_dedicated)
2054
2035
  if is_dev_tier is not None:
2055
2036
  pulumi.set(__self__, "is_dev_tier", is_dev_tier)
2037
+ if is_disable_db_version_upgrade_schedule is not None:
2038
+ pulumi.set(__self__, "is_disable_db_version_upgrade_schedule", is_disable_db_version_upgrade_schedule)
2056
2039
  if is_disconnect_peer is not None:
2057
2040
  pulumi.set(__self__, "is_disconnect_peer", is_disconnect_peer)
2058
2041
  if is_free_tier is not None:
@@ -2073,6 +2056,8 @@ class _AutonomousDatabaseState:
2073
2056
  pulumi.set(__self__, "is_remote_data_guard_enabled", is_remote_data_guard_enabled)
2074
2057
  if is_replicate_automatic_backups is not None:
2075
2058
  pulumi.set(__self__, "is_replicate_automatic_backups", is_replicate_automatic_backups)
2059
+ if is_schedule_db_version_upgrade_to_earliest is not None:
2060
+ pulumi.set(__self__, "is_schedule_db_version_upgrade_to_earliest", is_schedule_db_version_upgrade_to_earliest)
2076
2061
  if is_shrink_only is not None:
2077
2062
  warnings.warn("""The 'is_shrink_only' field has been deprecated. Please use 'shrink_adb_trigger' instead.""", DeprecationWarning)
2078
2063
  pulumi.log.warn("""is_shrink_only is deprecated: The 'is_shrink_only' field has been deprecated. Please use 'shrink_adb_trigger' instead.""")
@@ -2200,6 +2185,10 @@ class _AutonomousDatabaseState:
2200
2185
  pulumi.set(__self__, "time_deletion_of_free_autonomous_database", time_deletion_of_free_autonomous_database)
2201
2186
  if time_disaster_recovery_role_changed is not None:
2202
2187
  pulumi.set(__self__, "time_disaster_recovery_role_changed", time_disaster_recovery_role_changed)
2188
+ if time_earliest_available_db_version_upgrade is not None:
2189
+ pulumi.set(__self__, "time_earliest_available_db_version_upgrade", time_earliest_available_db_version_upgrade)
2190
+ if time_latest_available_db_version_upgrade is not None:
2191
+ pulumi.set(__self__, "time_latest_available_db_version_upgrade", time_latest_available_db_version_upgrade)
2203
2192
  if time_local_data_guard_enabled is not None:
2204
2193
  pulumi.set(__self__, "time_local_data_guard_enabled", time_local_data_guard_enabled)
2205
2194
  if time_maintenance_begin is not None:
@@ -2222,6 +2211,8 @@ class _AutonomousDatabaseState:
2222
2211
  pulumi.set(__self__, "time_of_next_refresh", time_of_next_refresh)
2223
2212
  if time_reclamation_of_free_autonomous_database is not None:
2224
2213
  pulumi.set(__self__, "time_reclamation_of_free_autonomous_database", time_reclamation_of_free_autonomous_database)
2214
+ if time_scheduled_db_version_upgrade is not None:
2215
+ pulumi.set(__self__, "time_scheduled_db_version_upgrade", time_scheduled_db_version_upgrade)
2225
2216
  if time_undeleted is not None:
2226
2217
  pulumi.set(__self__, "time_undeleted", time_undeleted)
2227
2218
  if time_until_reconnect_clone_enabled is not None:
@@ -2329,7 +2320,7 @@ class _AutonomousDatabaseState:
2329
2320
  @pulumi.getter(name="autonomousContainerDatabaseId")
2330
2321
  def autonomous_container_database_id(self) -> Optional[pulumi.Input[_builtins.str]]:
2331
2322
  """
2332
- The Autonomous Container Database [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
2323
+ 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.
2333
2324
  """
2334
2325
  return pulumi.get(self, "autonomous_container_database_id")
2335
2326
 
@@ -2365,7 +2356,7 @@ class _AutonomousDatabaseState:
2365
2356
  @pulumi.getter(name="autonomousMaintenanceScheduleType")
2366
2357
  def autonomous_maintenance_schedule_type(self) -> Optional[pulumi.Input[_builtins.str]]:
2367
2358
  """
2368
- The maintenance schedule type of the Autonomous Database Serverless instances. The EARLY maintenance schedule of this Autonomous Database follows a schedule that applies patches prior to the REGULAR schedule.The REGULAR maintenance schedule of this Autonomous Database follows the normal cycle.
2359
+ (Updatable) 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
2369
2360
  """
2370
2361
  return pulumi.get(self, "autonomous_maintenance_schedule_type")
2371
2362
 
@@ -2413,7 +2404,7 @@ class _AutonomousDatabaseState:
2413
2404
  @pulumi.getter(name="backupRetentionPeriodInDays")
2414
2405
  def backup_retention_period_in_days(self) -> Optional[pulumi.Input[_builtins.int]]:
2415
2406
  """
2416
- (Updatable) Retention period, in days, for backups.
2407
+ (Updatable) Retention period, in days, for long-term backups
2417
2408
  """
2418
2409
  return pulumi.get(self, "backup_retention_period_in_days")
2419
2410
 
@@ -2424,6 +2415,9 @@ class _AutonomousDatabaseState:
2424
2415
  @_builtins.property
2425
2416
  @pulumi.getter(name="byolComputeCountLimit")
2426
2417
  def byol_compute_count_limit(self) -> Optional[pulumi.Input[_builtins.float]]:
2418
+ """
2419
+ (Updatable) 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.
2420
+ """
2427
2421
  return pulumi.get(self, "byol_compute_count_limit")
2428
2422
 
2429
2423
  @byol_compute_count_limit.setter
@@ -2434,9 +2428,10 @@ class _AutonomousDatabaseState:
2434
2428
  @pulumi.getter(name="characterSet")
2435
2429
  def character_set(self) -> Optional[pulumi.Input[_builtins.str]]:
2436
2430
  """
2437
- The character set for the autonomous database. The default is AL32UTF8. Allowed values for an Autonomous Database on Serverless infrastructure as returned by [List Autonomous Database Character Sets](https://www.terraform.io/autonomousDatabaseCharacterSets)
2431
+ The character set for the autonomous database. The default is AL32UTF8. Allowed values for an Autonomous Database Serverless instance as as returned by [List Autonomous Database Character Sets](https://docs.oracle.com/iaas/autonomous-database-serverless/doc/autonomous-character-set-selection.html)
2432
+
2433
+ For an Autonomous Database on dedicated infrastructure, the allowed values are:
2438
2434
 
2439
- For an Autonomous Database on dedicated infrastructure, the allowed values are
2440
2435
  AL32UTF8, AR8ADOS710, AR8ADOS720, AR8APTEC715, AR8ARABICMACS, AR8ASMO8X, AR8ISO8859P6, AR8MSWIN1256, AR8MUSSAD768, AR8NAFITHA711, AR8NAFITHA721, AR8SAKHR706, AR8SAKHR707, AZ8ISO8859P9E, BG8MSWIN, BG8PC437S, BLT8CP921, BLT8ISO8859P13, BLT8MSWIN1257, BLT8PC775, BN8BSCII, CDN8PC863, CEL8ISO8859P14, CL8ISO8859P5, CL8ISOIR111, CL8KOI8R, CL8KOI8U, CL8MACCYRILLICS, CL8MSWIN1251, EE8ISO8859P2, EE8MACCES, EE8MACCROATIANS, EE8MSWIN1250, EE8PC852, EL8DEC, EL8ISO8859P7, EL8MACGREEKS, EL8MSWIN1253, EL8PC437S, EL8PC851, EL8PC869, ET8MSWIN923, HU8ABMOD, HU8CWI2, IN8ISCII, IS8PC861, IW8ISO8859P8, IW8MACHEBREWS, IW8MSWIN1255, IW8PC1507, JA16EUC, JA16EUCTILDE, JA16SJIS, JA16SJISTILDE, JA16VMS, KO16KSC5601, KO16KSCCS, KO16MSWIN949, LA8ISO6937, LA8PASSPORT, LT8MSWIN921, LT8PC772, LT8PC774, LV8PC1117, LV8PC8LR, LV8RST104090, N8PC865, NE8ISO8859P10, NEE8ISO8859P4, RU8BESTA, RU8PC855, RU8PC866, SE8ISO8859P3, TH8MACTHAIS, TH8TISASCII, TR8DEC, TR8MACTURKISHS, TR8MSWIN1254, TR8PC857, US7ASCII, US8PC437, UTF8, VN8MSWIN1258, VN8VN3, WE8DEC, WE8DG, WE8ISO8859P1, WE8ISO8859P15, WE8ISO8859P9, WE8MACROMAN8S, WE8MSWIN1252, WE8NCR4970, WE8NEXTSTEP, WE8PC850, WE8PC858, WE8PC860, WE8ROMAN8, ZHS16CGB231280, ZHS16GBK, ZHT16BIG5, ZHT16CCDC, ZHT16DBT, ZHT16HKSCS, ZHT16MSWIN950, ZHT32EUC, ZHT32SOPS, ZHT32TRIS
2441
2436
  """
2442
2437
  return pulumi.get(self, "character_set")
@@ -2461,7 +2456,7 @@ class _AutonomousDatabaseState:
2461
2456
  @pulumi.getter(name="cloneType")
2462
2457
  def clone_type(self) -> Optional[pulumi.Input[_builtins.str]]:
2463
2458
  """
2464
- The Autonomous Database clone type. This parameter is not used to create a refreshable clone type, and for refreshable clones one must use the (source=CLONE_TO_REFRESHABLE) parameter.
2459
+ The Autonomous Database clone type.
2465
2460
  * `FULL` - This option creates a new database that includes all source database data.
2466
2461
  * `METADATA` - This option creates a new database that includes the source database schema and select metadata, but not the source database data.
2467
2462
  """
@@ -2499,7 +2494,7 @@ class _AutonomousDatabaseState:
2499
2494
  @pulumi.getter(name="computeCount")
2500
2495
  def compute_count(self) -> Optional[pulumi.Input[_builtins.float]]:
2501
2496
  """
2502
- (Updatable) The compute amount available to the database. Minimum and maximum values depend on the compute model and whether the database is an Autonomous Database Serverless instance or an Autonomous Database on Dedicated Exadata Infrastructure. For an Autonomous Database Serverless instance, the 'ECPU' compute model requires a minimum value of one, for databases in the elastic resource pool and minimum value of two, otherwise. Required when using the `computeModel` parameter. When using `cpuCoreCount` parameter, it is an error to specify computeCount to a non-null value. Providing `computeModel` and `computeCount` is the preferred method for both OCPU and ECPU.
2497
+ (Updatable) The compute amount (CPUs) available to the database. Minimum and maximum values depend on the compute model and whether the database is an Autonomous Database Serverless instance or an Autonomous Database on Dedicated Exadata Infrastructure. The 'ECPU' compute model requires a minimum value of one, for databases in the elastic resource pool and minimum value of two, otherwise. Required when using the `computeModel` parameter. When using `cpuCoreCount` parameter, it is an error to specify computeCount to a non-null value. Providing `computeModel` and `computeCount` is the preferred method for both OCPU and ECPU.
2503
2498
  """
2504
2499
  return pulumi.get(self, "compute_count")
2505
2500
 
@@ -2548,13 +2543,8 @@ class _AutonomousDatabaseState:
2548
2543
  def cpu_core_count(self) -> Optional[pulumi.Input[_builtins.int]]:
2549
2544
  """
2550
2545
  (Updatable) The number of CPU cores to be made available to the database. For Autonomous Databases on dedicated Exadata infrastructure, the maximum number of cores is determined by the infrastructure shape. See [Characteristics of Infrastructure Shapes](https://www.oracle.com/pls/topic/lookup?ctx=en/cloud/paas/autonomous-database&id=ATPFG-GUID-B0F033C1-CC5A-42F0-B2E7-3CECFEDA1FD1) for shape details.
2546
+
2551
2547
  **Note:** This parameter cannot be used with the `ocpuCount` parameter. This input is ignored for Always Free resources.
2552
- * The data type must be an *integer*.
2553
- * The minimum number of cores for all types of autonomous database is *1*
2554
- * The maximum number of cores is as follows:
2555
- * Autonomous Database Serverless instances: The maximum number of cores is *128*.
2556
- * Autonomous Databases on dedicated Exadata infrastructure: The maximum number of cores is determined by the infrastructure shape. See [Characteristics of Infrastructure Shapes](https://www.oracle.com/pls/topic/lookup?ctx=en/cloud/paas/autonomous-database&id=ATPFG-GUID-B0F033C1-CC5A-42F0-B2E7-3CECFEDA1FD1) for shape details.
2557
- * Providing `computeModel` and `computeCount` is the preferred method for setting CPUs for both OCPU and ECPU.
2558
2548
  """
2559
2549
  return pulumi.get(self, "cpu_core_count")
2560
2550
 
@@ -2606,7 +2596,7 @@ class _AutonomousDatabaseState:
2606
2596
  @pulumi.getter(name="dataStorageSizeInTbs")
2607
2597
  def data_storage_size_in_tbs(self) -> Optional[pulumi.Input[_builtins.int]]:
2608
2598
  """
2609
- (Updatable) The size, in terabytes, of the data volume that will be created and attached to the database. This storage can later be scaled up if needed. For Autonomous Databases on dedicated Exadata infrastructure, the maximum storage value is determined by the infrastructure shape. See [Characteristics of Infrastructure Shapes](https://www.oracle.com/pls/topic/lookup?ctx=en/cloud/paas/autonomous-database&id=ATPFG-GUID-B0F033C1-CC5A-42F0-B2E7-3CECFEDA1FD1) for shape details. A full Exadata service is allocated when the Autonomous Database size is set to the upper limit (384 TB).
2599
+ (Updatable) The size, in terabytes, of the data volume that will be created and attached to the database. This storage can later be scaled up if needed. For Autonomous Databases on dedicated Exadata infrastructure, the maximum storage value is determined by the infrastructure shape. See [Characteristics of Infrastructure Shapes](https://www.oracle.com/pls/topic/lookup?ctx=en/cloud/paas/autonomous-database&id=ATPFG-GUID-B0F033C1-CC5A-42F0-B2E7-3CECFEDA1FD1) for shape details. A full Exadata service is allocated when the Autonomous Database size is set to the upper limit (384 TB).
2610
2600
 
2611
2601
  **Note:** This parameter cannot be used with the `dataStorageSizeInGBs` parameter. This input is ignored for Always Free resources.
2612
2602
  """
@@ -2620,7 +2610,7 @@ class _AutonomousDatabaseState:
2620
2610
  @pulumi.getter(name="databaseEdition")
2621
2611
  def database_edition(self) -> Optional[pulumi.Input[_builtins.str]]:
2622
2612
  """
2623
- (Updatable) The Oracle Database Edition that applies to the Autonomous databases. It can be set to `ENTERPRISE_EDITION` or `STANDARD_EDITION`.
2613
+ (Updatable) The Oracle Database Edition that applies to the Autonomous databases. This parameter accepts options `STANDARD_EDITION` and `ENTERPRISE_EDITION`.
2624
2614
  """
2625
2615
  return pulumi.get(self, "database_edition")
2626
2616
 
@@ -2644,7 +2634,7 @@ class _AutonomousDatabaseState:
2644
2634
  @pulumi.getter(name="dataguardRegionType")
2645
2635
  def dataguard_region_type(self) -> Optional[pulumi.Input[_builtins.str]]:
2646
2636
  """
2647
- **Deprecated** (Optional) The Autonomous Data Guard region type of the Autonomous Database. For Autonomous Database Serverless instances, Data Guard associations have designated primary (`PRIMARY_DG_REGION`) and standby (`REMOTE_STANDBY_DG_REGION`) regions, and these region types do not change when the database changes roles. The standby regions in Data Guard associations can be the same region designated as the primary region, or they can be remote regions. Certain database administrative operations may be available only in the primary region of the Data Guard association, and cannot be performed when the database using the "primary" role is operating in a remote Data Guard standby region.
2637
+ **Deprecated.** The Autonomous Data Guard region type of the Autonomous Database. For Autonomous Database Serverless, Autonomous Data Guard associations have designated primary and standby regions, and these region types do not change when the database changes roles. The standby regions in Autonomous Data Guard associations can be the same region designated as the primary region, or they can be remote regions. Certain database administrative operations may be available only in the primary region of the Autonomous Data Guard association, and cannot be performed when the database using the primary role is operating in a remote Autonomous Data Guard standby region.
2648
2638
  """
2649
2639
  return pulumi.get(self, "dataguard_region_type")
2650
2640
 
@@ -2656,7 +2646,7 @@ class _AutonomousDatabaseState:
2656
2646
  @pulumi.getter(name="dbName")
2657
2647
  def db_name(self) -> Optional[pulumi.Input[_builtins.str]]:
2658
2648
  """
2659
- The database name. The name must begin with an alphabetic character and can contain a maximum of 14 alphanumeric characters. Special characters are not permitted. The database name must be unique in the tenancy. It is required in all cases except when creating a cross-region Autonomous Data Guard standby instance or a cross-region disaster recovery standby instance.
2649
+ The database name. The name must begin with an alphabetic character and can contain a maximum of 30 alphanumeric characters. Special characters are not permitted. The database name must be unique in the tenancy. It is required in all cases except when creating a cross-region Autonomous Data Guard standby instance or a cross-region disaster recovery standby instance.
2660
2650
  """
2661
2651
  return pulumi.get(self, "db_name")
2662
2652
 
@@ -2682,7 +2672,7 @@ class _AutonomousDatabaseState:
2682
2672
  @pulumi.getter(name="dbVersion")
2683
2673
  def db_version(self) -> Optional[pulumi.Input[_builtins.str]]:
2684
2674
  """
2685
- (Updatable) A valid Oracle Database version for Autonomous Database.`db_workload` AJD and APEX are only supported for `db_version` `19c` and above.
2675
+ (Updatable) A valid Oracle Database version for Autonomous Database.`db_workload` AJD is only supported for `db_version` `19c` and above.
2686
2676
  """
2687
2677
  return pulumi.get(self, "db_version")
2688
2678
 
@@ -2724,7 +2714,7 @@ class _AutonomousDatabaseState:
2724
2714
  @pulumi.getter(name="disasterRecoveryRegionType")
2725
2715
  def disaster_recovery_region_type(self) -> Optional[pulumi.Input[_builtins.str]]:
2726
2716
  """
2727
- **Deprecated** The disaster recovery (DR) region type of the Autonomous Database. For Serverless Autonomous Databases, DR associations have designated primary (`PRIMARY`) and standby (`REMOTE`) 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.
2717
+ **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.
2728
2718
  """
2729
2719
  return pulumi.get(self, "disaster_recovery_region_type")
2730
2720
 
@@ -2759,9 +2749,6 @@ class _AutonomousDatabaseState:
2759
2749
  @_builtins.property
2760
2750
  @pulumi.getter(name="enableDeleteScheduledOperations")
2761
2751
  def enable_delete_scheduled_operations(self) -> Optional[pulumi.Input[_builtins.bool]]:
2762
- """
2763
- 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.
2764
- """
2765
2752
  return pulumi.get(self, "enable_delete_scheduled_operations")
2766
2753
 
2767
2754
  @enable_delete_scheduled_operations.setter
@@ -2918,7 +2905,7 @@ class _AutonomousDatabaseState:
2918
2905
  @pulumi.getter(name="isDedicated")
2919
2906
  def is_dedicated(self) -> Optional[pulumi.Input[_builtins.bool]]:
2920
2907
  """
2921
- True if the database is on [dedicated Exadata infrastructure](https://docs.cloud.oracle.com/iaas/Content/Database/Concepts/adbddoverview.htm).
2908
+ True if the database is on [dedicated Exadata infrastructure](https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html).
2922
2909
  """
2923
2910
  return pulumi.get(self, "is_dedicated")
2924
2911
 
@@ -2930,7 +2917,7 @@ class _AutonomousDatabaseState:
2930
2917
  @pulumi.getter(name="isDevTier")
2931
2918
  def is_dev_tier(self) -> Optional[pulumi.Input[_builtins.bool]]:
2932
2919
  """
2933
- (Updatable) 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.
2920
+ (Updatable) 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.
2934
2921
  """
2935
2922
  return pulumi.get(self, "is_dev_tier")
2936
2923
 
@@ -2938,12 +2925,18 @@ class _AutonomousDatabaseState:
2938
2925
  def is_dev_tier(self, value: Optional[pulumi.Input[_builtins.bool]]):
2939
2926
  pulumi.set(self, "is_dev_tier", value)
2940
2927
 
2928
+ @_builtins.property
2929
+ @pulumi.getter(name="isDisableDbVersionUpgradeSchedule")
2930
+ def is_disable_db_version_upgrade_schedule(self) -> Optional[pulumi.Input[_builtins.bool]]:
2931
+ return pulumi.get(self, "is_disable_db_version_upgrade_schedule")
2932
+
2933
+ @is_disable_db_version_upgrade_schedule.setter
2934
+ def is_disable_db_version_upgrade_schedule(self, value: Optional[pulumi.Input[_builtins.bool]]):
2935
+ pulumi.set(self, "is_disable_db_version_upgrade_schedule", value)
2936
+
2941
2937
  @_builtins.property
2942
2938
  @pulumi.getter(name="isDisconnectPeer")
2943
2939
  def is_disconnect_peer(self) -> Optional[pulumi.Input[_builtins.bool]]:
2944
- """
2945
- 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.
2946
- """
2947
2940
  return pulumi.get(self, "is_disconnect_peer")
2948
2941
 
2949
2942
  @is_disconnect_peer.setter
@@ -2954,7 +2947,9 @@ class _AutonomousDatabaseState:
2954
2947
  @pulumi.getter(name="isFreeTier")
2955
2948
  def is_free_tier(self) -> Optional[pulumi.Input[_builtins.bool]]:
2956
2949
  """
2957
- (Updatable) 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. When `db_workload` is `AJD` or `APEX` it cannot be `true`.
2950
+ (Updatable) 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.
2951
+
2952
+ 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 When `db_workload` is `AJD` it cannot be `true`.
2958
2953
  """
2959
2954
  return pulumi.get(self, "is_free_tier")
2960
2955
 
@@ -2966,7 +2961,7 @@ class _AutonomousDatabaseState:
2966
2961
  @pulumi.getter(name="isLocalDataGuardEnabled")
2967
2962
  def is_local_data_guard_enabled(self) -> Optional[pulumi.Input[_builtins.bool]]:
2968
2963
  """
2969
- (Updatable) Indicates whether the Autonomous Database has local (in-region) Data Guard enabled. It takes boolean values. Not applicable to cross-region Autonomous Data Guard associations, or to Autonomous Databases using dedicated Exadata infrastructure or Exadata Cloud@Customer infrastructure.
2964
+ (Updatable) 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.
2970
2965
  """
2971
2966
  return pulumi.get(self, "is_local_data_guard_enabled")
2972
2967
 
@@ -2977,9 +2972,6 @@ class _AutonomousDatabaseState:
2977
2972
  @_builtins.property
2978
2973
  @pulumi.getter(name="isMtlsConnectionRequired")
2979
2974
  def is_mtls_connection_required(self) -> Optional[pulumi.Input[_builtins.bool]]:
2980
- """
2981
- (Updatable) Indicates whether the Autonomous Database requires mTLS connections.
2982
- """
2983
2975
  return pulumi.get(self, "is_mtls_connection_required")
2984
2976
 
2985
2977
  @is_mtls_connection_required.setter
@@ -3002,7 +2994,7 @@ class _AutonomousDatabaseState:
3002
2994
  @pulumi.getter(name="isPreviewVersionWithServiceTermsAccepted")
3003
2995
  def is_preview_version_with_service_terms_accepted(self) -> Optional[pulumi.Input[_builtins.bool]]:
3004
2996
  """
3005
- If set to `TRUE`, indicates that an Autonomous Database preview version is being provisioned, and that the preview version's terms of service have been accepted. Note that preview version software is only available for databases on [Autonomous Database Serverless](https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html).
2997
+ If set to `TRUE`, indicates that an Autonomous Database preview version is being provisioned, and that the preview version's terms of service have been accepted. Note that preview version software is only available for Autonomous Database Serverless instances (https://docs.oracle.com/en/cloud/paas/autonomous-database/serverless/).
3006
2998
  """
3007
2999
  return pulumi.get(self, "is_preview_version_with_service_terms_accepted")
3008
3000
 
@@ -3026,7 +3018,7 @@ class _AutonomousDatabaseState:
3026
3018
  @pulumi.getter(name="isRefreshableClone")
3027
3019
  def is_refreshable_clone(self) -> Optional[pulumi.Input[_builtins.bool]]:
3028
3020
  """
3029
- (Updatable) True for creating a refreshable clone and False for detaching the clone from source Autonomous Database. Detaching is one time operation and clone becomes a regular Autonomous Database.
3021
+ Indicates if the Autonomous Database is a refreshable clone.
3030
3022
  """
3031
3023
  return pulumi.get(self, "is_refreshable_clone")
3032
3024
 
@@ -3038,7 +3030,7 @@ class _AutonomousDatabaseState:
3038
3030
  @pulumi.getter(name="isRemoteDataGuardEnabled")
3039
3031
  def is_remote_data_guard_enabled(self) -> Optional[pulumi.Input[_builtins.bool]]:
3040
3032
  """
3041
- Indicates whether the Autonomous Database has Cross Region Data Guard enabled. It takes boolean values. Not applicable to Autonomous Databases using dedicated Exadata infrastructure or Exadata Cloud@Customer infrastructure.
3033
+ Indicates whether the Autonomous Database has Cross Region Data Guard enabled. Not applicable to Autonomous Databases using dedicated Exadata infrastructure or Exadata Cloud@Customer infrastructure.
3042
3034
  """
3043
3035
  return pulumi.get(self, "is_remote_data_guard_enabled")
3044
3036
 
@@ -3058,16 +3050,19 @@ class _AutonomousDatabaseState:
3058
3050
  def is_replicate_automatic_backups(self, value: Optional[pulumi.Input[_builtins.bool]]):
3059
3051
  pulumi.set(self, "is_replicate_automatic_backups", value)
3060
3052
 
3053
+ @_builtins.property
3054
+ @pulumi.getter(name="isScheduleDbVersionUpgradeToEarliest")
3055
+ def is_schedule_db_version_upgrade_to_earliest(self) -> Optional[pulumi.Input[_builtins.bool]]:
3056
+ return pulumi.get(self, "is_schedule_db_version_upgrade_to_earliest")
3057
+
3058
+ @is_schedule_db_version_upgrade_to_earliest.setter
3059
+ def is_schedule_db_version_upgrade_to_earliest(self, value: Optional[pulumi.Input[_builtins.bool]]):
3060
+ pulumi.set(self, "is_schedule_db_version_upgrade_to_earliest", value)
3061
+
3061
3062
  @_builtins.property
3062
3063
  @pulumi.getter(name="isShrinkOnly")
3063
3064
  @_utilities.deprecated("""The 'is_shrink_only' field has been deprecated. Please use 'shrink_adb_trigger' instead.""")
3064
3065
  def is_shrink_only(self) -> Optional[pulumi.Input[_builtins.bool]]:
3065
- """
3066
- (Updatable) An optional property when enabled triggers the Shrinking of Autonomous Database once. To trigger Shrinking of ADB once again, this flag needs to be disabled and re-enabled again. It should not be passed during create database operation. It is only applicable on Serverless databases i.e. where `is_dedicated` is false.
3067
-
3068
- ** IMPORTANT **
3069
- Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
3070
- """
3071
3066
  return pulumi.get(self, "is_shrink_only")
3072
3067
 
3073
3068
  @is_shrink_only.setter
@@ -3090,7 +3085,7 @@ class _AutonomousDatabaseState:
3090
3085
  @pulumi.getter(name="keyStoreId")
3091
3086
  def key_store_id(self) -> Optional[pulumi.Input[_builtins.str]]:
3092
3087
  """
3093
- The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the key store of Oracle Vault. This is used in Autonomous Databases on Serverless instances and dedicated Exadata infrastructure.
3088
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the key store of Oracle Vault.
3094
3089
  """
3095
3090
  return pulumi.get(self, "key_store_id")
3096
3091
 
@@ -3113,9 +3108,6 @@ class _AutonomousDatabaseState:
3113
3108
  @_builtins.property
3114
3109
  @pulumi.getter(name="keyVersionId")
3115
3110
  def key_version_id(self) -> Optional[pulumi.Input[_builtins.str]]:
3116
- """
3117
- The OCID of the key version that is used in rotate key operations.
3118
- """
3119
3111
  return pulumi.get(self, "key_version_id")
3120
3112
 
3121
3113
  @key_version_id.setter
@@ -3162,7 +3154,9 @@ class _AutonomousDatabaseState:
3162
3154
  @pulumi.getter(name="licenseModel")
3163
3155
  def license_model(self) -> Optional[pulumi.Input[_builtins.str]]:
3164
3156
  """
3165
- (Updatable) 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 PaaS and IaaS services in the cloud. License Included allows you to subscribe to new Oracle Database software licenses and the Database service. Note that when provisioning an Autonomous Database on [dedicated Exadata infrastructure](https://docs.cloud.oracle.com/iaas/Content/Database/Concepts/adbddoverview.htm), this attribute must be null because the attribute is already set at the Autonomous Exadata Infrastructure level. When using [shared Exadata infrastructure](https://docs.cloud.oracle.com/iaas/Content/Database/Concepts/adboverview.htm#AEI), if a value is not specified, the system will supply the value of `BRING_YOUR_OWN_LICENSE`. It is a required field when `db_workload` is AJD and needs to be set to `LICENSE_INCLUDED` as AJD does not support default `license_model` value `BRING_YOUR_OWN_LICENSE`.
3157
+ (Updatable) 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.
3158
+
3159
+ This cannot be updated in parallel with any of the following: cpuCoreCount, computeCount, dataStorageSizeInTBs, adminPassword, isMTLSConnectionRequired, dbWorkload, privateEndpointLabel, nsgIds, dbVersion, dbName, scheduledOperations, dbToolsDetails, or isFreeTier. It is a required field when `db_workload` is AJD and needs to be set to `LICENSE_INCLUDED` as AJD does not support default `license_model` value `BRING_YOUR_OWN_LICENSE`.
3166
3160
  """
3167
3161
  return pulumi.get(self, "license_model")
3168
3162
 
@@ -3245,9 +3239,6 @@ class _AutonomousDatabaseState:
3245
3239
  @_builtins.property
3246
3240
  @pulumi.getter(name="maxCpuCoreCount")
3247
3241
  def max_cpu_core_count(self) -> Optional[pulumi.Input[_builtins.int]]:
3248
- """
3249
- (Updatable) **Deprecated.** The number of Max OCPU cores to be made available to the autonomous database with auto scaling of cpu enabled.
3250
- """
3251
3242
  return pulumi.get(self, "max_cpu_core_count")
3252
3243
 
3253
3244
  @max_cpu_core_count.setter
@@ -3258,7 +3249,7 @@ class _AutonomousDatabaseState:
3258
3249
  @pulumi.getter(name="memoryPerOracleComputeUnitInGbs")
3259
3250
  def memory_per_oracle_compute_unit_in_gbs(self) -> Optional[pulumi.Input[_builtins.int]]:
3260
3251
  """
3261
- 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. This parameter is not used for Autonomous database Serverless.
3252
+ The amount of memory (in GBs) enabled per ECPU or OCPU.
3262
3253
  """
3263
3254
  return pulumi.get(self, "memory_per_oracle_compute_unit_in_gbs")
3264
3255
 
@@ -3270,7 +3261,7 @@ class _AutonomousDatabaseState:
3270
3261
  @pulumi.getter(name="ncharacterSet")
3271
3262
  def ncharacter_set(self) -> Optional[pulumi.Input[_builtins.str]]:
3272
3263
  """
3273
- The national character set for the autonomous database. The default is AL16UTF16. Allowed values are: AL16UTF16 or UTF8.
3264
+ The character set for the Autonomous Database. The default is AL32UTF8. Use [List Autonomous Database Character Sets](https://docs.oracle.com/iaas/autonomous-database-serverless/doc/autonomous-character-set-selection.html) to list the allowed values for an Autonomous Database Serverless instance. For an Autonomous Database on dedicated Exadata infrastructure, the allowed values are: AL16UTF16 or UTF8.
3274
3265
  """
3275
3266
  return pulumi.get(self, "ncharacter_set")
3276
3267
 
@@ -3321,13 +3312,12 @@ class _AutonomousDatabaseState:
3321
3312
  """
3322
3313
  (Updatable) The number of OCPU cores to be made available to the database.
3323
3314
 
3324
-
3325
- * Providing `computeModel` and `computeCount` is the preferred method for setting CPUs for both OCPU and ECPU.
3326
3315
  The following points apply:
3327
- * For Autonomous Databases on dedicated Exadata infrastructure, to provision less than 1 core, enter a fractional value in an increment of 0.1. For example, you can provision 0.3 or 0.4 cores, but not 0.35 cores. (Note that fractional OCPU values are not supported for Autonomous Databasese on shared Exadata infrastructure.)
3328
- * To provision 1 or more cores, you must enter an integer between 1 and the maximum number of cores available for the infrastructure shape. For example, you can provision 2 cores or 3 cores, but not 2.5 cores. This applies to Autonomous Databases on both shared and dedicated Exadata infrastructure.
3316
+ * For Autonomous Databases on Dedicated Exadata infrastructure, to provision less than 1 core, enter a fractional value in an increment of 0.1. For example, you can provision 0.3 or 0.4 cores, but not 0.35 cores. (Note that fractional OCPU values are not supported for Autonomous Database Serverless instances.)
3317
+ * To provision 1 or more cores, you must enter an integer between 1 and the maximum number of cores available for the infrastructure shape. For example, you can provision 2 cores or 3 cores, but not 2.5 cores. This applies to an Autonomous Database Serverless instance or an Autonomous Database on Dedicated Exadata Infrastructure.
3318
+ * For Autonomous Database Serverless instances, this parameter is not used.
3329
3319
 
3330
- For Autonomous Databases on dedicated Exadata infrastructure, the maximum number of cores is determined by the infrastructure shape. See [Characteristics of Infrastructure Shapes](https://www.oracle.com/pls/topic/lookup?ctx=en/cloud/paas/autonomous-database&id=ATPFG-GUID-B0F033C1-CC5A-42F0-B2E7-3CECFEDA1FD1) for shape details.
3320
+ For Autonomous Databases on Dedicated Exadata infrastructure, the maximum number of cores is determined by the infrastructure shape. See [Characteristics of Infrastructure Shapes](https://www.oracle.com/pls/topic/lookup?ctx=en/cloud/paas/autonomous-database&id=ATPFG-GUID-B0F033C1-CC5A-42F0-B2E7-3CECFEDA1FD1) for shape details.
3331
3321
 
3332
3322
  **Note:** This parameter cannot be used with the `cpuCoreCount` parameter.
3333
3323
  """
@@ -3341,7 +3331,9 @@ class _AutonomousDatabaseState:
3341
3331
  @pulumi.getter(name="openMode")
3342
3332
  def open_mode(self) -> Optional[pulumi.Input[_builtins.str]]:
3343
3333
  """
3344
- Indicates the Autonomous Database mode. The database can be opened in `READ_ONLY` or `READ_WRITE` mode.
3334
+ (Updatable) Indicates the Autonomous Database mode. The database can be opened in `READ_ONLY` or `READ_WRITE` mode.
3335
+
3336
+ This cannot be updated in parallel with any of the following: cpuCoreCount, computeCount, computeModel, adminPassword, whitelistedIps, isMTLSConnectionRequired, dbVersion, isRefreshable, dbName, scheduledOperations, dbToolsDetails, or isFreeTier.
3345
3337
  """
3346
3338
  return pulumi.get(self, "open_mode")
3347
3339
 
@@ -3353,7 +3345,7 @@ class _AutonomousDatabaseState:
3353
3345
  @pulumi.getter(name="operationsInsightsStatus")
3354
3346
  def operations_insights_status(self) -> Optional[pulumi.Input[_builtins.str]]:
3355
3347
  """
3356
- (Updatable) Status of Operations Insights for this Autonomous Database. Values supported are `ENABLED` and `NOT_ENABLED`
3348
+ Status of Operations Insights for this Autonomous Database.
3357
3349
  """
3358
3350
  return pulumi.get(self, "operations_insights_status")
3359
3351
 
@@ -3364,9 +3356,6 @@ class _AutonomousDatabaseState:
3364
3356
  @_builtins.property
3365
3357
  @pulumi.getter(name="peerDbId")
3366
3358
  def peer_db_id(self) -> Optional[pulumi.Input[_builtins.str]]:
3367
- """
3368
- 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.
3369
- """
3370
3359
  return pulumi.get(self, "peer_db_id")
3371
3360
 
3372
3361
  @peer_db_id.setter
@@ -3377,7 +3366,7 @@ class _AutonomousDatabaseState:
3377
3366
  @pulumi.getter(name="peerDbIds")
3378
3367
  def peer_db_ids(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
3379
3368
  """
3380
- The list of [OCIDs](https://docs.cloud.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.
3369
+ 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.
3381
3370
  """
3382
3371
  return pulumi.get(self, "peer_db_ids")
3383
3372
 
@@ -3401,7 +3390,7 @@ class _AutonomousDatabaseState:
3401
3390
  @pulumi.getter(name="privateEndpoint")
3402
3391
  def private_endpoint(self) -> Optional[pulumi.Input[_builtins.str]]:
3403
3392
  """
3404
- The private endpoint for the resource. This parameter is not used in Autonomous Databases using Serverless infrastructure and Exadata Cloud@Customer infrastructure.
3393
+ The private endpoint for the resource.
3405
3394
  """
3406
3395
  return pulumi.get(self, "private_endpoint")
3407
3396
 
@@ -3413,7 +3402,7 @@ class _AutonomousDatabaseState:
3413
3402
  @pulumi.getter(name="privateEndpointIp")
3414
3403
  def private_endpoint_ip(self) -> Optional[pulumi.Input[_builtins.str]]:
3415
3404
  """
3416
- The private endpoint Ip address for the resource.
3405
+ (Updatable) The private endpoint Ip address for the resource.
3417
3406
  """
3418
3407
  return pulumi.get(self, "private_endpoint_ip")
3419
3408
 
@@ -3425,10 +3414,7 @@ class _AutonomousDatabaseState:
3425
3414
  @pulumi.getter(name="privateEndpointLabel")
3426
3415
  def private_endpoint_label(self) -> Optional[pulumi.Input[_builtins.str]]:
3427
3416
  """
3428
- (Updatable) (Optional) (Updatable) The resource's private endpoint label.
3429
- * Setting the endpoint label to a non-empty string creates a private endpoint database.
3430
- * Resetting the endpoint label to an empty string, after the creation of the private endpoint database, changes the private endpoint database to a public endpoint database.
3431
- * Setting the endpoint label to a non-empty string value, updates to a new private endpoint database, when the database is disabled and re-enabled.
3417
+ (Updatable) The private endpoint label for the resource.
3432
3418
  """
3433
3419
  return pulumi.get(self, "private_endpoint_label")
3434
3420
 
@@ -3559,9 +3545,6 @@ class _AutonomousDatabaseState:
3559
3545
  @_builtins.property
3560
3546
  @pulumi.getter(name="rotateKeyTrigger")
3561
3547
  def rotate_key_trigger(self) -> Optional[pulumi.Input[_builtins.bool]]:
3562
- """
3563
- (Updatable) An optional property when flipped triggers rotation of KMS key. It is only applicable on dedicated databases i.e. where `is_dedicated` is true.
3564
- """
3565
3548
  return pulumi.get(self, "rotate_key_trigger")
3566
3549
 
3567
3550
  @rotate_key_trigger.setter
@@ -3645,15 +3628,9 @@ class _AutonomousDatabaseState:
3645
3628
  @pulumi.getter
3646
3629
  def source(self) -> Optional[pulumi.Input[_builtins.str]]:
3647
3630
  """
3648
- The source of the database:
3649
- * Use `NONE` for creating a new Autonomous Database.
3650
- * Use `DATABASE` for creating a new Autonomous Database by cloning an existing running Autonomous Database from the latest timestamp, also provide the source database OCID in the `source_id` parameter.
3651
- * Use `CROSS_REGION_DATAGUARD` to create a standby Data Guard database in another region, also provide the remote primary database OCID in the `source_id` parameter.
3652
- * Use `CLONE_TO_REFRESHABLE` for creating a refreshable clone.
3631
+ The source of the database: Use `NONE` for creating a new Autonomous Database. Use `DATABASE` for creating a new Autonomous Database by cloning an existing Autonomous Database. Use `CROSS_REGION_DATAGUARD` to create a standby Data Guard database in another region.
3653
3632
 
3654
- For [Autonomous Database Serverless](https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html) instances, the following cloning options are available:
3655
- * Use `BACKUP_FROM_ID` for creating a new Autonomous Database by cloning from a specified backup. Also provide the backup OCID in the `autonomous_database_backup_id` parameter.
3656
- * Use `BACKUP_FROM_TIMESTAMP` for creating a point-in-time Autonomous Database clone using backups. Also provide the backup timestamp in the `timestamp` parameter. For more information, see [Cloning and Moving an Autonomous Database](https://docs.oracle.com/en/cloud/paas/autonomous-database/adbsa/clone-autonomous-database.html#GUID-D771796F-5081-4CFB-A7FF-0F893EABD7BC).
3633
+ For [Autonomous Database Serverless instances](https://docs.oracle.com/en/cloud/paas/autonomous-database/serverless/), the following cloning options are available: Use `BACKUP_FROM_ID` for creating a new Autonomous Database from a specified backup. Use `BACKUP_FROM_TIMESTAMP` for creating a point-in-time Autonomous Database clone using backups. For more information, see [Cloning and Moving an Autonomous Database](https://docs.oracle.com/en/cloud/paas/autonomous-database/adbsa/clone-autonomous-database.html#GUID-D771796F-5081-4CFB-A7FF-0F893EABD7BC).
3657
3634
  """
3658
3635
  return pulumi.get(self, "source")
3659
3636
 
@@ -3665,7 +3642,7 @@ class _AutonomousDatabaseState:
3665
3642
  @pulumi.getter(name="sourceId")
3666
3643
  def source_id(self) -> Optional[pulumi.Input[_builtins.str]]:
3667
3644
  """
3668
- The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the source Autonomous Database that will be used to create a new standby database for the Data Guard association.
3645
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the source Autonomous Database that will be used to create a new peer database for the Data Guard association.
3669
3646
  """
3670
3647
  return pulumi.get(self, "source_id")
3671
3648
 
@@ -3691,12 +3668,10 @@ class _AutonomousDatabaseState:
3691
3668
  """
3692
3669
  (Updatable) 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`.
3693
3670
 
3694
- For Autonomous Database Serverless instances, this is an array of CIDR (Classless Inter-Domain Routing) notations for a subnet or VCN OCID. Use a semicolon (;) as a deliminator between the VCN-specific subnets or IPs. Example: `["1.1.1.1","1.1.1.0/24","ocid1.vcn.oc1.sea.<unique_id>","ocid1.vcn.oc1.sea.<unique_id1>;1.1.1.1","ocid1.vcn.oc1.sea.<unique_id2>;1.1.0.0/16"]` For Exadata Cloud@Customer, this is an array of IP addresses or CIDR (Classless Inter-Domain Routing) notations. Example: `["1.1.1.1","1.1.1.0/24","1.1.2.25"]`
3671
+ For Autonomous Database Serverless, this is an array of CIDR (classless inter-domain routing) notations for a subnet or VCN OCID (virtual cloud network Oracle Cloud ID). Multiple IPs and VCN OCIDs should be separate strings separated by commas, but if it’s other configurations that need multiple pieces of information then its each piece is connected with semicolon (;) as a delimiter. Example: `["1.1.1.1","1.1.1.0/24","ocid1.vcn.oc1.sea.<unique_id>","ocid1.vcn.oc1.sea.<unique_id1>;1.1.1.1","ocid1.vcn.oc1.sea.<unique_id2>;1.1.0.0/16"]` For Exadata Cloud@Customer, this is an array of IP addresses or CIDR notations. Example: `["1.1.1.1","1.1.1.0/24","1.1.2.25"]`
3695
3672
 
3696
3673
  For an update operation, if you want to delete all the IPs in the ACL, use an array with a single empty string entry.
3697
3674
 
3698
- If `arePrimaryWhitelistedIpsUsed` is 'TRUE' then Autonomous Database uses `whitelisted_ips` primary's IP access control list (ACL) as `standbywhitelistedips` for the disaster recovery peer.
3699
-
3700
3675
  This cannot be updated in parallel with any of the following: licenseModel, dbEdition, cpuCoreCount, computeCount, computeModel, adminPassword, isMTLSConnectionRequired, openMode, permissionLevel, dbWorkload, dbVersion, isRefreshable, dbName, scheduledOperations, dbToolsDetails, isLocalDataGuardEnabled, or isFreeTier.
3701
3676
  """
3702
3677
  return pulumi.get(self, "standby_whitelisted_ips")
@@ -3721,12 +3696,14 @@ class _AutonomousDatabaseState:
3721
3696
  @pulumi.getter(name="subnetId")
3722
3697
  def subnet_id(self) -> Optional[pulumi.Input[_builtins.str]]:
3723
3698
  """
3724
- (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet the resource is associated with. This the only parameter to configure private endpoint, VCN details are obtained from the `subnet_id`.
3699
+ (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet the resource is associated with.
3725
3700
 
3726
3701
  **Subnet Restrictions:**
3727
3702
  * For bare metal DB systems and for single node virtual machine DB systems, do not use a subnet that overlaps with 192.168.16.16/28.
3728
3703
  * For Exadata and virtual machine 2-node RAC systems, do not use a subnet that overlaps with 192.168.128.0/20.
3729
3704
  * For Autonomous Database, setting this will disable public secure access to the database.
3705
+
3706
+ 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.
3730
3707
  """
3731
3708
  return pulumi.get(self, "subnet_id")
3732
3709
 
@@ -3739,7 +3716,6 @@ class _AutonomousDatabaseState:
3739
3716
  def subscription_id(self) -> Optional[pulumi.Input[_builtins.str]]:
3740
3717
  """
3741
3718
  The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subscription with which resource needs to be associated with.
3742
- 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.
3743
3719
  """
3744
3720
  return pulumi.get(self, "subscription_id")
3745
3721
 
@@ -3762,9 +3738,6 @@ class _AutonomousDatabaseState:
3762
3738
  @_builtins.property
3763
3739
  @pulumi.getter(name="switchoverTo")
3764
3740
  def switchover_to(self) -> Optional[pulumi.Input[_builtins.str]]:
3765
- """
3766
- It is applicable only when `is_local_data_guard_enabled` is true. Could be set to `PRIMARY` or `STANDBY`. Default value is `PRIMARY`.
3767
- """
3768
3741
  return pulumi.get(self, "switchover_to")
3769
3742
 
3770
3743
  @switchover_to.setter
@@ -3774,9 +3747,6 @@ class _AutonomousDatabaseState:
3774
3747
  @_builtins.property
3775
3748
  @pulumi.getter(name="switchoverToRemotePeerId")
3776
3749
  def switchover_to_remote_peer_id(self) -> Optional[pulumi.Input[_builtins.str]]:
3777
- """
3778
- (Updatable) It is applicable only when `dataguard_region_type` and `role` are set, and `is_dedicated` is false. For Autonomous Database Serverless instances, Data Guard associations have designated primary and standby regions, and these region types do not change when the database changes roles. It takes the [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the remote peer to switchover to and the API is called from the remote region.
3779
- """
3780
3750
  return pulumi.get(self, "switchover_to_remote_peer_id")
3781
3751
 
3782
3752
  @switchover_to_remote_peer_id.setter
@@ -3843,6 +3813,30 @@ class _AutonomousDatabaseState:
3843
3813
  def time_disaster_recovery_role_changed(self, value: Optional[pulumi.Input[_builtins.str]]):
3844
3814
  pulumi.set(self, "time_disaster_recovery_role_changed", value)
3845
3815
 
3816
+ @_builtins.property
3817
+ @pulumi.getter(name="timeEarliestAvailableDbVersionUpgrade")
3818
+ def time_earliest_available_db_version_upgrade(self) -> Optional[pulumi.Input[_builtins.str]]:
3819
+ """
3820
+ The earliest(min) date and time the Autonomous Database can be scheduled to upgrade to 23ai.
3821
+ """
3822
+ return pulumi.get(self, "time_earliest_available_db_version_upgrade")
3823
+
3824
+ @time_earliest_available_db_version_upgrade.setter
3825
+ def time_earliest_available_db_version_upgrade(self, value: Optional[pulumi.Input[_builtins.str]]):
3826
+ pulumi.set(self, "time_earliest_available_db_version_upgrade", value)
3827
+
3828
+ @_builtins.property
3829
+ @pulumi.getter(name="timeLatestAvailableDbVersionUpgrade")
3830
+ def time_latest_available_db_version_upgrade(self) -> Optional[pulumi.Input[_builtins.str]]:
3831
+ """
3832
+ The max date and time the Autonomous Database can be scheduled to upgrade to 23ai.
3833
+ """
3834
+ return pulumi.get(self, "time_latest_available_db_version_upgrade")
3835
+
3836
+ @time_latest_available_db_version_upgrade.setter
3837
+ def time_latest_available_db_version_upgrade(self, value: Optional[pulumi.Input[_builtins.str]]):
3838
+ pulumi.set(self, "time_latest_available_db_version_upgrade", value)
3839
+
3846
3840
  @_builtins.property
3847
3841
  @pulumi.getter(name="timeLocalDataGuardEnabled")
3848
3842
  def time_local_data_guard_enabled(self) -> Optional[pulumi.Input[_builtins.str]]:
@@ -3883,7 +3877,7 @@ class _AutonomousDatabaseState:
3883
3877
  @pulumi.getter(name="timeOfAutoRefreshStart")
3884
3878
  def time_of_auto_refresh_start(self) -> Optional[pulumi.Input[_builtins.str]]:
3885
3879
  """
3886
- 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.
3880
+ (Updatable) 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.
3887
3881
  """
3888
3882
  return pulumi.get(self, "time_of_auto_refresh_start")
3889
3883
 
@@ -3894,6 +3888,9 @@ class _AutonomousDatabaseState:
3894
3888
  @_builtins.property
3895
3889
  @pulumi.getter(name="timeOfJoiningResourcePool")
3896
3890
  def time_of_joining_resource_pool(self) -> Optional[pulumi.Input[_builtins.str]]:
3891
+ """
3892
+ The time the member joined the resource pool.
3893
+ """
3897
3894
  return pulumi.get(self, "time_of_joining_resource_pool")
3898
3895
 
3899
3896
  @time_of_joining_resource_pool.setter
@@ -3972,9 +3969,24 @@ class _AutonomousDatabaseState:
3972
3969
  def time_reclamation_of_free_autonomous_database(self, value: Optional[pulumi.Input[_builtins.str]]):
3973
3970
  pulumi.set(self, "time_reclamation_of_free_autonomous_database", value)
3974
3971
 
3972
+ @_builtins.property
3973
+ @pulumi.getter(name="timeScheduledDbVersionUpgrade")
3974
+ def time_scheduled_db_version_upgrade(self) -> Optional[pulumi.Input[_builtins.str]]:
3975
+ """
3976
+ The date and time the Autonomous Database scheduled to upgrade to 23ai. Send this value along with the target db_version value to schedule the database version upgrade. After the upgrade is scheduled and before the scheduled upgrade time arrives, please keep the db_version value the same as the backend's current db_version.
3977
+ """
3978
+ return pulumi.get(self, "time_scheduled_db_version_upgrade")
3979
+
3980
+ @time_scheduled_db_version_upgrade.setter
3981
+ def time_scheduled_db_version_upgrade(self, value: Optional[pulumi.Input[_builtins.str]]):
3982
+ pulumi.set(self, "time_scheduled_db_version_upgrade", value)
3983
+
3975
3984
  @_builtins.property
3976
3985
  @pulumi.getter(name="timeUndeleted")
3977
3986
  def time_undeleted(self) -> Optional[pulumi.Input[_builtins.str]]:
3987
+ """
3988
+ The date and time the Autonomous Database was most recently undeleted.
3989
+ """
3978
3990
  return pulumi.get(self, "time_undeleted")
3979
3991
 
3980
3992
  @time_undeleted.setter
@@ -4057,7 +4069,7 @@ class _AutonomousDatabaseState:
4057
4069
  @pulumi.getter(name="vaultId")
4058
4070
  def vault_id(self) -> Optional[pulumi.Input[_builtins.str]]:
4059
4071
  """
4060
- 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).
4072
+ 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.
4061
4073
  """
4062
4074
  return pulumi.get(self, "vault_id")
4063
4075
 
@@ -4069,13 +4081,17 @@ class _AutonomousDatabaseState:
4069
4081
  @pulumi.getter(name="whitelistedIps")
4070
4082
  def whitelisted_ips(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
4071
4083
  """
4072
- (Updatable) The client IP access control list (ACL). This feature is available for autonomous databases on [shared Exadata infrastructure](https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html) and on Exadata Cloud@Customer. Only clients connecting from an IP address included in the ACL may access the Autonomous Database instance.
4084
+ (Updatable) 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`.
4073
4085
 
4074
- For Autonomous Database Serverless instances, this is an array of CIDR (Classless Inter-Domain Routing) notations for a subnet or VCN OCID. Use a semicolon (;) as a deliminator between the VCN-specific subnets or IPs. Example: `["1.1.1.1","1.1.1.0/24","ocid1.vcn.oc1.sea.<unique_id>","ocid1.vcn.oc1.sea.<unique_id1>;1.1.1.1","ocid1.vcn.oc1.sea.<unique_id2>;1.1.0.0/16"]` For Exadata Cloud@Customer, this is an array of IP addresses or CIDR (Classless Inter-Domain Routing) notations. Example: `["1.1.1.1","1.1.1.0/24","1.1.2.25"]`
4086
+ For Autonomous Database Serverless, this is an array of CIDR (classless inter-domain routing) notations for a subnet or VCN OCID (virtual cloud network Oracle Cloud ID). Multiple IPs and VCN OCIDs should be separate strings separated by commas, but if it’s other configurations that need multiple pieces of information then its each piece is connected with semicolon (;) as a delimiter. Example: `["1.1.1.1","1.1.1.0/24","ocid1.vcn.oc1.sea.<unique_id>","ocid1.vcn.oc1.sea.<unique_id1>;1.1.1.1","ocid1.vcn.oc1.sea.<unique_id2>;1.1.0.0/16"]` For Exadata Cloud@Customer, this is an array of IP addresses or CIDR notations. Example: `["1.1.1.1","1.1.1.0/24","1.1.2.25"]`
4075
4087
 
4076
4088
  For an update operation, if you want to delete all the IPs in the ACL, use an array with a single empty string entry.
4077
4089
 
4078
4090
  This cannot be updated in parallel with any of the following: licenseModel, dbEdition, cpuCoreCount, computeCount, computeModel, adminPassword, isMTLSConnectionRequired, openMode, permissionLevel, dbWorkload, dbVersion, isRefreshable, dbName, scheduledOperations, dbToolsDetails, isLocalDataGuardEnabled, or isFreeTier. To remove all whitelisted IPs, set the field to a list with an empty string `[""]`.
4091
+
4092
+
4093
+ ** IMPORTANT **
4094
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
4079
4095
  """
4080
4096
  return pulumi.get(self, "whitelisted_ips")
4081
4097
 
@@ -4131,6 +4147,7 @@ class AutonomousDatabase(pulumi.CustomResource):
4131
4147
  is_data_guard_enabled: Optional[pulumi.Input[_builtins.bool]] = None,
4132
4148
  is_dedicated: Optional[pulumi.Input[_builtins.bool]] = None,
4133
4149
  is_dev_tier: Optional[pulumi.Input[_builtins.bool]] = None,
4150
+ is_disable_db_version_upgrade_schedule: Optional[pulumi.Input[_builtins.bool]] = None,
4134
4151
  is_disconnect_peer: Optional[pulumi.Input[_builtins.bool]] = None,
4135
4152
  is_free_tier: Optional[pulumi.Input[_builtins.bool]] = None,
4136
4153
  is_local_data_guard_enabled: Optional[pulumi.Input[_builtins.bool]] = None,
@@ -4138,6 +4155,7 @@ class AutonomousDatabase(pulumi.CustomResource):
4138
4155
  is_preview_version_with_service_terms_accepted: Optional[pulumi.Input[_builtins.bool]] = None,
4139
4156
  is_refreshable_clone: Optional[pulumi.Input[_builtins.bool]] = None,
4140
4157
  is_replicate_automatic_backups: Optional[pulumi.Input[_builtins.bool]] = None,
4158
+ is_schedule_db_version_upgrade_to_earliest: Optional[pulumi.Input[_builtins.bool]] = None,
4141
4159
  is_shrink_only: Optional[pulumi.Input[_builtins.bool]] = None,
4142
4160
  key_version_id: Optional[pulumi.Input[_builtins.str]] = None,
4143
4161
  kms_key_id: Optional[pulumi.Input[_builtins.str]] = None,
@@ -4173,6 +4191,7 @@ class AutonomousDatabase(pulumi.CustomResource):
4173
4191
  switchover_to: Optional[pulumi.Input[_builtins.str]] = None,
4174
4192
  switchover_to_remote_peer_id: Optional[pulumi.Input[_builtins.str]] = None,
4175
4193
  time_of_auto_refresh_start: Optional[pulumi.Input[_builtins.str]] = None,
4194
+ time_scheduled_db_version_upgrade: Optional[pulumi.Input[_builtins.str]] = None,
4176
4195
  timestamp: Optional[pulumi.Input[_builtins.str]] = None,
4177
4196
  use_latest_available_backup_time_stamp: Optional[pulumi.Input[_builtins.bool]] = None,
4178
4197
  vault_id: Optional[pulumi.Input[_builtins.str]] = None,
@@ -4183,8 +4202,6 @@ class AutonomousDatabase(pulumi.CustomResource):
4183
4202
 
4184
4203
  Creates a new Autonomous Database.
4185
4204
 
4186
- This API must be called on the remote region where the peer needs to be created.
4187
-
4188
4205
  ## Import
4189
4206
 
4190
4207
  AutonomousDatabases can be imported using the `id`, e.g.
@@ -4199,30 +4216,27 @@ class AutonomousDatabase(pulumi.CustomResource):
4199
4216
  :param pulumi.Input[_builtins.bool] are_primary_whitelisted_ips_used: (Updatable) 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.
4200
4217
  :param pulumi.Input[_builtins.int] auto_refresh_frequency_in_seconds: (Updatable) 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.
4201
4218
  :param pulumi.Input[_builtins.int] auto_refresh_point_lag_in_seconds: (Updatable) 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.
4202
- :param pulumi.Input[_builtins.str] autonomous_container_database_id: The Autonomous Container Database [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
4219
+ :param pulumi.Input[_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.
4203
4220
  :param pulumi.Input[_builtins.str] autonomous_database_backup_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the source Autonomous Database Backup that you will clone to create a new Autonomous Database.
4204
4221
  :param pulumi.Input[_builtins.str] autonomous_database_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the source Autonomous Database that you will clone to create a new Autonomous Database.
4205
- :param pulumi.Input[_builtins.str] autonomous_maintenance_schedule_type: The maintenance schedule type of the Autonomous Database Serverless instances. The EARLY maintenance schedule of this Autonomous Database follows a schedule that applies patches prior to the REGULAR schedule.The REGULAR maintenance schedule of this Autonomous Database follows the normal cycle.
4206
- :param pulumi.Input[_builtins.int] backup_retention_period_in_days: (Updatable) Retention period, in days, for backups.
4207
- :param pulumi.Input[_builtins.str] character_set: The character set for the autonomous database. The default is AL32UTF8. Allowed values for an Autonomous Database on Serverless infrastructure as returned by [List Autonomous Database Character Sets](https://www.terraform.io/autonomousDatabaseCharacterSets)
4222
+ :param pulumi.Input[_builtins.str] autonomous_maintenance_schedule_type: (Updatable) 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
4223
+ :param pulumi.Input[_builtins.int] backup_retention_period_in_days: (Updatable) Retention period, in days, for long-term backups
4224
+ :param pulumi.Input[_builtins.float] byol_compute_count_limit: (Updatable) 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.
4225
+ :param pulumi.Input[_builtins.str] character_set: The character set for the autonomous database. The default is AL32UTF8. Allowed values for an Autonomous Database Serverless instance as as returned by [List Autonomous Database Character Sets](https://docs.oracle.com/iaas/autonomous-database-serverless/doc/autonomous-character-set-selection.html)
4226
+
4227
+ For an Autonomous Database on dedicated infrastructure, the allowed values are:
4208
4228
 
4209
- For an Autonomous Database on dedicated infrastructure, the allowed values are
4210
4229
  AL32UTF8, AR8ADOS710, AR8ADOS720, AR8APTEC715, AR8ARABICMACS, AR8ASMO8X, AR8ISO8859P6, AR8MSWIN1256, AR8MUSSAD768, AR8NAFITHA711, AR8NAFITHA721, AR8SAKHR706, AR8SAKHR707, AZ8ISO8859P9E, BG8MSWIN, BG8PC437S, BLT8CP921, BLT8ISO8859P13, BLT8MSWIN1257, BLT8PC775, BN8BSCII, CDN8PC863, CEL8ISO8859P14, CL8ISO8859P5, CL8ISOIR111, CL8KOI8R, CL8KOI8U, CL8MACCYRILLICS, CL8MSWIN1251, EE8ISO8859P2, EE8MACCES, EE8MACCROATIANS, EE8MSWIN1250, EE8PC852, EL8DEC, EL8ISO8859P7, EL8MACGREEKS, EL8MSWIN1253, EL8PC437S, EL8PC851, EL8PC869, ET8MSWIN923, HU8ABMOD, HU8CWI2, IN8ISCII, IS8PC861, IW8ISO8859P8, IW8MACHEBREWS, IW8MSWIN1255, IW8PC1507, JA16EUC, JA16EUCTILDE, JA16SJIS, JA16SJISTILDE, JA16VMS, KO16KSC5601, KO16KSCCS, KO16MSWIN949, LA8ISO6937, LA8PASSPORT, LT8MSWIN921, LT8PC772, LT8PC774, LV8PC1117, LV8PC8LR, LV8RST104090, N8PC865, NE8ISO8859P10, NEE8ISO8859P4, RU8BESTA, RU8PC855, RU8PC866, SE8ISO8859P3, TH8MACTHAIS, TH8TISASCII, TR8DEC, TR8MACTURKISHS, TR8MSWIN1254, TR8PC857, US7ASCII, US8PC437, UTF8, VN8MSWIN1258, VN8VN3, WE8DEC, WE8DG, WE8ISO8859P1, WE8ISO8859P15, WE8ISO8859P9, WE8MACROMAN8S, WE8MSWIN1252, WE8NCR4970, WE8NEXTSTEP, WE8PC850, WE8PC858, WE8PC860, WE8ROMAN8, ZHS16CGB231280, ZHS16GBK, ZHT16BIG5, ZHT16CCDC, ZHT16DBT, ZHT16HKSCS, ZHT16MSWIN950, ZHT32EUC, ZHT32SOPS, ZHT32TRIS
4211
4230
  :param pulumi.Input[Sequence[pulumi.Input[_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.
4212
- :param pulumi.Input[_builtins.str] clone_type: The Autonomous Database clone type. This parameter is not used to create a refreshable clone type, and for refreshable clones one must use the (source=CLONE_TO_REFRESHABLE) parameter.
4231
+ :param pulumi.Input[_builtins.str] clone_type: The Autonomous Database clone type.
4213
4232
  * `FULL` - This option creates a new database that includes all source database data.
4214
4233
  * `METADATA` - This option creates a new database that includes the source database schema and select metadata, but not the source database data.
4215
4234
  :param pulumi.Input[_builtins.str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment of the Autonomous Database.
4216
- :param pulumi.Input[_builtins.float] compute_count: (Updatable) The compute amount available to the database. Minimum and maximum values depend on the compute model and whether the database is an Autonomous Database Serverless instance or an Autonomous Database on Dedicated Exadata Infrastructure. For an Autonomous Database Serverless instance, the 'ECPU' compute model requires a minimum value of one, for databases in the elastic resource pool and minimum value of two, otherwise. Required when using the `computeModel` parameter. When using `cpuCoreCount` parameter, it is an error to specify computeCount to a non-null value. Providing `computeModel` and `computeCount` is the preferred method for both OCPU and ECPU.
4235
+ :param pulumi.Input[_builtins.float] compute_count: (Updatable) The compute amount (CPUs) available to the database. Minimum and maximum values depend on the compute model and whether the database is an Autonomous Database Serverless instance or an Autonomous Database on Dedicated Exadata Infrastructure. The 'ECPU' compute model requires a minimum value of one, for databases in the elastic resource pool and minimum value of two, otherwise. Required when using the `computeModel` parameter. When using `cpuCoreCount` parameter, it is an error to specify computeCount to a non-null value. Providing `computeModel` and `computeCount` is the preferred method for both OCPU and ECPU.
4217
4236
  :param pulumi.Input[_builtins.str] compute_model: (Updatable) The compute model of the Autonomous Database. This is required if using the `computeCount` parameter. If using `cpuCoreCount` then it is an error to specify `computeModel` to a non-null value. ECPU compute model is the recommended model and OCPU compute model is legacy.
4218
4237
  :param pulumi.Input[_builtins.int] cpu_core_count: (Updatable) The number of CPU cores to be made available to the database. For Autonomous Databases on dedicated Exadata infrastructure, the maximum number of cores is determined by the infrastructure shape. See [Characteristics of Infrastructure Shapes](https://www.oracle.com/pls/topic/lookup?ctx=en/cloud/paas/autonomous-database&id=ATPFG-GUID-B0F033C1-CC5A-42F0-B2E7-3CECFEDA1FD1) for shape details.
4238
+
4219
4239
  **Note:** This parameter cannot be used with the `ocpuCount` parameter. This input is ignored for Always Free resources.
4220
- * The data type must be an *integer*.
4221
- * The minimum number of cores for all types of autonomous database is *1*
4222
- * The maximum number of cores is as follows:
4223
- * Autonomous Database Serverless instances: The maximum number of cores is *128*.
4224
- * Autonomous Databases on dedicated Exadata infrastructure: The maximum number of cores is determined by the infrastructure shape. See [Characteristics of Infrastructure Shapes](https://www.oracle.com/pls/topic/lookup?ctx=en/cloud/paas/autonomous-database&id=ATPFG-GUID-B0F033C1-CC5A-42F0-B2E7-3CECFEDA1FD1) for shape details.
4225
- * Providing `computeModel` and `computeCount` is the preferred method for setting CPUs for both OCPU and ECPU.
4226
4240
  :param pulumi.Input[Sequence[pulumi.Input[Union['AutonomousDatabaseCustomerContactArgs', 'AutonomousDatabaseCustomerContactArgsDict']]]] customer_contacts: (Updatable) Customer Contacts.
4227
4241
  :param pulumi.Input[_builtins.str] data_safe_status: (Updatable) Status of the Data Safe registration for this Autonomous Database. Could be REGISTERED or NOT_REGISTERED.
4228
4242
  :param pulumi.Input[_builtins.int] data_storage_size_in_gb: (Updatable) The size, in gigabytes, of the data volume that will be created and attached to the database. This storage can later be scaled up if needed. The maximum storage value is determined by the infrastructure shape. See [Characteristics of Infrastructure Shapes](https://www.oracle.com/pls/topic/lookup?ctx=en/cloud/paas/autonomous-database&id=ATPFG-GUID-B0F033C1-CC5A-42F0-B2E7-3CECFEDA1FD1) for shape details.
@@ -4230,16 +4244,16 @@ class AutonomousDatabase(pulumi.CustomResource):
4230
4244
  **Notes**
4231
4245
  * This parameter is only supported for dedicated Exadata infrastructure.
4232
4246
  * This parameter cannot be used with the `dataStorageSizeInTBs` parameter.
4233
- :param pulumi.Input[_builtins.int] data_storage_size_in_tbs: (Updatable) The size, in terabytes, of the data volume that will be created and attached to the database. This storage can later be scaled up if needed. For Autonomous Databases on dedicated Exadata infrastructure, the maximum storage value is determined by the infrastructure shape. See [Characteristics of Infrastructure Shapes](https://www.oracle.com/pls/topic/lookup?ctx=en/cloud/paas/autonomous-database&id=ATPFG-GUID-B0F033C1-CC5A-42F0-B2E7-3CECFEDA1FD1) for shape details. A full Exadata service is allocated when the Autonomous Database size is set to the upper limit (384 TB).
4247
+ :param pulumi.Input[_builtins.int] data_storage_size_in_tbs: (Updatable) The size, in terabytes, of the data volume that will be created and attached to the database. This storage can later be scaled up if needed. For Autonomous Databases on dedicated Exadata infrastructure, the maximum storage value is determined by the infrastructure shape. See [Characteristics of Infrastructure Shapes](https://www.oracle.com/pls/topic/lookup?ctx=en/cloud/paas/autonomous-database&id=ATPFG-GUID-B0F033C1-CC5A-42F0-B2E7-3CECFEDA1FD1) for shape details. A full Exadata service is allocated when the Autonomous Database size is set to the upper limit (384 TB).
4234
4248
 
4235
4249
  **Note:** This parameter cannot be used with the `dataStorageSizeInGBs` parameter. This input is ignored for Always Free resources.
4236
- :param pulumi.Input[_builtins.str] database_edition: (Updatable) The Oracle Database Edition that applies to the Autonomous databases. It can be set to `ENTERPRISE_EDITION` or `STANDARD_EDITION`.
4250
+ :param pulumi.Input[_builtins.str] database_edition: (Updatable) The Oracle Database Edition that applies to the Autonomous databases. This parameter accepts options `STANDARD_EDITION` and `ENTERPRISE_EDITION`.
4237
4251
  :param pulumi.Input[_builtins.str] database_management_status: Status of Database Management for this Autonomous Database.
4238
- :param pulumi.Input[_builtins.str] db_name: The database name. The name must begin with an alphabetic character and can contain a maximum of 14 alphanumeric characters. Special characters are not permitted. The database name must be unique in the tenancy. It is required in all cases except when creating a cross-region Autonomous Data Guard standby instance or a cross-region disaster recovery standby instance.
4252
+ :param pulumi.Input[_builtins.str] db_name: The database name. The name must begin with an alphabetic character and can contain a maximum of 30 alphanumeric characters. Special characters are not permitted. The database name must be unique in the tenancy. It is required in all cases except when creating a cross-region Autonomous Data Guard standby instance or a cross-region disaster recovery standby instance.
4239
4253
  :param pulumi.Input[Sequence[pulumi.Input[Union['AutonomousDatabaseDbToolsDetailArgs', 'AutonomousDatabaseDbToolsDetailArgsDict']]]] db_tools_details: (Updatable) The list of database tools details.
4240
4254
 
4241
4255
  This cannot be updated in parallel with any of the following: licenseModel, dbEdition, cpuCoreCount, computeCount, computeModel, whitelistedIps, isMTLSConnectionRequired, openMode, permissionLevel, dbWorkload, privateEndpointLabel, nsgIds, dbVersion, isRefreshable, dbName, scheduledOperations, isLocalDataGuardEnabled, or isFreeTier.
4242
- :param pulumi.Input[_builtins.str] db_version: (Updatable) A valid Oracle Database version for Autonomous Database.`db_workload` AJD and APEX are only supported for `db_version` `19c` and above.
4256
+ :param pulumi.Input[_builtins.str] db_version: (Updatable) A valid Oracle Database version for Autonomous Database.`db_workload` AJD is only supported for `db_version` `19c` and above.
4243
4257
  :param pulumi.Input[_builtins.str] db_workload: (Updatable) The Autonomous Database workload type. The following values are valid:
4244
4258
  * OLTP - indicates an Autonomous Transaction Processing database
4245
4259
  * DW - indicates an Autonomous Data Warehouse database
@@ -4250,7 +4264,6 @@ class AutonomousDatabase(pulumi.CustomResource):
4250
4264
  :param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] defined_tags: (Updatable) 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).
4251
4265
  :param pulumi.Input[_builtins.str] disaster_recovery_type: Indicates the disaster recovery (DR) type of the standby 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.
4252
4266
  :param pulumi.Input[_builtins.str] display_name: (Updatable) The user-friendly name for the Autonomous Database. The name does not have to be unique.
4253
- :param pulumi.Input[_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.
4254
4267
  :param pulumi.Input[Union['AutonomousDatabaseEncryptionKeyArgs', 'AutonomousDatabaseEncryptionKeyArgsDict']] encryption_key: (Updatable) Details of the Autonomous Database encryption key.
4255
4268
  :param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] freeform_tags: (Updatable) 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"}`
4256
4269
  :param pulumi.Input[_builtins.int] in_memory_percentage: (Updatable) The percentage of the System Global Area(SGA) assigned to In-Memory tables in Autonomous Database. This property is applicable only to Autonomous Databases on the Exadata Cloud@Customer platform.
@@ -4261,53 +4274,45 @@ class AutonomousDatabase(pulumi.CustomResource):
4261
4274
  :param pulumi.Input[_builtins.bool] is_auto_scaling_for_storage_enabled: (Updatable) Indicates if auto scaling is enabled for the Autonomous Database storage. The default value is `FALSE`.
4262
4275
  :param pulumi.Input[_builtins.bool] is_backup_retention_locked: (Updatable) True if the Autonomous Database is backup retention locked.
4263
4276
  :param pulumi.Input[_builtins.bool] is_data_guard_enabled: (Updatable) **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.
4264
- :param pulumi.Input[_builtins.bool] is_dedicated: True if the database is on [dedicated Exadata infrastructure](https://docs.cloud.oracle.com/iaas/Content/Database/Concepts/adbddoverview.htm).
4265
- :param pulumi.Input[_builtins.bool] is_dev_tier: (Updatable) 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.
4266
- :param pulumi.Input[_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.
4267
- :param pulumi.Input[_builtins.bool] is_free_tier: (Updatable) 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. When `db_workload` is `AJD` or `APEX` it cannot be `true`.
4268
- :param pulumi.Input[_builtins.bool] is_local_data_guard_enabled: (Updatable) Indicates whether the Autonomous Database has local (in-region) Data Guard enabled. It takes boolean values. Not applicable to cross-region Autonomous Data Guard associations, or to Autonomous Databases using dedicated Exadata infrastructure or Exadata Cloud@Customer infrastructure.
4269
- :param pulumi.Input[_builtins.bool] is_mtls_connection_required: (Updatable) Indicates whether the Autonomous Database requires mTLS connections.
4270
- :param pulumi.Input[_builtins.bool] is_preview_version_with_service_terms_accepted: If set to `TRUE`, indicates that an Autonomous Database preview version is being provisioned, and that the preview version's terms of service have been accepted. Note that preview version software is only available for databases on [Autonomous Database Serverless](https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html).
4271
- :param pulumi.Input[_builtins.bool] is_refreshable_clone: (Updatable) True for creating a refreshable clone and False for detaching the clone from source Autonomous Database. Detaching is one time operation and clone becomes a regular Autonomous Database.
4272
- :param pulumi.Input[_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.
4273
- :param pulumi.Input[_builtins.bool] is_shrink_only: (Updatable) An optional property when enabled triggers the Shrinking of Autonomous Database once. To trigger Shrinking of ADB once again, this flag needs to be disabled and re-enabled again. It should not be passed during create database operation. It is only applicable on Serverless databases i.e. where `is_dedicated` is false.
4277
+ :param pulumi.Input[_builtins.bool] is_dedicated: True if the database is on [dedicated Exadata infrastructure](https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html).
4278
+ :param pulumi.Input[_builtins.bool] is_dev_tier: (Updatable) 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.
4279
+ :param pulumi.Input[_builtins.bool] is_free_tier: (Updatable) 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.
4274
4280
 
4275
- ** IMPORTANT **
4276
- Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
4277
- :param pulumi.Input[_builtins.str] key_version_id: The OCID of the key version that is used in rotate key operations.
4281
+ 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 When `db_workload` is `AJD` it cannot be `true`.
4282
+ :param pulumi.Input[_builtins.bool] is_local_data_guard_enabled: (Updatable) 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.
4283
+ :param pulumi.Input[_builtins.bool] is_preview_version_with_service_terms_accepted: If set to `TRUE`, indicates that an Autonomous Database preview version is being provisioned, and that the preview version's terms of service have been accepted. Note that preview version software is only available for Autonomous Database Serverless instances (https://docs.oracle.com/en/cloud/paas/autonomous-database/serverless/).
4284
+ :param pulumi.Input[_builtins.bool] is_refreshable_clone: Indicates if the Autonomous Database is a refreshable clone.
4285
+ :param pulumi.Input[_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.
4278
4286
  :param pulumi.Input[_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.
4279
- :param pulumi.Input[_builtins.str] license_model: (Updatable) 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 PaaS and IaaS services in the cloud. License Included allows you to subscribe to new Oracle Database software licenses and the Database service. Note that when provisioning an Autonomous Database on [dedicated Exadata infrastructure](https://docs.cloud.oracle.com/iaas/Content/Database/Concepts/adbddoverview.htm), this attribute must be null because the attribute is already set at the Autonomous Exadata Infrastructure level. When using [shared Exadata infrastructure](https://docs.cloud.oracle.com/iaas/Content/Database/Concepts/adboverview.htm#AEI), if a value is not specified, the system will supply the value of `BRING_YOUR_OWN_LICENSE`. It is a required field when `db_workload` is AJD and needs to be set to `LICENSE_INCLUDED` as AJD does not support default `license_model` value `BRING_YOUR_OWN_LICENSE`.
4287
+ :param pulumi.Input[_builtins.str] license_model: (Updatable) 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.
4288
+
4289
+ This cannot be updated in parallel with any of the following: cpuCoreCount, computeCount, dataStorageSizeInTBs, adminPassword, isMTLSConnectionRequired, dbWorkload, privateEndpointLabel, nsgIds, dbVersion, dbName, scheduledOperations, dbToolsDetails, or isFreeTier. It is a required field when `db_workload` is AJD and needs to be set to `LICENSE_INCLUDED` as AJD does not support default `license_model` value `BRING_YOUR_OWN_LICENSE`.
4280
4290
  :param pulumi.Input[_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
4281
4291
  :param pulumi.Input[Sequence[pulumi.Input[Union['AutonomousDatabaseLongTermBackupScheduleArgs', 'AutonomousDatabaseLongTermBackupScheduleArgsDict']]]] long_term_backup_schedules: Details for the long-term backup schedule.
4282
- :param pulumi.Input[_builtins.int] max_cpu_core_count: (Updatable) **Deprecated.** The number of Max OCPU cores to be made available to the autonomous database with auto scaling of cpu enabled.
4283
- :param pulumi.Input[_builtins.str] ncharacter_set: The national character set for the autonomous database. The default is AL16UTF16. Allowed values are: AL16UTF16 or UTF8.
4292
+ :param pulumi.Input[_builtins.str] ncharacter_set: The character set for the Autonomous Database. The default is AL32UTF8. Use [List Autonomous Database Character Sets](https://docs.oracle.com/iaas/autonomous-database-serverless/doc/autonomous-character-set-selection.html) to list the allowed values for an Autonomous Database Serverless instance. For an Autonomous Database on dedicated Exadata infrastructure, the allowed values are: AL16UTF16 or UTF8.
4284
4293
  :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] nsg_ids: (Updatable) The list of [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for the network security groups (NSGs) to which this resource belongs. Setting this to an empty list removes all resources from all NSGs. For more information about NSGs, see [Security Rules](https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/securityrules.htm). **NsgIds restrictions:**
4285
4294
  * A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
4286
4295
  :param pulumi.Input[_builtins.float] ocpu_count: (Updatable) The number of OCPU cores to be made available to the database.
4287
4296
 
4288
-
4289
- * Providing `computeModel` and `computeCount` is the preferred method for setting CPUs for both OCPU and ECPU.
4290
4297
  The following points apply:
4291
- * For Autonomous Databases on dedicated Exadata infrastructure, to provision less than 1 core, enter a fractional value in an increment of 0.1. For example, you can provision 0.3 or 0.4 cores, but not 0.35 cores. (Note that fractional OCPU values are not supported for Autonomous Databasese on shared Exadata infrastructure.)
4292
- * To provision 1 or more cores, you must enter an integer between 1 and the maximum number of cores available for the infrastructure shape. For example, you can provision 2 cores or 3 cores, but not 2.5 cores. This applies to Autonomous Databases on both shared and dedicated Exadata infrastructure.
4298
+ * For Autonomous Databases on Dedicated Exadata infrastructure, to provision less than 1 core, enter a fractional value in an increment of 0.1. For example, you can provision 0.3 or 0.4 cores, but not 0.35 cores. (Note that fractional OCPU values are not supported for Autonomous Database Serverless instances.)
4299
+ * To provision 1 or more cores, you must enter an integer between 1 and the maximum number of cores available for the infrastructure shape. For example, you can provision 2 cores or 3 cores, but not 2.5 cores. This applies to an Autonomous Database Serverless instance or an Autonomous Database on Dedicated Exadata Infrastructure.
4300
+ * For Autonomous Database Serverless instances, this parameter is not used.
4293
4301
 
4294
- For Autonomous Databases on dedicated Exadata infrastructure, the maximum number of cores is determined by the infrastructure shape. See [Characteristics of Infrastructure Shapes](https://www.oracle.com/pls/topic/lookup?ctx=en/cloud/paas/autonomous-database&id=ATPFG-GUID-B0F033C1-CC5A-42F0-B2E7-3CECFEDA1FD1) for shape details.
4302
+ For Autonomous Databases on Dedicated Exadata infrastructure, the maximum number of cores is determined by the infrastructure shape. See [Characteristics of Infrastructure Shapes](https://www.oracle.com/pls/topic/lookup?ctx=en/cloud/paas/autonomous-database&id=ATPFG-GUID-B0F033C1-CC5A-42F0-B2E7-3CECFEDA1FD1) for shape details.
4295
4303
 
4296
4304
  **Note:** This parameter cannot be used with the `cpuCoreCount` parameter.
4297
- :param pulumi.Input[_builtins.str] open_mode: Indicates the Autonomous Database mode. The database can be opened in `READ_ONLY` or `READ_WRITE` mode.
4298
- :param pulumi.Input[_builtins.str] operations_insights_status: (Updatable) Status of Operations Insights for this Autonomous Database. Values supported are `ENABLED` and `NOT_ENABLED`
4299
- :param pulumi.Input[_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.
4305
+ :param pulumi.Input[_builtins.str] open_mode: (Updatable) Indicates the Autonomous Database mode. The database can be opened in `READ_ONLY` or `READ_WRITE` mode.
4306
+
4307
+ This cannot be updated in parallel with any of the following: cpuCoreCount, computeCount, computeModel, adminPassword, whitelistedIps, isMTLSConnectionRequired, dbVersion, isRefreshable, dbName, scheduledOperations, dbToolsDetails, or isFreeTier.
4308
+ :param pulumi.Input[_builtins.str] operations_insights_status: Status of Operations Insights for this Autonomous Database.
4300
4309
  :param pulumi.Input[_builtins.str] permission_level: The Autonomous Database permission level. Restricted mode allows access only by admin users.
4301
- :param pulumi.Input[_builtins.str] private_endpoint_ip: The private endpoint Ip address for the resource.
4302
- :param pulumi.Input[_builtins.str] private_endpoint_label: (Updatable) (Optional) (Updatable) The resource's private endpoint label.
4303
- * Setting the endpoint label to a non-empty string creates a private endpoint database.
4304
- * Resetting the endpoint label to an empty string, after the creation of the private endpoint database, changes the private endpoint database to a public endpoint database.
4305
- * Setting the endpoint label to a non-empty string value, updates to a new private endpoint database, when the database is disabled and re-enabled.
4310
+ :param pulumi.Input[_builtins.str] private_endpoint_ip: (Updatable) The private endpoint Ip address for the resource.
4311
+ :param pulumi.Input[_builtins.str] private_endpoint_label: (Updatable) The private endpoint label for the resource.
4306
4312
  :param pulumi.Input[_builtins.str] refreshable_mode: (Updatable) The refresh mode of the clone. AUTOMATIC indicates that the clone is automatically being refreshed with data from the source Autonomous Database.
4307
4313
  :param pulumi.Input[_builtins.str] remote_disaster_recovery_type: Indicates the cross-region disaster recovery (DR) type of the standby 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.
4308
4314
  :param pulumi.Input[_builtins.str] resource_pool_leader_id: (Updatable) The unique identifier for leader autonomous database OCID [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
4309
4315
  :param pulumi.Input[Union['AutonomousDatabaseResourcePoolSummaryArgs', 'AutonomousDatabaseResourcePoolSummaryArgsDict']] resource_pool_summary: (Updatable) The configuration details for resource pool
4310
- :param pulumi.Input[_builtins.bool] rotate_key_trigger: (Updatable) An optional property when flipped triggers rotation of KMS key. It is only applicable on dedicated databases i.e. where `is_dedicated` is true.
4311
4316
  :param pulumi.Input[Sequence[pulumi.Input[Union['AutonomousDatabaseScheduledOperationArgs', 'AutonomousDatabaseScheduledOperationArgsDict']]]] scheduled_operations: (Updatable) The list of scheduled operations. Consists of values such as dayOfWeek, scheduledStartTime, scheduledStopTime.
4312
4317
 
4313
4318
  This cannot be updated in parallel with any of the following: licenseModel, dbEdition, cpuCoreCount, computeCount, computeModel, whitelistedIps, isMTLSConnectionRequired, openMode, permissionLevel, dbWorkload, privateEndpointLabel, nsgIds, dbVersion, isRefreshable, dbName, dbToolsDetails, isLocalDataGuardEnabled, or isFreeTier.
@@ -4316,47 +4321,43 @@ class AutonomousDatabase(pulumi.CustomResource):
4316
4321
  This cannot be used in conjunction with adminPassword.
4317
4322
  :param pulumi.Input[_builtins.int] secret_version_number: (Updatable) The version of the vault secret. If no version is specified, the latest version will be used.
4318
4323
  :param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] security_attributes: (Updatable) 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"}}}`
4319
- :param pulumi.Input[_builtins.str] source: The source of the database:
4320
- * Use `NONE` for creating a new Autonomous Database.
4321
- * Use `DATABASE` for creating a new Autonomous Database by cloning an existing running Autonomous Database from the latest timestamp, also provide the source database OCID in the `source_id` parameter.
4322
- * Use `CROSS_REGION_DATAGUARD` to create a standby Data Guard database in another region, also provide the remote primary database OCID in the `source_id` parameter.
4323
- * Use `CLONE_TO_REFRESHABLE` for creating a refreshable clone.
4324
+ :param pulumi.Input[_builtins.str] source: The source of the database: Use `NONE` for creating a new Autonomous Database. Use `DATABASE` for creating a new Autonomous Database by cloning an existing Autonomous Database. Use `CROSS_REGION_DATAGUARD` to create a standby Data Guard database in another region.
4324
4325
 
4325
- For [Autonomous Database Serverless](https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html) instances, the following cloning options are available:
4326
- * Use `BACKUP_FROM_ID` for creating a new Autonomous Database by cloning from a specified backup. Also provide the backup OCID in the `autonomous_database_backup_id` parameter.
4327
- * Use `BACKUP_FROM_TIMESTAMP` for creating a point-in-time Autonomous Database clone using backups. Also provide the backup timestamp in the `timestamp` parameter. For more information, see [Cloning and Moving an Autonomous Database](https://docs.oracle.com/en/cloud/paas/autonomous-database/adbsa/clone-autonomous-database.html#GUID-D771796F-5081-4CFB-A7FF-0F893EABD7BC).
4328
- :param pulumi.Input[_builtins.str] source_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the source Autonomous Database that will be used to create a new standby database for the Data Guard association.
4326
+ For [Autonomous Database Serverless instances](https://docs.oracle.com/en/cloud/paas/autonomous-database/serverless/), the following cloning options are available: Use `BACKUP_FROM_ID` for creating a new Autonomous Database from a specified backup. Use `BACKUP_FROM_TIMESTAMP` for creating a point-in-time Autonomous Database clone using backups. For more information, see [Cloning and Moving an Autonomous Database](https://docs.oracle.com/en/cloud/paas/autonomous-database/adbsa/clone-autonomous-database.html#GUID-D771796F-5081-4CFB-A7FF-0F893EABD7BC).
4327
+ :param pulumi.Input[_builtins.str] source_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the source Autonomous Database that will be used to create a new peer database for the Data Guard association.
4329
4328
  :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] standby_whitelisted_ips: (Updatable) 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`.
4330
4329
 
4331
- For Autonomous Database Serverless instances, this is an array of CIDR (Classless Inter-Domain Routing) notations for a subnet or VCN OCID. Use a semicolon (;) as a deliminator between the VCN-specific subnets or IPs. Example: `["1.1.1.1","1.1.1.0/24","ocid1.vcn.oc1.sea.<unique_id>","ocid1.vcn.oc1.sea.<unique_id1>;1.1.1.1","ocid1.vcn.oc1.sea.<unique_id2>;1.1.0.0/16"]` For Exadata Cloud@Customer, this is an array of IP addresses or CIDR (Classless Inter-Domain Routing) notations. Example: `["1.1.1.1","1.1.1.0/24","1.1.2.25"]`
4330
+ For Autonomous Database Serverless, this is an array of CIDR (classless inter-domain routing) notations for a subnet or VCN OCID (virtual cloud network Oracle Cloud ID). Multiple IPs and VCN OCIDs should be separate strings separated by commas, but if it’s other configurations that need multiple pieces of information then its each piece is connected with semicolon (;) as a delimiter. Example: `["1.1.1.1","1.1.1.0/24","ocid1.vcn.oc1.sea.<unique_id>","ocid1.vcn.oc1.sea.<unique_id1>;1.1.1.1","ocid1.vcn.oc1.sea.<unique_id2>;1.1.0.0/16"]` For Exadata Cloud@Customer, this is an array of IP addresses or CIDR notations. Example: `["1.1.1.1","1.1.1.0/24","1.1.2.25"]`
4332
4331
 
4333
4332
  For an update operation, if you want to delete all the IPs in the ACL, use an array with a single empty string entry.
4334
4333
 
4335
- If `arePrimaryWhitelistedIpsUsed` is 'TRUE' then Autonomous Database uses `whitelisted_ips` primary's IP access control list (ACL) as `standbywhitelistedips` for the disaster recovery peer.
4336
-
4337
4334
  This cannot be updated in parallel with any of the following: licenseModel, dbEdition, cpuCoreCount, computeCount, computeModel, adminPassword, isMTLSConnectionRequired, openMode, permissionLevel, dbWorkload, dbVersion, isRefreshable, dbName, scheduledOperations, dbToolsDetails, isLocalDataGuardEnabled, or isFreeTier.
4338
4335
  :param pulumi.Input[_builtins.str] state: The current state of the Autonomous Database.
4339
- :param pulumi.Input[_builtins.str] subnet_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet the resource is associated with. This the only parameter to configure private endpoint, VCN details are obtained from the `subnet_id`.
4336
+ :param pulumi.Input[_builtins.str] subnet_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet the resource is associated with.
4340
4337
 
4341
4338
  **Subnet Restrictions:**
4342
4339
  * For bare metal DB systems and for single node virtual machine DB systems, do not use a subnet that overlaps with 192.168.16.16/28.
4343
4340
  * For Exadata and virtual machine 2-node RAC systems, do not use a subnet that overlaps with 192.168.128.0/20.
4344
4341
  * For Autonomous Database, setting this will disable public secure access to the database.
4345
- :param pulumi.Input[_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.
4342
+
4346
4343
  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.
4347
- :param pulumi.Input[_builtins.str] switchover_to: It is applicable only when `is_local_data_guard_enabled` is true. Could be set to `PRIMARY` or `STANDBY`. Default value is `PRIMARY`.
4348
- :param pulumi.Input[_builtins.str] switchover_to_remote_peer_id: (Updatable) It is applicable only when `dataguard_region_type` and `role` are set, and `is_dedicated` is false. For Autonomous Database Serverless instances, Data Guard associations have designated primary and standby regions, and these region types do not change when the database changes roles. It takes the [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the remote peer to switchover to and the API is called from the remote region.
4349
- :param pulumi.Input[_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.
4344
+ :param pulumi.Input[_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.
4345
+ :param pulumi.Input[_builtins.str] time_of_auto_refresh_start: (Updatable) 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.
4346
+ :param pulumi.Input[_builtins.str] time_scheduled_db_version_upgrade: The date and time the Autonomous Database scheduled to upgrade to 23ai. Send this value along with the target db_version value to schedule the database version upgrade. After the upgrade is scheduled and before the scheduled upgrade time arrives, please keep the db_version value the same as the backend's current db_version.
4350
4347
  :param pulumi.Input[_builtins.str] timestamp: The timestamp specified for the point-in-time clone of the source Autonomous Database. The timestamp must be in the past.
4351
4348
  :param pulumi.Input[_builtins.bool] use_latest_available_backup_time_stamp: Clone from latest available backup timestamp.
4352
- :param pulumi.Input[_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).
4353
- :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] whitelisted_ips: (Updatable) The client IP access control list (ACL). This feature is available for autonomous databases on [shared Exadata infrastructure](https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html) and on Exadata Cloud@Customer. Only clients connecting from an IP address included in the ACL may access the Autonomous Database instance.
4349
+ :param pulumi.Input[_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.
4350
+ :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] whitelisted_ips: (Updatable) 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`.
4354
4351
 
4355
- For Autonomous Database Serverless instances, this is an array of CIDR (Classless Inter-Domain Routing) notations for a subnet or VCN OCID. Use a semicolon (;) as a deliminator between the VCN-specific subnets or IPs. Example: `["1.1.1.1","1.1.1.0/24","ocid1.vcn.oc1.sea.<unique_id>","ocid1.vcn.oc1.sea.<unique_id1>;1.1.1.1","ocid1.vcn.oc1.sea.<unique_id2>;1.1.0.0/16"]` For Exadata Cloud@Customer, this is an array of IP addresses or CIDR (Classless Inter-Domain Routing) notations. Example: `["1.1.1.1","1.1.1.0/24","1.1.2.25"]`
4352
+ For Autonomous Database Serverless, this is an array of CIDR (classless inter-domain routing) notations for a subnet or VCN OCID (virtual cloud network Oracle Cloud ID). Multiple IPs and VCN OCIDs should be separate strings separated by commas, but if it’s other configurations that need multiple pieces of information then its each piece is connected with semicolon (;) as a delimiter. Example: `["1.1.1.1","1.1.1.0/24","ocid1.vcn.oc1.sea.<unique_id>","ocid1.vcn.oc1.sea.<unique_id1>;1.1.1.1","ocid1.vcn.oc1.sea.<unique_id2>;1.1.0.0/16"]` For Exadata Cloud@Customer, this is an array of IP addresses or CIDR notations. Example: `["1.1.1.1","1.1.1.0/24","1.1.2.25"]`
4356
4353
 
4357
4354
  For an update operation, if you want to delete all the IPs in the ACL, use an array with a single empty string entry.
4358
4355
 
4359
4356
  This cannot be updated in parallel with any of the following: licenseModel, dbEdition, cpuCoreCount, computeCount, computeModel, adminPassword, isMTLSConnectionRequired, openMode, permissionLevel, dbWorkload, dbVersion, isRefreshable, dbName, scheduledOperations, dbToolsDetails, isLocalDataGuardEnabled, or isFreeTier. To remove all whitelisted IPs, set the field to a list with an empty string `[""]`.
4357
+
4358
+
4359
+ ** IMPORTANT **
4360
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
4360
4361
  """
4361
4362
  ...
4362
4363
  @overload
@@ -4369,8 +4370,6 @@ class AutonomousDatabase(pulumi.CustomResource):
4369
4370
 
4370
4371
  Creates a new Autonomous Database.
4371
4372
 
4372
- This API must be called on the remote region where the peer needs to be created.
4373
-
4374
4373
  ## Import
4375
4374
 
4376
4375
  AutonomousDatabases can be imported using the `id`, e.g.
@@ -4435,6 +4434,7 @@ class AutonomousDatabase(pulumi.CustomResource):
4435
4434
  is_data_guard_enabled: Optional[pulumi.Input[_builtins.bool]] = None,
4436
4435
  is_dedicated: Optional[pulumi.Input[_builtins.bool]] = None,
4437
4436
  is_dev_tier: Optional[pulumi.Input[_builtins.bool]] = None,
4437
+ is_disable_db_version_upgrade_schedule: Optional[pulumi.Input[_builtins.bool]] = None,
4438
4438
  is_disconnect_peer: Optional[pulumi.Input[_builtins.bool]] = None,
4439
4439
  is_free_tier: Optional[pulumi.Input[_builtins.bool]] = None,
4440
4440
  is_local_data_guard_enabled: Optional[pulumi.Input[_builtins.bool]] = None,
@@ -4442,6 +4442,7 @@ class AutonomousDatabase(pulumi.CustomResource):
4442
4442
  is_preview_version_with_service_terms_accepted: Optional[pulumi.Input[_builtins.bool]] = None,
4443
4443
  is_refreshable_clone: Optional[pulumi.Input[_builtins.bool]] = None,
4444
4444
  is_replicate_automatic_backups: Optional[pulumi.Input[_builtins.bool]] = None,
4445
+ is_schedule_db_version_upgrade_to_earliest: Optional[pulumi.Input[_builtins.bool]] = None,
4445
4446
  is_shrink_only: Optional[pulumi.Input[_builtins.bool]] = None,
4446
4447
  key_version_id: Optional[pulumi.Input[_builtins.str]] = None,
4447
4448
  kms_key_id: Optional[pulumi.Input[_builtins.str]] = None,
@@ -4477,6 +4478,7 @@ class AutonomousDatabase(pulumi.CustomResource):
4477
4478
  switchover_to: Optional[pulumi.Input[_builtins.str]] = None,
4478
4479
  switchover_to_remote_peer_id: Optional[pulumi.Input[_builtins.str]] = None,
4479
4480
  time_of_auto_refresh_start: Optional[pulumi.Input[_builtins.str]] = None,
4481
+ time_scheduled_db_version_upgrade: Optional[pulumi.Input[_builtins.str]] = None,
4480
4482
  timestamp: Optional[pulumi.Input[_builtins.str]] = None,
4481
4483
  use_latest_available_backup_time_stamp: Optional[pulumi.Input[_builtins.bool]] = None,
4482
4484
  vault_id: Optional[pulumi.Input[_builtins.str]] = None,
@@ -4535,6 +4537,7 @@ class AutonomousDatabase(pulumi.CustomResource):
4535
4537
  __props__.__dict__["is_data_guard_enabled"] = is_data_guard_enabled
4536
4538
  __props__.__dict__["is_dedicated"] = is_dedicated
4537
4539
  __props__.__dict__["is_dev_tier"] = is_dev_tier
4540
+ __props__.__dict__["is_disable_db_version_upgrade_schedule"] = is_disable_db_version_upgrade_schedule
4538
4541
  __props__.__dict__["is_disconnect_peer"] = is_disconnect_peer
4539
4542
  __props__.__dict__["is_free_tier"] = is_free_tier
4540
4543
  __props__.__dict__["is_local_data_guard_enabled"] = is_local_data_guard_enabled
@@ -4542,6 +4545,7 @@ class AutonomousDatabase(pulumi.CustomResource):
4542
4545
  __props__.__dict__["is_preview_version_with_service_terms_accepted"] = is_preview_version_with_service_terms_accepted
4543
4546
  __props__.__dict__["is_refreshable_clone"] = is_refreshable_clone
4544
4547
  __props__.__dict__["is_replicate_automatic_backups"] = is_replicate_automatic_backups
4548
+ __props__.__dict__["is_schedule_db_version_upgrade_to_earliest"] = is_schedule_db_version_upgrade_to_earliest
4545
4549
  __props__.__dict__["is_shrink_only"] = is_shrink_only
4546
4550
  __props__.__dict__["key_version_id"] = key_version_id
4547
4551
  __props__.__dict__["kms_key_id"] = kms_key_id
@@ -4577,6 +4581,7 @@ class AutonomousDatabase(pulumi.CustomResource):
4577
4581
  __props__.__dict__["switchover_to"] = switchover_to
4578
4582
  __props__.__dict__["switchover_to_remote_peer_id"] = switchover_to_remote_peer_id
4579
4583
  __props__.__dict__["time_of_auto_refresh_start"] = time_of_auto_refresh_start
4584
+ __props__.__dict__["time_scheduled_db_version_upgrade"] = time_scheduled_db_version_upgrade
4580
4585
  __props__.__dict__["timestamp"] = timestamp
4581
4586
  __props__.__dict__["use_latest_available_backup_time_stamp"] = use_latest_available_backup_time_stamp
4582
4587
  __props__.__dict__["vault_id"] = vault_id
@@ -4627,6 +4632,8 @@ class AutonomousDatabase(pulumi.CustomResource):
4627
4632
  __props__.__dict__["time_data_guard_role_changed"] = None
4628
4633
  __props__.__dict__["time_deletion_of_free_autonomous_database"] = None
4629
4634
  __props__.__dict__["time_disaster_recovery_role_changed"] = None
4635
+ __props__.__dict__["time_earliest_available_db_version_upgrade"] = None
4636
+ __props__.__dict__["time_latest_available_db_version_upgrade"] = None
4630
4637
  __props__.__dict__["time_local_data_guard_enabled"] = None
4631
4638
  __props__.__dict__["time_maintenance_begin"] = None
4632
4639
  __props__.__dict__["time_maintenance_end"] = None
@@ -4710,6 +4717,7 @@ class AutonomousDatabase(pulumi.CustomResource):
4710
4717
  is_data_guard_enabled: Optional[pulumi.Input[_builtins.bool]] = None,
4711
4718
  is_dedicated: Optional[pulumi.Input[_builtins.bool]] = None,
4712
4719
  is_dev_tier: Optional[pulumi.Input[_builtins.bool]] = None,
4720
+ is_disable_db_version_upgrade_schedule: Optional[pulumi.Input[_builtins.bool]] = None,
4713
4721
  is_disconnect_peer: Optional[pulumi.Input[_builtins.bool]] = None,
4714
4722
  is_free_tier: Optional[pulumi.Input[_builtins.bool]] = None,
4715
4723
  is_local_data_guard_enabled: Optional[pulumi.Input[_builtins.bool]] = None,
@@ -4720,6 +4728,7 @@ class AutonomousDatabase(pulumi.CustomResource):
4720
4728
  is_refreshable_clone: Optional[pulumi.Input[_builtins.bool]] = None,
4721
4729
  is_remote_data_guard_enabled: Optional[pulumi.Input[_builtins.bool]] = None,
4722
4730
  is_replicate_automatic_backups: Optional[pulumi.Input[_builtins.bool]] = None,
4731
+ is_schedule_db_version_upgrade_to_earliest: Optional[pulumi.Input[_builtins.bool]] = None,
4723
4732
  is_shrink_only: Optional[pulumi.Input[_builtins.bool]] = None,
4724
4733
  key_history_entries: Optional[pulumi.Input[Sequence[pulumi.Input[Union['AutonomousDatabaseKeyHistoryEntryArgs', 'AutonomousDatabaseKeyHistoryEntryArgsDict']]]]] = None,
4725
4734
  key_store_id: Optional[pulumi.Input[_builtins.str]] = None,
@@ -4782,6 +4791,8 @@ class AutonomousDatabase(pulumi.CustomResource):
4782
4791
  time_data_guard_role_changed: Optional[pulumi.Input[_builtins.str]] = None,
4783
4792
  time_deletion_of_free_autonomous_database: Optional[pulumi.Input[_builtins.str]] = None,
4784
4793
  time_disaster_recovery_role_changed: Optional[pulumi.Input[_builtins.str]] = None,
4794
+ time_earliest_available_db_version_upgrade: Optional[pulumi.Input[_builtins.str]] = None,
4795
+ time_latest_available_db_version_upgrade: Optional[pulumi.Input[_builtins.str]] = None,
4785
4796
  time_local_data_guard_enabled: Optional[pulumi.Input[_builtins.str]] = None,
4786
4797
  time_maintenance_begin: Optional[pulumi.Input[_builtins.str]] = None,
4787
4798
  time_maintenance_end: Optional[pulumi.Input[_builtins.str]] = None,
@@ -4793,6 +4804,7 @@ class AutonomousDatabase(pulumi.CustomResource):
4793
4804
  time_of_last_switchover: Optional[pulumi.Input[_builtins.str]] = None,
4794
4805
  time_of_next_refresh: Optional[pulumi.Input[_builtins.str]] = None,
4795
4806
  time_reclamation_of_free_autonomous_database: Optional[pulumi.Input[_builtins.str]] = None,
4807
+ time_scheduled_db_version_upgrade: Optional[pulumi.Input[_builtins.str]] = None,
4796
4808
  time_undeleted: Optional[pulumi.Input[_builtins.str]] = None,
4797
4809
  time_until_reconnect_clone_enabled: Optional[pulumi.Input[_builtins.str]] = None,
4798
4810
  timestamp: Optional[pulumi.Input[_builtins.str]] = None,
@@ -4816,36 +4828,33 @@ class AutonomousDatabase(pulumi.CustomResource):
4816
4828
  :param pulumi.Input[_builtins.bool] are_primary_whitelisted_ips_used: (Updatable) 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.
4817
4829
  :param pulumi.Input[_builtins.int] auto_refresh_frequency_in_seconds: (Updatable) 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.
4818
4830
  :param pulumi.Input[_builtins.int] auto_refresh_point_lag_in_seconds: (Updatable) 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.
4819
- :param pulumi.Input[_builtins.str] autonomous_container_database_id: The Autonomous Container Database [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
4831
+ :param pulumi.Input[_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.
4820
4832
  :param pulumi.Input[_builtins.str] autonomous_database_backup_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the source Autonomous Database Backup that you will clone to create a new Autonomous Database.
4821
4833
  :param pulumi.Input[_builtins.str] autonomous_database_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the source Autonomous Database that you will clone to create a new Autonomous Database.
4822
- :param pulumi.Input[_builtins.str] autonomous_maintenance_schedule_type: The maintenance schedule type of the Autonomous Database Serverless instances. The EARLY maintenance schedule of this Autonomous Database follows a schedule that applies patches prior to the REGULAR schedule.The REGULAR maintenance schedule of this Autonomous Database follows the normal cycle.
4834
+ :param pulumi.Input[_builtins.str] autonomous_maintenance_schedule_type: (Updatable) 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
4823
4835
  :param pulumi.Input[_builtins.str] availability_domain: The availability domain of a local Autonomous Data Guard standby database of an Autonomous Database Serverless instance.
4824
4836
  :param pulumi.Input[Sequence[pulumi.Input[_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.
4825
4837
  :param pulumi.Input[Sequence[pulumi.Input[Union['AutonomousDatabaseBackupConfigArgs', 'AutonomousDatabaseBackupConfigArgsDict']]]] 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.
4826
- :param pulumi.Input[_builtins.int] backup_retention_period_in_days: (Updatable) Retention period, in days, for backups.
4827
- :param pulumi.Input[_builtins.str] character_set: The character set for the autonomous database. The default is AL32UTF8. Allowed values for an Autonomous Database on Serverless infrastructure as returned by [List Autonomous Database Character Sets](https://www.terraform.io/autonomousDatabaseCharacterSets)
4838
+ :param pulumi.Input[_builtins.int] backup_retention_period_in_days: (Updatable) Retention period, in days, for long-term backups
4839
+ :param pulumi.Input[_builtins.float] byol_compute_count_limit: (Updatable) 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.
4840
+ :param pulumi.Input[_builtins.str] character_set: The character set for the autonomous database. The default is AL32UTF8. Allowed values for an Autonomous Database Serverless instance as as returned by [List Autonomous Database Character Sets](https://docs.oracle.com/iaas/autonomous-database-serverless/doc/autonomous-character-set-selection.html)
4841
+
4842
+ For an Autonomous Database on dedicated infrastructure, the allowed values are:
4828
4843
 
4829
- For an Autonomous Database on dedicated infrastructure, the allowed values are
4830
4844
  AL32UTF8, AR8ADOS710, AR8ADOS720, AR8APTEC715, AR8ARABICMACS, AR8ASMO8X, AR8ISO8859P6, AR8MSWIN1256, AR8MUSSAD768, AR8NAFITHA711, AR8NAFITHA721, AR8SAKHR706, AR8SAKHR707, AZ8ISO8859P9E, BG8MSWIN, BG8PC437S, BLT8CP921, BLT8ISO8859P13, BLT8MSWIN1257, BLT8PC775, BN8BSCII, CDN8PC863, CEL8ISO8859P14, CL8ISO8859P5, CL8ISOIR111, CL8KOI8R, CL8KOI8U, CL8MACCYRILLICS, CL8MSWIN1251, EE8ISO8859P2, EE8MACCES, EE8MACCROATIANS, EE8MSWIN1250, EE8PC852, EL8DEC, EL8ISO8859P7, EL8MACGREEKS, EL8MSWIN1253, EL8PC437S, EL8PC851, EL8PC869, ET8MSWIN923, HU8ABMOD, HU8CWI2, IN8ISCII, IS8PC861, IW8ISO8859P8, IW8MACHEBREWS, IW8MSWIN1255, IW8PC1507, JA16EUC, JA16EUCTILDE, JA16SJIS, JA16SJISTILDE, JA16VMS, KO16KSC5601, KO16KSCCS, KO16MSWIN949, LA8ISO6937, LA8PASSPORT, LT8MSWIN921, LT8PC772, LT8PC774, LV8PC1117, LV8PC8LR, LV8RST104090, N8PC865, NE8ISO8859P10, NEE8ISO8859P4, RU8BESTA, RU8PC855, RU8PC866, SE8ISO8859P3, TH8MACTHAIS, TH8TISASCII, TR8DEC, TR8MACTURKISHS, TR8MSWIN1254, TR8PC857, US7ASCII, US8PC437, UTF8, VN8MSWIN1258, VN8VN3, WE8DEC, WE8DG, WE8ISO8859P1, WE8ISO8859P15, WE8ISO8859P9, WE8MACROMAN8S, WE8MSWIN1252, WE8NCR4970, WE8NEXTSTEP, WE8PC850, WE8PC858, WE8PC860, WE8ROMAN8, ZHS16CGB231280, ZHS16GBK, ZHT16BIG5, ZHT16CCDC, ZHT16DBT, ZHT16HKSCS, ZHT16MSWIN950, ZHT32EUC, ZHT32SOPS, ZHT32TRIS
4831
4845
  :param pulumi.Input[Sequence[pulumi.Input[_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.
4832
- :param pulumi.Input[_builtins.str] clone_type: The Autonomous Database clone type. This parameter is not used to create a refreshable clone type, and for refreshable clones one must use the (source=CLONE_TO_REFRESHABLE) parameter.
4846
+ :param pulumi.Input[_builtins.str] clone_type: The Autonomous Database clone type.
4833
4847
  * `FULL` - This option creates a new database that includes all source database data.
4834
4848
  * `METADATA` - This option creates a new database that includes the source database schema and select metadata, but not the source database data.
4835
4849
  :param pulumi.Input[_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.
4836
4850
  :param pulumi.Input[_builtins.str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment of the Autonomous Database.
4837
- :param pulumi.Input[_builtins.float] compute_count: (Updatable) The compute amount available to the database. Minimum and maximum values depend on the compute model and whether the database is an Autonomous Database Serverless instance or an Autonomous Database on Dedicated Exadata Infrastructure. For an Autonomous Database Serverless instance, the 'ECPU' compute model requires a minimum value of one, for databases in the elastic resource pool and minimum value of two, otherwise. Required when using the `computeModel` parameter. When using `cpuCoreCount` parameter, it is an error to specify computeCount to a non-null value. Providing `computeModel` and `computeCount` is the preferred method for both OCPU and ECPU.
4851
+ :param pulumi.Input[_builtins.float] compute_count: (Updatable) The compute amount (CPUs) available to the database. Minimum and maximum values depend on the compute model and whether the database is an Autonomous Database Serverless instance or an Autonomous Database on Dedicated Exadata Infrastructure. The 'ECPU' compute model requires a minimum value of one, for databases in the elastic resource pool and minimum value of two, otherwise. Required when using the `computeModel` parameter. When using `cpuCoreCount` parameter, it is an error to specify computeCount to a non-null value. Providing `computeModel` and `computeCount` is the preferred method for both OCPU and ECPU.
4838
4852
  :param pulumi.Input[_builtins.str] compute_model: (Updatable) The compute model of the Autonomous Database. This is required if using the `computeCount` parameter. If using `cpuCoreCount` then it is an error to specify `computeModel` to a non-null value. ECPU compute model is the recommended model and OCPU compute model is legacy.
4839
4853
  :param pulumi.Input[Sequence[pulumi.Input[Union['AutonomousDatabaseConnectionStringArgs', 'AutonomousDatabaseConnectionStringArgsDict']]]] connection_strings: The connection string used to connect to the Autonomous Database. The username for the Service Console is ADMIN. Use the password you entered when creating the Autonomous Database for the password value.
4840
4854
  :param pulumi.Input[Sequence[pulumi.Input[Union['AutonomousDatabaseConnectionUrlArgs', 'AutonomousDatabaseConnectionUrlArgsDict']]]] connection_urls: The URLs for accessing Oracle Application Express (APEX) and SQL Developer Web with a browser from a Compute instance within your VCN or that has a direct connection to your VCN. Note that these URLs are provided by the console only for databases on [dedicated Exadata infrastructure](https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html). Example: `{"sqlDevWebUrl": "https://<hostname>/ords...", "apexUrl", "https://<hostname>/ords..."}`
4841
4855
  :param pulumi.Input[_builtins.int] cpu_core_count: (Updatable) The number of CPU cores to be made available to the database. For Autonomous Databases on dedicated Exadata infrastructure, the maximum number of cores is determined by the infrastructure shape. See [Characteristics of Infrastructure Shapes](https://www.oracle.com/pls/topic/lookup?ctx=en/cloud/paas/autonomous-database&id=ATPFG-GUID-B0F033C1-CC5A-42F0-B2E7-3CECFEDA1FD1) for shape details.
4856
+
4842
4857
  **Note:** This parameter cannot be used with the `ocpuCount` parameter. This input is ignored for Always Free resources.
4843
- * The data type must be an *integer*.
4844
- * The minimum number of cores for all types of autonomous database is *1*
4845
- * The maximum number of cores is as follows:
4846
- * Autonomous Database Serverless instances: The maximum number of cores is *128*.
4847
- * Autonomous Databases on dedicated Exadata infrastructure: The maximum number of cores is determined by the infrastructure shape. See [Characteristics of Infrastructure Shapes](https://www.oracle.com/pls/topic/lookup?ctx=en/cloud/paas/autonomous-database&id=ATPFG-GUID-B0F033C1-CC5A-42F0-B2E7-3CECFEDA1FD1) for shape details.
4848
- * Providing `computeModel` and `computeCount` is the preferred method for setting CPUs for both OCPU and ECPU.
4849
4858
  :param pulumi.Input[Sequence[pulumi.Input[Union['AutonomousDatabaseCustomerContactArgs', 'AutonomousDatabaseCustomerContactArgsDict']]]] customer_contacts: (Updatable) Customer Contacts.
4850
4859
  :param pulumi.Input[_builtins.str] data_safe_status: (Updatable) Status of the Data Safe registration for this Autonomous Database. Could be REGISTERED or NOT_REGISTERED.
4851
4860
  :param pulumi.Input[_builtins.int] data_storage_size_in_gb: (Updatable) The size, in gigabytes, of the data volume that will be created and attached to the database. This storage can later be scaled up if needed. The maximum storage value is determined by the infrastructure shape. See [Characteristics of Infrastructure Shapes](https://www.oracle.com/pls/topic/lookup?ctx=en/cloud/paas/autonomous-database&id=ATPFG-GUID-B0F033C1-CC5A-42F0-B2E7-3CECFEDA1FD1) for shape details.
@@ -4853,17 +4862,17 @@ class AutonomousDatabase(pulumi.CustomResource):
4853
4862
  **Notes**
4854
4863
  * This parameter is only supported for dedicated Exadata infrastructure.
4855
4864
  * This parameter cannot be used with the `dataStorageSizeInTBs` parameter.
4856
- :param pulumi.Input[_builtins.int] data_storage_size_in_tbs: (Updatable) The size, in terabytes, of the data volume that will be created and attached to the database. This storage can later be scaled up if needed. For Autonomous Databases on dedicated Exadata infrastructure, the maximum storage value is determined by the infrastructure shape. See [Characteristics of Infrastructure Shapes](https://www.oracle.com/pls/topic/lookup?ctx=en/cloud/paas/autonomous-database&id=ATPFG-GUID-B0F033C1-CC5A-42F0-B2E7-3CECFEDA1FD1) for shape details. A full Exadata service is allocated when the Autonomous Database size is set to the upper limit (384 TB).
4865
+ :param pulumi.Input[_builtins.int] data_storage_size_in_tbs: (Updatable) The size, in terabytes, of the data volume that will be created and attached to the database. This storage can later be scaled up if needed. For Autonomous Databases on dedicated Exadata infrastructure, the maximum storage value is determined by the infrastructure shape. See [Characteristics of Infrastructure Shapes](https://www.oracle.com/pls/topic/lookup?ctx=en/cloud/paas/autonomous-database&id=ATPFG-GUID-B0F033C1-CC5A-42F0-B2E7-3CECFEDA1FD1) for shape details. A full Exadata service is allocated when the Autonomous Database size is set to the upper limit (384 TB).
4857
4866
 
4858
4867
  **Note:** This parameter cannot be used with the `dataStorageSizeInGBs` parameter. This input is ignored for Always Free resources.
4859
- :param pulumi.Input[_builtins.str] database_edition: (Updatable) The Oracle Database Edition that applies to the Autonomous databases. It can be set to `ENTERPRISE_EDITION` or `STANDARD_EDITION`.
4868
+ :param pulumi.Input[_builtins.str] database_edition: (Updatable) The Oracle Database Edition that applies to the Autonomous databases. This parameter accepts options `STANDARD_EDITION` and `ENTERPRISE_EDITION`.
4860
4869
  :param pulumi.Input[_builtins.str] database_management_status: Status of Database Management for this Autonomous Database.
4861
- :param pulumi.Input[_builtins.str] dataguard_region_type: **Deprecated** (Optional) The Autonomous Data Guard region type of the Autonomous Database. For Autonomous Database Serverless instances, Data Guard associations have designated primary (`PRIMARY_DG_REGION`) and standby (`REMOTE_STANDBY_DG_REGION`) regions, and these region types do not change when the database changes roles. The standby regions in Data Guard associations can be the same region designated as the primary region, or they can be remote regions. Certain database administrative operations may be available only in the primary region of the Data Guard association, and cannot be performed when the database using the "primary" role is operating in a remote Data Guard standby region.
4862
- :param pulumi.Input[_builtins.str] db_name: The database name. The name must begin with an alphabetic character and can contain a maximum of 14 alphanumeric characters. Special characters are not permitted. The database name must be unique in the tenancy. It is required in all cases except when creating a cross-region Autonomous Data Guard standby instance or a cross-region disaster recovery standby instance.
4870
+ :param pulumi.Input[_builtins.str] dataguard_region_type: **Deprecated.** The Autonomous Data Guard region type of the Autonomous Database. For Autonomous Database Serverless, Autonomous Data Guard associations have designated primary and standby regions, and these region types do not change when the database changes roles. The standby regions in Autonomous Data Guard associations can be the same region designated as the primary region, or they can be remote regions. Certain database administrative operations may be available only in the primary region of the Autonomous Data Guard association, and cannot be performed when the database using the primary role is operating in a remote Autonomous Data Guard standby region.
4871
+ :param pulumi.Input[_builtins.str] db_name: The database name. The name must begin with an alphabetic character and can contain a maximum of 30 alphanumeric characters. Special characters are not permitted. The database name must be unique in the tenancy. It is required in all cases except when creating a cross-region Autonomous Data Guard standby instance or a cross-region disaster recovery standby instance.
4863
4872
  :param pulumi.Input[Sequence[pulumi.Input[Union['AutonomousDatabaseDbToolsDetailArgs', 'AutonomousDatabaseDbToolsDetailArgsDict']]]] db_tools_details: (Updatable) The list of database tools details.
4864
4873
 
4865
4874
  This cannot be updated in parallel with any of the following: licenseModel, dbEdition, cpuCoreCount, computeCount, computeModel, whitelistedIps, isMTLSConnectionRequired, openMode, permissionLevel, dbWorkload, privateEndpointLabel, nsgIds, dbVersion, isRefreshable, dbName, scheduledOperations, isLocalDataGuardEnabled, or isFreeTier.
4866
- :param pulumi.Input[_builtins.str] db_version: (Updatable) A valid Oracle Database version for Autonomous Database.`db_workload` AJD and APEX are only supported for `db_version` `19c` and above.
4875
+ :param pulumi.Input[_builtins.str] db_version: (Updatable) A valid Oracle Database version for Autonomous Database.`db_workload` AJD is only supported for `db_version` `19c` and above.
4867
4876
  :param pulumi.Input[_builtins.str] db_workload: (Updatable) The Autonomous Database workload type. The following values are valid:
4868
4877
  * OLTP - indicates an Autonomous Transaction Processing database
4869
4878
  * DW - indicates an Autonomous Data Warehouse database
@@ -4872,10 +4881,9 @@ class AutonomousDatabase(pulumi.CustomResource):
4872
4881
 
4873
4882
  This cannot be updated in parallel with any of the following: licenseModel, dbEdition, cpuCoreCount, computeCount, computeModel, adminPassword, whitelistedIps, isMTLSConnectionRequired, privateEndpointLabel, nsgIds, dbVersion, isRefreshable, dbName, scheduledOperations, dbToolsDetails, isLocalDataGuardEnabled, or isFreeTier. *Note: `db_workload` can only be updated from AJD to OLTP or from a free OLTP to AJD.
4874
4883
  :param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] defined_tags: (Updatable) 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).
4875
- :param pulumi.Input[_builtins.str] disaster_recovery_region_type: **Deprecated** The disaster recovery (DR) region type of the Autonomous Database. For Serverless Autonomous Databases, DR associations have designated primary (`PRIMARY`) and standby (`REMOTE`) 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.
4884
+ :param pulumi.Input[_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.
4876
4885
  :param pulumi.Input[_builtins.str] disaster_recovery_type: Indicates the disaster recovery (DR) type of the standby 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.
4877
4886
  :param pulumi.Input[_builtins.str] display_name: (Updatable) The user-friendly name for the Autonomous Database. The name does not have to be unique.
4878
- :param pulumi.Input[_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.
4879
4887
  :param pulumi.Input[Union['AutonomousDatabaseEncryptionKeyArgs', 'AutonomousDatabaseEncryptionKeyArgsDict']] encryption_key: (Updatable) Details of the Autonomous Database encryption key.
4880
4888
  :param pulumi.Input[Sequence[pulumi.Input[Union['AutonomousDatabaseEncryptionKeyHistoryEntryArgs', 'AutonomousDatabaseEncryptionKeyHistoryEntryArgsDict']]]] encryption_key_history_entries: Key History Entry.
4881
4889
  :param pulumi.Input[_builtins.int] failed_data_recovery_in_seconds: Indicates the number of seconds of data loss for a Data Guard failover.
@@ -4890,65 +4898,58 @@ class AutonomousDatabase(pulumi.CustomResource):
4890
4898
  :param pulumi.Input[_builtins.bool] is_auto_scaling_for_storage_enabled: (Updatable) Indicates if auto scaling is enabled for the Autonomous Database storage. The default value is `FALSE`.
4891
4899
  :param pulumi.Input[_builtins.bool] is_backup_retention_locked: (Updatable) True if the Autonomous Database is backup retention locked.
4892
4900
  :param pulumi.Input[_builtins.bool] is_data_guard_enabled: (Updatable) **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.
4893
- :param pulumi.Input[_builtins.bool] is_dedicated: True if the database is on [dedicated Exadata infrastructure](https://docs.cloud.oracle.com/iaas/Content/Database/Concepts/adbddoverview.htm).
4894
- :param pulumi.Input[_builtins.bool] is_dev_tier: (Updatable) 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.
4895
- :param pulumi.Input[_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.
4896
- :param pulumi.Input[_builtins.bool] is_free_tier: (Updatable) 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. When `db_workload` is `AJD` or `APEX` it cannot be `true`.
4897
- :param pulumi.Input[_builtins.bool] is_local_data_guard_enabled: (Updatable) Indicates whether the Autonomous Database has local (in-region) Data Guard enabled. It takes boolean values. Not applicable to cross-region Autonomous Data Guard associations, or to Autonomous Databases using dedicated Exadata infrastructure or Exadata Cloud@Customer infrastructure.
4898
- :param pulumi.Input[_builtins.bool] is_mtls_connection_required: (Updatable) Indicates whether the Autonomous Database requires mTLS connections.
4901
+ :param pulumi.Input[_builtins.bool] is_dedicated: True if the database is on [dedicated Exadata infrastructure](https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html).
4902
+ :param pulumi.Input[_builtins.bool] is_dev_tier: (Updatable) 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.
4903
+ :param pulumi.Input[_builtins.bool] is_free_tier: (Updatable) 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.
4904
+
4905
+ 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 When `db_workload` is `AJD` it cannot be `true`.
4906
+ :param pulumi.Input[_builtins.bool] is_local_data_guard_enabled: (Updatable) 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.
4899
4907
  :param pulumi.Input[_builtins.bool] is_preview: Indicates if the Autonomous Database version is a preview version.
4900
- :param pulumi.Input[_builtins.bool] is_preview_version_with_service_terms_accepted: If set to `TRUE`, indicates that an Autonomous Database preview version is being provisioned, and that the preview version's terms of service have been accepted. Note that preview version software is only available for databases on [Autonomous Database Serverless](https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html).
4908
+ :param pulumi.Input[_builtins.bool] is_preview_version_with_service_terms_accepted: If set to `TRUE`, indicates that an Autonomous Database preview version is being provisioned, and that the preview version's terms of service have been accepted. Note that preview version software is only available for Autonomous Database Serverless instances (https://docs.oracle.com/en/cloud/paas/autonomous-database/serverless/).
4901
4909
  :param pulumi.Input[_builtins.bool] is_reconnect_clone_enabled: Indicates if the refreshable clone can be reconnected to its source database.
4902
- :param pulumi.Input[_builtins.bool] is_refreshable_clone: (Updatable) True for creating a refreshable clone and False for detaching the clone from source Autonomous Database. Detaching is one time operation and clone becomes a regular Autonomous Database.
4903
- :param pulumi.Input[_builtins.bool] is_remote_data_guard_enabled: Indicates whether the Autonomous Database has Cross Region Data Guard enabled. It takes boolean values. Not applicable to Autonomous Databases using dedicated Exadata infrastructure or Exadata Cloud@Customer infrastructure.
4910
+ :param pulumi.Input[_builtins.bool] is_refreshable_clone: Indicates if the Autonomous Database is a refreshable clone.
4911
+ :param pulumi.Input[_builtins.bool] is_remote_data_guard_enabled: Indicates whether the Autonomous Database has Cross Region Data Guard enabled. Not applicable to Autonomous Databases using dedicated Exadata infrastructure or Exadata Cloud@Customer infrastructure.
4904
4912
  :param pulumi.Input[_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.
4905
- :param pulumi.Input[_builtins.bool] is_shrink_only: (Updatable) An optional property when enabled triggers the Shrinking of Autonomous Database once. To trigger Shrinking of ADB once again, this flag needs to be disabled and re-enabled again. It should not be passed during create database operation. It is only applicable on Serverless databases i.e. where `is_dedicated` is false.
4906
-
4907
- ** IMPORTANT **
4908
- Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
4909
4913
  :param pulumi.Input[Sequence[pulumi.Input[Union['AutonomousDatabaseKeyHistoryEntryArgs', 'AutonomousDatabaseKeyHistoryEntryArgsDict']]]] key_history_entries: Key History Entry.
4910
- :param pulumi.Input[_builtins.str] key_store_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the key store of Oracle Vault. This is used in Autonomous Databases on Serverless instances and dedicated Exadata infrastructure.
4914
+ :param pulumi.Input[_builtins.str] key_store_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the key store of Oracle Vault.
4911
4915
  :param pulumi.Input[_builtins.str] key_store_wallet_name: The wallet name for Oracle Key Vault.
4912
- :param pulumi.Input[_builtins.str] key_version_id: The OCID of the key version that is used in rotate key operations.
4913
4916
  :param pulumi.Input[_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.
4914
4917
  :param pulumi.Input[_builtins.str] kms_key_lifecycle_details: KMS key lifecycle details.
4915
4918
  :param pulumi.Input[_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.
4916
- :param pulumi.Input[_builtins.str] license_model: (Updatable) 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 PaaS and IaaS services in the cloud. License Included allows you to subscribe to new Oracle Database software licenses and the Database service. Note that when provisioning an Autonomous Database on [dedicated Exadata infrastructure](https://docs.cloud.oracle.com/iaas/Content/Database/Concepts/adbddoverview.htm), this attribute must be null because the attribute is already set at the Autonomous Exadata Infrastructure level. When using [shared Exadata infrastructure](https://docs.cloud.oracle.com/iaas/Content/Database/Concepts/adboverview.htm#AEI), if a value is not specified, the system will supply the value of `BRING_YOUR_OWN_LICENSE`. It is a required field when `db_workload` is AJD and needs to be set to `LICENSE_INCLUDED` as AJD does not support default `license_model` value `BRING_YOUR_OWN_LICENSE`.
4919
+ :param pulumi.Input[_builtins.str] license_model: (Updatable) 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.
4920
+
4921
+ This cannot be updated in parallel with any of the following: cpuCoreCount, computeCount, dataStorageSizeInTBs, adminPassword, isMTLSConnectionRequired, dbWorkload, privateEndpointLabel, nsgIds, dbVersion, dbName, scheduledOperations, dbToolsDetails, or isFreeTier. It is a required field when `db_workload` is AJD and needs to be set to `LICENSE_INCLUDED` as AJD does not support default `license_model` value `BRING_YOUR_OWN_LICENSE`.
4917
4922
  :param pulumi.Input[_builtins.str] lifecycle_details: Additional information about the current lifecycle state.
4918
4923
  :param pulumi.Input[_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
4919
4924
  :param pulumi.Input[_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.
4920
4925
  :param pulumi.Input[Sequence[pulumi.Input[Union['AutonomousDatabaseLocalStandbyDbArgs', 'AutonomousDatabaseLocalStandbyDbArgsDict']]]] local_standby_dbs: Autonomous Data Guard standby database details.
4921
4926
  :param pulumi.Input[Sequence[pulumi.Input[Union['AutonomousDatabaseLongTermBackupScheduleArgs', 'AutonomousDatabaseLongTermBackupScheduleArgsDict']]]] long_term_backup_schedules: Details for the long-term backup schedule.
4922
4927
  :param pulumi.Input[_builtins.str] maintenance_target_component: The component chosen for maintenance.
4923
- :param pulumi.Input[_builtins.int] max_cpu_core_count: (Updatable) **Deprecated.** The number of Max OCPU cores to be made available to the autonomous database with auto scaling of cpu enabled.
4924
- :param pulumi.Input[_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. This parameter is not used for Autonomous database Serverless.
4925
- :param pulumi.Input[_builtins.str] ncharacter_set: The national character set for the autonomous database. The default is AL16UTF16. Allowed values are: AL16UTF16 or UTF8.
4928
+ :param pulumi.Input[_builtins.int] memory_per_oracle_compute_unit_in_gbs: The amount of memory (in GBs) enabled per ECPU or OCPU.
4929
+ :param pulumi.Input[_builtins.str] ncharacter_set: The character set for the Autonomous Database. The default is AL32UTF8. Use [List Autonomous Database Character Sets](https://docs.oracle.com/iaas/autonomous-database-serverless/doc/autonomous-character-set-selection.html) to list the allowed values for an Autonomous Database Serverless instance. For an Autonomous Database on dedicated Exadata infrastructure, the allowed values are: AL16UTF16 or UTF8.
4926
4930
  :param pulumi.Input[_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.
4927
4931
  :param pulumi.Input[_builtins.str] next_long_term_backup_time_stamp: The date and time when the next long-term backup would be created.
4928
4932
  :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] nsg_ids: (Updatable) The list of [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for the network security groups (NSGs) to which this resource belongs. Setting this to an empty list removes all resources from all NSGs. For more information about NSGs, see [Security Rules](https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/securityrules.htm). **NsgIds restrictions:**
4929
4933
  * A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
4930
4934
  :param pulumi.Input[_builtins.float] ocpu_count: (Updatable) The number of OCPU cores to be made available to the database.
4931
4935
 
4932
-
4933
- * Providing `computeModel` and `computeCount` is the preferred method for setting CPUs for both OCPU and ECPU.
4934
4936
  The following points apply:
4935
- * For Autonomous Databases on dedicated Exadata infrastructure, to provision less than 1 core, enter a fractional value in an increment of 0.1. For example, you can provision 0.3 or 0.4 cores, but not 0.35 cores. (Note that fractional OCPU values are not supported for Autonomous Databasese on shared Exadata infrastructure.)
4936
- * To provision 1 or more cores, you must enter an integer between 1 and the maximum number of cores available for the infrastructure shape. For example, you can provision 2 cores or 3 cores, but not 2.5 cores. This applies to Autonomous Databases on both shared and dedicated Exadata infrastructure.
4937
+ * For Autonomous Databases on Dedicated Exadata infrastructure, to provision less than 1 core, enter a fractional value in an increment of 0.1. For example, you can provision 0.3 or 0.4 cores, but not 0.35 cores. (Note that fractional OCPU values are not supported for Autonomous Database Serverless instances.)
4938
+ * To provision 1 or more cores, you must enter an integer between 1 and the maximum number of cores available for the infrastructure shape. For example, you can provision 2 cores or 3 cores, but not 2.5 cores. This applies to an Autonomous Database Serverless instance or an Autonomous Database on Dedicated Exadata Infrastructure.
4939
+ * For Autonomous Database Serverless instances, this parameter is not used.
4937
4940
 
4938
- For Autonomous Databases on dedicated Exadata infrastructure, the maximum number of cores is determined by the infrastructure shape. See [Characteristics of Infrastructure Shapes](https://www.oracle.com/pls/topic/lookup?ctx=en/cloud/paas/autonomous-database&id=ATPFG-GUID-B0F033C1-CC5A-42F0-B2E7-3CECFEDA1FD1) for shape details.
4941
+ For Autonomous Databases on Dedicated Exadata infrastructure, the maximum number of cores is determined by the infrastructure shape. See [Characteristics of Infrastructure Shapes](https://www.oracle.com/pls/topic/lookup?ctx=en/cloud/paas/autonomous-database&id=ATPFG-GUID-B0F033C1-CC5A-42F0-B2E7-3CECFEDA1FD1) for shape details.
4939
4942
 
4940
4943
  **Note:** This parameter cannot be used with the `cpuCoreCount` parameter.
4941
- :param pulumi.Input[_builtins.str] open_mode: Indicates the Autonomous Database mode. The database can be opened in `READ_ONLY` or `READ_WRITE` mode.
4942
- :param pulumi.Input[_builtins.str] operations_insights_status: (Updatable) Status of Operations Insights for this Autonomous Database. Values supported are `ENABLED` and `NOT_ENABLED`
4943
- :param pulumi.Input[_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.
4944
- :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] peer_db_ids: The list of [OCIDs](https://docs.cloud.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.
4944
+ :param pulumi.Input[_builtins.str] open_mode: (Updatable) Indicates the Autonomous Database mode. The database can be opened in `READ_ONLY` or `READ_WRITE` mode.
4945
+
4946
+ This cannot be updated in parallel with any of the following: cpuCoreCount, computeCount, computeModel, adminPassword, whitelistedIps, isMTLSConnectionRequired, dbVersion, isRefreshable, dbName, scheduledOperations, dbToolsDetails, or isFreeTier.
4947
+ :param pulumi.Input[_builtins.str] operations_insights_status: Status of Operations Insights for this Autonomous Database.
4948
+ :param pulumi.Input[Sequence[pulumi.Input[_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.
4945
4949
  :param pulumi.Input[_builtins.str] permission_level: The Autonomous Database permission level. Restricted mode allows access only by admin users.
4946
- :param pulumi.Input[_builtins.str] private_endpoint: The private endpoint for the resource. This parameter is not used in Autonomous Databases using Serverless infrastructure and Exadata Cloud@Customer infrastructure.
4947
- :param pulumi.Input[_builtins.str] private_endpoint_ip: The private endpoint Ip address for the resource.
4948
- :param pulumi.Input[_builtins.str] private_endpoint_label: (Updatable) (Optional) (Updatable) The resource's private endpoint label.
4949
- * Setting the endpoint label to a non-empty string creates a private endpoint database.
4950
- * Resetting the endpoint label to an empty string, after the creation of the private endpoint database, changes the private endpoint database to a public endpoint database.
4951
- * Setting the endpoint label to a non-empty string value, updates to a new private endpoint database, when the database is disabled and re-enabled.
4950
+ :param pulumi.Input[_builtins.str] private_endpoint: The private endpoint for the resource.
4951
+ :param pulumi.Input[_builtins.str] private_endpoint_ip: (Updatable) The private endpoint Ip address for the resource.
4952
+ :param pulumi.Input[_builtins.str] private_endpoint_label: (Updatable) The private endpoint label for the resource.
4952
4953
  :param pulumi.Input[Sequence[pulumi.Input[_builtins.float]]] provisionable_cpuses: An array of CPU values that an Autonomous Database can be scaled to.
4953
4954
  :param pulumi.Input[Sequence[pulumi.Input[Union['AutonomousDatabasePublicConnectionUrlArgs', 'AutonomousDatabasePublicConnectionUrlArgsDict']]]] public_connection_urls: The Public URLs of Private Endpoint database for accessing Oracle Application Express (APEX) and SQL Developer Web with a browser from a Compute instance within your VCN or that has a direct connection to your VCN.
4954
4955
  :param pulumi.Input[_builtins.str] public_endpoint: The public endpoint for the private endpoint enabled resource.
@@ -4959,7 +4960,6 @@ class AutonomousDatabase(pulumi.CustomResource):
4959
4960
  :param pulumi.Input[_builtins.str] resource_pool_leader_id: (Updatable) The unique identifier for leader autonomous database OCID [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
4960
4961
  :param pulumi.Input[Union['AutonomousDatabaseResourcePoolSummaryArgs', 'AutonomousDatabaseResourcePoolSummaryArgsDict']] resource_pool_summary: (Updatable) The configuration details for resource pool
4961
4962
  :param pulumi.Input[_builtins.str] role: The Data Guard role of the Autonomous Container Database or Autonomous Database, if Autonomous Data Guard is enabled.
4962
- :param pulumi.Input[_builtins.bool] rotate_key_trigger: (Updatable) An optional property when flipped triggers rotation of KMS key. It is only applicable on dedicated databases i.e. where `is_dedicated` is true.
4963
4963
  :param pulumi.Input[Sequence[pulumi.Input[Union['AutonomousDatabaseScheduledOperationArgs', 'AutonomousDatabaseScheduledOperationArgsDict']]]] scheduled_operations: (Updatable) The list of scheduled operations. Consists of values such as dayOfWeek, scheduledStartTime, scheduledStopTime.
4964
4964
 
4965
4965
  This cannot be updated in parallel with any of the following: licenseModel, dbEdition, cpuCoreCount, computeCount, computeModel, whitelistedIps, isMTLSConnectionRequired, openMode, permissionLevel, dbWorkload, privateEndpointLabel, nsgIds, dbVersion, isRefreshable, dbName, dbToolsDetails, isLocalDataGuardEnabled, or isFreeTier.
@@ -4969,67 +4969,67 @@ class AutonomousDatabase(pulumi.CustomResource):
4969
4969
  :param pulumi.Input[_builtins.int] secret_version_number: (Updatable) The version of the vault secret. If no version is specified, the latest version will be used.
4970
4970
  :param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] security_attributes: (Updatable) 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"}}}`
4971
4971
  :param pulumi.Input[_builtins.str] service_console_url: The URL of the Service Console for the Autonomous Database.
4972
- :param pulumi.Input[_builtins.str] source: The source of the database:
4973
- * Use `NONE` for creating a new Autonomous Database.
4974
- * Use `DATABASE` for creating a new Autonomous Database by cloning an existing running Autonomous Database from the latest timestamp, also provide the source database OCID in the `source_id` parameter.
4975
- * Use `CROSS_REGION_DATAGUARD` to create a standby Data Guard database in another region, also provide the remote primary database OCID in the `source_id` parameter.
4976
- * Use `CLONE_TO_REFRESHABLE` for creating a refreshable clone.
4972
+ :param pulumi.Input[_builtins.str] source: The source of the database: Use `NONE` for creating a new Autonomous Database. Use `DATABASE` for creating a new Autonomous Database by cloning an existing Autonomous Database. Use `CROSS_REGION_DATAGUARD` to create a standby Data Guard database in another region.
4977
4973
 
4978
- For [Autonomous Database Serverless](https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html) instances, the following cloning options are available:
4979
- * Use `BACKUP_FROM_ID` for creating a new Autonomous Database by cloning from a specified backup. Also provide the backup OCID in the `autonomous_database_backup_id` parameter.
4980
- * Use `BACKUP_FROM_TIMESTAMP` for creating a point-in-time Autonomous Database clone using backups. Also provide the backup timestamp in the `timestamp` parameter. For more information, see [Cloning and Moving an Autonomous Database](https://docs.oracle.com/en/cloud/paas/autonomous-database/adbsa/clone-autonomous-database.html#GUID-D771796F-5081-4CFB-A7FF-0F893EABD7BC).
4981
- :param pulumi.Input[_builtins.str] source_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the source Autonomous Database that will be used to create a new standby database for the Data Guard association.
4974
+ For [Autonomous Database Serverless instances](https://docs.oracle.com/en/cloud/paas/autonomous-database/serverless/), the following cloning options are available: Use `BACKUP_FROM_ID` for creating a new Autonomous Database from a specified backup. Use `BACKUP_FROM_TIMESTAMP` for creating a point-in-time Autonomous Database clone using backups. For more information, see [Cloning and Moving an Autonomous Database](https://docs.oracle.com/en/cloud/paas/autonomous-database/adbsa/clone-autonomous-database.html#GUID-D771796F-5081-4CFB-A7FF-0F893EABD7BC).
4975
+ :param pulumi.Input[_builtins.str] source_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the source Autonomous Database that will be used to create a new peer database for the Data Guard association.
4982
4976
  :param pulumi.Input[Sequence[pulumi.Input[Union['AutonomousDatabaseStandbyDbArgs', 'AutonomousDatabaseStandbyDbArgsDict']]]] standby_dbs: **Deprecated** Autonomous Data Guard standby database details.
4983
4977
  :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] standby_whitelisted_ips: (Updatable) 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`.
4984
4978
 
4985
- For Autonomous Database Serverless instances, this is an array of CIDR (Classless Inter-Domain Routing) notations for a subnet or VCN OCID. Use a semicolon (;) as a deliminator between the VCN-specific subnets or IPs. Example: `["1.1.1.1","1.1.1.0/24","ocid1.vcn.oc1.sea.<unique_id>","ocid1.vcn.oc1.sea.<unique_id1>;1.1.1.1","ocid1.vcn.oc1.sea.<unique_id2>;1.1.0.0/16"]` For Exadata Cloud@Customer, this is an array of IP addresses or CIDR (Classless Inter-Domain Routing) notations. Example: `["1.1.1.1","1.1.1.0/24","1.1.2.25"]`
4979
+ For Autonomous Database Serverless, this is an array of CIDR (classless inter-domain routing) notations for a subnet or VCN OCID (virtual cloud network Oracle Cloud ID). Multiple IPs and VCN OCIDs should be separate strings separated by commas, but if it’s other configurations that need multiple pieces of information then its each piece is connected with semicolon (;) as a delimiter. Example: `["1.1.1.1","1.1.1.0/24","ocid1.vcn.oc1.sea.<unique_id>","ocid1.vcn.oc1.sea.<unique_id1>;1.1.1.1","ocid1.vcn.oc1.sea.<unique_id2>;1.1.0.0/16"]` For Exadata Cloud@Customer, this is an array of IP addresses or CIDR notations. Example: `["1.1.1.1","1.1.1.0/24","1.1.2.25"]`
4986
4980
 
4987
4981
  For an update operation, if you want to delete all the IPs in the ACL, use an array with a single empty string entry.
4988
4982
 
4989
- If `arePrimaryWhitelistedIpsUsed` is 'TRUE' then Autonomous Database uses `whitelisted_ips` primary's IP access control list (ACL) as `standbywhitelistedips` for the disaster recovery peer.
4990
-
4991
4983
  This cannot be updated in parallel with any of the following: licenseModel, dbEdition, cpuCoreCount, computeCount, computeModel, adminPassword, isMTLSConnectionRequired, openMode, permissionLevel, dbWorkload, dbVersion, isRefreshable, dbName, scheduledOperations, dbToolsDetails, isLocalDataGuardEnabled, or isFreeTier.
4992
4984
  :param pulumi.Input[_builtins.str] state: The current state of the Autonomous Database.
4993
- :param pulumi.Input[_builtins.str] subnet_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet the resource is associated with. This the only parameter to configure private endpoint, VCN details are obtained from the `subnet_id`.
4985
+ :param pulumi.Input[_builtins.str] subnet_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet the resource is associated with.
4994
4986
 
4995
4987
  **Subnet Restrictions:**
4996
4988
  * For bare metal DB systems and for single node virtual machine DB systems, do not use a subnet that overlaps with 192.168.16.16/28.
4997
4989
  * For Exadata and virtual machine 2-node RAC systems, do not use a subnet that overlaps with 192.168.128.0/20.
4998
4990
  * For Autonomous Database, setting this will disable public secure access to the database.
4999
- :param pulumi.Input[_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.
4991
+
5000
4992
  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.
4993
+ :param pulumi.Input[_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.
5001
4994
  :param pulumi.Input[Sequence[pulumi.Input[_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.
5002
- :param pulumi.Input[_builtins.str] switchover_to: It is applicable only when `is_local_data_guard_enabled` is true. Could be set to `PRIMARY` or `STANDBY`. Default value is `PRIMARY`.
5003
- :param pulumi.Input[_builtins.str] switchover_to_remote_peer_id: (Updatable) It is applicable only when `dataguard_region_type` and `role` are set, and `is_dedicated` is false. For Autonomous Database Serverless instances, Data Guard associations have designated primary and standby regions, and these region types do not change when the database changes roles. It takes the [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the remote peer to switchover to and the API is called from the remote region.
5004
4995
  :param pulumi.Input[Mapping[str, pulumi.Input[_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).
5005
4996
  :param pulumi.Input[_builtins.str] time_created: The date and time the Autonomous Database was created.
5006
4997
  :param pulumi.Input[_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.
5007
4998
  :param pulumi.Input[_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.
5008
4999
  :param pulumi.Input[_builtins.str] time_disaster_recovery_role_changed: The date and time the Disaster Recovery role was switched for the standby Autonomous Database.
5000
+ :param pulumi.Input[_builtins.str] time_earliest_available_db_version_upgrade: The earliest(min) date and time the Autonomous Database can be scheduled to upgrade to 23ai.
5001
+ :param pulumi.Input[_builtins.str] time_latest_available_db_version_upgrade: The max date and time the Autonomous Database can be scheduled to upgrade to 23ai.
5009
5002
  :param pulumi.Input[_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.
5010
5003
  :param pulumi.Input[_builtins.str] time_maintenance_begin: The date and time when maintenance will begin.
5011
5004
  :param pulumi.Input[_builtins.str] time_maintenance_end: The date and time when maintenance will end.
5012
- :param pulumi.Input[_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.
5005
+ :param pulumi.Input[_builtins.str] time_of_auto_refresh_start: (Updatable) 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.
5006
+ :param pulumi.Input[_builtins.str] time_of_joining_resource_pool: The time the member joined the resource pool.
5013
5007
  :param pulumi.Input[_builtins.str] time_of_last_failover: The timestamp of the last failover operation.
5014
5008
  :param pulumi.Input[_builtins.str] time_of_last_refresh: The date and time when last refresh happened.
5015
5009
  :param pulumi.Input[_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.
5016
5010
  :param pulumi.Input[_builtins.str] time_of_last_switchover: The timestamp of the last switchover operation for the Autonomous Database.
5017
5011
  :param pulumi.Input[_builtins.str] time_of_next_refresh: The date and time of next refresh.
5018
5012
  :param pulumi.Input[_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.
5013
+ :param pulumi.Input[_builtins.str] time_scheduled_db_version_upgrade: The date and time the Autonomous Database scheduled to upgrade to 23ai. Send this value along with the target db_version value to schedule the database version upgrade. After the upgrade is scheduled and before the scheduled upgrade time arrives, please keep the db_version value the same as the backend's current db_version.
5014
+ :param pulumi.Input[_builtins.str] time_undeleted: The date and time the Autonomous Database was most recently undeleted.
5019
5015
  :param pulumi.Input[_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.
5020
5016
  :param pulumi.Input[_builtins.str] timestamp: The timestamp specified for the point-in-time clone of the source Autonomous Database. The timestamp must be in the past.
5021
5017
  :param pulumi.Input[_builtins.float] total_backup_storage_size_in_gbs: The backup storage to the database.
5022
5018
  :param pulumi.Input[_builtins.bool] use_latest_available_backup_time_stamp: Clone from latest available backup timestamp.
5023
5019
  :param pulumi.Input[_builtins.int] used_data_storage_size_in_gbs: The storage space consumed by Autonomous Database in GBs.
5024
5020
  :param pulumi.Input[_builtins.int] used_data_storage_size_in_tbs: The amount of storage that has been used for Autonomous Databases in dedicated infrastructure, in terabytes.
5025
- :param pulumi.Input[_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).
5026
- :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] whitelisted_ips: (Updatable) The client IP access control list (ACL). This feature is available for autonomous databases on [shared Exadata infrastructure](https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html) and on Exadata Cloud@Customer. Only clients connecting from an IP address included in the ACL may access the Autonomous Database instance.
5021
+ :param pulumi.Input[_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.
5022
+ :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] whitelisted_ips: (Updatable) 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`.
5027
5023
 
5028
- For Autonomous Database Serverless instances, this is an array of CIDR (Classless Inter-Domain Routing) notations for a subnet or VCN OCID. Use a semicolon (;) as a deliminator between the VCN-specific subnets or IPs. Example: `["1.1.1.1","1.1.1.0/24","ocid1.vcn.oc1.sea.<unique_id>","ocid1.vcn.oc1.sea.<unique_id1>;1.1.1.1","ocid1.vcn.oc1.sea.<unique_id2>;1.1.0.0/16"]` For Exadata Cloud@Customer, this is an array of IP addresses or CIDR (Classless Inter-Domain Routing) notations. Example: `["1.1.1.1","1.1.1.0/24","1.1.2.25"]`
5024
+ For Autonomous Database Serverless, this is an array of CIDR (classless inter-domain routing) notations for a subnet or VCN OCID (virtual cloud network Oracle Cloud ID). Multiple IPs and VCN OCIDs should be separate strings separated by commas, but if it’s other configurations that need multiple pieces of information then its each piece is connected with semicolon (;) as a delimiter. Example: `["1.1.1.1","1.1.1.0/24","ocid1.vcn.oc1.sea.<unique_id>","ocid1.vcn.oc1.sea.<unique_id1>;1.1.1.1","ocid1.vcn.oc1.sea.<unique_id2>;1.1.0.0/16"]` For Exadata Cloud@Customer, this is an array of IP addresses or CIDR notations. Example: `["1.1.1.1","1.1.1.0/24","1.1.2.25"]`
5029
5025
 
5030
5026
  For an update operation, if you want to delete all the IPs in the ACL, use an array with a single empty string entry.
5031
5027
 
5032
5028
  This cannot be updated in parallel with any of the following: licenseModel, dbEdition, cpuCoreCount, computeCount, computeModel, adminPassword, isMTLSConnectionRequired, openMode, permissionLevel, dbWorkload, dbVersion, isRefreshable, dbName, scheduledOperations, dbToolsDetails, isLocalDataGuardEnabled, or isFreeTier. To remove all whitelisted IPs, set the field to a list with an empty string `[""]`.
5029
+
5030
+
5031
+ ** IMPORTANT **
5032
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
5033
5033
  """
5034
5034
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
5035
5035
 
@@ -5091,6 +5091,7 @@ class AutonomousDatabase(pulumi.CustomResource):
5091
5091
  __props__.__dict__["is_data_guard_enabled"] = is_data_guard_enabled
5092
5092
  __props__.__dict__["is_dedicated"] = is_dedicated
5093
5093
  __props__.__dict__["is_dev_tier"] = is_dev_tier
5094
+ __props__.__dict__["is_disable_db_version_upgrade_schedule"] = is_disable_db_version_upgrade_schedule
5094
5095
  __props__.__dict__["is_disconnect_peer"] = is_disconnect_peer
5095
5096
  __props__.__dict__["is_free_tier"] = is_free_tier
5096
5097
  __props__.__dict__["is_local_data_guard_enabled"] = is_local_data_guard_enabled
@@ -5101,6 +5102,7 @@ class AutonomousDatabase(pulumi.CustomResource):
5101
5102
  __props__.__dict__["is_refreshable_clone"] = is_refreshable_clone
5102
5103
  __props__.__dict__["is_remote_data_guard_enabled"] = is_remote_data_guard_enabled
5103
5104
  __props__.__dict__["is_replicate_automatic_backups"] = is_replicate_automatic_backups
5105
+ __props__.__dict__["is_schedule_db_version_upgrade_to_earliest"] = is_schedule_db_version_upgrade_to_earliest
5104
5106
  __props__.__dict__["is_shrink_only"] = is_shrink_only
5105
5107
  __props__.__dict__["key_history_entries"] = key_history_entries
5106
5108
  __props__.__dict__["key_store_id"] = key_store_id
@@ -5163,6 +5165,8 @@ class AutonomousDatabase(pulumi.CustomResource):
5163
5165
  __props__.__dict__["time_data_guard_role_changed"] = time_data_guard_role_changed
5164
5166
  __props__.__dict__["time_deletion_of_free_autonomous_database"] = time_deletion_of_free_autonomous_database
5165
5167
  __props__.__dict__["time_disaster_recovery_role_changed"] = time_disaster_recovery_role_changed
5168
+ __props__.__dict__["time_earliest_available_db_version_upgrade"] = time_earliest_available_db_version_upgrade
5169
+ __props__.__dict__["time_latest_available_db_version_upgrade"] = time_latest_available_db_version_upgrade
5166
5170
  __props__.__dict__["time_local_data_guard_enabled"] = time_local_data_guard_enabled
5167
5171
  __props__.__dict__["time_maintenance_begin"] = time_maintenance_begin
5168
5172
  __props__.__dict__["time_maintenance_end"] = time_maintenance_end
@@ -5174,6 +5178,7 @@ class AutonomousDatabase(pulumi.CustomResource):
5174
5178
  __props__.__dict__["time_of_last_switchover"] = time_of_last_switchover
5175
5179
  __props__.__dict__["time_of_next_refresh"] = time_of_next_refresh
5176
5180
  __props__.__dict__["time_reclamation_of_free_autonomous_database"] = time_reclamation_of_free_autonomous_database
5181
+ __props__.__dict__["time_scheduled_db_version_upgrade"] = time_scheduled_db_version_upgrade
5177
5182
  __props__.__dict__["time_undeleted"] = time_undeleted
5178
5183
  __props__.__dict__["time_until_reconnect_clone_enabled"] = time_until_reconnect_clone_enabled
5179
5184
  __props__.__dict__["timestamp"] = timestamp
@@ -5245,7 +5250,7 @@ class AutonomousDatabase(pulumi.CustomResource):
5245
5250
  @pulumi.getter(name="autonomousContainerDatabaseId")
5246
5251
  def autonomous_container_database_id(self) -> pulumi.Output[_builtins.str]:
5247
5252
  """
5248
- The Autonomous Container Database [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
5253
+ 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.
5249
5254
  """
5250
5255
  return pulumi.get(self, "autonomous_container_database_id")
5251
5256
 
@@ -5269,7 +5274,7 @@ class AutonomousDatabase(pulumi.CustomResource):
5269
5274
  @pulumi.getter(name="autonomousMaintenanceScheduleType")
5270
5275
  def autonomous_maintenance_schedule_type(self) -> pulumi.Output[_builtins.str]:
5271
5276
  """
5272
- The maintenance schedule type of the Autonomous Database Serverless instances. The EARLY maintenance schedule of this Autonomous Database follows a schedule that applies patches prior to the REGULAR schedule.The REGULAR maintenance schedule of this Autonomous Database follows the normal cycle.
5277
+ (Updatable) 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
5273
5278
  """
5274
5279
  return pulumi.get(self, "autonomous_maintenance_schedule_type")
5275
5280
 
@@ -5301,22 +5306,26 @@ class AutonomousDatabase(pulumi.CustomResource):
5301
5306
  @pulumi.getter(name="backupRetentionPeriodInDays")
5302
5307
  def backup_retention_period_in_days(self) -> pulumi.Output[_builtins.int]:
5303
5308
  """
5304
- (Updatable) Retention period, in days, for backups.
5309
+ (Updatable) Retention period, in days, for long-term backups
5305
5310
  """
5306
5311
  return pulumi.get(self, "backup_retention_period_in_days")
5307
5312
 
5308
5313
  @_builtins.property
5309
5314
  @pulumi.getter(name="byolComputeCountLimit")
5310
5315
  def byol_compute_count_limit(self) -> pulumi.Output[_builtins.float]:
5316
+ """
5317
+ (Updatable) 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.
5318
+ """
5311
5319
  return pulumi.get(self, "byol_compute_count_limit")
5312
5320
 
5313
5321
  @_builtins.property
5314
5322
  @pulumi.getter(name="characterSet")
5315
5323
  def character_set(self) -> pulumi.Output[_builtins.str]:
5316
5324
  """
5317
- The character set for the autonomous database. The default is AL32UTF8. Allowed values for an Autonomous Database on Serverless infrastructure as returned by [List Autonomous Database Character Sets](https://www.terraform.io/autonomousDatabaseCharacterSets)
5325
+ The character set for the autonomous database. The default is AL32UTF8. Allowed values for an Autonomous Database Serverless instance as as returned by [List Autonomous Database Character Sets](https://docs.oracle.com/iaas/autonomous-database-serverless/doc/autonomous-character-set-selection.html)
5326
+
5327
+ For an Autonomous Database on dedicated infrastructure, the allowed values are:
5318
5328
 
5319
- For an Autonomous Database on dedicated infrastructure, the allowed values are
5320
5329
  AL32UTF8, AR8ADOS710, AR8ADOS720, AR8APTEC715, AR8ARABICMACS, AR8ASMO8X, AR8ISO8859P6, AR8MSWIN1256, AR8MUSSAD768, AR8NAFITHA711, AR8NAFITHA721, AR8SAKHR706, AR8SAKHR707, AZ8ISO8859P9E, BG8MSWIN, BG8PC437S, BLT8CP921, BLT8ISO8859P13, BLT8MSWIN1257, BLT8PC775, BN8BSCII, CDN8PC863, CEL8ISO8859P14, CL8ISO8859P5, CL8ISOIR111, CL8KOI8R, CL8KOI8U, CL8MACCYRILLICS, CL8MSWIN1251, EE8ISO8859P2, EE8MACCES, EE8MACCROATIANS, EE8MSWIN1250, EE8PC852, EL8DEC, EL8ISO8859P7, EL8MACGREEKS, EL8MSWIN1253, EL8PC437S, EL8PC851, EL8PC869, ET8MSWIN923, HU8ABMOD, HU8CWI2, IN8ISCII, IS8PC861, IW8ISO8859P8, IW8MACHEBREWS, IW8MSWIN1255, IW8PC1507, JA16EUC, JA16EUCTILDE, JA16SJIS, JA16SJISTILDE, JA16VMS, KO16KSC5601, KO16KSCCS, KO16MSWIN949, LA8ISO6937, LA8PASSPORT, LT8MSWIN921, LT8PC772, LT8PC774, LV8PC1117, LV8PC8LR, LV8RST104090, N8PC865, NE8ISO8859P10, NEE8ISO8859P4, RU8BESTA, RU8PC855, RU8PC866, SE8ISO8859P3, TH8MACTHAIS, TH8TISASCII, TR8DEC, TR8MACTURKISHS, TR8MSWIN1254, TR8PC857, US7ASCII, US8PC437, UTF8, VN8MSWIN1258, VN8VN3, WE8DEC, WE8DG, WE8ISO8859P1, WE8ISO8859P15, WE8ISO8859P9, WE8MACROMAN8S, WE8MSWIN1252, WE8NCR4970, WE8NEXTSTEP, WE8PC850, WE8PC858, WE8PC860, WE8ROMAN8, ZHS16CGB231280, ZHS16GBK, ZHT16BIG5, ZHT16CCDC, ZHT16DBT, ZHT16HKSCS, ZHT16MSWIN950, ZHT32EUC, ZHT32SOPS, ZHT32TRIS
5321
5330
  """
5322
5331
  return pulumi.get(self, "character_set")
@@ -5333,7 +5342,7 @@ class AutonomousDatabase(pulumi.CustomResource):
5333
5342
  @pulumi.getter(name="cloneType")
5334
5343
  def clone_type(self) -> pulumi.Output[_builtins.str]:
5335
5344
  """
5336
- The Autonomous Database clone type. This parameter is not used to create a refreshable clone type, and for refreshable clones one must use the (source=CLONE_TO_REFRESHABLE) parameter.
5345
+ The Autonomous Database clone type.
5337
5346
  * `FULL` - This option creates a new database that includes all source database data.
5338
5347
  * `METADATA` - This option creates a new database that includes the source database schema and select metadata, but not the source database data.
5339
5348
  """
@@ -5359,7 +5368,7 @@ class AutonomousDatabase(pulumi.CustomResource):
5359
5368
  @pulumi.getter(name="computeCount")
5360
5369
  def compute_count(self) -> pulumi.Output[_builtins.float]:
5361
5370
  """
5362
- (Updatable) The compute amount available to the database. Minimum and maximum values depend on the compute model and whether the database is an Autonomous Database Serverless instance or an Autonomous Database on Dedicated Exadata Infrastructure. For an Autonomous Database Serverless instance, the 'ECPU' compute model requires a minimum value of one, for databases in the elastic resource pool and minimum value of two, otherwise. Required when using the `computeModel` parameter. When using `cpuCoreCount` parameter, it is an error to specify computeCount to a non-null value. Providing `computeModel` and `computeCount` is the preferred method for both OCPU and ECPU.
5371
+ (Updatable) The compute amount (CPUs) available to the database. Minimum and maximum values depend on the compute model and whether the database is an Autonomous Database Serverless instance or an Autonomous Database on Dedicated Exadata Infrastructure. The 'ECPU' compute model requires a minimum value of one, for databases in the elastic resource pool and minimum value of two, otherwise. Required when using the `computeModel` parameter. When using `cpuCoreCount` parameter, it is an error to specify computeCount to a non-null value. Providing `computeModel` and `computeCount` is the preferred method for both OCPU and ECPU.
5363
5372
  """
5364
5373
  return pulumi.get(self, "compute_count")
5365
5374
 
@@ -5392,13 +5401,8 @@ class AutonomousDatabase(pulumi.CustomResource):
5392
5401
  def cpu_core_count(self) -> pulumi.Output[_builtins.int]:
5393
5402
  """
5394
5403
  (Updatable) The number of CPU cores to be made available to the database. For Autonomous Databases on dedicated Exadata infrastructure, the maximum number of cores is determined by the infrastructure shape. See [Characteristics of Infrastructure Shapes](https://www.oracle.com/pls/topic/lookup?ctx=en/cloud/paas/autonomous-database&id=ATPFG-GUID-B0F033C1-CC5A-42F0-B2E7-3CECFEDA1FD1) for shape details.
5404
+
5395
5405
  **Note:** This parameter cannot be used with the `ocpuCount` parameter. This input is ignored for Always Free resources.
5396
- * The data type must be an *integer*.
5397
- * The minimum number of cores for all types of autonomous database is *1*
5398
- * The maximum number of cores is as follows:
5399
- * Autonomous Database Serverless instances: The maximum number of cores is *128*.
5400
- * Autonomous Databases on dedicated Exadata infrastructure: The maximum number of cores is determined by the infrastructure shape. See [Characteristics of Infrastructure Shapes](https://www.oracle.com/pls/topic/lookup?ctx=en/cloud/paas/autonomous-database&id=ATPFG-GUID-B0F033C1-CC5A-42F0-B2E7-3CECFEDA1FD1) for shape details.
5401
- * Providing `computeModel` and `computeCount` is the preferred method for setting CPUs for both OCPU and ECPU.
5402
5406
  """
5403
5407
  return pulumi.get(self, "cpu_core_count")
5404
5408
 
@@ -5434,7 +5438,7 @@ class AutonomousDatabase(pulumi.CustomResource):
5434
5438
  @pulumi.getter(name="dataStorageSizeInTbs")
5435
5439
  def data_storage_size_in_tbs(self) -> pulumi.Output[_builtins.int]:
5436
5440
  """
5437
- (Updatable) The size, in terabytes, of the data volume that will be created and attached to the database. This storage can later be scaled up if needed. For Autonomous Databases on dedicated Exadata infrastructure, the maximum storage value is determined by the infrastructure shape. See [Characteristics of Infrastructure Shapes](https://www.oracle.com/pls/topic/lookup?ctx=en/cloud/paas/autonomous-database&id=ATPFG-GUID-B0F033C1-CC5A-42F0-B2E7-3CECFEDA1FD1) for shape details. A full Exadata service is allocated when the Autonomous Database size is set to the upper limit (384 TB).
5441
+ (Updatable) The size, in terabytes, of the data volume that will be created and attached to the database. This storage can later be scaled up if needed. For Autonomous Databases on dedicated Exadata infrastructure, the maximum storage value is determined by the infrastructure shape. See [Characteristics of Infrastructure Shapes](https://www.oracle.com/pls/topic/lookup?ctx=en/cloud/paas/autonomous-database&id=ATPFG-GUID-B0F033C1-CC5A-42F0-B2E7-3CECFEDA1FD1) for shape details. A full Exadata service is allocated when the Autonomous Database size is set to the upper limit (384 TB).
5438
5442
 
5439
5443
  **Note:** This parameter cannot be used with the `dataStorageSizeInGBs` parameter. This input is ignored for Always Free resources.
5440
5444
  """
@@ -5444,7 +5448,7 @@ class AutonomousDatabase(pulumi.CustomResource):
5444
5448
  @pulumi.getter(name="databaseEdition")
5445
5449
  def database_edition(self) -> pulumi.Output[_builtins.str]:
5446
5450
  """
5447
- (Updatable) The Oracle Database Edition that applies to the Autonomous databases. It can be set to `ENTERPRISE_EDITION` or `STANDARD_EDITION`.
5451
+ (Updatable) The Oracle Database Edition that applies to the Autonomous databases. This parameter accepts options `STANDARD_EDITION` and `ENTERPRISE_EDITION`.
5448
5452
  """
5449
5453
  return pulumi.get(self, "database_edition")
5450
5454
 
@@ -5460,7 +5464,7 @@ class AutonomousDatabase(pulumi.CustomResource):
5460
5464
  @pulumi.getter(name="dataguardRegionType")
5461
5465
  def dataguard_region_type(self) -> pulumi.Output[_builtins.str]:
5462
5466
  """
5463
- **Deprecated** (Optional) The Autonomous Data Guard region type of the Autonomous Database. For Autonomous Database Serverless instances, Data Guard associations have designated primary (`PRIMARY_DG_REGION`) and standby (`REMOTE_STANDBY_DG_REGION`) regions, and these region types do not change when the database changes roles. The standby regions in Data Guard associations can be the same region designated as the primary region, or they can be remote regions. Certain database administrative operations may be available only in the primary region of the Data Guard association, and cannot be performed when the database using the "primary" role is operating in a remote Data Guard standby region.
5467
+ **Deprecated.** The Autonomous Data Guard region type of the Autonomous Database. For Autonomous Database Serverless, Autonomous Data Guard associations have designated primary and standby regions, and these region types do not change when the database changes roles. The standby regions in Autonomous Data Guard associations can be the same region designated as the primary region, or they can be remote regions. Certain database administrative operations may be available only in the primary region of the Autonomous Data Guard association, and cannot be performed when the database using the primary role is operating in a remote Autonomous Data Guard standby region.
5464
5468
  """
5465
5469
  return pulumi.get(self, "dataguard_region_type")
5466
5470
 
@@ -5468,7 +5472,7 @@ class AutonomousDatabase(pulumi.CustomResource):
5468
5472
  @pulumi.getter(name="dbName")
5469
5473
  def db_name(self) -> pulumi.Output[_builtins.str]:
5470
5474
  """
5471
- The database name. The name must begin with an alphabetic character and can contain a maximum of 14 alphanumeric characters. Special characters are not permitted. The database name must be unique in the tenancy. It is required in all cases except when creating a cross-region Autonomous Data Guard standby instance or a cross-region disaster recovery standby instance.
5475
+ The database name. The name must begin with an alphabetic character and can contain a maximum of 30 alphanumeric characters. Special characters are not permitted. The database name must be unique in the tenancy. It is required in all cases except when creating a cross-region Autonomous Data Guard standby instance or a cross-region disaster recovery standby instance.
5472
5476
  """
5473
5477
  return pulumi.get(self, "db_name")
5474
5478
 
@@ -5486,7 +5490,7 @@ class AutonomousDatabase(pulumi.CustomResource):
5486
5490
  @pulumi.getter(name="dbVersion")
5487
5491
  def db_version(self) -> pulumi.Output[_builtins.str]:
5488
5492
  """
5489
- (Updatable) A valid Oracle Database version for Autonomous Database.`db_workload` AJD and APEX are only supported for `db_version` `19c` and above.
5493
+ (Updatable) A valid Oracle Database version for Autonomous Database.`db_workload` AJD is only supported for `db_version` `19c` and above.
5490
5494
  """
5491
5495
  return pulumi.get(self, "db_version")
5492
5496
 
@@ -5516,7 +5520,7 @@ class AutonomousDatabase(pulumi.CustomResource):
5516
5520
  @pulumi.getter(name="disasterRecoveryRegionType")
5517
5521
  def disaster_recovery_region_type(self) -> pulumi.Output[_builtins.str]:
5518
5522
  """
5519
- **Deprecated** The disaster recovery (DR) region type of the Autonomous Database. For Serverless Autonomous Databases, DR associations have designated primary (`PRIMARY`) and standby (`REMOTE`) 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.
5523
+ **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.
5520
5524
  """
5521
5525
  return pulumi.get(self, "disaster_recovery_region_type")
5522
5526
 
@@ -5539,9 +5543,6 @@ class AutonomousDatabase(pulumi.CustomResource):
5539
5543
  @_builtins.property
5540
5544
  @pulumi.getter(name="enableDeleteScheduledOperations")
5541
5545
  def enable_delete_scheduled_operations(self) -> pulumi.Output[Optional[_builtins.bool]]:
5542
- """
5543
- 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.
5544
- """
5545
5546
  return pulumi.get(self, "enable_delete_scheduled_operations")
5546
5547
 
5547
5548
  @_builtins.property
@@ -5646,7 +5647,7 @@ class AutonomousDatabase(pulumi.CustomResource):
5646
5647
  @pulumi.getter(name="isDedicated")
5647
5648
  def is_dedicated(self) -> pulumi.Output[_builtins.bool]:
5648
5649
  """
5649
- True if the database is on [dedicated Exadata infrastructure](https://docs.cloud.oracle.com/iaas/Content/Database/Concepts/adbddoverview.htm).
5650
+ True if the database is on [dedicated Exadata infrastructure](https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html).
5650
5651
  """
5651
5652
  return pulumi.get(self, "is_dedicated")
5652
5653
 
@@ -5654,23 +5655,27 @@ class AutonomousDatabase(pulumi.CustomResource):
5654
5655
  @pulumi.getter(name="isDevTier")
5655
5656
  def is_dev_tier(self) -> pulumi.Output[_builtins.bool]:
5656
5657
  """
5657
- (Updatable) 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.
5658
+ (Updatable) 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.
5658
5659
  """
5659
5660
  return pulumi.get(self, "is_dev_tier")
5660
5661
 
5662
+ @_builtins.property
5663
+ @pulumi.getter(name="isDisableDbVersionUpgradeSchedule")
5664
+ def is_disable_db_version_upgrade_schedule(self) -> pulumi.Output[_builtins.bool]:
5665
+ return pulumi.get(self, "is_disable_db_version_upgrade_schedule")
5666
+
5661
5667
  @_builtins.property
5662
5668
  @pulumi.getter(name="isDisconnectPeer")
5663
5669
  def is_disconnect_peer(self) -> pulumi.Output[Optional[_builtins.bool]]:
5664
- """
5665
- 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.
5666
- """
5667
5670
  return pulumi.get(self, "is_disconnect_peer")
5668
5671
 
5669
5672
  @_builtins.property
5670
5673
  @pulumi.getter(name="isFreeTier")
5671
5674
  def is_free_tier(self) -> pulumi.Output[_builtins.bool]:
5672
5675
  """
5673
- (Updatable) 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. When `db_workload` is `AJD` or `APEX` it cannot be `true`.
5676
+ (Updatable) 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.
5677
+
5678
+ 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 When `db_workload` is `AJD` it cannot be `true`.
5674
5679
  """
5675
5680
  return pulumi.get(self, "is_free_tier")
5676
5681
 
@@ -5678,16 +5683,13 @@ class AutonomousDatabase(pulumi.CustomResource):
5678
5683
  @pulumi.getter(name="isLocalDataGuardEnabled")
5679
5684
  def is_local_data_guard_enabled(self) -> pulumi.Output[_builtins.bool]:
5680
5685
  """
5681
- (Updatable) Indicates whether the Autonomous Database has local (in-region) Data Guard enabled. It takes boolean values. Not applicable to cross-region Autonomous Data Guard associations, or to Autonomous Databases using dedicated Exadata infrastructure or Exadata Cloud@Customer infrastructure.
5686
+ (Updatable) 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.
5682
5687
  """
5683
5688
  return pulumi.get(self, "is_local_data_guard_enabled")
5684
5689
 
5685
5690
  @_builtins.property
5686
5691
  @pulumi.getter(name="isMtlsConnectionRequired")
5687
5692
  def is_mtls_connection_required(self) -> pulumi.Output[_builtins.bool]:
5688
- """
5689
- (Updatable) Indicates whether the Autonomous Database requires mTLS connections.
5690
- """
5691
5693
  return pulumi.get(self, "is_mtls_connection_required")
5692
5694
 
5693
5695
  @_builtins.property
@@ -5702,7 +5704,7 @@ class AutonomousDatabase(pulumi.CustomResource):
5702
5704
  @pulumi.getter(name="isPreviewVersionWithServiceTermsAccepted")
5703
5705
  def is_preview_version_with_service_terms_accepted(self) -> pulumi.Output[_builtins.bool]:
5704
5706
  """
5705
- If set to `TRUE`, indicates that an Autonomous Database preview version is being provisioned, and that the preview version's terms of service have been accepted. Note that preview version software is only available for databases on [Autonomous Database Serverless](https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html).
5707
+ If set to `TRUE`, indicates that an Autonomous Database preview version is being provisioned, and that the preview version's terms of service have been accepted. Note that preview version software is only available for Autonomous Database Serverless instances (https://docs.oracle.com/en/cloud/paas/autonomous-database/serverless/).
5706
5708
  """
5707
5709
  return pulumi.get(self, "is_preview_version_with_service_terms_accepted")
5708
5710
 
@@ -5718,7 +5720,7 @@ class AutonomousDatabase(pulumi.CustomResource):
5718
5720
  @pulumi.getter(name="isRefreshableClone")
5719
5721
  def is_refreshable_clone(self) -> pulumi.Output[_builtins.bool]:
5720
5722
  """
5721
- (Updatable) True for creating a refreshable clone and False for detaching the clone from source Autonomous Database. Detaching is one time operation and clone becomes a regular Autonomous Database.
5723
+ Indicates if the Autonomous Database is a refreshable clone.
5722
5724
  """
5723
5725
  return pulumi.get(self, "is_refreshable_clone")
5724
5726
 
@@ -5726,7 +5728,7 @@ class AutonomousDatabase(pulumi.CustomResource):
5726
5728
  @pulumi.getter(name="isRemoteDataGuardEnabled")
5727
5729
  def is_remote_data_guard_enabled(self) -> pulumi.Output[_builtins.bool]:
5728
5730
  """
5729
- Indicates whether the Autonomous Database has Cross Region Data Guard enabled. It takes boolean values. Not applicable to Autonomous Databases using dedicated Exadata infrastructure or Exadata Cloud@Customer infrastructure.
5731
+ Indicates whether the Autonomous Database has Cross Region Data Guard enabled. Not applicable to Autonomous Databases using dedicated Exadata infrastructure or Exadata Cloud@Customer infrastructure.
5730
5732
  """
5731
5733
  return pulumi.get(self, "is_remote_data_guard_enabled")
5732
5734
 
@@ -5738,16 +5740,15 @@ class AutonomousDatabase(pulumi.CustomResource):
5738
5740
  """
5739
5741
  return pulumi.get(self, "is_replicate_automatic_backups")
5740
5742
 
5743
+ @_builtins.property
5744
+ @pulumi.getter(name="isScheduleDbVersionUpgradeToEarliest")
5745
+ def is_schedule_db_version_upgrade_to_earliest(self) -> pulumi.Output[_builtins.bool]:
5746
+ return pulumi.get(self, "is_schedule_db_version_upgrade_to_earliest")
5747
+
5741
5748
  @_builtins.property
5742
5749
  @pulumi.getter(name="isShrinkOnly")
5743
5750
  @_utilities.deprecated("""The 'is_shrink_only' field has been deprecated. Please use 'shrink_adb_trigger' instead.""")
5744
5751
  def is_shrink_only(self) -> pulumi.Output[Optional[_builtins.bool]]:
5745
- """
5746
- (Updatable) An optional property when enabled triggers the Shrinking of Autonomous Database once. To trigger Shrinking of ADB once again, this flag needs to be disabled and re-enabled again. It should not be passed during create database operation. It is only applicable on Serverless databases i.e. where `is_dedicated` is false.
5747
-
5748
- ** IMPORTANT **
5749
- Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
5750
- """
5751
5752
  return pulumi.get(self, "is_shrink_only")
5752
5753
 
5753
5754
  @_builtins.property
@@ -5762,7 +5763,7 @@ class AutonomousDatabase(pulumi.CustomResource):
5762
5763
  @pulumi.getter(name="keyStoreId")
5763
5764
  def key_store_id(self) -> pulumi.Output[_builtins.str]:
5764
5765
  """
5765
- The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the key store of Oracle Vault. This is used in Autonomous Databases on Serverless instances and dedicated Exadata infrastructure.
5766
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the key store of Oracle Vault.
5766
5767
  """
5767
5768
  return pulumi.get(self, "key_store_id")
5768
5769
 
@@ -5777,9 +5778,6 @@ class AutonomousDatabase(pulumi.CustomResource):
5777
5778
  @_builtins.property
5778
5779
  @pulumi.getter(name="keyVersionId")
5779
5780
  def key_version_id(self) -> pulumi.Output[Optional[_builtins.str]]:
5780
- """
5781
- The OCID of the key version that is used in rotate key operations.
5782
- """
5783
5781
  return pulumi.get(self, "key_version_id")
5784
5782
 
5785
5783
  @_builtins.property
@@ -5810,7 +5808,9 @@ class AutonomousDatabase(pulumi.CustomResource):
5810
5808
  @pulumi.getter(name="licenseModel")
5811
5809
  def license_model(self) -> pulumi.Output[_builtins.str]:
5812
5810
  """
5813
- (Updatable) 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 PaaS and IaaS services in the cloud. License Included allows you to subscribe to new Oracle Database software licenses and the Database service. Note that when provisioning an Autonomous Database on [dedicated Exadata infrastructure](https://docs.cloud.oracle.com/iaas/Content/Database/Concepts/adbddoverview.htm), this attribute must be null because the attribute is already set at the Autonomous Exadata Infrastructure level. When using [shared Exadata infrastructure](https://docs.cloud.oracle.com/iaas/Content/Database/Concepts/adboverview.htm#AEI), if a value is not specified, the system will supply the value of `BRING_YOUR_OWN_LICENSE`. It is a required field when `db_workload` is AJD and needs to be set to `LICENSE_INCLUDED` as AJD does not support default `license_model` value `BRING_YOUR_OWN_LICENSE`.
5811
+ (Updatable) 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.
5812
+
5813
+ This cannot be updated in parallel with any of the following: cpuCoreCount, computeCount, dataStorageSizeInTBs, adminPassword, isMTLSConnectionRequired, dbWorkload, privateEndpointLabel, nsgIds, dbVersion, dbName, scheduledOperations, dbToolsDetails, or isFreeTier. It is a required field when `db_workload` is AJD and needs to be set to `LICENSE_INCLUDED` as AJD does not support default `license_model` value `BRING_YOUR_OWN_LICENSE`.
5814
5814
  """
5815
5815
  return pulumi.get(self, "license_model")
5816
5816
 
@@ -5865,16 +5865,13 @@ class AutonomousDatabase(pulumi.CustomResource):
5865
5865
  @_builtins.property
5866
5866
  @pulumi.getter(name="maxCpuCoreCount")
5867
5867
  def max_cpu_core_count(self) -> pulumi.Output[_builtins.int]:
5868
- """
5869
- (Updatable) **Deprecated.** The number of Max OCPU cores to be made available to the autonomous database with auto scaling of cpu enabled.
5870
- """
5871
5868
  return pulumi.get(self, "max_cpu_core_count")
5872
5869
 
5873
5870
  @_builtins.property
5874
5871
  @pulumi.getter(name="memoryPerOracleComputeUnitInGbs")
5875
5872
  def memory_per_oracle_compute_unit_in_gbs(self) -> pulumi.Output[_builtins.int]:
5876
5873
  """
5877
- 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. This parameter is not used for Autonomous database Serverless.
5874
+ The amount of memory (in GBs) enabled per ECPU or OCPU.
5878
5875
  """
5879
5876
  return pulumi.get(self, "memory_per_oracle_compute_unit_in_gbs")
5880
5877
 
@@ -5882,7 +5879,7 @@ class AutonomousDatabase(pulumi.CustomResource):
5882
5879
  @pulumi.getter(name="ncharacterSet")
5883
5880
  def ncharacter_set(self) -> pulumi.Output[_builtins.str]:
5884
5881
  """
5885
- The national character set for the autonomous database. The default is AL16UTF16. Allowed values are: AL16UTF16 or UTF8.
5882
+ The character set for the Autonomous Database. The default is AL32UTF8. Use [List Autonomous Database Character Sets](https://docs.oracle.com/iaas/autonomous-database-serverless/doc/autonomous-character-set-selection.html) to list the allowed values for an Autonomous Database Serverless instance. For an Autonomous Database on dedicated Exadata infrastructure, the allowed values are: AL16UTF16 or UTF8.
5886
5883
  """
5887
5884
  return pulumi.get(self, "ncharacter_set")
5888
5885
 
@@ -5917,13 +5914,12 @@ class AutonomousDatabase(pulumi.CustomResource):
5917
5914
  """
5918
5915
  (Updatable) The number of OCPU cores to be made available to the database.
5919
5916
 
5920
-
5921
- * Providing `computeModel` and `computeCount` is the preferred method for setting CPUs for both OCPU and ECPU.
5922
5917
  The following points apply:
5923
- * For Autonomous Databases on dedicated Exadata infrastructure, to provision less than 1 core, enter a fractional value in an increment of 0.1. For example, you can provision 0.3 or 0.4 cores, but not 0.35 cores. (Note that fractional OCPU values are not supported for Autonomous Databasese on shared Exadata infrastructure.)
5924
- * To provision 1 or more cores, you must enter an integer between 1 and the maximum number of cores available for the infrastructure shape. For example, you can provision 2 cores or 3 cores, but not 2.5 cores. This applies to Autonomous Databases on both shared and dedicated Exadata infrastructure.
5918
+ * For Autonomous Databases on Dedicated Exadata infrastructure, to provision less than 1 core, enter a fractional value in an increment of 0.1. For example, you can provision 0.3 or 0.4 cores, but not 0.35 cores. (Note that fractional OCPU values are not supported for Autonomous Database Serverless instances.)
5919
+ * To provision 1 or more cores, you must enter an integer between 1 and the maximum number of cores available for the infrastructure shape. For example, you can provision 2 cores or 3 cores, but not 2.5 cores. This applies to an Autonomous Database Serverless instance or an Autonomous Database on Dedicated Exadata Infrastructure.
5920
+ * For Autonomous Database Serverless instances, this parameter is not used.
5925
5921
 
5926
- For Autonomous Databases on dedicated Exadata infrastructure, the maximum number of cores is determined by the infrastructure shape. See [Characteristics of Infrastructure Shapes](https://www.oracle.com/pls/topic/lookup?ctx=en/cloud/paas/autonomous-database&id=ATPFG-GUID-B0F033C1-CC5A-42F0-B2E7-3CECFEDA1FD1) for shape details.
5922
+ For Autonomous Databases on Dedicated Exadata infrastructure, the maximum number of cores is determined by the infrastructure shape. See [Characteristics of Infrastructure Shapes](https://www.oracle.com/pls/topic/lookup?ctx=en/cloud/paas/autonomous-database&id=ATPFG-GUID-B0F033C1-CC5A-42F0-B2E7-3CECFEDA1FD1) for shape details.
5927
5923
 
5928
5924
  **Note:** This parameter cannot be used with the `cpuCoreCount` parameter.
5929
5925
  """
@@ -5933,7 +5929,9 @@ class AutonomousDatabase(pulumi.CustomResource):
5933
5929
  @pulumi.getter(name="openMode")
5934
5930
  def open_mode(self) -> pulumi.Output[_builtins.str]:
5935
5931
  """
5936
- Indicates the Autonomous Database mode. The database can be opened in `READ_ONLY` or `READ_WRITE` mode.
5932
+ (Updatable) Indicates the Autonomous Database mode. The database can be opened in `READ_ONLY` or `READ_WRITE` mode.
5933
+
5934
+ This cannot be updated in parallel with any of the following: cpuCoreCount, computeCount, computeModel, adminPassword, whitelistedIps, isMTLSConnectionRequired, dbVersion, isRefreshable, dbName, scheduledOperations, dbToolsDetails, or isFreeTier.
5937
5935
  """
5938
5936
  return pulumi.get(self, "open_mode")
5939
5937
 
@@ -5941,23 +5939,20 @@ class AutonomousDatabase(pulumi.CustomResource):
5941
5939
  @pulumi.getter(name="operationsInsightsStatus")
5942
5940
  def operations_insights_status(self) -> pulumi.Output[_builtins.str]:
5943
5941
  """
5944
- (Updatable) Status of Operations Insights for this Autonomous Database. Values supported are `ENABLED` and `NOT_ENABLED`
5942
+ Status of Operations Insights for this Autonomous Database.
5945
5943
  """
5946
5944
  return pulumi.get(self, "operations_insights_status")
5947
5945
 
5948
5946
  @_builtins.property
5949
5947
  @pulumi.getter(name="peerDbId")
5950
5948
  def peer_db_id(self) -> pulumi.Output[_builtins.str]:
5951
- """
5952
- 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.
5953
- """
5954
5949
  return pulumi.get(self, "peer_db_id")
5955
5950
 
5956
5951
  @_builtins.property
5957
5952
  @pulumi.getter(name="peerDbIds")
5958
5953
  def peer_db_ids(self) -> pulumi.Output[Sequence[_builtins.str]]:
5959
5954
  """
5960
- The list of [OCIDs](https://docs.cloud.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.
5955
+ 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.
5961
5956
  """
5962
5957
  return pulumi.get(self, "peer_db_ids")
5963
5958
 
@@ -5973,7 +5968,7 @@ class AutonomousDatabase(pulumi.CustomResource):
5973
5968
  @pulumi.getter(name="privateEndpoint")
5974
5969
  def private_endpoint(self) -> pulumi.Output[_builtins.str]:
5975
5970
  """
5976
- The private endpoint for the resource. This parameter is not used in Autonomous Databases using Serverless infrastructure and Exadata Cloud@Customer infrastructure.
5971
+ The private endpoint for the resource.
5977
5972
  """
5978
5973
  return pulumi.get(self, "private_endpoint")
5979
5974
 
@@ -5981,7 +5976,7 @@ class AutonomousDatabase(pulumi.CustomResource):
5981
5976
  @pulumi.getter(name="privateEndpointIp")
5982
5977
  def private_endpoint_ip(self) -> pulumi.Output[_builtins.str]:
5983
5978
  """
5984
- The private endpoint Ip address for the resource.
5979
+ (Updatable) The private endpoint Ip address for the resource.
5985
5980
  """
5986
5981
  return pulumi.get(self, "private_endpoint_ip")
5987
5982
 
@@ -5989,10 +5984,7 @@ class AutonomousDatabase(pulumi.CustomResource):
5989
5984
  @pulumi.getter(name="privateEndpointLabel")
5990
5985
  def private_endpoint_label(self) -> pulumi.Output[_builtins.str]:
5991
5986
  """
5992
- (Updatable) (Optional) (Updatable) The resource's private endpoint label.
5993
- * Setting the endpoint label to a non-empty string creates a private endpoint database.
5994
- * Resetting the endpoint label to an empty string, after the creation of the private endpoint database, changes the private endpoint database to a public endpoint database.
5995
- * Setting the endpoint label to a non-empty string value, updates to a new private endpoint database, when the database is disabled and re-enabled.
5987
+ (Updatable) The private endpoint label for the resource.
5996
5988
  """
5997
5989
  return pulumi.get(self, "private_endpoint_label")
5998
5990
 
@@ -6079,9 +6071,6 @@ class AutonomousDatabase(pulumi.CustomResource):
6079
6071
  @_builtins.property
6080
6072
  @pulumi.getter(name="rotateKeyTrigger")
6081
6073
  def rotate_key_trigger(self) -> pulumi.Output[Optional[_builtins.bool]]:
6082
- """
6083
- (Updatable) An optional property when flipped triggers rotation of KMS key. It is only applicable on dedicated databases i.e. where `is_dedicated` is true.
6084
- """
6085
6074
  return pulumi.get(self, "rotate_key_trigger")
6086
6075
 
6087
6076
  @_builtins.property
@@ -6137,15 +6126,9 @@ class AutonomousDatabase(pulumi.CustomResource):
6137
6126
  @pulumi.getter
6138
6127
  def source(self) -> pulumi.Output[_builtins.str]:
6139
6128
  """
6140
- The source of the database:
6141
- * Use `NONE` for creating a new Autonomous Database.
6142
- * Use `DATABASE` for creating a new Autonomous Database by cloning an existing running Autonomous Database from the latest timestamp, also provide the source database OCID in the `source_id` parameter.
6143
- * Use `CROSS_REGION_DATAGUARD` to create a standby Data Guard database in another region, also provide the remote primary database OCID in the `source_id` parameter.
6144
- * Use `CLONE_TO_REFRESHABLE` for creating a refreshable clone.
6129
+ The source of the database: Use `NONE` for creating a new Autonomous Database. Use `DATABASE` for creating a new Autonomous Database by cloning an existing Autonomous Database. Use `CROSS_REGION_DATAGUARD` to create a standby Data Guard database in another region.
6145
6130
 
6146
- For [Autonomous Database Serverless](https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html) instances, the following cloning options are available:
6147
- * Use `BACKUP_FROM_ID` for creating a new Autonomous Database by cloning from a specified backup. Also provide the backup OCID in the `autonomous_database_backup_id` parameter.
6148
- * Use `BACKUP_FROM_TIMESTAMP` for creating a point-in-time Autonomous Database clone using backups. Also provide the backup timestamp in the `timestamp` parameter. For more information, see [Cloning and Moving an Autonomous Database](https://docs.oracle.com/en/cloud/paas/autonomous-database/adbsa/clone-autonomous-database.html#GUID-D771796F-5081-4CFB-A7FF-0F893EABD7BC).
6131
+ For [Autonomous Database Serverless instances](https://docs.oracle.com/en/cloud/paas/autonomous-database/serverless/), the following cloning options are available: Use `BACKUP_FROM_ID` for creating a new Autonomous Database from a specified backup. Use `BACKUP_FROM_TIMESTAMP` for creating a point-in-time Autonomous Database clone using backups. For more information, see [Cloning and Moving an Autonomous Database](https://docs.oracle.com/en/cloud/paas/autonomous-database/adbsa/clone-autonomous-database.html#GUID-D771796F-5081-4CFB-A7FF-0F893EABD7BC).
6149
6132
  """
6150
6133
  return pulumi.get(self, "source")
6151
6134
 
@@ -6153,7 +6136,7 @@ class AutonomousDatabase(pulumi.CustomResource):
6153
6136
  @pulumi.getter(name="sourceId")
6154
6137
  def source_id(self) -> pulumi.Output[_builtins.str]:
6155
6138
  """
6156
- The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the source Autonomous Database that will be used to create a new standby database for the Data Guard association.
6139
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the source Autonomous Database that will be used to create a new peer database for the Data Guard association.
6157
6140
  """
6158
6141
  return pulumi.get(self, "source_id")
6159
6142
 
@@ -6171,12 +6154,10 @@ class AutonomousDatabase(pulumi.CustomResource):
6171
6154
  """
6172
6155
  (Updatable) 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`.
6173
6156
 
6174
- For Autonomous Database Serverless instances, this is an array of CIDR (Classless Inter-Domain Routing) notations for a subnet or VCN OCID. Use a semicolon (;) as a deliminator between the VCN-specific subnets or IPs. Example: `["1.1.1.1","1.1.1.0/24","ocid1.vcn.oc1.sea.<unique_id>","ocid1.vcn.oc1.sea.<unique_id1>;1.1.1.1","ocid1.vcn.oc1.sea.<unique_id2>;1.1.0.0/16"]` For Exadata Cloud@Customer, this is an array of IP addresses or CIDR (Classless Inter-Domain Routing) notations. Example: `["1.1.1.1","1.1.1.0/24","1.1.2.25"]`
6157
+ For Autonomous Database Serverless, this is an array of CIDR (classless inter-domain routing) notations for a subnet or VCN OCID (virtual cloud network Oracle Cloud ID). Multiple IPs and VCN OCIDs should be separate strings separated by commas, but if it’s other configurations that need multiple pieces of information then its each piece is connected with semicolon (;) as a delimiter. Example: `["1.1.1.1","1.1.1.0/24","ocid1.vcn.oc1.sea.<unique_id>","ocid1.vcn.oc1.sea.<unique_id1>;1.1.1.1","ocid1.vcn.oc1.sea.<unique_id2>;1.1.0.0/16"]` For Exadata Cloud@Customer, this is an array of IP addresses or CIDR notations. Example: `["1.1.1.1","1.1.1.0/24","1.1.2.25"]`
6175
6158
 
6176
6159
  For an update operation, if you want to delete all the IPs in the ACL, use an array with a single empty string entry.
6177
6160
 
6178
- If `arePrimaryWhitelistedIpsUsed` is 'TRUE' then Autonomous Database uses `whitelisted_ips` primary's IP access control list (ACL) as `standbywhitelistedips` for the disaster recovery peer.
6179
-
6180
6161
  This cannot be updated in parallel with any of the following: licenseModel, dbEdition, cpuCoreCount, computeCount, computeModel, adminPassword, isMTLSConnectionRequired, openMode, permissionLevel, dbWorkload, dbVersion, isRefreshable, dbName, scheduledOperations, dbToolsDetails, isLocalDataGuardEnabled, or isFreeTier.
6181
6162
  """
6182
6163
  return pulumi.get(self, "standby_whitelisted_ips")
@@ -6193,12 +6174,14 @@ class AutonomousDatabase(pulumi.CustomResource):
6193
6174
  @pulumi.getter(name="subnetId")
6194
6175
  def subnet_id(self) -> pulumi.Output[_builtins.str]:
6195
6176
  """
6196
- (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet the resource is associated with. This the only parameter to configure private endpoint, VCN details are obtained from the `subnet_id`.
6177
+ (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet the resource is associated with.
6197
6178
 
6198
6179
  **Subnet Restrictions:**
6199
6180
  * For bare metal DB systems and for single node virtual machine DB systems, do not use a subnet that overlaps with 192.168.16.16/28.
6200
6181
  * For Exadata and virtual machine 2-node RAC systems, do not use a subnet that overlaps with 192.168.128.0/20.
6201
6182
  * For Autonomous Database, setting this will disable public secure access to the database.
6183
+
6184
+ 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.
6202
6185
  """
6203
6186
  return pulumi.get(self, "subnet_id")
6204
6187
 
@@ -6207,7 +6190,6 @@ class AutonomousDatabase(pulumi.CustomResource):
6207
6190
  def subscription_id(self) -> pulumi.Output[_builtins.str]:
6208
6191
  """
6209
6192
  The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subscription with which resource needs to be associated with.
6210
- 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.
6211
6193
  """
6212
6194
  return pulumi.get(self, "subscription_id")
6213
6195
 
@@ -6222,17 +6204,11 @@ class AutonomousDatabase(pulumi.CustomResource):
6222
6204
  @_builtins.property
6223
6205
  @pulumi.getter(name="switchoverTo")
6224
6206
  def switchover_to(self) -> pulumi.Output[Optional[_builtins.str]]:
6225
- """
6226
- It is applicable only when `is_local_data_guard_enabled` is true. Could be set to `PRIMARY` or `STANDBY`. Default value is `PRIMARY`.
6227
- """
6228
6207
  return pulumi.get(self, "switchover_to")
6229
6208
 
6230
6209
  @_builtins.property
6231
6210
  @pulumi.getter(name="switchoverToRemotePeerId")
6232
6211
  def switchover_to_remote_peer_id(self) -> pulumi.Output[Optional[_builtins.str]]:
6233
- """
6234
- (Updatable) It is applicable only when `dataguard_region_type` and `role` are set, and `is_dedicated` is false. For Autonomous Database Serverless instances, Data Guard associations have designated primary and standby regions, and these region types do not change when the database changes roles. It takes the [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the remote peer to switchover to and the API is called from the remote region.
6235
- """
6236
6212
  return pulumi.get(self, "switchover_to_remote_peer_id")
6237
6213
 
6238
6214
  @_builtins.property
@@ -6275,6 +6251,22 @@ class AutonomousDatabase(pulumi.CustomResource):
6275
6251
  """
6276
6252
  return pulumi.get(self, "time_disaster_recovery_role_changed")
6277
6253
 
6254
+ @_builtins.property
6255
+ @pulumi.getter(name="timeEarliestAvailableDbVersionUpgrade")
6256
+ def time_earliest_available_db_version_upgrade(self) -> pulumi.Output[_builtins.str]:
6257
+ """
6258
+ The earliest(min) date and time the Autonomous Database can be scheduled to upgrade to 23ai.
6259
+ """
6260
+ return pulumi.get(self, "time_earliest_available_db_version_upgrade")
6261
+
6262
+ @_builtins.property
6263
+ @pulumi.getter(name="timeLatestAvailableDbVersionUpgrade")
6264
+ def time_latest_available_db_version_upgrade(self) -> pulumi.Output[_builtins.str]:
6265
+ """
6266
+ The max date and time the Autonomous Database can be scheduled to upgrade to 23ai.
6267
+ """
6268
+ return pulumi.get(self, "time_latest_available_db_version_upgrade")
6269
+
6278
6270
  @_builtins.property
6279
6271
  @pulumi.getter(name="timeLocalDataGuardEnabled")
6280
6272
  def time_local_data_guard_enabled(self) -> pulumi.Output[_builtins.str]:
@@ -6303,13 +6295,16 @@ class AutonomousDatabase(pulumi.CustomResource):
6303
6295
  @pulumi.getter(name="timeOfAutoRefreshStart")
6304
6296
  def time_of_auto_refresh_start(self) -> pulumi.Output[_builtins.str]:
6305
6297
  """
6306
- 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.
6298
+ (Updatable) 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.
6307
6299
  """
6308
6300
  return pulumi.get(self, "time_of_auto_refresh_start")
6309
6301
 
6310
6302
  @_builtins.property
6311
6303
  @pulumi.getter(name="timeOfJoiningResourcePool")
6312
6304
  def time_of_joining_resource_pool(self) -> pulumi.Output[_builtins.str]:
6305
+ """
6306
+ The time the member joined the resource pool.
6307
+ """
6313
6308
  return pulumi.get(self, "time_of_joining_resource_pool")
6314
6309
 
6315
6310
  @_builtins.property
@@ -6360,9 +6355,20 @@ class AutonomousDatabase(pulumi.CustomResource):
6360
6355
  """
6361
6356
  return pulumi.get(self, "time_reclamation_of_free_autonomous_database")
6362
6357
 
6358
+ @_builtins.property
6359
+ @pulumi.getter(name="timeScheduledDbVersionUpgrade")
6360
+ def time_scheduled_db_version_upgrade(self) -> pulumi.Output[_builtins.str]:
6361
+ """
6362
+ The date and time the Autonomous Database scheduled to upgrade to 23ai. Send this value along with the target db_version value to schedule the database version upgrade. After the upgrade is scheduled and before the scheduled upgrade time arrives, please keep the db_version value the same as the backend's current db_version.
6363
+ """
6364
+ return pulumi.get(self, "time_scheduled_db_version_upgrade")
6365
+
6363
6366
  @_builtins.property
6364
6367
  @pulumi.getter(name="timeUndeleted")
6365
6368
  def time_undeleted(self) -> pulumi.Output[_builtins.str]:
6369
+ """
6370
+ The date and time the Autonomous Database was most recently undeleted.
6371
+ """
6366
6372
  return pulumi.get(self, "time_undeleted")
6367
6373
 
6368
6374
  @_builtins.property
@@ -6417,7 +6423,7 @@ class AutonomousDatabase(pulumi.CustomResource):
6417
6423
  @pulumi.getter(name="vaultId")
6418
6424
  def vault_id(self) -> pulumi.Output[_builtins.str]:
6419
6425
  """
6420
- 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).
6426
+ 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.
6421
6427
  """
6422
6428
  return pulumi.get(self, "vault_id")
6423
6429
 
@@ -6425,13 +6431,17 @@ class AutonomousDatabase(pulumi.CustomResource):
6425
6431
  @pulumi.getter(name="whitelistedIps")
6426
6432
  def whitelisted_ips(self) -> pulumi.Output[Optional[Sequence[_builtins.str]]]:
6427
6433
  """
6428
- (Updatable) The client IP access control list (ACL). This feature is available for autonomous databases on [shared Exadata infrastructure](https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html) and on Exadata Cloud@Customer. Only clients connecting from an IP address included in the ACL may access the Autonomous Database instance.
6434
+ (Updatable) 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`.
6429
6435
 
6430
- For Autonomous Database Serverless instances, this is an array of CIDR (Classless Inter-Domain Routing) notations for a subnet or VCN OCID. Use a semicolon (;) as a deliminator between the VCN-specific subnets or IPs. Example: `["1.1.1.1","1.1.1.0/24","ocid1.vcn.oc1.sea.<unique_id>","ocid1.vcn.oc1.sea.<unique_id1>;1.1.1.1","ocid1.vcn.oc1.sea.<unique_id2>;1.1.0.0/16"]` For Exadata Cloud@Customer, this is an array of IP addresses or CIDR (Classless Inter-Domain Routing) notations. Example: `["1.1.1.1","1.1.1.0/24","1.1.2.25"]`
6436
+ For Autonomous Database Serverless, this is an array of CIDR (classless inter-domain routing) notations for a subnet or VCN OCID (virtual cloud network Oracle Cloud ID). Multiple IPs and VCN OCIDs should be separate strings separated by commas, but if it’s other configurations that need multiple pieces of information then its each piece is connected with semicolon (;) as a delimiter. Example: `["1.1.1.1","1.1.1.0/24","ocid1.vcn.oc1.sea.<unique_id>","ocid1.vcn.oc1.sea.<unique_id1>;1.1.1.1","ocid1.vcn.oc1.sea.<unique_id2>;1.1.0.0/16"]` For Exadata Cloud@Customer, this is an array of IP addresses or CIDR notations. Example: `["1.1.1.1","1.1.1.0/24","1.1.2.25"]`
6431
6437
 
6432
6438
  For an update operation, if you want to delete all the IPs in the ACL, use an array with a single empty string entry.
6433
6439
 
6434
6440
  This cannot be updated in parallel with any of the following: licenseModel, dbEdition, cpuCoreCount, computeCount, computeModel, adminPassword, isMTLSConnectionRequired, openMode, permissionLevel, dbWorkload, dbVersion, isRefreshable, dbName, scheduledOperations, dbToolsDetails, isLocalDataGuardEnabled, or isFreeTier. To remove all whitelisted IPs, set the field to a list with an empty string `[""]`.
6441
+
6442
+
6443
+ ** IMPORTANT **
6444
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
6435
6445
  """
6436
6446
  return pulumi.get(self, "whitelisted_ips")
6437
6447