oci 2.110.2__py3-none-any.whl → 2.112.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (475) hide show
  1. oci/access_governance_cp/access_governance_cp_client.py +8 -8
  2. oci/adm/application_dependency_management_client.py +18 -18
  3. oci/ai_anomaly_detection/anomaly_detection_client.py +36 -36
  4. oci/ai_document/ai_service_document_client.py +22 -22
  5. oci/ai_language/ai_service_language_client.py +36 -36
  6. oci/ai_speech/ai_service_speech_client.py +9 -9
  7. oci/ai_vision/ai_service_vision_client.py +25 -25
  8. oci/analytics/analytics_client.py +23 -23
  9. oci/announcements_service/announcement_client.py +4 -4
  10. oci/announcements_service/announcement_subscription_client.py +9 -9
  11. oci/announcements_service/announcements_preferences_client.py +4 -4
  12. oci/apigateway/api_gateway_client.py +21 -21
  13. oci/apigateway/deployment_client.py +6 -6
  14. oci/apigateway/gateway_client.py +6 -6
  15. oci/apigateway/subscribers_client.py +6 -6
  16. oci/apigateway/usage_plans_client.py +6 -6
  17. oci/apigateway/work_requests_client.py +5 -5
  18. oci/apm_config/config_client.py +8 -8
  19. oci/apm_control_plane/apm_domain_client.py +14 -14
  20. oci/apm_synthetics/apm_synthetic_client.py +18 -18
  21. oci/apm_synthetics/models/__init__.py +2 -0
  22. oci/apm_synthetics/models/browser_monitor_configuration.py +3 -3
  23. oci/apm_synthetics/models/client_certificate.py +1 -1
  24. oci/apm_synthetics/models/create_monitor_details.py +9 -3
  25. oci/apm_synthetics/models/link.py +2 -2
  26. oci/apm_synthetics/models/monitor.py +9 -3
  27. oci/apm_synthetics/models/monitor_configuration.py +11 -3
  28. oci/apm_synthetics/models/monitor_summary.py +9 -3
  29. oci/apm_synthetics/models/network_monitor_configuration.py +92 -0
  30. oci/apm_synthetics/models/private_key.py +1 -1
  31. oci/apm_synthetics/models/rest_monitor_configuration.py +1 -1
  32. oci/apm_synthetics/models/scripted_browser_monitor_configuration.py +3 -3
  33. oci/apm_synthetics/models/scripted_rest_monitor_configuration.py +1 -1
  34. oci/apm_synthetics/models/update_monitor_details.py +2 -0
  35. oci/apm_traces/query_client.py +2 -2
  36. oci/apm_traces/trace_client.py +4 -4
  37. oci/application_migration/application_migration_client.py +19 -19
  38. oci/appmgmt_control/appmgmt_control_client.py +8 -8
  39. oci/artifacts/artifacts_client.py +32 -32
  40. oci/audit/audit_client.py +3 -3
  41. oci/auth/auth_utils.py +16 -0
  42. oci/auth/rpt_path_providers.py +54 -4
  43. oci/auth/security_token_container.py +4 -0
  44. oci/auth/signers/__init__.py +3 -1
  45. oci/auth/signers/ephemeral_resource_principals_v21_signer.py +31 -1
  46. oci/auth/signers/nested_resource_principals_signer.py +200 -0
  47. oci/auth/signers/oke_workload_identity_resource_principal_signer.py +154 -0
  48. oci/auth/signers/resource_principals_federation_signer.py +1 -1
  49. oci/auth/signers/resource_principals_signer.py +149 -5
  50. oci/autoscaling/auto_scaling_client.py +11 -11
  51. oci/base_client.py +3 -1
  52. oci/bastion/bastion_client.py +15 -15
  53. oci/bds/bds_client.py +47 -47
  54. oci/blockchain/blockchain_platform_client.py +27 -27
  55. oci/budget/budget_client.py +10 -10
  56. oci/certificates/certificates_client.py +5 -5
  57. oci/certificates_management/certificates_management_client.py +32 -32
  58. oci/cims/__init__.py +1 -3
  59. oci/cims/incident_client.py +356 -93
  60. oci/cims/models/__init__.py +6 -0
  61. oci/cims/models/account_item.py +85 -0
  62. oci/cims/models/activity_item.py +112 -14
  63. oci/cims/models/category.py +5 -5
  64. oci/cims/models/contact.py +32 -1
  65. oci/cims/models/contextual_data.py +9 -9
  66. oci/cims/models/create_account_item_details.py +78 -0
  67. oci/cims/models/create_category_details.py +2 -4
  68. oci/cims/models/create_incident.py +13 -9
  69. oci/cims/models/create_issue_type_details.py +0 -2
  70. oci/cims/models/create_item_details.py +9 -7
  71. oci/cims/models/create_limit_item_details.py +3 -3
  72. oci/cims/models/create_resource_details.py +2 -289
  73. oci/cims/models/create_sub_category_details.py +3 -5
  74. oci/cims/models/create_tech_support_item_details.py +1 -3
  75. oci/cims/models/create_ticket_details.py +11 -13
  76. oci/cims/models/create_user_details.py +65 -36
  77. oci/cims/models/incident.py +10 -6
  78. oci/cims/models/incident_resource_type.py +66 -4
  79. oci/cims/models/incident_summary.py +9 -5
  80. oci/cims/models/incident_type.py +1 -1
  81. oci/cims/models/issue_type.py +33 -2
  82. oci/cims/models/item.py +8 -4
  83. oci/cims/models/limit_item.py +7 -7
  84. oci/cims/models/resource.py +2 -285
  85. oci/cims/models/service_categories.py +134 -0
  86. oci/cims/models/service_category.py +1 -1
  87. oci/cims/models/sub_category.py +5 -5
  88. oci/cims/models/tenancy_information.py +3 -3
  89. oci/cims/models/ticket.py +7 -3
  90. oci/cims/models/update_activity_item_details.py +8 -6
  91. oci/cims/models/update_incident.py +62 -2
  92. oci/cims/models/update_item_details.py +3 -5
  93. oci/cims/models/update_resource_details.py +0 -2
  94. oci/cims/models/update_ticket_details.py +0 -2
  95. oci/cims/models/user.py +79 -19
  96. oci/cims/user_client.py +1 -1
  97. oci/cloud_bridge/common_client.py +5 -5
  98. oci/cloud_bridge/discovery_client.py +14 -14
  99. oci/cloud_bridge/inventory_client.py +16 -16
  100. oci/cloud_bridge/ocb_agent_svc_client.py +23 -23
  101. oci/cloud_guard/cloud_guard_client.py +133 -133
  102. oci/cloud_migrations/migration_client.py +43 -43
  103. oci/compute_cloud_at_customer/compute_cloud_at_customer_client.py +12 -12
  104. oci/compute_instance_agent/compute_instance_agent_client.py +6 -6
  105. oci/compute_instance_agent/plugin_client.py +2 -2
  106. oci/compute_instance_agent/pluginconfig_client.py +1 -1
  107. oci/container_engine/container_engine_client.py +44 -44
  108. oci/container_instances/container_instance_client.py +129 -24
  109. oci/core/blockstorage_client.py +60 -60
  110. oci/core/compute_client.py +90 -90
  111. oci/core/compute_management_client.py +32 -32
  112. oci/core/models/__init__.py +20 -0
  113. oci/core/models/amd_milan_bm_gpu_launch_instance_platform_config.py +34 -3
  114. oci/core/models/amd_milan_bm_gpu_platform_config.py +34 -3
  115. oci/core/models/amd_milan_bm_launch_instance_platform_config.py +34 -3
  116. oci/core/models/amd_milan_bm_platform_config.py +34 -3
  117. oci/core/models/amd_rome_bm_gpu_launch_instance_platform_config.py +34 -3
  118. oci/core/models/amd_rome_bm_gpu_platform_config.py +34 -3
  119. oci/core/models/amd_rome_bm_launch_instance_platform_config.py +34 -3
  120. oci/core/models/amd_rome_bm_platform_config.py +34 -3
  121. oci/core/models/amd_vm_launch_instance_platform_config.py +1 -1
  122. oci/core/models/amd_vm_platform_config.py +1 -1
  123. oci/core/models/capture_filter.py +5 -2
  124. oci/core/models/change_capture_filter_compartment_details.py +1 -1
  125. oci/core/models/cluster_network_placement_configuration_details.py +32 -5
  126. oci/core/models/cpe.py +33 -2
  127. oci/core/models/create_capture_filter_details.py +1 -1
  128. oci/core/models/create_cpe_details.py +33 -2
  129. oci/core/models/create_instance_pool_placement_configuration_details.py +32 -5
  130. oci/core/models/create_ip_sec_connection_tunnel_details.py +105 -0
  131. oci/core/models/create_macsec_properties.py +33 -2
  132. oci/core/models/create_virtual_circuit_details.py +31 -0
  133. oci/core/models/create_vnic_details.py +76 -0
  134. oci/core/models/drg_attachment_network_create_details.py +1 -1
  135. oci/core/models/drg_attachment_network_details.py +5 -1
  136. oci/core/models/generic_bm_launch_instance_platform_config.py +349 -0
  137. oci/core/models/generic_bm_platform_config.py +349 -0
  138. oci/core/models/instance_configuration_amd_milan_bm_gpu_launch_instance_platform_config.py +34 -3
  139. oci/core/models/instance_configuration_amd_milan_bm_launch_instance_platform_config.py +34 -3
  140. oci/core/models/instance_configuration_amd_rome_bm_gpu_launch_instance_platform_config.py +34 -3
  141. oci/core/models/instance_configuration_amd_rome_bm_launch_instance_platform_config.py +34 -3
  142. oci/core/models/instance_configuration_amd_vm_launch_instance_platform_config.py +1 -1
  143. oci/core/models/instance_configuration_create_vnic_details.py +76 -0
  144. oci/core/models/instance_configuration_generic_bm_launch_instance_platform_config.py +349 -0
  145. oci/core/models/instance_configuration_intel_icelake_bm_launch_instance_platform_config.py +34 -3
  146. oci/core/models/instance_configuration_intel_skylake_bm_launch_instance_platform_config.py +199 -3
  147. oci/core/models/instance_configuration_intel_vm_launch_instance_platform_config.py +1 -1
  148. oci/core/models/instance_configuration_ipv6_address_ipv6_subnet_cidr_pair_details.py +103 -0
  149. oci/core/models/instance_configuration_launch_instance_platform_config.py +11 -3
  150. oci/core/models/instance_pool_placement_configuration.py +32 -3
  151. oci/core/models/instance_pool_placement_ipv6_address_ipv6_subnet_cidr_details.py +72 -0
  152. oci/core/models/instance_pool_placement_primary_subnet.py +152 -0
  153. oci/core/models/instance_pool_placement_secondary_vnic_subnet.py +76 -0
  154. oci/core/models/instance_pool_placement_subnet_details.py +152 -0
  155. oci/core/models/intel_icelake_bm_launch_instance_platform_config.py +34 -3
  156. oci/core/models/intel_icelake_bm_platform_config.py +34 -3
  157. oci/core/models/intel_skylake_bm_launch_instance_platform_config.py +199 -3
  158. oci/core/models/intel_skylake_bm_platform_config.py +199 -3
  159. oci/core/models/intel_vm_launch_instance_platform_config.py +1 -1
  160. oci/core/models/intel_vm_platform_config.py +1 -1
  161. oci/core/models/ip_sec_connection.py +49 -2
  162. oci/core/models/ip_sec_connection_tunnel.py +37 -2
  163. oci/core/models/ipsec_tunnel_drg_attachment_network_details.py +37 -2
  164. oci/core/models/ipv6_address_ipv6_subnet_cidr_pair_details.py +109 -0
  165. oci/core/models/launch_instance_platform_config.py +11 -3
  166. oci/core/models/loop_back_drg_attachment_network_details.py +93 -0
  167. oci/core/models/macsec_properties.py +33 -2
  168. oci/core/models/platform_config.py +11 -3
  169. oci/core/models/shape_platform_config_options.py +7 -3
  170. oci/core/models/update_capture_filter_details.py +1 -1
  171. oci/core/models/update_instance_pool_placement_configuration_details.py +34 -7
  172. oci/core/models/update_macsec_properties.py +33 -2
  173. oci/core/models/update_virtual_circuit_details.py +31 -0
  174. oci/core/models/virtual_circuit.py +31 -0
  175. oci/core/models/virtual_circuit_associated_tunnel_details.py +154 -0
  176. oci/core/models/virtual_circuit_drg_attachment_network_details.py +37 -2
  177. oci/core/models/vnic.py +37 -2
  178. oci/core/virtual_network_client.py +361 -241
  179. oci/dashboard_service/dashboard_client.py +6 -6
  180. oci/dashboard_service/dashboard_group_client.py +6 -6
  181. oci/data_catalog/data_catalog_client.py +424 -154
  182. oci/data_catalog/models/__init__.py +22 -0
  183. oci/data_catalog/models/asynchronous_export_glossary_details.py +68 -0
  184. oci/data_catalog/models/asynchronous_export_glossary_result.py +196 -0
  185. oci/data_catalog/models/asynchronous_export_request_details.py +68 -0
  186. oci/data_catalog/models/asynchronous_export_result.py +196 -0
  187. oci/data_catalog/models/attribute.py +33 -0
  188. oci/data_catalog/models/attribute_summary.py +33 -0
  189. oci/data_catalog/models/create_job_definition_details.py +42 -3
  190. oci/data_catalog/models/create_job_details.py +2 -0
  191. oci/data_catalog/models/create_job_execution_details.py +11 -3
  192. oci/data_catalog/models/data_asset.py +33 -0
  193. oci/data_catalog/models/data_asset_summary.py +35 -2
  194. oci/data_catalog/models/entity.py +33 -0
  195. oci/data_catalog/models/entity_lineage.py +222 -0
  196. oci/data_catalog/models/entity_summary.py +33 -0
  197. oci/data_catalog/models/faceted_search_date_filter_request.py +2 -2
  198. oci/data_catalog/models/faceted_search_string_filter_request.py +8 -2
  199. oci/data_catalog/models/fetch_entity_lineage_details.py +190 -0
  200. oci/data_catalog/models/folder.py +33 -0
  201. oci/data_catalog/models/folder_summary.py +35 -2
  202. oci/data_catalog/models/job.py +44 -3
  203. oci/data_catalog/models/job_definition.py +42 -3
  204. oci/data_catalog/models/job_definition_summary.py +44 -5
  205. oci/data_catalog/models/job_execution.py +11 -3
  206. oci/data_catalog/models/job_execution_summary.py +11 -3
  207. oci/data_catalog/models/job_summary.py +44 -3
  208. oci/data_catalog/models/lineage_object.py +400 -0
  209. oci/data_catalog/models/lineage_relationship.py +134 -0
  210. oci/data_catalog/models/object_lineage.py +223 -0
  211. oci/data_catalog/models/object_lineage_request_details.py +190 -0
  212. oci/data_catalog/models/object_storage_object_reference.py +134 -0
  213. oci/data_catalog/models/update_job_definition_details.py +31 -0
  214. oci/data_catalog/models/update_job_details.py +2 -0
  215. oci/data_flow/data_flow_client.py +42 -42
  216. oci/data_integration/data_integration_client.py +163 -163
  217. oci/data_labeling_service/data_labeling_management_client.py +17 -17
  218. oci/data_labeling_service_dataplane/data_labeling_client.py +15 -15
  219. oci/data_safe/data_safe_client.py +214 -214
  220. oci/data_science/data_science_client.py +85 -85
  221. oci/database/database_client.py +626 -308
  222. oci/database/models/__init__.py +10 -0
  223. oci/database/models/acd_avm_resource_stats.py +241 -0
  224. oci/database/models/autonomous_container_database.py +107 -38
  225. oci/database/models/autonomous_container_database_resource_usage.py +437 -0
  226. oci/database/models/autonomous_container_database_summary.py +107 -38
  227. oci/database/models/autonomous_database.py +2 -6
  228. oci/database/models/autonomous_database_connection_strings.py +1 -1
  229. oci/database/models/autonomous_database_summary.py +2 -6
  230. oci/database/models/autonomous_vm_cluster.py +6 -18
  231. oci/database/models/autonomous_vm_cluster_summary.py +6 -18
  232. oci/database/models/autonomous_vm_resource_usage.py +299 -0
  233. oci/database/models/avm_acd_resource_stats.py +272 -0
  234. oci/database/models/cloud_autonomous_vm_cluster.py +287 -20
  235. oci/database/models/cloud_autonomous_vm_cluster_resource_usage.py +673 -0
  236. oci/database/models/cloud_autonomous_vm_cluster_summary.py +287 -20
  237. oci/database/models/create_autonomous_vm_cluster_details.py +4 -12
  238. oci/database/models/create_cloud_autonomous_vm_cluster_details.py +4 -12
  239. oci/database/models/update_autonomous_database_details.py +2 -6
  240. oci/database_management/db_management_client.py +182 -182
  241. oci/database_management/diagnosability_client.py +4 -4
  242. oci/database_management/sql_tuning_client.py +10 -10
  243. oci/database_migration/database_migration_client.py +41 -41
  244. oci/database_migration/models/__init__.py +10 -0
  245. oci/database_migration/models/connection.py +27 -0
  246. oci/database_migration/models/create_connection_details.py +27 -0
  247. oci/database_migration/models/create_golden_gate_hub.py +4 -4
  248. oci/database_migration/models/create_golden_gate_service_details.py +149 -0
  249. oci/database_migration/models/create_migration_details.py +27 -0
  250. oci/database_migration/models/database_credentials.py +103 -0
  251. oci/database_migration/models/ggs_deployment.py +103 -0
  252. oci/database_migration/models/golden_gate_service_details.py +95 -0
  253. oci/database_migration/models/migration.py +38 -3
  254. oci/database_migration/models/migration_job_progress_resource.py +11 -3
  255. oci/database_migration/models/migration_job_progress_summary.py +11 -3
  256. oci/database_migration/models/migration_phase_summary.py +11 -3
  257. oci/database_migration/models/phase_status.py +11 -3
  258. oci/database_migration/models/resume_job_details.py +11 -3
  259. oci/database_migration/models/start_migration_details.py +11 -3
  260. oci/database_migration/models/update_connection_details.py +27 -0
  261. oci/database_migration/models/update_golden_gate_service_details.py +149 -0
  262. oci/database_migration/models/update_migration_details.py +27 -0
  263. oci/database_tools/database_tools_client.py +19 -19
  264. oci/devops/devops_client.py +89 -89
  265. oci/disaster_recovery/disaster_recovery_client.py +29 -29
  266. oci/dns/dns_client.py +52 -52
  267. oci/dts/appliance_export_job_client.py +6 -6
  268. oci/dts/shipping_vendors_client.py +1 -1
  269. oci/dts/transfer_appliance_client.py +8 -8
  270. oci/dts/transfer_appliance_entitlement_client.py +3 -3
  271. oci/dts/transfer_device_client.py +5 -5
  272. oci/dts/transfer_job_client.py +6 -6
  273. oci/dts/transfer_package_client.py +7 -7
  274. oci/em_warehouse/em_data_lake_client.py +13 -13
  275. oci/em_warehouse/em_warehouse_client.py +13 -13
  276. oci/email/email_client.py +25 -25
  277. oci/events/events_client.py +6 -6
  278. oci/file_storage/file_storage_client.py +50 -50
  279. oci/fleet_software_update/fleet_software_update_client.py +44 -44
  280. oci/functions/functions_invoke_client.py +1 -1
  281. oci/functions/functions_management_client.py +16 -16
  282. oci/fusion_apps/data_masking_activity_client.py +3 -3
  283. oci/fusion_apps/fusion_applications_client.py +39 -39
  284. oci/fusion_apps/fusion_environment_client.py +15 -15
  285. oci/fusion_apps/fusion_environment_family_client.py +8 -8
  286. oci/fusion_apps/refresh_activity_client.py +4 -4
  287. oci/fusion_apps/scheduled_activity_client.py +2 -2
  288. oci/fusion_apps/service_attachment_client.py +2 -2
  289. oci/generic_artifacts_content/generic_artifacts_content_client.py +3 -3
  290. oci/golden_gate/golden_gate_client.py +57 -57
  291. oci/governance_rules_control_plane/governance_rule_client.py +15 -15
  292. oci/governance_rules_control_plane/work_request_client.py +5 -5
  293. oci/healthchecks/health_checks_client.py +17 -17
  294. oci/identity/identity_client.py +145 -145
  295. oci/identity_data_plane/dataplane_client.py +2 -2
  296. oci/identity_domains/identity_domains_client.py +190 -190
  297. oci/integration/integration_instance_client.py +15 -15
  298. oci/jms/java_management_service_client.py +56 -56
  299. oci/key_management/kms_crypto_client.py +6 -6
  300. oci/key_management/kms_management_client.py +21 -21
  301. oci/key_management/kms_vault_client.py +14 -14
  302. oci/license_manager/license_manager_client.py +18 -18
  303. oci/limits/limits_client.py +4 -4
  304. oci/limits/quotas_client.py +7 -7
  305. oci/load_balancer/load_balancer_client.py +61 -61
  306. oci/lockbox/lockbox_client.py +22 -22
  307. oci/log_analytics/log_analytics_client.py +192 -192
  308. oci/logging/logging_management_client.py +30 -30
  309. oci/loggingingestion/logging_client.py +1 -1
  310. oci/loggingsearch/log_search_client.py +1 -1
  311. oci/management_agent/management_agent_client.py +23 -23
  312. oci/management_dashboard/dashx_apis_client.py +14 -14
  313. oci/marketplace/account_client.py +2 -2
  314. oci/marketplace/marketplace_client.py +25 -25
  315. oci/media_services/media_services_client.py +48 -48
  316. oci/media_services/media_stream_client.py +2 -2
  317. oci/monitoring/monitoring_client.py +13 -13
  318. oci/mysql/channels_client.py +7 -7
  319. oci/mysql/db_backups_client.py +6 -6
  320. oci/mysql/db_system_client.py +273 -1328
  321. oci/mysql/db_system_client_composite_operations.py +0 -294
  322. oci/mysql/models/__init__.py +0 -16
  323. oci/mysql/models/db_system.py +0 -60
  324. oci/mysql/models/db_system_summary.py +0 -60
  325. oci/mysql/models/shape_summary.py +3 -7
  326. oci/mysql/models/work_request.py +3 -31
  327. oci/mysql/models/work_request_summary.py +3 -31
  328. oci/mysql/mysqlaas_client.py +9 -9
  329. oci/mysql/replicas_client.py +5 -5
  330. oci/mysql/work_requests_client.py +4 -4
  331. oci/network_firewall/network_firewall_client.py +17 -17
  332. oci/network_load_balancer/network_load_balancer_client.py +34 -34
  333. oci/nosql/nosql_client.py +22 -22
  334. oci/object_storage/object_storage_client.py +50 -50
  335. oci/oce/oce_instance_client.py +10 -10
  336. oci/oci_control_center/occ_metrics_client.py +3 -3
  337. oci/ocvp/esxi_host_client.py +6 -6
  338. oci/ocvp/sddc_client.py +13 -13
  339. oci/ocvp/work_request_client.py +4 -4
  340. oci/oda/management_client.py +56 -56
  341. oci/oda/oda_client.py +17 -17
  342. oci/oda/odapackage_client.py +7 -7
  343. oci/onesubscription/billing_schedule_client.py +1 -1
  344. oci/onesubscription/commitment_client.py +2 -2
  345. oci/onesubscription/computed_usage_client.py +3 -3
  346. oci/onesubscription/invoice_summary_client.py +2 -2
  347. oci/onesubscription/organization_subscription_client.py +1 -1
  348. oci/onesubscription/ratecard_client.py +1 -1
  349. oci/onesubscription/subscribed_service_client.py +2 -2
  350. oci/onesubscription/subscription_client.py +1 -1
  351. oci/ons/notification_control_plane_client.py +6 -6
  352. oci/ons/notification_data_plane_client.py +10 -10
  353. oci/opa/opa_instance_client.py +11 -11
  354. oci/opensearch/opensearch_cluster_backup_client.py +4 -4
  355. oci/opensearch/opensearch_cluster_client.py +14 -14
  356. oci/operator_access_control/access_requests_client.py +9 -9
  357. oci/operator_access_control/operator_actions_client.py +2 -2
  358. oci/operator_access_control/operator_control_assignment_client.py +6 -6
  359. oci/operator_access_control/operator_control_client.py +6 -6
  360. oci/opsi/operations_insights_client.py +159 -159
  361. oci/optimizer/optimizer_client.py +26 -26
  362. oci/os_management/event_client.py +8 -8
  363. oci/os_management/os_management_client.py +69 -69
  364. oci/os_management_hub/lifecycle_environment_client.py +11 -11
  365. oci/os_management_hub/managed_instance_client.py +22 -22
  366. oci/os_management_hub/managed_instance_group_client.py +22 -22
  367. oci/os_management_hub/management_station_client.py +8 -8
  368. oci/os_management_hub/onboarding_client.py +5 -5
  369. oci/os_management_hub/reporting_managed_instance_client.py +3 -3
  370. oci/os_management_hub/scheduled_job_client.py +6 -6
  371. oci/os_management_hub/software_source_client.py +22 -22
  372. oci/os_management_hub/work_request_client.py +4 -4
  373. oci/osp_gateway/address_rule_service_client.py +1 -1
  374. oci/osp_gateway/address_service_client.py +2 -2
  375. oci/osp_gateway/invoice_service_client.py +5 -5
  376. oci/osp_gateway/subscription_service_client.py +5 -5
  377. oci/osub_billing_schedule/billing_schedule_client.py +1 -1
  378. oci/osub_organization_subscription/organization_subscription_client.py +1 -1
  379. oci/osub_subscription/commitment_client.py +2 -2
  380. oci/osub_subscription/ratecard_client.py +1 -1
  381. oci/osub_subscription/subscription_client.py +1 -1
  382. oci/osub_usage/computed_usage_client.py +3 -3
  383. oci/queue/models/__init__.py +4 -0
  384. oci/queue/models/channel_collection.py +72 -0
  385. oci/queue/models/create_queue_details.py +50 -11
  386. oci/queue/models/delete_messages_details_entry.py +2 -2
  387. oci/queue/models/get_message.py +55 -12
  388. oci/queue/models/message_metadata.py +103 -0
  389. oci/queue/models/purge_queue_details.py +43 -8
  390. oci/queue/models/put_message.py +44 -5
  391. oci/queue/models/put_messages.py +3 -3
  392. oci/queue/models/put_messages_details_entry.py +29 -2
  393. oci/queue/models/queue.py +76 -21
  394. oci/queue/models/queue_stats.py +34 -3
  395. oci/queue/models/queue_summary.py +37 -17
  396. oci/queue/models/stats.py +2 -2
  397. oci/queue/models/update_messages_details.py +1 -1
  398. oci/queue/models/update_messages_details_entry.py +2 -2
  399. oci/queue/models/update_messages_result.py +2 -2
  400. oci/queue/models/update_messages_result_entry.py +12 -4
  401. oci/queue/models/update_queue_details.py +47 -8
  402. oci/queue/models/updated_message.py +12 -4
  403. oci/queue/models/work_request.py +6 -2
  404. oci/queue/models/work_request_error.py +6 -2
  405. oci/queue/models/work_request_log_entry.py +6 -2
  406. oci/queue/models/work_request_summary.py +8 -4
  407. oci/queue/queue_admin_client.py +67 -46
  408. oci/queue/queue_admin_client_composite_operations.py +4 -4
  409. oci/queue/queue_client.py +209 -36
  410. oci/recovery/database_recovery_client.py +23 -23
  411. oci/resource_manager/resource_manager_client.py +52 -52
  412. oci/resource_search/resource_search_client.py +3 -3
  413. oci/rover/rover_bundle_client.py +8 -8
  414. oci/rover/rover_cluster_client.py +8 -8
  415. oci/rover/rover_entitlement_client.py +6 -6
  416. oci/rover/rover_node_client.py +15 -15
  417. oci/rover/shape_client.py +1 -1
  418. oci/rover/work_requests_client.py +5 -5
  419. oci/sch/service_connector_client.py +12 -12
  420. oci/secrets/secrets_client.py +3 -3
  421. oci/service_catalog/service_catalog_client.py +26 -26
  422. oci/service_manager_proxy/service_manager_proxy_client.py +2 -2
  423. oci/service_mesh/service_mesh_client.py +48 -48
  424. oci/stack_monitoring/stack_monitoring_client.py +22 -22
  425. oci/streaming/stream_admin_client.py +18 -18
  426. oci/streaming/stream_client.py +8 -8
  427. oci/tenant_manager_control_plane/domain_client.py +5 -5
  428. oci/tenant_manager_control_plane/domain_governance_client.py +5 -5
  429. oci/tenant_manager_control_plane/governance_client.py +2 -2
  430. oci/tenant_manager_control_plane/link_client.py +3 -3
  431. oci/tenant_manager_control_plane/orders_client.py +2 -2
  432. oci/tenant_manager_control_plane/organization_client.py +10 -10
  433. oci/tenant_manager_control_plane/recipient_invitation_client.py +5 -5
  434. oci/tenant_manager_control_plane/sender_invitation_client.py +5 -5
  435. oci/tenant_manager_control_plane/subscription_client.py +11 -11
  436. oci/tenant_manager_control_plane/work_request_client.py +4 -4
  437. oci/threat_intelligence/threatintel_client.py +5 -5
  438. oci/usage/resources_client.py +2 -2
  439. oci/usage/rewards_client.py +6 -6
  440. oci/usage/usagelimits_client.py +1 -1
  441. oci/usage_api/usageapi_client.py +19 -19
  442. oci/vault/vaults_client.py +11 -11
  443. oci/vbs_inst/vbs_instance_client.py +10 -10
  444. oci/version.py +1 -1
  445. oci/visual_builder/vb_instance_client.py +13 -13
  446. oci/vn_monitoring/models/__init__.py +4 -0
  447. oci/vn_monitoring/models/cpe.py +33 -2
  448. oci/vn_monitoring/models/create_cpe_details.py +33 -2
  449. oci/vn_monitoring/models/create_ip_sec_connection_details.py +35 -2
  450. oci/vn_monitoring/models/create_ip_sec_connection_tunnel_details.py +105 -0
  451. oci/vn_monitoring/models/create_virtual_circuit_details.py +31 -0
  452. oci/vn_monitoring/models/drg_attachment_network_create_details.py +1 -1
  453. oci/vn_monitoring/models/drg_attachment_network_details.py +5 -1
  454. oci/vn_monitoring/models/ip_sec_connection.py +50 -2
  455. oci/vn_monitoring/models/ip_sec_connection_tunnel.py +37 -2
  456. oci/vn_monitoring/models/ipsec_tunnel_drg_attachment_network_details.py +37 -2
  457. oci/vn_monitoring/models/loop_back_drg_attachment_network_details.py +93 -0
  458. oci/vn_monitoring/models/update_virtual_circuit_details.py +31 -0
  459. oci/vn_monitoring/models/virtual_circuit.py +31 -0
  460. oci/vn_monitoring/models/virtual_circuit_associated_tunnel_details.py +155 -0
  461. oci/vn_monitoring/models/virtual_circuit_drg_attachment_network_details.py +37 -2
  462. oci/vn_monitoring/vn_monitoring_client.py +12 -12
  463. oci/vulnerability_scanning/vulnerability_scanning_client.py +58 -58
  464. oci/waa/waa_client.py +13 -13
  465. oci/waa/work_request_client.py +4 -4
  466. oci/waas/redirect_client.py +6 -6
  467. oci/waas/waas_client.py +66 -66
  468. oci/waf/waf_client.py +24 -24
  469. oci/work_requests/work_request_client.py +4 -4
  470. {oci-2.110.2.dist-info → oci-2.112.0.dist-info}/METADATA +1 -1
  471. {oci-2.110.2.dist-info → oci-2.112.0.dist-info}/RECORD +475 -434
  472. {oci-2.110.2.dist-info → oci-2.112.0.dist-info}/LICENSE.txt +0 -0
  473. {oci-2.110.2.dist-info → oci-2.112.0.dist-info}/THIRD_PARTY_LICENSES.txt +0 -0
  474. {oci-2.110.2.dist-info → oci-2.112.0.dist-info}/WHEEL +0 -0
  475. {oci-2.110.2.dist-info → oci-2.112.0.dist-info}/top_level.txt +0 -0
@@ -152,7 +152,7 @@ class DatabaseClient(object):
152
152
  :rtype: :class:`~oci.response.Response`
153
153
 
154
154
  :example:
155
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/activate_exadata_infrastructure.py.html>`__ to see an example of how to use activate_exadata_infrastructure API.
155
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/activate_exadata_infrastructure.py.html>`__ to see an example of how to use activate_exadata_infrastructure API.
156
156
  """
157
157
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
158
158
  required_arguments = ['exadataInfrastructureId']
@@ -267,7 +267,7 @@ class DatabaseClient(object):
267
267
  :rtype: :class:`~oci.response.Response`
268
268
 
269
269
  :example:
270
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/add_storage_capacity_cloud_exadata_infrastructure.py.html>`__ to see an example of how to use add_storage_capacity_cloud_exadata_infrastructure API.
270
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/add_storage_capacity_cloud_exadata_infrastructure.py.html>`__ to see an example of how to use add_storage_capacity_cloud_exadata_infrastructure API.
271
271
  """
272
272
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
273
273
  required_arguments = ['cloudExadataInfrastructureId']
@@ -382,7 +382,7 @@ class DatabaseClient(object):
382
382
  :rtype: :class:`~oci.response.Response`
383
383
 
384
384
  :example:
385
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/add_storage_capacity_exadata_infrastructure.py.html>`__ to see an example of how to use add_storage_capacity_exadata_infrastructure API.
385
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/add_storage_capacity_exadata_infrastructure.py.html>`__ to see an example of how to use add_storage_capacity_exadata_infrastructure API.
386
386
  """
387
387
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
388
388
  required_arguments = ['exadataInfrastructureId']
@@ -500,7 +500,7 @@ class DatabaseClient(object):
500
500
  :rtype: :class:`~oci.response.Response`
501
501
 
502
502
  :example:
503
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/add_virtual_machine_to_cloud_vm_cluster.py.html>`__ to see an example of how to use add_virtual_machine_to_cloud_vm_cluster API.
503
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/add_virtual_machine_to_cloud_vm_cluster.py.html>`__ to see an example of how to use add_virtual_machine_to_cloud_vm_cluster API.
504
504
  """
505
505
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
506
506
  required_arguments = ['cloudVmClusterId']
@@ -620,7 +620,7 @@ class DatabaseClient(object):
620
620
  :rtype: :class:`~oci.response.Response`
621
621
 
622
622
  :example:
623
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/add_virtual_machine_to_vm_cluster.py.html>`__ to see an example of how to use add_virtual_machine_to_vm_cluster API.
623
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/add_virtual_machine_to_vm_cluster.py.html>`__ to see an example of how to use add_virtual_machine_to_vm_cluster API.
624
624
  """
625
625
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
626
626
  required_arguments = ['vmClusterId']
@@ -740,7 +740,7 @@ class DatabaseClient(object):
740
740
  :rtype: :class:`~oci.response.Response`
741
741
 
742
742
  :example:
743
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/autonomous_database_manual_refresh.py.html>`__ to see an example of how to use autonomous_database_manual_refresh API.
743
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/autonomous_database_manual_refresh.py.html>`__ to see an example of how to use autonomous_database_manual_refresh API.
744
744
  """
745
745
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
746
746
  required_arguments = ['autonomousDatabaseId']
@@ -857,7 +857,7 @@ class DatabaseClient(object):
857
857
  :rtype: :class:`~oci.response.Response`
858
858
 
859
859
  :example:
860
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/cancel_backup.py.html>`__ to see an example of how to use cancel_backup API.
860
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/cancel_backup.py.html>`__ to see an example of how to use cancel_backup API.
861
861
  """
862
862
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
863
863
  required_arguments = ['backupId']
@@ -977,7 +977,7 @@ class DatabaseClient(object):
977
977
  :rtype: :class:`~oci.response.Response`
978
978
 
979
979
  :example:
980
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/change_autonomous_container_database_compartment.py.html>`__ to see an example of how to use change_autonomous_container_database_compartment API.
980
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/change_autonomous_container_database_compartment.py.html>`__ to see an example of how to use change_autonomous_container_database_compartment API.
981
981
  """
982
982
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
983
983
  required_arguments = ['autonomousContainerDatabaseId']
@@ -1099,7 +1099,7 @@ class DatabaseClient(object):
1099
1099
  :rtype: :class:`~oci.response.Response`
1100
1100
 
1101
1101
  :example:
1102
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/change_autonomous_database_compartment.py.html>`__ to see an example of how to use change_autonomous_database_compartment API.
1102
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/change_autonomous_database_compartment.py.html>`__ to see an example of how to use change_autonomous_database_compartment API.
1103
1103
  """
1104
1104
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
1105
1105
  required_arguments = ['autonomousDatabaseId']
@@ -1221,7 +1221,7 @@ class DatabaseClient(object):
1221
1221
  :rtype: :class:`~oci.response.Response`
1222
1222
 
1223
1223
  :example:
1224
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/change_autonomous_exadata_infrastructure_compartment.py.html>`__ to see an example of how to use change_autonomous_exadata_infrastructure_compartment API.
1224
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/change_autonomous_exadata_infrastructure_compartment.py.html>`__ to see an example of how to use change_autonomous_exadata_infrastructure_compartment API.
1225
1225
  """
1226
1226
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
1227
1227
  required_arguments = ['autonomousExadataInfrastructureId']
@@ -1339,7 +1339,7 @@ class DatabaseClient(object):
1339
1339
  :rtype: :class:`~oci.response.Response`
1340
1340
 
1341
1341
  :example:
1342
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/change_autonomous_vm_cluster_compartment.py.html>`__ to see an example of how to use change_autonomous_vm_cluster_compartment API.
1342
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/change_autonomous_vm_cluster_compartment.py.html>`__ to see an example of how to use change_autonomous_vm_cluster_compartment API.
1343
1343
  """
1344
1344
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
1345
1345
  required_arguments = ['autonomousVmClusterId']
@@ -1461,7 +1461,7 @@ class DatabaseClient(object):
1461
1461
  :rtype: :class:`~oci.response.Response`
1462
1462
 
1463
1463
  :example:
1464
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/change_backup_destination_compartment.py.html>`__ to see an example of how to use change_backup_destination_compartment API.
1464
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/change_backup_destination_compartment.py.html>`__ to see an example of how to use change_backup_destination_compartment API.
1465
1465
  """
1466
1466
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
1467
1467
  required_arguments = ['backupDestinationId']
@@ -1579,7 +1579,7 @@ class DatabaseClient(object):
1579
1579
  :rtype: :class:`~oci.response.Response`
1580
1580
 
1581
1581
  :example:
1582
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/change_cloud_autonomous_vm_cluster_compartment.py.html>`__ to see an example of how to use change_cloud_autonomous_vm_cluster_compartment API.
1582
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/change_cloud_autonomous_vm_cluster_compartment.py.html>`__ to see an example of how to use change_cloud_autonomous_vm_cluster_compartment API.
1583
1583
  """
1584
1584
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
1585
1585
  required_arguments = ['cloudAutonomousVmClusterId']
@@ -1699,7 +1699,7 @@ class DatabaseClient(object):
1699
1699
  :rtype: :class:`~oci.response.Response`
1700
1700
 
1701
1701
  :example:
1702
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/change_cloud_exadata_infrastructure_compartment.py.html>`__ to see an example of how to use change_cloud_exadata_infrastructure_compartment API.
1702
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/change_cloud_exadata_infrastructure_compartment.py.html>`__ to see an example of how to use change_cloud_exadata_infrastructure_compartment API.
1703
1703
  """
1704
1704
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
1705
1705
  required_arguments = ['cloudExadataInfrastructureId']
@@ -1817,7 +1817,7 @@ class DatabaseClient(object):
1817
1817
  :rtype: :class:`~oci.response.Response`
1818
1818
 
1819
1819
  :example:
1820
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/change_cloud_vm_cluster_compartment.py.html>`__ to see an example of how to use change_cloud_vm_cluster_compartment API.
1820
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/change_cloud_vm_cluster_compartment.py.html>`__ to see an example of how to use change_cloud_vm_cluster_compartment API.
1821
1821
  """
1822
1822
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
1823
1823
  required_arguments = ['cloudVmClusterId']
@@ -1939,7 +1939,7 @@ class DatabaseClient(object):
1939
1939
  :rtype: :class:`~oci.response.Response`
1940
1940
 
1941
1941
  :example:
1942
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/change_database_software_image_compartment.py.html>`__ to see an example of how to use change_database_software_image_compartment API.
1942
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/change_database_software_image_compartment.py.html>`__ to see an example of how to use change_database_software_image_compartment API.
1943
1943
  """
1944
1944
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
1945
1945
  required_arguments = ['databaseSoftwareImageId']
@@ -2062,7 +2062,7 @@ class DatabaseClient(object):
2062
2062
  :rtype: :class:`~oci.response.Response`
2063
2063
 
2064
2064
  :example:
2065
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/change_dataguard_role.py.html>`__ to see an example of how to use change_dataguard_role API.
2065
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/change_dataguard_role.py.html>`__ to see an example of how to use change_dataguard_role API.
2066
2066
  """
2067
2067
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
2068
2068
  required_arguments = ['autonomousContainerDatabaseId']
@@ -2193,7 +2193,7 @@ class DatabaseClient(object):
2193
2193
  :rtype: :class:`~oci.response.Response`
2194
2194
 
2195
2195
  :example:
2196
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/change_db_system_compartment.py.html>`__ to see an example of how to use change_db_system_compartment API.
2196
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/change_db_system_compartment.py.html>`__ to see an example of how to use change_db_system_compartment API.
2197
2197
  """
2198
2198
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
2199
2199
  required_arguments = ['dbSystemId']
@@ -2304,7 +2304,7 @@ class DatabaseClient(object):
2304
2304
  :rtype: :class:`~oci.response.Response`
2305
2305
 
2306
2306
  :example:
2307
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/change_disaster_recovery_configuration.py.html>`__ to see an example of how to use change_disaster_recovery_configuration API.
2307
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/change_disaster_recovery_configuration.py.html>`__ to see an example of how to use change_disaster_recovery_configuration API.
2308
2308
  """
2309
2309
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
2310
2310
  required_arguments = ['autonomousDatabaseId']
@@ -2422,7 +2422,7 @@ class DatabaseClient(object):
2422
2422
  :rtype: :class:`~oci.response.Response`
2423
2423
 
2424
2424
  :example:
2425
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/change_exadata_infrastructure_compartment.py.html>`__ to see an example of how to use change_exadata_infrastructure_compartment API.
2425
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/change_exadata_infrastructure_compartment.py.html>`__ to see an example of how to use change_exadata_infrastructure_compartment API.
2426
2426
  """
2427
2427
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
2428
2428
  required_arguments = ['exadataInfrastructureId']
@@ -2545,7 +2545,7 @@ class DatabaseClient(object):
2545
2545
  :rtype: :class:`~oci.response.Response`
2546
2546
 
2547
2547
  :example:
2548
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/change_external_container_database_compartment.py.html>`__ to see an example of how to use change_external_container_database_compartment API.
2548
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/change_external_container_database_compartment.py.html>`__ to see an example of how to use change_external_container_database_compartment API.
2549
2549
  """
2550
2550
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
2551
2551
  required_arguments = ['externalContainerDatabaseId']
@@ -2667,7 +2667,7 @@ class DatabaseClient(object):
2667
2667
  :rtype: :class:`~oci.response.Response`
2668
2668
 
2669
2669
  :example:
2670
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/change_external_non_container_database_compartment.py.html>`__ to see an example of how to use change_external_non_container_database_compartment API.
2670
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/change_external_non_container_database_compartment.py.html>`__ to see an example of how to use change_external_non_container_database_compartment API.
2671
2671
  """
2672
2672
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
2673
2673
  required_arguments = ['externalNonContainerDatabaseId']
@@ -2792,7 +2792,7 @@ class DatabaseClient(object):
2792
2792
  :rtype: :class:`~oci.response.Response`
2793
2793
 
2794
2794
  :example:
2795
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/change_external_pluggable_database_compartment.py.html>`__ to see an example of how to use change_external_pluggable_database_compartment API.
2795
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/change_external_pluggable_database_compartment.py.html>`__ to see an example of how to use change_external_pluggable_database_compartment API.
2796
2796
  """
2797
2797
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
2798
2798
  required_arguments = ['externalPluggableDatabaseId']
@@ -2914,7 +2914,7 @@ class DatabaseClient(object):
2914
2914
  :rtype: :class:`~oci.response.Response`
2915
2915
 
2916
2916
  :example:
2917
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/change_key_store_compartment.py.html>`__ to see an example of how to use change_key_store_compartment API.
2917
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/change_key_store_compartment.py.html>`__ to see an example of how to use change_key_store_compartment API.
2918
2918
  """
2919
2919
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
2920
2920
  required_arguments = ['keyStoreId']
@@ -3032,7 +3032,7 @@ class DatabaseClient(object):
3032
3032
  :rtype: :class:`~oci.response.Response`
3033
3033
 
3034
3034
  :example:
3035
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/change_key_store_type.py.html>`__ to see an example of how to use change_key_store_type API.
3035
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/change_key_store_type.py.html>`__ to see an example of how to use change_key_store_type API.
3036
3036
  """
3037
3037
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
3038
3038
  required_arguments = ['databaseId']
@@ -3150,7 +3150,7 @@ class DatabaseClient(object):
3150
3150
  :rtype: :class:`~oci.response.Response`
3151
3151
 
3152
3152
  :example:
3153
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/change_oneoff_patch_compartment.py.html>`__ to see an example of how to use change_oneoff_patch_compartment API.
3153
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/change_oneoff_patch_compartment.py.html>`__ to see an example of how to use change_oneoff_patch_compartment API.
3154
3154
  """
3155
3155
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
3156
3156
  required_arguments = ['oneoffPatchId']
@@ -3269,7 +3269,7 @@ class DatabaseClient(object):
3269
3269
  :rtype: :class:`~oci.response.Response`
3270
3270
 
3271
3271
  :example:
3272
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/change_vm_cluster_compartment.py.html>`__ to see an example of how to use change_vm_cluster_compartment API.
3272
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/change_vm_cluster_compartment.py.html>`__ to see an example of how to use change_vm_cluster_compartment API.
3273
3273
  """
3274
3274
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
3275
3275
  required_arguments = ['vmClusterId']
@@ -3386,7 +3386,7 @@ class DatabaseClient(object):
3386
3386
  :rtype: :class:`~oci.response.Response`
3387
3387
 
3388
3388
  :example:
3389
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/check_external_database_connector_connection_status.py.html>`__ to see an example of how to use check_external_database_connector_connection_status API.
3389
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/check_external_database_connector_connection_status.py.html>`__ to see an example of how to use check_external_database_connector_connection_status API.
3390
3390
  """
3391
3391
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
3392
3392
  required_arguments = ['externalDatabaseConnectorId']
@@ -3503,7 +3503,7 @@ class DatabaseClient(object):
3503
3503
  :rtype: :class:`~oci.response.Response`
3504
3504
 
3505
3505
  :example:
3506
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/complete_external_backup_job.py.html>`__ to see an example of how to use complete_external_backup_job API.
3506
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/complete_external_backup_job.py.html>`__ to see an example of how to use complete_external_backup_job API.
3507
3507
  """
3508
3508
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
3509
3509
  required_arguments = ['backupId']
@@ -3625,7 +3625,7 @@ class DatabaseClient(object):
3625
3625
  :rtype: :class:`~oci.response.Response`
3626
3626
 
3627
3627
  :example:
3628
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/configure_autonomous_database_vault_key.py.html>`__ to see an example of how to use configure_autonomous_database_vault_key API.
3628
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/configure_autonomous_database_vault_key.py.html>`__ to see an example of how to use configure_autonomous_database_vault_key API.
3629
3629
  """
3630
3630
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
3631
3631
  required_arguments = ['autonomousDatabaseId']
@@ -3736,7 +3736,7 @@ class DatabaseClient(object):
3736
3736
  :rtype: :class:`~oci.response.Response`
3737
3737
 
3738
3738
  :example:
3739
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/convert_to_pdb.py.html>`__ to see an example of how to use convert_to_pdb API.
3739
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/convert_to_pdb.py.html>`__ to see an example of how to use convert_to_pdb API.
3740
3740
  """
3741
3741
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
3742
3742
  required_arguments = ['databaseId']
@@ -3843,7 +3843,7 @@ class DatabaseClient(object):
3843
3843
  :rtype: :class:`~oci.response.Response`
3844
3844
 
3845
3845
  :example:
3846
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/create_application_vip.py.html>`__ to see an example of how to use create_application_vip API.
3846
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/create_application_vip.py.html>`__ to see an example of how to use create_application_vip API.
3847
3847
  """
3848
3848
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
3849
3849
  required_arguments = []
@@ -3936,7 +3936,7 @@ class DatabaseClient(object):
3936
3936
  :rtype: :class:`~oci.response.Response`
3937
3937
 
3938
3938
  :example:
3939
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/create_autonomous_container_database.py.html>`__ to see an example of how to use create_autonomous_container_database API.
3939
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/create_autonomous_container_database.py.html>`__ to see an example of how to use create_autonomous_container_database API.
3940
3940
  """
3941
3941
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
3942
3942
  required_arguments = []
@@ -4030,7 +4030,7 @@ class DatabaseClient(object):
4030
4030
  :rtype: :class:`~oci.response.Response`
4031
4031
 
4032
4032
  :example:
4033
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/create_autonomous_database.py.html>`__ to see an example of how to use create_autonomous_database API.
4033
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/create_autonomous_database.py.html>`__ to see an example of how to use create_autonomous_database API.
4034
4034
  """
4035
4035
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
4036
4036
  required_arguments = []
@@ -4126,7 +4126,7 @@ class DatabaseClient(object):
4126
4126
  :rtype: :class:`~oci.response.Response`
4127
4127
 
4128
4128
  :example:
4129
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/create_autonomous_database_backup.py.html>`__ to see an example of how to use create_autonomous_database_backup API.
4129
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/create_autonomous_database_backup.py.html>`__ to see an example of how to use create_autonomous_database_backup API.
4130
4130
  """
4131
4131
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
4132
4132
  required_arguments = []
@@ -4222,7 +4222,7 @@ class DatabaseClient(object):
4222
4222
  :rtype: :class:`~oci.response.Response`
4223
4223
 
4224
4224
  :example:
4225
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/create_autonomous_vm_cluster.py.html>`__ to see an example of how to use create_autonomous_vm_cluster API.
4225
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/create_autonomous_vm_cluster.py.html>`__ to see an example of how to use create_autonomous_vm_cluster API.
4226
4226
  """
4227
4227
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
4228
4228
  required_arguments = []
@@ -4315,7 +4315,7 @@ class DatabaseClient(object):
4315
4315
  :rtype: :class:`~oci.response.Response`
4316
4316
 
4317
4317
  :example:
4318
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/create_backup.py.html>`__ to see an example of how to use create_backup API.
4318
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/create_backup.py.html>`__ to see an example of how to use create_backup API.
4319
4319
  """
4320
4320
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
4321
4321
  required_arguments = []
@@ -4409,7 +4409,7 @@ class DatabaseClient(object):
4409
4409
  :rtype: :class:`~oci.response.Response`
4410
4410
 
4411
4411
  :example:
4412
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/create_backup_destination.py.html>`__ to see an example of how to use create_backup_destination API.
4412
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/create_backup_destination.py.html>`__ to see an example of how to use create_backup_destination API.
4413
4413
  """
4414
4414
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
4415
4415
  required_arguments = []
@@ -4505,7 +4505,7 @@ class DatabaseClient(object):
4505
4505
  :rtype: :class:`~oci.response.Response`
4506
4506
 
4507
4507
  :example:
4508
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/create_cloud_autonomous_vm_cluster.py.html>`__ to see an example of how to use create_cloud_autonomous_vm_cluster API.
4508
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/create_cloud_autonomous_vm_cluster.py.html>`__ to see an example of how to use create_cloud_autonomous_vm_cluster API.
4509
4509
  """
4510
4510
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
4511
4511
  required_arguments = []
@@ -4605,7 +4605,7 @@ class DatabaseClient(object):
4605
4605
  :rtype: :class:`~oci.response.Response`
4606
4606
 
4607
4607
  :example:
4608
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/create_cloud_exadata_infrastructure.py.html>`__ to see an example of how to use create_cloud_exadata_infrastructure API.
4608
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/create_cloud_exadata_infrastructure.py.html>`__ to see an example of how to use create_cloud_exadata_infrastructure API.
4609
4609
  """
4610
4610
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
4611
4611
  required_arguments = []
@@ -4703,7 +4703,7 @@ class DatabaseClient(object):
4703
4703
  :rtype: :class:`~oci.response.Response`
4704
4704
 
4705
4705
  :example:
4706
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/create_cloud_vm_cluster.py.html>`__ to see an example of how to use create_cloud_vm_cluster API.
4706
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/create_cloud_vm_cluster.py.html>`__ to see an example of how to use create_cloud_vm_cluster API.
4707
4707
  """
4708
4708
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
4709
4709
  required_arguments = []
@@ -4803,7 +4803,7 @@ class DatabaseClient(object):
4803
4803
  :rtype: :class:`~oci.response.Response`
4804
4804
 
4805
4805
  :example:
4806
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/create_console_connection.py.html>`__ to see an example of how to use create_console_connection API.
4806
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/create_console_connection.py.html>`__ to see an example of how to use create_console_connection API.
4807
4807
  """
4808
4808
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
4809
4809
  required_arguments = ['dbNodeId']
@@ -4921,7 +4921,7 @@ class DatabaseClient(object):
4921
4921
  :rtype: :class:`~oci.response.Response`
4922
4922
 
4923
4923
  :example:
4924
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/create_data_guard_association.py.html>`__ to see an example of how to use create_data_guard_association API.
4924
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/create_data_guard_association.py.html>`__ to see an example of how to use create_data_guard_association API.
4925
4925
  """
4926
4926
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
4927
4927
  required_arguments = ['databaseId']
@@ -5027,7 +5027,7 @@ class DatabaseClient(object):
5027
5027
  :rtype: :class:`~oci.response.Response`
5028
5028
 
5029
5029
  :example:
5030
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/create_database.py.html>`__ to see an example of how to use create_database API.
5030
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/create_database.py.html>`__ to see an example of how to use create_database API.
5031
5031
  """
5032
5032
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
5033
5033
  required_arguments = []
@@ -5120,7 +5120,7 @@ class DatabaseClient(object):
5120
5120
  :rtype: :class:`~oci.response.Response`
5121
5121
 
5122
5122
  :example:
5123
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/create_database_software_image.py.html>`__ to see an example of how to use create_database_software_image API.
5123
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/create_database_software_image.py.html>`__ to see an example of how to use create_database_software_image API.
5124
5124
  """
5125
5125
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
5126
5126
  required_arguments = []
@@ -5211,7 +5211,7 @@ class DatabaseClient(object):
5211
5211
  :rtype: :class:`~oci.response.Response`
5212
5212
 
5213
5213
  :example:
5214
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/create_db_home.py.html>`__ to see an example of how to use create_db_home API.
5214
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/create_db_home.py.html>`__ to see an example of how to use create_db_home API.
5215
5215
  """
5216
5216
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
5217
5217
  required_arguments = []
@@ -5306,7 +5306,7 @@ class DatabaseClient(object):
5306
5306
  :rtype: :class:`~oci.response.Response`
5307
5307
 
5308
5308
  :example:
5309
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/create_exadata_infrastructure.py.html>`__ to see an example of how to use create_exadata_infrastructure API.
5309
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/create_exadata_infrastructure.py.html>`__ to see an example of how to use create_exadata_infrastructure API.
5310
5310
  """
5311
5311
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
5312
5312
  required_arguments = []
@@ -5403,7 +5403,7 @@ class DatabaseClient(object):
5403
5403
  :rtype: :class:`~oci.response.Response`
5404
5404
 
5405
5405
  :example:
5406
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/create_external_backup_job.py.html>`__ to see an example of how to use create_external_backup_job API.
5406
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/create_external_backup_job.py.html>`__ to see an example of how to use create_external_backup_job API.
5407
5407
  """
5408
5408
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
5409
5409
  required_arguments = []
@@ -5497,7 +5497,7 @@ class DatabaseClient(object):
5497
5497
  :rtype: :class:`~oci.response.Response`
5498
5498
 
5499
5499
  :example:
5500
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/create_external_container_database.py.html>`__ to see an example of how to use create_external_container_database API.
5500
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/create_external_container_database.py.html>`__ to see an example of how to use create_external_container_database API.
5501
5501
  """
5502
5502
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
5503
5503
  required_arguments = []
@@ -5593,7 +5593,7 @@ class DatabaseClient(object):
5593
5593
  :rtype: :class:`~oci.response.Response`
5594
5594
 
5595
5595
  :example:
5596
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/create_external_database_connector.py.html>`__ to see an example of how to use create_external_database_connector API.
5596
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/create_external_database_connector.py.html>`__ to see an example of how to use create_external_database_connector API.
5597
5597
  """
5598
5598
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
5599
5599
  required_arguments = []
@@ -5689,7 +5689,7 @@ class DatabaseClient(object):
5689
5689
  :rtype: :class:`~oci.response.Response`
5690
5690
 
5691
5691
  :example:
5692
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/create_external_non_container_database.py.html>`__ to see an example of how to use create_external_non_container_database API.
5692
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/create_external_non_container_database.py.html>`__ to see an example of how to use create_external_non_container_database API.
5693
5693
  """
5694
5694
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
5695
5695
  required_arguments = []
@@ -5786,7 +5786,7 @@ class DatabaseClient(object):
5786
5786
  :rtype: :class:`~oci.response.Response`
5787
5787
 
5788
5788
  :example:
5789
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/create_external_pluggable_database.py.html>`__ to see an example of how to use create_external_pluggable_database API.
5789
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/create_external_pluggable_database.py.html>`__ to see an example of how to use create_external_pluggable_database API.
5790
5790
  """
5791
5791
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
5792
5792
  required_arguments = []
@@ -5882,7 +5882,7 @@ class DatabaseClient(object):
5882
5882
  :rtype: :class:`~oci.response.Response`
5883
5883
 
5884
5884
  :example:
5885
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/create_key_store.py.html>`__ to see an example of how to use create_key_store API.
5885
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/create_key_store.py.html>`__ to see an example of how to use create_key_store API.
5886
5886
  """
5887
5887
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
5888
5888
  required_arguments = []
@@ -5978,7 +5978,7 @@ class DatabaseClient(object):
5978
5978
  :rtype: :class:`~oci.response.Response`
5979
5979
 
5980
5980
  :example:
5981
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/create_oneoff_patch.py.html>`__ to see an example of how to use create_oneoff_patch API.
5981
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/create_oneoff_patch.py.html>`__ to see an example of how to use create_oneoff_patch API.
5982
5982
  """
5983
5983
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
5984
5984
  required_arguments = []
@@ -6075,7 +6075,7 @@ class DatabaseClient(object):
6075
6075
  :rtype: :class:`~oci.response.Response`
6076
6076
 
6077
6077
  :example:
6078
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/create_pluggable_database.py.html>`__ to see an example of how to use create_pluggable_database API.
6078
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/create_pluggable_database.py.html>`__ to see an example of how to use create_pluggable_database API.
6079
6079
  """
6080
6080
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
6081
6081
  required_arguments = []
@@ -6172,7 +6172,7 @@ class DatabaseClient(object):
6172
6172
  :rtype: :class:`~oci.response.Response`
6173
6173
 
6174
6174
  :example:
6175
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/create_vm_cluster.py.html>`__ to see an example of how to use create_vm_cluster API.
6175
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/create_vm_cluster.py.html>`__ to see an example of how to use create_vm_cluster API.
6176
6176
  """
6177
6177
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
6178
6178
  required_arguments = []
@@ -6274,7 +6274,7 @@ class DatabaseClient(object):
6274
6274
  :rtype: :class:`~oci.response.Response`
6275
6275
 
6276
6276
  :example:
6277
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/create_vm_cluster_network.py.html>`__ to see an example of how to use create_vm_cluster_network API.
6277
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/create_vm_cluster_network.py.html>`__ to see an example of how to use create_vm_cluster_network API.
6278
6278
  """
6279
6279
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
6280
6280
  required_arguments = ['exadataInfrastructureId']
@@ -6403,7 +6403,7 @@ class DatabaseClient(object):
6403
6403
  :rtype: :class:`~oci.response.Response`
6404
6404
 
6405
6405
  :example:
6406
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/db_node_action.py.html>`__ to see an example of how to use db_node_action API.
6406
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/db_node_action.py.html>`__ to see an example of how to use db_node_action API.
6407
6407
  """
6408
6408
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
6409
6409
  required_arguments = ['dbNodeId', 'action']
@@ -6516,7 +6516,7 @@ class DatabaseClient(object):
6516
6516
  :rtype: :class:`~oci.response.Response`
6517
6517
 
6518
6518
  :example:
6519
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/delete_application_vip.py.html>`__ to see an example of how to use delete_application_vip API.
6519
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/delete_application_vip.py.html>`__ to see an example of how to use delete_application_vip API.
6520
6520
  """
6521
6521
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
6522
6522
  required_arguments = ['applicationVipId']
@@ -6619,7 +6619,7 @@ class DatabaseClient(object):
6619
6619
  :rtype: :class:`~oci.response.Response`
6620
6620
 
6621
6621
  :example:
6622
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/delete_autonomous_database.py.html>`__ to see an example of how to use delete_autonomous_database API.
6622
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/delete_autonomous_database.py.html>`__ to see an example of how to use delete_autonomous_database API.
6623
6623
  """
6624
6624
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
6625
6625
  required_arguments = ['autonomousDatabaseId']
@@ -6722,7 +6722,7 @@ class DatabaseClient(object):
6722
6722
  :rtype: :class:`~oci.response.Response`
6723
6723
 
6724
6724
  :example:
6725
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/delete_autonomous_database_backup.py.html>`__ to see an example of how to use delete_autonomous_database_backup API.
6725
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/delete_autonomous_database_backup.py.html>`__ to see an example of how to use delete_autonomous_database_backup API.
6726
6726
  """
6727
6727
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
6728
6728
  required_arguments = ['autonomousDatabaseBackupId']
@@ -6825,7 +6825,7 @@ class DatabaseClient(object):
6825
6825
  :rtype: :class:`~oci.response.Response`
6826
6826
 
6827
6827
  :example:
6828
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/delete_autonomous_vm_cluster.py.html>`__ to see an example of how to use delete_autonomous_vm_cluster API.
6828
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/delete_autonomous_vm_cluster.py.html>`__ to see an example of how to use delete_autonomous_vm_cluster API.
6829
6829
  """
6830
6830
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
6831
6831
  required_arguments = ['autonomousVmClusterId']
@@ -6925,7 +6925,7 @@ class DatabaseClient(object):
6925
6925
  :rtype: :class:`~oci.response.Response`
6926
6926
 
6927
6927
  :example:
6928
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/delete_backup.py.html>`__ to see an example of how to use delete_backup API.
6928
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/delete_backup.py.html>`__ to see an example of how to use delete_backup API.
6929
6929
  """
6930
6930
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
6931
6931
  required_arguments = ['backupId']
@@ -7026,7 +7026,7 @@ class DatabaseClient(object):
7026
7026
  :rtype: :class:`~oci.response.Response`
7027
7027
 
7028
7028
  :example:
7029
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/delete_backup_destination.py.html>`__ to see an example of how to use delete_backup_destination API.
7029
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/delete_backup_destination.py.html>`__ to see an example of how to use delete_backup_destination API.
7030
7030
  """
7031
7031
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
7032
7032
  required_arguments = ['backupDestinationId']
@@ -7129,7 +7129,7 @@ class DatabaseClient(object):
7129
7129
  :rtype: :class:`~oci.response.Response`
7130
7130
 
7131
7131
  :example:
7132
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/delete_cloud_autonomous_vm_cluster.py.html>`__ to see an example of how to use delete_cloud_autonomous_vm_cluster API.
7132
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/delete_cloud_autonomous_vm_cluster.py.html>`__ to see an example of how to use delete_cloud_autonomous_vm_cluster API.
7133
7133
  """
7134
7134
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
7135
7135
  required_arguments = ['cloudAutonomousVmClusterId']
@@ -7235,7 +7235,7 @@ class DatabaseClient(object):
7235
7235
  :rtype: :class:`~oci.response.Response`
7236
7236
 
7237
7237
  :example:
7238
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/delete_cloud_exadata_infrastructure.py.html>`__ to see an example of how to use delete_cloud_exadata_infrastructure API.
7238
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/delete_cloud_exadata_infrastructure.py.html>`__ to see an example of how to use delete_cloud_exadata_infrastructure API.
7239
7239
  """
7240
7240
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
7241
7241
  required_arguments = ['cloudExadataInfrastructureId']
@@ -7346,7 +7346,7 @@ class DatabaseClient(object):
7346
7346
  :rtype: :class:`~oci.response.Response`
7347
7347
 
7348
7348
  :example:
7349
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/delete_cloud_vm_cluster.py.html>`__ to see an example of how to use delete_cloud_vm_cluster API.
7349
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/delete_cloud_vm_cluster.py.html>`__ to see an example of how to use delete_cloud_vm_cluster API.
7350
7350
  """
7351
7351
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
7352
7352
  required_arguments = ['cloudVmClusterId']
@@ -7449,7 +7449,7 @@ class DatabaseClient(object):
7449
7449
  :rtype: :class:`~oci.response.Response`
7450
7450
 
7451
7451
  :example:
7452
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/delete_console_connection.py.html>`__ to see an example of how to use delete_console_connection API.
7452
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/delete_console_connection.py.html>`__ to see an example of how to use delete_console_connection API.
7453
7453
  """
7454
7454
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
7455
7455
  required_arguments = ['dbNodeId', 'consoleConnectionId']
@@ -7560,7 +7560,7 @@ class DatabaseClient(object):
7560
7560
  :rtype: :class:`~oci.response.Response`
7561
7561
 
7562
7562
  :example:
7563
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/delete_database.py.html>`__ to see an example of how to use delete_database API.
7563
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/delete_database.py.html>`__ to see an example of how to use delete_database API.
7564
7564
  """
7565
7565
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
7566
7566
  required_arguments = ['databaseId']
@@ -7668,7 +7668,7 @@ class DatabaseClient(object):
7668
7668
  :rtype: :class:`~oci.response.Response`
7669
7669
 
7670
7670
  :example:
7671
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/delete_database_software_image.py.html>`__ to see an example of how to use delete_database_software_image API.
7671
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/delete_database_software_image.py.html>`__ to see an example of how to use delete_database_software_image API.
7672
7672
  """
7673
7673
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
7674
7674
  required_arguments = ['databaseSoftwareImageId']
@@ -7775,7 +7775,7 @@ class DatabaseClient(object):
7775
7775
  :rtype: :class:`~oci.response.Response`
7776
7776
 
7777
7777
  :example:
7778
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/delete_db_home.py.html>`__ to see an example of how to use delete_db_home API.
7778
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/delete_db_home.py.html>`__ to see an example of how to use delete_db_home API.
7779
7779
  """
7780
7780
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
7781
7781
  required_arguments = ['dbHomeId']
@@ -7884,7 +7884,7 @@ class DatabaseClient(object):
7884
7884
  :rtype: :class:`~oci.response.Response`
7885
7885
 
7886
7886
  :example:
7887
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/delete_exadata_infrastructure.py.html>`__ to see an example of how to use delete_exadata_infrastructure API.
7887
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/delete_exadata_infrastructure.py.html>`__ to see an example of how to use delete_exadata_infrastructure API.
7888
7888
  """
7889
7889
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
7890
7890
  required_arguments = ['exadataInfrastructureId']
@@ -7989,7 +7989,7 @@ class DatabaseClient(object):
7989
7989
  :rtype: :class:`~oci.response.Response`
7990
7990
 
7991
7991
  :example:
7992
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/delete_external_container_database.py.html>`__ to see an example of how to use delete_external_container_database API.
7992
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/delete_external_container_database.py.html>`__ to see an example of how to use delete_external_container_database API.
7993
7993
  """
7994
7994
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
7995
7995
  required_arguments = ['externalContainerDatabaseId']
@@ -8095,7 +8095,7 @@ class DatabaseClient(object):
8095
8095
  :rtype: :class:`~oci.response.Response`
8096
8096
 
8097
8097
  :example:
8098
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/delete_external_database_connector.py.html>`__ to see an example of how to use delete_external_database_connector API.
8098
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/delete_external_database_connector.py.html>`__ to see an example of how to use delete_external_database_connector API.
8099
8099
  """
8100
8100
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
8101
8101
  required_arguments = ['externalDatabaseConnectorId']
@@ -8198,7 +8198,7 @@ class DatabaseClient(object):
8198
8198
  :rtype: :class:`~oci.response.Response`
8199
8199
 
8200
8200
  :example:
8201
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/delete_external_non_container_database.py.html>`__ to see an example of how to use delete_external_non_container_database API.
8201
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/delete_external_non_container_database.py.html>`__ to see an example of how to use delete_external_non_container_database API.
8202
8202
  """
8203
8203
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
8204
8204
  required_arguments = ['externalNonContainerDatabaseId']
@@ -8302,7 +8302,7 @@ class DatabaseClient(object):
8302
8302
  :rtype: :class:`~oci.response.Response`
8303
8303
 
8304
8304
  :example:
8305
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/delete_external_pluggable_database.py.html>`__ to see an example of how to use delete_external_pluggable_database API.
8305
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/delete_external_pluggable_database.py.html>`__ to see an example of how to use delete_external_pluggable_database API.
8306
8306
  """
8307
8307
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
8308
8308
  required_arguments = ['externalPluggableDatabaseId']
@@ -8405,7 +8405,7 @@ class DatabaseClient(object):
8405
8405
  :rtype: :class:`~oci.response.Response`
8406
8406
 
8407
8407
  :example:
8408
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/delete_key_store.py.html>`__ to see an example of how to use delete_key_store API.
8408
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/delete_key_store.py.html>`__ to see an example of how to use delete_key_store API.
8409
8409
  """
8410
8410
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
8411
8411
  required_arguments = ['keyStoreId']
@@ -8508,7 +8508,7 @@ class DatabaseClient(object):
8508
8508
  :rtype: :class:`~oci.response.Response`
8509
8509
 
8510
8510
  :example:
8511
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/delete_oneoff_patch.py.html>`__ to see an example of how to use delete_oneoff_patch API.
8511
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/delete_oneoff_patch.py.html>`__ to see an example of how to use delete_oneoff_patch API.
8512
8512
  """
8513
8513
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
8514
8514
  required_arguments = ['oneoffPatchId']
@@ -8611,7 +8611,7 @@ class DatabaseClient(object):
8611
8611
  :rtype: :class:`~oci.response.Response`
8612
8612
 
8613
8613
  :example:
8614
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/delete_pluggable_database.py.html>`__ to see an example of how to use delete_pluggable_database API.
8614
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/delete_pluggable_database.py.html>`__ to see an example of how to use delete_pluggable_database API.
8615
8615
  """
8616
8616
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
8617
8617
  required_arguments = ['pluggableDatabaseId']
@@ -8714,7 +8714,7 @@ class DatabaseClient(object):
8714
8714
  :rtype: :class:`~oci.response.Response`
8715
8715
 
8716
8716
  :example:
8717
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/delete_vm_cluster.py.html>`__ to see an example of how to use delete_vm_cluster API.
8717
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/delete_vm_cluster.py.html>`__ to see an example of how to use delete_vm_cluster API.
8718
8718
  """
8719
8719
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
8720
8720
  required_arguments = ['vmClusterId']
@@ -8823,7 +8823,7 @@ class DatabaseClient(object):
8823
8823
  :rtype: :class:`~oci.response.Response`
8824
8824
 
8825
8825
  :example:
8826
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/delete_vm_cluster_network.py.html>`__ to see an example of how to use delete_vm_cluster_network API.
8826
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/delete_vm_cluster_network.py.html>`__ to see an example of how to use delete_vm_cluster_network API.
8827
8827
  """
8828
8828
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
8829
8829
  required_arguments = ['exadataInfrastructureId', 'vmClusterNetworkId']
@@ -8925,7 +8925,7 @@ class DatabaseClient(object):
8925
8925
  :rtype: :class:`~oci.response.Response`
8926
8926
 
8927
8927
  :example:
8928
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/deregister_autonomous_database_data_safe.py.html>`__ to see an example of how to use deregister_autonomous_database_data_safe API.
8928
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/deregister_autonomous_database_data_safe.py.html>`__ to see an example of how to use deregister_autonomous_database_data_safe API.
8929
8929
  """
8930
8930
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
8931
8931
  required_arguments = ['autonomousDatabaseId']
@@ -9024,7 +9024,7 @@ class DatabaseClient(object):
9024
9024
  :rtype: :class:`~oci.response.Response`
9025
9025
 
9026
9026
  :example:
9027
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/disable_autonomous_database_management.py.html>`__ to see an example of how to use disable_autonomous_database_management API.
9027
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/disable_autonomous_database_management.py.html>`__ to see an example of how to use disable_autonomous_database_management API.
9028
9028
  """
9029
9029
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
9030
9030
  required_arguments = ['autonomousDatabaseId']
@@ -9120,7 +9120,7 @@ class DatabaseClient(object):
9120
9120
  :rtype: :class:`~oci.response.Response`
9121
9121
 
9122
9122
  :example:
9123
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/disable_autonomous_database_operations_insights.py.html>`__ to see an example of how to use disable_autonomous_database_operations_insights API.
9123
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/disable_autonomous_database_operations_insights.py.html>`__ to see an example of how to use disable_autonomous_database_operations_insights API.
9124
9124
  """
9125
9125
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
9126
9126
  required_arguments = ['autonomousDatabaseId']
@@ -9228,7 +9228,7 @@ class DatabaseClient(object):
9228
9228
  :rtype: :class:`~oci.response.Response`
9229
9229
 
9230
9230
  :example:
9231
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/disable_database_management.py.html>`__ to see an example of how to use disable_database_management API.
9231
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/disable_database_management.py.html>`__ to see an example of how to use disable_database_management API.
9232
9232
  """
9233
9233
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
9234
9234
  required_arguments = ['databaseId']
@@ -9343,7 +9343,7 @@ class DatabaseClient(object):
9343
9343
  :rtype: :class:`~oci.response.Response`
9344
9344
 
9345
9345
  :example:
9346
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/disable_external_container_database_database_management.py.html>`__ to see an example of how to use disable_external_container_database_database_management API.
9346
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/disable_external_container_database_database_management.py.html>`__ to see an example of how to use disable_external_container_database_database_management API.
9347
9347
  """
9348
9348
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
9349
9349
  required_arguments = ['externalContainerDatabaseId']
@@ -9456,7 +9456,7 @@ class DatabaseClient(object):
9456
9456
  :rtype: :class:`~oci.response.Response`
9457
9457
 
9458
9458
  :example:
9459
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/disable_external_container_database_stack_monitoring.py.html>`__ to see an example of how to use disable_external_container_database_stack_monitoring API.
9459
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/disable_external_container_database_stack_monitoring.py.html>`__ to see an example of how to use disable_external_container_database_stack_monitoring API.
9460
9460
  """
9461
9461
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
9462
9462
  required_arguments = ['externalContainerDatabaseId']
@@ -9573,7 +9573,7 @@ class DatabaseClient(object):
9573
9573
  :rtype: :class:`~oci.response.Response`
9574
9574
 
9575
9575
  :example:
9576
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/disable_external_non_container_database_database_management.py.html>`__ to see an example of how to use disable_external_non_container_database_database_management API.
9576
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/disable_external_non_container_database_database_management.py.html>`__ to see an example of how to use disable_external_non_container_database_database_management API.
9577
9577
  """
9578
9578
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
9579
9579
  required_arguments = ['externalNonContainerDatabaseId']
@@ -9686,7 +9686,7 @@ class DatabaseClient(object):
9686
9686
  :rtype: :class:`~oci.response.Response`
9687
9687
 
9688
9688
  :example:
9689
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/disable_external_non_container_database_operations_insights.py.html>`__ to see an example of how to use disable_external_non_container_database_operations_insights API.
9689
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/disable_external_non_container_database_operations_insights.py.html>`__ to see an example of how to use disable_external_non_container_database_operations_insights API.
9690
9690
  """
9691
9691
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
9692
9692
  required_arguments = ['externalNonContainerDatabaseId']
@@ -9799,7 +9799,7 @@ class DatabaseClient(object):
9799
9799
  :rtype: :class:`~oci.response.Response`
9800
9800
 
9801
9801
  :example:
9802
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/disable_external_non_container_database_stack_monitoring.py.html>`__ to see an example of how to use disable_external_non_container_database_stack_monitoring API.
9802
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/disable_external_non_container_database_stack_monitoring.py.html>`__ to see an example of how to use disable_external_non_container_database_stack_monitoring API.
9803
9803
  """
9804
9804
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
9805
9805
  required_arguments = ['externalNonContainerDatabaseId']
@@ -9916,7 +9916,7 @@ class DatabaseClient(object):
9916
9916
  :rtype: :class:`~oci.response.Response`
9917
9917
 
9918
9918
  :example:
9919
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/disable_external_pluggable_database_database_management.py.html>`__ to see an example of how to use disable_external_pluggable_database_database_management API.
9919
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/disable_external_pluggable_database_database_management.py.html>`__ to see an example of how to use disable_external_pluggable_database_database_management API.
9920
9920
  """
9921
9921
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
9922
9922
  required_arguments = ['externalPluggableDatabaseId']
@@ -10029,7 +10029,7 @@ class DatabaseClient(object):
10029
10029
  :rtype: :class:`~oci.response.Response`
10030
10030
 
10031
10031
  :example:
10032
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/disable_external_pluggable_database_operations_insights.py.html>`__ to see an example of how to use disable_external_pluggable_database_operations_insights API.
10032
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/disable_external_pluggable_database_operations_insights.py.html>`__ to see an example of how to use disable_external_pluggable_database_operations_insights API.
10033
10033
  """
10034
10034
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
10035
10035
  required_arguments = ['externalPluggableDatabaseId']
@@ -10142,7 +10142,7 @@ class DatabaseClient(object):
10142
10142
  :rtype: :class:`~oci.response.Response`
10143
10143
 
10144
10144
  :example:
10145
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/disable_external_pluggable_database_stack_monitoring.py.html>`__ to see an example of how to use disable_external_pluggable_database_stack_monitoring API.
10145
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/disable_external_pluggable_database_stack_monitoring.py.html>`__ to see an example of how to use disable_external_pluggable_database_stack_monitoring API.
10146
10146
  """
10147
10147
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
10148
10148
  required_arguments = ['externalPluggableDatabaseId']
@@ -10255,7 +10255,7 @@ class DatabaseClient(object):
10255
10255
  :rtype: :class:`~oci.response.Response`
10256
10256
 
10257
10257
  :example:
10258
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/disable_pluggable_database_management.py.html>`__ to see an example of how to use disable_pluggable_database_management API.
10258
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/disable_pluggable_database_management.py.html>`__ to see an example of how to use disable_pluggable_database_management API.
10259
10259
  """
10260
10260
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
10261
10261
  required_arguments = ['pluggableDatabaseId']
@@ -10365,7 +10365,7 @@ class DatabaseClient(object):
10365
10365
  :rtype: :class:`~oci.response.Response`
10366
10366
 
10367
10367
  :example:
10368
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/download_exadata_infrastructure_config_file.py.html>`__ to see an example of how to use download_exadata_infrastructure_config_file API.
10368
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/download_exadata_infrastructure_config_file.py.html>`__ to see an example of how to use download_exadata_infrastructure_config_file API.
10369
10369
  """
10370
10370
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
10371
10371
  required_arguments = ['exadataInfrastructureId']
@@ -10478,7 +10478,7 @@ class DatabaseClient(object):
10478
10478
  :rtype: :class:`~oci.response.Response`
10479
10479
 
10480
10480
  :example:
10481
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/download_oneoff_patch.py.html>`__ to see an example of how to use download_oneoff_patch API.
10481
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/download_oneoff_patch.py.html>`__ to see an example of how to use download_oneoff_patch API.
10482
10482
  """
10483
10483
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
10484
10484
  required_arguments = ['oneoffPatchId']
@@ -10593,7 +10593,7 @@ class DatabaseClient(object):
10593
10593
  :rtype: :class:`~oci.response.Response`
10594
10594
 
10595
10595
  :example:
10596
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/download_validation_report.py.html>`__ to see an example of how to use download_validation_report API.
10596
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/download_validation_report.py.html>`__ to see an example of how to use download_validation_report API.
10597
10597
  """
10598
10598
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
10599
10599
  required_arguments = ['exadataInfrastructureId', 'vmClusterNetworkId']
@@ -10707,7 +10707,7 @@ class DatabaseClient(object):
10707
10707
  :rtype: :class:`~oci.response.Response`
10708
10708
 
10709
10709
  :example:
10710
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/download_vm_cluster_network_config_file.py.html>`__ to see an example of how to use download_vm_cluster_network_config_file API.
10710
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/download_vm_cluster_network_config_file.py.html>`__ to see an example of how to use download_vm_cluster_network_config_file API.
10711
10711
  """
10712
10712
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
10713
10713
  required_arguments = ['exadataInfrastructureId', 'vmClusterNetworkId']
@@ -10809,7 +10809,7 @@ class DatabaseClient(object):
10809
10809
  :rtype: :class:`~oci.response.Response`
10810
10810
 
10811
10811
  :example:
10812
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/enable_autonomous_database_management.py.html>`__ to see an example of how to use enable_autonomous_database_management API.
10812
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/enable_autonomous_database_management.py.html>`__ to see an example of how to use enable_autonomous_database_management API.
10813
10813
  """
10814
10814
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
10815
10815
  required_arguments = ['autonomousDatabaseId']
@@ -10905,7 +10905,7 @@ class DatabaseClient(object):
10905
10905
  :rtype: :class:`~oci.response.Response`
10906
10906
 
10907
10907
  :example:
10908
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/enable_autonomous_database_operations_insights.py.html>`__ to see an example of how to use enable_autonomous_database_operations_insights API.
10908
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/enable_autonomous_database_operations_insights.py.html>`__ to see an example of how to use enable_autonomous_database_operations_insights API.
10909
10909
  """
10910
10910
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
10911
10911
  required_arguments = ['autonomousDatabaseId']
@@ -11016,7 +11016,7 @@ class DatabaseClient(object):
11016
11016
  :rtype: :class:`~oci.response.Response`
11017
11017
 
11018
11018
  :example:
11019
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/enable_database_management.py.html>`__ to see an example of how to use enable_database_management API.
11019
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/enable_database_management.py.html>`__ to see an example of how to use enable_database_management API.
11020
11020
  """
11021
11021
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
11022
11022
  required_arguments = ['databaseId']
@@ -11140,7 +11140,7 @@ class DatabaseClient(object):
11140
11140
  :rtype: :class:`~oci.response.Response`
11141
11141
 
11142
11142
  :example:
11143
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/enable_external_container_database_database_management.py.html>`__ to see an example of how to use enable_external_container_database_database_management API.
11143
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/enable_external_container_database_database_management.py.html>`__ to see an example of how to use enable_external_container_database_database_management API.
11144
11144
  """
11145
11145
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
11146
11146
  required_arguments = ['externalContainerDatabaseId']
@@ -11258,7 +11258,7 @@ class DatabaseClient(object):
11258
11258
  :rtype: :class:`~oci.response.Response`
11259
11259
 
11260
11260
  :example:
11261
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/enable_external_container_database_stack_monitoring.py.html>`__ to see an example of how to use enable_external_container_database_stack_monitoring API.
11261
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/enable_external_container_database_stack_monitoring.py.html>`__ to see an example of how to use enable_external_container_database_stack_monitoring API.
11262
11262
  """
11263
11263
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
11264
11264
  required_arguments = ['externalContainerDatabaseId']
@@ -11380,7 +11380,7 @@ class DatabaseClient(object):
11380
11380
  :rtype: :class:`~oci.response.Response`
11381
11381
 
11382
11382
  :example:
11383
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/enable_external_non_container_database_database_management.py.html>`__ to see an example of how to use enable_external_non_container_database_database_management API.
11383
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/enable_external_non_container_database_database_management.py.html>`__ to see an example of how to use enable_external_non_container_database_database_management API.
11384
11384
  """
11385
11385
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
11386
11386
  required_arguments = ['externalNonContainerDatabaseId']
@@ -11498,7 +11498,7 @@ class DatabaseClient(object):
11498
11498
  :rtype: :class:`~oci.response.Response`
11499
11499
 
11500
11500
  :example:
11501
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/enable_external_non_container_database_operations_insights.py.html>`__ to see an example of how to use enable_external_non_container_database_operations_insights API.
11501
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/enable_external_non_container_database_operations_insights.py.html>`__ to see an example of how to use enable_external_non_container_database_operations_insights API.
11502
11502
  """
11503
11503
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
11504
11504
  required_arguments = ['externalNonContainerDatabaseId']
@@ -11616,7 +11616,7 @@ class DatabaseClient(object):
11616
11616
  :rtype: :class:`~oci.response.Response`
11617
11617
 
11618
11618
  :example:
11619
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/enable_external_non_container_database_stack_monitoring.py.html>`__ to see an example of how to use enable_external_non_container_database_stack_monitoring API.
11619
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/enable_external_non_container_database_stack_monitoring.py.html>`__ to see an example of how to use enable_external_non_container_database_stack_monitoring API.
11620
11620
  """
11621
11621
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
11622
11622
  required_arguments = ['externalNonContainerDatabaseId']
@@ -11738,7 +11738,7 @@ class DatabaseClient(object):
11738
11738
  :rtype: :class:`~oci.response.Response`
11739
11739
 
11740
11740
  :example:
11741
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/enable_external_pluggable_database_database_management.py.html>`__ to see an example of how to use enable_external_pluggable_database_database_management API.
11741
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/enable_external_pluggable_database_database_management.py.html>`__ to see an example of how to use enable_external_pluggable_database_database_management API.
11742
11742
  """
11743
11743
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
11744
11744
  required_arguments = ['externalPluggableDatabaseId']
@@ -11856,7 +11856,7 @@ class DatabaseClient(object):
11856
11856
  :rtype: :class:`~oci.response.Response`
11857
11857
 
11858
11858
  :example:
11859
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/enable_external_pluggable_database_operations_insights.py.html>`__ to see an example of how to use enable_external_pluggable_database_operations_insights API.
11859
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/enable_external_pluggable_database_operations_insights.py.html>`__ to see an example of how to use enable_external_pluggable_database_operations_insights API.
11860
11860
  """
11861
11861
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
11862
11862
  required_arguments = ['externalPluggableDatabaseId']
@@ -11974,7 +11974,7 @@ class DatabaseClient(object):
11974
11974
  :rtype: :class:`~oci.response.Response`
11975
11975
 
11976
11976
  :example:
11977
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/enable_external_pluggable_database_stack_monitoring.py.html>`__ to see an example of how to use enable_external_pluggable_database_stack_monitoring API.
11977
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/enable_external_pluggable_database_stack_monitoring.py.html>`__ to see an example of how to use enable_external_pluggable_database_stack_monitoring API.
11978
11978
  """
11979
11979
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
11980
11980
  required_arguments = ['externalPluggableDatabaseId']
@@ -12092,7 +12092,7 @@ class DatabaseClient(object):
12092
12092
  :rtype: :class:`~oci.response.Response`
12093
12093
 
12094
12094
  :example:
12095
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/enable_pluggable_database_management.py.html>`__ to see an example of how to use enable_pluggable_database_management API.
12095
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/enable_pluggable_database_management.py.html>`__ to see an example of how to use enable_pluggable_database_management API.
12096
12096
  """
12097
12097
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
12098
12098
  required_arguments = ['pluggableDatabaseId']
@@ -12216,7 +12216,7 @@ class DatabaseClient(object):
12216
12216
  :rtype: :class:`~oci.response.Response`
12217
12217
 
12218
12218
  :example:
12219
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/fail_over_autonomous_database.py.html>`__ to see an example of how to use fail_over_autonomous_database API.
12219
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/fail_over_autonomous_database.py.html>`__ to see an example of how to use fail_over_autonomous_database API.
12220
12220
  """
12221
12221
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
12222
12222
  required_arguments = ['autonomousDatabaseId']
@@ -12336,7 +12336,7 @@ class DatabaseClient(object):
12336
12336
  :rtype: :class:`~oci.response.Response`
12337
12337
 
12338
12338
  :example:
12339
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/failover_autonomous_container_database_dataguard_association.py.html>`__ to see an example of how to use failover_autonomous_container_database_dataguard_association API.
12339
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/failover_autonomous_container_database_dataguard_association.py.html>`__ to see an example of how to use failover_autonomous_container_database_dataguard_association API.
12340
12340
  """
12341
12341
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
12342
12342
  required_arguments = ['autonomousContainerDatabaseId', 'autonomousContainerDatabaseDataguardAssociationId']
@@ -12449,7 +12449,7 @@ class DatabaseClient(object):
12449
12449
  :rtype: :class:`~oci.response.Response`
12450
12450
 
12451
12451
  :example:
12452
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/failover_data_guard_association.py.html>`__ to see an example of how to use failover_data_guard_association API.
12452
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/failover_data_guard_association.py.html>`__ to see an example of how to use failover_data_guard_association API.
12453
12453
  """
12454
12454
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
12455
12455
  required_arguments = ['databaseId', 'dataGuardAssociationId']
@@ -12560,7 +12560,7 @@ class DatabaseClient(object):
12560
12560
  :rtype: :class:`~oci.response.Response`
12561
12561
 
12562
12562
  :example:
12563
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/generate_autonomous_database_wallet.py.html>`__ to see an example of how to use generate_autonomous_database_wallet API.
12563
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/generate_autonomous_database_wallet.py.html>`__ to see an example of how to use generate_autonomous_database_wallet API.
12564
12564
  """
12565
12565
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
12566
12566
  required_arguments = ['autonomousDatabaseId']
@@ -12673,7 +12673,7 @@ class DatabaseClient(object):
12673
12673
  :rtype: :class:`~oci.response.Response`
12674
12674
 
12675
12675
  :example:
12676
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/generate_recommended_vm_cluster_network.py.html>`__ to see an example of how to use generate_recommended_vm_cluster_network API.
12676
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/generate_recommended_vm_cluster_network.py.html>`__ to see an example of how to use generate_recommended_vm_cluster_network API.
12677
12677
  """
12678
12678
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
12679
12679
  required_arguments = ['exadataInfrastructureId']
@@ -12776,7 +12776,7 @@ class DatabaseClient(object):
12776
12776
  :rtype: :class:`~oci.response.Response`
12777
12777
 
12778
12778
  :example:
12779
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/get_application_vip.py.html>`__ to see an example of how to use get_application_vip API.
12779
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/get_application_vip.py.html>`__ to see an example of how to use get_application_vip API.
12780
12780
  """
12781
12781
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
12782
12782
  required_arguments = ['applicationVipId']
@@ -12871,7 +12871,7 @@ class DatabaseClient(object):
12871
12871
  :rtype: :class:`~oci.response.Response`
12872
12872
 
12873
12873
  :example:
12874
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/get_autonomous_container_database.py.html>`__ to see an example of how to use get_autonomous_container_database API.
12874
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/get_autonomous_container_database.py.html>`__ to see an example of how to use get_autonomous_container_database API.
12875
12875
  """
12876
12876
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
12877
12877
  required_arguments = ['autonomousContainerDatabaseId']
@@ -12964,7 +12964,7 @@ class DatabaseClient(object):
12964
12964
  :rtype: :class:`~oci.response.Response`
12965
12965
 
12966
12966
  :example:
12967
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/get_autonomous_container_database_dataguard_association.py.html>`__ to see an example of how to use get_autonomous_container_database_dataguard_association API.
12967
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/get_autonomous_container_database_dataguard_association.py.html>`__ to see an example of how to use get_autonomous_container_database_dataguard_association API.
12968
12968
  """
12969
12969
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
12970
12970
  required_arguments = ['autonomousContainerDatabaseId', 'autonomousContainerDatabaseDataguardAssociationId']
@@ -13027,6 +13027,104 @@ class DatabaseClient(object):
13027
13027
  api_reference_link=api_reference_link,
13028
13028
  required_arguments=required_arguments)
13029
13029
 
13030
+ def get_autonomous_container_database_resource_usage(self, autonomous_container_database_id, **kwargs):
13031
+ """
13032
+ Get resource usage details for the specified Autonomous Container Database.
13033
+
13034
+
13035
+ :param str autonomous_container_database_id: (required)
13036
+ The Autonomous Container Database `OCID`__.
13037
+
13038
+ __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
13039
+
13040
+ :param str opc_request_id: (optional)
13041
+ Unique identifier for the request.
13042
+
13043
+ :param obj retry_strategy: (optional)
13044
+ A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level.
13045
+
13046
+ This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it.
13047
+ The specifics of the default retry strategy are described `here <https://docs.oracle.com/en-us/iaas/tools/python/latest/sdk_behaviors/retries.html>`__.
13048
+
13049
+ To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`.
13050
+
13051
+ :param bool allow_control_chars: (optional)
13052
+ allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object.
13053
+ By default, the response will not allow control characters in strings
13054
+
13055
+ :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.AutonomousContainerDatabaseResourceUsage`
13056
+ :rtype: :class:`~oci.response.Response`
13057
+
13058
+ :example:
13059
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/get_autonomous_container_database_resource_usage.py.html>`__ to see an example of how to use get_autonomous_container_database_resource_usage API.
13060
+ """
13061
+ # Required path and query arguments. These are in camelCase to replace values in service endpoints.
13062
+ required_arguments = ['autonomousContainerDatabaseId']
13063
+ resource_path = "/autonomousContainerDatabases/{autonomousContainerDatabaseId}/resourceUsage"
13064
+ method = "GET"
13065
+ operation_name = "get_autonomous_container_database_resource_usage"
13066
+ api_reference_link = "https://docs.oracle.com/iaas/api/#/en/database/20160918/AutonomousContainerDatabase/GetAutonomousContainerDatabaseResourceUsage"
13067
+
13068
+ # Don't accept unknown kwargs
13069
+ expected_kwargs = [
13070
+ "allow_control_chars",
13071
+ "retry_strategy",
13072
+ "opc_request_id"
13073
+ ]
13074
+ extra_kwargs = [_key for _key in six.iterkeys(kwargs) if _key not in expected_kwargs]
13075
+ if extra_kwargs:
13076
+ raise ValueError(
13077
+ "get_autonomous_container_database_resource_usage got unknown kwargs: {!r}".format(extra_kwargs))
13078
+
13079
+ path_params = {
13080
+ "autonomousContainerDatabaseId": autonomous_container_database_id
13081
+ }
13082
+
13083
+ path_params = {k: v for (k, v) in six.iteritems(path_params) if v is not missing}
13084
+
13085
+ for (k, v) in six.iteritems(path_params):
13086
+ if v is None or (isinstance(v, six.string_types) and len(v.strip()) == 0):
13087
+ raise ValueError('Parameter {} cannot be None, whitespace or empty string'.format(k))
13088
+
13089
+ header_params = {
13090
+ "accept": "application/json",
13091
+ "content-type": "application/json",
13092
+ "opc-request-id": kwargs.get("opc_request_id", missing)
13093
+ }
13094
+ header_params = {k: v for (k, v) in six.iteritems(header_params) if v is not missing and v is not None}
13095
+
13096
+ retry_strategy = self.base_client.get_preferred_retry_strategy(
13097
+ operation_retry_strategy=kwargs.get('retry_strategy'),
13098
+ client_retry_strategy=self.retry_strategy
13099
+ )
13100
+
13101
+ if retry_strategy:
13102
+ if not isinstance(retry_strategy, retry.NoneRetryStrategy):
13103
+ self.base_client.add_opc_client_retries_header(header_params)
13104
+ retry_strategy.add_circuit_breaker_callback(self.circuit_breaker_callback)
13105
+ return retry_strategy.make_retrying_call(
13106
+ self.base_client.call_api,
13107
+ resource_path=resource_path,
13108
+ method=method,
13109
+ path_params=path_params,
13110
+ header_params=header_params,
13111
+ response_type="AutonomousContainerDatabaseResourceUsage",
13112
+ allow_control_chars=kwargs.get('allow_control_chars'),
13113
+ operation_name=operation_name,
13114
+ api_reference_link=api_reference_link,
13115
+ required_arguments=required_arguments)
13116
+ else:
13117
+ return self.base_client.call_api(
13118
+ resource_path=resource_path,
13119
+ method=method,
13120
+ path_params=path_params,
13121
+ header_params=header_params,
13122
+ response_type="AutonomousContainerDatabaseResourceUsage",
13123
+ allow_control_chars=kwargs.get('allow_control_chars'),
13124
+ operation_name=operation_name,
13125
+ api_reference_link=api_reference_link,
13126
+ required_arguments=required_arguments)
13127
+
13030
13128
  def get_autonomous_database(self, autonomous_database_id, **kwargs):
13031
13129
  """
13032
13130
  Gets the details of the specified Autonomous Database.
@@ -13056,7 +13154,7 @@ class DatabaseClient(object):
13056
13154
  :rtype: :class:`~oci.response.Response`
13057
13155
 
13058
13156
  :example:
13059
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/get_autonomous_database.py.html>`__ to see an example of how to use get_autonomous_database API.
13157
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/get_autonomous_database.py.html>`__ to see an example of how to use get_autonomous_database API.
13060
13158
  """
13061
13159
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
13062
13160
  required_arguments = ['autonomousDatabaseId']
@@ -13154,7 +13252,7 @@ class DatabaseClient(object):
13154
13252
  :rtype: :class:`~oci.response.Response`
13155
13253
 
13156
13254
  :example:
13157
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/get_autonomous_database_backup.py.html>`__ to see an example of how to use get_autonomous_database_backup API.
13255
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/get_autonomous_database_backup.py.html>`__ to see an example of how to use get_autonomous_database_backup API.
13158
13256
  """
13159
13257
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
13160
13258
  required_arguments = ['autonomousDatabaseBackupId']
@@ -13257,7 +13355,7 @@ class DatabaseClient(object):
13257
13355
  :rtype: :class:`~oci.response.Response`
13258
13356
 
13259
13357
  :example:
13260
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/get_autonomous_database_dataguard_association.py.html>`__ to see an example of how to use get_autonomous_database_dataguard_association API.
13358
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/get_autonomous_database_dataguard_association.py.html>`__ to see an example of how to use get_autonomous_database_dataguard_association API.
13261
13359
  """
13262
13360
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
13263
13361
  required_arguments = ['autonomousDatabaseId', 'autonomousDatabaseDataguardAssociationId']
@@ -13351,7 +13449,7 @@ class DatabaseClient(object):
13351
13449
  :rtype: :class:`~oci.response.Response`
13352
13450
 
13353
13451
  :example:
13354
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/get_autonomous_database_regional_wallet.py.html>`__ to see an example of how to use get_autonomous_database_regional_wallet API.
13452
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/get_autonomous_database_regional_wallet.py.html>`__ to see an example of how to use get_autonomous_database_regional_wallet API.
13355
13453
  """
13356
13454
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
13357
13455
  required_arguments = []
@@ -13437,7 +13535,7 @@ class DatabaseClient(object):
13437
13535
  :rtype: :class:`~oci.response.Response`
13438
13536
 
13439
13537
  :example:
13440
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/get_autonomous_database_wallet.py.html>`__ to see an example of how to use get_autonomous_database_wallet API.
13538
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/get_autonomous_database_wallet.py.html>`__ to see an example of how to use get_autonomous_database_wallet API.
13441
13539
  """
13442
13540
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
13443
13541
  required_arguments = ['autonomousDatabaseId']
@@ -13532,7 +13630,7 @@ class DatabaseClient(object):
13532
13630
  :rtype: :class:`~oci.response.Response`
13533
13631
 
13534
13632
  :example:
13535
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/get_autonomous_exadata_infrastructure.py.html>`__ to see an example of how to use get_autonomous_exadata_infrastructure API.
13633
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/get_autonomous_exadata_infrastructure.py.html>`__ to see an example of how to use get_autonomous_exadata_infrastructure API.
13536
13634
  """
13537
13635
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
13538
13636
  required_arguments = ['autonomousExadataInfrastructureId']
@@ -13620,7 +13718,7 @@ class DatabaseClient(object):
13620
13718
  :rtype: :class:`~oci.response.Response`
13621
13719
 
13622
13720
  :example:
13623
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/get_autonomous_patch.py.html>`__ to see an example of how to use get_autonomous_patch API.
13721
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/get_autonomous_patch.py.html>`__ to see an example of how to use get_autonomous_patch API.
13624
13722
  """
13625
13723
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
13626
13724
  required_arguments = ['autonomousPatchId']
@@ -13711,7 +13809,7 @@ class DatabaseClient(object):
13711
13809
  :rtype: :class:`~oci.response.Response`
13712
13810
 
13713
13811
  :example:
13714
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/get_autonomous_virtual_machine.py.html>`__ to see an example of how to use get_autonomous_virtual_machine API.
13812
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/get_autonomous_virtual_machine.py.html>`__ to see an example of how to use get_autonomous_virtual_machine API.
13715
13813
  """
13716
13814
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
13717
13815
  required_arguments = ['autonomousVirtualMachineId']
@@ -13809,7 +13907,7 @@ class DatabaseClient(object):
13809
13907
  :rtype: :class:`~oci.response.Response`
13810
13908
 
13811
13909
  :example:
13812
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/get_autonomous_vm_cluster.py.html>`__ to see an example of how to use get_autonomous_vm_cluster API.
13910
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/get_autonomous_vm_cluster.py.html>`__ to see an example of how to use get_autonomous_vm_cluster API.
13813
13911
  """
13814
13912
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
13815
13913
  required_arguments = ['autonomousVmClusterId']
@@ -13904,7 +14002,7 @@ class DatabaseClient(object):
13904
14002
  :rtype: :class:`~oci.response.Response`
13905
14003
 
13906
14004
  :example:
13907
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/get_backup.py.html>`__ to see an example of how to use get_backup API.
14005
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/get_backup.py.html>`__ to see an example of how to use get_backup API.
13908
14006
  """
13909
14007
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
13910
14008
  required_arguments = ['backupId']
@@ -13995,7 +14093,7 @@ class DatabaseClient(object):
13995
14093
  :rtype: :class:`~oci.response.Response`
13996
14094
 
13997
14095
  :example:
13998
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/get_backup_destination.py.html>`__ to see an example of how to use get_backup_destination API.
14096
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/get_backup_destination.py.html>`__ to see an example of how to use get_backup_destination API.
13999
14097
  """
14000
14098
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
14001
14099
  required_arguments = ['backupDestinationId']
@@ -14093,7 +14191,7 @@ class DatabaseClient(object):
14093
14191
  :rtype: :class:`~oci.response.Response`
14094
14192
 
14095
14193
  :example:
14096
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/get_cloud_autonomous_vm_cluster.py.html>`__ to see an example of how to use get_cloud_autonomous_vm_cluster API.
14194
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/get_cloud_autonomous_vm_cluster.py.html>`__ to see an example of how to use get_cloud_autonomous_vm_cluster API.
14097
14195
  """
14098
14196
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
14099
14197
  required_arguments = ['cloudAutonomousVmClusterId']
@@ -14162,6 +14260,104 @@ class DatabaseClient(object):
14162
14260
  api_reference_link=api_reference_link,
14163
14261
  required_arguments=required_arguments)
14164
14262
 
14263
+ def get_cloud_autonomous_vm_cluster_resource_usage(self, cloud_autonomous_vm_cluster_id, **kwargs):
14264
+ """
14265
+ Get the resource usage details for the specified Cloud Autonomous Exadata VM cluster.
14266
+
14267
+
14268
+ :param str cloud_autonomous_vm_cluster_id: (required)
14269
+ The Cloud VM cluster `OCID`__.
14270
+
14271
+ __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
14272
+
14273
+ :param str opc_request_id: (optional)
14274
+ Unique identifier for the request.
14275
+
14276
+ :param obj retry_strategy: (optional)
14277
+ A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level.
14278
+
14279
+ This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it.
14280
+ The specifics of the default retry strategy are described `here <https://docs.oracle.com/en-us/iaas/tools/python/latest/sdk_behaviors/retries.html>`__.
14281
+
14282
+ To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`.
14283
+
14284
+ :param bool allow_control_chars: (optional)
14285
+ allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object.
14286
+ By default, the response will not allow control characters in strings
14287
+
14288
+ :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.CloudAutonomousVmClusterResourceUsage`
14289
+ :rtype: :class:`~oci.response.Response`
14290
+
14291
+ :example:
14292
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/get_cloud_autonomous_vm_cluster_resource_usage.py.html>`__ to see an example of how to use get_cloud_autonomous_vm_cluster_resource_usage API.
14293
+ """
14294
+ # Required path and query arguments. These are in camelCase to replace values in service endpoints.
14295
+ required_arguments = ['cloudAutonomousVmClusterId']
14296
+ resource_path = "/cloudAutonomousVmClusters/{cloudAutonomousVmClusterId}/resourceUsage"
14297
+ method = "GET"
14298
+ operation_name = "get_cloud_autonomous_vm_cluster_resource_usage"
14299
+ api_reference_link = "https://docs.oracle.com/iaas/api/#/en/database/20160918/CloudAutonomousVmCluster/GetCloudAutonomousVmClusterResourceUsage"
14300
+
14301
+ # Don't accept unknown kwargs
14302
+ expected_kwargs = [
14303
+ "allow_control_chars",
14304
+ "retry_strategy",
14305
+ "opc_request_id"
14306
+ ]
14307
+ extra_kwargs = [_key for _key in six.iterkeys(kwargs) if _key not in expected_kwargs]
14308
+ if extra_kwargs:
14309
+ raise ValueError(
14310
+ "get_cloud_autonomous_vm_cluster_resource_usage got unknown kwargs: {!r}".format(extra_kwargs))
14311
+
14312
+ path_params = {
14313
+ "cloudAutonomousVmClusterId": cloud_autonomous_vm_cluster_id
14314
+ }
14315
+
14316
+ path_params = {k: v for (k, v) in six.iteritems(path_params) if v is not missing}
14317
+
14318
+ for (k, v) in six.iteritems(path_params):
14319
+ if v is None or (isinstance(v, six.string_types) and len(v.strip()) == 0):
14320
+ raise ValueError('Parameter {} cannot be None, whitespace or empty string'.format(k))
14321
+
14322
+ header_params = {
14323
+ "accept": "application/json",
14324
+ "content-type": "application/json",
14325
+ "opc-request-id": kwargs.get("opc_request_id", missing)
14326
+ }
14327
+ header_params = {k: v for (k, v) in six.iteritems(header_params) if v is not missing and v is not None}
14328
+
14329
+ retry_strategy = self.base_client.get_preferred_retry_strategy(
14330
+ operation_retry_strategy=kwargs.get('retry_strategy'),
14331
+ client_retry_strategy=self.retry_strategy
14332
+ )
14333
+
14334
+ if retry_strategy:
14335
+ if not isinstance(retry_strategy, retry.NoneRetryStrategy):
14336
+ self.base_client.add_opc_client_retries_header(header_params)
14337
+ retry_strategy.add_circuit_breaker_callback(self.circuit_breaker_callback)
14338
+ return retry_strategy.make_retrying_call(
14339
+ self.base_client.call_api,
14340
+ resource_path=resource_path,
14341
+ method=method,
14342
+ path_params=path_params,
14343
+ header_params=header_params,
14344
+ response_type="CloudAutonomousVmClusterResourceUsage",
14345
+ allow_control_chars=kwargs.get('allow_control_chars'),
14346
+ operation_name=operation_name,
14347
+ api_reference_link=api_reference_link,
14348
+ required_arguments=required_arguments)
14349
+ else:
14350
+ return self.base_client.call_api(
14351
+ resource_path=resource_path,
14352
+ method=method,
14353
+ path_params=path_params,
14354
+ header_params=header_params,
14355
+ response_type="CloudAutonomousVmClusterResourceUsage",
14356
+ allow_control_chars=kwargs.get('allow_control_chars'),
14357
+ operation_name=operation_name,
14358
+ api_reference_link=api_reference_link,
14359
+ required_arguments=required_arguments)
14360
+
14165
14361
  def get_cloud_exadata_infrastructure(self, cloud_exadata_infrastructure_id, **kwargs):
14166
14362
  """
14167
14363
  Gets information about the specified cloud Exadata infrastructure resource. Applies to Exadata Cloud Service instances and Autonomous Database on dedicated Exadata infrastructure only.
@@ -14191,7 +14387,7 @@ class DatabaseClient(object):
14191
14387
  :rtype: :class:`~oci.response.Response`
14192
14388
 
14193
14389
  :example:
14194
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/get_cloud_exadata_infrastructure.py.html>`__ to see an example of how to use get_cloud_exadata_infrastructure API.
14390
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/get_cloud_exadata_infrastructure.py.html>`__ to see an example of how to use get_cloud_exadata_infrastructure API.
14195
14391
  """
14196
14392
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
14197
14393
  required_arguments = ['cloudExadataInfrastructureId']
@@ -14294,7 +14490,7 @@ class DatabaseClient(object):
14294
14490
  :rtype: :class:`~oci.response.Response`
14295
14491
 
14296
14492
  :example:
14297
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/get_cloud_exadata_infrastructure_unallocated_resources.py.html>`__ to see an example of how to use get_cloud_exadata_infrastructure_unallocated_resources API.
14493
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/get_cloud_exadata_infrastructure_unallocated_resources.py.html>`__ to see an example of how to use get_cloud_exadata_infrastructure_unallocated_resources API.
14298
14494
  """
14299
14495
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
14300
14496
  required_arguments = ['cloudExadataInfrastructureId']
@@ -14400,7 +14596,7 @@ class DatabaseClient(object):
14400
14596
  :rtype: :class:`~oci.response.Response`
14401
14597
 
14402
14598
  :example:
14403
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/get_cloud_vm_cluster.py.html>`__ to see an example of how to use get_cloud_vm_cluster API.
14599
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/get_cloud_vm_cluster.py.html>`__ to see an example of how to use get_cloud_vm_cluster API.
14404
14600
  """
14405
14601
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
14406
14602
  required_arguments = ['cloudVmClusterId']
@@ -14499,7 +14695,7 @@ class DatabaseClient(object):
14499
14695
  :rtype: :class:`~oci.response.Response`
14500
14696
 
14501
14697
  :example:
14502
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/get_cloud_vm_cluster_iorm_config.py.html>`__ to see an example of how to use get_cloud_vm_cluster_iorm_config API.
14698
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/get_cloud_vm_cluster_iorm_config.py.html>`__ to see an example of how to use get_cloud_vm_cluster_iorm_config API.
14503
14699
  """
14504
14700
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
14505
14701
  required_arguments = ['cloudVmClusterId']
@@ -14602,7 +14798,7 @@ class DatabaseClient(object):
14602
14798
  :rtype: :class:`~oci.response.Response`
14603
14799
 
14604
14800
  :example:
14605
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/get_cloud_vm_cluster_update.py.html>`__ to see an example of how to use get_cloud_vm_cluster_update API.
14801
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/get_cloud_vm_cluster_update.py.html>`__ to see an example of how to use get_cloud_vm_cluster_update API.
14606
14802
  """
14607
14803
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
14608
14804
  required_arguments = ['cloudVmClusterId', 'updateId']
@@ -14706,7 +14902,7 @@ class DatabaseClient(object):
14706
14902
  :rtype: :class:`~oci.response.Response`
14707
14903
 
14708
14904
  :example:
14709
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/get_cloud_vm_cluster_update_history_entry.py.html>`__ to see an example of how to use get_cloud_vm_cluster_update_history_entry API.
14905
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/get_cloud_vm_cluster_update_history_entry.py.html>`__ to see an example of how to use get_cloud_vm_cluster_update_history_entry API.
14710
14906
  """
14711
14907
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
14712
14908
  required_arguments = ['cloudVmClusterId', 'updateHistoryEntryId']
@@ -14805,7 +15001,7 @@ class DatabaseClient(object):
14805
15001
  :rtype: :class:`~oci.response.Response`
14806
15002
 
14807
15003
  :example:
14808
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/get_console_connection.py.html>`__ to see an example of how to use get_console_connection API.
15004
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/get_console_connection.py.html>`__ to see an example of how to use get_console_connection API.
14809
15005
  """
14810
15006
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
14811
15007
  required_arguments = ['dbNodeId', 'consoleConnectionId']
@@ -14899,7 +15095,7 @@ class DatabaseClient(object):
14899
15095
  :rtype: :class:`~oci.response.Response`
14900
15096
 
14901
15097
  :example:
14902
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/get_data_guard_association.py.html>`__ to see an example of how to use get_data_guard_association API.
15098
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/get_data_guard_association.py.html>`__ to see an example of how to use get_data_guard_association API.
14903
15099
  """
14904
15100
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
14905
15101
  required_arguments = ['databaseId', 'dataGuardAssociationId']
@@ -14988,7 +15184,7 @@ class DatabaseClient(object):
14988
15184
  :rtype: :class:`~oci.response.Response`
14989
15185
 
14990
15186
  :example:
14991
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/get_database.py.html>`__ to see an example of how to use get_database API.
15187
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/get_database.py.html>`__ to see an example of how to use get_database API.
14992
15188
  """
14993
15189
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
14994
15190
  required_arguments = ['databaseId']
@@ -15076,7 +15272,7 @@ class DatabaseClient(object):
15076
15272
  :rtype: :class:`~oci.response.Response`
15077
15273
 
15078
15274
  :example:
15079
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/get_database_software_image.py.html>`__ to see an example of how to use get_database_software_image API.
15275
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/get_database_software_image.py.html>`__ to see an example of how to use get_database_software_image API.
15080
15276
  """
15081
15277
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
15082
15278
  required_arguments = ['databaseSoftwareImageId']
@@ -15172,7 +15368,7 @@ class DatabaseClient(object):
15172
15368
  :rtype: :class:`~oci.response.Response`
15173
15369
 
15174
15370
  :example:
15175
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/get_database_upgrade_history_entry.py.html>`__ to see an example of how to use get_database_upgrade_history_entry API.
15371
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/get_database_upgrade_history_entry.py.html>`__ to see an example of how to use get_database_upgrade_history_entry API.
15176
15372
  """
15177
15373
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
15178
15374
  required_arguments = ['databaseId', 'upgradeHistoryEntryId']
@@ -15268,7 +15464,7 @@ class DatabaseClient(object):
15268
15464
  :rtype: :class:`~oci.response.Response`
15269
15465
 
15270
15466
  :example:
15271
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/get_db_home.py.html>`__ to see an example of how to use get_db_home API.
15467
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/get_db_home.py.html>`__ to see an example of how to use get_db_home API.
15272
15468
  """
15273
15469
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
15274
15470
  required_arguments = ['dbHomeId']
@@ -15361,7 +15557,7 @@ class DatabaseClient(object):
15361
15557
  :rtype: :class:`~oci.response.Response`
15362
15558
 
15363
15559
  :example:
15364
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/get_db_home_patch.py.html>`__ to see an example of how to use get_db_home_patch API.
15560
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/get_db_home_patch.py.html>`__ to see an example of how to use get_db_home_patch API.
15365
15561
  """
15366
15562
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
15367
15563
  required_arguments = ['dbHomeId', 'patchId']
@@ -15455,7 +15651,7 @@ class DatabaseClient(object):
15455
15651
  :rtype: :class:`~oci.response.Response`
15456
15652
 
15457
15653
  :example:
15458
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/get_db_home_patch_history_entry.py.html>`__ to see an example of how to use get_db_home_patch_history_entry API.
15654
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/get_db_home_patch_history_entry.py.html>`__ to see an example of how to use get_db_home_patch_history_entry API.
15459
15655
  """
15460
15656
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
15461
15657
  required_arguments = ['dbHomeId', 'patchHistoryEntryId']
@@ -15544,7 +15740,7 @@ class DatabaseClient(object):
15544
15740
  :rtype: :class:`~oci.response.Response`
15545
15741
 
15546
15742
  :example:
15547
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/get_db_node.py.html>`__ to see an example of how to use get_db_node API.
15743
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/get_db_node.py.html>`__ to see an example of how to use get_db_node API.
15548
15744
  """
15549
15745
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
15550
15746
  required_arguments = ['dbNodeId']
@@ -15640,7 +15836,7 @@ class DatabaseClient(object):
15640
15836
  :rtype: :class:`~oci.response.Response`
15641
15837
 
15642
15838
  :example:
15643
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/get_db_server.py.html>`__ to see an example of how to use get_db_server API.
15839
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/get_db_server.py.html>`__ to see an example of how to use get_db_server API.
15644
15840
  """
15645
15841
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
15646
15842
  required_arguments = ['dbServerId', 'exadataInfrastructureId']
@@ -15749,7 +15945,7 @@ class DatabaseClient(object):
15749
15945
  :rtype: :class:`~oci.response.Response`
15750
15946
 
15751
15947
  :example:
15752
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/get_db_system.py.html>`__ to see an example of how to use get_db_system API.
15948
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/get_db_system.py.html>`__ to see an example of how to use get_db_system API.
15753
15949
  """
15754
15950
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
15755
15951
  required_arguments = ['dbSystemId']
@@ -15842,7 +16038,7 @@ class DatabaseClient(object):
15842
16038
  :rtype: :class:`~oci.response.Response`
15843
16039
 
15844
16040
  :example:
15845
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/get_db_system_patch.py.html>`__ to see an example of how to use get_db_system_patch API.
16041
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/get_db_system_patch.py.html>`__ to see an example of how to use get_db_system_patch API.
15846
16042
  """
15847
16043
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
15848
16044
  required_arguments = ['dbSystemId', 'patchId']
@@ -15936,7 +16132,7 @@ class DatabaseClient(object):
15936
16132
  :rtype: :class:`~oci.response.Response`
15937
16133
 
15938
16134
  :example:
15939
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/get_db_system_patch_history_entry.py.html>`__ to see an example of how to use get_db_system_patch_history_entry API.
16135
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/get_db_system_patch_history_entry.py.html>`__ to see an example of how to use get_db_system_patch_history_entry API.
15940
16136
  """
15941
16137
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
15942
16138
  required_arguments = ['dbSystemId', 'patchHistoryEntryId']
@@ -16033,7 +16229,7 @@ class DatabaseClient(object):
16033
16229
  :rtype: :class:`~oci.response.Response`
16034
16230
 
16035
16231
  :example:
16036
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/get_db_system_upgrade_history_entry.py.html>`__ to see an example of how to use get_db_system_upgrade_history_entry API.
16232
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/get_db_system_upgrade_history_entry.py.html>`__ to see an example of how to use get_db_system_upgrade_history_entry API.
16037
16233
  """
16038
16234
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
16039
16235
  required_arguments = ['dbSystemId', 'upgradeHistoryEntryId']
@@ -16138,7 +16334,7 @@ class DatabaseClient(object):
16138
16334
  :rtype: :class:`~oci.response.Response`
16139
16335
 
16140
16336
  :example:
16141
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/get_exadata_infrastructure.py.html>`__ to see an example of how to use get_exadata_infrastructure API.
16337
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/get_exadata_infrastructure.py.html>`__ to see an example of how to use get_exadata_infrastructure API.
16142
16338
  """
16143
16339
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
16144
16340
  required_arguments = ['exadataInfrastructureId']
@@ -16252,7 +16448,7 @@ class DatabaseClient(object):
16252
16448
  :rtype: :class:`~oci.response.Response`
16253
16449
 
16254
16450
  :example:
16255
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/get_exadata_infrastructure_ocpus.py.html>`__ to see an example of how to use get_exadata_infrastructure_ocpus API.
16451
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/get_exadata_infrastructure_ocpus.py.html>`__ to see an example of how to use get_exadata_infrastructure_ocpus API.
16256
16452
  """
16257
16453
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
16258
16454
  required_arguments = ['autonomousExadataInfrastructureId']
@@ -16355,7 +16551,7 @@ class DatabaseClient(object):
16355
16551
  :rtype: :class:`~oci.response.Response`
16356
16552
 
16357
16553
  :example:
16358
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/get_exadata_infrastructure_un_allocated_resources.py.html>`__ to see an example of how to use get_exadata_infrastructure_un_allocated_resources API.
16554
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/get_exadata_infrastructure_un_allocated_resources.py.html>`__ to see an example of how to use get_exadata_infrastructure_un_allocated_resources API.
16359
16555
  """
16360
16556
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
16361
16557
  required_arguments = ['exadataInfrastructureId']
@@ -16472,7 +16668,7 @@ class DatabaseClient(object):
16472
16668
  :rtype: :class:`~oci.response.Response`
16473
16669
 
16474
16670
  :example:
16475
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/get_exadata_iorm_config.py.html>`__ to see an example of how to use get_exadata_iorm_config API.
16671
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/get_exadata_iorm_config.py.html>`__ to see an example of how to use get_exadata_iorm_config API.
16476
16672
  """
16477
16673
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
16478
16674
  required_arguments = ['dbSystemId']
@@ -16571,7 +16767,7 @@ class DatabaseClient(object):
16571
16767
  :rtype: :class:`~oci.response.Response`
16572
16768
 
16573
16769
  :example:
16574
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/get_external_backup_job.py.html>`__ to see an example of how to use get_external_backup_job API.
16770
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/get_external_backup_job.py.html>`__ to see an example of how to use get_external_backup_job API.
16575
16771
  """
16576
16772
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
16577
16773
  required_arguments = ['backupId']
@@ -16662,7 +16858,7 @@ class DatabaseClient(object):
16662
16858
  :rtype: :class:`~oci.response.Response`
16663
16859
 
16664
16860
  :example:
16665
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/get_external_container_database.py.html>`__ to see an example of how to use get_external_container_database API.
16861
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/get_external_container_database.py.html>`__ to see an example of how to use get_external_container_database API.
16666
16862
  """
16667
16863
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
16668
16864
  required_arguments = ['externalContainerDatabaseId']
@@ -16761,7 +16957,7 @@ class DatabaseClient(object):
16761
16957
  :rtype: :class:`~oci.response.Response`
16762
16958
 
16763
16959
  :example:
16764
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/get_external_database_connector.py.html>`__ to see an example of how to use get_external_database_connector API.
16960
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/get_external_database_connector.py.html>`__ to see an example of how to use get_external_database_connector API.
16765
16961
  """
16766
16962
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
16767
16963
  required_arguments = ['externalDatabaseConnectorId']
@@ -16859,7 +17055,7 @@ class DatabaseClient(object):
16859
17055
  :rtype: :class:`~oci.response.Response`
16860
17056
 
16861
17057
  :example:
16862
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/get_external_non_container_database.py.html>`__ to see an example of how to use get_external_non_container_database API.
17058
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/get_external_non_container_database.py.html>`__ to see an example of how to use get_external_non_container_database API.
16863
17059
  """
16864
17060
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
16865
17061
  required_arguments = ['externalNonContainerDatabaseId']
@@ -16958,7 +17154,7 @@ class DatabaseClient(object):
16958
17154
  :rtype: :class:`~oci.response.Response`
16959
17155
 
16960
17156
  :example:
16961
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/get_external_pluggable_database.py.html>`__ to see an example of how to use get_external_pluggable_database API.
17157
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/get_external_pluggable_database.py.html>`__ to see an example of how to use get_external_pluggable_database API.
16962
17158
  """
16963
17159
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
16964
17160
  required_arguments = ['externalPluggableDatabaseId']
@@ -17065,7 +17261,7 @@ class DatabaseClient(object):
17065
17261
  :rtype: :class:`~oci.response.Response`
17066
17262
 
17067
17263
  :example:
17068
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/get_infrastructure_target_versions.py.html>`__ to see an example of how to use get_infrastructure_target_versions API.
17264
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/get_infrastructure_target_versions.py.html>`__ to see an example of how to use get_infrastructure_target_versions API.
17069
17265
  """
17070
17266
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
17071
17267
  required_arguments = ['compartmentId']
@@ -17169,7 +17365,7 @@ class DatabaseClient(object):
17169
17365
  :rtype: :class:`~oci.response.Response`
17170
17366
 
17171
17367
  :example:
17172
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/get_key_store.py.html>`__ to see an example of how to use get_key_store API.
17368
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/get_key_store.py.html>`__ to see an example of how to use get_key_store API.
17173
17369
  """
17174
17370
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
17175
17371
  required_arguments = ['keyStoreId']
@@ -17262,7 +17458,7 @@ class DatabaseClient(object):
17262
17458
  :rtype: :class:`~oci.response.Response`
17263
17459
 
17264
17460
  :example:
17265
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/get_maintenance_run.py.html>`__ to see an example of how to use get_maintenance_run API.
17461
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/get_maintenance_run.py.html>`__ to see an example of how to use get_maintenance_run API.
17266
17462
  """
17267
17463
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
17268
17464
  required_arguments = ['maintenanceRunId']
@@ -17348,7 +17544,7 @@ class DatabaseClient(object):
17348
17544
  :rtype: :class:`~oci.response.Response`
17349
17545
 
17350
17546
  :example:
17351
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/get_maintenance_run_history.py.html>`__ to see an example of how to use get_maintenance_run_history API.
17547
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/get_maintenance_run_history.py.html>`__ to see an example of how to use get_maintenance_run_history API.
17352
17548
  """
17353
17549
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
17354
17550
  required_arguments = ['maintenanceRunHistoryId']
@@ -17439,7 +17635,7 @@ class DatabaseClient(object):
17439
17635
  :rtype: :class:`~oci.response.Response`
17440
17636
 
17441
17637
  :example:
17442
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/get_oneoff_patch.py.html>`__ to see an example of how to use get_oneoff_patch API.
17638
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/get_oneoff_patch.py.html>`__ to see an example of how to use get_oneoff_patch API.
17443
17639
  """
17444
17640
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
17445
17641
  required_arguments = ['oneoffPatchId']
@@ -17542,7 +17738,7 @@ class DatabaseClient(object):
17542
17738
  :rtype: :class:`~oci.response.Response`
17543
17739
 
17544
17740
  :example:
17545
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/get_pdb_conversion_history_entry.py.html>`__ to see an example of how to use get_pdb_conversion_history_entry API.
17741
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/get_pdb_conversion_history_entry.py.html>`__ to see an example of how to use get_pdb_conversion_history_entry API.
17546
17742
  """
17547
17743
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
17548
17744
  required_arguments = ['databaseId', 'pdbConversionHistoryEntryId']
@@ -17638,7 +17834,7 @@ class DatabaseClient(object):
17638
17834
  :rtype: :class:`~oci.response.Response`
17639
17835
 
17640
17836
  :example:
17641
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/get_pluggable_database.py.html>`__ to see an example of how to use get_pluggable_database API.
17837
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/get_pluggable_database.py.html>`__ to see an example of how to use get_pluggable_database API.
17642
17838
  """
17643
17839
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
17644
17840
  required_arguments = ['pluggableDatabaseId']
@@ -17729,7 +17925,7 @@ class DatabaseClient(object):
17729
17925
  :rtype: :class:`~oci.response.Response`
17730
17926
 
17731
17927
  :example:
17732
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/get_vm_cluster.py.html>`__ to see an example of how to use get_vm_cluster API.
17928
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/get_vm_cluster.py.html>`__ to see an example of how to use get_vm_cluster API.
17733
17929
  """
17734
17930
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
17735
17931
  required_arguments = ['vmClusterId']
@@ -17833,7 +18029,7 @@ class DatabaseClient(object):
17833
18029
  :rtype: :class:`~oci.response.Response`
17834
18030
 
17835
18031
  :example:
17836
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/get_vm_cluster_network.py.html>`__ to see an example of how to use get_vm_cluster_network API.
18032
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/get_vm_cluster_network.py.html>`__ to see an example of how to use get_vm_cluster_network API.
17837
18033
  """
17838
18034
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
17839
18035
  required_arguments = ['exadataInfrastructureId', 'vmClusterNetworkId']
@@ -17934,7 +18130,7 @@ class DatabaseClient(object):
17934
18130
  :rtype: :class:`~oci.response.Response`
17935
18131
 
17936
18132
  :example:
17937
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/get_vm_cluster_patch.py.html>`__ to see an example of how to use get_vm_cluster_patch API.
18133
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/get_vm_cluster_patch.py.html>`__ to see an example of how to use get_vm_cluster_patch API.
17938
18134
  """
17939
18135
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
17940
18136
  required_arguments = ['vmClusterId', 'patchId']
@@ -18028,7 +18224,7 @@ class DatabaseClient(object):
18028
18224
  :rtype: :class:`~oci.response.Response`
18029
18225
 
18030
18226
  :example:
18031
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/get_vm_cluster_patch_history_entry.py.html>`__ to see an example of how to use get_vm_cluster_patch_history_entry API.
18227
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/get_vm_cluster_patch_history_entry.py.html>`__ to see an example of how to use get_vm_cluster_patch_history_entry API.
18032
18228
  """
18033
18229
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
18034
18230
  required_arguments = ['vmClusterId', 'patchHistoryEntryId']
@@ -18125,7 +18321,7 @@ class DatabaseClient(object):
18125
18321
  :rtype: :class:`~oci.response.Response`
18126
18322
 
18127
18323
  :example:
18128
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/get_vm_cluster_update.py.html>`__ to see an example of how to use get_vm_cluster_update API.
18324
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/get_vm_cluster_update.py.html>`__ to see an example of how to use get_vm_cluster_update API.
18129
18325
  """
18130
18326
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
18131
18327
  required_arguments = ['vmClusterId', 'updateId']
@@ -18229,7 +18425,7 @@ class DatabaseClient(object):
18229
18425
  :rtype: :class:`~oci.response.Response`
18230
18426
 
18231
18427
  :example:
18232
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/get_vm_cluster_update_history_entry.py.html>`__ to see an example of how to use get_vm_cluster_update_history_entry API.
18428
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/get_vm_cluster_update_history_entry.py.html>`__ to see an example of how to use get_vm_cluster_update_history_entry API.
18233
18429
  """
18234
18430
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
18235
18431
  required_arguments = ['vmClusterId', 'updateHistoryEntryId']
@@ -18330,7 +18526,7 @@ class DatabaseClient(object):
18330
18526
  :rtype: :class:`~oci.response.Response`
18331
18527
 
18332
18528
  :example:
18333
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/launch_autonomous_exadata_infrastructure.py.html>`__ to see an example of how to use launch_autonomous_exadata_infrastructure API.
18529
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/launch_autonomous_exadata_infrastructure.py.html>`__ to see an example of how to use launch_autonomous_exadata_infrastructure API.
18334
18530
  """
18335
18531
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
18336
18532
  required_arguments = []
@@ -18442,7 +18638,7 @@ class DatabaseClient(object):
18442
18638
  :rtype: :class:`~oci.response.Response`
18443
18639
 
18444
18640
  :example:
18445
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/launch_db_system.py.html>`__ to see an example of how to use launch_db_system API.
18641
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/launch_db_system.py.html>`__ to see an example of how to use launch_db_system API.
18446
18642
  """
18447
18643
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
18448
18644
  required_arguments = []
@@ -18560,7 +18756,7 @@ class DatabaseClient(object):
18560
18756
  :rtype: :class:`~oci.response.Response`
18561
18757
 
18562
18758
  :example:
18563
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/list_application_vips.py.html>`__ to see an example of how to use list_application_vips API.
18759
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/list_application_vips.py.html>`__ to see an example of how to use list_application_vips API.
18564
18760
  """
18565
18761
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
18566
18762
  required_arguments = ['compartmentId', 'cloudVmClusterId']
@@ -18688,7 +18884,7 @@ class DatabaseClient(object):
18688
18884
  :rtype: :class:`~oci.response.Response`
18689
18885
 
18690
18886
  :example:
18691
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/list_autonomous_container_database_dataguard_associations.py.html>`__ to see an example of how to use list_autonomous_container_database_dataguard_associations API.
18887
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/list_autonomous_container_database_dataguard_associations.py.html>`__ to see an example of how to use list_autonomous_container_database_dataguard_associations API.
18692
18888
  """
18693
18889
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
18694
18890
  required_arguments = ['autonomousContainerDatabaseId']
@@ -18809,7 +19005,7 @@ class DatabaseClient(object):
18809
19005
  :rtype: :class:`~oci.response.Response`
18810
19006
 
18811
19007
  :example:
18812
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/list_autonomous_container_database_versions.py.html>`__ to see an example of how to use list_autonomous_container_database_versions API.
19008
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/list_autonomous_container_database_versions.py.html>`__ to see an example of how to use list_autonomous_container_database_versions API.
18813
19009
  """
18814
19010
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
18815
19011
  required_arguments = ['compartmentId', 'serviceComponent']
@@ -18971,7 +19167,7 @@ class DatabaseClient(object):
18971
19167
  :rtype: :class:`~oci.response.Response`
18972
19168
 
18973
19169
  :example:
18974
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/list_autonomous_container_databases.py.html>`__ to see an example of how to use list_autonomous_container_databases API.
19170
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/list_autonomous_container_databases.py.html>`__ to see an example of how to use list_autonomous_container_databases API.
18975
19171
  """
18976
19172
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
18977
19173
  required_arguments = ['compartmentId']
@@ -19147,7 +19343,7 @@ class DatabaseClient(object):
19147
19343
  :rtype: :class:`~oci.response.Response`
19148
19344
 
19149
19345
  :example:
19150
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/list_autonomous_database_backups.py.html>`__ to see an example of how to use list_autonomous_database_backups API.
19346
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/list_autonomous_database_backups.py.html>`__ to see an example of how to use list_autonomous_database_backups API.
19151
19347
  """
19152
19348
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
19153
19349
  required_arguments = []
@@ -19281,7 +19477,7 @@ class DatabaseClient(object):
19281
19477
  :rtype: :class:`~oci.response.Response`
19282
19478
 
19283
19479
  :example:
19284
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/list_autonomous_database_character_sets.py.html>`__ to see an example of how to use list_autonomous_database_character_sets API.
19480
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/list_autonomous_database_character_sets.py.html>`__ to see an example of how to use list_autonomous_database_character_sets API.
19285
19481
  """
19286
19482
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
19287
19483
  required_arguments = []
@@ -19420,7 +19616,7 @@ class DatabaseClient(object):
19420
19616
  :rtype: :class:`~oci.response.Response`
19421
19617
 
19422
19618
  :example:
19423
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/list_autonomous_database_clones.py.html>`__ to see an example of how to use list_autonomous_database_clones API.
19619
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/list_autonomous_database_clones.py.html>`__ to see an example of how to use list_autonomous_database_clones API.
19424
19620
  """
19425
19621
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
19426
19622
  required_arguments = ['autonomousDatabaseId', 'compartmentId']
@@ -19570,7 +19766,7 @@ class DatabaseClient(object):
19570
19766
  :rtype: :class:`~oci.response.Response`
19571
19767
 
19572
19768
  :example:
19573
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/list_autonomous_database_dataguard_associations.py.html>`__ to see an example of how to use list_autonomous_database_dataguard_associations API.
19769
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/list_autonomous_database_dataguard_associations.py.html>`__ to see an example of how to use list_autonomous_database_dataguard_associations API.
19574
19770
  """
19575
19771
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
19576
19772
  required_arguments = ['autonomousDatabaseId']
@@ -19681,7 +19877,7 @@ class DatabaseClient(object):
19681
19877
  :rtype: :class:`~oci.response.Response`
19682
19878
 
19683
19879
  :example:
19684
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/list_autonomous_database_refreshable_clones.py.html>`__ to see an example of how to use list_autonomous_database_refreshable_clones API.
19880
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/list_autonomous_database_refreshable_clones.py.html>`__ to see an example of how to use list_autonomous_database_refreshable_clones API.
19685
19881
  """
19686
19882
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
19687
19883
  required_arguments = ['autonomousDatabaseId']
@@ -19844,7 +20040,7 @@ class DatabaseClient(object):
19844
20040
  :rtype: :class:`~oci.response.Response`
19845
20041
 
19846
20042
  :example:
19847
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/list_autonomous_databases.py.html>`__ to see an example of how to use list_autonomous_databases API.
20043
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/list_autonomous_databases.py.html>`__ to see an example of how to use list_autonomous_databases API.
19848
20044
  """
19849
20045
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
19850
20046
  required_arguments = ['compartmentId']
@@ -20019,7 +20215,7 @@ class DatabaseClient(object):
20019
20215
  :rtype: :class:`~oci.response.Response`
20020
20216
 
20021
20217
  :example:
20022
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/list_autonomous_db_preview_versions.py.html>`__ to see an example of how to use list_autonomous_db_preview_versions API.
20218
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/list_autonomous_db_preview_versions.py.html>`__ to see an example of how to use list_autonomous_db_preview_versions API.
20023
20219
  """
20024
20220
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
20025
20221
  required_arguments = ['compartmentId']
@@ -20150,7 +20346,7 @@ class DatabaseClient(object):
20150
20346
  :rtype: :class:`~oci.response.Response`
20151
20347
 
20152
20348
  :example:
20153
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/list_autonomous_db_versions.py.html>`__ to see an example of how to use list_autonomous_db_versions API.
20349
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/list_autonomous_db_versions.py.html>`__ to see an example of how to use list_autonomous_db_versions API.
20154
20350
  """
20155
20351
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
20156
20352
  required_arguments = ['compartmentId']
@@ -20274,7 +20470,7 @@ class DatabaseClient(object):
20274
20470
  :rtype: :class:`~oci.response.Response`
20275
20471
 
20276
20472
  :example:
20277
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/list_autonomous_exadata_infrastructure_shapes.py.html>`__ to see an example of how to use list_autonomous_exadata_infrastructure_shapes API.
20473
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/list_autonomous_exadata_infrastructure_shapes.py.html>`__ to see an example of how to use list_autonomous_exadata_infrastructure_shapes API.
20278
20474
  """
20279
20475
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
20280
20476
  required_arguments = ['availabilityDomain', 'compartmentId']
@@ -20398,7 +20594,7 @@ class DatabaseClient(object):
20398
20594
  :rtype: :class:`~oci.response.Response`
20399
20595
 
20400
20596
  :example:
20401
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/list_autonomous_exadata_infrastructures.py.html>`__ to see an example of how to use list_autonomous_exadata_infrastructures API.
20597
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/list_autonomous_exadata_infrastructures.py.html>`__ to see an example of how to use list_autonomous_exadata_infrastructures API.
20402
20598
  """
20403
20599
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
20404
20600
  required_arguments = ['compartmentId']
@@ -20539,7 +20735,7 @@ class DatabaseClient(object):
20539
20735
  :rtype: :class:`~oci.response.Response`
20540
20736
 
20541
20737
  :example:
20542
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/list_autonomous_virtual_machines.py.html>`__ to see an example of how to use list_autonomous_virtual_machines API.
20738
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/list_autonomous_virtual_machines.py.html>`__ to see an example of how to use list_autonomous_virtual_machines API.
20543
20739
  """
20544
20740
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
20545
20741
  required_arguments = ['compartmentId', 'autonomousVmClusterId']
@@ -20673,7 +20869,7 @@ class DatabaseClient(object):
20673
20869
  :rtype: :class:`~oci.response.Response`
20674
20870
 
20675
20871
  :example:
20676
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/list_autonomous_vm_clusters.py.html>`__ to see an example of how to use list_autonomous_vm_clusters API.
20872
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/list_autonomous_vm_clusters.py.html>`__ to see an example of how to use list_autonomous_vm_clusters API.
20677
20873
  """
20678
20874
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
20679
20875
  required_arguments = ['compartmentId']
@@ -20810,7 +21006,7 @@ class DatabaseClient(object):
20810
21006
  :rtype: :class:`~oci.response.Response`
20811
21007
 
20812
21008
  :example:
20813
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/list_backup_destination.py.html>`__ to see an example of how to use list_backup_destination API.
21009
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/list_backup_destination.py.html>`__ to see an example of how to use list_backup_destination API.
20814
21010
  """
20815
21011
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
20816
21012
  required_arguments = ['compartmentId']
@@ -20917,7 +21113,7 @@ class DatabaseClient(object):
20917
21113
  :rtype: :class:`~oci.response.Response`
20918
21114
 
20919
21115
  :example:
20920
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/list_backups.py.html>`__ to see an example of how to use list_backups API.
21116
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/list_backups.py.html>`__ to see an example of how to use list_backups API.
20921
21117
  """
20922
21118
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
20923
21119
  required_arguments = []
@@ -20985,6 +21181,128 @@ class DatabaseClient(object):
20985
21181
  api_reference_link=api_reference_link,
20986
21182
  required_arguments=required_arguments)
20987
21183
 
21184
+ def list_cloud_autonomous_vm_cluster_acd_resource_usage(self, cloud_autonomous_vm_cluster_id, **kwargs):
21185
+ """
21186
+ Gets the list of resource usage details for all the Cloud Autonomous Container Database
21187
+ in the specified Cloud Autonomous Exadata VM cluster.
21188
+
21189
+
21190
+ :param str cloud_autonomous_vm_cluster_id: (required)
21191
+ The Cloud VM cluster `OCID`__.
21192
+
21193
+ __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
21194
+
21195
+ :param str compartment_id: (optional)
21196
+ The compartment `OCID`__.
21197
+
21198
+ __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
21199
+
21200
+ :param str opc_request_id: (optional)
21201
+ Unique identifier for the request.
21202
+
21203
+ :param int limit: (optional)
21204
+ The maximum number of items to return per page.
21205
+
21206
+ :param str page: (optional)
21207
+ The pagination token to continue listing from.
21208
+
21209
+ :param obj retry_strategy: (optional)
21210
+ A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level.
21211
+
21212
+ This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it.
21213
+ The specifics of the default retry strategy are described `here <https://docs.oracle.com/en-us/iaas/tools/python/latest/sdk_behaviors/retries.html>`__.
21214
+
21215
+ To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`.
21216
+
21217
+ :param bool allow_control_chars: (optional)
21218
+ allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object.
21219
+ By default, the response will not allow control characters in strings
21220
+
21221
+ :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.database.models.AutonomousContainerDatabaseResourceUsage`
21222
+ :rtype: :class:`~oci.response.Response`
21223
+
21224
+ :example:
21225
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/list_cloud_autonomous_vm_cluster_acd_resource_usage.py.html>`__ to see an example of how to use list_cloud_autonomous_vm_cluster_acd_resource_usage API.
21226
+ """
21227
+ # Required path and query arguments. These are in camelCase to replace values in service endpoints.
21228
+ required_arguments = ['cloudAutonomousVmClusterId']
21229
+ resource_path = "/cloudAutonomousVmClusters/{cloudAutonomousVmClusterId}/acdResourceUsage"
21230
+ method = "GET"
21231
+ operation_name = "list_cloud_autonomous_vm_cluster_acd_resource_usage"
21232
+ api_reference_link = "https://docs.oracle.com/iaas/api/#/en/database/20160918/CloudAutonomousVmCluster/ListCloudAutonomousVmClusterAcdResourceUsage"
21233
+
21234
+ # Don't accept unknown kwargs
21235
+ expected_kwargs = [
21236
+ "allow_control_chars",
21237
+ "retry_strategy",
21238
+ "compartment_id",
21239
+ "opc_request_id",
21240
+ "limit",
21241
+ "page"
21242
+ ]
21243
+ extra_kwargs = [_key for _key in six.iterkeys(kwargs) if _key not in expected_kwargs]
21244
+ if extra_kwargs:
21245
+ raise ValueError(
21246
+ "list_cloud_autonomous_vm_cluster_acd_resource_usage got unknown kwargs: {!r}".format(extra_kwargs))
21247
+
21248
+ path_params = {
21249
+ "cloudAutonomousVmClusterId": cloud_autonomous_vm_cluster_id
21250
+ }
21251
+
21252
+ path_params = {k: v for (k, v) in six.iteritems(path_params) if v is not missing}
21253
+
21254
+ for (k, v) in six.iteritems(path_params):
21255
+ if v is None or (isinstance(v, six.string_types) and len(v.strip()) == 0):
21256
+ raise ValueError('Parameter {} cannot be None, whitespace or empty string'.format(k))
21257
+
21258
+ query_params = {
21259
+ "compartmentId": kwargs.get("compartment_id", missing),
21260
+ "limit": kwargs.get("limit", missing),
21261
+ "page": kwargs.get("page", missing)
21262
+ }
21263
+ query_params = {k: v for (k, v) in six.iteritems(query_params) if v is not missing and v is not None}
21264
+
21265
+ header_params = {
21266
+ "accept": "application/json",
21267
+ "content-type": "application/json",
21268
+ "opc-request-id": kwargs.get("opc_request_id", missing)
21269
+ }
21270
+ header_params = {k: v for (k, v) in six.iteritems(header_params) if v is not missing and v is not None}
21271
+
21272
+ retry_strategy = self.base_client.get_preferred_retry_strategy(
21273
+ operation_retry_strategy=kwargs.get('retry_strategy'),
21274
+ client_retry_strategy=self.retry_strategy
21275
+ )
21276
+
21277
+ if retry_strategy:
21278
+ if not isinstance(retry_strategy, retry.NoneRetryStrategy):
21279
+ self.base_client.add_opc_client_retries_header(header_params)
21280
+ retry_strategy.add_circuit_breaker_callback(self.circuit_breaker_callback)
21281
+ return retry_strategy.make_retrying_call(
21282
+ self.base_client.call_api,
21283
+ resource_path=resource_path,
21284
+ method=method,
21285
+ path_params=path_params,
21286
+ query_params=query_params,
21287
+ header_params=header_params,
21288
+ response_type="list[AutonomousContainerDatabaseResourceUsage]",
21289
+ allow_control_chars=kwargs.get('allow_control_chars'),
21290
+ operation_name=operation_name,
21291
+ api_reference_link=api_reference_link,
21292
+ required_arguments=required_arguments)
21293
+ else:
21294
+ return self.base_client.call_api(
21295
+ resource_path=resource_path,
21296
+ method=method,
21297
+ path_params=path_params,
21298
+ query_params=query_params,
21299
+ header_params=header_params,
21300
+ response_type="list[AutonomousContainerDatabaseResourceUsage]",
21301
+ allow_control_chars=kwargs.get('allow_control_chars'),
21302
+ operation_name=operation_name,
21303
+ api_reference_link=api_reference_link,
21304
+ required_arguments=required_arguments)
21305
+
20988
21306
  def list_cloud_autonomous_vm_clusters(self, compartment_id, **kwargs):
20989
21307
  """
20990
21308
  Lists Autonomous Exadata VM clusters in the Oracle cloud. For Exadata Cloud@Customer systems, see :func:`list_autonomous_vm_clusters`.
@@ -21044,7 +21362,7 @@ class DatabaseClient(object):
21044
21362
  :rtype: :class:`~oci.response.Response`
21045
21363
 
21046
21364
  :example:
21047
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/list_cloud_autonomous_vm_clusters.py.html>`__ to see an example of how to use list_cloud_autonomous_vm_clusters API.
21365
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/list_cloud_autonomous_vm_clusters.py.html>`__ to see an example of how to use list_cloud_autonomous_vm_clusters API.
21048
21366
  """
21049
21367
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
21050
21368
  required_arguments = ['compartmentId']
@@ -21198,7 +21516,7 @@ class DatabaseClient(object):
21198
21516
  :rtype: :class:`~oci.response.Response`
21199
21517
 
21200
21518
  :example:
21201
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/list_cloud_exadata_infrastructures.py.html>`__ to see an example of how to use list_cloud_exadata_infrastructures API.
21519
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/list_cloud_exadata_infrastructures.py.html>`__ to see an example of how to use list_cloud_exadata_infrastructures API.
21202
21520
  """
21203
21521
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
21204
21522
  required_arguments = ['compartmentId']
@@ -21335,7 +21653,7 @@ class DatabaseClient(object):
21335
21653
  :rtype: :class:`~oci.response.Response`
21336
21654
 
21337
21655
  :example:
21338
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/list_cloud_vm_cluster_update_history_entries.py.html>`__ to see an example of how to use list_cloud_vm_cluster_update_history_entries API.
21656
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/list_cloud_vm_cluster_update_history_entries.py.html>`__ to see an example of how to use list_cloud_vm_cluster_update_history_entries API.
21339
21657
  """
21340
21658
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
21341
21659
  required_arguments = ['cloudVmClusterId']
@@ -21463,7 +21781,7 @@ class DatabaseClient(object):
21463
21781
  :rtype: :class:`~oci.response.Response`
21464
21782
 
21465
21783
  :example:
21466
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/list_cloud_vm_cluster_updates.py.html>`__ to see an example of how to use list_cloud_vm_cluster_updates API.
21784
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/list_cloud_vm_cluster_updates.py.html>`__ to see an example of how to use list_cloud_vm_cluster_updates API.
21467
21785
  """
21468
21786
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
21469
21787
  required_arguments = ['cloudVmClusterId']
@@ -21607,7 +21925,7 @@ class DatabaseClient(object):
21607
21925
  :rtype: :class:`~oci.response.Response`
21608
21926
 
21609
21927
  :example:
21610
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/list_cloud_vm_clusters.py.html>`__ to see an example of how to use list_cloud_vm_clusters API.
21928
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/list_cloud_vm_clusters.py.html>`__ to see an example of how to use list_cloud_vm_clusters API.
21611
21929
  """
21612
21930
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
21613
21931
  required_arguments = ['compartmentId']
@@ -21732,7 +22050,7 @@ class DatabaseClient(object):
21732
22050
  :rtype: :class:`~oci.response.Response`
21733
22051
 
21734
22052
  :example:
21735
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/list_console_connections.py.html>`__ to see an example of how to use list_console_connections API.
22053
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/list_console_connections.py.html>`__ to see an example of how to use list_console_connections API.
21736
22054
  """
21737
22055
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
21738
22056
  required_arguments = ['dbNodeId']
@@ -21831,7 +22149,7 @@ class DatabaseClient(object):
21831
22149
  :rtype: :class:`~oci.response.Response`
21832
22150
 
21833
22151
  :example:
21834
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/list_container_database_patches.py.html>`__ to see an example of how to use list_container_database_patches API.
22152
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/list_container_database_patches.py.html>`__ to see an example of how to use list_container_database_patches API.
21835
22153
  """
21836
22154
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
21837
22155
  required_arguments = ['autonomousContainerDatabaseId', 'compartmentId']
@@ -21940,7 +22258,7 @@ class DatabaseClient(object):
21940
22258
  :rtype: :class:`~oci.response.Response`
21941
22259
 
21942
22260
  :example:
21943
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/list_data_guard_associations.py.html>`__ to see an example of how to use list_data_guard_associations API.
22261
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/list_data_guard_associations.py.html>`__ to see an example of how to use list_data_guard_associations API.
21944
22262
  """
21945
22263
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
21946
22264
  required_arguments = ['databaseId']
@@ -22079,7 +22397,7 @@ class DatabaseClient(object):
22079
22397
  :rtype: :class:`~oci.response.Response`
22080
22398
 
22081
22399
  :example:
22082
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/list_database_software_images.py.html>`__ to see an example of how to use list_database_software_images API.
22400
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/list_database_software_images.py.html>`__ to see an example of how to use list_database_software_images API.
22083
22401
  """
22084
22402
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
22085
22403
  required_arguments = ['compartmentId']
@@ -22248,7 +22566,7 @@ class DatabaseClient(object):
22248
22566
  :rtype: :class:`~oci.response.Response`
22249
22567
 
22250
22568
  :example:
22251
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/list_database_upgrade_history_entries.py.html>`__ to see an example of how to use list_database_upgrade_history_entries API.
22569
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/list_database_upgrade_history_entries.py.html>`__ to see an example of how to use list_database_upgrade_history_entries API.
22252
22570
  """
22253
22571
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
22254
22572
  required_arguments = ['databaseId']
@@ -22423,7 +22741,7 @@ class DatabaseClient(object):
22423
22741
  :rtype: :class:`~oci.response.Response`
22424
22742
 
22425
22743
  :example:
22426
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/list_databases.py.html>`__ to see an example of how to use list_databases API.
22744
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/list_databases.py.html>`__ to see an example of how to use list_databases API.
22427
22745
  """
22428
22746
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
22429
22747
  required_arguments = ['compartmentId']
@@ -22553,7 +22871,7 @@ class DatabaseClient(object):
22553
22871
  :rtype: :class:`~oci.response.Response`
22554
22872
 
22555
22873
  :example:
22556
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/list_db_home_patch_history_entries.py.html>`__ to see an example of how to use list_db_home_patch_history_entries API.
22874
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/list_db_home_patch_history_entries.py.html>`__ to see an example of how to use list_db_home_patch_history_entries API.
22557
22875
  """
22558
22876
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
22559
22877
  required_arguments = ['dbHomeId']
@@ -22661,7 +22979,7 @@ class DatabaseClient(object):
22661
22979
  :rtype: :class:`~oci.response.Response`
22662
22980
 
22663
22981
  :example:
22664
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/list_db_home_patches.py.html>`__ to see an example of how to use list_db_home_patches API.
22982
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/list_db_home_patches.py.html>`__ to see an example of how to use list_db_home_patches API.
22665
22983
  """
22666
22984
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
22667
22985
  required_arguments = ['dbHomeId']
@@ -22805,7 +23123,7 @@ class DatabaseClient(object):
22805
23123
  :rtype: :class:`~oci.response.Response`
22806
23124
 
22807
23125
  :example:
22808
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/list_db_homes.py.html>`__ to see an example of how to use list_db_homes API.
23126
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/list_db_homes.py.html>`__ to see an example of how to use list_db_homes API.
22809
23127
  """
22810
23128
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
22811
23129
  required_arguments = ['compartmentId']
@@ -22969,7 +23287,7 @@ class DatabaseClient(object):
22969
23287
  :rtype: :class:`~oci.response.Response`
22970
23288
 
22971
23289
  :example:
22972
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/list_db_nodes.py.html>`__ to see an example of how to use list_db_nodes API.
23290
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/list_db_nodes.py.html>`__ to see an example of how to use list_db_nodes API.
22973
23291
  """
22974
23292
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
22975
23293
  required_arguments = ['compartmentId']
@@ -23125,7 +23443,7 @@ class DatabaseClient(object):
23125
23443
  :rtype: :class:`~oci.response.Response`
23126
23444
 
23127
23445
  :example:
23128
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/list_db_servers.py.html>`__ to see an example of how to use list_db_servers API.
23446
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/list_db_servers.py.html>`__ to see an example of how to use list_db_servers API.
23129
23447
  """
23130
23448
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
23131
23449
  required_arguments = ['compartmentId', 'exadataInfrastructureId']
@@ -23250,7 +23568,7 @@ class DatabaseClient(object):
23250
23568
  :rtype: :class:`~oci.response.Response`
23251
23569
 
23252
23570
  :example:
23253
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/list_db_system_compute_performances.py.html>`__ to see an example of how to use list_db_system_compute_performances API.
23571
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/list_db_system_compute_performances.py.html>`__ to see an example of how to use list_db_system_compute_performances API.
23254
23572
  """
23255
23573
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
23256
23574
  required_arguments = []
@@ -23347,7 +23665,7 @@ class DatabaseClient(object):
23347
23665
  :rtype: :class:`~oci.response.Response`
23348
23666
 
23349
23667
  :example:
23350
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/list_db_system_patch_history_entries.py.html>`__ to see an example of how to use list_db_system_patch_history_entries API.
23668
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/list_db_system_patch_history_entries.py.html>`__ to see an example of how to use list_db_system_patch_history_entries API.
23351
23669
  """
23352
23670
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
23353
23671
  required_arguments = ['dbSystemId']
@@ -23455,7 +23773,7 @@ class DatabaseClient(object):
23455
23773
  :rtype: :class:`~oci.response.Response`
23456
23774
 
23457
23775
  :example:
23458
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/list_db_system_patches.py.html>`__ to see an example of how to use list_db_system_patches API.
23776
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/list_db_system_patches.py.html>`__ to see an example of how to use list_db_system_patches API.
23459
23777
  """
23460
23778
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
23461
23779
  required_arguments = ['dbSystemId']
@@ -23566,7 +23884,7 @@ class DatabaseClient(object):
23566
23884
  :rtype: :class:`~oci.response.Response`
23567
23885
 
23568
23886
  :example:
23569
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/list_db_system_shapes.py.html>`__ to see an example of how to use list_db_system_shapes API.
23887
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/list_db_system_shapes.py.html>`__ to see an example of how to use list_db_system_shapes API.
23570
23888
  """
23571
23889
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
23572
23890
  required_arguments = ['compartmentId']
@@ -23667,7 +23985,7 @@ class DatabaseClient(object):
23667
23985
  :rtype: :class:`~oci.response.Response`
23668
23986
 
23669
23987
  :example:
23670
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/list_db_system_storage_performances.py.html>`__ to see an example of how to use list_db_system_storage_performances API.
23988
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/list_db_system_storage_performances.py.html>`__ to see an example of how to use list_db_system_storage_performances API.
23671
23989
  """
23672
23990
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
23673
23991
  required_arguments = ['storageManagement']
@@ -23794,7 +24112,7 @@ class DatabaseClient(object):
23794
24112
  :rtype: :class:`~oci.response.Response`
23795
24113
 
23796
24114
  :example:
23797
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/list_db_system_upgrade_history_entries.py.html>`__ to see an example of how to use list_db_system_upgrade_history_entries API.
24115
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/list_db_system_upgrade_history_entries.py.html>`__ to see an example of how to use list_db_system_upgrade_history_entries API.
23798
24116
  """
23799
24117
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
23800
24118
  required_arguments = ['dbSystemId']
@@ -23976,7 +24294,7 @@ class DatabaseClient(object):
23976
24294
  :rtype: :class:`~oci.response.Response`
23977
24295
 
23978
24296
  :example:
23979
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/list_db_systems.py.html>`__ to see an example of how to use list_db_systems API.
24297
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/list_db_systems.py.html>`__ to see an example of how to use list_db_systems API.
23980
24298
  """
23981
24299
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
23982
24300
  required_arguments = ['compartmentId']
@@ -24127,7 +24445,7 @@ class DatabaseClient(object):
24127
24445
  :rtype: :class:`~oci.response.Response`
24128
24446
 
24129
24447
  :example:
24130
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/list_db_versions.py.html>`__ to see an example of how to use list_db_versions API.
24448
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/list_db_versions.py.html>`__ to see an example of how to use list_db_versions API.
24131
24449
  """
24132
24450
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
24133
24451
  required_arguments = ['compartmentId']
@@ -24268,7 +24586,7 @@ class DatabaseClient(object):
24268
24586
  :rtype: :class:`~oci.response.Response`
24269
24587
 
24270
24588
  :example:
24271
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/list_exadata_infrastructures.py.html>`__ to see an example of how to use list_exadata_infrastructures API.
24589
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/list_exadata_infrastructures.py.html>`__ to see an example of how to use list_exadata_infrastructures API.
24272
24590
  """
24273
24591
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
24274
24592
  required_arguments = ['compartmentId']
@@ -24431,7 +24749,7 @@ class DatabaseClient(object):
24431
24749
  :rtype: :class:`~oci.response.Response`
24432
24750
 
24433
24751
  :example:
24434
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/list_external_container_databases.py.html>`__ to see an example of how to use list_external_container_databases API.
24752
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/list_external_container_databases.py.html>`__ to see an example of how to use list_external_container_databases API.
24435
24753
  """
24436
24754
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
24437
24755
  required_arguments = ['compartmentId']
@@ -24589,7 +24907,7 @@ class DatabaseClient(object):
24589
24907
  :rtype: :class:`~oci.response.Response`
24590
24908
 
24591
24909
  :example:
24592
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/list_external_database_connectors.py.html>`__ to see an example of how to use list_external_database_connectors API.
24910
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/list_external_database_connectors.py.html>`__ to see an example of how to use list_external_database_connectors API.
24593
24911
  """
24594
24912
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
24595
24913
  required_arguments = ['compartmentId', 'externalDatabaseId']
@@ -24743,7 +25061,7 @@ class DatabaseClient(object):
24743
25061
  :rtype: :class:`~oci.response.Response`
24744
25062
 
24745
25063
  :example:
24746
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/list_external_non_container_databases.py.html>`__ to see an example of how to use list_external_non_container_databases API.
25064
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/list_external_non_container_databases.py.html>`__ to see an example of how to use list_external_non_container_databases API.
24747
25065
  """
24748
25066
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
24749
25067
  required_arguments = ['compartmentId']
@@ -24902,7 +25220,7 @@ class DatabaseClient(object):
24902
25220
  :rtype: :class:`~oci.response.Response`
24903
25221
 
24904
25222
  :example:
24905
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/list_external_pluggable_databases.py.html>`__ to see an example of how to use list_external_pluggable_databases API.
25223
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/list_external_pluggable_databases.py.html>`__ to see an example of how to use list_external_pluggable_databases API.
24906
25224
  """
24907
25225
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
24908
25226
  required_arguments = ['compartmentId']
@@ -25046,7 +25364,7 @@ class DatabaseClient(object):
25046
25364
  :rtype: :class:`~oci.response.Response`
25047
25365
 
25048
25366
  :example:
25049
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/list_flex_components.py.html>`__ to see an example of how to use list_flex_components API.
25367
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/list_flex_components.py.html>`__ to see an example of how to use list_flex_components API.
25050
25368
  """
25051
25369
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
25052
25370
  required_arguments = ['compartmentId']
@@ -25171,7 +25489,7 @@ class DatabaseClient(object):
25171
25489
  :rtype: :class:`~oci.response.Response`
25172
25490
 
25173
25491
  :example:
25174
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/list_gi_versions.py.html>`__ to see an example of how to use list_gi_versions API.
25492
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/list_gi_versions.py.html>`__ to see an example of how to use list_gi_versions API.
25175
25493
  """
25176
25494
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
25177
25495
  required_arguments = ['compartmentId']
@@ -25282,7 +25600,7 @@ class DatabaseClient(object):
25282
25600
  :rtype: :class:`~oci.response.Response`
25283
25601
 
25284
25602
  :example:
25285
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/list_key_stores.py.html>`__ to see an example of how to use list_key_stores API.
25603
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/list_key_stores.py.html>`__ to see an example of how to use list_key_stores API.
25286
25604
  """
25287
25605
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
25288
25606
  required_arguments = ['compartmentId']
@@ -25420,7 +25738,7 @@ class DatabaseClient(object):
25420
25738
  :rtype: :class:`~oci.response.Response`
25421
25739
 
25422
25740
  :example:
25423
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/list_maintenance_run_history.py.html>`__ to see an example of how to use list_maintenance_run_history API.
25741
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/list_maintenance_run_history.py.html>`__ to see an example of how to use list_maintenance_run_history API.
25424
25742
  """
25425
25743
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
25426
25744
  required_arguments = ['compartmentId']
@@ -25613,7 +25931,7 @@ class DatabaseClient(object):
25613
25931
  :rtype: :class:`~oci.response.Response`
25614
25932
 
25615
25933
  :example:
25616
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/list_maintenance_runs.py.html>`__ to see an example of how to use list_maintenance_runs API.
25934
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/list_maintenance_runs.py.html>`__ to see an example of how to use list_maintenance_runs API.
25617
25935
  """
25618
25936
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
25619
25937
  required_arguments = ['compartmentId']
@@ -25789,7 +26107,7 @@ class DatabaseClient(object):
25789
26107
  :rtype: :class:`~oci.response.Response`
25790
26108
 
25791
26109
  :example:
25792
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/list_oneoff_patches.py.html>`__ to see an example of how to use list_oneoff_patches API.
26110
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/list_oneoff_patches.py.html>`__ to see an example of how to use list_oneoff_patches API.
25793
26111
  """
25794
26112
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
25795
26113
  required_arguments = ['compartmentId']
@@ -25941,7 +26259,7 @@ class DatabaseClient(object):
25941
26259
  :rtype: :class:`~oci.response.Response`
25942
26260
 
25943
26261
  :example:
25944
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/list_pdb_conversion_history_entries.py.html>`__ to see an example of how to use list_pdb_conversion_history_entries API.
26262
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/list_pdb_conversion_history_entries.py.html>`__ to see an example of how to use list_pdb_conversion_history_entries API.
25945
26263
  """
25946
26264
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
25947
26265
  required_arguments = ['databaseId']
@@ -26111,7 +26429,7 @@ class DatabaseClient(object):
26111
26429
  :rtype: :class:`~oci.response.Response`
26112
26430
 
26113
26431
  :example:
26114
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/list_pluggable_databases.py.html>`__ to see an example of how to use list_pluggable_databases API.
26432
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/list_pluggable_databases.py.html>`__ to see an example of how to use list_pluggable_databases API.
26115
26433
  """
26116
26434
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
26117
26435
  required_arguments = []
@@ -26266,7 +26584,7 @@ class DatabaseClient(object):
26266
26584
  :rtype: :class:`~oci.response.Response`
26267
26585
 
26268
26586
  :example:
26269
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/list_vm_cluster_networks.py.html>`__ to see an example of how to use list_vm_cluster_networks API.
26587
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/list_vm_cluster_networks.py.html>`__ to see an example of how to use list_vm_cluster_networks API.
26270
26588
  """
26271
26589
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
26272
26590
  required_arguments = ['exadataInfrastructureId', 'compartmentId']
@@ -26407,7 +26725,7 @@ class DatabaseClient(object):
26407
26725
  :rtype: :class:`~oci.response.Response`
26408
26726
 
26409
26727
  :example:
26410
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/list_vm_cluster_patch_history_entries.py.html>`__ to see an example of how to use list_vm_cluster_patch_history_entries API.
26728
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/list_vm_cluster_patch_history_entries.py.html>`__ to see an example of how to use list_vm_cluster_patch_history_entries API.
26411
26729
  """
26412
26730
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
26413
26731
  required_arguments = ['vmClusterId']
@@ -26515,7 +26833,7 @@ class DatabaseClient(object):
26515
26833
  :rtype: :class:`~oci.response.Response`
26516
26834
 
26517
26835
  :example:
26518
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/list_vm_cluster_patches.py.html>`__ to see an example of how to use list_vm_cluster_patches API.
26836
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/list_vm_cluster_patches.py.html>`__ to see an example of how to use list_vm_cluster_patches API.
26519
26837
  """
26520
26838
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
26521
26839
  required_arguments = ['vmClusterId']
@@ -26636,7 +26954,7 @@ class DatabaseClient(object):
26636
26954
  :rtype: :class:`~oci.response.Response`
26637
26955
 
26638
26956
  :example:
26639
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/list_vm_cluster_update_history_entries.py.html>`__ to see an example of how to use list_vm_cluster_update_history_entries API.
26957
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/list_vm_cluster_update_history_entries.py.html>`__ to see an example of how to use list_vm_cluster_update_history_entries API.
26640
26958
  """
26641
26959
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
26642
26960
  required_arguments = ['vmClusterId']
@@ -26778,7 +27096,7 @@ class DatabaseClient(object):
26778
27096
  :rtype: :class:`~oci.response.Response`
26779
27097
 
26780
27098
  :example:
26781
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/list_vm_cluster_updates.py.html>`__ to see an example of how to use list_vm_cluster_updates API.
27099
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/list_vm_cluster_updates.py.html>`__ to see an example of how to use list_vm_cluster_updates API.
26782
27100
  """
26783
27101
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
26784
27102
  required_arguments = ['vmClusterId']
@@ -26932,7 +27250,7 @@ class DatabaseClient(object):
26932
27250
  :rtype: :class:`~oci.response.Response`
26933
27251
 
26934
27252
  :example:
26935
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/list_vm_clusters.py.html>`__ to see an example of how to use list_vm_clusters API.
27253
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/list_vm_clusters.py.html>`__ to see an example of how to use list_vm_clusters API.
26936
27254
  """
26937
27255
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
26938
27256
  required_arguments = ['compartmentId']
@@ -27075,7 +27393,7 @@ class DatabaseClient(object):
27075
27393
  :rtype: :class:`~oci.response.Response`
27076
27394
 
27077
27395
  :example:
27078
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/local_clone_pluggable_database.py.html>`__ to see an example of how to use local_clone_pluggable_database API.
27396
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/local_clone_pluggable_database.py.html>`__ to see an example of how to use local_clone_pluggable_database API.
27079
27397
  """
27080
27398
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
27081
27399
  required_arguments = ['pluggableDatabaseId']
@@ -27195,7 +27513,7 @@ class DatabaseClient(object):
27195
27513
  :rtype: :class:`~oci.response.Response`
27196
27514
 
27197
27515
  :example:
27198
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/migrate_exadata_db_system_resource_model.py.html>`__ to see an example of how to use migrate_exadata_db_system_resource_model API.
27516
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/migrate_exadata_db_system_resource_model.py.html>`__ to see an example of how to use migrate_exadata_db_system_resource_model API.
27199
27517
  """
27200
27518
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
27201
27519
  required_arguments = ['dbSystemId']
@@ -27315,7 +27633,7 @@ class DatabaseClient(object):
27315
27633
  :rtype: :class:`~oci.response.Response`
27316
27634
 
27317
27635
  :example:
27318
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/migrate_vault_key.py.html>`__ to see an example of how to use migrate_vault_key API.
27636
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/migrate_vault_key.py.html>`__ to see an example of how to use migrate_vault_key API.
27319
27637
  """
27320
27638
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
27321
27639
  required_arguments = ['databaseId']
@@ -27435,7 +27753,7 @@ class DatabaseClient(object):
27435
27753
  :rtype: :class:`~oci.response.Response`
27436
27754
 
27437
27755
  :example:
27438
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/modify_database_management.py.html>`__ to see an example of how to use modify_database_management API.
27756
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/modify_database_management.py.html>`__ to see an example of how to use modify_database_management API.
27439
27757
  """
27440
27758
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
27441
27759
  required_arguments = ['databaseId']
@@ -27555,7 +27873,7 @@ class DatabaseClient(object):
27555
27873
  :rtype: :class:`~oci.response.Response`
27556
27874
 
27557
27875
  :example:
27558
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/modify_pluggable_database_management.py.html>`__ to see an example of how to use modify_pluggable_database_management API.
27876
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/modify_pluggable_database_management.py.html>`__ to see an example of how to use modify_pluggable_database_management API.
27559
27877
  """
27560
27878
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
27561
27879
  required_arguments = ['pluggableDatabaseId']
@@ -27663,7 +27981,7 @@ class DatabaseClient(object):
27663
27981
  :rtype: :class:`~oci.response.Response`
27664
27982
 
27665
27983
  :example:
27666
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/register_autonomous_database_data_safe.py.html>`__ to see an example of how to use register_autonomous_database_data_safe API.
27984
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/register_autonomous_database_data_safe.py.html>`__ to see an example of how to use register_autonomous_database_data_safe API.
27667
27985
  """
27668
27986
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
27669
27987
  required_arguments = ['autonomousDatabaseId']
@@ -27769,7 +28087,7 @@ class DatabaseClient(object):
27769
28087
  :rtype: :class:`~oci.response.Response`
27770
28088
 
27771
28089
  :example:
27772
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/reinstate_autonomous_container_database_dataguard_association.py.html>`__ to see an example of how to use reinstate_autonomous_container_database_dataguard_association API.
28090
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/reinstate_autonomous_container_database_dataguard_association.py.html>`__ to see an example of how to use reinstate_autonomous_container_database_dataguard_association API.
27773
28091
  """
27774
28092
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
27775
28093
  required_arguments = ['autonomousContainerDatabaseId', 'autonomousContainerDatabaseDataguardAssociationId']
@@ -27878,7 +28196,7 @@ class DatabaseClient(object):
27878
28196
  :rtype: :class:`~oci.response.Response`
27879
28197
 
27880
28198
  :example:
27881
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/reinstate_data_guard_association.py.html>`__ to see an example of how to use reinstate_data_guard_association API.
28199
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/reinstate_data_guard_association.py.html>`__ to see an example of how to use reinstate_data_guard_association API.
27882
28200
  """
27883
28201
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
27884
28202
  required_arguments = ['databaseId', 'dataGuardAssociationId']
@@ -27995,7 +28313,7 @@ class DatabaseClient(object):
27995
28313
  :rtype: :class:`~oci.response.Response`
27996
28314
 
27997
28315
  :example:
27998
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/remote_clone_pluggable_database.py.html>`__ to see an example of how to use remote_clone_pluggable_database API.
28316
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/remote_clone_pluggable_database.py.html>`__ to see an example of how to use remote_clone_pluggable_database API.
27999
28317
  """
28000
28318
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
28001
28319
  required_arguments = ['pluggableDatabaseId']
@@ -28115,7 +28433,7 @@ class DatabaseClient(object):
28115
28433
  :rtype: :class:`~oci.response.Response`
28116
28434
 
28117
28435
  :example:
28118
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/remove_virtual_machine_from_cloud_vm_cluster.py.html>`__ to see an example of how to use remove_virtual_machine_from_cloud_vm_cluster API.
28436
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/remove_virtual_machine_from_cloud_vm_cluster.py.html>`__ to see an example of how to use remove_virtual_machine_from_cloud_vm_cluster API.
28119
28437
  """
28120
28438
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
28121
28439
  required_arguments = ['cloudVmClusterId']
@@ -28235,7 +28553,7 @@ class DatabaseClient(object):
28235
28553
  :rtype: :class:`~oci.response.Response`
28236
28554
 
28237
28555
  :example:
28238
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/remove_virtual_machine_from_vm_cluster.py.html>`__ to see an example of how to use remove_virtual_machine_from_vm_cluster API.
28556
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/remove_virtual_machine_from_vm_cluster.py.html>`__ to see an example of how to use remove_virtual_machine_from_vm_cluster API.
28239
28557
  """
28240
28558
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
28241
28559
  required_arguments = ['vmClusterId']
@@ -28361,7 +28679,7 @@ class DatabaseClient(object):
28361
28679
  :rtype: :class:`~oci.response.Response`
28362
28680
 
28363
28681
  :example:
28364
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/resize_vm_cluster_network.py.html>`__ to see an example of how to use resize_vm_cluster_network API.
28682
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/resize_vm_cluster_network.py.html>`__ to see an example of how to use resize_vm_cluster_network API.
28365
28683
  """
28366
28684
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
28367
28685
  required_arguments = ['exadataInfrastructureId', 'vmClusterNetworkId']
@@ -28472,7 +28790,7 @@ class DatabaseClient(object):
28472
28790
  :rtype: :class:`~oci.response.Response`
28473
28791
 
28474
28792
  :example:
28475
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/restart_autonomous_container_database.py.html>`__ to see an example of how to use restart_autonomous_container_database API.
28793
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/restart_autonomous_container_database.py.html>`__ to see an example of how to use restart_autonomous_container_database API.
28476
28794
  """
28477
28795
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
28478
28796
  required_arguments = ['autonomousContainerDatabaseId']
@@ -28574,7 +28892,7 @@ class DatabaseClient(object):
28574
28892
  :rtype: :class:`~oci.response.Response`
28575
28893
 
28576
28894
  :example:
28577
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/restart_autonomous_database.py.html>`__ to see an example of how to use restart_autonomous_database API.
28895
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/restart_autonomous_database.py.html>`__ to see an example of how to use restart_autonomous_database API.
28578
28896
  """
28579
28897
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
28580
28898
  required_arguments = ['autonomousDatabaseId']
@@ -28677,7 +28995,7 @@ class DatabaseClient(object):
28677
28995
  :rtype: :class:`~oci.response.Response`
28678
28996
 
28679
28997
  :example:
28680
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/restore_autonomous_database.py.html>`__ to see an example of how to use restore_autonomous_database API.
28998
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/restore_autonomous_database.py.html>`__ to see an example of how to use restore_autonomous_database API.
28681
28999
  """
28682
29000
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
28683
29001
  required_arguments = ['autonomousDatabaseId']
@@ -28782,7 +29100,7 @@ class DatabaseClient(object):
28782
29100
  :rtype: :class:`~oci.response.Response`
28783
29101
 
28784
29102
  :example:
28785
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/restore_database.py.html>`__ to see an example of how to use restore_database API.
29103
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/restore_database.py.html>`__ to see an example of how to use restore_database API.
28786
29104
  """
28787
29105
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
28788
29106
  required_arguments = ['databaseId']
@@ -28896,7 +29214,7 @@ class DatabaseClient(object):
28896
29214
  :rtype: :class:`~oci.response.Response`
28897
29215
 
28898
29216
  :example:
28899
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/rotate_autonomous_container_database_encryption_key.py.html>`__ to see an example of how to use rotate_autonomous_container_database_encryption_key API.
29217
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/rotate_autonomous_container_database_encryption_key.py.html>`__ to see an example of how to use rotate_autonomous_container_database_encryption_key API.
28900
29218
  """
28901
29219
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
28902
29220
  required_arguments = ['autonomousContainerDatabaseId']
@@ -29013,7 +29331,7 @@ class DatabaseClient(object):
29013
29331
  :rtype: :class:`~oci.response.Response`
29014
29332
 
29015
29333
  :example:
29016
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/rotate_autonomous_database_encryption_key.py.html>`__ to see an example of how to use rotate_autonomous_database_encryption_key API.
29334
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/rotate_autonomous_database_encryption_key.py.html>`__ to see an example of how to use rotate_autonomous_database_encryption_key API.
29017
29335
  """
29018
29336
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
29019
29337
  required_arguments = ['autonomousDatabaseId']
@@ -29131,7 +29449,7 @@ class DatabaseClient(object):
29131
29449
  :rtype: :class:`~oci.response.Response`
29132
29450
 
29133
29451
  :example:
29134
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/rotate_autonomous_vm_cluster_ords_certs.py.html>`__ to see an example of how to use rotate_autonomous_vm_cluster_ords_certs API.
29452
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/rotate_autonomous_vm_cluster_ords_certs.py.html>`__ to see an example of how to use rotate_autonomous_vm_cluster_ords_certs API.
29135
29453
  """
29136
29454
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
29137
29455
  required_arguments = ['autonomousVmClusterId']
@@ -29249,7 +29567,7 @@ class DatabaseClient(object):
29249
29567
  :rtype: :class:`~oci.response.Response`
29250
29568
 
29251
29569
  :example:
29252
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/rotate_autonomous_vm_cluster_ssl_certs.py.html>`__ to see an example of how to use rotate_autonomous_vm_cluster_ssl_certs API.
29570
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/rotate_autonomous_vm_cluster_ssl_certs.py.html>`__ to see an example of how to use rotate_autonomous_vm_cluster_ssl_certs API.
29253
29571
  """
29254
29572
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
29255
29573
  required_arguments = ['autonomousVmClusterId']
@@ -29367,7 +29685,7 @@ class DatabaseClient(object):
29367
29685
  :rtype: :class:`~oci.response.Response`
29368
29686
 
29369
29687
  :example:
29370
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/rotate_cloud_autonomous_vm_cluster_ords_certs.py.html>`__ to see an example of how to use rotate_cloud_autonomous_vm_cluster_ords_certs API.
29688
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/rotate_cloud_autonomous_vm_cluster_ords_certs.py.html>`__ to see an example of how to use rotate_cloud_autonomous_vm_cluster_ords_certs API.
29371
29689
  """
29372
29690
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
29373
29691
  required_arguments = ['cloudAutonomousVmClusterId']
@@ -29486,7 +29804,7 @@ class DatabaseClient(object):
29486
29804
  :rtype: :class:`~oci.response.Response`
29487
29805
 
29488
29806
  :example:
29489
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/rotate_cloud_autonomous_vm_cluster_ssl_certs.py.html>`__ to see an example of how to use rotate_cloud_autonomous_vm_cluster_ssl_certs API.
29807
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/rotate_cloud_autonomous_vm_cluster_ssl_certs.py.html>`__ to see an example of how to use rotate_cloud_autonomous_vm_cluster_ssl_certs API.
29490
29808
  """
29491
29809
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
29492
29810
  required_arguments = ['cloudAutonomousVmClusterId']
@@ -29602,7 +29920,7 @@ class DatabaseClient(object):
29602
29920
  :rtype: :class:`~oci.response.Response`
29603
29921
 
29604
29922
  :example:
29605
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/rotate_ords_certs.py.html>`__ to see an example of how to use rotate_ords_certs API.
29923
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/rotate_ords_certs.py.html>`__ to see an example of how to use rotate_ords_certs API.
29606
29924
  """
29607
29925
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
29608
29926
  required_arguments = ['autonomousExadataInfrastructureId']
@@ -29715,7 +30033,7 @@ class DatabaseClient(object):
29715
30033
  :rtype: :class:`~oci.response.Response`
29716
30034
 
29717
30035
  :example:
29718
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/rotate_pluggable_database_encryption_key.py.html>`__ to see an example of how to use rotate_pluggable_database_encryption_key API.
30036
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/rotate_pluggable_database_encryption_key.py.html>`__ to see an example of how to use rotate_pluggable_database_encryption_key API.
29719
30037
  """
29720
30038
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
29721
30039
  required_arguments = ['pluggableDatabaseId']
@@ -29828,7 +30146,7 @@ class DatabaseClient(object):
29828
30146
  :rtype: :class:`~oci.response.Response`
29829
30147
 
29830
30148
  :example:
29831
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/rotate_ssl_certs.py.html>`__ to see an example of how to use rotate_ssl_certs API.
30149
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/rotate_ssl_certs.py.html>`__ to see an example of how to use rotate_ssl_certs API.
29832
30150
  """
29833
30151
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
29834
30152
  required_arguments = ['autonomousExadataInfrastructureId']
@@ -29943,7 +30261,7 @@ class DatabaseClient(object):
29943
30261
  :rtype: :class:`~oci.response.Response`
29944
30262
 
29945
30263
  :example:
29946
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/rotate_vault_key.py.html>`__ to see an example of how to use rotate_vault_key API.
30264
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/rotate_vault_key.py.html>`__ to see an example of how to use rotate_vault_key API.
29947
30265
  """
29948
30266
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
29949
30267
  required_arguments = ['databaseId']
@@ -30060,7 +30378,7 @@ class DatabaseClient(object):
30060
30378
  :rtype: :class:`~oci.response.Response`
30061
30379
 
30062
30380
  :example:
30063
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/scan_external_container_database_pluggable_databases.py.html>`__ to see an example of how to use scan_external_container_database_pluggable_databases API.
30381
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/scan_external_container_database_pluggable_databases.py.html>`__ to see an example of how to use scan_external_container_database_pluggable_databases API.
30064
30382
  """
30065
30383
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
30066
30384
  required_arguments = ['externalContainerDatabaseId', 'externalDatabaseConnectorId']
@@ -30168,7 +30486,7 @@ class DatabaseClient(object):
30168
30486
  :rtype: :class:`~oci.response.Response`
30169
30487
 
30170
30488
  :example:
30171
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/shrink_autonomous_database.py.html>`__ to see an example of how to use shrink_autonomous_database API.
30489
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/shrink_autonomous_database.py.html>`__ to see an example of how to use shrink_autonomous_database API.
30172
30490
  """
30173
30491
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
30174
30492
  required_arguments = ['autonomousDatabaseId']
@@ -30268,7 +30586,7 @@ class DatabaseClient(object):
30268
30586
  :rtype: :class:`~oci.response.Response`
30269
30587
 
30270
30588
  :example:
30271
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/start_autonomous_database.py.html>`__ to see an example of how to use start_autonomous_database API.
30589
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/start_autonomous_database.py.html>`__ to see an example of how to use start_autonomous_database API.
30272
30590
  """
30273
30591
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
30274
30592
  required_arguments = ['autonomousDatabaseId']
@@ -30378,7 +30696,7 @@ class DatabaseClient(object):
30378
30696
  :rtype: :class:`~oci.response.Response`
30379
30697
 
30380
30698
  :example:
30381
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/start_pluggable_database.py.html>`__ to see an example of how to use start_pluggable_database API.
30699
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/start_pluggable_database.py.html>`__ to see an example of how to use start_pluggable_database API.
30382
30700
  """
30383
30701
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
30384
30702
  required_arguments = ['pluggableDatabaseId']
@@ -30486,7 +30804,7 @@ class DatabaseClient(object):
30486
30804
  :rtype: :class:`~oci.response.Response`
30487
30805
 
30488
30806
  :example:
30489
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/stop_autonomous_database.py.html>`__ to see an example of how to use stop_autonomous_database API.
30807
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/stop_autonomous_database.py.html>`__ to see an example of how to use stop_autonomous_database API.
30490
30808
  """
30491
30809
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
30492
30810
  required_arguments = ['autonomousDatabaseId']
@@ -30598,7 +30916,7 @@ class DatabaseClient(object):
30598
30916
  :rtype: :class:`~oci.response.Response`
30599
30917
 
30600
30918
  :example:
30601
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/stop_pluggable_database.py.html>`__ to see an example of how to use stop_pluggable_database API.
30919
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/stop_pluggable_database.py.html>`__ to see an example of how to use stop_pluggable_database API.
30602
30920
  """
30603
30921
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
30604
30922
  required_arguments = ['pluggableDatabaseId']
@@ -30710,7 +31028,7 @@ class DatabaseClient(object):
30710
31028
  :rtype: :class:`~oci.response.Response`
30711
31029
 
30712
31030
  :example:
30713
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/switchover_autonomous_container_database_dataguard_association.py.html>`__ to see an example of how to use switchover_autonomous_container_database_dataguard_association API.
31031
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/switchover_autonomous_container_database_dataguard_association.py.html>`__ to see an example of how to use switchover_autonomous_container_database_dataguard_association API.
30714
31032
  """
30715
31033
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
30716
31034
  required_arguments = ['autonomousContainerDatabaseId', 'autonomousContainerDatabaseDataguardAssociationId']
@@ -30828,7 +31146,7 @@ class DatabaseClient(object):
30828
31146
  :rtype: :class:`~oci.response.Response`
30829
31147
 
30830
31148
  :example:
30831
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/switchover_autonomous_database.py.html>`__ to see an example of how to use switchover_autonomous_database API.
31149
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/switchover_autonomous_database.py.html>`__ to see an example of how to use switchover_autonomous_database API.
30832
31150
  """
30833
31151
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
30834
31152
  required_arguments = ['autonomousDatabaseId']
@@ -30952,7 +31270,7 @@ class DatabaseClient(object):
30952
31270
  :rtype: :class:`~oci.response.Response`
30953
31271
 
30954
31272
  :example:
30955
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/switchover_data_guard_association.py.html>`__ to see an example of how to use switchover_data_guard_association API.
31273
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/switchover_data_guard_association.py.html>`__ to see an example of how to use switchover_data_guard_association API.
30956
31274
  """
30957
31275
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
30958
31276
  required_arguments = ['databaseId', 'dataGuardAssociationId']
@@ -31055,7 +31373,7 @@ class DatabaseClient(object):
31055
31373
  :rtype: :class:`~oci.response.Response`
31056
31374
 
31057
31375
  :example:
31058
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/terminate_autonomous_container_database.py.html>`__ to see an example of how to use terminate_autonomous_container_database API.
31376
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/terminate_autonomous_container_database.py.html>`__ to see an example of how to use terminate_autonomous_container_database API.
31059
31377
  """
31060
31378
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
31061
31379
  required_arguments = ['autonomousContainerDatabaseId']
@@ -31153,7 +31471,7 @@ class DatabaseClient(object):
31153
31471
  :rtype: :class:`~oci.response.Response`
31154
31472
 
31155
31473
  :example:
31156
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/terminate_autonomous_exadata_infrastructure.py.html>`__ to see an example of how to use terminate_autonomous_exadata_infrastructure API.
31474
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/terminate_autonomous_exadata_infrastructure.py.html>`__ to see an example of how to use terminate_autonomous_exadata_infrastructure API.
31157
31475
  """
31158
31476
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
31159
31477
  required_arguments = ['autonomousExadataInfrastructureId']
@@ -31258,7 +31576,7 @@ class DatabaseClient(object):
31258
31576
  :rtype: :class:`~oci.response.Response`
31259
31577
 
31260
31578
  :example:
31261
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/terminate_db_system.py.html>`__ to see an example of how to use terminate_db_system API.
31579
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/terminate_db_system.py.html>`__ to see an example of how to use terminate_db_system API.
31262
31580
  """
31263
31581
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
31264
31582
  required_arguments = ['dbSystemId']
@@ -31359,7 +31677,7 @@ class DatabaseClient(object):
31359
31677
  :rtype: :class:`~oci.response.Response`
31360
31678
 
31361
31679
  :example:
31362
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/update_autonomous_container_database.py.html>`__ to see an example of how to use update_autonomous_container_database API.
31680
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/update_autonomous_container_database.py.html>`__ to see an example of how to use update_autonomous_container_database API.
31363
31681
  """
31364
31682
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
31365
31683
  required_arguments = ['autonomousContainerDatabaseId']
@@ -31472,7 +31790,7 @@ class DatabaseClient(object):
31472
31790
  :rtype: :class:`~oci.response.Response`
31473
31791
 
31474
31792
  :example:
31475
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/update_autonomous_container_database_dataguard_association.py.html>`__ to see an example of how to use update_autonomous_container_database_dataguard_association API.
31793
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/update_autonomous_container_database_dataguard_association.py.html>`__ to see an example of how to use update_autonomous_container_database_dataguard_association API.
31476
31794
  """
31477
31795
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
31478
31796
  required_arguments = ['autonomousContainerDatabaseId', 'autonomousContainerDatabaseDataguardAssociationId']
@@ -31583,7 +31901,7 @@ class DatabaseClient(object):
31583
31901
  :rtype: :class:`~oci.response.Response`
31584
31902
 
31585
31903
  :example:
31586
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/update_autonomous_database.py.html>`__ to see an example of how to use update_autonomous_database API.
31904
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/update_autonomous_database.py.html>`__ to see an example of how to use update_autonomous_database API.
31587
31905
  """
31588
31906
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
31589
31907
  required_arguments = ['autonomousDatabaseId']
@@ -31693,7 +32011,7 @@ class DatabaseClient(object):
31693
32011
  :rtype: :class:`~oci.response.Response`
31694
32012
 
31695
32013
  :example:
31696
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/update_autonomous_database_backup.py.html>`__ to see an example of how to use update_autonomous_database_backup API.
32014
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/update_autonomous_database_backup.py.html>`__ to see an example of how to use update_autonomous_database_backup API.
31697
32015
  """
31698
32016
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
31699
32017
  required_arguments = ['autonomousDatabaseBackupId']
@@ -31793,7 +32111,7 @@ class DatabaseClient(object):
31793
32111
  :rtype: :class:`~oci.response.Response`
31794
32112
 
31795
32113
  :example:
31796
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/update_autonomous_database_regional_wallet.py.html>`__ to see an example of how to use update_autonomous_database_regional_wallet API.
32114
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/update_autonomous_database_regional_wallet.py.html>`__ to see an example of how to use update_autonomous_database_regional_wallet API.
31797
32115
  """
31798
32116
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
31799
32117
  required_arguments = []
@@ -31882,7 +32200,7 @@ class DatabaseClient(object):
31882
32200
  :rtype: :class:`~oci.response.Response`
31883
32201
 
31884
32202
  :example:
31885
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/update_autonomous_database_wallet.py.html>`__ to see an example of how to use update_autonomous_database_wallet API.
32203
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/update_autonomous_database_wallet.py.html>`__ to see an example of how to use update_autonomous_database_wallet API.
31886
32204
  """
31887
32205
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
31888
32206
  required_arguments = ['autonomousDatabaseId']
@@ -31985,7 +32303,7 @@ class DatabaseClient(object):
31985
32303
  :rtype: :class:`~oci.response.Response`
31986
32304
 
31987
32305
  :example:
31988
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/update_autonomous_exadata_infrastructure.py.html>`__ to see an example of how to use update_autonomous_exadata_infrastructure API.
32306
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/update_autonomous_exadata_infrastructure.py.html>`__ to see an example of how to use update_autonomous_exadata_infrastructure API.
31989
32307
  """
31990
32308
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
31991
32309
  required_arguments = ['autonomousExadataInfrastructureId']
@@ -32093,7 +32411,7 @@ class DatabaseClient(object):
32093
32411
  :rtype: :class:`~oci.response.Response`
32094
32412
 
32095
32413
  :example:
32096
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/update_autonomous_vm_cluster.py.html>`__ to see an example of how to use update_autonomous_vm_cluster API.
32414
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/update_autonomous_vm_cluster.py.html>`__ to see an example of how to use update_autonomous_vm_cluster API.
32097
32415
  """
32098
32416
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
32099
32417
  required_arguments = ['autonomousVmClusterId']
@@ -32206,7 +32524,7 @@ class DatabaseClient(object):
32206
32524
  :rtype: :class:`~oci.response.Response`
32207
32525
 
32208
32526
  :example:
32209
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/update_backup_destination.py.html>`__ to see an example of how to use update_backup_destination API.
32527
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/update_backup_destination.py.html>`__ to see an example of how to use update_backup_destination API.
32210
32528
  """
32211
32529
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
32212
32530
  required_arguments = ['backupDestinationId']
@@ -32316,7 +32634,7 @@ class DatabaseClient(object):
32316
32634
  :rtype: :class:`~oci.response.Response`
32317
32635
 
32318
32636
  :example:
32319
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/update_cloud_autonomous_vm_cluster.py.html>`__ to see an example of how to use update_cloud_autonomous_vm_cluster API.
32637
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/update_cloud_autonomous_vm_cluster.py.html>`__ to see an example of how to use update_cloud_autonomous_vm_cluster API.
32320
32638
  """
32321
32639
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
32322
32640
  required_arguments = ['cloudAutonomousVmClusterId']
@@ -32426,7 +32744,7 @@ class DatabaseClient(object):
32426
32744
  :rtype: :class:`~oci.response.Response`
32427
32745
 
32428
32746
  :example:
32429
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/update_cloud_exadata_infrastructure.py.html>`__ to see an example of how to use update_cloud_exadata_infrastructure API.
32747
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/update_cloud_exadata_infrastructure.py.html>`__ to see an example of how to use update_cloud_exadata_infrastructure API.
32430
32748
  """
32431
32749
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
32432
32750
  required_arguments = ['cloudExadataInfrastructureId']
@@ -32536,7 +32854,7 @@ class DatabaseClient(object):
32536
32854
  :rtype: :class:`~oci.response.Response`
32537
32855
 
32538
32856
  :example:
32539
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/update_cloud_vm_cluster.py.html>`__ to see an example of how to use update_cloud_vm_cluster API.
32857
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/update_cloud_vm_cluster.py.html>`__ to see an example of how to use update_cloud_vm_cluster API.
32540
32858
  """
32541
32859
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
32542
32860
  required_arguments = ['cloudVmClusterId']
@@ -32646,7 +32964,7 @@ class DatabaseClient(object):
32646
32964
  :rtype: :class:`~oci.response.Response`
32647
32965
 
32648
32966
  :example:
32649
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/update_cloud_vm_cluster_iorm_config.py.html>`__ to see an example of how to use update_cloud_vm_cluster_iorm_config API.
32967
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/update_cloud_vm_cluster_iorm_config.py.html>`__ to see an example of how to use update_cloud_vm_cluster_iorm_config API.
32650
32968
  """
32651
32969
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
32652
32970
  required_arguments = ['cloudVmClusterId']
@@ -32759,7 +33077,7 @@ class DatabaseClient(object):
32759
33077
  :rtype: :class:`~oci.response.Response`
32760
33078
 
32761
33079
  :example:
32762
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/update_console_connection.py.html>`__ to see an example of how to use update_console_connection API.
33080
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/update_console_connection.py.html>`__ to see an example of how to use update_console_connection API.
32763
33081
  """
32764
33082
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
32765
33083
  required_arguments = ['dbNodeId', 'consoleConnectionId']
@@ -32875,7 +33193,7 @@ class DatabaseClient(object):
32875
33193
  :rtype: :class:`~oci.response.Response`
32876
33194
 
32877
33195
  :example:
32878
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/update_data_guard_association.py.html>`__ to see an example of how to use update_data_guard_association API.
33196
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/update_data_guard_association.py.html>`__ to see an example of how to use update_data_guard_association API.
32879
33197
  """
32880
33198
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
32881
33199
  required_arguments = ['databaseId', 'dataGuardAssociationId']
@@ -32983,7 +33301,7 @@ class DatabaseClient(object):
32983
33301
  :rtype: :class:`~oci.response.Response`
32984
33302
 
32985
33303
  :example:
32986
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/update_database.py.html>`__ to see an example of how to use update_database API.
33304
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/update_database.py.html>`__ to see an example of how to use update_database API.
32987
33305
  """
32988
33306
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
32989
33307
  required_arguments = ['databaseId']
@@ -33088,7 +33406,7 @@ class DatabaseClient(object):
33088
33406
  :rtype: :class:`~oci.response.Response`
33089
33407
 
33090
33408
  :example:
33091
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/update_database_software_image.py.html>`__ to see an example of how to use update_database_software_image API.
33409
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/update_database_software_image.py.html>`__ to see an example of how to use update_database_software_image API.
33092
33410
  """
33093
33411
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
33094
33412
  required_arguments = ['databaseSoftwareImageId']
@@ -33193,7 +33511,7 @@ class DatabaseClient(object):
33193
33511
  :rtype: :class:`~oci.response.Response`
33194
33512
 
33195
33513
  :example:
33196
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/update_db_home.py.html>`__ to see an example of how to use update_db_home API.
33514
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/update_db_home.py.html>`__ to see an example of how to use update_db_home API.
33197
33515
  """
33198
33516
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
33199
33517
  required_arguments = ['dbHomeId']
@@ -33301,7 +33619,7 @@ class DatabaseClient(object):
33301
33619
  :rtype: :class:`~oci.response.Response`
33302
33620
 
33303
33621
  :example:
33304
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/update_db_node.py.html>`__ to see an example of how to use update_db_node API.
33622
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/update_db_node.py.html>`__ to see an example of how to use update_db_node API.
33305
33623
  """
33306
33624
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
33307
33625
  required_arguments = ['dbNodeId']
@@ -33415,7 +33733,7 @@ class DatabaseClient(object):
33415
33733
  :rtype: :class:`~oci.response.Response`
33416
33734
 
33417
33735
  :example:
33418
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/update_db_system.py.html>`__ to see an example of how to use update_db_system API.
33736
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/update_db_system.py.html>`__ to see an example of how to use update_db_system API.
33419
33737
  """
33420
33738
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
33421
33739
  required_arguments = ['dbSystemId']
@@ -33524,7 +33842,7 @@ class DatabaseClient(object):
33524
33842
  :rtype: :class:`~oci.response.Response`
33525
33843
 
33526
33844
  :example:
33527
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/update_exadata_infrastructure.py.html>`__ to see an example of how to use update_exadata_infrastructure API.
33845
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/update_exadata_infrastructure.py.html>`__ to see an example of how to use update_exadata_infrastructure API.
33528
33846
  """
33529
33847
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
33530
33848
  required_arguments = ['exadataInfrastructureId']
@@ -33644,7 +33962,7 @@ class DatabaseClient(object):
33644
33962
  :rtype: :class:`~oci.response.Response`
33645
33963
 
33646
33964
  :example:
33647
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/update_exadata_iorm_config.py.html>`__ to see an example of how to use update_exadata_iorm_config API.
33965
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/update_exadata_iorm_config.py.html>`__ to see an example of how to use update_exadata_iorm_config API.
33648
33966
  """
33649
33967
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
33650
33968
  required_arguments = ['dbSystemId']
@@ -33757,7 +34075,7 @@ class DatabaseClient(object):
33757
34075
  :rtype: :class:`~oci.response.Response`
33758
34076
 
33759
34077
  :example:
33760
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/update_external_container_database.py.html>`__ to see an example of how to use update_external_container_database API.
34078
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/update_external_container_database.py.html>`__ to see an example of how to use update_external_container_database API.
33761
34079
  """
33762
34080
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
33763
34081
  required_arguments = ['externalContainerDatabaseId']
@@ -33868,7 +34186,7 @@ class DatabaseClient(object):
33868
34186
  :rtype: :class:`~oci.response.Response`
33869
34187
 
33870
34188
  :example:
33871
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/update_external_database_connector.py.html>`__ to see an example of how to use update_external_database_connector API.
34189
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/update_external_database_connector.py.html>`__ to see an example of how to use update_external_database_connector API.
33872
34190
  """
33873
34191
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
33874
34192
  required_arguments = ['externalDatabaseConnectorId']
@@ -33978,7 +34296,7 @@ class DatabaseClient(object):
33978
34296
  :rtype: :class:`~oci.response.Response`
33979
34297
 
33980
34298
  :example:
33981
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/update_external_non_container_database.py.html>`__ to see an example of how to use update_external_non_container_database API.
34299
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/update_external_non_container_database.py.html>`__ to see an example of how to use update_external_non_container_database API.
33982
34300
  """
33983
34301
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
33984
34302
  required_arguments = ['externalNonContainerDatabaseId']
@@ -34090,7 +34408,7 @@ class DatabaseClient(object):
34090
34408
  :rtype: :class:`~oci.response.Response`
34091
34409
 
34092
34410
  :example:
34093
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/update_external_pluggable_database.py.html>`__ to see an example of how to use update_external_pluggable_database API.
34411
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/update_external_pluggable_database.py.html>`__ to see an example of how to use update_external_pluggable_database API.
34094
34412
  """
34095
34413
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
34096
34414
  required_arguments = ['externalPluggableDatabaseId']
@@ -34200,7 +34518,7 @@ class DatabaseClient(object):
34200
34518
  :rtype: :class:`~oci.response.Response`
34201
34519
 
34202
34520
  :example:
34203
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/update_key_store.py.html>`__ to see an example of how to use update_key_store API.
34521
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/update_key_store.py.html>`__ to see an example of how to use update_key_store API.
34204
34522
  """
34205
34523
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
34206
34524
  required_arguments = ['keyStoreId']
@@ -34305,7 +34623,7 @@ class DatabaseClient(object):
34305
34623
  :rtype: :class:`~oci.response.Response`
34306
34624
 
34307
34625
  :example:
34308
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/update_maintenance_run.py.html>`__ to see an example of how to use update_maintenance_run API.
34626
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/update_maintenance_run.py.html>`__ to see an example of how to use update_maintenance_run API.
34309
34627
  """
34310
34628
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
34311
34629
  required_arguments = ['maintenanceRunId']
@@ -34413,7 +34731,7 @@ class DatabaseClient(object):
34413
34731
  :rtype: :class:`~oci.response.Response`
34414
34732
 
34415
34733
  :example:
34416
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/update_oneoff_patch.py.html>`__ to see an example of how to use update_oneoff_patch API.
34734
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/update_oneoff_patch.py.html>`__ to see an example of how to use update_oneoff_patch API.
34417
34735
  """
34418
34736
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
34419
34737
  required_arguments = ['oneoffPatchId']
@@ -34520,7 +34838,7 @@ class DatabaseClient(object):
34520
34838
  :rtype: :class:`~oci.response.Response`
34521
34839
 
34522
34840
  :example:
34523
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/update_pluggable_database.py.html>`__ to see an example of how to use update_pluggable_database API.
34841
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/update_pluggable_database.py.html>`__ to see an example of how to use update_pluggable_database API.
34524
34842
  """
34525
34843
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
34526
34844
  required_arguments = ['pluggableDatabaseId']
@@ -34628,7 +34946,7 @@ class DatabaseClient(object):
34628
34946
  :rtype: :class:`~oci.response.Response`
34629
34947
 
34630
34948
  :example:
34631
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/update_vm_cluster.py.html>`__ to see an example of how to use update_vm_cluster API.
34949
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/update_vm_cluster.py.html>`__ to see an example of how to use update_vm_cluster API.
34632
34950
  """
34633
34951
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
34634
34952
  required_arguments = ['vmClusterId']
@@ -34744,7 +35062,7 @@ class DatabaseClient(object):
34744
35062
  :rtype: :class:`~oci.response.Response`
34745
35063
 
34746
35064
  :example:
34747
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/update_vm_cluster_network.py.html>`__ to see an example of how to use update_vm_cluster_network API.
35065
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/update_vm_cluster_network.py.html>`__ to see an example of how to use update_vm_cluster_network API.
34748
35066
  """
34749
35067
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
34750
35068
  required_arguments = ['exadataInfrastructureId', 'vmClusterNetworkId']
@@ -34855,7 +35173,7 @@ class DatabaseClient(object):
34855
35173
  :rtype: :class:`~oci.response.Response`
34856
35174
 
34857
35175
  :example:
34858
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/upgrade_database.py.html>`__ to see an example of how to use upgrade_database API.
35176
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/upgrade_database.py.html>`__ to see an example of how to use upgrade_database API.
34859
35177
  """
34860
35178
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
34861
35179
  required_arguments = ['databaseId']
@@ -34972,7 +35290,7 @@ class DatabaseClient(object):
34972
35290
  :rtype: :class:`~oci.response.Response`
34973
35291
 
34974
35292
  :example:
34975
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/upgrade_db_system.py.html>`__ to see an example of how to use upgrade_db_system API.
35293
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/upgrade_db_system.py.html>`__ to see an example of how to use upgrade_db_system API.
34976
35294
  """
34977
35295
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
34978
35296
  required_arguments = ['dbSystemId']
@@ -35089,7 +35407,7 @@ class DatabaseClient(object):
35089
35407
  :rtype: :class:`~oci.response.Response`
35090
35408
 
35091
35409
  :example:
35092
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/database/validate_vm_cluster_network.py.html>`__ to see an example of how to use validate_vm_cluster_network API.
35410
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/database/validate_vm_cluster_network.py.html>`__ to see an example of how to use validate_vm_cluster_network API.
35093
35411
  """
35094
35412
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
35095
35413
  required_arguments = ['exadataInfrastructureId', 'vmClusterNetworkId']