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
@@ -182,6 +182,8 @@ __all__ = [
182
182
  'CloudVmClusterIormConfigCachDbPlanArgsDict',
183
183
  'CloudVmClusterIormConfigDbPlanArgs',
184
184
  'CloudVmClusterIormConfigDbPlanArgsDict',
185
+ 'CloudVmClusterMultiCloudIdentityConnectorConfigArgs',
186
+ 'CloudVmClusterMultiCloudIdentityConnectorConfigArgsDict',
185
187
  'DataGuardAssociationDataCollectionOptionsArgs',
186
188
  'DataGuardAssociationDataCollectionOptionsArgsDict',
187
189
  'DatabaseConnectionStringArgs',
@@ -446,6 +448,8 @@ __all__ = [
446
448
  'GetApplicationVipsFilterArgsDict',
447
449
  'GetAutonomousCharacterSetsFilterArgs',
448
450
  'GetAutonomousCharacterSetsFilterArgsDict',
451
+ 'GetAutonomousContainerDatabaseBackupsFilterArgs',
452
+ 'GetAutonomousContainerDatabaseBackupsFilterArgsDict',
449
453
  'GetAutonomousContainerDatabaseDataguardAssociationsFilterArgs',
450
454
  'GetAutonomousContainerDatabaseDataguardAssociationsFilterArgsDict',
451
455
  'GetAutonomousContainerDatabaseVersionsFilterArgs',
@@ -462,6 +466,8 @@ __all__ = [
462
466
  'GetAutonomousDatabasePeersFilterArgsDict',
463
467
  'GetAutonomousDatabaseRefreshableClonesFilterArgs',
464
468
  'GetAutonomousDatabaseRefreshableClonesFilterArgsDict',
469
+ 'GetAutonomousDatabaseResourcePoolMembersFilterArgs',
470
+ 'GetAutonomousDatabaseResourcePoolMembersFilterArgsDict',
465
471
  'GetAutonomousDatabaseSoftwareImagesFilterArgs',
466
472
  'GetAutonomousDatabaseSoftwareImagesFilterArgsDict',
467
473
  'GetAutonomousDatabasesClonesFilterArgs',
@@ -2345,6 +2351,16 @@ if not MYPY:
2345
2351
  """
2346
2352
  (Updatable) Proxy URL to connect to object store.
2347
2353
  """
2354
+ is_remote: NotRequired[pulumi.Input[builtins.bool]]
2355
+ """
2356
+ (Updatable) Indicates whether the backup destination is cross-region or local region.
2357
+ """
2358
+ remote_region: NotRequired[pulumi.Input[builtins.str]]
2359
+ """
2360
+ (Updatable) The name of the remote region where the remote automatic incremental backups will be stored.
2361
+
2362
+ For information about valid region names, see [Regions and Availability Domains](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/regions.htm).
2363
+ """
2348
2364
  vpc_password: NotRequired[pulumi.Input[builtins.str]]
2349
2365
  """
2350
2366
  (Updatable) For a RECOVERY_APPLIANCE backup destination, the password for the VPC user that is used to access the Recovery Appliance.
@@ -2362,12 +2378,18 @@ class AutonomousContainerDatabaseBackupConfigBackupDestinationDetailsArgs:
2362
2378
  type: pulumi.Input[builtins.str],
2363
2379
  id: Optional[pulumi.Input[builtins.str]] = None,
2364
2380
  internet_proxy: Optional[pulumi.Input[builtins.str]] = None,
2381
+ is_remote: Optional[pulumi.Input[builtins.bool]] = None,
2382
+ remote_region: Optional[pulumi.Input[builtins.str]] = None,
2365
2383
  vpc_password: Optional[pulumi.Input[builtins.str]] = None,
2366
2384
  vpc_user: Optional[pulumi.Input[builtins.str]] = None):
2367
2385
  """
2368
2386
  :param pulumi.Input[builtins.str] type: (Updatable) Type of the database backup destination.
2369
2387
  :param pulumi.Input[builtins.str] id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the backup destination.
2370
2388
  :param pulumi.Input[builtins.str] internet_proxy: (Updatable) Proxy URL to connect to object store.
2389
+ :param pulumi.Input[builtins.bool] is_remote: (Updatable) Indicates whether the backup destination is cross-region or local region.
2390
+ :param pulumi.Input[builtins.str] remote_region: (Updatable) The name of the remote region where the remote automatic incremental backups will be stored.
2391
+
2392
+ For information about valid region names, see [Regions and Availability Domains](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/regions.htm).
2371
2393
  :param pulumi.Input[builtins.str] vpc_password: (Updatable) For a RECOVERY_APPLIANCE backup destination, the password for the VPC user that is used to access the Recovery Appliance.
2372
2394
  :param pulumi.Input[builtins.str] vpc_user: (Updatable) For a RECOVERY_APPLIANCE backup destination, the Virtual Private Catalog (VPC) user that is used to access the Recovery Appliance.
2373
2395
  """
@@ -2376,6 +2398,10 @@ class AutonomousContainerDatabaseBackupConfigBackupDestinationDetailsArgs:
2376
2398
  pulumi.set(__self__, "id", id)
2377
2399
  if internet_proxy is not None:
2378
2400
  pulumi.set(__self__, "internet_proxy", internet_proxy)
2401
+ if is_remote is not None:
2402
+ pulumi.set(__self__, "is_remote", is_remote)
2403
+ if remote_region is not None:
2404
+ pulumi.set(__self__, "remote_region", remote_region)
2379
2405
  if vpc_password is not None:
2380
2406
  pulumi.set(__self__, "vpc_password", vpc_password)
2381
2407
  if vpc_user is not None:
@@ -2417,6 +2443,32 @@ class AutonomousContainerDatabaseBackupConfigBackupDestinationDetailsArgs:
2417
2443
  def internet_proxy(self, value: Optional[pulumi.Input[builtins.str]]):
2418
2444
  pulumi.set(self, "internet_proxy", value)
2419
2445
 
2446
+ @property
2447
+ @pulumi.getter(name="isRemote")
2448
+ def is_remote(self) -> Optional[pulumi.Input[builtins.bool]]:
2449
+ """
2450
+ (Updatable) Indicates whether the backup destination is cross-region or local region.
2451
+ """
2452
+ return pulumi.get(self, "is_remote")
2453
+
2454
+ @is_remote.setter
2455
+ def is_remote(self, value: Optional[pulumi.Input[builtins.bool]]):
2456
+ pulumi.set(self, "is_remote", value)
2457
+
2458
+ @property
2459
+ @pulumi.getter(name="remoteRegion")
2460
+ def remote_region(self) -> Optional[pulumi.Input[builtins.str]]:
2461
+ """
2462
+ (Updatable) The name of the remote region where the remote automatic incremental backups will be stored.
2463
+
2464
+ For information about valid region names, see [Regions and Availability Domains](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/regions.htm).
2465
+ """
2466
+ return pulumi.get(self, "remote_region")
2467
+
2468
+ @remote_region.setter
2469
+ def remote_region(self, value: Optional[pulumi.Input[builtins.str]]):
2470
+ pulumi.set(self, "remote_region", value)
2471
+
2420
2472
  @property
2421
2473
  @pulumi.getter(name="vpcPassword")
2422
2474
  def vpc_password(self) -> Optional[pulumi.Input[builtins.str]]:
@@ -2936,6 +2988,16 @@ if not MYPY:
2936
2988
  """
2937
2989
  Proxy URL to connect to object store.
2938
2990
  """
2991
+ is_remote: NotRequired[pulumi.Input[builtins.bool]]
2992
+ """
2993
+ Indicates whether the backup destination is cross-region or local region.
2994
+ """
2995
+ remote_region: NotRequired[pulumi.Input[builtins.str]]
2996
+ """
2997
+ The name of the remote region where the remote automatic incremental backups will be stored.
2998
+
2999
+ For information about valid region names, see [Regions and Availability Domains](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/regions.htm).
3000
+ """
2939
3001
  vpc_password: NotRequired[pulumi.Input[builtins.str]]
2940
3002
  """
2941
3003
  For a RECOVERY_APPLIANCE backup destination, the password for the VPC user that is used to access the Recovery Appliance.
@@ -2954,6 +3016,8 @@ class AutonomousContainerDatabaseDataguardAssociationPeerAutonomousContainerData
2954
3016
  dbrs_policy_id: Optional[pulumi.Input[builtins.str]] = None,
2955
3017
  id: Optional[pulumi.Input[builtins.str]] = None,
2956
3018
  internet_proxy: Optional[pulumi.Input[builtins.str]] = None,
3019
+ is_remote: Optional[pulumi.Input[builtins.bool]] = None,
3020
+ remote_region: Optional[pulumi.Input[builtins.str]] = None,
2957
3021
  vpc_password: Optional[pulumi.Input[builtins.str]] = None,
2958
3022
  vpc_user: Optional[pulumi.Input[builtins.str]] = None):
2959
3023
  """
@@ -2961,6 +3025,10 @@ class AutonomousContainerDatabaseDataguardAssociationPeerAutonomousContainerData
2961
3025
  :param pulumi.Input[builtins.str] dbrs_policy_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the DBRS policy used for backup.
2962
3026
  :param pulumi.Input[builtins.str] id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the backup destination.
2963
3027
  :param pulumi.Input[builtins.str] internet_proxy: Proxy URL to connect to object store.
3028
+ :param pulumi.Input[builtins.bool] is_remote: Indicates whether the backup destination is cross-region or local region.
3029
+ :param pulumi.Input[builtins.str] remote_region: The name of the remote region where the remote automatic incremental backups will be stored.
3030
+
3031
+ For information about valid region names, see [Regions and Availability Domains](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/regions.htm).
2964
3032
  :param pulumi.Input[builtins.str] vpc_password: For a RECOVERY_APPLIANCE backup destination, the password for the VPC user that is used to access the Recovery Appliance.
2965
3033
  :param pulumi.Input[builtins.str] vpc_user: For a RECOVERY_APPLIANCE backup destination, the Virtual Private Catalog (VPC) user that is used to access the Recovery Appliance.
2966
3034
  """
@@ -2971,6 +3039,10 @@ class AutonomousContainerDatabaseDataguardAssociationPeerAutonomousContainerData
2971
3039
  pulumi.set(__self__, "id", id)
2972
3040
  if internet_proxy is not None:
2973
3041
  pulumi.set(__self__, "internet_proxy", internet_proxy)
3042
+ if is_remote is not None:
3043
+ pulumi.set(__self__, "is_remote", is_remote)
3044
+ if remote_region is not None:
3045
+ pulumi.set(__self__, "remote_region", remote_region)
2974
3046
  if vpc_password is not None:
2975
3047
  pulumi.set(__self__, "vpc_password", vpc_password)
2976
3048
  if vpc_user is not None:
@@ -3024,6 +3096,32 @@ class AutonomousContainerDatabaseDataguardAssociationPeerAutonomousContainerData
3024
3096
  def internet_proxy(self, value: Optional[pulumi.Input[builtins.str]]):
3025
3097
  pulumi.set(self, "internet_proxy", value)
3026
3098
 
3099
+ @property
3100
+ @pulumi.getter(name="isRemote")
3101
+ def is_remote(self) -> Optional[pulumi.Input[builtins.bool]]:
3102
+ """
3103
+ Indicates whether the backup destination is cross-region or local region.
3104
+ """
3105
+ return pulumi.get(self, "is_remote")
3106
+
3107
+ @is_remote.setter
3108
+ def is_remote(self, value: Optional[pulumi.Input[builtins.bool]]):
3109
+ pulumi.set(self, "is_remote", value)
3110
+
3111
+ @property
3112
+ @pulumi.getter(name="remoteRegion")
3113
+ def remote_region(self) -> Optional[pulumi.Input[builtins.str]]:
3114
+ """
3115
+ The name of the remote region where the remote automatic incremental backups will be stored.
3116
+
3117
+ For information about valid region names, see [Regions and Availability Domains](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/regions.htm).
3118
+ """
3119
+ return pulumi.get(self, "remote_region")
3120
+
3121
+ @remote_region.setter
3122
+ def remote_region(self, value: Optional[pulumi.Input[builtins.str]]):
3123
+ pulumi.set(self, "remote_region", value)
3124
+
3027
3125
  @property
3028
3126
  @pulumi.getter(name="vpcPassword")
3029
3127
  def vpc_password(self) -> Optional[pulumi.Input[builtins.str]]:
@@ -4161,6 +4259,16 @@ if not MYPY:
4161
4259
  """
4162
4260
  Proxy URL to connect to object store.
4163
4261
  """
4262
+ is_remote: NotRequired[pulumi.Input[builtins.bool]]
4263
+ """
4264
+ Indicates whether the backup destination is cross-region or local region.
4265
+ """
4266
+ remote_region: NotRequired[pulumi.Input[builtins.str]]
4267
+ """
4268
+ The name of the remote region where the remote automatic incremental backups will be stored.
4269
+
4270
+ For information about valid region names, see [Regions and Availability Domains](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/regions.htm).
4271
+ """
4164
4272
  vpc_password: NotRequired[pulumi.Input[builtins.str]]
4165
4273
  """
4166
4274
  For a RECOVERY_APPLIANCE backup destination, the password for the VPC user that is used to access the Recovery Appliance.
@@ -4178,12 +4286,18 @@ class AutonomousContainerDatabasePeerAutonomousContainerDatabaseBackupConfigBack
4178
4286
  type: pulumi.Input[builtins.str],
4179
4287
  id: Optional[pulumi.Input[builtins.str]] = None,
4180
4288
  internet_proxy: Optional[pulumi.Input[builtins.str]] = None,
4289
+ is_remote: Optional[pulumi.Input[builtins.bool]] = None,
4290
+ remote_region: Optional[pulumi.Input[builtins.str]] = None,
4181
4291
  vpc_password: Optional[pulumi.Input[builtins.str]] = None,
4182
4292
  vpc_user: Optional[pulumi.Input[builtins.str]] = None):
4183
4293
  """
4184
4294
  :param pulumi.Input[builtins.str] type: Type of the database backup destination.
4185
4295
  :param pulumi.Input[builtins.str] id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the backup destination.
4186
4296
  :param pulumi.Input[builtins.str] internet_proxy: Proxy URL to connect to object store.
4297
+ :param pulumi.Input[builtins.bool] is_remote: Indicates whether the backup destination is cross-region or local region.
4298
+ :param pulumi.Input[builtins.str] remote_region: The name of the remote region where the remote automatic incremental backups will be stored.
4299
+
4300
+ For information about valid region names, see [Regions and Availability Domains](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/regions.htm).
4187
4301
  :param pulumi.Input[builtins.str] vpc_password: For a RECOVERY_APPLIANCE backup destination, the password for the VPC user that is used to access the Recovery Appliance.
4188
4302
  :param pulumi.Input[builtins.str] vpc_user: For a RECOVERY_APPLIANCE backup destination, the Virtual Private Catalog (VPC) user that is used to access the Recovery Appliance.
4189
4303
  """
@@ -4192,6 +4306,10 @@ class AutonomousContainerDatabasePeerAutonomousContainerDatabaseBackupConfigBack
4192
4306
  pulumi.set(__self__, "id", id)
4193
4307
  if internet_proxy is not None:
4194
4308
  pulumi.set(__self__, "internet_proxy", internet_proxy)
4309
+ if is_remote is not None:
4310
+ pulumi.set(__self__, "is_remote", is_remote)
4311
+ if remote_region is not None:
4312
+ pulumi.set(__self__, "remote_region", remote_region)
4195
4313
  if vpc_password is not None:
4196
4314
  pulumi.set(__self__, "vpc_password", vpc_password)
4197
4315
  if vpc_user is not None:
@@ -4233,6 +4351,32 @@ class AutonomousContainerDatabasePeerAutonomousContainerDatabaseBackupConfigBack
4233
4351
  def internet_proxy(self, value: Optional[pulumi.Input[builtins.str]]):
4234
4352
  pulumi.set(self, "internet_proxy", value)
4235
4353
 
4354
+ @property
4355
+ @pulumi.getter(name="isRemote")
4356
+ def is_remote(self) -> Optional[pulumi.Input[builtins.bool]]:
4357
+ """
4358
+ Indicates whether the backup destination is cross-region or local region.
4359
+ """
4360
+ return pulumi.get(self, "is_remote")
4361
+
4362
+ @is_remote.setter
4363
+ def is_remote(self, value: Optional[pulumi.Input[builtins.bool]]):
4364
+ pulumi.set(self, "is_remote", value)
4365
+
4366
+ @property
4367
+ @pulumi.getter(name="remoteRegion")
4368
+ def remote_region(self) -> Optional[pulumi.Input[builtins.str]]:
4369
+ """
4370
+ The name of the remote region where the remote automatic incremental backups will be stored.
4371
+
4372
+ For information about valid region names, see [Regions and Availability Domains](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/regions.htm).
4373
+ """
4374
+ return pulumi.get(self, "remote_region")
4375
+
4376
+ @remote_region.setter
4377
+ def remote_region(self, value: Optional[pulumi.Input[builtins.str]]):
4378
+ pulumi.set(self, "remote_region", value)
4379
+
4236
4380
  @property
4237
4381
  @pulumi.getter(name="vpcPassword")
4238
4382
  def vpc_password(self) -> Optional[pulumi.Input[builtins.str]]:
@@ -4271,7 +4415,6 @@ if not MYPY:
4271
4415
  time_recovery_appliance_details_updated: NotRequired[pulumi.Input[builtins.str]]
4272
4416
  """
4273
4417
  The time when the recovery appliance details are updated.
4274
- =======
4275
4418
  """
4276
4419
  elif False:
4277
4420
  AutonomousContainerDatabaseRecoveryApplianceDetailArgsDict: TypeAlias = Mapping[str, Any]
@@ -4286,7 +4429,6 @@ class AutonomousContainerDatabaseRecoveryApplianceDetailArgs:
4286
4429
  :param pulumi.Input[builtins.int] allocated_storage_size_in_gbs: The storage size of the backup destination allocated for an Autonomous Container Database to store backups on the recovery appliance, in GBs, rounded to the nearest integer.
4287
4430
  :param pulumi.Input[builtins.int] recovery_window_in_days: Number of days between the current and earliest point of recoverability covered by automatic backups.
4288
4431
  :param pulumi.Input[builtins.str] time_recovery_appliance_details_updated: The time when the recovery appliance details are updated.
4289
- =======
4290
4432
  """
4291
4433
  if allocated_storage_size_in_gbs is not None:
4292
4434
  pulumi.set(__self__, "allocated_storage_size_in_gbs", allocated_storage_size_in_gbs)
@@ -4324,7 +4466,6 @@ class AutonomousContainerDatabaseRecoveryApplianceDetailArgs:
4324
4466
  def time_recovery_appliance_details_updated(self) -> Optional[pulumi.Input[builtins.str]]:
4325
4467
  """
4326
4468
  The time when the recovery appliance details are updated.
4327
- =======
4328
4469
  """
4329
4470
  return pulumi.get(self, "time_recovery_appliance_details_updated")
4330
4471
 
@@ -4399,6 +4540,14 @@ if not MYPY:
4399
4540
  """
4400
4541
  Proxy URL to connect to object store.
4401
4542
  """
4543
+ is_remote: NotRequired[pulumi.Input[builtins.bool]]
4544
+ """
4545
+ Indicates whether the backup destination is cross-region or local region.
4546
+ """
4547
+ remote_region: NotRequired[pulumi.Input[builtins.str]]
4548
+ """
4549
+ The name of the remote region where the remote automatic incremental backups will be stored.
4550
+ """
4402
4551
  vpc_password: NotRequired[pulumi.Input[builtins.str]]
4403
4552
  """
4404
4553
  For a RECOVERY_APPLIANCE backup destination, the password for the VPC user that is used to access the Recovery Appliance.
@@ -4416,12 +4565,16 @@ class AutonomousDatabaseBackupBackupDestinationDetailsArgs:
4416
4565
  type: pulumi.Input[builtins.str],
4417
4566
  id: Optional[pulumi.Input[builtins.str]] = None,
4418
4567
  internet_proxy: Optional[pulumi.Input[builtins.str]] = None,
4568
+ is_remote: Optional[pulumi.Input[builtins.bool]] = None,
4569
+ remote_region: Optional[pulumi.Input[builtins.str]] = None,
4419
4570
  vpc_password: Optional[pulumi.Input[builtins.str]] = None,
4420
4571
  vpc_user: Optional[pulumi.Input[builtins.str]] = None):
4421
4572
  """
4422
4573
  :param pulumi.Input[builtins.str] type: The type of backup.
4423
4574
  :param pulumi.Input[builtins.str] id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Autonomous Database backup.
4424
4575
  :param pulumi.Input[builtins.str] internet_proxy: Proxy URL to connect to object store.
4576
+ :param pulumi.Input[builtins.bool] is_remote: Indicates whether the backup destination is cross-region or local region.
4577
+ :param pulumi.Input[builtins.str] remote_region: The name of the remote region where the remote automatic incremental backups will be stored.
4425
4578
  :param pulumi.Input[builtins.str] vpc_password: For a RECOVERY_APPLIANCE backup destination, the password for the VPC user that is used to access the Recovery Appliance.
4426
4579
  :param pulumi.Input[builtins.str] vpc_user: For a RECOVERY_APPLIANCE backup destination, the Virtual Private Catalog (VPC) user that is used to access the Recovery Appliance.
4427
4580
  """
@@ -4430,6 +4583,10 @@ class AutonomousDatabaseBackupBackupDestinationDetailsArgs:
4430
4583
  pulumi.set(__self__, "id", id)
4431
4584
  if internet_proxy is not None:
4432
4585
  pulumi.set(__self__, "internet_proxy", internet_proxy)
4586
+ if is_remote is not None:
4587
+ pulumi.set(__self__, "is_remote", is_remote)
4588
+ if remote_region is not None:
4589
+ pulumi.set(__self__, "remote_region", remote_region)
4433
4590
  if vpc_password is not None:
4434
4591
  pulumi.set(__self__, "vpc_password", vpc_password)
4435
4592
  if vpc_user is not None:
@@ -4471,6 +4628,30 @@ class AutonomousDatabaseBackupBackupDestinationDetailsArgs:
4471
4628
  def internet_proxy(self, value: Optional[pulumi.Input[builtins.str]]):
4472
4629
  pulumi.set(self, "internet_proxy", value)
4473
4630
 
4631
+ @property
4632
+ @pulumi.getter(name="isRemote")
4633
+ def is_remote(self) -> Optional[pulumi.Input[builtins.bool]]:
4634
+ """
4635
+ Indicates whether the backup destination is cross-region or local region.
4636
+ """
4637
+ return pulumi.get(self, "is_remote")
4638
+
4639
+ @is_remote.setter
4640
+ def is_remote(self, value: Optional[pulumi.Input[builtins.bool]]):
4641
+ pulumi.set(self, "is_remote", value)
4642
+
4643
+ @property
4644
+ @pulumi.getter(name="remoteRegion")
4645
+ def remote_region(self) -> Optional[pulumi.Input[builtins.str]]:
4646
+ """
4647
+ The name of the remote region where the remote automatic incremental backups will be stored.
4648
+ """
4649
+ return pulumi.get(self, "remote_region")
4650
+
4651
+ @remote_region.setter
4652
+ def remote_region(self, value: Optional[pulumi.Input[builtins.str]]):
4653
+ pulumi.set(self, "remote_region", value)
4654
+
4474
4655
  @property
4475
4656
  @pulumi.getter(name="vpcPassword")
4476
4657
  def vpc_password(self) -> Optional[pulumi.Input[builtins.str]]:
@@ -8075,13 +8256,17 @@ class BackupDestinationMountTypeDetailsArgs:
8075
8256
 
8076
8257
  if not MYPY:
8077
8258
  class BackupEncryptionKeyLocationDetailArgsDict(TypedDict):
8259
+ azure_encryption_key_id: NotRequired[pulumi.Input[builtins.str]]
8260
+ """
8261
+ The key OCID of a registered Azure key.
8262
+ """
8078
8263
  hsm_password: NotRequired[pulumi.Input[builtins.str]]
8079
8264
  """
8080
8265
  Provide the HSM password as you would in RDBMS for External HSM.
8081
8266
  """
8082
8267
  provider_type: NotRequired[pulumi.Input[builtins.str]]
8083
8268
  """
8084
- Use 'EXTERNAL' for creating a new database or migrate database key with External HSM.
8269
+ Use 'EXTERNAL' for creating a new database or migrating a database key to an External HSM. Use 'AZURE' for creating a new database or migrating a database key to Azure.
8085
8270
  """
8086
8271
  elif False:
8087
8272
  BackupEncryptionKeyLocationDetailArgsDict: TypeAlias = Mapping[str, Any]
@@ -8089,17 +8274,33 @@ elif False:
8089
8274
  @pulumi.input_type
8090
8275
  class BackupEncryptionKeyLocationDetailArgs:
8091
8276
  def __init__(__self__, *,
8277
+ azure_encryption_key_id: Optional[pulumi.Input[builtins.str]] = None,
8092
8278
  hsm_password: Optional[pulumi.Input[builtins.str]] = None,
8093
8279
  provider_type: Optional[pulumi.Input[builtins.str]] = None):
8094
8280
  """
8281
+ :param pulumi.Input[builtins.str] azure_encryption_key_id: The key OCID of a registered Azure key.
8095
8282
  :param pulumi.Input[builtins.str] hsm_password: Provide the HSM password as you would in RDBMS for External HSM.
8096
- :param pulumi.Input[builtins.str] provider_type: Use 'EXTERNAL' for creating a new database or migrate database key with External HSM.
8283
+ :param pulumi.Input[builtins.str] provider_type: Use 'EXTERNAL' for creating a new database or migrating a database key to an External HSM. Use 'AZURE' for creating a new database or migrating a database key to Azure.
8097
8284
  """
8285
+ if azure_encryption_key_id is not None:
8286
+ pulumi.set(__self__, "azure_encryption_key_id", azure_encryption_key_id)
8098
8287
  if hsm_password is not None:
8099
8288
  pulumi.set(__self__, "hsm_password", hsm_password)
8100
8289
  if provider_type is not None:
8101
8290
  pulumi.set(__self__, "provider_type", provider_type)
8102
8291
 
8292
+ @property
8293
+ @pulumi.getter(name="azureEncryptionKeyId")
8294
+ def azure_encryption_key_id(self) -> Optional[pulumi.Input[builtins.str]]:
8295
+ """
8296
+ The key OCID of a registered Azure key.
8297
+ """
8298
+ return pulumi.get(self, "azure_encryption_key_id")
8299
+
8300
+ @azure_encryption_key_id.setter
8301
+ def azure_encryption_key_id(self, value: Optional[pulumi.Input[builtins.str]]):
8302
+ pulumi.set(self, "azure_encryption_key_id", value)
8303
+
8103
8304
  @property
8104
8305
  @pulumi.getter(name="hsmPassword")
8105
8306
  def hsm_password(self) -> Optional[pulumi.Input[builtins.str]]:
@@ -8116,7 +8317,7 @@ class BackupEncryptionKeyLocationDetailArgs:
8116
8317
  @pulumi.getter(name="providerType")
8117
8318
  def provider_type(self) -> Optional[pulumi.Input[builtins.str]]:
8118
8319
  """
8119
- Use 'EXTERNAL' for creating a new database or migrate database key with External HSM.
8320
+ Use 'EXTERNAL' for creating a new database or migrating a database key to an External HSM. Use 'AZURE' for creating a new database or migrating a database key to Azure.
8120
8321
  """
8121
8322
  return pulumi.get(self, "provider_type")
8122
8323
 
@@ -9751,6 +9952,58 @@ class CloudVmClusterIormConfigDbPlanArgs:
9751
9952
  pulumi.set(self, "flash_cache_limit", value)
9752
9953
 
9753
9954
 
9955
+ if not MYPY:
9956
+ class CloudVmClusterMultiCloudIdentityConnectorConfigArgsDict(TypedDict):
9957
+ cloud_provider: NotRequired[pulumi.Input[builtins.str]]
9958
+ """
9959
+ Cloud provider
9960
+ """
9961
+ id: NotRequired[pulumi.Input[builtins.str]]
9962
+ """
9963
+ The OCID of the identity connector
9964
+ """
9965
+ elif False:
9966
+ CloudVmClusterMultiCloudIdentityConnectorConfigArgsDict: TypeAlias = Mapping[str, Any]
9967
+
9968
+ @pulumi.input_type
9969
+ class CloudVmClusterMultiCloudIdentityConnectorConfigArgs:
9970
+ def __init__(__self__, *,
9971
+ cloud_provider: Optional[pulumi.Input[builtins.str]] = None,
9972
+ id: Optional[pulumi.Input[builtins.str]] = None):
9973
+ """
9974
+ :param pulumi.Input[builtins.str] cloud_provider: Cloud provider
9975
+ :param pulumi.Input[builtins.str] id: The OCID of the identity connector
9976
+ """
9977
+ if cloud_provider is not None:
9978
+ pulumi.set(__self__, "cloud_provider", cloud_provider)
9979
+ if id is not None:
9980
+ pulumi.set(__self__, "id", id)
9981
+
9982
+ @property
9983
+ @pulumi.getter(name="cloudProvider")
9984
+ def cloud_provider(self) -> Optional[pulumi.Input[builtins.str]]:
9985
+ """
9986
+ Cloud provider
9987
+ """
9988
+ return pulumi.get(self, "cloud_provider")
9989
+
9990
+ @cloud_provider.setter
9991
+ def cloud_provider(self, value: Optional[pulumi.Input[builtins.str]]):
9992
+ pulumi.set(self, "cloud_provider", value)
9993
+
9994
+ @property
9995
+ @pulumi.getter
9996
+ def id(self) -> Optional[pulumi.Input[builtins.str]]:
9997
+ """
9998
+ The OCID of the identity connector
9999
+ """
10000
+ return pulumi.get(self, "id")
10001
+
10002
+ @id.setter
10003
+ def id(self, value: Optional[pulumi.Input[builtins.str]]):
10004
+ pulumi.set(self, "id", value)
10005
+
10006
+
9754
10007
  if not MYPY:
9755
10008
  class DataGuardAssociationDataCollectionOptionsArgsDict(TypedDict):
9756
10009
  is_diagnostics_events_enabled: NotRequired[pulumi.Input[builtins.bool]]
@@ -10921,11 +11174,28 @@ if not MYPY:
10921
11174
  """
10922
11175
  The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the backup destination.
10923
11176
  """
11177
+ is_remote: NotRequired[pulumi.Input[builtins.bool]]
11178
+ """
11179
+ Indicates whether the backup destination is cross-region or local region.
11180
+ """
11181
+ remote_region: NotRequired[pulumi.Input[builtins.str]]
11182
+ """
11183
+ The name of the remote region where the remote automatic incremental backups will be stored.
11184
+
11185
+ For information about valid region names, see [Regions and Availability Domains](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/regions.htm).
11186
+ """
10924
11187
  type: NotRequired[pulumi.Input[builtins.str]]
10925
11188
  """
10926
11189
  Type of the database backup destination.
10927
11190
  """
11191
+ vpc_password: NotRequired[pulumi.Input[builtins.str]]
11192
+ """
11193
+ For a RECOVERY_APPLIANCE backup destination, the password for the VPC user that is used to access the Recovery Appliance.
11194
+ """
10928
11195
  vpc_user: NotRequired[pulumi.Input[builtins.str]]
11196
+ """
11197
+ For a RECOVERY_APPLIANCE backup destination, the Virtual Private Catalog (VPC) user that is used to access the Recovery Appliance.
11198
+ """
10929
11199
  elif False:
10930
11200
  DatabaseDatabaseDbBackupConfigBackupDestinationDetailArgsDict: TypeAlias = Mapping[str, Any]
10931
11201
 
@@ -10934,19 +11204,34 @@ class DatabaseDatabaseDbBackupConfigBackupDestinationDetailArgs:
10934
11204
  def __init__(__self__, *,
10935
11205
  dbrs_policy_id: Optional[pulumi.Input[builtins.str]] = None,
10936
11206
  id: Optional[pulumi.Input[builtins.str]] = None,
11207
+ is_remote: Optional[pulumi.Input[builtins.bool]] = None,
11208
+ remote_region: Optional[pulumi.Input[builtins.str]] = None,
10937
11209
  type: Optional[pulumi.Input[builtins.str]] = None,
11210
+ vpc_password: Optional[pulumi.Input[builtins.str]] = None,
10938
11211
  vpc_user: Optional[pulumi.Input[builtins.str]] = None):
10939
11212
  """
10940
11213
  :param pulumi.Input[builtins.str] dbrs_policy_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the DBRS policy used for backup.
10941
11214
  :param pulumi.Input[builtins.str] id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the backup destination.
11215
+ :param pulumi.Input[builtins.bool] is_remote: Indicates whether the backup destination is cross-region or local region.
11216
+ :param pulumi.Input[builtins.str] remote_region: The name of the remote region where the remote automatic incremental backups will be stored.
11217
+
11218
+ For information about valid region names, see [Regions and Availability Domains](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/regions.htm).
10942
11219
  :param pulumi.Input[builtins.str] type: Type of the database backup destination.
11220
+ :param pulumi.Input[builtins.str] vpc_password: For a RECOVERY_APPLIANCE backup destination, the password for the VPC user that is used to access the Recovery Appliance.
11221
+ :param pulumi.Input[builtins.str] vpc_user: For a RECOVERY_APPLIANCE backup destination, the Virtual Private Catalog (VPC) user that is used to access the Recovery Appliance.
10943
11222
  """
10944
11223
  if dbrs_policy_id is not None:
10945
11224
  pulumi.set(__self__, "dbrs_policy_id", dbrs_policy_id)
10946
11225
  if id is not None:
10947
11226
  pulumi.set(__self__, "id", id)
11227
+ if is_remote is not None:
11228
+ pulumi.set(__self__, "is_remote", is_remote)
11229
+ if remote_region is not None:
11230
+ pulumi.set(__self__, "remote_region", remote_region)
10948
11231
  if type is not None:
10949
11232
  pulumi.set(__self__, "type", type)
11233
+ if vpc_password is not None:
11234
+ pulumi.set(__self__, "vpc_password", vpc_password)
10950
11235
  if vpc_user is not None:
10951
11236
  pulumi.set(__self__, "vpc_user", vpc_user)
10952
11237
 
@@ -10974,6 +11259,32 @@ class DatabaseDatabaseDbBackupConfigBackupDestinationDetailArgs:
10974
11259
  def id(self, value: Optional[pulumi.Input[builtins.str]]):
10975
11260
  pulumi.set(self, "id", value)
10976
11261
 
11262
+ @property
11263
+ @pulumi.getter(name="isRemote")
11264
+ def is_remote(self) -> Optional[pulumi.Input[builtins.bool]]:
11265
+ """
11266
+ Indicates whether the backup destination is cross-region or local region.
11267
+ """
11268
+ return pulumi.get(self, "is_remote")
11269
+
11270
+ @is_remote.setter
11271
+ def is_remote(self, value: Optional[pulumi.Input[builtins.bool]]):
11272
+ pulumi.set(self, "is_remote", value)
11273
+
11274
+ @property
11275
+ @pulumi.getter(name="remoteRegion")
11276
+ def remote_region(self) -> Optional[pulumi.Input[builtins.str]]:
11277
+ """
11278
+ The name of the remote region where the remote automatic incremental backups will be stored.
11279
+
11280
+ For information about valid region names, see [Regions and Availability Domains](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/regions.htm).
11281
+ """
11282
+ return pulumi.get(self, "remote_region")
11283
+
11284
+ @remote_region.setter
11285
+ def remote_region(self, value: Optional[pulumi.Input[builtins.str]]):
11286
+ pulumi.set(self, "remote_region", value)
11287
+
10977
11288
  @property
10978
11289
  @pulumi.getter
10979
11290
  def type(self) -> Optional[pulumi.Input[builtins.str]]:
@@ -10986,9 +11297,24 @@ class DatabaseDatabaseDbBackupConfigBackupDestinationDetailArgs:
10986
11297
  def type(self, value: Optional[pulumi.Input[builtins.str]]):
10987
11298
  pulumi.set(self, "type", value)
10988
11299
 
11300
+ @property
11301
+ @pulumi.getter(name="vpcPassword")
11302
+ def vpc_password(self) -> Optional[pulumi.Input[builtins.str]]:
11303
+ """
11304
+ For a RECOVERY_APPLIANCE backup destination, the password for the VPC user that is used to access the Recovery Appliance.
11305
+ """
11306
+ return pulumi.get(self, "vpc_password")
11307
+
11308
+ @vpc_password.setter
11309
+ def vpc_password(self, value: Optional[pulumi.Input[builtins.str]]):
11310
+ pulumi.set(self, "vpc_password", value)
11311
+
10989
11312
  @property
10990
11313
  @pulumi.getter(name="vpcUser")
10991
11314
  def vpc_user(self) -> Optional[pulumi.Input[builtins.str]]:
11315
+ """
11316
+ For a RECOVERY_APPLIANCE backup destination, the Virtual Private Catalog (VPC) user that is used to access the Recovery Appliance.
11317
+ """
10992
11318
  return pulumi.get(self, "vpc_user")
10993
11319
 
10994
11320
  @vpc_user.setter
@@ -10998,13 +11324,17 @@ class DatabaseDatabaseDbBackupConfigBackupDestinationDetailArgs:
10998
11324
 
10999
11325
  if not MYPY:
11000
11326
  class DatabaseDatabaseEncryptionKeyLocationDetailsArgsDict(TypedDict):
11001
- hsm_password: pulumi.Input[builtins.str]
11327
+ provider_type: pulumi.Input[builtins.str]
11002
11328
  """
11003
- Provide the HSM password as you would in RDBMS for External HSM.
11329
+ Use 'EXTERNAL' for creating a new database or migrating a database key to an External HSM. Use 'AZURE' for creating a new database or migrating a database key to Azure.
11004
11330
  """
11005
- provider_type: pulumi.Input[builtins.str]
11331
+ azure_encryption_key_id: NotRequired[pulumi.Input[builtins.str]]
11332
+ """
11333
+ Provide the key OCID of a registered Azure key.
11006
11334
  """
11007
- Use 'EXTERNAL' for creating a new database or migrate database key with External HSM.
11335
+ hsm_password: NotRequired[pulumi.Input[builtins.str]]
11336
+ """
11337
+ Provide the HSM password as you would in RDBMS for External HSM.
11008
11338
  """
11009
11339
  elif False:
11010
11340
  DatabaseDatabaseEncryptionKeyLocationDetailsArgsDict: TypeAlias = Mapping[str, Any]
@@ -11012,32 +11342,25 @@ elif False:
11012
11342
  @pulumi.input_type
11013
11343
  class DatabaseDatabaseEncryptionKeyLocationDetailsArgs:
11014
11344
  def __init__(__self__, *,
11015
- hsm_password: pulumi.Input[builtins.str],
11016
- provider_type: pulumi.Input[builtins.str]):
11345
+ provider_type: pulumi.Input[builtins.str],
11346
+ azure_encryption_key_id: Optional[pulumi.Input[builtins.str]] = None,
11347
+ hsm_password: Optional[pulumi.Input[builtins.str]] = None):
11017
11348
  """
11349
+ :param pulumi.Input[builtins.str] provider_type: Use 'EXTERNAL' for creating a new database or migrating a database key to an External HSM. Use 'AZURE' for creating a new database or migrating a database key to Azure.
11350
+ :param pulumi.Input[builtins.str] azure_encryption_key_id: Provide the key OCID of a registered Azure key.
11018
11351
  :param pulumi.Input[builtins.str] hsm_password: Provide the HSM password as you would in RDBMS for External HSM.
11019
- :param pulumi.Input[builtins.str] provider_type: Use 'EXTERNAL' for creating a new database or migrate database key with External HSM.
11020
11352
  """
11021
- pulumi.set(__self__, "hsm_password", hsm_password)
11022
11353
  pulumi.set(__self__, "provider_type", provider_type)
11023
-
11024
- @property
11025
- @pulumi.getter(name="hsmPassword")
11026
- def hsm_password(self) -> pulumi.Input[builtins.str]:
11027
- """
11028
- Provide the HSM password as you would in RDBMS for External HSM.
11029
- """
11030
- return pulumi.get(self, "hsm_password")
11031
-
11032
- @hsm_password.setter
11033
- def hsm_password(self, value: pulumi.Input[builtins.str]):
11034
- pulumi.set(self, "hsm_password", value)
11354
+ if azure_encryption_key_id is not None:
11355
+ pulumi.set(__self__, "azure_encryption_key_id", azure_encryption_key_id)
11356
+ if hsm_password is not None:
11357
+ pulumi.set(__self__, "hsm_password", hsm_password)
11035
11358
 
11036
11359
  @property
11037
11360
  @pulumi.getter(name="providerType")
11038
11361
  def provider_type(self) -> pulumi.Input[builtins.str]:
11039
11362
  """
11040
- Use 'EXTERNAL' for creating a new database or migrate database key with External HSM.
11363
+ Use 'EXTERNAL' for creating a new database or migrating a database key to an External HSM. Use 'AZURE' for creating a new database or migrating a database key to Azure.
11041
11364
  """
11042
11365
  return pulumi.get(self, "provider_type")
11043
11366
 
@@ -11045,6 +11368,30 @@ class DatabaseDatabaseEncryptionKeyLocationDetailsArgs:
11045
11368
  def provider_type(self, value: pulumi.Input[builtins.str]):
11046
11369
  pulumi.set(self, "provider_type", value)
11047
11370
 
11371
+ @property
11372
+ @pulumi.getter(name="azureEncryptionKeyId")
11373
+ def azure_encryption_key_id(self) -> Optional[pulumi.Input[builtins.str]]:
11374
+ """
11375
+ Provide the key OCID of a registered Azure key.
11376
+ """
11377
+ return pulumi.get(self, "azure_encryption_key_id")
11378
+
11379
+ @azure_encryption_key_id.setter
11380
+ def azure_encryption_key_id(self, value: Optional[pulumi.Input[builtins.str]]):
11381
+ pulumi.set(self, "azure_encryption_key_id", value)
11382
+
11383
+ @property
11384
+ @pulumi.getter(name="hsmPassword")
11385
+ def hsm_password(self) -> Optional[pulumi.Input[builtins.str]]:
11386
+ """
11387
+ Provide the HSM password as you would in RDBMS for External HSM.
11388
+ """
11389
+ return pulumi.get(self, "hsm_password")
11390
+
11391
+ @hsm_password.setter
11392
+ def hsm_password(self, value: Optional[pulumi.Input[builtins.str]]):
11393
+ pulumi.set(self, "hsm_password", value)
11394
+
11048
11395
 
11049
11396
  if not MYPY:
11050
11397
  class DatabaseDatabaseManagementConfigArgsDict(TypedDict):
@@ -11106,7 +11453,7 @@ if not MYPY:
11106
11453
  """
11107
11454
  provider_type: pulumi.Input[builtins.str]
11108
11455
  """
11109
- Use 'EXTERNAL' for creating a new database or migrate database key with External HSM.
11456
+ Use 'EXTERNAL' for creating a new database or migrating a database key to an External HSM. Use 'AZURE' for creating a new database or migrating a database key to Azure.
11110
11457
  """
11111
11458
  elif False:
11112
11459
  DatabaseDatabaseSourceEncryptionKeyLocationDetailsArgsDict: TypeAlias = Mapping[str, Any]
@@ -11118,7 +11465,7 @@ class DatabaseDatabaseSourceEncryptionKeyLocationDetailsArgs:
11118
11465
  provider_type: pulumi.Input[builtins.str]):
11119
11466
  """
11120
11467
  :param pulumi.Input[builtins.str] hsm_password: Provide the HSM password as you would in RDBMS for External HSM.
11121
- :param pulumi.Input[builtins.str] provider_type: Use 'EXTERNAL' for creating a new database or migrate database key with External HSM.
11468
+ :param pulumi.Input[builtins.str] provider_type: Use 'EXTERNAL' for creating a new database or migrating a database key to an External HSM. Use 'AZURE' for creating a new database or migrating a database key to Azure.
11122
11469
  """
11123
11470
  pulumi.set(__self__, "hsm_password", hsm_password)
11124
11471
  pulumi.set(__self__, "provider_type", provider_type)
@@ -11139,7 +11486,7 @@ class DatabaseDatabaseSourceEncryptionKeyLocationDetailsArgs:
11139
11486
  @pulumi.getter(name="providerType")
11140
11487
  def provider_type(self) -> pulumi.Input[builtins.str]:
11141
11488
  """
11142
- Use 'EXTERNAL' for creating a new database or migrate database key with External HSM.
11489
+ Use 'EXTERNAL' for creating a new database or migrating a database key to an External HSM. Use 'AZURE' for creating a new database or migrating a database key to Azure.
11143
11490
  """
11144
11491
  return pulumi.get(self, "provider_type")
11145
11492
 
@@ -11330,11 +11677,26 @@ if not MYPY:
11330
11677
  """
11331
11678
  The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the database.
11332
11679
  """
11680
+ is_remote: NotRequired[pulumi.Input[builtins.bool]]
11681
+ """
11682
+ Indicates whether the backup destination is cross-region or local region.
11683
+ """
11684
+ remote_region: NotRequired[pulumi.Input[builtins.str]]
11685
+ """
11686
+ The name of the remote region where the remote automatic incremental backups will be stored.
11687
+ """
11333
11688
  type: NotRequired[pulumi.Input[builtins.str]]
11334
11689
  """
11335
11690
  Type of the database backup destination.
11336
11691
  """
11692
+ vpc_password: NotRequired[pulumi.Input[builtins.str]]
11693
+ """
11694
+ For a RECOVERY_APPLIANCE backup destination, the password for the VPC user that is used to access the Recovery Appliance.
11695
+ """
11337
11696
  vpc_user: NotRequired[pulumi.Input[builtins.str]]
11697
+ """
11698
+ For a RECOVERY_APPLIANCE backup destination, the Virtual Private Catalog (VPC) user that is used to access the Recovery Appliance.
11699
+ """
11338
11700
  elif False:
11339
11701
  DatabaseDbBackupConfigBackupDestinationDetailArgsDict: TypeAlias = Mapping[str, Any]
11340
11702
 
@@ -11343,19 +11705,32 @@ class DatabaseDbBackupConfigBackupDestinationDetailArgs:
11343
11705
  def __init__(__self__, *,
11344
11706
  dbrs_policy_id: Optional[pulumi.Input[builtins.str]] = None,
11345
11707
  id: Optional[pulumi.Input[builtins.str]] = None,
11708
+ is_remote: Optional[pulumi.Input[builtins.bool]] = None,
11709
+ remote_region: Optional[pulumi.Input[builtins.str]] = None,
11346
11710
  type: Optional[pulumi.Input[builtins.str]] = None,
11711
+ vpc_password: Optional[pulumi.Input[builtins.str]] = None,
11347
11712
  vpc_user: Optional[pulumi.Input[builtins.str]] = None):
11348
11713
  """
11349
11714
  :param pulumi.Input[builtins.str] dbrs_policy_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the DBRS policy used for backup.
11350
11715
  :param pulumi.Input[builtins.str] id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the database.
11716
+ :param pulumi.Input[builtins.bool] is_remote: Indicates whether the backup destination is cross-region or local region.
11717
+ :param pulumi.Input[builtins.str] remote_region: The name of the remote region where the remote automatic incremental backups will be stored.
11351
11718
  :param pulumi.Input[builtins.str] type: Type of the database backup destination.
11719
+ :param pulumi.Input[builtins.str] vpc_password: For a RECOVERY_APPLIANCE backup destination, the password for the VPC user that is used to access the Recovery Appliance.
11720
+ :param pulumi.Input[builtins.str] vpc_user: For a RECOVERY_APPLIANCE backup destination, the Virtual Private Catalog (VPC) user that is used to access the Recovery Appliance.
11352
11721
  """
11353
11722
  if dbrs_policy_id is not None:
11354
11723
  pulumi.set(__self__, "dbrs_policy_id", dbrs_policy_id)
11355
11724
  if id is not None:
11356
11725
  pulumi.set(__self__, "id", id)
11726
+ if is_remote is not None:
11727
+ pulumi.set(__self__, "is_remote", is_remote)
11728
+ if remote_region is not None:
11729
+ pulumi.set(__self__, "remote_region", remote_region)
11357
11730
  if type is not None:
11358
11731
  pulumi.set(__self__, "type", type)
11732
+ if vpc_password is not None:
11733
+ pulumi.set(__self__, "vpc_password", vpc_password)
11359
11734
  if vpc_user is not None:
11360
11735
  pulumi.set(__self__, "vpc_user", vpc_user)
11361
11736
 
@@ -11383,6 +11758,30 @@ class DatabaseDbBackupConfigBackupDestinationDetailArgs:
11383
11758
  def id(self, value: Optional[pulumi.Input[builtins.str]]):
11384
11759
  pulumi.set(self, "id", value)
11385
11760
 
11761
+ @property
11762
+ @pulumi.getter(name="isRemote")
11763
+ def is_remote(self) -> Optional[pulumi.Input[builtins.bool]]:
11764
+ """
11765
+ Indicates whether the backup destination is cross-region or local region.
11766
+ """
11767
+ return pulumi.get(self, "is_remote")
11768
+
11769
+ @is_remote.setter
11770
+ def is_remote(self, value: Optional[pulumi.Input[builtins.bool]]):
11771
+ pulumi.set(self, "is_remote", value)
11772
+
11773
+ @property
11774
+ @pulumi.getter(name="remoteRegion")
11775
+ def remote_region(self) -> Optional[pulumi.Input[builtins.str]]:
11776
+ """
11777
+ The name of the remote region where the remote automatic incremental backups will be stored.
11778
+ """
11779
+ return pulumi.get(self, "remote_region")
11780
+
11781
+ @remote_region.setter
11782
+ def remote_region(self, value: Optional[pulumi.Input[builtins.str]]):
11783
+ pulumi.set(self, "remote_region", value)
11784
+
11386
11785
  @property
11387
11786
  @pulumi.getter
11388
11787
  def type(self) -> Optional[pulumi.Input[builtins.str]]:
@@ -11395,9 +11794,24 @@ class DatabaseDbBackupConfigBackupDestinationDetailArgs:
11395
11794
  def type(self, value: Optional[pulumi.Input[builtins.str]]):
11396
11795
  pulumi.set(self, "type", value)
11397
11796
 
11797
+ @property
11798
+ @pulumi.getter(name="vpcPassword")
11799
+ def vpc_password(self) -> Optional[pulumi.Input[builtins.str]]:
11800
+ """
11801
+ For a RECOVERY_APPLIANCE backup destination, the password for the VPC user that is used to access the Recovery Appliance.
11802
+ """
11803
+ return pulumi.get(self, "vpc_password")
11804
+
11805
+ @vpc_password.setter
11806
+ def vpc_password(self, value: Optional[pulumi.Input[builtins.str]]):
11807
+ pulumi.set(self, "vpc_password", value)
11808
+
11398
11809
  @property
11399
11810
  @pulumi.getter(name="vpcUser")
11400
11811
  def vpc_user(self) -> Optional[pulumi.Input[builtins.str]]:
11812
+ """
11813
+ For a RECOVERY_APPLIANCE backup destination, the Virtual Private Catalog (VPC) user that is used to access the Recovery Appliance.
11814
+ """
11401
11815
  return pulumi.get(self, "vpc_user")
11402
11816
 
11403
11817
  @vpc_user.setter
@@ -12032,6 +12446,14 @@ if not MYPY:
12032
12446
  """
12033
12447
  Proxy URL to connect to object store.
12034
12448
  """
12449
+ is_remote: NotRequired[pulumi.Input[builtins.bool]]
12450
+ """
12451
+ Indicates whether the backup destination is cross-region or local region.
12452
+ """
12453
+ remote_region: NotRequired[pulumi.Input[builtins.str]]
12454
+ """
12455
+ The name of the remote region where the remote automatic incremental backups will be stored.
12456
+ """
12035
12457
  type: NotRequired[pulumi.Input[builtins.str]]
12036
12458
  """
12037
12459
  Type of the database backup destination.
@@ -12053,6 +12475,8 @@ class DatabaseUpgradeDbBackupConfigBackupDestinationDetailArgs:
12053
12475
  dbrs_policy_id: Optional[pulumi.Input[builtins.str]] = None,
12054
12476
  id: Optional[pulumi.Input[builtins.str]] = None,
12055
12477
  internet_proxy: Optional[pulumi.Input[builtins.str]] = None,
12478
+ is_remote: Optional[pulumi.Input[builtins.bool]] = None,
12479
+ remote_region: Optional[pulumi.Input[builtins.str]] = None,
12056
12480
  type: Optional[pulumi.Input[builtins.str]] = None,
12057
12481
  vpc_password: Optional[pulumi.Input[builtins.str]] = None,
12058
12482
  vpc_user: Optional[pulumi.Input[builtins.str]] = None):
@@ -12060,6 +12484,8 @@ class DatabaseUpgradeDbBackupConfigBackupDestinationDetailArgs:
12060
12484
  :param pulumi.Input[builtins.str] dbrs_policy_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the DBRS policy used for backup.
12061
12485
  :param pulumi.Input[builtins.str] id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the database.
12062
12486
  :param pulumi.Input[builtins.str] internet_proxy: Proxy URL to connect to object store.
12487
+ :param pulumi.Input[builtins.bool] is_remote: Indicates whether the backup destination is cross-region or local region.
12488
+ :param pulumi.Input[builtins.str] remote_region: The name of the remote region where the remote automatic incremental backups will be stored.
12063
12489
  :param pulumi.Input[builtins.str] type: Type of the database backup destination.
12064
12490
  :param pulumi.Input[builtins.str] vpc_password: For a RECOVERY_APPLIANCE backup destination, the password for the VPC user that is used to access the Recovery Appliance.
12065
12491
  :param pulumi.Input[builtins.str] vpc_user: For a RECOVERY_APPLIANCE backup destination, the Virtual Private Catalog (VPC) user that is used to access the Recovery Appliance.
@@ -12070,6 +12496,10 @@ class DatabaseUpgradeDbBackupConfigBackupDestinationDetailArgs:
12070
12496
  pulumi.set(__self__, "id", id)
12071
12497
  if internet_proxy is not None:
12072
12498
  pulumi.set(__self__, "internet_proxy", internet_proxy)
12499
+ if is_remote is not None:
12500
+ pulumi.set(__self__, "is_remote", is_remote)
12501
+ if remote_region is not None:
12502
+ pulumi.set(__self__, "remote_region", remote_region)
12073
12503
  if type is not None:
12074
12504
  pulumi.set(__self__, "type", type)
12075
12505
  if vpc_password is not None:
@@ -12113,6 +12543,30 @@ class DatabaseUpgradeDbBackupConfigBackupDestinationDetailArgs:
12113
12543
  def internet_proxy(self, value: Optional[pulumi.Input[builtins.str]]):
12114
12544
  pulumi.set(self, "internet_proxy", value)
12115
12545
 
12546
+ @property
12547
+ @pulumi.getter(name="isRemote")
12548
+ def is_remote(self) -> Optional[pulumi.Input[builtins.bool]]:
12549
+ """
12550
+ Indicates whether the backup destination is cross-region or local region.
12551
+ """
12552
+ return pulumi.get(self, "is_remote")
12553
+
12554
+ @is_remote.setter
12555
+ def is_remote(self, value: Optional[pulumi.Input[builtins.bool]]):
12556
+ pulumi.set(self, "is_remote", value)
12557
+
12558
+ @property
12559
+ @pulumi.getter(name="remoteRegion")
12560
+ def remote_region(self) -> Optional[pulumi.Input[builtins.str]]:
12561
+ """
12562
+ The name of the remote region where the remote automatic incremental backups will be stored.
12563
+ """
12564
+ return pulumi.get(self, "remote_region")
12565
+
12566
+ @remote_region.setter
12567
+ def remote_region(self, value: Optional[pulumi.Input[builtins.str]]):
12568
+ pulumi.set(self, "remote_region", value)
12569
+
12116
12570
  @property
12117
12571
  @pulumi.getter
12118
12572
  def type(self) -> Optional[pulumi.Input[builtins.str]]:
@@ -12970,10 +13424,22 @@ if not MYPY:
12970
13424
  """
12971
13425
  The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the backup destination.
12972
13426
  """
13427
+ is_remote: NotRequired[pulumi.Input[builtins.bool]]
13428
+ """
13429
+ Indicates whether the backup destination is cross-region or local region.
13430
+ """
13431
+ remote_region: NotRequired[pulumi.Input[builtins.str]]
13432
+ """
13433
+ The name of the remote region where the remote automatic incremental backups will be stored.
13434
+
13435
+ For information about valid region names, see [Regions and Availability Domains](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/regions.htm).
13436
+ """
12973
13437
  type: NotRequired[pulumi.Input[builtins.str]]
12974
13438
  """
12975
13439
  Type of the database backup destination. Supported values: `NFS`.
12976
13440
  """
13441
+ vpc_password: NotRequired[pulumi.Input[builtins.str]]
13442
+ vpc_user: NotRequired[pulumi.Input[builtins.str]]
12977
13443
  elif False:
12978
13444
  DbHomeDatabaseDbBackupConfigBackupDestinationDetailArgsDict: TypeAlias = Mapping[str, Any]
12979
13445
 
@@ -12982,18 +13448,34 @@ class DbHomeDatabaseDbBackupConfigBackupDestinationDetailArgs:
12982
13448
  def __init__(__self__, *,
12983
13449
  dbrs_policy_id: Optional[pulumi.Input[builtins.str]] = None,
12984
13450
  id: Optional[pulumi.Input[builtins.str]] = None,
12985
- type: Optional[pulumi.Input[builtins.str]] = None):
13451
+ is_remote: Optional[pulumi.Input[builtins.bool]] = None,
13452
+ remote_region: Optional[pulumi.Input[builtins.str]] = None,
13453
+ type: Optional[pulumi.Input[builtins.str]] = None,
13454
+ vpc_password: Optional[pulumi.Input[builtins.str]] = None,
13455
+ vpc_user: Optional[pulumi.Input[builtins.str]] = None):
12986
13456
  """
12987
13457
  :param pulumi.Input[builtins.str] dbrs_policy_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the DBRS policy used for backup.
12988
13458
  :param pulumi.Input[builtins.str] id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the backup destination.
13459
+ :param pulumi.Input[builtins.bool] is_remote: Indicates whether the backup destination is cross-region or local region.
13460
+ :param pulumi.Input[builtins.str] remote_region: The name of the remote region where the remote automatic incremental backups will be stored.
13461
+
13462
+ For information about valid region names, see [Regions and Availability Domains](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/regions.htm).
12989
13463
  :param pulumi.Input[builtins.str] type: Type of the database backup destination. Supported values: `NFS`.
12990
13464
  """
12991
13465
  if dbrs_policy_id is not None:
12992
13466
  pulumi.set(__self__, "dbrs_policy_id", dbrs_policy_id)
12993
13467
  if id is not None:
12994
13468
  pulumi.set(__self__, "id", id)
13469
+ if is_remote is not None:
13470
+ pulumi.set(__self__, "is_remote", is_remote)
13471
+ if remote_region is not None:
13472
+ pulumi.set(__self__, "remote_region", remote_region)
12995
13473
  if type is not None:
12996
13474
  pulumi.set(__self__, "type", type)
13475
+ if vpc_password is not None:
13476
+ pulumi.set(__self__, "vpc_password", vpc_password)
13477
+ if vpc_user is not None:
13478
+ pulumi.set(__self__, "vpc_user", vpc_user)
12997
13479
 
12998
13480
  @property
12999
13481
  @pulumi.getter(name="dbrsPolicyId")
@@ -13019,6 +13501,32 @@ class DbHomeDatabaseDbBackupConfigBackupDestinationDetailArgs:
13019
13501
  def id(self, value: Optional[pulumi.Input[builtins.str]]):
13020
13502
  pulumi.set(self, "id", value)
13021
13503
 
13504
+ @property
13505
+ @pulumi.getter(name="isRemote")
13506
+ def is_remote(self) -> Optional[pulumi.Input[builtins.bool]]:
13507
+ """
13508
+ Indicates whether the backup destination is cross-region or local region.
13509
+ """
13510
+ return pulumi.get(self, "is_remote")
13511
+
13512
+ @is_remote.setter
13513
+ def is_remote(self, value: Optional[pulumi.Input[builtins.bool]]):
13514
+ pulumi.set(self, "is_remote", value)
13515
+
13516
+ @property
13517
+ @pulumi.getter(name="remoteRegion")
13518
+ def remote_region(self) -> Optional[pulumi.Input[builtins.str]]:
13519
+ """
13520
+ The name of the remote region where the remote automatic incremental backups will be stored.
13521
+
13522
+ For information about valid region names, see [Regions and Availability Domains](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/regions.htm).
13523
+ """
13524
+ return pulumi.get(self, "remote_region")
13525
+
13526
+ @remote_region.setter
13527
+ def remote_region(self, value: Optional[pulumi.Input[builtins.str]]):
13528
+ pulumi.set(self, "remote_region", value)
13529
+
13022
13530
  @property
13023
13531
  @pulumi.getter
13024
13532
  def type(self) -> Optional[pulumi.Input[builtins.str]]:
@@ -13031,16 +13539,38 @@ class DbHomeDatabaseDbBackupConfigBackupDestinationDetailArgs:
13031
13539
  def type(self, value: Optional[pulumi.Input[builtins.str]]):
13032
13540
  pulumi.set(self, "type", value)
13033
13541
 
13542
+ @property
13543
+ @pulumi.getter(name="vpcPassword")
13544
+ def vpc_password(self) -> Optional[pulumi.Input[builtins.str]]:
13545
+ return pulumi.get(self, "vpc_password")
13546
+
13547
+ @vpc_password.setter
13548
+ def vpc_password(self, value: Optional[pulumi.Input[builtins.str]]):
13549
+ pulumi.set(self, "vpc_password", value)
13550
+
13551
+ @property
13552
+ @pulumi.getter(name="vpcUser")
13553
+ def vpc_user(self) -> Optional[pulumi.Input[builtins.str]]:
13554
+ return pulumi.get(self, "vpc_user")
13555
+
13556
+ @vpc_user.setter
13557
+ def vpc_user(self, value: Optional[pulumi.Input[builtins.str]]):
13558
+ pulumi.set(self, "vpc_user", value)
13559
+
13034
13560
 
13035
13561
  if not MYPY:
13036
13562
  class DbHomeDatabaseEncryptionKeyLocationDetailsArgsDict(TypedDict):
13037
- hsm_password: pulumi.Input[builtins.str]
13563
+ provider_type: pulumi.Input[builtins.str]
13038
13564
  """
13039
- Provide the HSM password as you would in RDBMS for External HSM.
13565
+ Use 'EXTERNAL' for creating a new database or migrating a database key to an External HSM. Use 'AZURE' for creating a new database or migrating a database key to Azure.
13040
13566
  """
13041
- provider_type: pulumi.Input[builtins.str]
13567
+ azure_encryption_key_id: NotRequired[pulumi.Input[builtins.str]]
13042
13568
  """
13043
- Use 'EXTERNAL' for creating a new database or migrate database key with External HSM.
13569
+ Provide the key OCID of a registered Azure key.
13570
+ """
13571
+ hsm_password: NotRequired[pulumi.Input[builtins.str]]
13572
+ """
13573
+ Provide the HSM password as you would in RDBMS for External HSM.
13044
13574
  """
13045
13575
  elif False:
13046
13576
  DbHomeDatabaseEncryptionKeyLocationDetailsArgsDict: TypeAlias = Mapping[str, Any]
@@ -13048,32 +13578,25 @@ elif False:
13048
13578
  @pulumi.input_type
13049
13579
  class DbHomeDatabaseEncryptionKeyLocationDetailsArgs:
13050
13580
  def __init__(__self__, *,
13051
- hsm_password: pulumi.Input[builtins.str],
13052
- provider_type: pulumi.Input[builtins.str]):
13581
+ provider_type: pulumi.Input[builtins.str],
13582
+ azure_encryption_key_id: Optional[pulumi.Input[builtins.str]] = None,
13583
+ hsm_password: Optional[pulumi.Input[builtins.str]] = None):
13053
13584
  """
13585
+ :param pulumi.Input[builtins.str] provider_type: Use 'EXTERNAL' for creating a new database or migrating a database key to an External HSM. Use 'AZURE' for creating a new database or migrating a database key to Azure.
13586
+ :param pulumi.Input[builtins.str] azure_encryption_key_id: Provide the key OCID of a registered Azure key.
13054
13587
  :param pulumi.Input[builtins.str] hsm_password: Provide the HSM password as you would in RDBMS for External HSM.
13055
- :param pulumi.Input[builtins.str] provider_type: Use 'EXTERNAL' for creating a new database or migrate database key with External HSM.
13056
13588
  """
13057
- pulumi.set(__self__, "hsm_password", hsm_password)
13058
13589
  pulumi.set(__self__, "provider_type", provider_type)
13059
-
13060
- @property
13061
- @pulumi.getter(name="hsmPassword")
13062
- def hsm_password(self) -> pulumi.Input[builtins.str]:
13063
- """
13064
- Provide the HSM password as you would in RDBMS for External HSM.
13065
- """
13066
- return pulumi.get(self, "hsm_password")
13067
-
13068
- @hsm_password.setter
13069
- def hsm_password(self, value: pulumi.Input[builtins.str]):
13070
- pulumi.set(self, "hsm_password", value)
13590
+ if azure_encryption_key_id is not None:
13591
+ pulumi.set(__self__, "azure_encryption_key_id", azure_encryption_key_id)
13592
+ if hsm_password is not None:
13593
+ pulumi.set(__self__, "hsm_password", hsm_password)
13071
13594
 
13072
13595
  @property
13073
13596
  @pulumi.getter(name="providerType")
13074
13597
  def provider_type(self) -> pulumi.Input[builtins.str]:
13075
13598
  """
13076
- Use 'EXTERNAL' for creating a new database or migrate database key with External HSM.
13599
+ Use 'EXTERNAL' for creating a new database or migrating a database key to an External HSM. Use 'AZURE' for creating a new database or migrating a database key to Azure.
13077
13600
  """
13078
13601
  return pulumi.get(self, "provider_type")
13079
13602
 
@@ -13081,6 +13604,30 @@ class DbHomeDatabaseEncryptionKeyLocationDetailsArgs:
13081
13604
  def provider_type(self, value: pulumi.Input[builtins.str]):
13082
13605
  pulumi.set(self, "provider_type", value)
13083
13606
 
13607
+ @property
13608
+ @pulumi.getter(name="azureEncryptionKeyId")
13609
+ def azure_encryption_key_id(self) -> Optional[pulumi.Input[builtins.str]]:
13610
+ """
13611
+ Provide the key OCID of a registered Azure key.
13612
+ """
13613
+ return pulumi.get(self, "azure_encryption_key_id")
13614
+
13615
+ @azure_encryption_key_id.setter
13616
+ def azure_encryption_key_id(self, value: Optional[pulumi.Input[builtins.str]]):
13617
+ pulumi.set(self, "azure_encryption_key_id", value)
13618
+
13619
+ @property
13620
+ @pulumi.getter(name="hsmPassword")
13621
+ def hsm_password(self) -> Optional[pulumi.Input[builtins.str]]:
13622
+ """
13623
+ Provide the HSM password as you would in RDBMS for External HSM.
13624
+ """
13625
+ return pulumi.get(self, "hsm_password")
13626
+
13627
+ @hsm_password.setter
13628
+ def hsm_password(self, value: Optional[pulumi.Input[builtins.str]]):
13629
+ pulumi.set(self, "hsm_password", value)
13630
+
13084
13631
 
13085
13632
  if not MYPY:
13086
13633
  class DbSystemDataCollectionOptionsArgsDict(TypedDict):
@@ -14210,6 +14757,16 @@ if not MYPY:
14210
14757
  """
14211
14758
  The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the backup destination.
14212
14759
  """
14760
+ is_remote: NotRequired[pulumi.Input[builtins.bool]]
14761
+ """
14762
+ Indicates whether the backup destination is cross-region or local region.
14763
+ """
14764
+ remote_region: NotRequired[pulumi.Input[builtins.str]]
14765
+ """
14766
+ The name of the remote region where the remote automatic incremental backups will be stored.
14767
+
14768
+ For information about valid region names, see [Regions and Availability Domains](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/regions.htm).
14769
+ """
14213
14770
  type: NotRequired[pulumi.Input[builtins.str]]
14214
14771
  """
14215
14772
  Type of the database backup destination.
@@ -14222,16 +14779,26 @@ class DbSystemDbHomeDatabaseDbBackupConfigBackupDestinationDetailArgs:
14222
14779
  def __init__(__self__, *,
14223
14780
  dbrs_policy_id: Optional[pulumi.Input[builtins.str]] = None,
14224
14781
  id: Optional[pulumi.Input[builtins.str]] = None,
14782
+ is_remote: Optional[pulumi.Input[builtins.bool]] = None,
14783
+ remote_region: Optional[pulumi.Input[builtins.str]] = None,
14225
14784
  type: Optional[pulumi.Input[builtins.str]] = None):
14226
14785
  """
14227
14786
  :param pulumi.Input[builtins.str] dbrs_policy_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the DBRS policy used for backup.
14228
14787
  :param pulumi.Input[builtins.str] id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the backup destination.
14788
+ :param pulumi.Input[builtins.bool] is_remote: Indicates whether the backup destination is cross-region or local region.
14789
+ :param pulumi.Input[builtins.str] remote_region: The name of the remote region where the remote automatic incremental backups will be stored.
14790
+
14791
+ For information about valid region names, see [Regions and Availability Domains](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/regions.htm).
14229
14792
  :param pulumi.Input[builtins.str] type: Type of the database backup destination.
14230
14793
  """
14231
14794
  if dbrs_policy_id is not None:
14232
14795
  pulumi.set(__self__, "dbrs_policy_id", dbrs_policy_id)
14233
14796
  if id is not None:
14234
14797
  pulumi.set(__self__, "id", id)
14798
+ if is_remote is not None:
14799
+ pulumi.set(__self__, "is_remote", is_remote)
14800
+ if remote_region is not None:
14801
+ pulumi.set(__self__, "remote_region", remote_region)
14235
14802
  if type is not None:
14236
14803
  pulumi.set(__self__, "type", type)
14237
14804
 
@@ -14259,6 +14826,32 @@ class DbSystemDbHomeDatabaseDbBackupConfigBackupDestinationDetailArgs:
14259
14826
  def id(self, value: Optional[pulumi.Input[builtins.str]]):
14260
14827
  pulumi.set(self, "id", value)
14261
14828
 
14829
+ @property
14830
+ @pulumi.getter(name="isRemote")
14831
+ def is_remote(self) -> Optional[pulumi.Input[builtins.bool]]:
14832
+ """
14833
+ Indicates whether the backup destination is cross-region or local region.
14834
+ """
14835
+ return pulumi.get(self, "is_remote")
14836
+
14837
+ @is_remote.setter
14838
+ def is_remote(self, value: Optional[pulumi.Input[builtins.bool]]):
14839
+ pulumi.set(self, "is_remote", value)
14840
+
14841
+ @property
14842
+ @pulumi.getter(name="remoteRegion")
14843
+ def remote_region(self) -> Optional[pulumi.Input[builtins.str]]:
14844
+ """
14845
+ The name of the remote region where the remote automatic incremental backups will be stored.
14846
+
14847
+ For information about valid region names, see [Regions and Availability Domains](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/regions.htm).
14848
+ """
14849
+ return pulumi.get(self, "remote_region")
14850
+
14851
+ @remote_region.setter
14852
+ def remote_region(self, value: Optional[pulumi.Input[builtins.str]]):
14853
+ pulumi.set(self, "remote_region", value)
14854
+
14262
14855
  @property
14263
14856
  @pulumi.getter
14264
14857
  def type(self) -> Optional[pulumi.Input[builtins.str]]:
@@ -21822,6 +22415,53 @@ class GetAutonomousCharacterSetsFilterArgs:
21822
22415
  pulumi.set(self, "regex", value)
21823
22416
 
21824
22417
 
22418
+ if not MYPY:
22419
+ class GetAutonomousContainerDatabaseBackupsFilterArgsDict(TypedDict):
22420
+ name: builtins.str
22421
+ values: Sequence[builtins.str]
22422
+ regex: NotRequired[builtins.bool]
22423
+ elif False:
22424
+ GetAutonomousContainerDatabaseBackupsFilterArgsDict: TypeAlias = Mapping[str, Any]
22425
+
22426
+ @pulumi.input_type
22427
+ class GetAutonomousContainerDatabaseBackupsFilterArgs:
22428
+ def __init__(__self__, *,
22429
+ name: builtins.str,
22430
+ values: Sequence[builtins.str],
22431
+ regex: Optional[builtins.bool] = None):
22432
+ pulumi.set(__self__, "name", name)
22433
+ pulumi.set(__self__, "values", values)
22434
+ if regex is not None:
22435
+ pulumi.set(__self__, "regex", regex)
22436
+
22437
+ @property
22438
+ @pulumi.getter
22439
+ def name(self) -> builtins.str:
22440
+ return pulumi.get(self, "name")
22441
+
22442
+ @name.setter
22443
+ def name(self, value: builtins.str):
22444
+ pulumi.set(self, "name", value)
22445
+
22446
+ @property
22447
+ @pulumi.getter
22448
+ def values(self) -> Sequence[builtins.str]:
22449
+ return pulumi.get(self, "values")
22450
+
22451
+ @values.setter
22452
+ def values(self, value: Sequence[builtins.str]):
22453
+ pulumi.set(self, "values", value)
22454
+
22455
+ @property
22456
+ @pulumi.getter
22457
+ def regex(self) -> Optional[builtins.bool]:
22458
+ return pulumi.get(self, "regex")
22459
+
22460
+ @regex.setter
22461
+ def regex(self, value: Optional[builtins.bool]):
22462
+ pulumi.set(self, "regex", value)
22463
+
22464
+
21825
22465
  if not MYPY:
21826
22466
  class GetAutonomousContainerDatabaseDataguardAssociationsFilterArgsDict(TypedDict):
21827
22467
  name: builtins.str
@@ -22207,6 +22847,53 @@ class GetAutonomousDatabaseRefreshableClonesFilterArgs:
22207
22847
  pulumi.set(self, "regex", value)
22208
22848
 
22209
22849
 
22850
+ if not MYPY:
22851
+ class GetAutonomousDatabaseResourcePoolMembersFilterArgsDict(TypedDict):
22852
+ name: builtins.str
22853
+ values: Sequence[builtins.str]
22854
+ regex: NotRequired[builtins.bool]
22855
+ elif False:
22856
+ GetAutonomousDatabaseResourcePoolMembersFilterArgsDict: TypeAlias = Mapping[str, Any]
22857
+
22858
+ @pulumi.input_type
22859
+ class GetAutonomousDatabaseResourcePoolMembersFilterArgs:
22860
+ def __init__(__self__, *,
22861
+ name: builtins.str,
22862
+ values: Sequence[builtins.str],
22863
+ regex: Optional[builtins.bool] = None):
22864
+ pulumi.set(__self__, "name", name)
22865
+ pulumi.set(__self__, "values", values)
22866
+ if regex is not None:
22867
+ pulumi.set(__self__, "regex", regex)
22868
+
22869
+ @property
22870
+ @pulumi.getter
22871
+ def name(self) -> builtins.str:
22872
+ return pulumi.get(self, "name")
22873
+
22874
+ @name.setter
22875
+ def name(self, value: builtins.str):
22876
+ pulumi.set(self, "name", value)
22877
+
22878
+ @property
22879
+ @pulumi.getter
22880
+ def values(self) -> Sequence[builtins.str]:
22881
+ return pulumi.get(self, "values")
22882
+
22883
+ @values.setter
22884
+ def values(self, value: Sequence[builtins.str]):
22885
+ pulumi.set(self, "values", value)
22886
+
22887
+ @property
22888
+ @pulumi.getter
22889
+ def regex(self) -> Optional[builtins.bool]:
22890
+ return pulumi.get(self, "regex")
22891
+
22892
+ @regex.setter
22893
+ def regex(self, value: Optional[builtins.bool]):
22894
+ pulumi.set(self, "regex", value)
22895
+
22896
+
22210
22897
  if not MYPY:
22211
22898
  class GetAutonomousDatabaseSoftwareImagesFilterArgsDict(TypedDict):
22212
22899
  name: builtins.str