pulumi-oci 2.12.0a1728593306__py3-none-any.whl → 2.13.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 (220) hide show
  1. pulumi_oci/__init__.py +169 -19
  2. pulumi_oci/analytics/analytics_instance.py +54 -5
  3. pulumi_oci/analytics/get_analytics_instance.py +18 -4
  4. pulumi_oci/analytics/outputs.py +12 -1
  5. pulumi_oci/containerengine/_inputs.py +341 -0
  6. pulumi_oci/containerengine/cluster.py +64 -0
  7. pulumi_oci/containerengine/get_cluster.py +12 -1
  8. pulumi_oci/containerengine/outputs.py +582 -0
  9. pulumi_oci/core/_inputs.py +947 -196
  10. pulumi_oci/core/boot_volume.py +90 -5
  11. pulumi_oci/core/cluster_network.py +7 -7
  12. pulumi_oci/core/get_block_volume_replica.py +15 -1
  13. pulumi_oci/core/get_boot_volume.py +15 -4
  14. pulumi_oci/core/get_boot_volume_replica.py +15 -1
  15. pulumi_oci/core/get_instance.py +29 -1
  16. pulumi_oci/core/get_vcn.py +15 -1
  17. pulumi_oci/core/get_vnic.py +15 -1
  18. pulumi_oci/core/get_volume.py +18 -4
  19. pulumi_oci/core/instance.py +87 -0
  20. pulumi_oci/core/instance_configuration.py +16 -0
  21. pulumi_oci/core/ipsec.py +183 -23
  22. pulumi_oci/core/network_security_group_security_rule.py +2 -2
  23. pulumi_oci/core/outputs.py +1282 -153
  24. pulumi_oci/core/service_gateway.py +13 -7
  25. pulumi_oci/core/vcn.py +65 -23
  26. pulumi_oci/core/virtual_network.py +35 -1
  27. pulumi_oci/core/vnic_attachment.py +2 -0
  28. pulumi_oci/core/volume.py +110 -12
  29. pulumi_oci/core/volume_backup_policy_assignment.py +68 -19
  30. pulumi_oci/core/volume_group.py +56 -5
  31. pulumi_oci/database/_inputs.py +905 -27
  32. pulumi_oci/database/autonomous_database.py +48 -28
  33. pulumi_oci/database/autonomous_database_backup.py +12 -12
  34. pulumi_oci/database/autonomous_exadata_infrastructure.py +2 -0
  35. pulumi_oci/database/autonomous_vm_cluster.py +2 -0
  36. pulumi_oci/database/backup.py +12 -12
  37. pulumi_oci/database/cloud_autonomous_vm_cluster.py +2 -0
  38. pulumi_oci/database/cloud_exadata_infrastructure.py +2 -0
  39. pulumi_oci/database/cloud_vm_cluster.py +71 -0
  40. pulumi_oci/database/database.py +15 -15
  41. pulumi_oci/database/database_upgrade.py +12 -12
  42. pulumi_oci/database/db_system.py +9 -9
  43. pulumi_oci/database/exadata_infrastructure.py +2 -0
  44. pulumi_oci/database/get_autonomous_container_database.py +1 -1
  45. pulumi_oci/database/get_autonomous_database.py +18 -4
  46. pulumi_oci/database/get_autonomous_database_backup.py +3 -3
  47. pulumi_oci/database/get_autonomous_databases.py +88 -5
  48. pulumi_oci/database/get_cloud_vm_cluster.py +15 -1
  49. pulumi_oci/database/get_database.py +3 -3
  50. pulumi_oci/database/get_pluggable_database.py +12 -1
  51. pulumi_oci/database/get_vm_cluster.py +15 -1
  52. pulumi_oci/database/outputs.py +1431 -74
  53. pulumi_oci/database/pluggable_database.py +34 -0
  54. pulumi_oci/database/vm_cluster.py +71 -0
  55. pulumi_oci/database/vm_cluster_add_virtual_network.py +28 -0
  56. pulumi_oci/database/vm_cluster_remove_virtual_machine.py +28 -0
  57. pulumi_oci/datasafe/__init__.py +13 -0
  58. pulumi_oci/datasafe/_inputs.py +441 -0
  59. pulumi_oci/datasafe/generate_on_prem_connector_configuration.py +271 -0
  60. pulumi_oci/datasafe/get_reports.py +23 -1
  61. pulumi_oci/datasafe/get_sql_collection.py +392 -0
  62. pulumi_oci/datasafe/get_sql_collection_analytics.py +309 -0
  63. pulumi_oci/datasafe/get_sql_collection_log_insights.py +207 -0
  64. pulumi_oci/datasafe/get_sql_collections.py +364 -0
  65. pulumi_oci/datasafe/get_sql_firewall_allowed_sql.py +337 -0
  66. pulumi_oci/datasafe/get_sql_firewall_allowed_sql_analytics.py +250 -0
  67. pulumi_oci/datasafe/get_sql_firewall_allowed_sqls.py +234 -0
  68. pulumi_oci/datasafe/get_sql_firewall_policies.py +386 -0
  69. pulumi_oci/datasafe/get_sql_firewall_policy.py +393 -0
  70. pulumi_oci/datasafe/get_sql_firewall_policy_analytics.py +305 -0
  71. pulumi_oci/datasafe/get_sql_firewall_violation_analytics.py +306 -0
  72. pulumi_oci/datasafe/get_sql_firewall_violations.py +208 -0
  73. pulumi_oci/datasafe/outputs.py +1808 -2
  74. pulumi_oci/desktops/_inputs.py +395 -17
  75. pulumi_oci/desktops/desktop_pool.py +253 -21
  76. pulumi_oci/desktops/get_desktop_pool.py +62 -5
  77. pulumi_oci/desktops/outputs.py +807 -25
  78. pulumi_oci/dns/__init__.py +2 -0
  79. pulumi_oci/dns/_inputs.py +1157 -12
  80. pulumi_oci/dns/action_create_zone_from_zone_file.py +42 -2
  81. pulumi_oci/dns/get_records.py +45 -13
  82. pulumi_oci/dns/get_resolver.py +8 -6
  83. pulumi_oci/dns/get_resolver_endpoint.py +8 -6
  84. pulumi_oci/dns/get_resolver_endpoints.py +2 -2
  85. pulumi_oci/dns/get_resolvers.py +12 -12
  86. pulumi_oci/dns/get_rrset.py +16 -16
  87. pulumi_oci/dns/get_rrsets.py +12 -10
  88. pulumi_oci/dns/get_view.py +8 -4
  89. pulumi_oci/dns/get_views.py +12 -12
  90. pulumi_oci/dns/get_zones.py +33 -13
  91. pulumi_oci/dns/outputs.py +1388 -79
  92. pulumi_oci/dns/record.py +12 -12
  93. pulumi_oci/dns/resolver.py +7 -7
  94. pulumi_oci/dns/resolver_endpoint.py +2 -2
  95. pulumi_oci/dns/rrset.py +50 -41
  96. pulumi_oci/dns/zone.py +176 -17
  97. pulumi_oci/dns/zone_promote_dnssec_key_version.py +328 -0
  98. pulumi_oci/dns/zone_stage_dnssec_key_version.py +318 -0
  99. pulumi_oci/fleetappsmanagement/__init__.py +43 -0
  100. pulumi_oci/fleetappsmanagement/_inputs.py +2057 -0
  101. pulumi_oci/fleetappsmanagement/fleet.py +955 -0
  102. pulumi_oci/fleetappsmanagement/fleet_credential.py +615 -0
  103. pulumi_oci/fleetappsmanagement/fleet_property.py +585 -0
  104. pulumi_oci/fleetappsmanagement/fleet_resource.py +851 -0
  105. pulumi_oci/fleetappsmanagement/get_announcements.py +166 -0
  106. pulumi_oci/fleetappsmanagement/get_fleet.py +394 -0
  107. pulumi_oci/fleetappsmanagement/get_fleet_compliance_report.py +164 -0
  108. pulumi_oci/fleetappsmanagement/get_fleet_credential.py +273 -0
  109. pulumi_oci/fleetappsmanagement/get_fleet_credentials.py +240 -0
  110. pulumi_oci/fleetappsmanagement/get_fleet_products.py +232 -0
  111. pulumi_oci/fleetappsmanagement/get_fleet_properties.py +218 -0
  112. pulumi_oci/fleetappsmanagement/get_fleet_property.py +286 -0
  113. pulumi_oci/fleetappsmanagement/get_fleet_resource.py +398 -0
  114. pulumi_oci/fleetappsmanagement/get_fleet_resources.py +237 -0
  115. pulumi_oci/fleetappsmanagement/get_fleet_targets.py +232 -0
  116. pulumi_oci/fleetappsmanagement/get_fleets.py +284 -0
  117. pulumi_oci/fleetappsmanagement/get_inventory_resources.py +311 -0
  118. pulumi_oci/fleetappsmanagement/get_maintenance_window.py +365 -0
  119. pulumi_oci/fleetappsmanagement/get_maintenance_windows.py +199 -0
  120. pulumi_oci/fleetappsmanagement/get_onboarding_policies.py +123 -0
  121. pulumi_oci/fleetappsmanagement/get_onboardings.py +177 -0
  122. pulumi_oci/fleetappsmanagement/get_properties.py +221 -0
  123. pulumi_oci/fleetappsmanagement/get_property.py +323 -0
  124. pulumi_oci/fleetappsmanagement/get_runbook.py +377 -0
  125. pulumi_oci/fleetappsmanagement/get_runbooks.py +284 -0
  126. pulumi_oci/fleetappsmanagement/get_scheduler_definition.py +436 -0
  127. pulumi_oci/fleetappsmanagement/get_scheduler_definition_scheduled_fleets.py +185 -0
  128. pulumi_oci/fleetappsmanagement/get_scheduler_definitions.py +262 -0
  129. pulumi_oci/fleetappsmanagement/get_task_record.py +307 -0
  130. pulumi_oci/fleetappsmanagement/get_task_records.py +240 -0
  131. pulumi_oci/fleetappsmanagement/maintenance_window.py +935 -0
  132. pulumi_oci/fleetappsmanagement/onboarding.py +477 -0
  133. pulumi_oci/fleetappsmanagement/outputs.py +8128 -0
  134. pulumi_oci/fleetappsmanagement/property.py +697 -0
  135. pulumi_oci/fleetappsmanagement/scheduler_definition.py +1035 -0
  136. pulumi_oci/functions/get_fusion_environment_refresh_activity.py +15 -1
  137. pulumi_oci/functions/outputs.py +11 -0
  138. pulumi_oci/fusionapps/_inputs.py +21 -20
  139. pulumi_oci/fusionapps/fusion_environment.py +2 -2
  140. pulumi_oci/fusionapps/fusion_environment_admin_user.py +21 -22
  141. pulumi_oci/fusionapps/fusion_environment_refresh_activity.py +48 -51
  142. pulumi_oci/fusionapps/outputs.py +11 -10
  143. pulumi_oci/goldengate/__init__.py +1 -0
  144. pulumi_oci/goldengate/_inputs.py +165 -0
  145. pulumi_oci/goldengate/connection.py +49 -35
  146. pulumi_oci/goldengate/database_registration.py +7 -7
  147. pulumi_oci/goldengate/deployment.py +79 -4
  148. pulumi_oci/goldengate/get_deployment.py +30 -2
  149. pulumi_oci/goldengate/get_deployment_environments.py +144 -0
  150. pulumi_oci/goldengate/outputs.py +409 -2
  151. pulumi_oci/integration/__init__.py +1 -0
  152. pulumi_oci/integration/_inputs.py +289 -2
  153. pulumi_oci/integration/get_integration_instance.py +65 -1
  154. pulumi_oci/integration/integration_instance.py +172 -0
  155. pulumi_oci/integration/oracle_managed_custom_endpoint.py +307 -0
  156. pulumi_oci/integration/outputs.py +587 -19
  157. pulumi_oci/loadbalancer/_inputs.py +20 -0
  158. pulumi_oci/loadbalancer/listener.py +4 -2
  159. pulumi_oci/loadbalancer/outputs.py +16 -2
  160. pulumi_oci/monitoring/_inputs.py +137 -16
  161. pulumi_oci/monitoring/alarm_suppression.py +164 -35
  162. pulumi_oci/monitoring/get_alarm_statuses.py +5 -3
  163. pulumi_oci/monitoring/get_alarm_suppression.py +33 -3
  164. pulumi_oci/monitoring/get_alarm_suppressions.py +137 -14
  165. pulumi_oci/monitoring/outputs.py +291 -18
  166. pulumi_oci/mysql/mysql_db_system.py +7 -7
  167. pulumi_oci/objectstorage/__init__.py +3 -0
  168. pulumi_oci/objectstorage/_inputs.py +97 -0
  169. pulumi_oci/objectstorage/get_object_versions.py +6 -6
  170. pulumi_oci/objectstorage/get_objects.py +6 -6
  171. pulumi_oci/objectstorage/get_private_endpoint.py +263 -0
  172. pulumi_oci/objectstorage/get_private_endpoint_summaries.py +128 -0
  173. pulumi_oci/objectstorage/outputs.py +258 -0
  174. pulumi_oci/objectstorage/private_endpoint.py +630 -0
  175. pulumi_oci/objectstorage/storage_object.py +7 -7
  176. pulumi_oci/opsi/_inputs.py +268 -114
  177. pulumi_oci/opsi/database_insight.py +162 -21
  178. pulumi_oci/opsi/exadata_insight.py +44 -0
  179. pulumi_oci/opsi/get_database_insight.py +40 -1
  180. pulumi_oci/opsi/get_host_insights.py +2 -2
  181. pulumi_oci/opsi/host_insight.py +0 -48
  182. pulumi_oci/opsi/outputs.py +405 -109
  183. pulumi_oci/pulumi-plugin.json +1 -1
  184. pulumi_oci/securityattribute/__init__.py +15 -0
  185. pulumi_oci/securityattribute/_inputs.py +209 -0
  186. pulumi_oci/securityattribute/get_security_attribute.py +262 -0
  187. pulumi_oci/securityattribute/get_security_attribute_namespace.py +253 -0
  188. pulumi_oci/securityattribute/get_security_attribute_namespaces.py +210 -0
  189. pulumi_oci/securityattribute/get_security_attributes.py +169 -0
  190. pulumi_oci/securityattribute/outputs.py +466 -0
  191. pulumi_oci/securityattribute/security_attribute.py +588 -0
  192. pulumi_oci/securityattribute/security_attribute_namespace.py +609 -0
  193. pulumi_oci/stackmonitoring/__init__.py +5 -0
  194. pulumi_oci/stackmonitoring/_inputs.py +330 -0
  195. pulumi_oci/stackmonitoring/get_maintenance_window.py +254 -0
  196. pulumi_oci/stackmonitoring/get_maintenance_windows.py +210 -0
  197. pulumi_oci/stackmonitoring/maintenance_window.py +551 -0
  198. pulumi_oci/stackmonitoring/maintenance_windows_retry_failed_operation.py +217 -0
  199. pulumi_oci/stackmonitoring/maintenance_windows_stop.py +217 -0
  200. pulumi_oci/stackmonitoring/outputs.py +603 -0
  201. pulumi_oci/{globallydistributeddatabase → zpr}/__init__.py +5 -6
  202. pulumi_oci/zpr/_inputs.py +79 -0
  203. pulumi_oci/zpr/configuration.py +516 -0
  204. pulumi_oci/zpr/get_configuration.py +230 -0
  205. pulumi_oci/zpr/get_zpr_policies.py +191 -0
  206. pulumi_oci/zpr/get_zpr_policy.py +264 -0
  207. pulumi_oci/zpr/outputs.py +203 -0
  208. pulumi_oci/zpr/zpr_policy.py +614 -0
  209. {pulumi_oci-2.12.0a1728593306.dist-info → pulumi_oci-2.13.0.dist-info}/METADATA +1 -1
  210. {pulumi_oci-2.12.0a1728593306.dist-info → pulumi_oci-2.13.0.dist-info}/RECORD +212 -142
  211. {pulumi_oci-2.12.0a1728593306.dist-info → pulumi_oci-2.13.0.dist-info}/WHEEL +1 -1
  212. pulumi_oci/globallydistributeddatabase/_inputs.py +0 -1289
  213. pulumi_oci/globallydistributeddatabase/get_private_endpoint.py +0 -323
  214. pulumi_oci/globallydistributeddatabase/get_private_endpoints.py +0 -191
  215. pulumi_oci/globallydistributeddatabase/get_sharded_database.py +0 -660
  216. pulumi_oci/globallydistributeddatabase/get_sharded_databases.py +0 -191
  217. pulumi_oci/globallydistributeddatabase/outputs.py +0 -2063
  218. pulumi_oci/globallydistributeddatabase/private_endpoint.py +0 -747
  219. pulumi_oci/globallydistributeddatabase/sharded_database.py +0 -1821
  220. {pulumi_oci-2.12.0a1728593306.dist-info → pulumi_oci-2.13.0.dist-info}/top_level.txt +0 -0
@@ -187,11 +187,11 @@ class AutonomousDatabaseArgs:
187
187
  * A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
188
188
  :param pulumi.Input[float] ocpu_count: (Updatable) The number of OCPU cores to be made available to the database.
189
189
 
190
- The following points apply:
191
- * 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.)
192
- * 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.
193
- * For Autonomous Database Serverless instances, this parameter is not used.
190
+
194
191
  * Providing `computeModel` and `computeCount` is the preferred method for setting CPUs for both OCPU and ECPU.
192
+ The following points apply:
193
+ * For Autonomous Databases on dedicated Exadata infrastructure, to provision less than 1 core, enter a fractional value in an increment of 0.1. For example, you can provision 0.3 or 0.4 cores, but not 0.35 cores. (Note that fractional OCPU values are not supported for Autonomous Databasese on shared Exadata infrastructure.)
194
+ * To provision 1 or more cores, you must enter an integer between 1 and the maximum number of cores available for the infrastructure shape. For example, you can provision 2 cores or 3 cores, but not 2.5 cores. This applies to Autonomous Databases on both shared and dedicated Exadata infrastructure.
195
195
 
196
196
  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.
197
197
 
@@ -1067,11 +1067,11 @@ class AutonomousDatabaseArgs:
1067
1067
  """
1068
1068
  (Updatable) The number of OCPU cores to be made available to the database.
1069
1069
 
1070
- The following points apply:
1071
- * 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.)
1072
- * 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.
1073
- * For Autonomous Database Serverless instances, this parameter is not used.
1070
+
1074
1071
  * Providing `computeModel` and `computeCount` is the preferred method for setting CPUs for both OCPU and ECPU.
1072
+ The following points apply:
1073
+ * For Autonomous Databases on dedicated Exadata infrastructure, to provision less than 1 core, enter a fractional value in an increment of 0.1. For example, you can provision 0.3 or 0.4 cores, but not 0.35 cores. (Note that fractional OCPU values are not supported for Autonomous Databasese on shared Exadata infrastructure.)
1074
+ * To provision 1 or more cores, you must enter an integer between 1 and the maximum number of cores available for the infrastructure shape. For example, you can provision 2 cores or 3 cores, but not 2.5 cores. This applies to Autonomous Databases on both shared and dedicated Exadata infrastructure.
1075
1075
 
1076
1076
  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.
1077
1077
 
@@ -1572,6 +1572,7 @@ class _AutonomousDatabaseState:
1572
1572
  time_of_last_switchover: Optional[pulumi.Input[str]] = None,
1573
1573
  time_of_next_refresh: Optional[pulumi.Input[str]] = None,
1574
1574
  time_reclamation_of_free_autonomous_database: Optional[pulumi.Input[str]] = None,
1575
+ time_undeleted: Optional[pulumi.Input[str]] = None,
1575
1576
  time_until_reconnect_clone_enabled: Optional[pulumi.Input[str]] = None,
1576
1577
  timestamp: Optional[pulumi.Input[str]] = None,
1577
1578
  total_backup_storage_size_in_gbs: Optional[pulumi.Input[float]] = None,
@@ -1695,11 +1696,11 @@ class _AutonomousDatabaseState:
1695
1696
  * A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
1696
1697
  :param pulumi.Input[float] ocpu_count: (Updatable) The number of OCPU cores to be made available to the database.
1697
1698
 
1698
- The following points apply:
1699
- * 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.)
1700
- * 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.
1701
- * For Autonomous Database Serverless instances, this parameter is not used.
1699
+
1702
1700
  * Providing `computeModel` and `computeCount` is the preferred method for setting CPUs for both OCPU and ECPU.
1701
+ The following points apply:
1702
+ * For Autonomous Databases on dedicated Exadata infrastructure, to provision less than 1 core, enter a fractional value in an increment of 0.1. For example, you can provision 0.3 or 0.4 cores, but not 0.35 cores. (Note that fractional OCPU values are not supported for Autonomous Databasese on shared Exadata infrastructure.)
1703
+ * To provision 1 or more cores, you must enter an integer between 1 and the maximum number of cores available for the infrastructure shape. For example, you can provision 2 cores or 3 cores, but not 2.5 cores. This applies to Autonomous Databases on both shared and dedicated Exadata infrastructure.
1703
1704
 
1704
1705
  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.
1705
1706
 
@@ -2056,6 +2057,8 @@ class _AutonomousDatabaseState:
2056
2057
  pulumi.set(__self__, "time_of_next_refresh", time_of_next_refresh)
2057
2058
  if time_reclamation_of_free_autonomous_database is not None:
2058
2059
  pulumi.set(__self__, "time_reclamation_of_free_autonomous_database", time_reclamation_of_free_autonomous_database)
2060
+ if time_undeleted is not None:
2061
+ pulumi.set(__self__, "time_undeleted", time_undeleted)
2059
2062
  if time_until_reconnect_clone_enabled is not None:
2060
2063
  pulumi.set(__self__, "time_until_reconnect_clone_enabled", time_until_reconnect_clone_enabled)
2061
2064
  if timestamp is not None:
@@ -3058,11 +3061,11 @@ class _AutonomousDatabaseState:
3058
3061
  """
3059
3062
  (Updatable) The number of OCPU cores to be made available to the database.
3060
3063
 
3061
- The following points apply:
3062
- * 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.)
3063
- * 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.
3064
- * For Autonomous Database Serverless instances, this parameter is not used.
3064
+
3065
3065
  * Providing `computeModel` and `computeCount` is the preferred method for setting CPUs for both OCPU and ECPU.
3066
+ The following points apply:
3067
+ * For Autonomous Databases on dedicated Exadata infrastructure, to provision less than 1 core, enter a fractional value in an increment of 0.1. For example, you can provision 0.3 or 0.4 cores, but not 0.35 cores. (Note that fractional OCPU values are not supported for Autonomous Databasese on shared Exadata infrastructure.)
3068
+ * To provision 1 or more cores, you must enter an integer between 1 and the maximum number of cores available for the infrastructure shape. For example, you can provision 2 cores or 3 cores, but not 2.5 cores. This applies to Autonomous Databases on both shared and dedicated Exadata infrastructure.
3066
3069
 
3067
3070
  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.
3068
3071
 
@@ -3685,6 +3688,15 @@ class _AutonomousDatabaseState:
3685
3688
  def time_reclamation_of_free_autonomous_database(self, value: Optional[pulumi.Input[str]]):
3686
3689
  pulumi.set(self, "time_reclamation_of_free_autonomous_database", value)
3687
3690
 
3691
+ @property
3692
+ @pulumi.getter(name="timeUndeleted")
3693
+ def time_undeleted(self) -> Optional[pulumi.Input[str]]:
3694
+ return pulumi.get(self, "time_undeleted")
3695
+
3696
+ @time_undeleted.setter
3697
+ def time_undeleted(self, value: Optional[pulumi.Input[str]]):
3698
+ pulumi.set(self, "time_undeleted", value)
3699
+
3688
3700
  @property
3689
3701
  @pulumi.getter(name="timeUntilReconnectCloneEnabled")
3690
3702
  def time_until_reconnect_clone_enabled(self) -> Optional[pulumi.Input[str]]:
@@ -3975,11 +3987,11 @@ class AutonomousDatabase(pulumi.CustomResource):
3975
3987
  * A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
3976
3988
  :param pulumi.Input[float] ocpu_count: (Updatable) The number of OCPU cores to be made available to the database.
3977
3989
 
3978
- The following points apply:
3979
- * 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.)
3980
- * 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.
3981
- * For Autonomous Database Serverless instances, this parameter is not used.
3990
+
3982
3991
  * Providing `computeModel` and `computeCount` is the preferred method for setting CPUs for both OCPU and ECPU.
3992
+ The following points apply:
3993
+ * For Autonomous Databases on dedicated Exadata infrastructure, to provision less than 1 core, enter a fractional value in an increment of 0.1. For example, you can provision 0.3 or 0.4 cores, but not 0.35 cores. (Note that fractional OCPU values are not supported for Autonomous Databasese on shared Exadata infrastructure.)
3994
+ * To provision 1 or more cores, you must enter an integer between 1 and the maximum number of cores available for the infrastructure shape. For example, you can provision 2 cores or 3 cores, but not 2.5 cores. This applies to Autonomous Databases on both shared and dedicated Exadata infrastructure.
3983
3995
 
3984
3996
  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.
3985
3997
 
@@ -4307,6 +4319,7 @@ class AutonomousDatabase(pulumi.CustomResource):
4307
4319
  __props__.__dict__["time_of_last_switchover"] = None
4308
4320
  __props__.__dict__["time_of_next_refresh"] = None
4309
4321
  __props__.__dict__["time_reclamation_of_free_autonomous_database"] = None
4322
+ __props__.__dict__["time_undeleted"] = None
4310
4323
  __props__.__dict__["time_until_reconnect_clone_enabled"] = None
4311
4324
  __props__.__dict__["total_backup_storage_size_in_gbs"] = None
4312
4325
  __props__.__dict__["used_data_storage_size_in_gbs"] = None
@@ -4452,6 +4465,7 @@ class AutonomousDatabase(pulumi.CustomResource):
4452
4465
  time_of_last_switchover: Optional[pulumi.Input[str]] = None,
4453
4466
  time_of_next_refresh: Optional[pulumi.Input[str]] = None,
4454
4467
  time_reclamation_of_free_autonomous_database: Optional[pulumi.Input[str]] = None,
4468
+ time_undeleted: Optional[pulumi.Input[str]] = None,
4455
4469
  time_until_reconnect_clone_enabled: Optional[pulumi.Input[str]] = None,
4456
4470
  timestamp: Optional[pulumi.Input[str]] = None,
4457
4471
  total_backup_storage_size_in_gbs: Optional[pulumi.Input[float]] = None,
@@ -4580,11 +4594,11 @@ class AutonomousDatabase(pulumi.CustomResource):
4580
4594
  * A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
4581
4595
  :param pulumi.Input[float] ocpu_count: (Updatable) The number of OCPU cores to be made available to the database.
4582
4596
 
4583
- The following points apply:
4584
- * 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.)
4585
- * 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.
4586
- * For Autonomous Database Serverless instances, this parameter is not used.
4597
+
4587
4598
  * Providing `computeModel` and `computeCount` is the preferred method for setting CPUs for both OCPU and ECPU.
4599
+ The following points apply:
4600
+ * For Autonomous Databases on dedicated Exadata infrastructure, to provision less than 1 core, enter a fractional value in an increment of 0.1. For example, you can provision 0.3 or 0.4 cores, but not 0.35 cores. (Note that fractional OCPU values are not supported for Autonomous Databasese on shared Exadata infrastructure.)
4601
+ * To provision 1 or more cores, you must enter an integer between 1 and the maximum number of cores available for the infrastructure shape. For example, you can provision 2 cores or 3 cores, but not 2.5 cores. This applies to Autonomous Databases on both shared and dedicated Exadata infrastructure.
4588
4602
 
4589
4603
  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.
4590
4604
 
@@ -4813,6 +4827,7 @@ class AutonomousDatabase(pulumi.CustomResource):
4813
4827
  __props__.__dict__["time_of_last_switchover"] = time_of_last_switchover
4814
4828
  __props__.__dict__["time_of_next_refresh"] = time_of_next_refresh
4815
4829
  __props__.__dict__["time_reclamation_of_free_autonomous_database"] = time_reclamation_of_free_autonomous_database
4830
+ __props__.__dict__["time_undeleted"] = time_undeleted
4816
4831
  __props__.__dict__["time_until_reconnect_clone_enabled"] = time_until_reconnect_clone_enabled
4817
4832
  __props__.__dict__["timestamp"] = timestamp
4818
4833
  __props__.__dict__["total_backup_storage_size_in_gbs"] = total_backup_storage_size_in_gbs
@@ -5492,11 +5507,11 @@ class AutonomousDatabase(pulumi.CustomResource):
5492
5507
  """
5493
5508
  (Updatable) The number of OCPU cores to be made available to the database.
5494
5509
 
5495
- The following points apply:
5496
- * 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.)
5497
- * 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.
5498
- * For Autonomous Database Serverless instances, this parameter is not used.
5510
+
5499
5511
  * Providing `computeModel` and `computeCount` is the preferred method for setting CPUs for both OCPU and ECPU.
5512
+ The following points apply:
5513
+ * For Autonomous Databases on dedicated Exadata infrastructure, to provision less than 1 core, enter a fractional value in an increment of 0.1. For example, you can provision 0.3 or 0.4 cores, but not 0.35 cores. (Note that fractional OCPU values are not supported for Autonomous Databasese on shared Exadata infrastructure.)
5514
+ * To provision 1 or more cores, you must enter an integer between 1 and the maximum number of cores available for the infrastructure shape. For example, you can provision 2 cores or 3 cores, but not 2.5 cores. This applies to Autonomous Databases on both shared and dedicated Exadata infrastructure.
5500
5515
 
5501
5516
  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.
5502
5517
 
@@ -5919,6 +5934,11 @@ class AutonomousDatabase(pulumi.CustomResource):
5919
5934
  """
5920
5935
  return pulumi.get(self, "time_reclamation_of_free_autonomous_database")
5921
5936
 
5937
+ @property
5938
+ @pulumi.getter(name="timeUndeleted")
5939
+ def time_undeleted(self) -> pulumi.Output[str]:
5940
+ return pulumi.get(self, "time_undeleted")
5941
+
5922
5942
  @property
5923
5943
  @pulumi.getter(name="timeUntilReconnectCloneEnabled")
5924
5944
  def time_until_reconnect_clone_enabled(self) -> pulumi.Output[str]:
@@ -149,10 +149,10 @@ class _AutonomousDatabaseBackupState:
149
149
  :param pulumi.Input[bool] is_automatic: Indicates whether the backup is user-initiated or automatic.
150
150
  :param pulumi.Input[bool] is_long_term_backup: Indicates whether the backup is long-term
151
151
  :param pulumi.Input[bool] is_restorable: Indicates whether the backup can be used to restore the associated Autonomous Database.
152
- :param pulumi.Input[str] key_store_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the key store.
152
+ :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.
153
153
  :param pulumi.Input[str] key_store_wallet_name: The wallet name for Oracle Key Vault.
154
154
  :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.
155
- :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.
155
+ :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.
156
156
  :param pulumi.Input[str] lifecycle_details: Additional information about the current lifecycle state.
157
157
  :param pulumi.Input[int] retention_period_in_days: (Updatable) Retention period, in days, for long-term backups
158
158
 
@@ -165,7 +165,7 @@ class _AutonomousDatabaseBackupState:
165
165
  :param pulumi.Input[str] time_ended: The date and time the backup completed.
166
166
  :param pulumi.Input[str] time_started: The date and time the backup started.
167
167
  :param pulumi.Input[str] type: The type of backup.
168
- :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).
168
+ :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.
169
169
  """
170
170
  if autonomous_database_id is not None:
171
171
  pulumi.set(__self__, "autonomous_database_id", autonomous_database_id)
@@ -324,7 +324,7 @@ class _AutonomousDatabaseBackupState:
324
324
  @pulumi.getter(name="keyStoreId")
325
325
  def key_store_id(self) -> Optional[pulumi.Input[str]]:
326
326
  """
327
- The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the key store.
327
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the key store of Oracle Vault.
328
328
  """
329
329
  return pulumi.get(self, "key_store_id")
330
330
 
@@ -360,7 +360,7 @@ class _AutonomousDatabaseBackupState:
360
360
  @pulumi.getter(name="kmsKeyVersionId")
361
361
  def kms_key_version_id(self) -> Optional[pulumi.Input[str]]:
362
362
  """
363
- 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.
363
+ 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.
364
364
  """
365
365
  return pulumi.get(self, "kms_key_version_id")
366
366
 
@@ -472,7 +472,7 @@ class _AutonomousDatabaseBackupState:
472
472
  @pulumi.getter(name="vaultId")
473
473
  def vault_id(self) -> Optional[pulumi.Input[str]]:
474
474
  """
475
- 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).
475
+ 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.
476
476
  """
477
477
  return pulumi.get(self, "vault_id")
478
478
 
@@ -663,10 +663,10 @@ class AutonomousDatabaseBackup(pulumi.CustomResource):
663
663
  :param pulumi.Input[bool] is_automatic: Indicates whether the backup is user-initiated or automatic.
664
664
  :param pulumi.Input[bool] is_long_term_backup: Indicates whether the backup is long-term
665
665
  :param pulumi.Input[bool] is_restorable: Indicates whether the backup can be used to restore the associated Autonomous Database.
666
- :param pulumi.Input[str] key_store_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the key store.
666
+ :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.
667
667
  :param pulumi.Input[str] key_store_wallet_name: The wallet name for Oracle Key Vault.
668
668
  :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.
669
- :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.
669
+ :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.
670
670
  :param pulumi.Input[str] lifecycle_details: Additional information about the current lifecycle state.
671
671
  :param pulumi.Input[int] retention_period_in_days: (Updatable) Retention period, in days, for long-term backups
672
672
 
@@ -679,7 +679,7 @@ class AutonomousDatabaseBackup(pulumi.CustomResource):
679
679
  :param pulumi.Input[str] time_ended: The date and time the backup completed.
680
680
  :param pulumi.Input[str] time_started: The date and time the backup started.
681
681
  :param pulumi.Input[str] type: The type of backup.
682
- :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).
682
+ :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.
683
683
  """
684
684
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
685
685
 
@@ -785,7 +785,7 @@ class AutonomousDatabaseBackup(pulumi.CustomResource):
785
785
  @pulumi.getter(name="keyStoreId")
786
786
  def key_store_id(self) -> pulumi.Output[str]:
787
787
  """
788
- The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the key store.
788
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the key store of Oracle Vault.
789
789
  """
790
790
  return pulumi.get(self, "key_store_id")
791
791
 
@@ -809,7 +809,7 @@ class AutonomousDatabaseBackup(pulumi.CustomResource):
809
809
  @pulumi.getter(name="kmsKeyVersionId")
810
810
  def kms_key_version_id(self) -> pulumi.Output[str]:
811
811
  """
812
- 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.
812
+ 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.
813
813
  """
814
814
  return pulumi.get(self, "kms_key_version_id")
815
815
 
@@ -885,7 +885,7 @@ class AutonomousDatabaseBackup(pulumi.CustomResource):
885
885
  @pulumi.getter(name="vaultId")
886
886
  def vault_id(self) -> pulumi.Output[str]:
887
887
  """
888
- 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).
888
+ 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.
889
889
  """
890
890
  return pulumi.get(self, "vault_id")
891
891
 
@@ -655,6 +655,7 @@ class AutonomousExadataInfrastructure(pulumi.CustomResource):
655
655
  }],
656
656
  "patching_mode": autonomous_exadata_infrastructure_maintenance_window_details_patching_mode,
657
657
  "preference": autonomous_exadata_infrastructure_maintenance_window_details_preference,
658
+ "skip_rus": autonomous_exadata_infrastructure_maintenance_window_details_skip_ru,
658
659
  "weeks_of_months": autonomous_exadata_infrastructure_maintenance_window_details_weeks_of_month,
659
660
  },
660
661
  nsg_ids=autonomous_exadata_infrastructure_nsg_ids)
@@ -737,6 +738,7 @@ class AutonomousExadataInfrastructure(pulumi.CustomResource):
737
738
  }],
738
739
  "patching_mode": autonomous_exadata_infrastructure_maintenance_window_details_patching_mode,
739
740
  "preference": autonomous_exadata_infrastructure_maintenance_window_details_preference,
741
+ "skip_rus": autonomous_exadata_infrastructure_maintenance_window_details_skip_ru,
740
742
  "weeks_of_months": autonomous_exadata_infrastructure_maintenance_window_details_weeks_of_month,
741
743
  },
742
744
  nsg_ids=autonomous_exadata_infrastructure_nsg_ids)
@@ -1193,6 +1193,7 @@ class AutonomousVmCluster(pulumi.CustomResource):
1193
1193
  }],
1194
1194
  "patching_mode": autonomous_vm_cluster_maintenance_window_details_patching_mode,
1195
1195
  "preference": autonomous_vm_cluster_maintenance_window_details_preference,
1196
+ "skip_rus": autonomous_vm_cluster_maintenance_window_details_skip_ru,
1196
1197
  "weeks_of_months": autonomous_vm_cluster_maintenance_window_details_weeks_of_month,
1197
1198
  }],
1198
1199
  memory_per_oracle_compute_unit_in_gbs=autonomous_vm_cluster_memory_per_oracle_compute_unit_in_gbs,
@@ -1280,6 +1281,7 @@ class AutonomousVmCluster(pulumi.CustomResource):
1280
1281
  }],
1281
1282
  "patching_mode": autonomous_vm_cluster_maintenance_window_details_patching_mode,
1282
1283
  "preference": autonomous_vm_cluster_maintenance_window_details_preference,
1284
+ "skip_rus": autonomous_vm_cluster_maintenance_window_details_skip_ru,
1283
1285
  "weeks_of_months": autonomous_vm_cluster_maintenance_window_details_weeks_of_month,
1284
1286
  }],
1285
1287
  memory_per_oracle_compute_unit_in_gbs=autonomous_vm_cluster_memory_per_oracle_compute_unit_in_gbs,
@@ -95,17 +95,17 @@ class _BackupState:
95
95
 
96
96
  ** IMPORTANT **
97
97
  Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
98
- :param pulumi.Input[str] key_store_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the key store.
98
+ :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.
99
99
  :param pulumi.Input[str] key_store_wallet_name: The wallet name for Oracle Key Vault.
100
100
  :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.
101
- :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.
101
+ :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.
102
102
  :param pulumi.Input[str] lifecycle_details: Additional information about the current lifecycle state.
103
103
  :param pulumi.Input[str] shape: Shape of the backup's source database.
104
104
  :param pulumi.Input[str] state: The current state of the backup.
105
105
  :param pulumi.Input[str] time_ended: The date and time the backup was completed.
106
106
  :param pulumi.Input[str] time_started: The date and time the backup started.
107
107
  :param pulumi.Input[str] type: The type of backup.
108
- :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).
108
+ :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.
109
109
  :param pulumi.Input[str] version: Version of the backup's source database
110
110
  """
111
111
  if availability_domain is not None:
@@ -225,7 +225,7 @@ class _BackupState:
225
225
  @pulumi.getter(name="keyStoreId")
226
226
  def key_store_id(self) -> Optional[pulumi.Input[str]]:
227
227
  """
228
- The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the key store.
228
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the key store of Oracle Vault.
229
229
  """
230
230
  return pulumi.get(self, "key_store_id")
231
231
 
@@ -261,7 +261,7 @@ class _BackupState:
261
261
  @pulumi.getter(name="kmsKeyVersionId")
262
262
  def kms_key_version_id(self) -> Optional[pulumi.Input[str]]:
263
263
  """
264
- 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.
264
+ 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.
265
265
  """
266
266
  return pulumi.get(self, "kms_key_version_id")
267
267
 
@@ -345,7 +345,7 @@ class _BackupState:
345
345
  @pulumi.getter(name="vaultId")
346
346
  def vault_id(self) -> Optional[pulumi.Input[str]]:
347
347
  """
348
- 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).
348
+ 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.
349
349
  """
350
350
  return pulumi.get(self, "vault_id")
351
351
 
@@ -530,17 +530,17 @@ class Backup(pulumi.CustomResource):
530
530
 
531
531
  ** IMPORTANT **
532
532
  Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
533
- :param pulumi.Input[str] key_store_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the key store.
533
+ :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.
534
534
  :param pulumi.Input[str] key_store_wallet_name: The wallet name for Oracle Key Vault.
535
535
  :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.
536
- :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.
536
+ :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.
537
537
  :param pulumi.Input[str] lifecycle_details: Additional information about the current lifecycle state.
538
538
  :param pulumi.Input[str] shape: Shape of the backup's source database.
539
539
  :param pulumi.Input[str] state: The current state of the backup.
540
540
  :param pulumi.Input[str] time_ended: The date and time the backup was completed.
541
541
  :param pulumi.Input[str] time_started: The date and time the backup started.
542
542
  :param pulumi.Input[str] type: The type of backup.
543
- :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).
543
+ :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.
544
544
  :param pulumi.Input[str] version: Version of the backup's source database
545
545
  """
546
546
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
@@ -623,7 +623,7 @@ class Backup(pulumi.CustomResource):
623
623
  @pulumi.getter(name="keyStoreId")
624
624
  def key_store_id(self) -> pulumi.Output[str]:
625
625
  """
626
- The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the key store.
626
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the key store of Oracle Vault.
627
627
  """
628
628
  return pulumi.get(self, "key_store_id")
629
629
 
@@ -647,7 +647,7 @@ class Backup(pulumi.CustomResource):
647
647
  @pulumi.getter(name="kmsKeyVersionId")
648
648
  def kms_key_version_id(self) -> pulumi.Output[str]:
649
649
  """
650
- 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.
650
+ 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.
651
651
  """
652
652
  return pulumi.get(self, "kms_key_version_id")
653
653
 
@@ -703,7 +703,7 @@ class Backup(pulumi.CustomResource):
703
703
  @pulumi.getter(name="vaultId")
704
704
  def vault_id(self) -> pulumi.Output[str]:
705
705
  """
706
- 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).
706
+ 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.
707
707
  """
708
708
  return pulumi.get(self, "vault_id")
709
709
 
@@ -1343,6 +1343,7 @@ class CloudAutonomousVmCluster(pulumi.CustomResource):
1343
1343
  }],
1344
1344
  "patching_mode": cloud_autonomous_vm_cluster_maintenance_window_details_patching_mode,
1345
1345
  "preference": cloud_autonomous_vm_cluster_maintenance_window_details_preference,
1346
+ "skip_rus": cloud_autonomous_vm_cluster_maintenance_window_details_skip_ru,
1346
1347
  "weeks_of_months": cloud_autonomous_vm_cluster_maintenance_window_details_weeks_of_month,
1347
1348
  },
1348
1349
  memory_per_oracle_compute_unit_in_gbs=cloud_autonomous_vm_cluster_memory_per_oracle_compute_unit_in_gbs,
@@ -1438,6 +1439,7 @@ class CloudAutonomousVmCluster(pulumi.CustomResource):
1438
1439
  }],
1439
1440
  "patching_mode": cloud_autonomous_vm_cluster_maintenance_window_details_patching_mode,
1440
1441
  "preference": cloud_autonomous_vm_cluster_maintenance_window_details_preference,
1442
+ "skip_rus": cloud_autonomous_vm_cluster_maintenance_window_details_skip_ru,
1441
1443
  "weeks_of_months": cloud_autonomous_vm_cluster_maintenance_window_details_weeks_of_month,
1442
1444
  },
1443
1445
  memory_per_oracle_compute_unit_in_gbs=cloud_autonomous_vm_cluster_memory_per_oracle_compute_unit_in_gbs,
@@ -855,6 +855,7 @@ class CloudExadataInfrastructure(pulumi.CustomResource):
855
855
  }],
856
856
  "patching_mode": cloud_exadata_infrastructure_maintenance_window_patching_mode,
857
857
  "preference": cloud_exadata_infrastructure_maintenance_window_preference,
858
+ "skip_rus": cloud_exadata_infrastructure_maintenance_window_skip_ru,
858
859
  "weeks_of_months": cloud_exadata_infrastructure_maintenance_window_weeks_of_month,
859
860
  },
860
861
  storage_count=cloud_exadata_infrastructure_storage_count,
@@ -933,6 +934,7 @@ class CloudExadataInfrastructure(pulumi.CustomResource):
933
934
  }],
934
935
  "patching_mode": cloud_exadata_infrastructure_maintenance_window_patching_mode,
935
936
  "preference": cloud_exadata_infrastructure_maintenance_window_preference,
937
+ "skip_rus": cloud_exadata_infrastructure_maintenance_window_skip_ru,
936
938
  "weeks_of_months": cloud_exadata_infrastructure_maintenance_window_weeks_of_month,
937
939
  },
938
940
  storage_count=cloud_exadata_infrastructure_storage_count,