pulumi-oci 1.28.0a1711030900__py3-none-any.whl → 1.29.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (53) hide show
  1. pulumi_oci/__init__.py +16 -0
  2. pulumi_oci/apmtraces/get_query_quick_picks.py +2 -2
  3. pulumi_oci/apmtraces/get_trace.py +69 -5
  4. pulumi_oci/apmtraces/get_trace_aggregated_snapshot_data.py +73 -5
  5. pulumi_oci/apmtraces/get_trace_snapshot_data.py +6 -6
  6. pulumi_oci/apmtraces/outputs.py +22 -0
  7. pulumi_oci/database/_inputs.py +4 -4
  8. pulumi_oci/database/autonomous_database.py +425 -179
  9. pulumi_oci/database/get_autonomous_database.py +41 -2
  10. pulumi_oci/database/get_autonomous_databases.py +1 -1
  11. pulumi_oci/database/outputs.py +72 -6
  12. pulumi_oci/databasemanagement/get_managed_my_sql_database.py +111 -6
  13. pulumi_oci/databasemanagement/get_managed_my_sql_database_sql_data.py +32 -4
  14. pulumi_oci/databasemanagement/outputs.py +267 -75
  15. pulumi_oci/dataintegration/__init__.py +3 -0
  16. pulumi_oci/dataintegration/_inputs.py +4504 -0
  17. pulumi_oci/dataintegration/get_workspace_task.py +443 -0
  18. pulumi_oci/dataintegration/get_workspace_tasks.py +254 -0
  19. pulumi_oci/dataintegration/outputs.py +16511 -4723
  20. pulumi_oci/dataintegration/workspace_task.py +1364 -0
  21. pulumi_oci/devops/_inputs.py +18 -2
  22. pulumi_oci/devops/deploy_artifact.py +2 -0
  23. pulumi_oci/devops/deploy_stage.py +141 -0
  24. pulumi_oci/devops/get_deploy_stage.py +40 -1
  25. pulumi_oci/devops/outputs.py +75 -6
  26. pulumi_oci/integration/__init__.py +1 -0
  27. pulumi_oci/integration/_inputs.py +58 -0
  28. pulumi_oci/integration/get_integration_instance.py +15 -1
  29. pulumi_oci/integration/integration_instance.py +42 -0
  30. pulumi_oci/integration/outputs.py +170 -4
  31. pulumi_oci/integration/private_endpoint_outbound_connection.py +234 -0
  32. pulumi_oci/logging/_inputs.py +2751 -187
  33. pulumi_oci/logging/outputs.py +4981 -768
  34. pulumi_oci/logging/unified_agent_configuration.py +34 -208
  35. pulumi_oci/monitoring/_inputs.py +136 -0
  36. pulumi_oci/monitoring/alarm.py +173 -0
  37. pulumi_oci/monitoring/get_alarm.py +40 -1
  38. pulumi_oci/monitoring/get_alarm_history_collection.py +2 -2
  39. pulumi_oci/monitoring/outputs.py +305 -0
  40. pulumi_oci/networkloadbalancer/_inputs.py +20 -20
  41. pulumi_oci/networkloadbalancer/backend.py +7 -7
  42. pulumi_oci/networkloadbalancer/backend_set.py +11 -11
  43. pulumi_oci/networkloadbalancer/get_backend_set.py +1 -1
  44. pulumi_oci/networkloadbalancer/get_listener.py +1 -1
  45. pulumi_oci/networkloadbalancer/get_network_load_balancer.py +14 -1
  46. pulumi_oci/networkloadbalancer/listener.py +7 -7
  47. pulumi_oci/networkloadbalancer/network_load_balancer.py +56 -7
  48. pulumi_oci/networkloadbalancer/network_load_balancers_backend_sets_unified.py +7 -7
  49. pulumi_oci/networkloadbalancer/outputs.py +41 -34
  50. {pulumi_oci-1.28.0a1711030900.dist-info → pulumi_oci-1.29.0.dist-info}/METADATA +1 -1
  51. {pulumi_oci-1.28.0a1711030900.dist-info → pulumi_oci-1.29.0.dist-info}/RECORD +53 -49
  52. {pulumi_oci-1.28.0a1711030900.dist-info → pulumi_oci-1.29.0.dist-info}/WHEEL +0 -0
  53. {pulumi_oci-1.28.0a1711030900.dist-info → pulumi_oci-1.29.0.dist-info}/top_level.txt +0 -0
@@ -20,6 +20,8 @@ class AutonomousDatabaseArgs:
20
20
  db_name: pulumi.Input[str],
21
21
  admin_password: Optional[pulumi.Input[str]] = None,
22
22
  are_primary_whitelisted_ips_used: Optional[pulumi.Input[bool]] = None,
23
+ auto_refresh_frequency_in_seconds: Optional[pulumi.Input[int]] = None,
24
+ auto_refresh_point_lag_in_seconds: Optional[pulumi.Input[int]] = None,
23
25
  autonomous_container_database_id: Optional[pulumi.Input[str]] = None,
24
26
  autonomous_database_backup_id: Optional[pulumi.Input[str]] = None,
25
27
  autonomous_database_id: Optional[pulumi.Input[str]] = None,
@@ -85,6 +87,7 @@ class AutonomousDatabaseArgs:
85
87
  subnet_id: Optional[pulumi.Input[str]] = None,
86
88
  switchover_to: Optional[pulumi.Input[str]] = None,
87
89
  switchover_to_remote_peer_id: Optional[pulumi.Input[str]] = None,
90
+ time_of_auto_refresh_start: Optional[pulumi.Input[str]] = None,
88
91
  timestamp: Optional[pulumi.Input[str]] = None,
89
92
  use_latest_available_backup_time_stamp: Optional[pulumi.Input[bool]] = None,
90
93
  vault_id: Optional[pulumi.Input[str]] = None,
@@ -93,24 +96,31 @@ class AutonomousDatabaseArgs:
93
96
  The set of arguments for constructing a AutonomousDatabase resource.
94
97
  :param pulumi.Input[str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment of the Autonomous Database.
95
98
  :param pulumi.Input[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.
96
- :param pulumi.Input[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" and for new, full and metadata clone databases. This parameter is optional only if you are cloning or using a secret for the password. Not allowed for ADG and refreshable clones.
99
+ :param pulumi.Input[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".
97
100
  :param pulumi.Input[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.
98
- :param pulumi.Input[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.
101
+ :param pulumi.Input[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.
102
+ :param pulumi.Input[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.
103
+ :param pulumi.Input[str] autonomous_container_database_id: The Autonomous Container Database [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
99
104
  :param pulumi.Input[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.
100
105
  :param pulumi.Input[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.
101
- :param pulumi.Input[str] autonomous_maintenance_schedule_type: The maintenance schedule type of the Autonomous Database on shared Exadata infrastructure. 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.
106
+ :param pulumi.Input[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.
102
107
  :param pulumi.Input[int] backup_retention_period_in_days: (Updatable) Retention period, in days, for backups.
103
- :param pulumi.Input[str] character_set: The character set for the autonomous database. The default is AL32UTF8. Allowed values for an Autonomous Database on shared infrastructure as as returned by [List Autonomous Database Character Sets](https://www.terraform.io/autonomousDatabaseCharacterSets)
108
+ :param pulumi.Input[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)
104
109
 
105
110
  For an Autonomous Database on dedicated infrastructure, the allowed values are:
106
111
 
107
112
  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
108
- :param pulumi.Input[str] clone_type: The Autonomous Database clone type.
113
+ :param pulumi.Input[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.
109
114
  :param pulumi.Input[float] compute_count: (Updatable) Compute used by database tools.
110
115
  :param pulumi.Input[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.
111
116
  :param pulumi.Input[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.
112
-
113
117
  **Note:** This parameter cannot be used with the `ocpuCount` parameter. This input is ignored for Always Free resources.
118
+ * The data type must be an *integer*.
119
+ * The minimum number of cores for all types of autonomous database is *1*
120
+ * The maximum number of cores is as follows:
121
+ * Autonomous Database Serverless instances: The maximum number of cores is *128*.
122
+ * 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.
123
+ * Providing `computeModel` and `computeCount` is the preferred method for setting CPUs for both OCPU and ECPU.
114
124
  :param pulumi.Input[Sequence[pulumi.Input['AutonomousDatabaseCustomerContactArgs']]] customer_contacts: (Updatable) Customer Contacts.
115
125
  :param pulumi.Input[str] data_safe_status: (Updatable) Status of the Data Safe registration for this Autonomous Database. Could be REGISTERED or NOT_REGISTERED.
116
126
  :param pulumi.Input[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.
@@ -121,7 +131,7 @@ class AutonomousDatabaseArgs:
121
131
  :param pulumi.Input[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).
122
132
 
123
133
  **Note:** This parameter cannot be used with the `dataStorageSizeInGBs` parameter. This input is ignored for Always Free resources.
124
- :param pulumi.Input[str] database_edition: (Updatable) The Oracle Database Edition that applies to the Autonomous databases.
134
+ :param pulumi.Input[str] database_edition: (Updatable) The Oracle Database Edition that applies to the Autonomous databases. It can be set to `ENTERPRISE_EDITION` or `STANDARD_EDITION`.
125
135
  :param pulumi.Input[str] database_management_status: Status of Database Management for this Autonomous Database.
126
136
  :param pulumi.Input[Sequence[pulumi.Input['AutonomousDatabaseDbToolsDetailArgs']]] db_tools_details: (Updatable) The list of database tools details.
127
137
 
@@ -149,10 +159,10 @@ class AutonomousDatabaseArgs:
149
159
  :param pulumi.Input[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`.
150
160
  :param pulumi.Input[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.
151
161
  :param pulumi.Input[bool] is_mtls_connection_required: (Updatable) Indicates whether the Autonomous Database requires mTLS connections.
152
- :param pulumi.Input[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 [shared Exadata infrastructure](https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html).
162
+ :param pulumi.Input[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).
153
163
  :param pulumi.Input[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.
154
164
  :param pulumi.Input[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.
155
- :param pulumi.Input[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 shared databases i.e. where `is_dedicated` is false.
165
+ :param pulumi.Input[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.
156
166
 
157
167
  ** IMPORTANT **
158
168
  Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
@@ -160,7 +170,7 @@ class AutonomousDatabaseArgs:
160
170
  :param pulumi.Input[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`.
161
171
  :param pulumi.Input[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
162
172
  :param pulumi.Input[Sequence[pulumi.Input['AutonomousDatabaseLongTermBackupScheduleArgs']]] long_term_backup_schedules: Details for the long-term backup schedule.
163
- :param pulumi.Input[int] max_cpu_core_count: (Updatable) The number of Max OCPU cores to be made available to the autonomous database with auto scaling of cpu enabled.
173
+ :param pulumi.Input[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.
164
174
  :param pulumi.Input[str] ncharacter_set: The national character set for the autonomous database. The default is AL16UTF16. Allowed values are: AL16UTF16 or UTF8.
165
175
  :param pulumi.Input[Sequence[pulumi.Input[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:**
166
176
  * A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
@@ -170,6 +180,7 @@ class AutonomousDatabaseArgs:
170
180
  * 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.)
171
181
  * 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.
172
182
  * For Autonomous Database Serverless instances, this parameter is not used.
183
+ * Providing `computeModel` and `computeCount` is the preferred method for setting CPUs for both OCPU and ECPU.
173
184
 
174
185
  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.
175
186
 
@@ -178,7 +189,10 @@ class AutonomousDatabaseArgs:
178
189
  :param pulumi.Input[str] operations_insights_status: (Updatable) Status of Operations Insights for this Autonomous Database. Values supported are `ENABLED` and `NOT_ENABLED`
179
190
  :param pulumi.Input[str] permission_level: The Autonomous Database permission level. Restricted mode allows access only by admin users.
180
191
  :param pulumi.Input[str] private_endpoint_ip: The private endpoint Ip address for the resource.
181
- :param pulumi.Input[str] private_endpoint_label: (Updatable) The private endpoint label for the resource.
192
+ :param pulumi.Input[str] private_endpoint_label: (Updatable) (Optional) (Updatable) The resource's private endpoint label.
193
+ * Setting the endpoint label to a non-empty string creates a private endpoint database.
194
+ * 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.
195
+ * 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.
182
196
  :param pulumi.Input[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.
183
197
  :param pulumi.Input[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.
184
198
  :param pulumi.Input[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).
@@ -191,19 +205,27 @@ class AutonomousDatabaseArgs:
191
205
 
192
206
  This cannot be used in conjunction with adminPassword.
193
207
  :param pulumi.Input[int] secret_version_number: (Updatable) The version of the vault secret. If no version is specified, the latest version will be used.
194
- :param pulumi.Input[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.
208
+ :param pulumi.Input[str] source: The source of the database:
209
+ * Use `NONE` for creating a new Autonomous Database.
210
+ * 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.
211
+ * 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.
212
+ * Use `CLONE_TO_REFRESHABLE` for creating a refreshable clone.
195
213
 
196
- For Autonomous Databases on [shared Exadata infrastructure](https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html), 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).
214
+ For [Autonomous Database Serverless](https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html) instances, the following cloning options are available:
215
+ * 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.
216
+ * 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).
197
217
  :param pulumi.Input[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.
198
218
  :param pulumi.Input[Sequence[pulumi.Input[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`.
199
219
 
200
- For shared Exadata infrastructure, 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"]`
220
+ 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"]`
201
221
 
202
222
  For an update operation, if you want to delete all the IPs in the ACL, use an array with a single empty string entry.
203
223
 
224
+ If `arePrimaryWhitelistedIpsUsed` is 'TRUE' then Autonomous Database uses `whitelisted_ips` primary's IP access control list (ACL) as `standbywhitelistedips` for the disaster recovery peer.
225
+
204
226
  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.
205
227
  :param pulumi.Input[str] state: The current state of the Autonomous Database.
206
- :param pulumi.Input[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.
228
+ :param pulumi.Input[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`.
207
229
 
208
230
  **Subnet Restrictions:**
209
231
  * 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.
@@ -211,20 +233,19 @@ class AutonomousDatabaseArgs:
211
233
  * For Autonomous Database, setting this will disable public secure access to the database.
212
234
 
213
235
  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.
214
- :param pulumi.Input[str] switchover_to: It is applicable only when `is_data_guard_enabled` is true. Could be set to `PRIMARY` or `STANDBY`. Default value is `PRIMARY`.
215
- :param pulumi.Input[str] switchover_to_remote_peer_id: (Updatable) It is applicable only when `role` is set, and `is_dedicated` is false. It takes the [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the remote peer to switchover to.
236
+ :param pulumi.Input[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`.
237
+ :param pulumi.Input[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.
238
+ :param pulumi.Input[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.
216
239
  :param pulumi.Input[str] timestamp: The timestamp specified for the point-in-time clone of the source Autonomous Database. The timestamp must be in the past.
217
240
  :param pulumi.Input[bool] use_latest_available_backup_time_stamp: Clone from latest available backup timestamp.
218
- :param pulumi.Input[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).
241
+ :param pulumi.Input[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.
219
242
  :param pulumi.Input[Sequence[pulumi.Input[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`.
220
243
 
221
- For shared Exadata infrastructure, 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"]`
244
+ 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"]`
222
245
 
223
246
  For an update operation, if you want to delete all the IPs in the ACL, use an array with a single empty string entry.
224
247
 
225
248
  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 `[""]`.
226
-
227
- 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 `[""]`.
228
249
  """
229
250
  pulumi.set(__self__, "compartment_id", compartment_id)
230
251
  pulumi.set(__self__, "db_name", db_name)
@@ -232,6 +253,10 @@ class AutonomousDatabaseArgs:
232
253
  pulumi.set(__self__, "admin_password", admin_password)
233
254
  if are_primary_whitelisted_ips_used is not None:
234
255
  pulumi.set(__self__, "are_primary_whitelisted_ips_used", are_primary_whitelisted_ips_used)
256
+ if auto_refresh_frequency_in_seconds is not None:
257
+ pulumi.set(__self__, "auto_refresh_frequency_in_seconds", auto_refresh_frequency_in_seconds)
258
+ if auto_refresh_point_lag_in_seconds is not None:
259
+ pulumi.set(__self__, "auto_refresh_point_lag_in_seconds", auto_refresh_point_lag_in_seconds)
235
260
  if autonomous_container_database_id is not None:
236
261
  pulumi.set(__self__, "autonomous_container_database_id", autonomous_container_database_id)
237
262
  if autonomous_database_backup_id is not None:
@@ -365,6 +390,8 @@ class AutonomousDatabaseArgs:
365
390
  pulumi.set(__self__, "switchover_to", switchover_to)
366
391
  if switchover_to_remote_peer_id is not None:
367
392
  pulumi.set(__self__, "switchover_to_remote_peer_id", switchover_to_remote_peer_id)
393
+ if time_of_auto_refresh_start is not None:
394
+ pulumi.set(__self__, "time_of_auto_refresh_start", time_of_auto_refresh_start)
368
395
  if timestamp is not None:
369
396
  pulumi.set(__self__, "timestamp", timestamp)
370
397
  if use_latest_available_backup_time_stamp is not None:
@@ -402,7 +429,7 @@ class AutonomousDatabaseArgs:
402
429
  @pulumi.getter(name="adminPassword")
403
430
  def admin_password(self) -> Optional[pulumi.Input[str]]:
404
431
  """
405
- (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" and for new, full and metadata clone databases. This parameter is optional only if you are cloning or using a secret for the password. Not allowed for ADG and refreshable clones.
432
+ (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".
406
433
  """
407
434
  return pulumi.get(self, "admin_password")
408
435
 
@@ -422,11 +449,35 @@ class AutonomousDatabaseArgs:
422
449
  def are_primary_whitelisted_ips_used(self, value: Optional[pulumi.Input[bool]]):
423
450
  pulumi.set(self, "are_primary_whitelisted_ips_used", value)
424
451
 
452
+ @property
453
+ @pulumi.getter(name="autoRefreshFrequencyInSeconds")
454
+ def auto_refresh_frequency_in_seconds(self) -> Optional[pulumi.Input[int]]:
455
+ """
456
+ (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.
457
+ """
458
+ return pulumi.get(self, "auto_refresh_frequency_in_seconds")
459
+
460
+ @auto_refresh_frequency_in_seconds.setter
461
+ def auto_refresh_frequency_in_seconds(self, value: Optional[pulumi.Input[int]]):
462
+ pulumi.set(self, "auto_refresh_frequency_in_seconds", value)
463
+
464
+ @property
465
+ @pulumi.getter(name="autoRefreshPointLagInSeconds")
466
+ def auto_refresh_point_lag_in_seconds(self) -> Optional[pulumi.Input[int]]:
467
+ """
468
+ (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.
469
+ """
470
+ return pulumi.get(self, "auto_refresh_point_lag_in_seconds")
471
+
472
+ @auto_refresh_point_lag_in_seconds.setter
473
+ def auto_refresh_point_lag_in_seconds(self, value: Optional[pulumi.Input[int]]):
474
+ pulumi.set(self, "auto_refresh_point_lag_in_seconds", value)
475
+
425
476
  @property
426
477
  @pulumi.getter(name="autonomousContainerDatabaseId")
427
478
  def autonomous_container_database_id(self) -> Optional[pulumi.Input[str]]:
428
479
  """
429
- 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.
480
+ The Autonomous Container Database [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
430
481
  """
431
482
  return pulumi.get(self, "autonomous_container_database_id")
432
483
 
@@ -462,7 +513,7 @@ class AutonomousDatabaseArgs:
462
513
  @pulumi.getter(name="autonomousMaintenanceScheduleType")
463
514
  def autonomous_maintenance_schedule_type(self) -> Optional[pulumi.Input[str]]:
464
515
  """
465
- The maintenance schedule type of the Autonomous Database on shared Exadata infrastructure. 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.
516
+ 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.
466
517
  """
467
518
  return pulumi.get(self, "autonomous_maintenance_schedule_type")
468
519
 
@@ -486,7 +537,7 @@ class AutonomousDatabaseArgs:
486
537
  @pulumi.getter(name="characterSet")
487
538
  def character_set(self) -> Optional[pulumi.Input[str]]:
488
539
  """
489
- The character set for the autonomous database. The default is AL32UTF8. Allowed values for an Autonomous Database on shared infrastructure as as returned by [List Autonomous Database Character Sets](https://www.terraform.io/autonomousDatabaseCharacterSets)
540
+ 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)
490
541
 
491
542
  For an Autonomous Database on dedicated infrastructure, the allowed values are:
492
543
 
@@ -502,7 +553,7 @@ class AutonomousDatabaseArgs:
502
553
  @pulumi.getter(name="cloneType")
503
554
  def clone_type(self) -> Optional[pulumi.Input[str]]:
504
555
  """
505
- The Autonomous Database clone type.
556
+ 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.
506
557
  """
507
558
  return pulumi.get(self, "clone_type")
508
559
 
@@ -539,8 +590,13 @@ class AutonomousDatabaseArgs:
539
590
  def cpu_core_count(self) -> Optional[pulumi.Input[int]]:
540
591
  """
541
592
  (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.
542
-
543
593
  **Note:** This parameter cannot be used with the `ocpuCount` parameter. This input is ignored for Always Free resources.
594
+ * The data type must be an *integer*.
595
+ * The minimum number of cores for all types of autonomous database is *1*
596
+ * The maximum number of cores is as follows:
597
+ * Autonomous Database Serverless instances: The maximum number of cores is *128*.
598
+ * 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.
599
+ * Providing `computeModel` and `computeCount` is the preferred method for setting CPUs for both OCPU and ECPU.
544
600
  """
545
601
  return pulumi.get(self, "cpu_core_count")
546
602
 
@@ -606,7 +662,7 @@ class AutonomousDatabaseArgs:
606
662
  @pulumi.getter(name="databaseEdition")
607
663
  def database_edition(self) -> Optional[pulumi.Input[str]]:
608
664
  """
609
- (Updatable) The Oracle Database Edition that applies to the Autonomous databases.
665
+ (Updatable) The Oracle Database Edition that applies to the Autonomous databases. It can be set to `ENTERPRISE_EDITION` or `STANDARD_EDITION`.
610
666
  """
611
667
  return pulumi.get(self, "database_edition")
612
668
 
@@ -832,7 +888,7 @@ class AutonomousDatabaseArgs:
832
888
  @pulumi.getter(name="isPreviewVersionWithServiceTermsAccepted")
833
889
  def is_preview_version_with_service_terms_accepted(self) -> Optional[pulumi.Input[bool]]:
834
890
  """
835
- 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 [shared Exadata infrastructure](https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html).
891
+ 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).
836
892
  """
837
893
  return pulumi.get(self, "is_preview_version_with_service_terms_accepted")
838
894
 
@@ -868,7 +924,7 @@ class AutonomousDatabaseArgs:
868
924
  @pulumi.getter(name="isShrinkOnly")
869
925
  def is_shrink_only(self) -> Optional[pulumi.Input[bool]]:
870
926
  """
871
- (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 shared databases i.e. where `is_dedicated` is false.
927
+ (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.
872
928
 
873
929
  ** IMPORTANT **
874
930
  Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
@@ -934,7 +990,7 @@ class AutonomousDatabaseArgs:
934
990
  @pulumi.getter(name="maxCpuCoreCount")
935
991
  def max_cpu_core_count(self) -> Optional[pulumi.Input[int]]:
936
992
  """
937
- (Updatable) The number of Max OCPU cores to be made available to the autonomous database with auto scaling of cpu enabled.
993
+ (Updatable) **Deprecated.** The number of Max OCPU cores to be made available to the autonomous database with auto scaling of cpu enabled.
938
994
  """
939
995
  return pulumi.get(self, "max_cpu_core_count")
940
996
 
@@ -977,6 +1033,7 @@ class AutonomousDatabaseArgs:
977
1033
  * 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.)
978
1034
  * 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.
979
1035
  * For Autonomous Database Serverless instances, this parameter is not used.
1036
+ * Providing `computeModel` and `computeCount` is the preferred method for setting CPUs for both OCPU and ECPU.
980
1037
 
981
1038
  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.
982
1039
 
@@ -1040,7 +1097,10 @@ class AutonomousDatabaseArgs:
1040
1097
  @pulumi.getter(name="privateEndpointLabel")
1041
1098
  def private_endpoint_label(self) -> Optional[pulumi.Input[str]]:
1042
1099
  """
1043
- (Updatable) The private endpoint label for the resource.
1100
+ (Updatable) (Optional) (Updatable) The resource's private endpoint label.
1101
+ * Setting the endpoint label to a non-empty string creates a private endpoint database.
1102
+ * 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.
1103
+ * 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.
1044
1104
  """
1045
1105
  return pulumi.get(self, "private_endpoint_label")
1046
1106
 
@@ -1161,9 +1221,15 @@ class AutonomousDatabaseArgs:
1161
1221
  @pulumi.getter
1162
1222
  def source(self) -> Optional[pulumi.Input[str]]:
1163
1223
  """
1164
- 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.
1224
+ The source of the database:
1225
+ * Use `NONE` for creating a new Autonomous Database.
1226
+ * 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.
1227
+ * 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.
1228
+ * Use `CLONE_TO_REFRESHABLE` for creating a refreshable clone.
1165
1229
 
1166
- For Autonomous Databases on [shared Exadata infrastructure](https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html), 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).
1230
+ For [Autonomous Database Serverless](https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html) instances, the following cloning options are available:
1231
+ * 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.
1232
+ * 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).
1167
1233
  """
1168
1234
  return pulumi.get(self, "source")
1169
1235
 
@@ -1189,10 +1255,12 @@ class AutonomousDatabaseArgs:
1189
1255
  """
1190
1256
  (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`.
1191
1257
 
1192
- For shared Exadata infrastructure, 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"]`
1258
+ 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"]`
1193
1259
 
1194
1260
  For an update operation, if you want to delete all the IPs in the ACL, use an array with a single empty string entry.
1195
1261
 
1262
+ If `arePrimaryWhitelistedIpsUsed` is 'TRUE' then Autonomous Database uses `whitelisted_ips` primary's IP access control list (ACL) as `standbywhitelistedips` for the disaster recovery peer.
1263
+
1196
1264
  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.
1197
1265
  """
1198
1266
  return pulumi.get(self, "standby_whitelisted_ips")
@@ -1217,7 +1285,7 @@ class AutonomousDatabaseArgs:
1217
1285
  @pulumi.getter(name="subnetId")
1218
1286
  def subnet_id(self) -> Optional[pulumi.Input[str]]:
1219
1287
  """
1220
- (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet the resource is associated with.
1288
+ (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`.
1221
1289
 
1222
1290
  **Subnet Restrictions:**
1223
1291
  * 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.
@@ -1236,7 +1304,7 @@ class AutonomousDatabaseArgs:
1236
1304
  @pulumi.getter(name="switchoverTo")
1237
1305
  def switchover_to(self) -> Optional[pulumi.Input[str]]:
1238
1306
  """
1239
- It is applicable only when `is_data_guard_enabled` is true. Could be set to `PRIMARY` or `STANDBY`. Default value is `PRIMARY`.
1307
+ It is applicable only when `is_local_data_guard_enabled` is true. Could be set to `PRIMARY` or `STANDBY`. Default value is `PRIMARY`.
1240
1308
  """
1241
1309
  return pulumi.get(self, "switchover_to")
1242
1310
 
@@ -1248,7 +1316,7 @@ class AutonomousDatabaseArgs:
1248
1316
  @pulumi.getter(name="switchoverToRemotePeerId")
1249
1317
  def switchover_to_remote_peer_id(self) -> Optional[pulumi.Input[str]]:
1250
1318
  """
1251
- (Updatable) It is applicable only when `role` is set, and `is_dedicated` is false. It takes the [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the remote peer to switchover to.
1319
+ (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.
1252
1320
  """
1253
1321
  return pulumi.get(self, "switchover_to_remote_peer_id")
1254
1322
 
@@ -1256,6 +1324,18 @@ class AutonomousDatabaseArgs:
1256
1324
  def switchover_to_remote_peer_id(self, value: Optional[pulumi.Input[str]]):
1257
1325
  pulumi.set(self, "switchover_to_remote_peer_id", value)
1258
1326
 
1327
+ @property
1328
+ @pulumi.getter(name="timeOfAutoRefreshStart")
1329
+ def time_of_auto_refresh_start(self) -> Optional[pulumi.Input[str]]:
1330
+ """
1331
+ 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.
1332
+ """
1333
+ return pulumi.get(self, "time_of_auto_refresh_start")
1334
+
1335
+ @time_of_auto_refresh_start.setter
1336
+ def time_of_auto_refresh_start(self, value: Optional[pulumi.Input[str]]):
1337
+ pulumi.set(self, "time_of_auto_refresh_start", value)
1338
+
1259
1339
  @property
1260
1340
  @pulumi.getter
1261
1341
  def timestamp(self) -> Optional[pulumi.Input[str]]:
@@ -1284,7 +1364,7 @@ class AutonomousDatabaseArgs:
1284
1364
  @pulumi.getter(name="vaultId")
1285
1365
  def vault_id(self) -> Optional[pulumi.Input[str]]:
1286
1366
  """
1287
- 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).
1367
+ 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.
1288
1368
  """
1289
1369
  return pulumi.get(self, "vault_id")
1290
1370
 
@@ -1298,12 +1378,10 @@ class AutonomousDatabaseArgs:
1298
1378
  """
1299
1379
  (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`.
1300
1380
 
1301
- For shared Exadata infrastructure, 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"]`
1381
+ 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"]`
1302
1382
 
1303
1383
  For an update operation, if you want to delete all the IPs in the ACL, use an array with a single empty string entry.
1304
1384
 
1305
- 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 `[""]`.
1306
-
1307
1385
  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 `[""]`.
1308
1386
  """
1309
1387
  return pulumi.get(self, "whitelisted_ips")
@@ -1321,6 +1399,8 @@ class _AutonomousDatabaseState:
1321
1399
  allocated_storage_size_in_tbs: Optional[pulumi.Input[float]] = None,
1322
1400
  apex_details: Optional[pulumi.Input[Sequence[pulumi.Input['AutonomousDatabaseApexDetailArgs']]]] = None,
1323
1401
  are_primary_whitelisted_ips_used: Optional[pulumi.Input[bool]] = None,
1402
+ auto_refresh_frequency_in_seconds: Optional[pulumi.Input[int]] = None,
1403
+ auto_refresh_point_lag_in_seconds: Optional[pulumi.Input[int]] = None,
1324
1404
  autonomous_container_database_id: Optional[pulumi.Input[str]] = None,
1325
1405
  autonomous_database_backup_id: Optional[pulumi.Input[str]] = None,
1326
1406
  autonomous_database_id: Optional[pulumi.Input[str]] = None,
@@ -1428,6 +1508,7 @@ class _AutonomousDatabaseState:
1428
1508
  time_local_data_guard_enabled: Optional[pulumi.Input[str]] = None,
1429
1509
  time_maintenance_begin: Optional[pulumi.Input[str]] = None,
1430
1510
  time_maintenance_end: Optional[pulumi.Input[str]] = None,
1511
+ time_of_auto_refresh_start: Optional[pulumi.Input[str]] = None,
1431
1512
  time_of_joining_resource_pool: Optional[pulumi.Input[str]] = None,
1432
1513
  time_of_last_failover: Optional[pulumi.Input[str]] = None,
1433
1514
  time_of_last_refresh: Optional[pulumi.Input[str]] = None,
@@ -1446,31 +1527,38 @@ class _AutonomousDatabaseState:
1446
1527
  """
1447
1528
  Input properties used for looking up and filtering AutonomousDatabase resources.
1448
1529
  :param pulumi.Input[float] actual_used_data_storage_size_in_tbs: The current amount of storage in use for user and system data, in terabytes (TB).
1449
- :param pulumi.Input[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" and for new, full and metadata clone databases. This parameter is optional only if you are cloning or using a secret for the password. Not allowed for ADG and refreshable clones.
1530
+ :param pulumi.Input[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".
1450
1531
  :param pulumi.Input[float] allocated_storage_size_in_tbs: The amount of storage currently allocated for the database tables and billed for, rounded up. When auto-scaling is not enabled, this value is equal to the `dataStorageSizeInTBs` value. You can compare this value to the `actualUsedDataStorageSizeInTBs` value to determine if a manual shrink operation is appropriate for your allocated storage.
1451
1532
  :param pulumi.Input[Sequence[pulumi.Input['AutonomousDatabaseApexDetailArgs']]] apex_details: Information about Oracle APEX Application Development.
1452
1533
  :param pulumi.Input[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.
1453
- :param pulumi.Input[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.
1534
+ :param pulumi.Input[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.
1535
+ :param pulumi.Input[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.
1536
+ :param pulumi.Input[str] autonomous_container_database_id: The Autonomous Container Database [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
1454
1537
  :param pulumi.Input[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.
1455
1538
  :param pulumi.Input[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.
1456
- :param pulumi.Input[str] autonomous_maintenance_schedule_type: The maintenance schedule type of the Autonomous Database on shared Exadata infrastructure. 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.
1539
+ :param pulumi.Input[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.
1457
1540
  :param pulumi.Input[Sequence[pulumi.Input[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.
1458
1541
  :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.
1459
1542
  :param pulumi.Input[int] backup_retention_period_in_days: (Updatable) Retention period, in days, for backups.
1460
- :param pulumi.Input[str] character_set: The character set for the autonomous database. The default is AL32UTF8. Allowed values for an Autonomous Database on shared infrastructure as as returned by [List Autonomous Database Character Sets](https://www.terraform.io/autonomousDatabaseCharacterSets)
1543
+ :param pulumi.Input[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)
1461
1544
 
1462
1545
  For an Autonomous Database on dedicated infrastructure, the allowed values are:
1463
1546
 
1464
1547
  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
1465
- :param pulumi.Input[str] clone_type: The Autonomous Database clone type.
1548
+ :param pulumi.Input[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.
1466
1549
  :param pulumi.Input[str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment of the Autonomous Database.
1467
1550
  :param pulumi.Input[float] compute_count: (Updatable) Compute used by database tools.
1468
1551
  :param pulumi.Input[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.
1469
1552
  :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.
1470
1553
  :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..."}`
1471
1554
  :param pulumi.Input[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.
1472
-
1473
1555
  **Note:** This parameter cannot be used with the `ocpuCount` parameter. This input is ignored for Always Free resources.
1556
+ * The data type must be an *integer*.
1557
+ * The minimum number of cores for all types of autonomous database is *1*
1558
+ * The maximum number of cores is as follows:
1559
+ * Autonomous Database Serverless instances: The maximum number of cores is *128*.
1560
+ * 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.
1561
+ * Providing `computeModel` and `computeCount` is the preferred method for setting CPUs for both OCPU and ECPU.
1474
1562
  :param pulumi.Input[Sequence[pulumi.Input['AutonomousDatabaseCustomerContactArgs']]] customer_contacts: (Updatable) Customer Contacts.
1475
1563
  :param pulumi.Input[str] data_safe_status: (Updatable) Status of the Data Safe registration for this Autonomous Database. Could be REGISTERED or NOT_REGISTERED.
1476
1564
  :param pulumi.Input[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.
@@ -1481,9 +1569,9 @@ class _AutonomousDatabaseState:
1481
1569
  :param pulumi.Input[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).
1482
1570
 
1483
1571
  **Note:** This parameter cannot be used with the `dataStorageSizeInGBs` parameter. This input is ignored for Always Free resources.
1484
- :param pulumi.Input[str] database_edition: (Updatable) The Oracle Database Edition that applies to the Autonomous databases.
1572
+ :param pulumi.Input[str] database_edition: (Updatable) The Oracle Database Edition that applies to the Autonomous databases. It can be set to `ENTERPRISE_EDITION` or `STANDARD_EDITION`.
1485
1573
  :param pulumi.Input[str] database_management_status: Status of Database Management for this Autonomous Database.
1486
- :param pulumi.Input[str] dataguard_region_type: **Deprecated** (Optional) The Autonomous Data Guard region type of the Autonomous Database. For Autonomous Databases on shared Exadata infrastructure, 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.
1574
+ :param pulumi.Input[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.
1487
1575
  :param pulumi.Input[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.
1488
1576
  :param pulumi.Input[Sequence[pulumi.Input['AutonomousDatabaseDbToolsDetailArgs']]] db_tools_details: (Updatable) The list of database tools details.
1489
1577
 
@@ -1497,7 +1585,7 @@ class _AutonomousDatabaseState:
1497
1585
 
1498
1586
  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.
1499
1587
  :param pulumi.Input[Mapping[str, Any]] 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).
1500
- :param pulumi.Input[str] disaster_recovery_region_type: **Deprecated** The disaster recovery (DR) region type of the Autonomous Database. For Shared 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.
1588
+ :param pulumi.Input[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.
1501
1589
  :param pulumi.Input[str] display_name: (Updatable) The user-friendly name for the Autonomous Database. The name does not have to be unique.
1502
1590
  :param pulumi.Input[int] failed_data_recovery_in_seconds: Indicates the number of seconds of data loss for a Data Guard failover.
1503
1591
  :param pulumi.Input[Mapping[str, Any]] 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"}`
@@ -1516,29 +1604,29 @@ class _AutonomousDatabaseState:
1516
1604
  :param pulumi.Input[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.
1517
1605
  :param pulumi.Input[bool] is_mtls_connection_required: (Updatable) Indicates whether the Autonomous Database requires mTLS connections.
1518
1606
  :param pulumi.Input[bool] is_preview: Indicates if the Autonomous Database version is a preview version.
1519
- :param pulumi.Input[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 [shared Exadata infrastructure](https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html).
1607
+ :param pulumi.Input[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).
1520
1608
  :param pulumi.Input[bool] is_reconnect_clone_enabled: Indicates if the refreshable clone can be reconnected to its source database.
1521
1609
  :param pulumi.Input[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.
1522
1610
  :param pulumi.Input[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.
1523
1611
  :param pulumi.Input[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.
1524
- :param pulumi.Input[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 shared databases i.e. where `is_dedicated` is false.
1612
+ :param pulumi.Input[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.
1525
1613
 
1526
1614
  ** IMPORTANT **
1527
1615
  Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
1528
1616
  :param pulumi.Input[Sequence[pulumi.Input['AutonomousDatabaseKeyHistoryEntryArgs']]] key_history_entries: Key History Entry.
1529
- :param pulumi.Input[str] key_store_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the key store.
1617
+ :param pulumi.Input[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.
1530
1618
  :param pulumi.Input[str] key_store_wallet_name: The wallet name for Oracle Key Vault.
1531
1619
  :param pulumi.Input[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.
1532
1620
  :param pulumi.Input[str] kms_key_lifecycle_details: KMS key lifecycle details.
1533
- :param pulumi.Input[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.
1621
+ :param pulumi.Input[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.
1534
1622
  :param pulumi.Input[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`.
1535
1623
  :param pulumi.Input[str] lifecycle_details: Additional information about the current lifecycle state.
1536
1624
  :param pulumi.Input[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
1537
- :param pulumi.Input[str] local_disaster_recovery_type: Indicates the local disaster recovery (DR) type of the Shared Autonomous Database. Autonomous Data Guard (`ADG`) DR type provides business critical DR with a faster recovery time objective (RTO) during failover or switchover. Backup-based (`BACKUP_BASED`) DR type provides lower cost DR with a slower RTO during failover or switchover.
1625
+ :param pulumi.Input[str] local_disaster_recovery_type: Indicates the local disaster recovery (DR) type of the Serverless Autonomous Database. Autonomous Data Guard (`ADG`) DR type provides business critical DR with a faster recovery time objective (RTO) during failover or switchover. Backup-based (`BACKUP_BASED`) DR type provides lower cost DR with a slower RTO during failover or switchover.
1538
1626
  :param pulumi.Input[Sequence[pulumi.Input['AutonomousDatabaseLocalStandbyDbArgs']]] local_standby_dbs: Autonomous Data Guard local (same region) standby database details.
1539
1627
  :param pulumi.Input[Sequence[pulumi.Input['AutonomousDatabaseLongTermBackupScheduleArgs']]] long_term_backup_schedules: Details for the long-term backup schedule.
1540
- :param pulumi.Input[int] max_cpu_core_count: (Updatable) The number of Max OCPU cores to be made available to the autonomous database with auto scaling of cpu enabled.
1541
- :param pulumi.Input[int] memory_per_oracle_compute_unit_in_gbs: The amount of memory (in GBs) enabled per each OCPU core in Autonomous VM Cluster.
1628
+ :param pulumi.Input[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.
1629
+ :param pulumi.Input[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.
1542
1630
  :param pulumi.Input[str] ncharacter_set: The national character set for the autonomous database. The default is AL16UTF16. Allowed values are: AL16UTF16 or UTF8.
1543
1631
  :param pulumi.Input[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.
1544
1632
  :param pulumi.Input[str] next_long_term_backup_time_stamp: The date and time when the next long-term backup would be created.
@@ -1550,17 +1638,21 @@ class _AutonomousDatabaseState:
1550
1638
  * 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.)
1551
1639
  * 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.
1552
1640
  * For Autonomous Database Serverless instances, this parameter is not used.
1641
+ * Providing `computeModel` and `computeCount` is the preferred method for setting CPUs for both OCPU and ECPU.
1553
1642
 
1554
1643
  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.
1555
1644
 
1556
1645
  **Note:** This parameter cannot be used with the `cpuCoreCount` parameter.
1557
1646
  :param pulumi.Input[str] open_mode: Indicates the Autonomous Database mode. The database can be opened in `READ_ONLY` or `READ_WRITE` mode.
1558
1647
  :param pulumi.Input[str] operations_insights_status: (Updatable) Status of Operations Insights for this Autonomous Database. Values supported are `ENABLED` and `NOT_ENABLED`
1559
- :param pulumi.Input[Sequence[pulumi.Input[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 shared Exadata infrastructure, standby databases located in the same region as the source primary database do not have OCIDs.
1648
+ :param pulumi.Input[Sequence[pulumi.Input[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.
1560
1649
  :param pulumi.Input[str] permission_level: The Autonomous Database permission level. Restricted mode allows access only by admin users.
1561
- :param pulumi.Input[str] private_endpoint: The private endpoint for the resource.
1650
+ :param pulumi.Input[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.
1562
1651
  :param pulumi.Input[str] private_endpoint_ip: The private endpoint Ip address for the resource.
1563
- :param pulumi.Input[str] private_endpoint_label: (Updatable) The private endpoint label for the resource.
1652
+ :param pulumi.Input[str] private_endpoint_label: (Updatable) (Optional) (Updatable) The resource's private endpoint label.
1653
+ * Setting the endpoint label to a non-empty string creates a private endpoint database.
1654
+ * 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.
1655
+ * 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.
1564
1656
  :param pulumi.Input[Sequence[pulumi.Input[float]]] provisionable_cpuses: An array of CPU values that an Autonomous Database can be scaled to.
1565
1657
  :param pulumi.Input[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.
1566
1658
  :param pulumi.Input[str] refreshable_status: The refresh status of the clone. REFRESHING indicates that the clone is currently being refreshed with data from the source Autonomous Database.
@@ -1578,20 +1670,28 @@ class _AutonomousDatabaseState:
1578
1670
  This cannot be used in conjunction with adminPassword.
1579
1671
  :param pulumi.Input[int] secret_version_number: (Updatable) The version of the vault secret. If no version is specified, the latest version will be used.
1580
1672
  :param pulumi.Input[str] service_console_url: The URL of the Service Console for the Autonomous Database.
1581
- :param pulumi.Input[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.
1673
+ :param pulumi.Input[str] source: The source of the database:
1674
+ * Use `NONE` for creating a new Autonomous Database.
1675
+ * 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.
1676
+ * 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.
1677
+ * Use `CLONE_TO_REFRESHABLE` for creating a refreshable clone.
1582
1678
 
1583
- For Autonomous Databases on [shared Exadata infrastructure](https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html), 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).
1679
+ For [Autonomous Database Serverless](https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html) instances, the following cloning options are available:
1680
+ * 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.
1681
+ * 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).
1584
1682
  :param pulumi.Input[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.
1585
1683
  :param pulumi.Input[Sequence[pulumi.Input['AutonomousDatabaseStandbyDbArgs']]] standby_dbs: **Deprecated** Autonomous Data Guard standby database details.
1586
1684
  :param pulumi.Input[Sequence[pulumi.Input[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`.
1587
1685
 
1588
- For shared Exadata infrastructure, 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"]`
1686
+ 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"]`
1589
1687
 
1590
1688
  For an update operation, if you want to delete all the IPs in the ACL, use an array with a single empty string entry.
1591
1689
 
1690
+ If `arePrimaryWhitelistedIpsUsed` is 'TRUE' then Autonomous Database uses `whitelisted_ips` primary's IP access control list (ACL) as `standbywhitelistedips` for the disaster recovery peer.
1691
+
1592
1692
  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.
1593
1693
  :param pulumi.Input[str] state: The current state of the Autonomous Database.
1594
- :param pulumi.Input[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.
1694
+ :param pulumi.Input[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`.
1595
1695
 
1596
1696
  **Subnet Restrictions:**
1597
1697
  * 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.
@@ -1600,8 +1700,8 @@ class _AutonomousDatabaseState:
1600
1700
 
1601
1701
  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.
1602
1702
  :param pulumi.Input[Sequence[pulumi.Input[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.
1603
- :param pulumi.Input[str] switchover_to: It is applicable only when `is_data_guard_enabled` is true. Could be set to `PRIMARY` or `STANDBY`. Default value is `PRIMARY`.
1604
- :param pulumi.Input[str] switchover_to_remote_peer_id: (Updatable) It is applicable only when `role` is set, and `is_dedicated` is false. It takes the [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the remote peer to switchover to.
1703
+ :param pulumi.Input[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`.
1704
+ :param pulumi.Input[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.
1605
1705
  :param pulumi.Input[Mapping[str, Any]] 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).
1606
1706
  :param pulumi.Input[str] time_created: The date and time the Autonomous Database was created.
1607
1707
  :param pulumi.Input[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.
@@ -1610,6 +1710,7 @@ class _AutonomousDatabaseState:
1610
1710
  :param pulumi.Input[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.
1611
1711
  :param pulumi.Input[str] time_maintenance_begin: The date and time when maintenance will begin.
1612
1712
  :param pulumi.Input[str] time_maintenance_end: The date and time when maintenance will end.
1713
+ :param pulumi.Input[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.
1613
1714
  :param pulumi.Input[str] time_of_last_failover: The timestamp of the last failover operation.
1614
1715
  :param pulumi.Input[str] time_of_last_refresh: The date and time when last refresh happened.
1615
1716
  :param pulumi.Input[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.
@@ -1622,16 +1723,14 @@ class _AutonomousDatabaseState:
1622
1723
  :param pulumi.Input[bool] use_latest_available_backup_time_stamp: Clone from latest available backup timestamp.
1623
1724
  :param pulumi.Input[int] used_data_storage_size_in_gbs: The storage space consumed by Autonomous Database in GBs.
1624
1725
  :param pulumi.Input[int] used_data_storage_size_in_tbs: The amount of storage that has been used, in terabytes.
1625
- :param pulumi.Input[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).
1726
+ :param pulumi.Input[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.
1626
1727
  :param pulumi.Input[Sequence[pulumi.Input[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`.
1627
1728
 
1628
- For shared Exadata infrastructure, 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"]`
1729
+ 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"]`
1629
1730
 
1630
1731
  For an update operation, if you want to delete all the IPs in the ACL, use an array with a single empty string entry.
1631
1732
 
1632
1733
  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 `[""]`.
1633
-
1634
- 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 `[""]`.
1635
1734
  """
1636
1735
  if actual_used_data_storage_size_in_tbs is not None:
1637
1736
  pulumi.set(__self__, "actual_used_data_storage_size_in_tbs", actual_used_data_storage_size_in_tbs)
@@ -1643,6 +1742,10 @@ class _AutonomousDatabaseState:
1643
1742
  pulumi.set(__self__, "apex_details", apex_details)
1644
1743
  if are_primary_whitelisted_ips_used is not None:
1645
1744
  pulumi.set(__self__, "are_primary_whitelisted_ips_used", are_primary_whitelisted_ips_used)
1745
+ if auto_refresh_frequency_in_seconds is not None:
1746
+ pulumi.set(__self__, "auto_refresh_frequency_in_seconds", auto_refresh_frequency_in_seconds)
1747
+ if auto_refresh_point_lag_in_seconds is not None:
1748
+ pulumi.set(__self__, "auto_refresh_point_lag_in_seconds", auto_refresh_point_lag_in_seconds)
1646
1749
  if autonomous_container_database_id is not None:
1647
1750
  pulumi.set(__self__, "autonomous_container_database_id", autonomous_container_database_id)
1648
1751
  if autonomous_database_backup_id is not None:
@@ -1860,6 +1963,8 @@ class _AutonomousDatabaseState:
1860
1963
  pulumi.set(__self__, "time_maintenance_begin", time_maintenance_begin)
1861
1964
  if time_maintenance_end is not None:
1862
1965
  pulumi.set(__self__, "time_maintenance_end", time_maintenance_end)
1966
+ if time_of_auto_refresh_start is not None:
1967
+ pulumi.set(__self__, "time_of_auto_refresh_start", time_of_auto_refresh_start)
1863
1968
  if time_of_joining_resource_pool is not None:
1864
1969
  pulumi.set(__self__, "time_of_joining_resource_pool", time_of_joining_resource_pool)
1865
1970
  if time_of_last_failover is not None:
@@ -1907,7 +2012,7 @@ class _AutonomousDatabaseState:
1907
2012
  @pulumi.getter(name="adminPassword")
1908
2013
  def admin_password(self) -> Optional[pulumi.Input[str]]:
1909
2014
  """
1910
- (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" and for new, full and metadata clone databases. This parameter is optional only if you are cloning or using a secret for the password. Not allowed for ADG and refreshable clones.
2015
+ (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".
1911
2016
  """
1912
2017
  return pulumi.get(self, "admin_password")
1913
2018
 
@@ -1951,11 +2056,35 @@ class _AutonomousDatabaseState:
1951
2056
  def are_primary_whitelisted_ips_used(self, value: Optional[pulumi.Input[bool]]):
1952
2057
  pulumi.set(self, "are_primary_whitelisted_ips_used", value)
1953
2058
 
2059
+ @property
2060
+ @pulumi.getter(name="autoRefreshFrequencyInSeconds")
2061
+ def auto_refresh_frequency_in_seconds(self) -> Optional[pulumi.Input[int]]:
2062
+ """
2063
+ (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.
2064
+ """
2065
+ return pulumi.get(self, "auto_refresh_frequency_in_seconds")
2066
+
2067
+ @auto_refresh_frequency_in_seconds.setter
2068
+ def auto_refresh_frequency_in_seconds(self, value: Optional[pulumi.Input[int]]):
2069
+ pulumi.set(self, "auto_refresh_frequency_in_seconds", value)
2070
+
2071
+ @property
2072
+ @pulumi.getter(name="autoRefreshPointLagInSeconds")
2073
+ def auto_refresh_point_lag_in_seconds(self) -> Optional[pulumi.Input[int]]:
2074
+ """
2075
+ (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.
2076
+ """
2077
+ return pulumi.get(self, "auto_refresh_point_lag_in_seconds")
2078
+
2079
+ @auto_refresh_point_lag_in_seconds.setter
2080
+ def auto_refresh_point_lag_in_seconds(self, value: Optional[pulumi.Input[int]]):
2081
+ pulumi.set(self, "auto_refresh_point_lag_in_seconds", value)
2082
+
1954
2083
  @property
1955
2084
  @pulumi.getter(name="autonomousContainerDatabaseId")
1956
2085
  def autonomous_container_database_id(self) -> Optional[pulumi.Input[str]]:
1957
2086
  """
1958
- 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.
2087
+ The Autonomous Container Database [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
1959
2088
  """
1960
2089
  return pulumi.get(self, "autonomous_container_database_id")
1961
2090
 
@@ -1991,7 +2120,7 @@ class _AutonomousDatabaseState:
1991
2120
  @pulumi.getter(name="autonomousMaintenanceScheduleType")
1992
2121
  def autonomous_maintenance_schedule_type(self) -> Optional[pulumi.Input[str]]:
1993
2122
  """
1994
- The maintenance schedule type of the Autonomous Database on shared Exadata infrastructure. 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.
2123
+ 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.
1995
2124
  """
1996
2125
  return pulumi.get(self, "autonomous_maintenance_schedule_type")
1997
2126
 
@@ -2039,7 +2168,7 @@ class _AutonomousDatabaseState:
2039
2168
  @pulumi.getter(name="characterSet")
2040
2169
  def character_set(self) -> Optional[pulumi.Input[str]]:
2041
2170
  """
2042
- The character set for the autonomous database. The default is AL32UTF8. Allowed values for an Autonomous Database on shared infrastructure as as returned by [List Autonomous Database Character Sets](https://www.terraform.io/autonomousDatabaseCharacterSets)
2171
+ 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)
2043
2172
 
2044
2173
  For an Autonomous Database on dedicated infrastructure, the allowed values are:
2045
2174
 
@@ -2055,7 +2184,7 @@ class _AutonomousDatabaseState:
2055
2184
  @pulumi.getter(name="cloneType")
2056
2185
  def clone_type(self) -> Optional[pulumi.Input[str]]:
2057
2186
  """
2058
- The Autonomous Database clone type.
2187
+ 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.
2059
2188
  """
2060
2189
  return pulumi.get(self, "clone_type")
2061
2190
 
@@ -2128,8 +2257,13 @@ class _AutonomousDatabaseState:
2128
2257
  def cpu_core_count(self) -> Optional[pulumi.Input[int]]:
2129
2258
  """
2130
2259
  (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.
2131
-
2132
2260
  **Note:** This parameter cannot be used with the `ocpuCount` parameter. This input is ignored for Always Free resources.
2261
+ * The data type must be an *integer*.
2262
+ * The minimum number of cores for all types of autonomous database is *1*
2263
+ * The maximum number of cores is as follows:
2264
+ * Autonomous Database Serverless instances: The maximum number of cores is *128*.
2265
+ * 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.
2266
+ * Providing `computeModel` and `computeCount` is the preferred method for setting CPUs for both OCPU and ECPU.
2133
2267
  """
2134
2268
  return pulumi.get(self, "cpu_core_count")
2135
2269
 
@@ -2195,7 +2329,7 @@ class _AutonomousDatabaseState:
2195
2329
  @pulumi.getter(name="databaseEdition")
2196
2330
  def database_edition(self) -> Optional[pulumi.Input[str]]:
2197
2331
  """
2198
- (Updatable) The Oracle Database Edition that applies to the Autonomous databases.
2332
+ (Updatable) The Oracle Database Edition that applies to the Autonomous databases. It can be set to `ENTERPRISE_EDITION` or `STANDARD_EDITION`.
2199
2333
  """
2200
2334
  return pulumi.get(self, "database_edition")
2201
2335
 
@@ -2219,7 +2353,7 @@ class _AutonomousDatabaseState:
2219
2353
  @pulumi.getter(name="dataguardRegionType")
2220
2354
  def dataguard_region_type(self) -> Optional[pulumi.Input[str]]:
2221
2355
  """
2222
- **Deprecated** (Optional) The Autonomous Data Guard region type of the Autonomous Database. For Autonomous Databases on shared Exadata infrastructure, 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.
2356
+ **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.
2223
2357
  """
2224
2358
  return pulumi.get(self, "dataguard_region_type")
2225
2359
 
@@ -2299,7 +2433,7 @@ class _AutonomousDatabaseState:
2299
2433
  @pulumi.getter(name="disasterRecoveryRegionType")
2300
2434
  def disaster_recovery_region_type(self) -> Optional[pulumi.Input[str]]:
2301
2435
  """
2302
- **Deprecated** The disaster recovery (DR) region type of the Autonomous Database. For Shared 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.
2436
+ **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.
2303
2437
  """
2304
2438
  return pulumi.get(self, "disaster_recovery_region_type")
2305
2439
 
@@ -2505,7 +2639,7 @@ class _AutonomousDatabaseState:
2505
2639
  @pulumi.getter(name="isPreviewVersionWithServiceTermsAccepted")
2506
2640
  def is_preview_version_with_service_terms_accepted(self) -> Optional[pulumi.Input[bool]]:
2507
2641
  """
2508
- 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 [shared Exadata infrastructure](https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html).
2642
+ 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).
2509
2643
  """
2510
2644
  return pulumi.get(self, "is_preview_version_with_service_terms_accepted")
2511
2645
 
@@ -2565,7 +2699,7 @@ class _AutonomousDatabaseState:
2565
2699
  @pulumi.getter(name="isShrinkOnly")
2566
2700
  def is_shrink_only(self) -> Optional[pulumi.Input[bool]]:
2567
2701
  """
2568
- (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 shared databases i.e. where `is_dedicated` is false.
2702
+ (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.
2569
2703
 
2570
2704
  ** IMPORTANT **
2571
2705
  Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
@@ -2595,7 +2729,7 @@ class _AutonomousDatabaseState:
2595
2729
  @pulumi.getter(name="keyStoreId")
2596
2730
  def key_store_id(self) -> Optional[pulumi.Input[str]]:
2597
2731
  """
2598
- The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the key store.
2732
+ 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.
2599
2733
  """
2600
2734
  return pulumi.get(self, "key_store_id")
2601
2735
 
@@ -2643,7 +2777,7 @@ class _AutonomousDatabaseState:
2643
2777
  @pulumi.getter(name="kmsKeyVersionId")
2644
2778
  def kms_key_version_id(self) -> Optional[pulumi.Input[str]]:
2645
2779
  """
2646
- 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.
2780
+ 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.
2647
2781
  """
2648
2782
  return pulumi.get(self, "kms_key_version_id")
2649
2783
 
@@ -2691,7 +2825,7 @@ class _AutonomousDatabaseState:
2691
2825
  @pulumi.getter(name="localDisasterRecoveryType")
2692
2826
  def local_disaster_recovery_type(self) -> Optional[pulumi.Input[str]]:
2693
2827
  """
2694
- Indicates the local disaster recovery (DR) type of the Shared Autonomous Database. Autonomous Data Guard (`ADG`) DR type provides business critical DR with a faster recovery time objective (RTO) during failover or switchover. Backup-based (`BACKUP_BASED`) DR type provides lower cost DR with a slower RTO during failover or switchover.
2828
+ Indicates the local disaster recovery (DR) type of the Serverless Autonomous Database. Autonomous Data Guard (`ADG`) DR type provides business critical DR with a faster recovery time objective (RTO) during failover or switchover. Backup-based (`BACKUP_BASED`) DR type provides lower cost DR with a slower RTO during failover or switchover.
2695
2829
  """
2696
2830
  return pulumi.get(self, "local_disaster_recovery_type")
2697
2831
 
@@ -2727,7 +2861,7 @@ class _AutonomousDatabaseState:
2727
2861
  @pulumi.getter(name="maxCpuCoreCount")
2728
2862
  def max_cpu_core_count(self) -> Optional[pulumi.Input[int]]:
2729
2863
  """
2730
- (Updatable) The number of Max OCPU cores to be made available to the autonomous database with auto scaling of cpu enabled.
2864
+ (Updatable) **Deprecated.** The number of Max OCPU cores to be made available to the autonomous database with auto scaling of cpu enabled.
2731
2865
  """
2732
2866
  return pulumi.get(self, "max_cpu_core_count")
2733
2867
 
@@ -2739,7 +2873,7 @@ class _AutonomousDatabaseState:
2739
2873
  @pulumi.getter(name="memoryPerOracleComputeUnitInGbs")
2740
2874
  def memory_per_oracle_compute_unit_in_gbs(self) -> Optional[pulumi.Input[int]]:
2741
2875
  """
2742
- The amount of memory (in GBs) enabled per each OCPU core in Autonomous VM Cluster.
2876
+ 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.
2743
2877
  """
2744
2878
  return pulumi.get(self, "memory_per_oracle_compute_unit_in_gbs")
2745
2879
 
@@ -2806,6 +2940,7 @@ class _AutonomousDatabaseState:
2806
2940
  * 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.)
2807
2941
  * 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.
2808
2942
  * For Autonomous Database Serverless instances, this parameter is not used.
2943
+ * Providing `computeModel` and `computeCount` is the preferred method for setting CPUs for both OCPU and ECPU.
2809
2944
 
2810
2945
  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.
2811
2946
 
@@ -2845,7 +2980,7 @@ class _AutonomousDatabaseState:
2845
2980
  @pulumi.getter(name="peerDbIds")
2846
2981
  def peer_db_ids(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
2847
2982
  """
2848
- 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 shared Exadata infrastructure, standby databases located in the same region as the source primary database do not have OCIDs.
2983
+ 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.
2849
2984
  """
2850
2985
  return pulumi.get(self, "peer_db_ids")
2851
2986
 
@@ -2869,7 +3004,7 @@ class _AutonomousDatabaseState:
2869
3004
  @pulumi.getter(name="privateEndpoint")
2870
3005
  def private_endpoint(self) -> Optional[pulumi.Input[str]]:
2871
3006
  """
2872
- The private endpoint for the resource.
3007
+ The private endpoint for the resource. This parameter is not used in Autonomous Databases using Serverless infrastructure and Exadata Cloud@Customer infrastructure.
2873
3008
  """
2874
3009
  return pulumi.get(self, "private_endpoint")
2875
3010
 
@@ -2893,7 +3028,10 @@ class _AutonomousDatabaseState:
2893
3028
  @pulumi.getter(name="privateEndpointLabel")
2894
3029
  def private_endpoint_label(self) -> Optional[pulumi.Input[str]]:
2895
3030
  """
2896
- (Updatable) The private endpoint label for the resource.
3031
+ (Updatable) (Optional) (Updatable) The resource's private endpoint label.
3032
+ * Setting the endpoint label to a non-empty string creates a private endpoint database.
3033
+ * 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.
3034
+ * 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.
2897
3035
  """
2898
3036
  return pulumi.get(self, "private_endpoint_label")
2899
3037
 
@@ -3074,9 +3212,15 @@ class _AutonomousDatabaseState:
3074
3212
  @pulumi.getter
3075
3213
  def source(self) -> Optional[pulumi.Input[str]]:
3076
3214
  """
3077
- 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.
3215
+ The source of the database:
3216
+ * Use `NONE` for creating a new Autonomous Database.
3217
+ * 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.
3218
+ * 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.
3219
+ * Use `CLONE_TO_REFRESHABLE` for creating a refreshable clone.
3078
3220
 
3079
- For Autonomous Databases on [shared Exadata infrastructure](https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html), 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).
3221
+ For [Autonomous Database Serverless](https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html) instances, the following cloning options are available:
3222
+ * 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.
3223
+ * 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).
3080
3224
  """
3081
3225
  return pulumi.get(self, "source")
3082
3226
 
@@ -3114,10 +3258,12 @@ class _AutonomousDatabaseState:
3114
3258
  """
3115
3259
  (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`.
3116
3260
 
3117
- For shared Exadata infrastructure, 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"]`
3261
+ 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"]`
3118
3262
 
3119
3263
  For an update operation, if you want to delete all the IPs in the ACL, use an array with a single empty string entry.
3120
3264
 
3265
+ If `arePrimaryWhitelistedIpsUsed` is 'TRUE' then Autonomous Database uses `whitelisted_ips` primary's IP access control list (ACL) as `standbywhitelistedips` for the disaster recovery peer.
3266
+
3121
3267
  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.
3122
3268
  """
3123
3269
  return pulumi.get(self, "standby_whitelisted_ips")
@@ -3142,7 +3288,7 @@ class _AutonomousDatabaseState:
3142
3288
  @pulumi.getter(name="subnetId")
3143
3289
  def subnet_id(self) -> Optional[pulumi.Input[str]]:
3144
3290
  """
3145
- (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet the resource is associated with.
3291
+ (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`.
3146
3292
 
3147
3293
  **Subnet Restrictions:**
3148
3294
  * 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.
@@ -3173,7 +3319,7 @@ class _AutonomousDatabaseState:
3173
3319
  @pulumi.getter(name="switchoverTo")
3174
3320
  def switchover_to(self) -> Optional[pulumi.Input[str]]:
3175
3321
  """
3176
- It is applicable only when `is_data_guard_enabled` is true. Could be set to `PRIMARY` or `STANDBY`. Default value is `PRIMARY`.
3322
+ It is applicable only when `is_local_data_guard_enabled` is true. Could be set to `PRIMARY` or `STANDBY`. Default value is `PRIMARY`.
3177
3323
  """
3178
3324
  return pulumi.get(self, "switchover_to")
3179
3325
 
@@ -3185,7 +3331,7 @@ class _AutonomousDatabaseState:
3185
3331
  @pulumi.getter(name="switchoverToRemotePeerId")
3186
3332
  def switchover_to_remote_peer_id(self) -> Optional[pulumi.Input[str]]:
3187
3333
  """
3188
- (Updatable) It is applicable only when `role` is set, and `is_dedicated` is false. It takes the [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the remote peer to switchover to.
3334
+ (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.
3189
3335
  """
3190
3336
  return pulumi.get(self, "switchover_to_remote_peer_id")
3191
3337
 
@@ -3289,6 +3435,18 @@ class _AutonomousDatabaseState:
3289
3435
  def time_maintenance_end(self, value: Optional[pulumi.Input[str]]):
3290
3436
  pulumi.set(self, "time_maintenance_end", value)
3291
3437
 
3438
+ @property
3439
+ @pulumi.getter(name="timeOfAutoRefreshStart")
3440
+ def time_of_auto_refresh_start(self) -> Optional[pulumi.Input[str]]:
3441
+ """
3442
+ 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.
3443
+ """
3444
+ return pulumi.get(self, "time_of_auto_refresh_start")
3445
+
3446
+ @time_of_auto_refresh_start.setter
3447
+ def time_of_auto_refresh_start(self, value: Optional[pulumi.Input[str]]):
3448
+ pulumi.set(self, "time_of_auto_refresh_start", value)
3449
+
3292
3450
  @property
3293
3451
  @pulumi.getter(name="timeOfJoiningResourcePool")
3294
3452
  def time_of_joining_resource_pool(self) -> Optional[pulumi.Input[str]]:
@@ -3446,7 +3604,7 @@ class _AutonomousDatabaseState:
3446
3604
  @pulumi.getter(name="vaultId")
3447
3605
  def vault_id(self) -> Optional[pulumi.Input[str]]:
3448
3606
  """
3449
- 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).
3607
+ 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.
3450
3608
  """
3451
3609
  return pulumi.get(self, "vault_id")
3452
3610
 
@@ -3460,12 +3618,10 @@ class _AutonomousDatabaseState:
3460
3618
  """
3461
3619
  (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`.
3462
3620
 
3463
- For shared Exadata infrastructure, 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"]`
3621
+ 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"]`
3464
3622
 
3465
3623
  For an update operation, if you want to delete all the IPs in the ACL, use an array with a single empty string entry.
3466
3624
 
3467
- 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 `[""]`.
3468
-
3469
3625
  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 `[""]`.
3470
3626
  """
3471
3627
  return pulumi.get(self, "whitelisted_ips")
@@ -3482,6 +3638,8 @@ class AutonomousDatabase(pulumi.CustomResource):
3482
3638
  opts: Optional[pulumi.ResourceOptions] = None,
3483
3639
  admin_password: Optional[pulumi.Input[str]] = None,
3484
3640
  are_primary_whitelisted_ips_used: Optional[pulumi.Input[bool]] = None,
3641
+ auto_refresh_frequency_in_seconds: Optional[pulumi.Input[int]] = None,
3642
+ auto_refresh_point_lag_in_seconds: Optional[pulumi.Input[int]] = None,
3485
3643
  autonomous_container_database_id: Optional[pulumi.Input[str]] = None,
3486
3644
  autonomous_database_backup_id: Optional[pulumi.Input[str]] = None,
3487
3645
  autonomous_database_id: Optional[pulumi.Input[str]] = None,
@@ -3549,6 +3707,7 @@ class AutonomousDatabase(pulumi.CustomResource):
3549
3707
  subnet_id: Optional[pulumi.Input[str]] = None,
3550
3708
  switchover_to: Optional[pulumi.Input[str]] = None,
3551
3709
  switchover_to_remote_peer_id: Optional[pulumi.Input[str]] = None,
3710
+ time_of_auto_refresh_start: Optional[pulumi.Input[str]] = None,
3552
3711
  timestamp: Optional[pulumi.Input[str]] = None,
3553
3712
  use_latest_available_backup_time_stamp: Optional[pulumi.Input[bool]] = None,
3554
3713
  vault_id: Optional[pulumi.Input[str]] = None,
@@ -3571,25 +3730,32 @@ class AutonomousDatabase(pulumi.CustomResource):
3571
3730
 
3572
3731
  :param str resource_name: The name of the resource.
3573
3732
  :param pulumi.ResourceOptions opts: Options for the resource.
3574
- :param pulumi.Input[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" and for new, full and metadata clone databases. This parameter is optional only if you are cloning or using a secret for the password. Not allowed for ADG and refreshable clones.
3733
+ :param pulumi.Input[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".
3575
3734
  :param pulumi.Input[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.
3576
- :param pulumi.Input[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.
3735
+ :param pulumi.Input[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.
3736
+ :param pulumi.Input[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.
3737
+ :param pulumi.Input[str] autonomous_container_database_id: The Autonomous Container Database [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
3577
3738
  :param pulumi.Input[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.
3578
3739
  :param pulumi.Input[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.
3579
- :param pulumi.Input[str] autonomous_maintenance_schedule_type: The maintenance schedule type of the Autonomous Database on shared Exadata infrastructure. 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.
3740
+ :param pulumi.Input[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.
3580
3741
  :param pulumi.Input[int] backup_retention_period_in_days: (Updatable) Retention period, in days, for backups.
3581
- :param pulumi.Input[str] character_set: The character set for the autonomous database. The default is AL32UTF8. Allowed values for an Autonomous Database on shared infrastructure as as returned by [List Autonomous Database Character Sets](https://www.terraform.io/autonomousDatabaseCharacterSets)
3742
+ :param pulumi.Input[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)
3582
3743
 
3583
3744
  For an Autonomous Database on dedicated infrastructure, the allowed values are:
3584
3745
 
3585
3746
  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
3586
- :param pulumi.Input[str] clone_type: The Autonomous Database clone type.
3747
+ :param pulumi.Input[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.
3587
3748
  :param pulumi.Input[str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment of the Autonomous Database.
3588
3749
  :param pulumi.Input[float] compute_count: (Updatable) Compute used by database tools.
3589
3750
  :param pulumi.Input[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.
3590
3751
  :param pulumi.Input[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.
3591
-
3592
3752
  **Note:** This parameter cannot be used with the `ocpuCount` parameter. This input is ignored for Always Free resources.
3753
+ * The data type must be an *integer*.
3754
+ * The minimum number of cores for all types of autonomous database is *1*
3755
+ * The maximum number of cores is as follows:
3756
+ * Autonomous Database Serverless instances: The maximum number of cores is *128*.
3757
+ * 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.
3758
+ * Providing `computeModel` and `computeCount` is the preferred method for setting CPUs for both OCPU and ECPU.
3593
3759
  :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['AutonomousDatabaseCustomerContactArgs']]]] customer_contacts: (Updatable) Customer Contacts.
3594
3760
  :param pulumi.Input[str] data_safe_status: (Updatable) Status of the Data Safe registration for this Autonomous Database. Could be REGISTERED or NOT_REGISTERED.
3595
3761
  :param pulumi.Input[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.
@@ -3600,7 +3766,7 @@ class AutonomousDatabase(pulumi.CustomResource):
3600
3766
  :param pulumi.Input[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).
3601
3767
 
3602
3768
  **Note:** This parameter cannot be used with the `dataStorageSizeInGBs` parameter. This input is ignored for Always Free resources.
3603
- :param pulumi.Input[str] database_edition: (Updatable) The Oracle Database Edition that applies to the Autonomous databases.
3769
+ :param pulumi.Input[str] database_edition: (Updatable) The Oracle Database Edition that applies to the Autonomous databases. It can be set to `ENTERPRISE_EDITION` or `STANDARD_EDITION`.
3604
3770
  :param pulumi.Input[str] database_management_status: Status of Database Management for this Autonomous Database.
3605
3771
  :param pulumi.Input[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.
3606
3772
  :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['AutonomousDatabaseDbToolsDetailArgs']]]] db_tools_details: (Updatable) The list of database tools details.
@@ -3629,10 +3795,10 @@ class AutonomousDatabase(pulumi.CustomResource):
3629
3795
  :param pulumi.Input[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`.
3630
3796
  :param pulumi.Input[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.
3631
3797
  :param pulumi.Input[bool] is_mtls_connection_required: (Updatable) Indicates whether the Autonomous Database requires mTLS connections.
3632
- :param pulumi.Input[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 [shared Exadata infrastructure](https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html).
3798
+ :param pulumi.Input[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).
3633
3799
  :param pulumi.Input[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.
3634
3800
  :param pulumi.Input[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.
3635
- :param pulumi.Input[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 shared databases i.e. where `is_dedicated` is false.
3801
+ :param pulumi.Input[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.
3636
3802
 
3637
3803
  ** IMPORTANT **
3638
3804
  Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
@@ -3640,7 +3806,7 @@ class AutonomousDatabase(pulumi.CustomResource):
3640
3806
  :param pulumi.Input[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`.
3641
3807
  :param pulumi.Input[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
3642
3808
  :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['AutonomousDatabaseLongTermBackupScheduleArgs']]]] long_term_backup_schedules: Details for the long-term backup schedule.
3643
- :param pulumi.Input[int] max_cpu_core_count: (Updatable) The number of Max OCPU cores to be made available to the autonomous database with auto scaling of cpu enabled.
3809
+ :param pulumi.Input[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.
3644
3810
  :param pulumi.Input[str] ncharacter_set: The national character set for the autonomous database. The default is AL16UTF16. Allowed values are: AL16UTF16 or UTF8.
3645
3811
  :param pulumi.Input[Sequence[pulumi.Input[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:**
3646
3812
  * A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
@@ -3650,6 +3816,7 @@ class AutonomousDatabase(pulumi.CustomResource):
3650
3816
  * 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.)
3651
3817
  * 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.
3652
3818
  * For Autonomous Database Serverless instances, this parameter is not used.
3819
+ * Providing `computeModel` and `computeCount` is the preferred method for setting CPUs for both OCPU and ECPU.
3653
3820
 
3654
3821
  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.
3655
3822
 
@@ -3658,7 +3825,10 @@ class AutonomousDatabase(pulumi.CustomResource):
3658
3825
  :param pulumi.Input[str] operations_insights_status: (Updatable) Status of Operations Insights for this Autonomous Database. Values supported are `ENABLED` and `NOT_ENABLED`
3659
3826
  :param pulumi.Input[str] permission_level: The Autonomous Database permission level. Restricted mode allows access only by admin users.
3660
3827
  :param pulumi.Input[str] private_endpoint_ip: The private endpoint Ip address for the resource.
3661
- :param pulumi.Input[str] private_endpoint_label: (Updatable) The private endpoint label for the resource.
3828
+ :param pulumi.Input[str] private_endpoint_label: (Updatable) (Optional) (Updatable) The resource's private endpoint label.
3829
+ * Setting the endpoint label to a non-empty string creates a private endpoint database.
3830
+ * 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.
3831
+ * 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.
3662
3832
  :param pulumi.Input[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.
3663
3833
  :param pulumi.Input[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.
3664
3834
  :param pulumi.Input[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).
@@ -3671,19 +3841,27 @@ class AutonomousDatabase(pulumi.CustomResource):
3671
3841
 
3672
3842
  This cannot be used in conjunction with adminPassword.
3673
3843
  :param pulumi.Input[int] secret_version_number: (Updatable) The version of the vault secret. If no version is specified, the latest version will be used.
3674
- :param pulumi.Input[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.
3844
+ :param pulumi.Input[str] source: The source of the database:
3845
+ * Use `NONE` for creating a new Autonomous Database.
3846
+ * 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.
3847
+ * 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.
3848
+ * Use `CLONE_TO_REFRESHABLE` for creating a refreshable clone.
3675
3849
 
3676
- For Autonomous Databases on [shared Exadata infrastructure](https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html), 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).
3850
+ For [Autonomous Database Serverless](https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html) instances, the following cloning options are available:
3851
+ * 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.
3852
+ * 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).
3677
3853
  :param pulumi.Input[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.
3678
3854
  :param pulumi.Input[Sequence[pulumi.Input[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`.
3679
3855
 
3680
- For shared Exadata infrastructure, 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"]`
3856
+ 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"]`
3681
3857
 
3682
3858
  For an update operation, if you want to delete all the IPs in the ACL, use an array with a single empty string entry.
3683
3859
 
3860
+ If `arePrimaryWhitelistedIpsUsed` is 'TRUE' then Autonomous Database uses `whitelisted_ips` primary's IP access control list (ACL) as `standbywhitelistedips` for the disaster recovery peer.
3861
+
3684
3862
  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.
3685
3863
  :param pulumi.Input[str] state: The current state of the Autonomous Database.
3686
- :param pulumi.Input[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.
3864
+ :param pulumi.Input[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`.
3687
3865
 
3688
3866
  **Subnet Restrictions:**
3689
3867
  * 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.
@@ -3691,20 +3869,19 @@ class AutonomousDatabase(pulumi.CustomResource):
3691
3869
  * For Autonomous Database, setting this will disable public secure access to the database.
3692
3870
 
3693
3871
  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.
3694
- :param pulumi.Input[str] switchover_to: It is applicable only when `is_data_guard_enabled` is true. Could be set to `PRIMARY` or `STANDBY`. Default value is `PRIMARY`.
3695
- :param pulumi.Input[str] switchover_to_remote_peer_id: (Updatable) It is applicable only when `role` is set, and `is_dedicated` is false. It takes the [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the remote peer to switchover to.
3872
+ :param pulumi.Input[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`.
3873
+ :param pulumi.Input[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.
3874
+ :param pulumi.Input[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.
3696
3875
  :param pulumi.Input[str] timestamp: The timestamp specified for the point-in-time clone of the source Autonomous Database. The timestamp must be in the past.
3697
3876
  :param pulumi.Input[bool] use_latest_available_backup_time_stamp: Clone from latest available backup timestamp.
3698
- :param pulumi.Input[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).
3877
+ :param pulumi.Input[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.
3699
3878
  :param pulumi.Input[Sequence[pulumi.Input[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`.
3700
3879
 
3701
- For shared Exadata infrastructure, 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"]`
3880
+ 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"]`
3702
3881
 
3703
3882
  For an update operation, if you want to delete all the IPs in the ACL, use an array with a single empty string entry.
3704
3883
 
3705
3884
  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 `[""]`.
3706
-
3707
- 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 `[""]`.
3708
3885
  """
3709
3886
  ...
3710
3887
  @overload
@@ -3744,6 +3921,8 @@ class AutonomousDatabase(pulumi.CustomResource):
3744
3921
  opts: Optional[pulumi.ResourceOptions] = None,
3745
3922
  admin_password: Optional[pulumi.Input[str]] = None,
3746
3923
  are_primary_whitelisted_ips_used: Optional[pulumi.Input[bool]] = None,
3924
+ auto_refresh_frequency_in_seconds: Optional[pulumi.Input[int]] = None,
3925
+ auto_refresh_point_lag_in_seconds: Optional[pulumi.Input[int]] = None,
3747
3926
  autonomous_container_database_id: Optional[pulumi.Input[str]] = None,
3748
3927
  autonomous_database_backup_id: Optional[pulumi.Input[str]] = None,
3749
3928
  autonomous_database_id: Optional[pulumi.Input[str]] = None,
@@ -3811,6 +3990,7 @@ class AutonomousDatabase(pulumi.CustomResource):
3811
3990
  subnet_id: Optional[pulumi.Input[str]] = None,
3812
3991
  switchover_to: Optional[pulumi.Input[str]] = None,
3813
3992
  switchover_to_remote_peer_id: Optional[pulumi.Input[str]] = None,
3993
+ time_of_auto_refresh_start: Optional[pulumi.Input[str]] = None,
3814
3994
  timestamp: Optional[pulumi.Input[str]] = None,
3815
3995
  use_latest_available_backup_time_stamp: Optional[pulumi.Input[bool]] = None,
3816
3996
  vault_id: Optional[pulumi.Input[str]] = None,
@@ -3826,6 +4006,8 @@ class AutonomousDatabase(pulumi.CustomResource):
3826
4006
 
3827
4007
  __props__.__dict__["admin_password"] = None if admin_password is None else pulumi.Output.secret(admin_password)
3828
4008
  __props__.__dict__["are_primary_whitelisted_ips_used"] = are_primary_whitelisted_ips_used
4009
+ __props__.__dict__["auto_refresh_frequency_in_seconds"] = auto_refresh_frequency_in_seconds
4010
+ __props__.__dict__["auto_refresh_point_lag_in_seconds"] = auto_refresh_point_lag_in_seconds
3829
4011
  __props__.__dict__["autonomous_container_database_id"] = autonomous_container_database_id
3830
4012
  __props__.__dict__["autonomous_database_backup_id"] = autonomous_database_backup_id
3831
4013
  __props__.__dict__["autonomous_database_id"] = autonomous_database_id
@@ -3897,6 +4079,7 @@ class AutonomousDatabase(pulumi.CustomResource):
3897
4079
  __props__.__dict__["subnet_id"] = subnet_id
3898
4080
  __props__.__dict__["switchover_to"] = switchover_to
3899
4081
  __props__.__dict__["switchover_to_remote_peer_id"] = switchover_to_remote_peer_id
4082
+ __props__.__dict__["time_of_auto_refresh_start"] = time_of_auto_refresh_start
3900
4083
  __props__.__dict__["timestamp"] = timestamp
3901
4084
  __props__.__dict__["use_latest_available_backup_time_stamp"] = use_latest_available_backup_time_stamp
3902
4085
  __props__.__dict__["vault_id"] = vault_id
@@ -3972,6 +4155,8 @@ class AutonomousDatabase(pulumi.CustomResource):
3972
4155
  allocated_storage_size_in_tbs: Optional[pulumi.Input[float]] = None,
3973
4156
  apex_details: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['AutonomousDatabaseApexDetailArgs']]]]] = None,
3974
4157
  are_primary_whitelisted_ips_used: Optional[pulumi.Input[bool]] = None,
4158
+ auto_refresh_frequency_in_seconds: Optional[pulumi.Input[int]] = None,
4159
+ auto_refresh_point_lag_in_seconds: Optional[pulumi.Input[int]] = None,
3975
4160
  autonomous_container_database_id: Optional[pulumi.Input[str]] = None,
3976
4161
  autonomous_database_backup_id: Optional[pulumi.Input[str]] = None,
3977
4162
  autonomous_database_id: Optional[pulumi.Input[str]] = None,
@@ -4079,6 +4264,7 @@ class AutonomousDatabase(pulumi.CustomResource):
4079
4264
  time_local_data_guard_enabled: Optional[pulumi.Input[str]] = None,
4080
4265
  time_maintenance_begin: Optional[pulumi.Input[str]] = None,
4081
4266
  time_maintenance_end: Optional[pulumi.Input[str]] = None,
4267
+ time_of_auto_refresh_start: Optional[pulumi.Input[str]] = None,
4082
4268
  time_of_joining_resource_pool: Optional[pulumi.Input[str]] = None,
4083
4269
  time_of_last_failover: Optional[pulumi.Input[str]] = None,
4084
4270
  time_of_last_refresh: Optional[pulumi.Input[str]] = None,
@@ -4102,31 +4288,38 @@ class AutonomousDatabase(pulumi.CustomResource):
4102
4288
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
4103
4289
  :param pulumi.ResourceOptions opts: Options for the resource.
4104
4290
  :param pulumi.Input[float] actual_used_data_storage_size_in_tbs: The current amount of storage in use for user and system data, in terabytes (TB).
4105
- :param pulumi.Input[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" and for new, full and metadata clone databases. This parameter is optional only if you are cloning or using a secret for the password. Not allowed for ADG and refreshable clones.
4291
+ :param pulumi.Input[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".
4106
4292
  :param pulumi.Input[float] allocated_storage_size_in_tbs: The amount of storage currently allocated for the database tables and billed for, rounded up. When auto-scaling is not enabled, this value is equal to the `dataStorageSizeInTBs` value. You can compare this value to the `actualUsedDataStorageSizeInTBs` value to determine if a manual shrink operation is appropriate for your allocated storage.
4107
4293
  :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['AutonomousDatabaseApexDetailArgs']]]] apex_details: Information about Oracle APEX Application Development.
4108
4294
  :param pulumi.Input[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.
4109
- :param pulumi.Input[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.
4295
+ :param pulumi.Input[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.
4296
+ :param pulumi.Input[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.
4297
+ :param pulumi.Input[str] autonomous_container_database_id: The Autonomous Container Database [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
4110
4298
  :param pulumi.Input[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.
4111
4299
  :param pulumi.Input[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.
4112
- :param pulumi.Input[str] autonomous_maintenance_schedule_type: The maintenance schedule type of the Autonomous Database on shared Exadata infrastructure. 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.
4300
+ :param pulumi.Input[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.
4113
4301
  :param pulumi.Input[Sequence[pulumi.Input[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.
4114
4302
  :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['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.
4115
4303
  :param pulumi.Input[int] backup_retention_period_in_days: (Updatable) Retention period, in days, for backups.
4116
- :param pulumi.Input[str] character_set: The character set for the autonomous database. The default is AL32UTF8. Allowed values for an Autonomous Database on shared infrastructure as as returned by [List Autonomous Database Character Sets](https://www.terraform.io/autonomousDatabaseCharacterSets)
4304
+ :param pulumi.Input[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)
4117
4305
 
4118
4306
  For an Autonomous Database on dedicated infrastructure, the allowed values are:
4119
4307
 
4120
4308
  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
4121
- :param pulumi.Input[str] clone_type: The Autonomous Database clone type.
4309
+ :param pulumi.Input[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.
4122
4310
  :param pulumi.Input[str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment of the Autonomous Database.
4123
4311
  :param pulumi.Input[float] compute_count: (Updatable) Compute used by database tools.
4124
4312
  :param pulumi.Input[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.
4125
4313
  :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['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.
4126
4314
  :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['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..."}`
4127
4315
  :param pulumi.Input[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.
4128
-
4129
4316
  **Note:** This parameter cannot be used with the `ocpuCount` parameter. This input is ignored for Always Free resources.
4317
+ * The data type must be an *integer*.
4318
+ * The minimum number of cores for all types of autonomous database is *1*
4319
+ * The maximum number of cores is as follows:
4320
+ * Autonomous Database Serverless instances: The maximum number of cores is *128*.
4321
+ * 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.
4322
+ * Providing `computeModel` and `computeCount` is the preferred method for setting CPUs for both OCPU and ECPU.
4130
4323
  :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['AutonomousDatabaseCustomerContactArgs']]]] customer_contacts: (Updatable) Customer Contacts.
4131
4324
  :param pulumi.Input[str] data_safe_status: (Updatable) Status of the Data Safe registration for this Autonomous Database. Could be REGISTERED or NOT_REGISTERED.
4132
4325
  :param pulumi.Input[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.
@@ -4137,9 +4330,9 @@ class AutonomousDatabase(pulumi.CustomResource):
4137
4330
  :param pulumi.Input[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).
4138
4331
 
4139
4332
  **Note:** This parameter cannot be used with the `dataStorageSizeInGBs` parameter. This input is ignored for Always Free resources.
4140
- :param pulumi.Input[str] database_edition: (Updatable) The Oracle Database Edition that applies to the Autonomous databases.
4333
+ :param pulumi.Input[str] database_edition: (Updatable) The Oracle Database Edition that applies to the Autonomous databases. It can be set to `ENTERPRISE_EDITION` or `STANDARD_EDITION`.
4141
4334
  :param pulumi.Input[str] database_management_status: Status of Database Management for this Autonomous Database.
4142
- :param pulumi.Input[str] dataguard_region_type: **Deprecated** (Optional) The Autonomous Data Guard region type of the Autonomous Database. For Autonomous Databases on shared Exadata infrastructure, 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.
4335
+ :param pulumi.Input[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.
4143
4336
  :param pulumi.Input[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.
4144
4337
  :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['AutonomousDatabaseDbToolsDetailArgs']]]] db_tools_details: (Updatable) The list of database tools details.
4145
4338
 
@@ -4153,7 +4346,7 @@ class AutonomousDatabase(pulumi.CustomResource):
4153
4346
 
4154
4347
  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.
4155
4348
  :param pulumi.Input[Mapping[str, Any]] 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).
4156
- :param pulumi.Input[str] disaster_recovery_region_type: **Deprecated** The disaster recovery (DR) region type of the Autonomous Database. For Shared 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.
4349
+ :param pulumi.Input[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.
4157
4350
  :param pulumi.Input[str] display_name: (Updatable) The user-friendly name for the Autonomous Database. The name does not have to be unique.
4158
4351
  :param pulumi.Input[int] failed_data_recovery_in_seconds: Indicates the number of seconds of data loss for a Data Guard failover.
4159
4352
  :param pulumi.Input[Mapping[str, Any]] 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"}`
@@ -4172,29 +4365,29 @@ class AutonomousDatabase(pulumi.CustomResource):
4172
4365
  :param pulumi.Input[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.
4173
4366
  :param pulumi.Input[bool] is_mtls_connection_required: (Updatable) Indicates whether the Autonomous Database requires mTLS connections.
4174
4367
  :param pulumi.Input[bool] is_preview: Indicates if the Autonomous Database version is a preview version.
4175
- :param pulumi.Input[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 [shared Exadata infrastructure](https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html).
4368
+ :param pulumi.Input[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).
4176
4369
  :param pulumi.Input[bool] is_reconnect_clone_enabled: Indicates if the refreshable clone can be reconnected to its source database.
4177
4370
  :param pulumi.Input[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.
4178
4371
  :param pulumi.Input[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.
4179
4372
  :param pulumi.Input[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.
4180
- :param pulumi.Input[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 shared databases i.e. where `is_dedicated` is false.
4373
+ :param pulumi.Input[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.
4181
4374
 
4182
4375
  ** IMPORTANT **
4183
4376
  Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
4184
4377
  :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['AutonomousDatabaseKeyHistoryEntryArgs']]]] key_history_entries: Key History Entry.
4185
- :param pulumi.Input[str] key_store_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the key store.
4378
+ :param pulumi.Input[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.
4186
4379
  :param pulumi.Input[str] key_store_wallet_name: The wallet name for Oracle Key Vault.
4187
4380
  :param pulumi.Input[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.
4188
4381
  :param pulumi.Input[str] kms_key_lifecycle_details: KMS key lifecycle details.
4189
- :param pulumi.Input[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.
4382
+ :param pulumi.Input[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.
4190
4383
  :param pulumi.Input[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`.
4191
4384
  :param pulumi.Input[str] lifecycle_details: Additional information about the current lifecycle state.
4192
4385
  :param pulumi.Input[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
4193
- :param pulumi.Input[str] local_disaster_recovery_type: Indicates the local disaster recovery (DR) type of the Shared Autonomous Database. Autonomous Data Guard (`ADG`) DR type provides business critical DR with a faster recovery time objective (RTO) during failover or switchover. Backup-based (`BACKUP_BASED`) DR type provides lower cost DR with a slower RTO during failover or switchover.
4386
+ :param pulumi.Input[str] local_disaster_recovery_type: Indicates the local disaster recovery (DR) type of the Serverless Autonomous Database. Autonomous Data Guard (`ADG`) DR type provides business critical DR with a faster recovery time objective (RTO) during failover or switchover. Backup-based (`BACKUP_BASED`) DR type provides lower cost DR with a slower RTO during failover or switchover.
4194
4387
  :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['AutonomousDatabaseLocalStandbyDbArgs']]]] local_standby_dbs: Autonomous Data Guard local (same region) standby database details.
4195
4388
  :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['AutonomousDatabaseLongTermBackupScheduleArgs']]]] long_term_backup_schedules: Details for the long-term backup schedule.
4196
- :param pulumi.Input[int] max_cpu_core_count: (Updatable) The number of Max OCPU cores to be made available to the autonomous database with auto scaling of cpu enabled.
4197
- :param pulumi.Input[int] memory_per_oracle_compute_unit_in_gbs: The amount of memory (in GBs) enabled per each OCPU core in Autonomous VM Cluster.
4389
+ :param pulumi.Input[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.
4390
+ :param pulumi.Input[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.
4198
4391
  :param pulumi.Input[str] ncharacter_set: The national character set for the autonomous database. The default is AL16UTF16. Allowed values are: AL16UTF16 or UTF8.
4199
4392
  :param pulumi.Input[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.
4200
4393
  :param pulumi.Input[str] next_long_term_backup_time_stamp: The date and time when the next long-term backup would be created.
@@ -4206,17 +4399,21 @@ class AutonomousDatabase(pulumi.CustomResource):
4206
4399
  * 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.)
4207
4400
  * 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.
4208
4401
  * For Autonomous Database Serverless instances, this parameter is not used.
4402
+ * Providing `computeModel` and `computeCount` is the preferred method for setting CPUs for both OCPU and ECPU.
4209
4403
 
4210
4404
  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.
4211
4405
 
4212
4406
  **Note:** This parameter cannot be used with the `cpuCoreCount` parameter.
4213
4407
  :param pulumi.Input[str] open_mode: Indicates the Autonomous Database mode. The database can be opened in `READ_ONLY` or `READ_WRITE` mode.
4214
4408
  :param pulumi.Input[str] operations_insights_status: (Updatable) Status of Operations Insights for this Autonomous Database. Values supported are `ENABLED` and `NOT_ENABLED`
4215
- :param pulumi.Input[Sequence[pulumi.Input[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 shared Exadata infrastructure, standby databases located in the same region as the source primary database do not have OCIDs.
4409
+ :param pulumi.Input[Sequence[pulumi.Input[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.
4216
4410
  :param pulumi.Input[str] permission_level: The Autonomous Database permission level. Restricted mode allows access only by admin users.
4217
- :param pulumi.Input[str] private_endpoint: The private endpoint for the resource.
4411
+ :param pulumi.Input[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.
4218
4412
  :param pulumi.Input[str] private_endpoint_ip: The private endpoint Ip address for the resource.
4219
- :param pulumi.Input[str] private_endpoint_label: (Updatable) The private endpoint label for the resource.
4413
+ :param pulumi.Input[str] private_endpoint_label: (Updatable) (Optional) (Updatable) The resource's private endpoint label.
4414
+ * Setting the endpoint label to a non-empty string creates a private endpoint database.
4415
+ * 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.
4416
+ * 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.
4220
4417
  :param pulumi.Input[Sequence[pulumi.Input[float]]] provisionable_cpuses: An array of CPU values that an Autonomous Database can be scaled to.
4221
4418
  :param pulumi.Input[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.
4222
4419
  :param pulumi.Input[str] refreshable_status: The refresh status of the clone. REFRESHING indicates that the clone is currently being refreshed with data from the source Autonomous Database.
@@ -4234,20 +4431,28 @@ class AutonomousDatabase(pulumi.CustomResource):
4234
4431
  This cannot be used in conjunction with adminPassword.
4235
4432
  :param pulumi.Input[int] secret_version_number: (Updatable) The version of the vault secret. If no version is specified, the latest version will be used.
4236
4433
  :param pulumi.Input[str] service_console_url: The URL of the Service Console for the Autonomous Database.
4237
- :param pulumi.Input[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.
4434
+ :param pulumi.Input[str] source: The source of the database:
4435
+ * Use `NONE` for creating a new Autonomous Database.
4436
+ * 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.
4437
+ * 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.
4438
+ * Use `CLONE_TO_REFRESHABLE` for creating a refreshable clone.
4238
4439
 
4239
- For Autonomous Databases on [shared Exadata infrastructure](https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html), 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).
4440
+ For [Autonomous Database Serverless](https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html) instances, the following cloning options are available:
4441
+ * 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.
4442
+ * 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).
4240
4443
  :param pulumi.Input[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.
4241
4444
  :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['AutonomousDatabaseStandbyDbArgs']]]] standby_dbs: **Deprecated** Autonomous Data Guard standby database details.
4242
4445
  :param pulumi.Input[Sequence[pulumi.Input[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`.
4243
4446
 
4244
- For shared Exadata infrastructure, 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"]`
4447
+ 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"]`
4245
4448
 
4246
4449
  For an update operation, if you want to delete all the IPs in the ACL, use an array with a single empty string entry.
4247
4450
 
4451
+ If `arePrimaryWhitelistedIpsUsed` is 'TRUE' then Autonomous Database uses `whitelisted_ips` primary's IP access control list (ACL) as `standbywhitelistedips` for the disaster recovery peer.
4452
+
4248
4453
  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.
4249
4454
  :param pulumi.Input[str] state: The current state of the Autonomous Database.
4250
- :param pulumi.Input[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.
4455
+ :param pulumi.Input[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`.
4251
4456
 
4252
4457
  **Subnet Restrictions:**
4253
4458
  * 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.
@@ -4256,8 +4461,8 @@ class AutonomousDatabase(pulumi.CustomResource):
4256
4461
 
4257
4462
  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.
4258
4463
  :param pulumi.Input[Sequence[pulumi.Input[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.
4259
- :param pulumi.Input[str] switchover_to: It is applicable only when `is_data_guard_enabled` is true. Could be set to `PRIMARY` or `STANDBY`. Default value is `PRIMARY`.
4260
- :param pulumi.Input[str] switchover_to_remote_peer_id: (Updatable) It is applicable only when `role` is set, and `is_dedicated` is false. It takes the [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the remote peer to switchover to.
4464
+ :param pulumi.Input[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`.
4465
+ :param pulumi.Input[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.
4261
4466
  :param pulumi.Input[Mapping[str, Any]] 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).
4262
4467
  :param pulumi.Input[str] time_created: The date and time the Autonomous Database was created.
4263
4468
  :param pulumi.Input[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.
@@ -4266,6 +4471,7 @@ class AutonomousDatabase(pulumi.CustomResource):
4266
4471
  :param pulumi.Input[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.
4267
4472
  :param pulumi.Input[str] time_maintenance_begin: The date and time when maintenance will begin.
4268
4473
  :param pulumi.Input[str] time_maintenance_end: The date and time when maintenance will end.
4474
+ :param pulumi.Input[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.
4269
4475
  :param pulumi.Input[str] time_of_last_failover: The timestamp of the last failover operation.
4270
4476
  :param pulumi.Input[str] time_of_last_refresh: The date and time when last refresh happened.
4271
4477
  :param pulumi.Input[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.
@@ -4278,16 +4484,14 @@ class AutonomousDatabase(pulumi.CustomResource):
4278
4484
  :param pulumi.Input[bool] use_latest_available_backup_time_stamp: Clone from latest available backup timestamp.
4279
4485
  :param pulumi.Input[int] used_data_storage_size_in_gbs: The storage space consumed by Autonomous Database in GBs.
4280
4486
  :param pulumi.Input[int] used_data_storage_size_in_tbs: The amount of storage that has been used, in terabytes.
4281
- :param pulumi.Input[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).
4487
+ :param pulumi.Input[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.
4282
4488
  :param pulumi.Input[Sequence[pulumi.Input[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`.
4283
4489
 
4284
- For shared Exadata infrastructure, 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"]`
4490
+ 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"]`
4285
4491
 
4286
4492
  For an update operation, if you want to delete all the IPs in the ACL, use an array with a single empty string entry.
4287
4493
 
4288
4494
  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 `[""]`.
4289
-
4290
- 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 `[""]`.
4291
4495
  """
4292
4496
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
4293
4497
 
@@ -4298,6 +4502,8 @@ class AutonomousDatabase(pulumi.CustomResource):
4298
4502
  __props__.__dict__["allocated_storage_size_in_tbs"] = allocated_storage_size_in_tbs
4299
4503
  __props__.__dict__["apex_details"] = apex_details
4300
4504
  __props__.__dict__["are_primary_whitelisted_ips_used"] = are_primary_whitelisted_ips_used
4505
+ __props__.__dict__["auto_refresh_frequency_in_seconds"] = auto_refresh_frequency_in_seconds
4506
+ __props__.__dict__["auto_refresh_point_lag_in_seconds"] = auto_refresh_point_lag_in_seconds
4301
4507
  __props__.__dict__["autonomous_container_database_id"] = autonomous_container_database_id
4302
4508
  __props__.__dict__["autonomous_database_backup_id"] = autonomous_database_backup_id
4303
4509
  __props__.__dict__["autonomous_database_id"] = autonomous_database_id
@@ -4405,6 +4611,7 @@ class AutonomousDatabase(pulumi.CustomResource):
4405
4611
  __props__.__dict__["time_local_data_guard_enabled"] = time_local_data_guard_enabled
4406
4612
  __props__.__dict__["time_maintenance_begin"] = time_maintenance_begin
4407
4613
  __props__.__dict__["time_maintenance_end"] = time_maintenance_end
4614
+ __props__.__dict__["time_of_auto_refresh_start"] = time_of_auto_refresh_start
4408
4615
  __props__.__dict__["time_of_joining_resource_pool"] = time_of_joining_resource_pool
4409
4616
  __props__.__dict__["time_of_last_failover"] = time_of_last_failover
4410
4617
  __props__.__dict__["time_of_last_refresh"] = time_of_last_refresh
@@ -4434,7 +4641,7 @@ class AutonomousDatabase(pulumi.CustomResource):
4434
4641
  @pulumi.getter(name="adminPassword")
4435
4642
  def admin_password(self) -> pulumi.Output[str]:
4436
4643
  """
4437
- (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" and for new, full and metadata clone databases. This parameter is optional only if you are cloning or using a secret for the password. Not allowed for ADG and refreshable clones.
4644
+ (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".
4438
4645
  """
4439
4646
  return pulumi.get(self, "admin_password")
4440
4647
 
@@ -4462,11 +4669,27 @@ class AutonomousDatabase(pulumi.CustomResource):
4462
4669
  """
4463
4670
  return pulumi.get(self, "are_primary_whitelisted_ips_used")
4464
4671
 
4672
+ @property
4673
+ @pulumi.getter(name="autoRefreshFrequencyInSeconds")
4674
+ def auto_refresh_frequency_in_seconds(self) -> pulumi.Output[int]:
4675
+ """
4676
+ (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.
4677
+ """
4678
+ return pulumi.get(self, "auto_refresh_frequency_in_seconds")
4679
+
4680
+ @property
4681
+ @pulumi.getter(name="autoRefreshPointLagInSeconds")
4682
+ def auto_refresh_point_lag_in_seconds(self) -> pulumi.Output[int]:
4683
+ """
4684
+ (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.
4685
+ """
4686
+ return pulumi.get(self, "auto_refresh_point_lag_in_seconds")
4687
+
4465
4688
  @property
4466
4689
  @pulumi.getter(name="autonomousContainerDatabaseId")
4467
4690
  def autonomous_container_database_id(self) -> pulumi.Output[str]:
4468
4691
  """
4469
- 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.
4692
+ The Autonomous Container Database [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
4470
4693
  """
4471
4694
  return pulumi.get(self, "autonomous_container_database_id")
4472
4695
 
@@ -4490,7 +4713,7 @@ class AutonomousDatabase(pulumi.CustomResource):
4490
4713
  @pulumi.getter(name="autonomousMaintenanceScheduleType")
4491
4714
  def autonomous_maintenance_schedule_type(self) -> pulumi.Output[str]:
4492
4715
  """
4493
- The maintenance schedule type of the Autonomous Database on shared Exadata infrastructure. 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.
4716
+ 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.
4494
4717
  """
4495
4718
  return pulumi.get(self, "autonomous_maintenance_schedule_type")
4496
4719
 
@@ -4522,7 +4745,7 @@ class AutonomousDatabase(pulumi.CustomResource):
4522
4745
  @pulumi.getter(name="characterSet")
4523
4746
  def character_set(self) -> pulumi.Output[str]:
4524
4747
  """
4525
- The character set for the autonomous database. The default is AL32UTF8. Allowed values for an Autonomous Database on shared infrastructure as as returned by [List Autonomous Database Character Sets](https://www.terraform.io/autonomousDatabaseCharacterSets)
4748
+ 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)
4526
4749
 
4527
4750
  For an Autonomous Database on dedicated infrastructure, the allowed values are:
4528
4751
 
@@ -4534,7 +4757,7 @@ class AutonomousDatabase(pulumi.CustomResource):
4534
4757
  @pulumi.getter(name="cloneType")
4535
4758
  def clone_type(self) -> pulumi.Output[str]:
4536
4759
  """
4537
- The Autonomous Database clone type.
4760
+ 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.
4538
4761
  """
4539
4762
  return pulumi.get(self, "clone_type")
4540
4763
 
@@ -4583,8 +4806,13 @@ class AutonomousDatabase(pulumi.CustomResource):
4583
4806
  def cpu_core_count(self) -> pulumi.Output[int]:
4584
4807
  """
4585
4808
  (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.
4586
-
4587
4809
  **Note:** This parameter cannot be used with the `ocpuCount` parameter. This input is ignored for Always Free resources.
4810
+ * The data type must be an *integer*.
4811
+ * The minimum number of cores for all types of autonomous database is *1*
4812
+ * The maximum number of cores is as follows:
4813
+ * Autonomous Database Serverless instances: The maximum number of cores is *128*.
4814
+ * 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.
4815
+ * Providing `computeModel` and `computeCount` is the preferred method for setting CPUs for both OCPU and ECPU.
4588
4816
  """
4589
4817
  return pulumi.get(self, "cpu_core_count")
4590
4818
 
@@ -4630,7 +4858,7 @@ class AutonomousDatabase(pulumi.CustomResource):
4630
4858
  @pulumi.getter(name="databaseEdition")
4631
4859
  def database_edition(self) -> pulumi.Output[str]:
4632
4860
  """
4633
- (Updatable) The Oracle Database Edition that applies to the Autonomous databases.
4861
+ (Updatable) The Oracle Database Edition that applies to the Autonomous databases. It can be set to `ENTERPRISE_EDITION` or `STANDARD_EDITION`.
4634
4862
  """
4635
4863
  return pulumi.get(self, "database_edition")
4636
4864
 
@@ -4646,7 +4874,7 @@ class AutonomousDatabase(pulumi.CustomResource):
4646
4874
  @pulumi.getter(name="dataguardRegionType")
4647
4875
  def dataguard_region_type(self) -> pulumi.Output[str]:
4648
4876
  """
4649
- **Deprecated** (Optional) The Autonomous Data Guard region type of the Autonomous Database. For Autonomous Databases on shared Exadata infrastructure, 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.
4877
+ **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.
4650
4878
  """
4651
4879
  return pulumi.get(self, "dataguard_region_type")
4652
4880
 
@@ -4702,7 +4930,7 @@ class AutonomousDatabase(pulumi.CustomResource):
4702
4930
  @pulumi.getter(name="disasterRecoveryRegionType")
4703
4931
  def disaster_recovery_region_type(self) -> pulumi.Output[str]:
4704
4932
  """
4705
- **Deprecated** The disaster recovery (DR) region type of the Autonomous Database. For Shared 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.
4933
+ **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.
4706
4934
  """
4707
4935
  return pulumi.get(self, "disaster_recovery_region_type")
4708
4936
 
@@ -4840,7 +5068,7 @@ class AutonomousDatabase(pulumi.CustomResource):
4840
5068
  @pulumi.getter(name="isPreviewVersionWithServiceTermsAccepted")
4841
5069
  def is_preview_version_with_service_terms_accepted(self) -> pulumi.Output[bool]:
4842
5070
  """
4843
- 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 [shared Exadata infrastructure](https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html).
5071
+ 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).
4844
5072
  """
4845
5073
  return pulumi.get(self, "is_preview_version_with_service_terms_accepted")
4846
5074
 
@@ -4880,7 +5108,7 @@ class AutonomousDatabase(pulumi.CustomResource):
4880
5108
  @pulumi.getter(name="isShrinkOnly")
4881
5109
  def is_shrink_only(self) -> pulumi.Output[Optional[bool]]:
4882
5110
  """
4883
- (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 shared databases i.e. where `is_dedicated` is false.
5111
+ (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.
4884
5112
 
4885
5113
  ** IMPORTANT **
4886
5114
  Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
@@ -4902,7 +5130,7 @@ class AutonomousDatabase(pulumi.CustomResource):
4902
5130
  @pulumi.getter(name="keyStoreId")
4903
5131
  def key_store_id(self) -> pulumi.Output[str]:
4904
5132
  """
4905
- The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the key store.
5133
+ 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.
4906
5134
  """
4907
5135
  return pulumi.get(self, "key_store_id")
4908
5136
 
@@ -4934,7 +5162,7 @@ class AutonomousDatabase(pulumi.CustomResource):
4934
5162
  @pulumi.getter(name="kmsKeyVersionId")
4935
5163
  def kms_key_version_id(self) -> pulumi.Output[str]:
4936
5164
  """
4937
- 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.
5165
+ 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.
4938
5166
  """
4939
5167
  return pulumi.get(self, "kms_key_version_id")
4940
5168
 
@@ -4966,7 +5194,7 @@ class AutonomousDatabase(pulumi.CustomResource):
4966
5194
  @pulumi.getter(name="localDisasterRecoveryType")
4967
5195
  def local_disaster_recovery_type(self) -> pulumi.Output[str]:
4968
5196
  """
4969
- Indicates the local disaster recovery (DR) type of the Shared Autonomous Database. Autonomous Data Guard (`ADG`) DR type provides business critical DR with a faster recovery time objective (RTO) during failover or switchover. Backup-based (`BACKUP_BASED`) DR type provides lower cost DR with a slower RTO during failover or switchover.
5197
+ Indicates the local disaster recovery (DR) type of the Serverless Autonomous Database. Autonomous Data Guard (`ADG`) DR type provides business critical DR with a faster recovery time objective (RTO) during failover or switchover. Backup-based (`BACKUP_BASED`) DR type provides lower cost DR with a slower RTO during failover or switchover.
4970
5198
  """
4971
5199
  return pulumi.get(self, "local_disaster_recovery_type")
4972
5200
 
@@ -4990,7 +5218,7 @@ class AutonomousDatabase(pulumi.CustomResource):
4990
5218
  @pulumi.getter(name="maxCpuCoreCount")
4991
5219
  def max_cpu_core_count(self) -> pulumi.Output[int]:
4992
5220
  """
4993
- (Updatable) The number of Max OCPU cores to be made available to the autonomous database with auto scaling of cpu enabled.
5221
+ (Updatable) **Deprecated.** The number of Max OCPU cores to be made available to the autonomous database with auto scaling of cpu enabled.
4994
5222
  """
4995
5223
  return pulumi.get(self, "max_cpu_core_count")
4996
5224
 
@@ -4998,7 +5226,7 @@ class AutonomousDatabase(pulumi.CustomResource):
4998
5226
  @pulumi.getter(name="memoryPerOracleComputeUnitInGbs")
4999
5227
  def memory_per_oracle_compute_unit_in_gbs(self) -> pulumi.Output[int]:
5000
5228
  """
5001
- The amount of memory (in GBs) enabled per each OCPU core in Autonomous VM Cluster.
5229
+ 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.
5002
5230
  """
5003
5231
  return pulumi.get(self, "memory_per_oracle_compute_unit_in_gbs")
5004
5232
 
@@ -5045,6 +5273,7 @@ class AutonomousDatabase(pulumi.CustomResource):
5045
5273
  * 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.)
5046
5274
  * 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.
5047
5275
  * For Autonomous Database Serverless instances, this parameter is not used.
5276
+ * Providing `computeModel` and `computeCount` is the preferred method for setting CPUs for both OCPU and ECPU.
5048
5277
 
5049
5278
  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.
5050
5279
 
@@ -5072,7 +5301,7 @@ class AutonomousDatabase(pulumi.CustomResource):
5072
5301
  @pulumi.getter(name="peerDbIds")
5073
5302
  def peer_db_ids(self) -> pulumi.Output[Sequence[str]]:
5074
5303
  """
5075
- 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 shared Exadata infrastructure, standby databases located in the same region as the source primary database do not have OCIDs.
5304
+ 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.
5076
5305
  """
5077
5306
  return pulumi.get(self, "peer_db_ids")
5078
5307
 
@@ -5088,7 +5317,7 @@ class AutonomousDatabase(pulumi.CustomResource):
5088
5317
  @pulumi.getter(name="privateEndpoint")
5089
5318
  def private_endpoint(self) -> pulumi.Output[str]:
5090
5319
  """
5091
- The private endpoint for the resource.
5320
+ The private endpoint for the resource. This parameter is not used in Autonomous Databases using Serverless infrastructure and Exadata Cloud@Customer infrastructure.
5092
5321
  """
5093
5322
  return pulumi.get(self, "private_endpoint")
5094
5323
 
@@ -5104,7 +5333,10 @@ class AutonomousDatabase(pulumi.CustomResource):
5104
5333
  @pulumi.getter(name="privateEndpointLabel")
5105
5334
  def private_endpoint_label(self) -> pulumi.Output[str]:
5106
5335
  """
5107
- (Updatable) The private endpoint label for the resource.
5336
+ (Updatable) (Optional) (Updatable) The resource's private endpoint label.
5337
+ * Setting the endpoint label to a non-empty string creates a private endpoint database.
5338
+ * 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.
5339
+ * 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.
5108
5340
  """
5109
5341
  return pulumi.get(self, "private_endpoint_label")
5110
5342
 
@@ -5225,9 +5457,15 @@ class AutonomousDatabase(pulumi.CustomResource):
5225
5457
  @pulumi.getter
5226
5458
  def source(self) -> pulumi.Output[str]:
5227
5459
  """
5228
- 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.
5460
+ The source of the database:
5461
+ * Use `NONE` for creating a new Autonomous Database.
5462
+ * 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.
5463
+ * 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.
5464
+ * Use `CLONE_TO_REFRESHABLE` for creating a refreshable clone.
5229
5465
 
5230
- For Autonomous Databases on [shared Exadata infrastructure](https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html), 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).
5466
+ For [Autonomous Database Serverless](https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html) instances, the following cloning options are available:
5467
+ * 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.
5468
+ * 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).
5231
5469
  """
5232
5470
  return pulumi.get(self, "source")
5233
5471
 
@@ -5253,10 +5491,12 @@ class AutonomousDatabase(pulumi.CustomResource):
5253
5491
  """
5254
5492
  (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`.
5255
5493
 
5256
- For shared Exadata infrastructure, 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"]`
5494
+ 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"]`
5257
5495
 
5258
5496
  For an update operation, if you want to delete all the IPs in the ACL, use an array with a single empty string entry.
5259
5497
 
5498
+ If `arePrimaryWhitelistedIpsUsed` is 'TRUE' then Autonomous Database uses `whitelisted_ips` primary's IP access control list (ACL) as `standbywhitelistedips` for the disaster recovery peer.
5499
+
5260
5500
  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.
5261
5501
  """
5262
5502
  return pulumi.get(self, "standby_whitelisted_ips")
@@ -5273,7 +5513,7 @@ class AutonomousDatabase(pulumi.CustomResource):
5273
5513
  @pulumi.getter(name="subnetId")
5274
5514
  def subnet_id(self) -> pulumi.Output[str]:
5275
5515
  """
5276
- (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet the resource is associated with.
5516
+ (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`.
5277
5517
 
5278
5518
  **Subnet Restrictions:**
5279
5519
  * 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.
@@ -5296,7 +5536,7 @@ class AutonomousDatabase(pulumi.CustomResource):
5296
5536
  @pulumi.getter(name="switchoverTo")
5297
5537
  def switchover_to(self) -> pulumi.Output[Optional[str]]:
5298
5538
  """
5299
- It is applicable only when `is_data_guard_enabled` is true. Could be set to `PRIMARY` or `STANDBY`. Default value is `PRIMARY`.
5539
+ It is applicable only when `is_local_data_guard_enabled` is true. Could be set to `PRIMARY` or `STANDBY`. Default value is `PRIMARY`.
5300
5540
  """
5301
5541
  return pulumi.get(self, "switchover_to")
5302
5542
 
@@ -5304,7 +5544,7 @@ class AutonomousDatabase(pulumi.CustomResource):
5304
5544
  @pulumi.getter(name="switchoverToRemotePeerId")
5305
5545
  def switchover_to_remote_peer_id(self) -> pulumi.Output[Optional[str]]:
5306
5546
  """
5307
- (Updatable) It is applicable only when `role` is set, and `is_dedicated` is false. It takes the [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the remote peer to switchover to.
5547
+ (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.
5308
5548
  """
5309
5549
  return pulumi.get(self, "switchover_to_remote_peer_id")
5310
5550
 
@@ -5372,6 +5612,14 @@ class AutonomousDatabase(pulumi.CustomResource):
5372
5612
  """
5373
5613
  return pulumi.get(self, "time_maintenance_end")
5374
5614
 
5615
+ @property
5616
+ @pulumi.getter(name="timeOfAutoRefreshStart")
5617
+ def time_of_auto_refresh_start(self) -> pulumi.Output[str]:
5618
+ """
5619
+ 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.
5620
+ """
5621
+ return pulumi.get(self, "time_of_auto_refresh_start")
5622
+
5375
5623
  @property
5376
5624
  @pulumi.getter(name="timeOfJoiningResourcePool")
5377
5625
  def time_of_joining_resource_pool(self) -> pulumi.Output[str]:
@@ -5477,7 +5725,7 @@ class AutonomousDatabase(pulumi.CustomResource):
5477
5725
  @pulumi.getter(name="vaultId")
5478
5726
  def vault_id(self) -> pulumi.Output[str]:
5479
5727
  """
5480
- 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).
5728
+ 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.
5481
5729
  """
5482
5730
  return pulumi.get(self, "vault_id")
5483
5731
 
@@ -5487,12 +5735,10 @@ class AutonomousDatabase(pulumi.CustomResource):
5487
5735
  """
5488
5736
  (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`.
5489
5737
 
5490
- For shared Exadata infrastructure, 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"]`
5738
+ 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"]`
5491
5739
 
5492
5740
  For an update operation, if you want to delete all the IPs in the ACL, use an array with a single empty string entry.
5493
5741
 
5494
- 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 `[""]`.
5495
-
5496
5742
  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 `[""]`.
5497
5743
  """
5498
5744
  return pulumi.get(self, "whitelisted_ips")