pulumi-oci 3.1.0a1750143229__py3-none-any.whl → 3.1.0a1751948424__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 (282) hide show
  1. pulumi_oci/__init__.py +299 -0
  2. pulumi_oci/capacitymanagement/__init__.py +18 -0
  3. pulumi_oci/capacitymanagement/_inputs.py +459 -0
  4. pulumi_oci/capacitymanagement/get_internal_occm_demand_signal.py +268 -0
  5. pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_catalog.py +254 -0
  6. pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_catalog_resources.py +233 -0
  7. pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_catalogs.py +192 -0
  8. pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_deliveries.py +197 -0
  9. pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_delivery.py +296 -0
  10. pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_items.py +233 -0
  11. pulumi_oci/capacitymanagement/get_internal_occm_demand_signals.py +222 -0
  12. pulumi_oci/capacitymanagement/get_occm_demand_signal.py +254 -0
  13. pulumi_oci/capacitymanagement/get_occm_demand_signal_catalog_resources.py +189 -0
  14. pulumi_oci/capacitymanagement/get_occm_demand_signal_deliveries.py +175 -0
  15. pulumi_oci/capacitymanagement/get_occm_demand_signal_item.py +352 -0
  16. pulumi_oci/capacitymanagement/get_occm_demand_signal_items.py +211 -0
  17. pulumi_oci/capacitymanagement/get_occm_demand_signals.py +200 -0
  18. pulumi_oci/capacitymanagement/internal_occm_demand_signal.py +564 -0
  19. pulumi_oci/capacitymanagement/internal_occm_demand_signal_delivery.py +760 -0
  20. pulumi_oci/capacitymanagement/occm_demand_signal.py +585 -0
  21. pulumi_oci/capacitymanagement/occm_demand_signal_item.py +950 -0
  22. pulumi_oci/capacitymanagement/outputs.py +3499 -1230
  23. pulumi_oci/containerengine/get_cluster.py +7 -7
  24. pulumi_oci/core/__init__.py +4 -0
  25. pulumi_oci/core/_inputs.py +477 -0
  26. pulumi_oci/core/compute_host.py +910 -0
  27. pulumi_oci/core/compute_host_group.py +648 -0
  28. pulumi_oci/core/dedicated_vm_host.py +56 -0
  29. pulumi_oci/core/get_compute_host.py +72 -1
  30. pulumi_oci/core/get_compute_host_group.py +269 -0
  31. pulumi_oci/core/get_compute_host_groups.py +148 -0
  32. pulumi_oci/core/get_compute_hosts.py +37 -1
  33. pulumi_oci/core/get_dedicated_vm_host.py +29 -1
  34. pulumi_oci/core/outputs.py +912 -24
  35. pulumi_oci/database/__init__.py +2 -0
  36. pulumi_oci/database/_inputs.py +739 -52
  37. pulumi_oci/database/autonomous_container_database.py +141 -12
  38. pulumi_oci/database/autonomous_container_database_add_standby.py +8 -10
  39. pulumi_oci/database/autonomous_container_database_dataguard_association.py +8 -16
  40. pulumi_oci/database/autonomous_container_database_snapshot_standby.py +4 -6
  41. pulumi_oci/database/autonomous_database_software_image.py +28 -0
  42. pulumi_oci/database/autonomous_vm_cluster.py +28 -0
  43. pulumi_oci/database/backup_destination.py +28 -0
  44. pulumi_oci/database/cloud_autonomous_vm_cluster.py +126 -0
  45. pulumi_oci/database/cloud_vm_cluster.py +82 -7
  46. pulumi_oci/database/database.py +28 -0
  47. pulumi_oci/database/database_software_image.py +28 -0
  48. pulumi_oci/database/database_upgrade.py +28 -0
  49. pulumi_oci/database/db_home.py +28 -0
  50. pulumi_oci/database/db_node.py +28 -0
  51. pulumi_oci/database/db_system.py +28 -0
  52. pulumi_oci/database/exadata_infrastructure.py +28 -0
  53. pulumi_oci/database/exadata_infrastructure_compute.py +39 -24
  54. pulumi_oci/database/external_container_database.py +28 -0
  55. pulumi_oci/database/external_database_connector.py +28 -0
  56. pulumi_oci/database/external_non_container_database.py +28 -0
  57. pulumi_oci/database/external_pluggable_database.py +28 -0
  58. pulumi_oci/database/get_autonomous_container_database.py +52 -2
  59. pulumi_oci/database/get_autonomous_container_database_backups.py +255 -0
  60. pulumi_oci/database/get_autonomous_container_database_dataguard_association.py +2 -2
  61. pulumi_oci/database/get_autonomous_container_database_dataguard_associations.py +2 -2
  62. pulumi_oci/database/get_autonomous_database_dataguard_associations.py +2 -2
  63. pulumi_oci/database/get_autonomous_database_resource_pool_members.py +145 -0
  64. pulumi_oci/database/get_autonomous_database_software_image.py +15 -1
  65. pulumi_oci/database/get_autonomous_vm_cluster.py +15 -1
  66. pulumi_oci/database/get_backup_destination.py +15 -1
  67. pulumi_oci/database/get_cloud_autonomous_vm_cluster.py +40 -1
  68. pulumi_oci/database/get_cloud_vm_cluster.py +30 -2
  69. pulumi_oci/database/get_database.py +15 -1
  70. pulumi_oci/database/get_database_software_image.py +15 -1
  71. pulumi_oci/database/get_db_home.py +15 -1
  72. pulumi_oci/database/get_db_node.py +15 -1
  73. pulumi_oci/database/get_db_nodes.py +2 -2
  74. pulumi_oci/database/get_db_server.py +15 -1
  75. pulumi_oci/database/get_exadata_infrastructure.py +15 -1
  76. pulumi_oci/database/get_external_container_database.py +15 -1
  77. pulumi_oci/database/get_external_database_connector.py +15 -1
  78. pulumi_oci/database/get_external_non_container_database.py +15 -1
  79. pulumi_oci/database/get_external_pluggable_database.py +15 -1
  80. pulumi_oci/database/get_key_store.py +15 -1
  81. pulumi_oci/database/get_maintenance_run.py +15 -1
  82. pulumi_oci/database/get_oneoff_patch.py +15 -1
  83. pulumi_oci/database/get_pluggable_database.py +15 -1
  84. pulumi_oci/database/get_vm_cluster.py +15 -1
  85. pulumi_oci/database/get_vm_cluster_network.py +15 -1
  86. pulumi_oci/database/key_store.py +28 -0
  87. pulumi_oci/database/maintenance_run.py +28 -0
  88. pulumi_oci/database/oneoff_patch.py +28 -0
  89. pulumi_oci/database/outputs.py +1624 -54
  90. pulumi_oci/database/pluggable_database.py +28 -0
  91. pulumi_oci/database/pluggable_databases_local_clone.py +28 -0
  92. pulumi_oci/database/pluggable_databases_remote_clone.py +28 -0
  93. pulumi_oci/database/vm_cluster.py +28 -0
  94. pulumi_oci/database/vm_cluster_network.py +28 -0
  95. pulumi_oci/databasemanagement/__init__.py +7 -0
  96. pulumi_oci/databasemanagement/_inputs.py +196 -0
  97. pulumi_oci/databasemanagement/get_managed_my_sql_database.py +15 -1
  98. pulumi_oci/databasemanagement/get_managed_my_sql_database_binary_log_information.py +198 -0
  99. pulumi_oci/databasemanagement/get_managed_my_sql_database_digest_errors.py +164 -0
  100. pulumi_oci/databasemanagement/get_managed_my_sql_database_general_replication_information.py +352 -0
  101. pulumi_oci/databasemanagement/get_managed_my_sql_database_high_availability_members.py +145 -0
  102. pulumi_oci/databasemanagement/get_managed_my_sql_database_inbound_replications.py +145 -0
  103. pulumi_oci/databasemanagement/get_managed_my_sql_database_outbound_replications.py +145 -0
  104. pulumi_oci/databasemanagement/get_managed_my_sql_database_query_detail.py +176 -0
  105. pulumi_oci/databasemanagement/outputs.py +1330 -19
  106. pulumi_oci/databasemigration/_inputs.py +94 -0
  107. pulumi_oci/databasemigration/get_migration.py +15 -1
  108. pulumi_oci/databasemigration/get_migrations.py +15 -1
  109. pulumi_oci/databasemigration/job.py +28 -0
  110. pulumi_oci/databasemigration/migration.py +52 -3
  111. pulumi_oci/databasemigration/outputs.py +73 -0
  112. pulumi_oci/dataflow/_inputs.py +20 -0
  113. pulumi_oci/dataflow/outputs.py +36 -0
  114. pulumi_oci/fleetappsmanagement/__init__.py +48 -0
  115. pulumi_oci/fleetappsmanagement/_inputs.py +11016 -30
  116. pulumi_oci/fleetappsmanagement/catalog_item.py +1156 -0
  117. pulumi_oci/fleetappsmanagement/compliance_policy_rule.py +811 -0
  118. pulumi_oci/fleetappsmanagement/fleet.py +1003 -0
  119. pulumi_oci/fleetappsmanagement/fleet_credential.py +623 -0
  120. pulumi_oci/fleetappsmanagement/fleet_property.py +585 -0
  121. pulumi_oci/fleetappsmanagement/fleet_resource.py +853 -0
  122. pulumi_oci/fleetappsmanagement/get_announcements.py +29 -7
  123. pulumi_oci/fleetappsmanagement/get_catalog_item.py +434 -0
  124. pulumi_oci/fleetappsmanagement/get_catalog_items.py +274 -0
  125. pulumi_oci/fleetappsmanagement/get_compliance_policies.py +36 -12
  126. pulumi_oci/fleetappsmanagement/get_compliance_policy.py +20 -6
  127. pulumi_oci/fleetappsmanagement/get_compliance_policy_rule.py +325 -0
  128. pulumi_oci/fleetappsmanagement/get_compliance_policy_rules.py +244 -0
  129. pulumi_oci/fleetappsmanagement/get_compliance_record_counts.py +26 -7
  130. pulumi_oci/fleetappsmanagement/get_compliance_records.py +299 -0
  131. pulumi_oci/fleetappsmanagement/get_fleet.py +409 -0
  132. pulumi_oci/fleetappsmanagement/get_fleet_compliance_report.py +15 -1
  133. pulumi_oci/fleetappsmanagement/get_fleet_credential.py +274 -0
  134. pulumi_oci/fleetappsmanagement/get_fleet_credentials.py +283 -0
  135. pulumi_oci/fleetappsmanagement/get_fleet_products.py +2 -2
  136. pulumi_oci/fleetappsmanagement/get_fleet_properties.py +197 -0
  137. pulumi_oci/fleetappsmanagement/get_fleet_property.py +287 -0
  138. pulumi_oci/fleetappsmanagement/get_fleet_resource.py +399 -0
  139. pulumi_oci/fleetappsmanagement/get_fleet_resources.py +216 -0
  140. pulumi_oci/fleetappsmanagement/get_fleets.py +284 -0
  141. pulumi_oci/fleetappsmanagement/get_inventory_records.py +205 -0
  142. pulumi_oci/fleetappsmanagement/get_inventory_resources.py +4 -2
  143. pulumi_oci/fleetappsmanagement/get_maintenance_window.py +338 -0
  144. pulumi_oci/fleetappsmanagement/get_maintenance_windows.py +221 -0
  145. pulumi_oci/fleetappsmanagement/get_managed_entity_counts.py +26 -7
  146. pulumi_oci/fleetappsmanagement/get_onboarding_policies.py +26 -5
  147. pulumi_oci/fleetappsmanagement/get_onboardings.py +180 -0
  148. pulumi_oci/fleetappsmanagement/get_patch.py +364 -0
  149. pulumi_oci/fleetappsmanagement/get_patches.py +338 -0
  150. pulumi_oci/fleetappsmanagement/get_platform_configuration.py +297 -0
  151. pulumi_oci/fleetappsmanagement/get_platform_configurations.py +265 -0
  152. pulumi_oci/fleetappsmanagement/get_properties.py +37 -13
  153. pulumi_oci/fleetappsmanagement/get_property.py +1 -1
  154. pulumi_oci/fleetappsmanagement/get_provision.py +493 -0
  155. pulumi_oci/fleetappsmanagement/get_provisions.py +224 -0
  156. pulumi_oci/fleetappsmanagement/get_runbook.py +406 -0
  157. pulumi_oci/fleetappsmanagement/get_runbook_version.py +319 -0
  158. pulumi_oci/fleetappsmanagement/get_runbook_versions.py +230 -0
  159. pulumi_oci/fleetappsmanagement/get_runbooks.py +265 -0
  160. pulumi_oci/fleetappsmanagement/get_scheduler_definition.py +395 -0
  161. pulumi_oci/fleetappsmanagement/get_scheduler_definition_scheduled_fleets.py +167 -0
  162. pulumi_oci/fleetappsmanagement/get_scheduler_definitions.py +347 -0
  163. pulumi_oci/fleetappsmanagement/get_scheduler_executions.py +334 -0
  164. pulumi_oci/fleetappsmanagement/get_scheduler_job_counts.py +26 -7
  165. pulumi_oci/fleetappsmanagement/get_scheduler_job_job_activity_steps.py +2 -2
  166. pulumi_oci/fleetappsmanagement/get_task_record.py +308 -0
  167. pulumi_oci/fleetappsmanagement/get_task_records.py +265 -0
  168. pulumi_oci/fleetappsmanagement/maintenance_window.py +840 -0
  169. pulumi_oci/fleetappsmanagement/onboarding.py +631 -0
  170. pulumi_oci/fleetappsmanagement/outputs.py +25528 -1223
  171. pulumi_oci/fleetappsmanagement/patch.py +980 -0
  172. pulumi_oci/fleetappsmanagement/platform_configuration.py +694 -0
  173. pulumi_oci/fleetappsmanagement/property.py +28 -27
  174. pulumi_oci/fleetappsmanagement/provision.py +1195 -0
  175. pulumi_oci/fleetappsmanagement/runbook.py +1277 -0
  176. pulumi_oci/fleetappsmanagement/runbook_version.py +996 -0
  177. pulumi_oci/fleetappsmanagement/scheduler_definition.py +946 -0
  178. pulumi_oci/fleetappsmanagement/task_record.py +786 -0
  179. pulumi_oci/fleetsoftwareupdate/_inputs.py +88 -15
  180. pulumi_oci/fleetsoftwareupdate/fsu_cycle.py +71 -42
  181. pulumi_oci/fleetsoftwareupdate/get_fsu_cycle.py +21 -7
  182. pulumi_oci/fleetsoftwareupdate/get_fsu_cycles.py +1 -1
  183. pulumi_oci/fleetsoftwareupdate/outputs.py +172 -15
  184. pulumi_oci/goldengate/_inputs.py +449 -3
  185. pulumi_oci/goldengate/connection.py +200 -56
  186. pulumi_oci/goldengate/get_connection.py +59 -28
  187. pulumi_oci/goldengate/get_connections.py +0 -3
  188. pulumi_oci/goldengate/outputs.py +886 -22
  189. pulumi_oci/loadbalancer/_inputs.py +24 -6
  190. pulumi_oci/loadbalancer/backend.py +35 -7
  191. pulumi_oci/loadbalancer/backend_set.py +35 -7
  192. pulumi_oci/loadbalancer/listener.py +7 -7
  193. pulumi_oci/loadbalancer/load_balancer.py +81 -0
  194. pulumi_oci/loadbalancer/outputs.py +29 -10
  195. pulumi_oci/loganalytics/__init__.py +3 -0
  196. pulumi_oci/loganalytics/_inputs.py +123 -0
  197. pulumi_oci/loganalytics/get_log_analytics_entities.py +52 -0
  198. pulumi_oci/loganalytics/get_log_analytics_entity_type.py +254 -0
  199. pulumi_oci/loganalytics/get_log_analytics_entity_types.py +230 -0
  200. pulumi_oci/loganalytics/log_analytics_entity_type.py +508 -0
  201. pulumi_oci/loganalytics/outputs.py +258 -0
  202. pulumi_oci/mysql/_inputs.py +274 -0
  203. pulumi_oci/mysql/get_mysql_backup.py +29 -1
  204. pulumi_oci/mysql/get_mysql_backups.py +23 -1
  205. pulumi_oci/mysql/get_mysql_db_system.py +15 -1
  206. pulumi_oci/mysql/get_replica.py +15 -1
  207. pulumi_oci/mysql/mysql_backup.py +98 -2
  208. pulumi_oci/mysql/mysql_db_system.py +57 -0
  209. pulumi_oci/mysql/outputs.py +594 -0
  210. pulumi_oci/mysql/replica.py +28 -0
  211. pulumi_oci/nosql/__init__.py +2 -0
  212. pulumi_oci/nosql/_inputs.py +129 -3
  213. pulumi_oci/nosql/configuration.py +383 -0
  214. pulumi_oci/nosql/get_configuration.py +162 -0
  215. pulumi_oci/nosql/index.py +7 -7
  216. pulumi_oci/nosql/outputs.py +164 -2
  217. pulumi_oci/nosql/table_replica.py +9 -9
  218. pulumi_oci/oci/__init__.py +56 -0
  219. pulumi_oci/oci/_inputs.py +1615 -0
  220. pulumi_oci/oci/apiaccesscontrol_privileged_api_control.py +930 -0
  221. pulumi_oci/oci/apiaccesscontrol_privileged_api_request.py +1303 -0
  222. pulumi_oci/oci/dbmulticloud_multi_cloud_resource_discovery.py +675 -0
  223. pulumi_oci/oci/dbmulticloud_oracle_db_azure_blob_container.py +743 -0
  224. pulumi_oci/oci/dbmulticloud_oracle_db_azure_blob_mount.py +675 -0
  225. pulumi_oci/oci/dbmulticloud_oracle_db_azure_connector.py +740 -0
  226. pulumi_oci/oci/dbmulticloud_oracle_db_azure_vault.py +840 -0
  227. pulumi_oci/oci/dbmulticloud_oracle_db_azure_vault_association.py +673 -0
  228. pulumi_oci/oci/get_apiaccesscontrol_api_metadata.py +310 -0
  229. pulumi_oci/oci/get_apiaccesscontrol_api_metadata_by_entity_types.py +208 -0
  230. pulumi_oci/oci/get_apiaccesscontrol_api_metadatas.py +208 -0
  231. pulumi_oci/oci/get_apiaccesscontrol_privileged_api_control.py +367 -0
  232. pulumi_oci/oci/get_apiaccesscontrol_privileged_api_controls.py +222 -0
  233. pulumi_oci/oci/get_apiaccesscontrol_privileged_api_request.py +535 -0
  234. pulumi_oci/oci/get_apiaccesscontrol_privileged_api_requests.py +244 -0
  235. pulumi_oci/oci/get_dbmulticloud_multi_cloud_resource_discoveries.py +252 -0
  236. pulumi_oci/oci/get_dbmulticloud_multi_cloud_resource_discovery.py +297 -0
  237. pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_blob_container.py +310 -0
  238. pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_blob_containers.py +255 -0
  239. pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_blob_mount.py +296 -0
  240. pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_blob_mounts.py +255 -0
  241. pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_connector.py +311 -0
  242. pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_connectors.py +233 -0
  243. pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_key.py +282 -0
  244. pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_keys.py +233 -0
  245. pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_vault.py +338 -0
  246. pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_vault_association.py +296 -0
  247. pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_vault_associations.py +255 -0
  248. pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_vaults.py +252 -0
  249. pulumi_oci/oci/get_wlms_managed_instance.py +255 -0
  250. pulumi_oci/oci/get_wlms_managed_instance_scan_results.py +189 -0
  251. pulumi_oci/oci/get_wlms_managed_instance_server.py +378 -0
  252. pulumi_oci/oci/get_wlms_managed_instance_server_installed_patches.py +168 -0
  253. pulumi_oci/oci/get_wlms_managed_instance_servers.py +170 -0
  254. pulumi_oci/oci/get_wlms_managed_instances.py +200 -0
  255. pulumi_oci/oci/get_wlms_wls_domain.py +311 -0
  256. pulumi_oci/oci/get_wlms_wls_domain_agreement_records.py +145 -0
  257. pulumi_oci/oci/get_wlms_wls_domain_applicable_patches.py +145 -0
  258. pulumi_oci/oci/get_wlms_wls_domain_scan_results.py +170 -0
  259. pulumi_oci/oci/get_wlms_wls_domain_server.py +378 -0
  260. pulumi_oci/oci/get_wlms_wls_domain_server_backup.py +230 -0
  261. pulumi_oci/oci/get_wlms_wls_domain_server_backup_content.py +189 -0
  262. pulumi_oci/oci/get_wlms_wls_domain_server_backups.py +168 -0
  263. pulumi_oci/oci/get_wlms_wls_domain_server_installed_patches.py +168 -0
  264. pulumi_oci/oci/get_wlms_wls_domain_servers.py +170 -0
  265. pulumi_oci/oci/get_wlms_wls_domains.py +266 -0
  266. pulumi_oci/oci/outputs.py +5617 -0
  267. pulumi_oci/pulumi-plugin.json +1 -1
  268. pulumi_oci/redis/__init__.py +8 -0
  269. pulumi_oci/redis/_inputs.py +179 -0
  270. pulumi_oci/redis/get_oci_cache_user.py +283 -0
  271. pulumi_oci/redis/get_oci_cache_users.py +192 -0
  272. pulumi_oci/redis/oci_cache_user.py +695 -0
  273. pulumi_oci/redis/oci_cache_user_get_redis_cluster.py +333 -0
  274. pulumi_oci/redis/outputs.py +330 -0
  275. pulumi_oci/redis/redis_cluster_attach_oci_cache_user.py +263 -0
  276. pulumi_oci/redis/redis_cluster_create_identity_token.py +439 -0
  277. pulumi_oci/redis/redis_cluster_detach_oci_cache_user.py +263 -0
  278. pulumi_oci/redis/redis_cluster_get_oci_cache_user.py +333 -0
  279. {pulumi_oci-3.1.0a1750143229.dist-info → pulumi_oci-3.1.0a1751948424.dist-info}/METADATA +1 -1
  280. {pulumi_oci-3.1.0a1750143229.dist-info → pulumi_oci-3.1.0a1751948424.dist-info}/RECORD +282 -141
  281. {pulumi_oci-3.1.0a1750143229.dist-info → pulumi_oci-3.1.0a1751948424.dist-info}/WHEEL +0 -0
  282. {pulumi_oci-3.1.0a1750143229.dist-info → pulumi_oci-3.1.0a1751948424.dist-info}/top_level.txt +0 -0
@@ -29,12 +29,14 @@ __all__ = [
29
29
  'MysqlBackupDbSystemSnapshotBackupPolicyPitrPolicy',
30
30
  'MysqlBackupDbSystemSnapshotDataStorage',
31
31
  'MysqlBackupDbSystemSnapshotDeletionPolicy',
32
+ 'MysqlBackupDbSystemSnapshotEncryptData',
32
33
  'MysqlBackupDbSystemSnapshotEndpoint',
33
34
  'MysqlBackupDbSystemSnapshotMaintenance',
34
35
  'MysqlBackupDbSystemSnapshotReadEndpoint',
35
36
  'MysqlBackupDbSystemSnapshotRest',
36
37
  'MysqlBackupDbSystemSnapshotSecureConnection',
37
38
  'MysqlBackupDbSystemSnapshotSummary',
39
+ 'MysqlBackupEncryptData',
38
40
  'MysqlBackupSourceDetails',
39
41
  'MysqlConfigurationInitVariables',
40
42
  'MysqlConfigurationVariables',
@@ -51,6 +53,7 @@ __all__ = [
51
53
  'MysqlDbSystemCustomerContact',
52
54
  'MysqlDbSystemDataStorage',
53
55
  'MysqlDbSystemDeletionPolicy',
56
+ 'MysqlDbSystemEncryptData',
54
57
  'MysqlDbSystemEndpoint',
55
58
  'MysqlDbSystemHeatWaveCluster',
56
59
  'MysqlDbSystemMaintenance',
@@ -59,6 +62,7 @@ __all__ = [
59
62
  'MysqlDbSystemRest',
60
63
  'MysqlDbSystemSecureConnections',
61
64
  'MysqlDbSystemSource',
65
+ 'ReplicaEncryptData',
62
66
  'ReplicaReplicaOverrides',
63
67
  'ReplicaSecureConnection',
64
68
  'GetChannelSourceResult',
@@ -80,12 +84,14 @@ __all__ = [
80
84
  'GetMysqlBackupDbSystemSnapshotBackupPolicyPitrPolicyResult',
81
85
  'GetMysqlBackupDbSystemSnapshotDataStorageResult',
82
86
  'GetMysqlBackupDbSystemSnapshotDeletionPolicyResult',
87
+ 'GetMysqlBackupDbSystemSnapshotEncryptDataResult',
83
88
  'GetMysqlBackupDbSystemSnapshotEndpointResult',
84
89
  'GetMysqlBackupDbSystemSnapshotMaintenanceResult',
85
90
  'GetMysqlBackupDbSystemSnapshotReadEndpointResult',
86
91
  'GetMysqlBackupDbSystemSnapshotRestResult',
87
92
  'GetMysqlBackupDbSystemSnapshotSecureConnectionResult',
88
93
  'GetMysqlBackupDbSystemSnapshotSummaryResult',
94
+ 'GetMysqlBackupEncryptDataResult',
89
95
  'GetMysqlBackupSourceDetailResult',
90
96
  'GetMysqlBackupsBackupResult',
91
97
  'GetMysqlBackupsBackupDbSystemSnapshotResult',
@@ -94,12 +100,14 @@ __all__ = [
94
100
  'GetMysqlBackupsBackupDbSystemSnapshotBackupPolicyPitrPolicyResult',
95
101
  'GetMysqlBackupsBackupDbSystemSnapshotDataStorageResult',
96
102
  'GetMysqlBackupsBackupDbSystemSnapshotDeletionPolicyResult',
103
+ 'GetMysqlBackupsBackupDbSystemSnapshotEncryptDataResult',
97
104
  'GetMysqlBackupsBackupDbSystemSnapshotEndpointResult',
98
105
  'GetMysqlBackupsBackupDbSystemSnapshotMaintenanceResult',
99
106
  'GetMysqlBackupsBackupDbSystemSnapshotReadEndpointResult',
100
107
  'GetMysqlBackupsBackupDbSystemSnapshotRestResult',
101
108
  'GetMysqlBackupsBackupDbSystemSnapshotSecureConnectionResult',
102
109
  'GetMysqlBackupsBackupDbSystemSnapshotSummaryResult',
110
+ 'GetMysqlBackupsBackupEncryptDataResult',
103
111
  'GetMysqlBackupsBackupSourceDetailResult',
104
112
  'GetMysqlBackupsFilterResult',
105
113
  'GetMysqlConfigurationInitVariableResult',
@@ -121,6 +129,7 @@ __all__ = [
121
129
  'GetMysqlDbSystemCustomerContactResult',
122
130
  'GetMysqlDbSystemDataStorageResult',
123
131
  'GetMysqlDbSystemDeletionPolicyResult',
132
+ 'GetMysqlDbSystemEncryptDataResult',
124
133
  'GetMysqlDbSystemEndpointResult',
125
134
  'GetMysqlDbSystemHeatWaveClusterResult',
126
135
  'GetMysqlDbSystemMaintenanceResult',
@@ -143,6 +152,7 @@ __all__ = [
143
152
  'GetMysqlDbSystemsDbSystemCustomerContactResult',
144
153
  'GetMysqlDbSystemsDbSystemDataStorageResult',
145
154
  'GetMysqlDbSystemsDbSystemDeletionPolicyResult',
155
+ 'GetMysqlDbSystemsDbSystemEncryptDataResult',
146
156
  'GetMysqlDbSystemsDbSystemEndpointResult',
147
157
  'GetMysqlDbSystemsDbSystemHeatWaveClusterResult',
148
158
  'GetMysqlDbSystemsDbSystemMaintenanceResult',
@@ -155,10 +165,12 @@ __all__ = [
155
165
  'GetMysqlVersionFilterResult',
156
166
  'GetMysqlVersionVersionResult',
157
167
  'GetMysqlVersionVersionVersionResult',
168
+ 'GetReplicaEncryptDataResult',
158
169
  'GetReplicaReplicaOverrideResult',
159
170
  'GetReplicaSecureConnectionResult',
160
171
  'GetReplicasFilterResult',
161
172
  'GetReplicasReplicaResult',
173
+ 'GetReplicasReplicaEncryptDataResult',
162
174
  'GetReplicasReplicaReplicaOverrideResult',
163
175
  'GetReplicasReplicaSecureConnectionResult',
164
176
  'GetShapesFilterResult',
@@ -673,6 +685,8 @@ class MysqlBackupDbSystemSnapshot(dict):
673
685
  suggest = "deletion_policies"
674
686
  elif key == "displayName":
675
687
  suggest = "display_name"
688
+ elif key == "encryptDatas":
689
+ suggest = "encrypt_datas"
676
690
  elif key == "faultDomain":
677
691
  suggest = "fault_domain"
678
692
  elif key == "freeformTags":
@@ -723,6 +737,7 @@ class MysqlBackupDbSystemSnapshot(dict):
723
737
  deletion_policies: Optional[Sequence['outputs.MysqlBackupDbSystemSnapshotDeletionPolicy']] = None,
724
738
  description: Optional[builtins.str] = None,
725
739
  display_name: Optional[builtins.str] = None,
740
+ encrypt_datas: Optional[Sequence['outputs.MysqlBackupDbSystemSnapshotEncryptData']] = None,
726
741
  endpoints: Optional[Sequence['outputs.MysqlBackupDbSystemSnapshotEndpoint']] = None,
727
742
  fault_domain: Optional[builtins.str] = None,
728
743
  freeform_tags: Optional[Mapping[str, builtins.str]] = None,
@@ -755,6 +770,7 @@ class MysqlBackupDbSystemSnapshot(dict):
755
770
  :param Sequence['MysqlBackupDbSystemSnapshotDeletionPolicyArgs'] deletion_policies: The Deletion policy for the DB System.
756
771
  :param builtins.str description: (Updatable) A user-supplied description for the backup.
757
772
  :param builtins.str display_name: (Updatable) A user-supplied display name for the backup.
773
+ :param Sequence['MysqlBackupDbSystemSnapshotEncryptDataArgs'] encrypt_datas: Encrypt data details.
758
774
  :param Sequence['MysqlBackupDbSystemSnapshotEndpointArgs'] endpoints: The network endpoints available for this DB System.
759
775
  :param builtins.str fault_domain: The name of the Fault Domain the DB System is located in.
760
776
  :param Mapping[str, builtins.str] freeform_tags: (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
@@ -800,6 +816,8 @@ class MysqlBackupDbSystemSnapshot(dict):
800
816
  pulumi.set(__self__, "description", description)
801
817
  if display_name is not None:
802
818
  pulumi.set(__self__, "display_name", display_name)
819
+ if encrypt_datas is not None:
820
+ pulumi.set(__self__, "encrypt_datas", encrypt_datas)
803
821
  if endpoints is not None:
804
822
  pulumi.set(__self__, "endpoints", endpoints)
805
823
  if fault_domain is not None:
@@ -941,6 +959,14 @@ class MysqlBackupDbSystemSnapshot(dict):
941
959
  """
942
960
  return pulumi.get(self, "display_name")
943
961
 
962
+ @property
963
+ @pulumi.getter(name="encryptDatas")
964
+ def encrypt_datas(self) -> Optional[Sequence['outputs.MysqlBackupDbSystemSnapshotEncryptData']]:
965
+ """
966
+ Encrypt data details.
967
+ """
968
+ return pulumi.get(self, "encrypt_datas")
969
+
944
970
  @property
945
971
  @pulumi.getter
946
972
  def endpoints(self) -> Optional[Sequence['outputs.MysqlBackupDbSystemSnapshotEndpoint']]:
@@ -1103,6 +1129,8 @@ class MysqlBackupDbSystemSnapshotBackupPolicy(dict):
1103
1129
  suggest = "pitr_policies"
1104
1130
  elif key == "retentionInDays":
1105
1131
  suggest = "retention_in_days"
1132
+ elif key == "softDelete":
1133
+ suggest = "soft_delete"
1106
1134
  elif key == "windowStartTime":
1107
1135
  suggest = "window_start_time"
1108
1136
 
@@ -1124,6 +1152,7 @@ class MysqlBackupDbSystemSnapshotBackupPolicy(dict):
1124
1152
  is_enabled: Optional[builtins.bool] = None,
1125
1153
  pitr_policies: Optional[Sequence['outputs.MysqlBackupDbSystemSnapshotBackupPolicyPitrPolicy']] = None,
1126
1154
  retention_in_days: Optional[builtins.int] = None,
1155
+ soft_delete: Optional[builtins.str] = None,
1127
1156
  window_start_time: Optional[builtins.str] = None):
1128
1157
  """
1129
1158
  :param Sequence['MysqlBackupDbSystemSnapshotBackupPolicyCopyPolicyArgs'] copy_policies: List of policies of a DB system to schedule cross-region DB system backup copy.
@@ -1132,6 +1161,7 @@ class MysqlBackupDbSystemSnapshotBackupPolicy(dict):
1132
1161
  :param builtins.bool is_enabled: Specifies if the DB System read endpoint is enabled or not.
1133
1162
  :param Sequence['MysqlBackupDbSystemSnapshotBackupPolicyPitrPolicyArgs'] pitr_policies: The PITR policy for the DB System.
1134
1163
  :param builtins.int retention_in_days: (Updatable) Number of days to retain this backup.
1164
+ :param builtins.str soft_delete: (Updatable) Retains the backup to be deleted due to the retention policy in DELETE SCHEDULED state for 7 days before permanently deleting it.
1135
1165
  :param builtins.str window_start_time: The start time of the maintenance window.
1136
1166
  """
1137
1167
  if copy_policies is not None:
@@ -1146,6 +1176,8 @@ class MysqlBackupDbSystemSnapshotBackupPolicy(dict):
1146
1176
  pulumi.set(__self__, "pitr_policies", pitr_policies)
1147
1177
  if retention_in_days is not None:
1148
1178
  pulumi.set(__self__, "retention_in_days", retention_in_days)
1179
+ if soft_delete is not None:
1180
+ pulumi.set(__self__, "soft_delete", soft_delete)
1149
1181
  if window_start_time is not None:
1150
1182
  pulumi.set(__self__, "window_start_time", window_start_time)
1151
1183
 
@@ -1197,6 +1229,14 @@ class MysqlBackupDbSystemSnapshotBackupPolicy(dict):
1197
1229
  """
1198
1230
  return pulumi.get(self, "retention_in_days")
1199
1231
 
1232
+ @property
1233
+ @pulumi.getter(name="softDelete")
1234
+ def soft_delete(self) -> Optional[builtins.str]:
1235
+ """
1236
+ (Updatable) Retains the backup to be deleted due to the retention policy in DELETE SCHEDULED state for 7 days before permanently deleting it.
1237
+ """
1238
+ return pulumi.get(self, "soft_delete")
1239
+
1200
1240
  @property
1201
1241
  @pulumi.getter(name="windowStartTime")
1202
1242
  def window_start_time(self) -> Optional[builtins.str]:
@@ -1448,6 +1488,56 @@ class MysqlBackupDbSystemSnapshotDeletionPolicy(dict):
1448
1488
  return pulumi.get(self, "is_delete_protected")
1449
1489
 
1450
1490
 
1491
+ @pulumi.output_type
1492
+ class MysqlBackupDbSystemSnapshotEncryptData(dict):
1493
+ @staticmethod
1494
+ def __key_warning(key: str):
1495
+ suggest = None
1496
+ if key == "keyGenerationType":
1497
+ suggest = "key_generation_type"
1498
+ elif key == "keyId":
1499
+ suggest = "key_id"
1500
+
1501
+ if suggest:
1502
+ pulumi.log.warn(f"Key '{key}' not found in MysqlBackupDbSystemSnapshotEncryptData. Access the value via the '{suggest}' property getter instead.")
1503
+
1504
+ def __getitem__(self, key: str) -> Any:
1505
+ MysqlBackupDbSystemSnapshotEncryptData.__key_warning(key)
1506
+ return super().__getitem__(key)
1507
+
1508
+ def get(self, key: str, default = None) -> Any:
1509
+ MysqlBackupDbSystemSnapshotEncryptData.__key_warning(key)
1510
+ return super().get(key, default)
1511
+
1512
+ def __init__(__self__, *,
1513
+ key_generation_type: Optional[builtins.str] = None,
1514
+ key_id: Optional[builtins.str] = None):
1515
+ """
1516
+ :param builtins.str key_generation_type: Select whether to use Oracle-managed key (SYSTEM) or your own key (BYOK).
1517
+ :param builtins.str key_id: The OCID of the key to use.
1518
+ """
1519
+ if key_generation_type is not None:
1520
+ pulumi.set(__self__, "key_generation_type", key_generation_type)
1521
+ if key_id is not None:
1522
+ pulumi.set(__self__, "key_id", key_id)
1523
+
1524
+ @property
1525
+ @pulumi.getter(name="keyGenerationType")
1526
+ def key_generation_type(self) -> Optional[builtins.str]:
1527
+ """
1528
+ Select whether to use Oracle-managed key (SYSTEM) or your own key (BYOK).
1529
+ """
1530
+ return pulumi.get(self, "key_generation_type")
1531
+
1532
+ @property
1533
+ @pulumi.getter(name="keyId")
1534
+ def key_id(self) -> Optional[builtins.str]:
1535
+ """
1536
+ The OCID of the key to use.
1537
+ """
1538
+ return pulumi.get(self, "key_id")
1539
+
1540
+
1451
1541
  @pulumi.output_type
1452
1542
  class MysqlBackupDbSystemSnapshotEndpoint(dict):
1453
1543
  @staticmethod
@@ -1843,6 +1933,55 @@ class MysqlBackupDbSystemSnapshotSummary(dict):
1843
1933
  return pulumi.get(self, "region")
1844
1934
 
1845
1935
 
1936
+ @pulumi.output_type
1937
+ class MysqlBackupEncryptData(dict):
1938
+ @staticmethod
1939
+ def __key_warning(key: str):
1940
+ suggest = None
1941
+ if key == "keyGenerationType":
1942
+ suggest = "key_generation_type"
1943
+ elif key == "keyId":
1944
+ suggest = "key_id"
1945
+
1946
+ if suggest:
1947
+ pulumi.log.warn(f"Key '{key}' not found in MysqlBackupEncryptData. Access the value via the '{suggest}' property getter instead.")
1948
+
1949
+ def __getitem__(self, key: str) -> Any:
1950
+ MysqlBackupEncryptData.__key_warning(key)
1951
+ return super().__getitem__(key)
1952
+
1953
+ def get(self, key: str, default = None) -> Any:
1954
+ MysqlBackupEncryptData.__key_warning(key)
1955
+ return super().get(key, default)
1956
+
1957
+ def __init__(__self__, *,
1958
+ key_generation_type: builtins.str,
1959
+ key_id: Optional[builtins.str] = None):
1960
+ """
1961
+ :param builtins.str key_generation_type: Select whether to use Oracle-managed key (SYSTEM) or your own key (BYOK).
1962
+ :param builtins.str key_id: The OCID of the key to use.
1963
+ """
1964
+ pulumi.set(__self__, "key_generation_type", key_generation_type)
1965
+ if key_id is not None:
1966
+ pulumi.set(__self__, "key_id", key_id)
1967
+
1968
+ @property
1969
+ @pulumi.getter(name="keyGenerationType")
1970
+ def key_generation_type(self) -> builtins.str:
1971
+ """
1972
+ Select whether to use Oracle-managed key (SYSTEM) or your own key (BYOK).
1973
+ """
1974
+ return pulumi.get(self, "key_generation_type")
1975
+
1976
+ @property
1977
+ @pulumi.getter(name="keyId")
1978
+ def key_id(self) -> Optional[builtins.str]:
1979
+ """
1980
+ The OCID of the key to use.
1981
+ """
1982
+ return pulumi.get(self, "key_id")
1983
+
1984
+
1846
1985
  @pulumi.output_type
1847
1986
  class MysqlBackupSourceDetails(dict):
1848
1987
  @staticmethod
@@ -4010,6 +4149,8 @@ class MysqlDbSystemBackupPolicy(dict):
4010
4149
  suggest = "pitr_policy"
4011
4150
  elif key == "retentionInDays":
4012
4151
  suggest = "retention_in_days"
4152
+ elif key == "softDelete":
4153
+ suggest = "soft_delete"
4013
4154
  elif key == "windowStartTime":
4014
4155
  suggest = "window_start_time"
4015
4156
 
@@ -4031,6 +4172,7 @@ class MysqlDbSystemBackupPolicy(dict):
4031
4172
  is_enabled: Optional[builtins.bool] = None,
4032
4173
  pitr_policy: Optional['outputs.MysqlDbSystemBackupPolicyPitrPolicy'] = None,
4033
4174
  retention_in_days: Optional[builtins.int] = None,
4175
+ soft_delete: Optional[builtins.str] = None,
4034
4176
  window_start_time: Optional[builtins.str] = None):
4035
4177
  """
4036
4178
  :param Sequence['MysqlDbSystemBackupPolicyCopyPolicyArgs'] copy_policies: (Updatable) List of policies of a DB system to schedule cross-region DB system backup copy.
@@ -4051,6 +4193,7 @@ class MysqlDbSystemBackupPolicy(dict):
4051
4193
  :param builtins.bool is_enabled: (Updatable) Specifies if automatic backups are enabled.
4052
4194
  :param 'MysqlDbSystemBackupPolicyPitrPolicyArgs' pitr_policy: (Updatable) The PITR policy for the DB System.
4053
4195
  :param builtins.int retention_in_days: (Updatable) Number of days to retain an automatic backup.
4196
+ :param builtins.str soft_delete: (Updatable) Retains the backup to be deleted due to the retention policy in DELETE SCHEDULED state for 7 days before permanently deleting it.
4054
4197
  :param builtins.str window_start_time: (Updatable) The start of a 30-minute window of time in which daily, automated backups occur.
4055
4198
 
4056
4199
  This should be in the format of the "Time" portion of an RFC3339-formatted timestamp. Any second or sub-second time data will be truncated to zero.
@@ -4069,6 +4212,8 @@ class MysqlDbSystemBackupPolicy(dict):
4069
4212
  pulumi.set(__self__, "pitr_policy", pitr_policy)
4070
4213
  if retention_in_days is not None:
4071
4214
  pulumi.set(__self__, "retention_in_days", retention_in_days)
4215
+ if soft_delete is not None:
4216
+ pulumi.set(__self__, "soft_delete", soft_delete)
4072
4217
  if window_start_time is not None:
4073
4218
  pulumi.set(__self__, "window_start_time", window_start_time)
4074
4219
 
@@ -4132,6 +4277,14 @@ class MysqlDbSystemBackupPolicy(dict):
4132
4277
  """
4133
4278
  return pulumi.get(self, "retention_in_days")
4134
4279
 
4280
+ @property
4281
+ @pulumi.getter(name="softDelete")
4282
+ def soft_delete(self) -> Optional[builtins.str]:
4283
+ """
4284
+ (Updatable) Retains the backup to be deleted due to the retention policy in DELETE SCHEDULED state for 7 days before permanently deleting it.
4285
+ """
4286
+ return pulumi.get(self, "soft_delete")
4287
+
4135
4288
  @property
4136
4289
  @pulumi.getter(name="windowStartTime")
4137
4290
  def window_start_time(self) -> Optional[builtins.str]:
@@ -5059,6 +5212,55 @@ class MysqlDbSystemDeletionPolicy(dict):
5059
5212
  return pulumi.get(self, "is_delete_protected")
5060
5213
 
5061
5214
 
5215
+ @pulumi.output_type
5216
+ class MysqlDbSystemEncryptData(dict):
5217
+ @staticmethod
5218
+ def __key_warning(key: str):
5219
+ suggest = None
5220
+ if key == "keyGenerationType":
5221
+ suggest = "key_generation_type"
5222
+ elif key == "keyId":
5223
+ suggest = "key_id"
5224
+
5225
+ if suggest:
5226
+ pulumi.log.warn(f"Key '{key}' not found in MysqlDbSystemEncryptData. Access the value via the '{suggest}' property getter instead.")
5227
+
5228
+ def __getitem__(self, key: str) -> Any:
5229
+ MysqlDbSystemEncryptData.__key_warning(key)
5230
+ return super().__getitem__(key)
5231
+
5232
+ def get(self, key: str, default = None) -> Any:
5233
+ MysqlDbSystemEncryptData.__key_warning(key)
5234
+ return super().get(key, default)
5235
+
5236
+ def __init__(__self__, *,
5237
+ key_generation_type: builtins.str,
5238
+ key_id: Optional[builtins.str] = None):
5239
+ """
5240
+ :param builtins.str key_generation_type: (Updatable) Select whether to use Oracle-managed key (SYSTEM) or your own key (BYOK).
5241
+ :param builtins.str key_id: (Updatable) The OCID of the key to use.
5242
+ """
5243
+ pulumi.set(__self__, "key_generation_type", key_generation_type)
5244
+ if key_id is not None:
5245
+ pulumi.set(__self__, "key_id", key_id)
5246
+
5247
+ @property
5248
+ @pulumi.getter(name="keyGenerationType")
5249
+ def key_generation_type(self) -> builtins.str:
5250
+ """
5251
+ (Updatable) Select whether to use Oracle-managed key (SYSTEM) or your own key (BYOK).
5252
+ """
5253
+ return pulumi.get(self, "key_generation_type")
5254
+
5255
+ @property
5256
+ @pulumi.getter(name="keyId")
5257
+ def key_id(self) -> Optional[builtins.str]:
5258
+ """
5259
+ (Updatable) The OCID of the key to use.
5260
+ """
5261
+ return pulumi.get(self, "key_id")
5262
+
5263
+
5062
5264
  @pulumi.output_type
5063
5265
  class MysqlDbSystemEndpoint(dict):
5064
5266
  @staticmethod
@@ -5662,6 +5864,56 @@ class MysqlDbSystemSource(dict):
5662
5864
  return pulumi.get(self, "source_url")
5663
5865
 
5664
5866
 
5867
+ @pulumi.output_type
5868
+ class ReplicaEncryptData(dict):
5869
+ @staticmethod
5870
+ def __key_warning(key: str):
5871
+ suggest = None
5872
+ if key == "keyGenerationType":
5873
+ suggest = "key_generation_type"
5874
+ elif key == "keyId":
5875
+ suggest = "key_id"
5876
+
5877
+ if suggest:
5878
+ pulumi.log.warn(f"Key '{key}' not found in ReplicaEncryptData. Access the value via the '{suggest}' property getter instead.")
5879
+
5880
+ def __getitem__(self, key: str) -> Any:
5881
+ ReplicaEncryptData.__key_warning(key)
5882
+ return super().__getitem__(key)
5883
+
5884
+ def get(self, key: str, default = None) -> Any:
5885
+ ReplicaEncryptData.__key_warning(key)
5886
+ return super().get(key, default)
5887
+
5888
+ def __init__(__self__, *,
5889
+ key_generation_type: Optional[builtins.str] = None,
5890
+ key_id: Optional[builtins.str] = None):
5891
+ """
5892
+ :param builtins.str key_generation_type: Select whether to use Oracle-managed key (SYSTEM) or your own key (BYOK).
5893
+ :param builtins.str key_id: The OCID of the key to use.
5894
+ """
5895
+ if key_generation_type is not None:
5896
+ pulumi.set(__self__, "key_generation_type", key_generation_type)
5897
+ if key_id is not None:
5898
+ pulumi.set(__self__, "key_id", key_id)
5899
+
5900
+ @property
5901
+ @pulumi.getter(name="keyGenerationType")
5902
+ def key_generation_type(self) -> Optional[builtins.str]:
5903
+ """
5904
+ Select whether to use Oracle-managed key (SYSTEM) or your own key (BYOK).
5905
+ """
5906
+ return pulumi.get(self, "key_generation_type")
5907
+
5908
+ @property
5909
+ @pulumi.getter(name="keyId")
5910
+ def key_id(self) -> Optional[builtins.str]:
5911
+ """
5912
+ The OCID of the key to use.
5913
+ """
5914
+ return pulumi.get(self, "key_id")
5915
+
5916
+
5665
5917
  @pulumi.output_type
5666
5918
  class ReplicaReplicaOverrides(dict):
5667
5919
  @staticmethod
@@ -6621,6 +6873,7 @@ class GetMysqlBackupDbSystemSnapshotResult(dict):
6621
6873
  deletion_policies: Sequence['outputs.GetMysqlBackupDbSystemSnapshotDeletionPolicyResult'],
6622
6874
  description: builtins.str,
6623
6875
  display_name: builtins.str,
6876
+ encrypt_datas: Sequence['outputs.GetMysqlBackupDbSystemSnapshotEncryptDataResult'],
6624
6877
  endpoints: Sequence['outputs.GetMysqlBackupDbSystemSnapshotEndpointResult'],
6625
6878
  fault_domain: builtins.str,
6626
6879
  freeform_tags: Mapping[str, builtins.str],
@@ -6653,6 +6906,7 @@ class GetMysqlBackupDbSystemSnapshotResult(dict):
6653
6906
  :param Sequence['GetMysqlBackupDbSystemSnapshotDeletionPolicyArgs'] deletion_policies: The Deletion policy for the DB System.
6654
6907
  :param builtins.str description: A user-supplied description for the backup.
6655
6908
  :param builtins.str display_name: A user-supplied display name for the backup.
6909
+ :param Sequence['GetMysqlBackupDbSystemSnapshotEncryptDataArgs'] encrypt_datas: Encrypt data details.
6656
6910
  :param Sequence['GetMysqlBackupDbSystemSnapshotEndpointArgs'] endpoints: The network endpoints available for this DB System.
6657
6911
  :param builtins.str fault_domain: The name of the Fault Domain the DB System is located in.
6658
6912
  :param Mapping[str, builtins.str] freeform_tags: Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
@@ -6685,6 +6939,7 @@ class GetMysqlBackupDbSystemSnapshotResult(dict):
6685
6939
  pulumi.set(__self__, "deletion_policies", deletion_policies)
6686
6940
  pulumi.set(__self__, "description", description)
6687
6941
  pulumi.set(__self__, "display_name", display_name)
6942
+ pulumi.set(__self__, "encrypt_datas", encrypt_datas)
6688
6943
  pulumi.set(__self__, "endpoints", endpoints)
6689
6944
  pulumi.set(__self__, "fault_domain", fault_domain)
6690
6945
  pulumi.set(__self__, "freeform_tags", freeform_tags)
@@ -6808,6 +7063,14 @@ class GetMysqlBackupDbSystemSnapshotResult(dict):
6808
7063
  """
6809
7064
  return pulumi.get(self, "display_name")
6810
7065
 
7066
+ @property
7067
+ @pulumi.getter(name="encryptDatas")
7068
+ def encrypt_datas(self) -> Sequence['outputs.GetMysqlBackupDbSystemSnapshotEncryptDataResult']:
7069
+ """
7070
+ Encrypt data details.
7071
+ """
7072
+ return pulumi.get(self, "encrypt_datas")
7073
+
6811
7074
  @property
6812
7075
  @pulumi.getter
6813
7076
  def endpoints(self) -> Sequence['outputs.GetMysqlBackupDbSystemSnapshotEndpointResult']:
@@ -6962,6 +7225,7 @@ class GetMysqlBackupDbSystemSnapshotBackupPolicyResult(dict):
6962
7225
  is_enabled: builtins.bool,
6963
7226
  pitr_policies: Sequence['outputs.GetMysqlBackupDbSystemSnapshotBackupPolicyPitrPolicyResult'],
6964
7227
  retention_in_days: builtins.int,
7228
+ soft_delete: builtins.str,
6965
7229
  window_start_time: builtins.str):
6966
7230
  """
6967
7231
  :param Sequence['GetMysqlBackupDbSystemSnapshotBackupPolicyCopyPolicyArgs'] copy_policies: List of policies of a DB system to schedule cross-region DB system backup copy.
@@ -6970,6 +7234,7 @@ class GetMysqlBackupDbSystemSnapshotBackupPolicyResult(dict):
6970
7234
  :param builtins.bool is_enabled: Specifies if the DB System read endpoint is enabled or not.
6971
7235
  :param Sequence['GetMysqlBackupDbSystemSnapshotBackupPolicyPitrPolicyArgs'] pitr_policies: The PITR policy for the DB System.
6972
7236
  :param builtins.int retention_in_days: Number of days to retain this backup.
7237
+ :param builtins.str soft_delete: Retains the backup to be deleted due to the retention policy in DELETE SCHEDULED state for 7 days before permanently deleting it.
6973
7238
  :param builtins.str window_start_time: The start time of the maintenance window.
6974
7239
  """
6975
7240
  pulumi.set(__self__, "copy_policies", copy_policies)
@@ -6978,6 +7243,7 @@ class GetMysqlBackupDbSystemSnapshotBackupPolicyResult(dict):
6978
7243
  pulumi.set(__self__, "is_enabled", is_enabled)
6979
7244
  pulumi.set(__self__, "pitr_policies", pitr_policies)
6980
7245
  pulumi.set(__self__, "retention_in_days", retention_in_days)
7246
+ pulumi.set(__self__, "soft_delete", soft_delete)
6981
7247
  pulumi.set(__self__, "window_start_time", window_start_time)
6982
7248
 
6983
7249
  @property
@@ -7028,6 +7294,14 @@ class GetMysqlBackupDbSystemSnapshotBackupPolicyResult(dict):
7028
7294
  """
7029
7295
  return pulumi.get(self, "retention_in_days")
7030
7296
 
7297
+ @property
7298
+ @pulumi.getter(name="softDelete")
7299
+ def soft_delete(self) -> builtins.str:
7300
+ """
7301
+ Retains the backup to be deleted due to the retention policy in DELETE SCHEDULED state for 7 days before permanently deleting it.
7302
+ """
7303
+ return pulumi.get(self, "soft_delete")
7304
+
7031
7305
  @property
7032
7306
  @pulumi.getter(name="windowStartTime")
7033
7307
  def window_start_time(self) -> builtins.str:
@@ -7186,6 +7460,35 @@ class GetMysqlBackupDbSystemSnapshotDeletionPolicyResult(dict):
7186
7460
  return pulumi.get(self, "is_delete_protected")
7187
7461
 
7188
7462
 
7463
+ @pulumi.output_type
7464
+ class GetMysqlBackupDbSystemSnapshotEncryptDataResult(dict):
7465
+ def __init__(__self__, *,
7466
+ key_generation_type: builtins.str,
7467
+ key_id: builtins.str):
7468
+ """
7469
+ :param builtins.str key_generation_type: Select whether to use Oracle-managed key (SYSTEM) or your own key (BYOK).
7470
+ :param builtins.str key_id: The OCID of the key to use.
7471
+ """
7472
+ pulumi.set(__self__, "key_generation_type", key_generation_type)
7473
+ pulumi.set(__self__, "key_id", key_id)
7474
+
7475
+ @property
7476
+ @pulumi.getter(name="keyGenerationType")
7477
+ def key_generation_type(self) -> builtins.str:
7478
+ """
7479
+ Select whether to use Oracle-managed key (SYSTEM) or your own key (BYOK).
7480
+ """
7481
+ return pulumi.get(self, "key_generation_type")
7482
+
7483
+ @property
7484
+ @pulumi.getter(name="keyId")
7485
+ def key_id(self) -> builtins.str:
7486
+ """
7487
+ The OCID of the key to use.
7488
+ """
7489
+ return pulumi.get(self, "key_id")
7490
+
7491
+
7189
7492
  @pulumi.output_type
7190
7493
  class GetMysqlBackupDbSystemSnapshotEndpointResult(dict):
7191
7494
  def __init__(__self__, *,
@@ -7459,6 +7762,35 @@ class GetMysqlBackupDbSystemSnapshotSummaryResult(dict):
7459
7762
  return pulumi.get(self, "region")
7460
7763
 
7461
7764
 
7765
+ @pulumi.output_type
7766
+ class GetMysqlBackupEncryptDataResult(dict):
7767
+ def __init__(__self__, *,
7768
+ key_generation_type: builtins.str,
7769
+ key_id: builtins.str):
7770
+ """
7771
+ :param builtins.str key_generation_type: Select whether to use Oracle-managed key (SYSTEM) or your own key (BYOK).
7772
+ :param builtins.str key_id: The OCID of the key to use.
7773
+ """
7774
+ pulumi.set(__self__, "key_generation_type", key_generation_type)
7775
+ pulumi.set(__self__, "key_id", key_id)
7776
+
7777
+ @property
7778
+ @pulumi.getter(name="keyGenerationType")
7779
+ def key_generation_type(self) -> builtins.str:
7780
+ """
7781
+ Select whether to use Oracle-managed key (SYSTEM) or your own key (BYOK).
7782
+ """
7783
+ return pulumi.get(self, "key_generation_type")
7784
+
7785
+ @property
7786
+ @pulumi.getter(name="keyId")
7787
+ def key_id(self) -> builtins.str:
7788
+ """
7789
+ The OCID of the key to use.
7790
+ """
7791
+ return pulumi.get(self, "key_id")
7792
+
7793
+
7462
7794
  @pulumi.output_type
7463
7795
  class GetMysqlBackupSourceDetailResult(dict):
7464
7796
  def __init__(__self__, *,
@@ -7513,6 +7845,7 @@ class GetMysqlBackupsBackupResult(dict):
7513
7845
  defined_tags: Mapping[str, builtins.str],
7514
7846
  description: builtins.str,
7515
7847
  display_name: builtins.str,
7848
+ encrypt_datas: Sequence['outputs.GetMysqlBackupsBackupEncryptDataResult'],
7516
7849
  freeform_tags: Mapping[str, builtins.str],
7517
7850
  id: builtins.str,
7518
7851
  immediate_source_backup_id: builtins.str,
@@ -7521,6 +7854,7 @@ class GetMysqlBackupsBackupResult(dict):
7521
7854
  original_source_backup_id: builtins.str,
7522
7855
  retention_in_days: builtins.int,
7523
7856
  shape_name: builtins.str,
7857
+ soft_delete: builtins.str,
7524
7858
  source_details: Sequence['outputs.GetMysqlBackupsBackupSourceDetailResult'],
7525
7859
  state: builtins.str,
7526
7860
  system_tags: Mapping[str, builtins.str],
@@ -7538,6 +7872,7 @@ class GetMysqlBackupsBackupResult(dict):
7538
7872
  :param Mapping[str, builtins.str] defined_tags: Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
7539
7873
  :param builtins.str description: A user-supplied description for the backup.
7540
7874
  :param builtins.str display_name: A filter to return only the resource matching the given display name exactly.
7875
+ :param Sequence['GetMysqlBackupsBackupEncryptDataArgs'] encrypt_datas: Encrypt data details.
7541
7876
  :param Mapping[str, builtins.str] freeform_tags: Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
7542
7877
  :param builtins.str id: OCID of the backup itself
7543
7878
  :param builtins.str immediate_source_backup_id: The OCID of the immediate source DB system backup from which this DB system backup was copied.
@@ -7546,6 +7881,7 @@ class GetMysqlBackupsBackupResult(dict):
7546
7881
  :param builtins.str original_source_backup_id: The OCID of the original source DB system backup from which this DB system backup was copied.
7547
7882
  :param builtins.int retention_in_days: Number of days to retain this backup.
7548
7883
  :param builtins.str shape_name: The shape of the DB System instance used for backup.
7884
+ :param builtins.str soft_delete: Backup Soft Delete
7549
7885
  :param builtins.str state: Backup Lifecycle State
7550
7886
  :param Mapping[str, builtins.str] system_tags: Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
7551
7887
  :param builtins.str time_copy_created: The date and time the DB system backup copy was created, as described by [RFC 3339](https://tools.ietf.org/rfc/rfc3339).
@@ -7563,6 +7899,7 @@ class GetMysqlBackupsBackupResult(dict):
7563
7899
  pulumi.set(__self__, "defined_tags", defined_tags)
7564
7900
  pulumi.set(__self__, "description", description)
7565
7901
  pulumi.set(__self__, "display_name", display_name)
7902
+ pulumi.set(__self__, "encrypt_datas", encrypt_datas)
7566
7903
  pulumi.set(__self__, "freeform_tags", freeform_tags)
7567
7904
  pulumi.set(__self__, "id", id)
7568
7905
  pulumi.set(__self__, "immediate_source_backup_id", immediate_source_backup_id)
@@ -7571,6 +7908,7 @@ class GetMysqlBackupsBackupResult(dict):
7571
7908
  pulumi.set(__self__, "original_source_backup_id", original_source_backup_id)
7572
7909
  pulumi.set(__self__, "retention_in_days", retention_in_days)
7573
7910
  pulumi.set(__self__, "shape_name", shape_name)
7911
+ pulumi.set(__self__, "soft_delete", soft_delete)
7574
7912
  pulumi.set(__self__, "source_details", source_details)
7575
7913
  pulumi.set(__self__, "state", state)
7576
7914
  pulumi.set(__self__, "system_tags", system_tags)
@@ -7663,6 +8001,14 @@ class GetMysqlBackupsBackupResult(dict):
7663
8001
  """
7664
8002
  return pulumi.get(self, "display_name")
7665
8003
 
8004
+ @property
8005
+ @pulumi.getter(name="encryptDatas")
8006
+ def encrypt_datas(self) -> Sequence['outputs.GetMysqlBackupsBackupEncryptDataResult']:
8007
+ """
8008
+ Encrypt data details.
8009
+ """
8010
+ return pulumi.get(self, "encrypt_datas")
8011
+
7666
8012
  @property
7667
8013
  @pulumi.getter(name="freeformTags")
7668
8014
  def freeform_tags(self) -> Mapping[str, builtins.str]:
@@ -7727,6 +8073,14 @@ class GetMysqlBackupsBackupResult(dict):
7727
8073
  """
7728
8074
  return pulumi.get(self, "shape_name")
7729
8075
 
8076
+ @property
8077
+ @pulumi.getter(name="softDelete")
8078
+ def soft_delete(self) -> builtins.str:
8079
+ """
8080
+ Backup Soft Delete
8081
+ """
8082
+ return pulumi.get(self, "soft_delete")
8083
+
7730
8084
  @property
7731
8085
  @pulumi.getter(name="sourceDetails")
7732
8086
  def source_details(self) -> Sequence['outputs.GetMysqlBackupsBackupSourceDetailResult']:
@@ -7789,6 +8143,7 @@ class GetMysqlBackupsBackupDbSystemSnapshotResult(dict):
7789
8143
  deletion_policies: Sequence['outputs.GetMysqlBackupsBackupDbSystemSnapshotDeletionPolicyResult'],
7790
8144
  description: builtins.str,
7791
8145
  display_name: builtins.str,
8146
+ encrypt_datas: Sequence['outputs.GetMysqlBackupsBackupDbSystemSnapshotEncryptDataResult'],
7792
8147
  endpoints: Sequence['outputs.GetMysqlBackupsBackupDbSystemSnapshotEndpointResult'],
7793
8148
  fault_domain: builtins.str,
7794
8149
  freeform_tags: Mapping[str, builtins.str],
@@ -7821,6 +8176,7 @@ class GetMysqlBackupsBackupDbSystemSnapshotResult(dict):
7821
8176
  :param Sequence['GetMysqlBackupsBackupDbSystemSnapshotDeletionPolicyArgs'] deletion_policies: The Deletion policy for the DB System.
7822
8177
  :param builtins.str description: A user-supplied description for the backup.
7823
8178
  :param builtins.str display_name: A filter to return only the resource matching the given display name exactly.
8179
+ :param Sequence['GetMysqlBackupsBackupDbSystemSnapshotEncryptDataArgs'] encrypt_datas: Encrypt data details.
7824
8180
  :param Sequence['GetMysqlBackupsBackupDbSystemSnapshotEndpointArgs'] endpoints: The network endpoints available for this DB System.
7825
8181
  :param builtins.str fault_domain: The name of the Fault Domain the DB System is located in.
7826
8182
  :param Mapping[str, builtins.str] freeform_tags: Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
@@ -7853,6 +8209,7 @@ class GetMysqlBackupsBackupDbSystemSnapshotResult(dict):
7853
8209
  pulumi.set(__self__, "deletion_policies", deletion_policies)
7854
8210
  pulumi.set(__self__, "description", description)
7855
8211
  pulumi.set(__self__, "display_name", display_name)
8212
+ pulumi.set(__self__, "encrypt_datas", encrypt_datas)
7856
8213
  pulumi.set(__self__, "endpoints", endpoints)
7857
8214
  pulumi.set(__self__, "fault_domain", fault_domain)
7858
8215
  pulumi.set(__self__, "freeform_tags", freeform_tags)
@@ -7976,6 +8333,14 @@ class GetMysqlBackupsBackupDbSystemSnapshotResult(dict):
7976
8333
  """
7977
8334
  return pulumi.get(self, "display_name")
7978
8335
 
8336
+ @property
8337
+ @pulumi.getter(name="encryptDatas")
8338
+ def encrypt_datas(self) -> Sequence['outputs.GetMysqlBackupsBackupDbSystemSnapshotEncryptDataResult']:
8339
+ """
8340
+ Encrypt data details.
8341
+ """
8342
+ return pulumi.get(self, "encrypt_datas")
8343
+
7979
8344
  @property
7980
8345
  @pulumi.getter
7981
8346
  def endpoints(self) -> Sequence['outputs.GetMysqlBackupsBackupDbSystemSnapshotEndpointResult']:
@@ -8130,6 +8495,7 @@ class GetMysqlBackupsBackupDbSystemSnapshotBackupPolicyResult(dict):
8130
8495
  is_enabled: builtins.bool,
8131
8496
  pitr_policies: Sequence['outputs.GetMysqlBackupsBackupDbSystemSnapshotBackupPolicyPitrPolicyResult'],
8132
8497
  retention_in_days: builtins.int,
8498
+ soft_delete: builtins.str,
8133
8499
  window_start_time: builtins.str):
8134
8500
  """
8135
8501
  :param Sequence['GetMysqlBackupsBackupDbSystemSnapshotBackupPolicyCopyPolicyArgs'] copy_policies: List of policies of a DB system to schedule cross-region DB system backup copy.
@@ -8138,6 +8504,7 @@ class GetMysqlBackupsBackupDbSystemSnapshotBackupPolicyResult(dict):
8138
8504
  :param builtins.bool is_enabled: Specifies if the DB System read endpoint is enabled or not.
8139
8505
  :param Sequence['GetMysqlBackupsBackupDbSystemSnapshotBackupPolicyPitrPolicyArgs'] pitr_policies: The PITR policy for the DB System.
8140
8506
  :param builtins.int retention_in_days: Number of days to retain this backup.
8507
+ :param builtins.str soft_delete: Backup Soft Delete
8141
8508
  :param builtins.str window_start_time: The start time of the maintenance window.
8142
8509
  """
8143
8510
  pulumi.set(__self__, "copy_policies", copy_policies)
@@ -8146,6 +8513,7 @@ class GetMysqlBackupsBackupDbSystemSnapshotBackupPolicyResult(dict):
8146
8513
  pulumi.set(__self__, "is_enabled", is_enabled)
8147
8514
  pulumi.set(__self__, "pitr_policies", pitr_policies)
8148
8515
  pulumi.set(__self__, "retention_in_days", retention_in_days)
8516
+ pulumi.set(__self__, "soft_delete", soft_delete)
8149
8517
  pulumi.set(__self__, "window_start_time", window_start_time)
8150
8518
 
8151
8519
  @property
@@ -8196,6 +8564,14 @@ class GetMysqlBackupsBackupDbSystemSnapshotBackupPolicyResult(dict):
8196
8564
  """
8197
8565
  return pulumi.get(self, "retention_in_days")
8198
8566
 
8567
+ @property
8568
+ @pulumi.getter(name="softDelete")
8569
+ def soft_delete(self) -> builtins.str:
8570
+ """
8571
+ Backup Soft Delete
8572
+ """
8573
+ return pulumi.get(self, "soft_delete")
8574
+
8199
8575
  @property
8200
8576
  @pulumi.getter(name="windowStartTime")
8201
8577
  def window_start_time(self) -> builtins.str:
@@ -8354,6 +8730,35 @@ class GetMysqlBackupsBackupDbSystemSnapshotDeletionPolicyResult(dict):
8354
8730
  return pulumi.get(self, "is_delete_protected")
8355
8731
 
8356
8732
 
8733
+ @pulumi.output_type
8734
+ class GetMysqlBackupsBackupDbSystemSnapshotEncryptDataResult(dict):
8735
+ def __init__(__self__, *,
8736
+ key_generation_type: builtins.str,
8737
+ key_id: builtins.str):
8738
+ """
8739
+ :param builtins.str key_generation_type: Select whether to use Oracle-managed key (SYSTEM) or your own key (BYOK).
8740
+ :param builtins.str key_id: The OCID of the key to use.
8741
+ """
8742
+ pulumi.set(__self__, "key_generation_type", key_generation_type)
8743
+ pulumi.set(__self__, "key_id", key_id)
8744
+
8745
+ @property
8746
+ @pulumi.getter(name="keyGenerationType")
8747
+ def key_generation_type(self) -> builtins.str:
8748
+ """
8749
+ Select whether to use Oracle-managed key (SYSTEM) or your own key (BYOK).
8750
+ """
8751
+ return pulumi.get(self, "key_generation_type")
8752
+
8753
+ @property
8754
+ @pulumi.getter(name="keyId")
8755
+ def key_id(self) -> builtins.str:
8756
+ """
8757
+ The OCID of the key to use.
8758
+ """
8759
+ return pulumi.get(self, "key_id")
8760
+
8761
+
8357
8762
  @pulumi.output_type
8358
8763
  class GetMysqlBackupsBackupDbSystemSnapshotEndpointResult(dict):
8359
8764
  def __init__(__self__, *,
@@ -8627,6 +9032,35 @@ class GetMysqlBackupsBackupDbSystemSnapshotSummaryResult(dict):
8627
9032
  return pulumi.get(self, "region")
8628
9033
 
8629
9034
 
9035
+ @pulumi.output_type
9036
+ class GetMysqlBackupsBackupEncryptDataResult(dict):
9037
+ def __init__(__self__, *,
9038
+ key_generation_type: builtins.str,
9039
+ key_id: builtins.str):
9040
+ """
9041
+ :param builtins.str key_generation_type: Select whether to use Oracle-managed key (SYSTEM) or your own key (BYOK).
9042
+ :param builtins.str key_id: The OCID of the key to use.
9043
+ """
9044
+ pulumi.set(__self__, "key_generation_type", key_generation_type)
9045
+ pulumi.set(__self__, "key_id", key_id)
9046
+
9047
+ @property
9048
+ @pulumi.getter(name="keyGenerationType")
9049
+ def key_generation_type(self) -> builtins.str:
9050
+ """
9051
+ Select whether to use Oracle-managed key (SYSTEM) or your own key (BYOK).
9052
+ """
9053
+ return pulumi.get(self, "key_generation_type")
9054
+
9055
+ @property
9056
+ @pulumi.getter(name="keyId")
9057
+ def key_id(self) -> builtins.str:
9058
+ """
9059
+ The OCID of the key to use.
9060
+ """
9061
+ return pulumi.get(self, "key_id")
9062
+
9063
+
8630
9064
  @pulumi.output_type
8631
9065
  class GetMysqlBackupsBackupSourceDetailResult(dict):
8632
9066
  def __init__(__self__, *,
@@ -11586,6 +12020,7 @@ class GetMysqlDbSystemBackupPolicyResult(dict):
11586
12020
  is_enabled: builtins.bool,
11587
12021
  pitr_policies: Sequence['outputs.GetMysqlDbSystemBackupPolicyPitrPolicyResult'],
11588
12022
  retention_in_days: builtins.int,
12023
+ soft_delete: builtins.str,
11589
12024
  window_start_time: builtins.str):
11590
12025
  """
11591
12026
  :param Sequence['GetMysqlDbSystemBackupPolicyCopyPolicyArgs'] copy_policies: List of policies of a DB system to schedule cross-region DB system backup copy.
@@ -11594,6 +12029,7 @@ class GetMysqlDbSystemBackupPolicyResult(dict):
11594
12029
  :param builtins.bool is_enabled: Specifies if the DB System read endpoint is enabled or not.
11595
12030
  :param Sequence['GetMysqlDbSystemBackupPolicyPitrPolicyArgs'] pitr_policies: The PITR policy for the DB System.
11596
12031
  :param builtins.int retention_in_days: The number of days automated backups are retained.
12032
+ :param builtins.str soft_delete: Retains the backup to be deleted due to the retention policy in DELETE SCHEDULED state for 7 days before permanently deleting it.
11597
12033
  :param builtins.str window_start_time: The start time of the maintenance window.
11598
12034
  """
11599
12035
  pulumi.set(__self__, "copy_policies", copy_policies)
@@ -11602,6 +12038,7 @@ class GetMysqlDbSystemBackupPolicyResult(dict):
11602
12038
  pulumi.set(__self__, "is_enabled", is_enabled)
11603
12039
  pulumi.set(__self__, "pitr_policies", pitr_policies)
11604
12040
  pulumi.set(__self__, "retention_in_days", retention_in_days)
12041
+ pulumi.set(__self__, "soft_delete", soft_delete)
11605
12042
  pulumi.set(__self__, "window_start_time", window_start_time)
11606
12043
 
11607
12044
  @property
@@ -11652,6 +12089,14 @@ class GetMysqlDbSystemBackupPolicyResult(dict):
11652
12089
  """
11653
12090
  return pulumi.get(self, "retention_in_days")
11654
12091
 
12092
+ @property
12093
+ @pulumi.getter(name="softDelete")
12094
+ def soft_delete(self) -> builtins.str:
12095
+ """
12096
+ Retains the backup to be deleted due to the retention policy in DELETE SCHEDULED state for 7 days before permanently deleting it.
12097
+ """
12098
+ return pulumi.get(self, "soft_delete")
12099
+
11655
12100
  @property
11656
12101
  @pulumi.getter(name="windowStartTime")
11657
12102
  def window_start_time(self) -> builtins.str:
@@ -12284,6 +12729,35 @@ class GetMysqlDbSystemDeletionPolicyResult(dict):
12284
12729
  return pulumi.get(self, "is_delete_protected")
12285
12730
 
12286
12731
 
12732
+ @pulumi.output_type
12733
+ class GetMysqlDbSystemEncryptDataResult(dict):
12734
+ def __init__(__self__, *,
12735
+ key_generation_type: builtins.str,
12736
+ key_id: builtins.str):
12737
+ """
12738
+ :param builtins.str key_generation_type: Select whether to use Oracle-managed key (SYSTEM) or your own key (BYOK).
12739
+ :param builtins.str key_id: The OCID of the key to use.
12740
+ """
12741
+ pulumi.set(__self__, "key_generation_type", key_generation_type)
12742
+ pulumi.set(__self__, "key_id", key_id)
12743
+
12744
+ @property
12745
+ @pulumi.getter(name="keyGenerationType")
12746
+ def key_generation_type(self) -> builtins.str:
12747
+ """
12748
+ Select whether to use Oracle-managed key (SYSTEM) or your own key (BYOK).
12749
+ """
12750
+ return pulumi.get(self, "key_generation_type")
12751
+
12752
+ @property
12753
+ @pulumi.getter(name="keyId")
12754
+ def key_id(self) -> builtins.str:
12755
+ """
12756
+ The OCID of the key to use.
12757
+ """
12758
+ return pulumi.get(self, "key_id")
12759
+
12760
+
12287
12761
  @pulumi.output_type
12288
12762
  class GetMysqlDbSystemEndpointResult(dict):
12289
12763
  def __init__(__self__, *,
@@ -12699,6 +13173,7 @@ class GetMysqlDbSystemsDbSystemResult(dict):
12699
13173
  deletion_policies: Sequence['outputs.GetMysqlDbSystemsDbSystemDeletionPolicyResult'],
12700
13174
  description: builtins.str,
12701
13175
  display_name: builtins.str,
13176
+ encrypt_datas: Sequence['outputs.GetMysqlDbSystemsDbSystemEncryptDataResult'],
12702
13177
  endpoints: Sequence['outputs.GetMysqlDbSystemsDbSystemEndpointResult'],
12703
13178
  fault_domain: builtins.str,
12704
13179
  freeform_tags: Mapping[str, builtins.str],
@@ -12748,6 +13223,7 @@ class GetMysqlDbSystemsDbSystemResult(dict):
12748
13223
  :param Sequence['GetMysqlDbSystemsDbSystemDeletionPolicyArgs'] deletion_policies: The Deletion policy for the DB System.
12749
13224
  :param builtins.str description: User-provided data about the DB System.
12750
13225
  :param builtins.str display_name: A filter to return only the resource matching the given display name exactly.
13226
+ :param Sequence['GetMysqlDbSystemsDbSystemEncryptDataArgs'] encrypt_datas: Encrypt data details.
12751
13227
  :param Sequence['GetMysqlDbSystemsDbSystemEndpointArgs'] endpoints: The network endpoints available for this DB System.
12752
13228
  :param builtins.str fault_domain: The fault domain on which to deploy the Read/Write endpoint. This defines the preferred primary instance.
12753
13229
  :param Mapping[str, builtins.str] freeform_tags: Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
@@ -12794,6 +13270,7 @@ class GetMysqlDbSystemsDbSystemResult(dict):
12794
13270
  pulumi.set(__self__, "deletion_policies", deletion_policies)
12795
13271
  pulumi.set(__self__, "description", description)
12796
13272
  pulumi.set(__self__, "display_name", display_name)
13273
+ pulumi.set(__self__, "encrypt_datas", encrypt_datas)
12797
13274
  pulumi.set(__self__, "endpoints", endpoints)
12798
13275
  pulumi.set(__self__, "fault_domain", fault_domain)
12799
13276
  pulumi.set(__self__, "freeform_tags", freeform_tags)
@@ -12972,6 +13449,14 @@ class GetMysqlDbSystemsDbSystemResult(dict):
12972
13449
  """
12973
13450
  return pulumi.get(self, "display_name")
12974
13451
 
13452
+ @property
13453
+ @pulumi.getter(name="encryptDatas")
13454
+ def encrypt_datas(self) -> Sequence['outputs.GetMysqlDbSystemsDbSystemEncryptDataResult']:
13455
+ """
13456
+ Encrypt data details.
13457
+ """
13458
+ return pulumi.get(self, "encrypt_datas")
13459
+
12975
13460
  @property
12976
13461
  @pulumi.getter
12977
13462
  def endpoints(self) -> Sequence['outputs.GetMysqlDbSystemsDbSystemEndpointResult']:
@@ -13195,6 +13680,7 @@ class GetMysqlDbSystemsDbSystemBackupPolicyResult(dict):
13195
13680
  is_enabled: builtins.bool,
13196
13681
  pitr_policies: Sequence['outputs.GetMysqlDbSystemsDbSystemBackupPolicyPitrPolicyResult'],
13197
13682
  retention_in_days: builtins.int,
13683
+ soft_delete: builtins.str,
13198
13684
  window_start_time: builtins.str):
13199
13685
  """
13200
13686
  :param Sequence['GetMysqlDbSystemsDbSystemBackupPolicyCopyPolicyArgs'] copy_policies: List of policies of a DB system to schedule cross-region DB system backup copy.
@@ -13203,6 +13689,7 @@ class GetMysqlDbSystemsDbSystemBackupPolicyResult(dict):
13203
13689
  :param builtins.bool is_enabled: Specifies if the DB System read endpoint is enabled or not.
13204
13690
  :param Sequence['GetMysqlDbSystemsDbSystemBackupPolicyPitrPolicyArgs'] pitr_policies: The PITR policy for the DB System.
13205
13691
  :param builtins.int retention_in_days: The number of days automated backups are retained.
13692
+ :param builtins.str soft_delete: Retains the backup to be deleted due to the retention policy in DELETE SCHEDULED state for 7 days before permanently deleting it.
13206
13693
  :param builtins.str window_start_time: The start time of the maintenance window.
13207
13694
  """
13208
13695
  pulumi.set(__self__, "copy_policies", copy_policies)
@@ -13211,6 +13698,7 @@ class GetMysqlDbSystemsDbSystemBackupPolicyResult(dict):
13211
13698
  pulumi.set(__self__, "is_enabled", is_enabled)
13212
13699
  pulumi.set(__self__, "pitr_policies", pitr_policies)
13213
13700
  pulumi.set(__self__, "retention_in_days", retention_in_days)
13701
+ pulumi.set(__self__, "soft_delete", soft_delete)
13214
13702
  pulumi.set(__self__, "window_start_time", window_start_time)
13215
13703
 
13216
13704
  @property
@@ -13261,6 +13749,14 @@ class GetMysqlDbSystemsDbSystemBackupPolicyResult(dict):
13261
13749
  """
13262
13750
  return pulumi.get(self, "retention_in_days")
13263
13751
 
13752
+ @property
13753
+ @pulumi.getter(name="softDelete")
13754
+ def soft_delete(self) -> builtins.str:
13755
+ """
13756
+ Retains the backup to be deleted due to the retention policy in DELETE SCHEDULED state for 7 days before permanently deleting it.
13757
+ """
13758
+ return pulumi.get(self, "soft_delete")
13759
+
13264
13760
  @property
13265
13761
  @pulumi.getter(name="windowStartTime")
13266
13762
  def window_start_time(self) -> builtins.str:
@@ -13893,6 +14389,35 @@ class GetMysqlDbSystemsDbSystemDeletionPolicyResult(dict):
13893
14389
  return pulumi.get(self, "is_delete_protected")
13894
14390
 
13895
14391
 
14392
+ @pulumi.output_type
14393
+ class GetMysqlDbSystemsDbSystemEncryptDataResult(dict):
14394
+ def __init__(__self__, *,
14395
+ key_generation_type: builtins.str,
14396
+ key_id: builtins.str):
14397
+ """
14398
+ :param builtins.str key_generation_type: Select whether to use Oracle-managed key (SYSTEM) or your own key (BYOK).
14399
+ :param builtins.str key_id: The OCID of the key to use.
14400
+ """
14401
+ pulumi.set(__self__, "key_generation_type", key_generation_type)
14402
+ pulumi.set(__self__, "key_id", key_id)
14403
+
14404
+ @property
14405
+ @pulumi.getter(name="keyGenerationType")
14406
+ def key_generation_type(self) -> builtins.str:
14407
+ """
14408
+ Select whether to use Oracle-managed key (SYSTEM) or your own key (BYOK).
14409
+ """
14410
+ return pulumi.get(self, "key_generation_type")
14411
+
14412
+ @property
14413
+ @pulumi.getter(name="keyId")
14414
+ def key_id(self) -> builtins.str:
14415
+ """
14416
+ The OCID of the key to use.
14417
+ """
14418
+ return pulumi.get(self, "key_id")
14419
+
14420
+
13896
14421
  @pulumi.output_type
13897
14422
  class GetMysqlDbSystemsDbSystemEndpointResult(dict):
13898
14423
  def __init__(__self__, *,
@@ -14398,6 +14923,35 @@ class GetMysqlVersionVersionVersionResult(dict):
14398
14923
  return pulumi.get(self, "version")
14399
14924
 
14400
14925
 
14926
+ @pulumi.output_type
14927
+ class GetReplicaEncryptDataResult(dict):
14928
+ def __init__(__self__, *,
14929
+ key_generation_type: builtins.str,
14930
+ key_id: builtins.str):
14931
+ """
14932
+ :param builtins.str key_generation_type: Select whether to use Oracle-managed key (SYSTEM) or your own key (BYOK).
14933
+ :param builtins.str key_id: The OCID of the key to use.
14934
+ """
14935
+ pulumi.set(__self__, "key_generation_type", key_generation_type)
14936
+ pulumi.set(__self__, "key_id", key_id)
14937
+
14938
+ @property
14939
+ @pulumi.getter(name="keyGenerationType")
14940
+ def key_generation_type(self) -> builtins.str:
14941
+ """
14942
+ Select whether to use Oracle-managed key (SYSTEM) or your own key (BYOK).
14943
+ """
14944
+ return pulumi.get(self, "key_generation_type")
14945
+
14946
+ @property
14947
+ @pulumi.getter(name="keyId")
14948
+ def key_id(self) -> builtins.str:
14949
+ """
14950
+ The OCID of the key to use.
14951
+ """
14952
+ return pulumi.get(self, "key_id")
14953
+
14954
+
14401
14955
  @pulumi.output_type
14402
14956
  class GetReplicaReplicaOverrideResult(dict):
14403
14957
  def __init__(__self__, *,
@@ -14515,6 +15069,7 @@ class GetReplicasReplicaResult(dict):
14515
15069
  defined_tags: Mapping[str, builtins.str],
14516
15070
  description: builtins.str,
14517
15071
  display_name: builtins.str,
15072
+ encrypt_datas: Sequence['outputs.GetReplicasReplicaEncryptDataResult'],
14518
15073
  fault_domain: builtins.str,
14519
15074
  freeform_tags: Mapping[str, builtins.str],
14520
15075
  id: builtins.str,
@@ -14539,6 +15094,7 @@ class GetReplicasReplicaResult(dict):
14539
15094
  :param Mapping[str, builtins.str] defined_tags: Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
14540
15095
  :param builtins.str description: User provided description of the read replica.
14541
15096
  :param builtins.str display_name: A filter to return only the resource matching the given display name exactly.
15097
+ :param Sequence['GetReplicasReplicaEncryptDataArgs'] encrypt_datas: Encrypt data details.
14542
15098
  :param builtins.str fault_domain: The name of the Fault Domain the read replica is located in.
14543
15099
  :param Mapping[str, builtins.str] freeform_tags: Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
14544
15100
  :param builtins.str id: The OCID of the read replica.
@@ -14563,6 +15119,7 @@ class GetReplicasReplicaResult(dict):
14563
15119
  pulumi.set(__self__, "defined_tags", defined_tags)
14564
15120
  pulumi.set(__self__, "description", description)
14565
15121
  pulumi.set(__self__, "display_name", display_name)
15122
+ pulumi.set(__self__, "encrypt_datas", encrypt_datas)
14566
15123
  pulumi.set(__self__, "fault_domain", fault_domain)
14567
15124
  pulumi.set(__self__, "freeform_tags", freeform_tags)
14568
15125
  pulumi.set(__self__, "id", id)
@@ -14636,6 +15193,14 @@ class GetReplicasReplicaResult(dict):
14636
15193
  """
14637
15194
  return pulumi.get(self, "display_name")
14638
15195
 
15196
+ @property
15197
+ @pulumi.getter(name="encryptDatas")
15198
+ def encrypt_datas(self) -> Sequence['outputs.GetReplicasReplicaEncryptDataResult']:
15199
+ """
15200
+ Encrypt data details.
15201
+ """
15202
+ return pulumi.get(self, "encrypt_datas")
15203
+
14639
15204
  @property
14640
15205
  @pulumi.getter(name="faultDomain")
14641
15206
  def fault_domain(self) -> builtins.str:
@@ -14765,6 +15330,35 @@ class GetReplicasReplicaResult(dict):
14765
15330
  return pulumi.get(self, "time_updated")
14766
15331
 
14767
15332
 
15333
+ @pulumi.output_type
15334
+ class GetReplicasReplicaEncryptDataResult(dict):
15335
+ def __init__(__self__, *,
15336
+ key_generation_type: builtins.str,
15337
+ key_id: builtins.str):
15338
+ """
15339
+ :param builtins.str key_generation_type: Select whether to use Oracle-managed key (SYSTEM) or your own key (BYOK).
15340
+ :param builtins.str key_id: The OCID of the key to use.
15341
+ """
15342
+ pulumi.set(__self__, "key_generation_type", key_generation_type)
15343
+ pulumi.set(__self__, "key_id", key_id)
15344
+
15345
+ @property
15346
+ @pulumi.getter(name="keyGenerationType")
15347
+ def key_generation_type(self) -> builtins.str:
15348
+ """
15349
+ Select whether to use Oracle-managed key (SYSTEM) or your own key (BYOK).
15350
+ """
15351
+ return pulumi.get(self, "key_generation_type")
15352
+
15353
+ @property
15354
+ @pulumi.getter(name="keyId")
15355
+ def key_id(self) -> builtins.str:
15356
+ """
15357
+ The OCID of the key to use.
15358
+ """
15359
+ return pulumi.get(self, "key_id")
15360
+
15361
+
14768
15362
  @pulumi.output_type
14769
15363
  class GetReplicasReplicaReplicaOverrideResult(dict):
14770
15364
  def __init__(__self__, *,