oci 2.139.0__py3-none-any.whl → 2.141.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 (597) hide show
  1. oci/access_governance_cp/access_governance_cp_client.py +8 -8
  2. oci/adm/application_dependency_management_client.py +36 -36
  3. oci/ai_anomaly_detection/anomaly_detection_client.py +36 -36
  4. oci/ai_document/ai_service_document_client.py +26 -26
  5. oci/ai_language/ai_service_language_client.py +44 -44
  6. oci/ai_language/models/__init__.py +6 -0
  7. oci/ai_language/models/batch_detect_dominant_language_details.py +31 -0
  8. oci/ai_language/models/batch_detect_health_entity_details.py +31 -0
  9. oci/ai_language/models/batch_detect_language_entities_details.py +31 -0
  10. oci/ai_language/models/batch_detect_language_key_phrases_details.py +31 -0
  11. oci/ai_language/models/batch_detect_language_pii_entities_details.py +31 -0
  12. oci/ai_language/models/batch_detect_language_sentiments_details.py +31 -0
  13. oci/ai_language/models/batch_detect_language_text_classification_details.py +31 -0
  14. oci/ai_language/models/batch_language_translation_details.py +93 -0
  15. oci/ai_language/models/create_endpoint_details.py +78 -0
  16. oci/ai_language/models/endpoint.py +78 -0
  17. oci/ai_language/models/endpoint_summary.py +78 -0
  18. oci/ai_language/models/health_nlu_model_details.py +91 -0
  19. oci/ai_language/models/hierarchical_entity.py +27 -0
  20. oci/ai_language/models/meta_info.py +196 -0
  21. oci/ai_language/models/model_details.py +35 -23
  22. oci/ai_language/models/named_entity_recognition_model_details.py +1 -1
  23. oci/ai_language/models/pii_entity_mask.py +14 -0
  24. oci/ai_language/models/pii_entity_masking.py +64 -2
  25. oci/ai_language/models/pii_entity_remove.py +16 -2
  26. oci/ai_language/models/pii_entity_replace.py +14 -0
  27. oci/ai_language/models/pii_model_details.py +1 -1
  28. oci/ai_language/models/pre_trained_health_nlu_model_details.py +1 -1
  29. oci/ai_language/models/pre_trained_key_phrase_extraction_model_details.py +1 -1
  30. oci/ai_language/models/pre_trained_language_detection_model_details.py +1 -1
  31. oci/ai_language/models/pre_trained_named_entity_recognition_model_details.py +1 -1
  32. oci/ai_language/models/pre_trained_pii_model_details.py +1 -1
  33. oci/ai_language/models/pre_trained_sentiment_analysis_model_details.py +1 -1
  34. oci/ai_language/models/pre_trained_summarization.py +1 -1
  35. oci/ai_language/models/pre_trained_text_classification_model_details.py +1 -1
  36. oci/ai_language/models/pre_trained_translation_model_details.py +91 -0
  37. oci/ai_language/models/pre_trained_universal_model.py +1 -1
  38. oci/ai_language/models/text_classification_model_details.py +1 -1
  39. oci/ai_language/models/update_endpoint_details.py +31 -0
  40. oci/ai_speech/ai_service_speech_client.py +19 -19
  41. oci/ai_vision/ai_service_vision_client.py +320 -25
  42. oci/ai_vision/ai_service_vision_client_composite_operations.py +42 -0
  43. oci/ai_vision/models/__init__.py +54 -0
  44. oci/ai_vision/models/analyze_video_result.py +440 -0
  45. oci/ai_vision/models/create_video_job_details.py +254 -0
  46. oci/ai_vision/models/object_property.py +130 -0
  47. oci/ai_vision/models/video_face.py +72 -0
  48. oci/ai_vision/models/video_face_detection_feature.py +146 -0
  49. oci/ai_vision/models/video_face_frame.py +192 -0
  50. oci/ai_vision/models/video_face_segment.py +130 -0
  51. oci/ai_vision/models/video_feature.py +145 -0
  52. oci/ai_vision/models/video_job.py +552 -0
  53. oci/ai_vision/models/video_label.py +103 -0
  54. oci/ai_vision/models/video_label_detection_feature.py +146 -0
  55. oci/ai_vision/models/video_label_segment.py +99 -0
  56. oci/ai_vision/models/video_metadata.py +165 -0
  57. oci/ai_vision/models/video_object.py +103 -0
  58. oci/ai_vision/models/video_object_detection_feature.py +146 -0
  59. oci/ai_vision/models/video_object_frame.py +130 -0
  60. oci/ai_vision/models/video_object_segment.py +130 -0
  61. oci/ai_vision/models/video_object_tracking_feature.py +146 -0
  62. oci/ai_vision/models/video_segment.py +103 -0
  63. oci/ai_vision/models/video_text.py +103 -0
  64. oci/ai_vision/models/video_text_detection_feature.py +84 -0
  65. oci/ai_vision/models/video_text_frame.py +130 -0
  66. oci/ai_vision/models/video_text_segment.py +130 -0
  67. oci/ai_vision/models/video_tracked_object.py +161 -0
  68. oci/ai_vision/models/video_tracked_object_properties.py +72 -0
  69. oci/ai_vision/models/video_tracked_object_segment.py +130 -0
  70. oci/ai_vision/models/video_tracking_frame.py +161 -0
  71. oci/analytics/analytics_client.py +24 -24
  72. oci/announcements_service/announcement_client.py +5 -5
  73. oci/announcements_service/announcement_subscription_client.py +9 -9
  74. oci/announcements_service/announcements_preferences_client.py +4 -4
  75. oci/announcements_service/service_client.py +1 -1
  76. oci/apigateway/api_gateway_client.py +21 -21
  77. oci/apigateway/deployment_client.py +6 -6
  78. oci/apigateway/gateway_client.py +6 -6
  79. oci/apigateway/subscribers_client.py +6 -6
  80. oci/apigateway/usage_plans_client.py +6 -6
  81. oci/apigateway/work_requests_client.py +5 -5
  82. oci/apm_config/config_client.py +9 -9
  83. oci/apm_control_plane/apm_domain_client.py +14 -14
  84. oci/apm_synthetics/apm_synthetic_client.py +28 -28
  85. oci/apm_traces/attributes_client.py +8 -8
  86. oci/apm_traces/query_client.py +2 -2
  87. oci/apm_traces/trace_client.py +4 -4
  88. oci/appmgmt_control/appmgmt_control_client.py +8 -8
  89. oci/artifacts/artifacts_client.py +32 -32
  90. oci/audit/audit_client.py +3 -3
  91. oci/auth/certificate_retriever.py +2 -5
  92. oci/auth/signers/instance_principals_security_token_signer.py +32 -29
  93. oci/auth/signers/oke_workload_identity_resource_principal_signer.py +12 -5
  94. oci/autoscaling/auto_scaling_client.py +11 -11
  95. oci/bastion/bastion_client.py +15 -15
  96. oci/bds/bds_client.py +2516 -1014
  97. oci/bds/bds_client_composite_operations.py +407 -0
  98. oci/bds/models/__init__.py +34 -0
  99. oci/bds/models/activate_iam_user_sync_configuration_details.py +103 -0
  100. oci/bds/models/activate_upst_configuration_details.py +134 -0
  101. oci/bds/models/batching_based_odh_patching_config.py +33 -2
  102. oci/bds/models/bds_api_key.py +33 -2
  103. oci/bds/models/bds_cluster_version_summary.py +103 -0
  104. oci/bds/models/bds_instance.py +29 -2
  105. oci/bds/models/create_bds_api_key_details.py +33 -2
  106. oci/bds/models/create_bds_instance_details.py +29 -2
  107. oci/bds/models/create_identity_configuration_details.py +219 -0
  108. oci/bds/models/deactivate_iam_user_sync_configuration_details.py +72 -0
  109. oci/bds/models/deactivate_upst_configuration_details.py +72 -0
  110. oci/bds/models/domain_based_odh_patching_config.py +33 -2
  111. oci/bds/models/iam_user_sync_configuration.py +197 -0
  112. oci/bds/models/iam_user_sync_configuration_details.py +72 -0
  113. oci/bds/models/identity_configuration.py +328 -0
  114. oci/bds/models/identity_configuration_summary.py +134 -0
  115. oci/bds/models/node_type_shape_config.py +105 -0
  116. oci/bds/models/refresh_confidential_application_details.py +72 -0
  117. oci/bds/models/refresh_upst_token_exchange_keytab_details.py +72 -0
  118. oci/bds/models/start_bds_instance_details.py +29 -2
  119. oci/bds/models/start_cluster_shape_configs.py +72 -0
  120. oci/bds/models/update_bds_instance_details.py +29 -2
  121. oci/bds/models/update_identity_configuration_details.py +126 -0
  122. oci/bds/models/upst_configuration.py +352 -0
  123. oci/bds/models/upst_configuration_details.py +103 -0
  124. oci/bds/models/work_request.py +39 -3
  125. oci/blockchain/blockchain_platform_client.py +27 -27
  126. oci/blockchain/models/blockchain_platform.py +17 -5
  127. oci/blockchain/models/work_request.py +7 -3
  128. oci/blockchain/models/work_request_summary.py +7 -3
  129. oci/budget/budget_client.py +10 -10
  130. oci/capacity_management/capacity_management_client.py +32 -32
  131. oci/certificates/certificates_client.py +5 -5
  132. oci/certificates_management/certificates_management_client.py +32 -32
  133. oci/cims/incident_client.py +6 -6
  134. oci/cloud_bridge/common_client.py +5 -5
  135. oci/cloud_bridge/discovery_client.py +15 -15
  136. oci/cloud_bridge/inventory_client.py +16 -16
  137. oci/cloud_bridge/models/__init__.py +6 -0
  138. oci/cloud_bridge/models/asset_source_credentials.py +2 -2
  139. oci/cloud_bridge/models/aws_ebs_asset_details.py +68 -0
  140. oci/cloud_bridge/models/aws_ec2_asset_details.py +176 -0
  141. oci/cloud_bridge/models/disk.py +33 -2
  142. oci/cloud_bridge/models/monthly_cost_summary.py +2 -2
  143. oci/cloud_bridge/models/update_plugin_details.py +72 -0
  144. oci/cloud_bridge/models/work_request.py +7 -3
  145. oci/cloud_bridge/models/work_request_summary.py +7 -3
  146. oci/cloud_bridge/ocb_agent_svc_client.py +136 -22
  147. oci/cloud_bridge/ocb_agent_svc_client_composite_operations.py +45 -0
  148. oci/cloud_guard/cloud_guard_client.py +155 -155
  149. oci/cloud_migrations/migration_client.py +43 -43
  150. oci/cluster_placement_groups/cluster_placement_groups_cp_client.py +13 -13
  151. oci/compute_cloud_at_customer/compute_cloud_at_customer_client.py +12 -12
  152. oci/compute_instance_agent/compute_instance_agent_client.py +6 -6
  153. oci/compute_instance_agent/plugin_client.py +2 -2
  154. oci/compute_instance_agent/pluginconfig_client.py +1 -1
  155. oci/container_engine/container_engine_client.py +44 -44
  156. oci/container_instances/container_instance_client.py +18 -18
  157. oci/core/blockstorage_client.py +60 -60
  158. oci/core/compute_client.py +102 -102
  159. oci/core/compute_management_client.py +32 -32
  160. oci/core/models/__init__.py +10 -0
  161. oci/core/models/instance.py +33 -2
  162. oci/core/models/instance_configuration_launch_instance_details.py +33 -2
  163. oci/core/models/launch_instance_details.py +33 -2
  164. oci/core/models/launch_instance_licensing_config.py +152 -0
  165. oci/core/models/launch_instance_windows_licensing_config.py +59 -0
  166. oci/core/models/licensing_config.py +166 -0
  167. oci/core/models/update_instance_details.py +33 -2
  168. oci/core/models/update_instance_licensing_config.py +152 -0
  169. oci/core/models/update_instance_windows_licensing_config.py +59 -0
  170. oci/core/virtual_network_client.py +247 -247
  171. oci/dashboard_service/dashboard_client.py +6 -6
  172. oci/dashboard_service/dashboard_group_client.py +6 -6
  173. oci/data_catalog/data_catalog_client.py +149 -149
  174. oci/data_flow/data_flow_client.py +146 -44
  175. oci/data_flow/data_flow_client_composite_operations.py +39 -0
  176. oci/data_flow/models/application.py +7 -3
  177. oci/data_flow/models/application_summary.py +7 -3
  178. oci/data_integration/data_integration_client.py +163 -163
  179. oci/data_labeling_service/data_labeling_management_client.py +17 -17
  180. oci/data_labeling_service_dataplane/data_labeling_client.py +15 -15
  181. oci/data_safe/data_safe_client.py +292 -292
  182. oci/data_science/data_science_client.py +94 -94
  183. oci/data_science/models/create_data_science_private_endpoint_details.py +7 -3
  184. oci/data_science/models/create_job_run_details.py +4 -4
  185. oci/data_science/models/data_science_private_endpoint.py +7 -3
  186. oci/data_science/models/data_science_private_endpoint_summary.py +7 -3
  187. oci/data_science/models/instance_configuration.py +33 -2
  188. oci/data_science/models/job_run.py +6 -6
  189. oci/data_science/models/job_run_summary.py +9 -9
  190. oci/data_science/models/job_summary.py +1 -1
  191. oci/data_science/models/metadata.py +4 -4
  192. oci/database/database_client.py +411 -399
  193. oci/database/models/__init__.py +4 -0
  194. oci/database/models/autonomous_database.py +31 -0
  195. oci/database/models/autonomous_database_summary.py +31 -0
  196. oci/database/models/create_autonomous_database_base.py +31 -0
  197. oci/database/models/create_autonomous_database_clone_details.py +7 -0
  198. oci/database/models/create_autonomous_database_details.py +7 -0
  199. oci/database/models/create_autonomous_database_from_backup_details.py +7 -0
  200. oci/database/models/create_autonomous_database_from_backup_timestamp_details.py +7 -0
  201. oci/database/models/create_cross_region_autonomous_database_data_guard_details.py +7 -0
  202. oci/database/models/create_cross_region_disaster_recovery_details.py +7 -0
  203. oci/database/models/create_cross_tenancy_disaster_recovery_details.py +7 -0
  204. oci/database/models/create_refreshable_autonomous_database_clone_details.py +7 -0
  205. oci/database/models/rotate_autonomous_container_database_encryption_key_details.py +76 -0
  206. oci/database/models/rotate_autonomous_database_encryption_key_details.py +76 -0
  207. oci/database/models/undelete_autonomous_database_details.py +7 -0
  208. oci/database/models/update_autonomous_database_details.py +31 -0
  209. oci/database_management/db_management_client.py +211 -211
  210. oci/database_management/diagnosability_client.py +4 -4
  211. oci/database_management/managed_my_sql_databases_client.py +7 -7
  212. oci/database_management/perfhub_client.py +1 -1
  213. oci/database_management/sql_tuning_client.py +17 -17
  214. oci/database_migration/database_migration_client.py +42 -42
  215. oci/database_tools/database_tools_client.py +23 -23
  216. oci/delegate_access_control/delegate_access_control_client.py +26 -26
  217. oci/delegate_access_control/work_request_client.py +4 -4
  218. oci/demand_signal/occ_demand_signal_client.py +7 -7
  219. oci/desktops/desktop_service_client.py +21 -21
  220. oci/devops/devops_client.py +141 -141
  221. oci/disaster_recovery/disaster_recovery_client.py +289 -31
  222. oci/disaster_recovery/disaster_recovery_client_composite_operations.py +88 -0
  223. oci/disaster_recovery/models/__init__.py +8 -0
  224. oci/disaster_recovery/models/create_dr_plan_details.py +35 -0
  225. oci/disaster_recovery/models/dr_plan.py +92 -0
  226. oci/disaster_recovery/models/dr_plan_group.py +55 -0
  227. oci/disaster_recovery/models/dr_plan_step.py +51 -0
  228. oci/disaster_recovery/models/dr_plan_summary.py +59 -0
  229. oci/disaster_recovery/models/refresh_dr_plan_default_details.py +51 -0
  230. oci/disaster_recovery/models/refresh_dr_plan_details.py +101 -0
  231. oci/disaster_recovery/models/verify_dr_plan_default_details.py +51 -0
  232. oci/disaster_recovery/models/verify_dr_plan_details.py +101 -0
  233. oci/disaster_recovery/models/work_request.py +11 -3
  234. oci/disaster_recovery/models/work_request_summary.py +11 -3
  235. oci/dns/dns_client.py +54 -54
  236. oci/dts/appliance_export_job_client.py +6 -6
  237. oci/dts/shipping_vendors_client.py +1 -1
  238. oci/dts/transfer_appliance_client.py +8 -8
  239. oci/dts/transfer_appliance_entitlement_client.py +3 -3
  240. oci/dts/transfer_device_client.py +5 -5
  241. oci/dts/transfer_job_client.py +6 -6
  242. oci/dts/transfer_package_client.py +7 -7
  243. oci/em_warehouse/em_warehouse_client.py +13 -13
  244. oci/email/email_client.py +31 -31
  245. oci/email_data_plane/email_dp_client.py +1 -1
  246. oci/events/events_client.py +6 -6
  247. oci/file_storage/file_storage_client.py +68 -68
  248. oci/fleet_apps_management/fleet_apps_management_admin_client.py +25 -25
  249. oci/fleet_apps_management/fleet_apps_management_client.py +35 -35
  250. oci/fleet_apps_management/fleet_apps_management_maintenance_window_client.py +5 -5
  251. oci/fleet_apps_management/fleet_apps_management_operations_client.py +26 -26
  252. oci/fleet_apps_management/fleet_apps_management_runbooks_client.py +12 -12
  253. oci/fleet_software_update/fleet_software_update_client.py +48 -48
  254. oci/fleet_software_update/models/__init__.py +12 -0
  255. oci/fleet_software_update/models/apply_action.py +1 -1
  256. oci/fleet_software_update/models/apply_action_summary.py +1 -1
  257. oci/fleet_software_update/models/apply_fsu_job.py +1 -1
  258. oci/fleet_software_update/models/apply_fsu_job_summary.py +1 -1
  259. oci/fleet_software_update/models/cleanup_action.py +1 -1
  260. oci/fleet_software_update/models/cleanup_action_summary.py +1 -1
  261. oci/fleet_software_update/models/cleanup_fsu_job.py +1 -1
  262. oci/fleet_software_update/models/cleanup_fsu_job_summary.py +1 -1
  263. oci/fleet_software_update/models/create_apply_action_details.py +1 -1
  264. oci/fleet_software_update/models/create_cleanup_action_details.py +1 -1
  265. oci/fleet_software_update/models/create_fsu_action_details.py +11 -3
  266. oci/fleet_software_update/models/create_precheck_action_details.py +1 -1
  267. oci/fleet_software_update/models/create_rollback_action_details.py +1 -1
  268. oci/fleet_software_update/models/create_rollback_cycle_apply_action_details.py +111 -0
  269. oci/fleet_software_update/models/create_stage_action_details.py +1 -1
  270. oci/fleet_software_update/models/db_collection.py +7 -0
  271. oci/fleet_software_update/models/db_fsu_collection_summary.py +7 -0
  272. oci/fleet_software_update/models/fsu_action.py +11 -3
  273. oci/fleet_software_update/models/fsu_action_summary.py +11 -3
  274. oci/fleet_software_update/models/fsu_collection.py +35 -0
  275. oci/fleet_software_update/models/fsu_collection_summary.py +35 -0
  276. oci/fleet_software_update/models/fsu_cycle.py +105 -3
  277. oci/fleet_software_update/models/fsu_cycle_summary.py +101 -3
  278. oci/fleet_software_update/models/fsu_job.py +11 -3
  279. oci/fleet_software_update/models/fsu_job_summary.py +11 -3
  280. oci/fleet_software_update/models/gi_collection.py +7 -0
  281. oci/fleet_software_update/models/gi_fsu_collection_summary.py +7 -0
  282. oci/fleet_software_update/models/next_action_to_execute_details.py +7 -3
  283. oci/fleet_software_update/models/patch_fsu_cycle.py +16 -1
  284. oci/fleet_software_update/models/precheck_action.py +1 -1
  285. oci/fleet_software_update/models/precheck_action_summary.py +1 -1
  286. oci/fleet_software_update/models/precheck_fsu_job.py +1 -1
  287. oci/fleet_software_update/models/precheck_fsu_job_summary.py +1 -1
  288. oci/fleet_software_update/models/rollback_action.py +1 -1
  289. oci/fleet_software_update/models/rollback_action_summary.py +1 -1
  290. oci/fleet_software_update/models/rollback_cycle_action.py +226 -0
  291. oci/fleet_software_update/models/rollback_cycle_action_summary.py +225 -0
  292. oci/fleet_software_update/models/rollback_cycle_fsu_job.py +278 -0
  293. oci/fleet_software_update/models/rollback_cycle_fsu_job_summary.py +251 -0
  294. oci/fleet_software_update/models/rollback_fsu_job.py +1 -1
  295. oci/fleet_software_update/models/rollback_fsu_job_summary.py +1 -1
  296. oci/fleet_software_update/models/stage_action.py +1 -1
  297. oci/fleet_software_update/models/stage_action_summary.py +1 -1
  298. oci/fleet_software_update/models/stage_fsu_job.py +1 -1
  299. oci/fleet_software_update/models/stage_fsu_job_summary.py +1 -1
  300. oci/fleet_software_update/models/update_apply_action_details.py +1 -1
  301. oci/fleet_software_update/models/update_cleanup_action_details.py +1 -1
  302. oci/fleet_software_update/models/update_fsu_action_details.py +11 -3
  303. oci/fleet_software_update/models/update_precheck_action_details.py +1 -1
  304. oci/fleet_software_update/models/update_rollback_action_details.py +1 -1
  305. oci/fleet_software_update/models/update_rollback_cycle_action_details.py +72 -0
  306. oci/fleet_software_update/models/update_stage_action_details.py +1 -1
  307. oci/fleet_software_update/models/work_request.py +7 -3
  308. oci/fleet_software_update/models/work_request_summary.py +7 -3
  309. oci/functions/functions_invoke_client.py +1 -1
  310. oci/functions/functions_management_client.py +16 -16
  311. oci/fusion_apps/fusion_applications_client.py +41 -41
  312. oci/generative_ai/generative_ai_client.py +22 -22
  313. oci/generative_ai_agent/generative_ai_agent_client.py +33 -102
  314. oci/generative_ai_agent/models/__init__.py +2 -0
  315. oci/generative_ai_agent/models/agent.py +0 -2
  316. oci/generative_ai_agent/models/agent_collection.py +0 -2
  317. oci/generative_ai_agent/models/agent_endpoint.py +0 -2
  318. oci/generative_ai_agent/models/agent_endpoint_collection.py +0 -2
  319. oci/generative_ai_agent/models/agent_endpoint_summary.py +0 -2
  320. oci/generative_ai_agent/models/agent_summary.py +0 -2
  321. oci/generative_ai_agent/models/basic_auth_secret.py +0 -2
  322. oci/generative_ai_agent/models/change_agent_compartment_details.py +0 -2
  323. oci/generative_ai_agent/models/change_agent_endpoint_compartment_details.py +0 -2
  324. oci/generative_ai_agent/models/change_knowledge_base_compartment_details.py +0 -2
  325. oci/generative_ai_agent/models/create_agent_details.py +0 -2
  326. oci/generative_ai_agent/models/create_agent_endpoint_details.py +0 -2
  327. oci/generative_ai_agent/models/create_data_ingestion_job_details.py +0 -2
  328. oci/generative_ai_agent/models/create_data_source_details.py +0 -2
  329. oci/generative_ai_agent/models/create_knowledge_base_details.py +0 -2
  330. oci/generative_ai_agent/models/data_ingestion_job.py +35 -2
  331. oci/generative_ai_agent/models/data_ingestion_job_collection.py +0 -2
  332. oci/generative_ai_agent/models/data_ingestion_job_statistics.py +0 -2
  333. oci/generative_ai_agent/models/data_ingestion_job_summary.py +0 -2
  334. oci/generative_ai_agent/models/data_source.py +0 -2
  335. oci/generative_ai_agent/models/data_source_collection.py +0 -2
  336. oci/generative_ai_agent/models/data_source_config.py +31 -2
  337. oci/generative_ai_agent/models/data_source_summary.py +0 -2
  338. oci/generative_ai_agent/models/database_connection.py +0 -2
  339. oci/generative_ai_agent/models/database_function.py +0 -2
  340. oci/generative_ai_agent/models/database_tool_connection.py +0 -2
  341. oci/generative_ai_agent/models/default_index_config.py +0 -2
  342. oci/generative_ai_agent/models/idcs_secret.py +0 -2
  343. oci/generative_ai_agent/models/index.py +0 -2
  344. oci/generative_ai_agent/models/index_config.py +0 -2
  345. oci/generative_ai_agent/models/index_schema.py +0 -2
  346. oci/generative_ai_agent/models/knowledge_base.py +27 -2
  347. oci/generative_ai_agent/models/knowledge_base_collection.py +0 -2
  348. oci/generative_ai_agent/models/knowledge_base_statistics.py +72 -0
  349. oci/generative_ai_agent/models/knowledge_base_summary.py +0 -2
  350. oci/generative_ai_agent/models/object_storage_prefix.py +0 -2
  351. oci/generative_ai_agent/models/oci_database_config.py +0 -2
  352. oci/generative_ai_agent/models/oci_object_storage_data_source_config.py +8 -3
  353. oci/generative_ai_agent/models/oci_open_search_index_config.py +0 -2
  354. oci/generative_ai_agent/models/secret_detail.py +0 -2
  355. oci/generative_ai_agent/models/session_config.py +0 -2
  356. oci/generative_ai_agent/models/update_agent_details.py +0 -2
  357. oci/generative_ai_agent/models/update_agent_endpoint_details.py +0 -2
  358. oci/generative_ai_agent/models/update_data_source_details.py +0 -2
  359. oci/generative_ai_agent/models/update_knowledge_base_details.py +0 -2
  360. oci/generative_ai_agent/models/work_request.py +15 -5
  361. oci/generative_ai_agent/models/work_request_error.py +0 -2
  362. oci/generative_ai_agent/models/work_request_error_collection.py +0 -2
  363. oci/generative_ai_agent/models/work_request_log_entry.py +0 -2
  364. oci/generative_ai_agent/models/work_request_log_entry_collection.py +0 -2
  365. oci/generative_ai_agent/models/work_request_resource.py +0 -2
  366. oci/generative_ai_agent/models/work_request_summary.py +15 -5
  367. oci/generative_ai_agent/models/work_request_summary_collection.py +0 -2
  368. oci/generative_ai_agent_runtime/generative_ai_agent_runtime_client.py +6 -6
  369. oci/generative_ai_agent_runtime/models/chat_details.py +1 -1
  370. oci/generative_ai_agent_runtime/models/citation.py +95 -2
  371. oci/generative_ai_inference/generative_ai_inference_client.py +4 -4
  372. oci/generic_artifacts_content/generic_artifacts_content_client.py +3 -3
  373. oci/globally_distributed_database/sharded_database_service_client.py +30 -30
  374. oci/golden_gate/golden_gate_client.py +2343 -499
  375. oci/golden_gate/golden_gate_client_composite_operations.py +264 -0
  376. oci/golden_gate/models/__init__.py +71 -1
  377. oci/golden_gate/models/change_pipeline_compartment_details.py +76 -0
  378. oci/golden_gate/models/create_mysql_connection_details.py +2 -2
  379. oci/golden_gate/models/create_pipeline_details.py +402 -0
  380. oci/golden_gate/models/create_zero_etl_pipeline_details.py +142 -0
  381. oci/golden_gate/models/default_start_pipeline_details.py +51 -0
  382. oci/golden_gate/models/default_stop_pipeline_details.py +51 -0
  383. oci/golden_gate/models/default_test_pipeline_connection_details.py +88 -0
  384. oci/golden_gate/models/initial_data_load.py +143 -0
  385. oci/golden_gate/models/mapping_rule.py +152 -0
  386. oci/golden_gate/models/pipeline.py +775 -0
  387. oci/golden_gate/models/pipeline_collection.py +72 -0
  388. oci/golden_gate/models/pipeline_initialization_step.py +263 -0
  389. oci/golden_gate/models/pipeline_initialization_steps.py +72 -0
  390. oci/golden_gate/models/pipeline_running_process_collection.py +72 -0
  391. oci/golden_gate/models/pipeline_running_process_summary.py +238 -0
  392. oci/golden_gate/models/pipeline_schema_collection.py +72 -0
  393. oci/golden_gate/models/pipeline_schema_summary.py +105 -0
  394. oci/golden_gate/models/pipeline_schema_table_collection.py +134 -0
  395. oci/golden_gate/models/pipeline_schema_table_summary.py +105 -0
  396. oci/golden_gate/models/pipeline_summary.py +739 -0
  397. oci/golden_gate/models/process_options.py +142 -0
  398. oci/golden_gate/models/recipe_summary.py +239 -0
  399. oci/golden_gate/models/recipe_summary_collection.py +72 -0
  400. oci/golden_gate/models/replicate_schema_change.py +190 -0
  401. oci/golden_gate/models/source_pipeline_connection_details.py +78 -0
  402. oci/golden_gate/models/start_pipeline_details.py +101 -0
  403. oci/golden_gate/models/step_message.py +197 -0
  404. oci/golden_gate/models/stop_pipeline_details.py +101 -0
  405. oci/golden_gate/models/target_pipeline_connection_details.py +78 -0
  406. oci/golden_gate/models/test_pipeline_connection_details.py +101 -0
  407. oci/golden_gate/models/test_pipeline_connection_error.py +165 -0
  408. oci/golden_gate/models/test_pipeline_connection_result.py +119 -0
  409. oci/golden_gate/models/update_mysql_connection_details.py +2 -2
  410. oci/golden_gate/models/update_pipeline_details.py +282 -0
  411. oci/golden_gate/models/update_zero_etl_pipeline_details.py +145 -0
  412. oci/golden_gate/models/work_request.py +27 -3
  413. oci/golden_gate/models/zero_etl_pipeline.py +275 -0
  414. oci/golden_gate/models/zero_etl_pipeline_summary.py +243 -0
  415. oci/governance_rules_control_plane/governance_rule_client.py +15 -15
  416. oci/governance_rules_control_plane/work_request_client.py +5 -5
  417. oci/healthchecks/health_checks_client.py +17 -17
  418. oci/identity/identity_client.py +145 -145
  419. oci/identity_data_plane/dataplane_client.py +2 -2
  420. oci/identity_domains/identity_domains_client.py +311 -311
  421. oci/integration/integration_instance_client.py +19 -19
  422. oci/jms/java_management_service_client.py +75 -75
  423. oci/jms_java_downloads/java_download_client.py +25 -25
  424. oci/key_management/ekm_client.py +5 -5
  425. oci/key_management/kms_crypto_client.py +6 -6
  426. oci/key_management/kms_hsm_cluster_client.py +12 -12
  427. oci/key_management/kms_management_client.py +21 -21
  428. oci/key_management/kms_vault_client.py +14 -14
  429. oci/license_manager/license_manager_client.py +18 -18
  430. oci/limits/limits_client.py +4 -4
  431. oci/limits/quotas_client.py +7 -7
  432. oci/load_balancer/load_balancer_client.py +61 -61
  433. oci/lockbox/lockbox_client.py +24 -24
  434. oci/log_analytics/log_analytics_client.py +193 -193
  435. oci/logging/logging_management_client.py +30 -30
  436. oci/loggingingestion/logging_client.py +1 -1
  437. oci/loggingsearch/log_search_client.py +1 -1
  438. oci/management_agent/management_agent_client.py +28 -28
  439. oci/management_dashboard/dashx_apis_client.py +14 -14
  440. oci/marketplace/account_client.py +2 -2
  441. oci/marketplace/marketplace_client.py +30 -30
  442. oci/marketplace_private_offer/attachment_client.py +5 -5
  443. oci/marketplace_private_offer/offer_client.py +6 -6
  444. oci/marketplace_publisher/attachment_client.py +5 -5
  445. oci/marketplace_publisher/marketplace_publisher_client.py +71 -71
  446. oci/marketplace_publisher/offer_client.py +6 -6
  447. oci/media_services/media_services_client.py +60 -60
  448. oci/media_services/media_stream_client.py +2 -2
  449. oci/monitoring/monitoring_client.py +18 -18
  450. oci/mysql/channels_client.py +7 -7
  451. oci/mysql/db_backups_client.py +7 -7
  452. oci/mysql/db_system_client.py +17 -17
  453. oci/mysql/mysqlaas_client.py +7 -7
  454. oci/mysql/replicas_client.py +5 -5
  455. oci/mysql/work_requests_client.py +4 -4
  456. oci/network_firewall/network_firewall_client.py +86 -86
  457. oci/network_load_balancer/network_load_balancer_client.py +34 -34
  458. oci/nosql/nosql_client.py +24 -24
  459. oci/object_storage/object_storage_client.py +55 -55
  460. oci/object_storage/transfer/internal/multipart_object_assembler.py +15 -0
  461. oci/oce/oce_instance_client.py +10 -10
  462. oci/oci_control_center/occ_metrics_client.py +3 -3
  463. oci/ocvp/cluster_client.py +5 -5
  464. oci/ocvp/esxi_host_client.py +8 -8
  465. oci/ocvp/sddc_client.py +14 -14
  466. oci/ocvp/work_request_client.py +4 -4
  467. oci/oda/management_client.py +59 -59
  468. oci/oda/oda_client.py +17 -17
  469. oci/oda/odapackage_client.py +7 -7
  470. oci/onesubscription/billing_schedule_client.py +1 -1
  471. oci/onesubscription/commitment_client.py +2 -2
  472. oci/onesubscription/computed_usage_client.py +3 -3
  473. oci/onesubscription/invoice_summary_client.py +2 -2
  474. oci/onesubscription/organization_subscription_client.py +1 -1
  475. oci/onesubscription/ratecard_client.py +1 -1
  476. oci/onesubscription/subscribed_service_client.py +2 -2
  477. oci/onesubscription/subscription_client.py +1 -1
  478. oci/ons/notification_control_plane_client.py +6 -6
  479. oci/ons/notification_data_plane_client.py +10 -10
  480. oci/opa/opa_instance_client.py +13 -13
  481. oci/opensearch/opensearch_cluster_backup_client.py +4 -4
  482. oci/opensearch/opensearch_cluster_client.py +14 -14
  483. oci/operator_access_control/access_requests_client.py +10 -10
  484. oci/operator_access_control/operator_actions_client.py +2 -2
  485. oci/operator_access_control/operator_control_assignment_client.py +8 -8
  486. oci/operator_access_control/operator_control_client.py +6 -6
  487. oci/opsi/operations_insights_client.py +180 -180
  488. oci/optimizer/optimizer_client.py +26 -26
  489. oci/os_management/event_client.py +8 -8
  490. oci/os_management/os_management_client.py +69 -69
  491. oci/os_management_hub/event_client.py +8 -8
  492. oci/os_management_hub/lifecycle_environment_client.py +12 -12
  493. oci/os_management_hub/managed_instance_client.py +31 -31
  494. oci/os_management_hub/managed_instance_group_client.py +25 -25
  495. oci/os_management_hub/management_station_client.py +10 -10
  496. oci/os_management_hub/onboarding_client.py +6 -6
  497. oci/os_management_hub/reporting_managed_instance_client.py +3 -3
  498. oci/os_management_hub/scheduled_job_client.py +7 -7
  499. oci/os_management_hub/software_source_client.py +27 -27
  500. oci/os_management_hub/work_request_client.py +4 -4
  501. oci/osp_gateway/address_rule_service_client.py +1 -1
  502. oci/osp_gateway/address_service_client.py +2 -2
  503. oci/osp_gateway/invoice_service_client.py +5 -5
  504. oci/osp_gateway/subscription_service_client.py +5 -5
  505. oci/osub_billing_schedule/billing_schedule_client.py +1 -1
  506. oci/osub_organization_subscription/organization_subscription_client.py +1 -1
  507. oci/osub_subscription/commitment_client.py +2 -2
  508. oci/osub_subscription/ratecard_client.py +1 -1
  509. oci/osub_subscription/subscription_client.py +1 -1
  510. oci/osub_usage/computed_usage_client.py +3 -3
  511. oci/psql/postgresql_client.py +33 -33
  512. oci/queue/queue_admin_client.py +11 -11
  513. oci/queue/queue_client.py +8 -8
  514. oci/recovery/database_recovery_client.py +26 -26
  515. oci/redis/redis_cluster_client.py +12 -12
  516. oci/resource_manager/resource_manager_client.py +52 -52
  517. oci/resource_scheduler/schedule_client.py +13 -13
  518. oci/resource_search/resource_search_client.py +3 -3
  519. oci/retry/__init__.py +0 -1
  520. oci/rover/rover_bundle_client.py +8 -8
  521. oci/rover/rover_cluster_client.py +8 -8
  522. oci/rover/rover_entitlement_client.py +6 -6
  523. oci/rover/rover_node_client.py +15 -15
  524. oci/rover/shape_client.py +1 -1
  525. oci/rover/work_requests_client.py +5 -5
  526. oci/sch/connector_plugins_client.py +2 -2
  527. oci/sch/service_connector_client.py +12 -12
  528. oci/secrets/secrets_client.py +3 -3
  529. oci/security_attribute/security_attribute_client.py +18 -18
  530. oci/service_catalog/service_catalog_client.py +26 -26
  531. oci/service_manager_proxy/service_manager_proxy_client.py +2 -2
  532. oci/service_mesh/service_mesh_client.py +48 -48
  533. oci/stack_monitoring/models/__init__.py +8 -0
  534. oci/stack_monitoring/models/http_query_properties.py +212 -0
  535. oci/stack_monitoring/models/http_script_file_details.py +103 -0
  536. oci/stack_monitoring/models/http_update_query_properties.py +211 -0
  537. oci/stack_monitoring/models/jmx_query_properties.py +1 -1
  538. oci/stack_monitoring/models/jmx_update_query_properties.py +1 -1
  539. oci/stack_monitoring/models/metric_extension_query_properties.py +11 -3
  540. oci/stack_monitoring/models/metric_extension_summary.py +7 -3
  541. oci/stack_monitoring/models/metric_extension_update_query_properties.py +11 -3
  542. oci/stack_monitoring/models/os_command_query_properties.py +1 -1
  543. oci/stack_monitoring/models/os_command_update_query_properties.py +1 -1
  544. oci/stack_monitoring/models/script_file_details.py +1 -1
  545. oci/stack_monitoring/models/sql_out_param_details.py +44 -9
  546. oci/stack_monitoring/models/sql_query_properties.py +1 -1
  547. oci/stack_monitoring/models/sql_update_query_properties.py +1 -1
  548. oci/stack_monitoring/models/update_http_script_file_details.py +103 -0
  549. oci/stack_monitoring/stack_monitoring_client.py +86 -80
  550. oci/streaming/stream_admin_client.py +18 -18
  551. oci/streaming/stream_client.py +8 -8
  552. oci/tenant_manager_control_plane/domain_client.py +5 -5
  553. oci/tenant_manager_control_plane/domain_governance_client.py +5 -5
  554. oci/tenant_manager_control_plane/governance_client.py +2 -2
  555. oci/tenant_manager_control_plane/link_client.py +3 -3
  556. oci/tenant_manager_control_plane/orders_client.py +2 -2
  557. oci/tenant_manager_control_plane/organization_client.py +10 -10
  558. oci/tenant_manager_control_plane/recipient_invitation_client.py +5 -5
  559. oci/tenant_manager_control_plane/sender_invitation_client.py +5 -5
  560. oci/tenant_manager_control_plane/subscription_client.py +11 -11
  561. oci/tenant_manager_control_plane/work_request_client.py +4 -4
  562. oci/threat_intelligence/threatintel_client.py +5 -5
  563. oci/usage/resources_client.py +2 -2
  564. oci/usage/rewards_client.py +6 -6
  565. oci/usage/usagelimits_client.py +1 -1
  566. oci/usage_api/usageapi_client.py +33 -33
  567. oci/vault/vaults_client.py +13 -13
  568. oci/vbs_inst/vbs_instance_client.py +10 -10
  569. oci/version.py +1 -1
  570. oci/visual_builder/models/__init__.py +8 -4
  571. oci/visual_builder/models/create_vb_instance_details.py +29 -2
  572. oci/visual_builder/models/network_endpoint_details.py +102 -0
  573. oci/visual_builder/models/private_endpoint_details.py +144 -0
  574. oci/visual_builder/models/update_network_endpoint_details.py +102 -0
  575. oci/visual_builder/models/update_private_endpoint_details.py +113 -0
  576. oci/visual_builder/models/update_vb_instance_details.py +29 -2
  577. oci/visual_builder/models/vb_instance.py +29 -60
  578. oci/visual_builder/models/vb_instance_summary.py +29 -2
  579. oci/visual_builder/vb_instance_client.py +129 -13
  580. oci/visual_builder/vb_instance_client_composite_operations.py +39 -0
  581. oci/vn_monitoring/vn_monitoring_client.py +12 -12
  582. oci/vulnerability_scanning/vulnerability_scanning_client.py +58 -58
  583. oci/waa/waa_client.py +13 -13
  584. oci/waa/work_request_client.py +4 -4
  585. oci/waas/redirect_client.py +6 -6
  586. oci/waas/waas_client.py +66 -66
  587. oci/waf/waf_client.py +24 -24
  588. oci/work_requests/work_request_client.py +4 -4
  589. oci/zpr/zpr_client.py +15 -15
  590. {oci-2.139.0.dist-info → oci-2.141.0.dist-info}/METADATA +1 -1
  591. {oci-2.139.0.dist-info → oci-2.141.0.dist-info}/RECORD +595 -486
  592. oci/visual_builder/models/attachment_details.py +0 -218
  593. oci/visual_builder/models/idcs_info_details.py +0 -198
  594. {oci-2.139.0.dist-info → oci-2.141.0.dist-info}/LICENSE.txt +0 -0
  595. {oci-2.139.0.dist-info → oci-2.141.0.dist-info}/THIRD_PARTY_LICENSES.txt +0 -0
  596. {oci-2.139.0.dist-info → oci-2.141.0.dist-info}/WHEEL +0 -0
  597. {oci-2.139.0.dist-info → oci-2.141.0.dist-info}/top_level.txt +0 -0
@@ -160,7 +160,7 @@ class DbManagementClient(object):
160
160
  :rtype: :class:`~oci.response.Response`
161
161
 
162
162
  :example:
163
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/add_data_files.py.html>`__ to see an example of how to use add_data_files API.
163
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/add_data_files.py.html>`__ to see an example of how to use add_data_files API.
164
164
  """
165
165
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
166
166
  required_arguments = ['managedDatabaseId', 'tablespaceName']
@@ -276,7 +276,7 @@ class DbManagementClient(object):
276
276
  :rtype: :class:`~oci.response.Response`
277
277
 
278
278
  :example:
279
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/add_managed_database_to_managed_database_group.py.html>`__ to see an example of how to use add_managed_database_to_managed_database_group API.
279
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/add_managed_database_to_managed_database_group.py.html>`__ to see an example of how to use add_managed_database_to_managed_database_group API.
280
280
  """
281
281
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
282
282
  required_arguments = ['managedDatabaseGroupId']
@@ -404,7 +404,7 @@ class DbManagementClient(object):
404
404
  :rtype: :class:`~oci.response.Response`
405
405
 
406
406
  :example:
407
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/addm_tasks.py.html>`__ to see an example of how to use addm_tasks API.
407
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/addm_tasks.py.html>`__ to see an example of how to use addm_tasks API.
408
408
  """
409
409
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
410
410
  required_arguments = ['managedDatabaseId', 'timeStart', 'timeEnd']
@@ -556,7 +556,7 @@ class DbManagementClient(object):
556
556
  :rtype: :class:`~oci.response.Response`
557
557
 
558
558
  :example:
559
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/change_database_parameters.py.html>`__ to see an example of how to use change_database_parameters API.
559
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/change_database_parameters.py.html>`__ to see an example of how to use change_database_parameters API.
560
560
  """
561
561
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
562
562
  required_arguments = ['managedDatabaseId']
@@ -676,7 +676,7 @@ class DbManagementClient(object):
676
676
  :rtype: :class:`~oci.response.Response`
677
677
 
678
678
  :example:
679
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/change_db_management_private_endpoint_compartment.py.html>`__ to see an example of how to use change_db_management_private_endpoint_compartment API.
679
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/change_db_management_private_endpoint_compartment.py.html>`__ to see an example of how to use change_db_management_private_endpoint_compartment API.
680
680
  """
681
681
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
682
682
  required_arguments = ['dbManagementPrivateEndpointId']
@@ -798,7 +798,7 @@ class DbManagementClient(object):
798
798
  :rtype: :class:`~oci.response.Response`
799
799
 
800
800
  :example:
801
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/change_external_db_system_compartment.py.html>`__ to see an example of how to use change_external_db_system_compartment API.
801
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/change_external_db_system_compartment.py.html>`__ to see an example of how to use change_external_db_system_compartment API.
802
802
  """
803
803
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
804
804
  required_arguments = ['externalDbSystemId']
@@ -920,7 +920,7 @@ class DbManagementClient(object):
920
920
  :rtype: :class:`~oci.response.Response`
921
921
 
922
922
  :example:
923
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/change_external_exadata_infrastructure_compartment.py.html>`__ to see an example of how to use change_external_exadata_infrastructure_compartment API.
923
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/change_external_exadata_infrastructure_compartment.py.html>`__ to see an example of how to use change_external_exadata_infrastructure_compartment API.
924
924
  """
925
925
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
926
926
  required_arguments = ['externalExadataInfrastructureId']
@@ -1042,7 +1042,7 @@ class DbManagementClient(object):
1042
1042
  :rtype: :class:`~oci.response.Response`
1043
1043
 
1044
1044
  :example:
1045
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/change_job_compartment.py.html>`__ to see an example of how to use change_job_compartment API.
1045
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/change_job_compartment.py.html>`__ to see an example of how to use change_job_compartment API.
1046
1046
  """
1047
1047
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
1048
1048
  required_arguments = ['jobId']
@@ -1166,7 +1166,7 @@ class DbManagementClient(object):
1166
1166
  :rtype: :class:`~oci.response.Response`
1167
1167
 
1168
1168
  :example:
1169
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/change_managed_database_group_compartment.py.html>`__ to see an example of how to use change_managed_database_group_compartment API.
1169
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/change_managed_database_group_compartment.py.html>`__ to see an example of how to use change_managed_database_group_compartment API.
1170
1170
  """
1171
1171
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
1172
1172
  required_arguments = ['managedDatabaseGroupId']
@@ -1290,7 +1290,7 @@ class DbManagementClient(object):
1290
1290
  :rtype: :class:`~oci.response.Response`
1291
1291
 
1292
1292
  :example:
1293
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/change_named_credential_compartment.py.html>`__ to see an example of how to use change_named_credential_compartment API.
1293
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/change_named_credential_compartment.py.html>`__ to see an example of how to use change_named_credential_compartment API.
1294
1294
  """
1295
1295
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
1296
1296
  required_arguments = ['namedCredentialId']
@@ -1400,7 +1400,7 @@ class DbManagementClient(object):
1400
1400
  :rtype: :class:`~oci.response.Response`
1401
1401
 
1402
1402
  :example:
1403
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/change_plan_retention.py.html>`__ to see an example of how to use change_plan_retention API.
1403
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/change_plan_retention.py.html>`__ to see an example of how to use change_plan_retention API.
1404
1404
  """
1405
1405
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
1406
1406
  required_arguments = ['managedDatabaseId']
@@ -1502,7 +1502,7 @@ class DbManagementClient(object):
1502
1502
  :rtype: :class:`~oci.response.Response`
1503
1503
 
1504
1504
  :example:
1505
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/change_space_budget.py.html>`__ to see an example of how to use change_space_budget API.
1505
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/change_space_budget.py.html>`__ to see an example of how to use change_space_budget API.
1506
1506
  """
1507
1507
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
1508
1508
  required_arguments = ['managedDatabaseId']
@@ -1603,7 +1603,7 @@ class DbManagementClient(object):
1603
1603
  :rtype: :class:`~oci.response.Response`
1604
1604
 
1605
1605
  :example:
1606
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/change_sql_plan_baselines_attributes.py.html>`__ to see an example of how to use change_sql_plan_baselines_attributes API.
1606
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/change_sql_plan_baselines_attributes.py.html>`__ to see an example of how to use change_sql_plan_baselines_attributes API.
1607
1607
  """
1608
1608
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
1609
1609
  required_arguments = ['managedDatabaseId']
@@ -1716,7 +1716,7 @@ class DbManagementClient(object):
1716
1716
  :rtype: :class:`~oci.response.Response`
1717
1717
 
1718
1718
  :example:
1719
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/check_external_db_system_connector_connection_status.py.html>`__ to see an example of how to use check_external_db_system_connector_connection_status API.
1719
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/check_external_db_system_connector_connection_status.py.html>`__ to see an example of how to use check_external_db_system_connector_connection_status API.
1720
1720
  """
1721
1721
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
1722
1722
  required_arguments = ['externalDbSystemConnectorId']
@@ -1835,7 +1835,7 @@ class DbManagementClient(object):
1835
1835
  :rtype: :class:`~oci.response.Response`
1836
1836
 
1837
1837
  :example:
1838
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/check_external_exadata_storage_connector.py.html>`__ to see an example of how to use check_external_exadata_storage_connector API.
1838
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/check_external_exadata_storage_connector.py.html>`__ to see an example of how to use check_external_exadata_storage_connector API.
1839
1839
  """
1840
1840
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
1841
1841
  required_arguments = ['externalExadataStorageConnectorId']
@@ -1944,7 +1944,7 @@ class DbManagementClient(object):
1944
1944
  :rtype: :class:`~oci.response.Response`
1945
1945
 
1946
1946
  :example:
1947
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/configure_automatic_capture_filters.py.html>`__ to see an example of how to use configure_automatic_capture_filters API.
1947
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/configure_automatic_capture_filters.py.html>`__ to see an example of how to use configure_automatic_capture_filters API.
1948
1948
  """
1949
1949
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
1950
1950
  required_arguments = ['managedDatabaseId']
@@ -2047,7 +2047,7 @@ class DbManagementClient(object):
2047
2047
  :rtype: :class:`~oci.response.Response`
2048
2048
 
2049
2049
  :example:
2050
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/configure_automatic_spm_evolve_advisor_task.py.html>`__ to see an example of how to use configure_automatic_spm_evolve_advisor_task API.
2050
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/configure_automatic_spm_evolve_advisor_task.py.html>`__ to see an example of how to use configure_automatic_spm_evolve_advisor_task API.
2051
2051
  """
2052
2052
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
2053
2053
  required_arguments = ['managedDatabaseId']
@@ -2150,7 +2150,7 @@ class DbManagementClient(object):
2150
2150
  :rtype: :class:`~oci.response.Response`
2151
2151
 
2152
2152
  :example:
2153
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/create_db_management_private_endpoint.py.html>`__ to see an example of how to use create_db_management_private_endpoint API.
2153
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/create_db_management_private_endpoint.py.html>`__ to see an example of how to use create_db_management_private_endpoint API.
2154
2154
  """
2155
2155
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
2156
2156
  required_arguments = []
@@ -2246,7 +2246,7 @@ class DbManagementClient(object):
2246
2246
  :rtype: :class:`~oci.response.Response`
2247
2247
 
2248
2248
  :example:
2249
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/create_external_db_system.py.html>`__ to see an example of how to use create_external_db_system API.
2249
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/create_external_db_system.py.html>`__ to see an example of how to use create_external_db_system API.
2250
2250
  """
2251
2251
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
2252
2252
  required_arguments = []
@@ -2344,7 +2344,7 @@ class DbManagementClient(object):
2344
2344
  :rtype: :class:`~oci.response.Response`
2345
2345
 
2346
2346
  :example:
2347
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/create_external_db_system_connector.py.html>`__ to see an example of how to use create_external_db_system_connector API.
2347
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/create_external_db_system_connector.py.html>`__ to see an example of how to use create_external_db_system_connector API.
2348
2348
  """
2349
2349
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
2350
2350
  required_arguments = []
@@ -2442,7 +2442,7 @@ class DbManagementClient(object):
2442
2442
  :rtype: :class:`~oci.response.Response`
2443
2443
 
2444
2444
  :example:
2445
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/create_external_db_system_discovery.py.html>`__ to see an example of how to use create_external_db_system_discovery API.
2445
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/create_external_db_system_discovery.py.html>`__ to see an example of how to use create_external_db_system_discovery API.
2446
2446
  """
2447
2447
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
2448
2448
  required_arguments = []
@@ -2545,7 +2545,7 @@ class DbManagementClient(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.139.0/databasemanagement/create_external_exadata_infrastructure.py.html>`__ to see an example of how to use create_external_exadata_infrastructure API.
2548
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/create_external_exadata_infrastructure.py.html>`__ to see an example of how to use create_external_exadata_infrastructure API.
2549
2549
  """
2550
2550
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
2551
2551
  required_arguments = []
@@ -2643,7 +2643,7 @@ class DbManagementClient(object):
2643
2643
  :rtype: :class:`~oci.response.Response`
2644
2644
 
2645
2645
  :example:
2646
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/create_external_exadata_storage_connector.py.html>`__ to see an example of how to use create_external_exadata_storage_connector API.
2646
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/create_external_exadata_storage_connector.py.html>`__ to see an example of how to use create_external_exadata_storage_connector API.
2647
2647
  """
2648
2648
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
2649
2649
  required_arguments = []
@@ -2743,7 +2743,7 @@ class DbManagementClient(object):
2743
2743
  :rtype: :class:`~oci.response.Response`
2744
2744
 
2745
2745
  :example:
2746
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/create_job.py.html>`__ to see an example of how to use create_job API.
2746
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/create_job.py.html>`__ to see an example of how to use create_job API.
2747
2747
  """
2748
2748
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
2749
2749
  required_arguments = []
@@ -2840,7 +2840,7 @@ class DbManagementClient(object):
2840
2840
  :rtype: :class:`~oci.response.Response`
2841
2841
 
2842
2842
  :example:
2843
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/create_managed_database_group.py.html>`__ to see an example of how to use create_managed_database_group API.
2843
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/create_managed_database_group.py.html>`__ to see an example of how to use create_managed_database_group API.
2844
2844
  """
2845
2845
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
2846
2846
  required_arguments = []
@@ -2936,7 +2936,7 @@ class DbManagementClient(object):
2936
2936
  :rtype: :class:`~oci.response.Response`
2937
2937
 
2938
2938
  :example:
2939
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/create_named_credential.py.html>`__ to see an example of how to use create_named_credential API.
2939
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/create_named_credential.py.html>`__ to see an example of how to use create_named_credential API.
2940
2940
  """
2941
2941
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
2942
2942
  required_arguments = []
@@ -3037,7 +3037,7 @@ class DbManagementClient(object):
3037
3037
  :rtype: :class:`~oci.response.Response`
3038
3038
 
3039
3039
  :example:
3040
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/create_tablespace.py.html>`__ to see an example of how to use create_tablespace API.
3040
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/create_tablespace.py.html>`__ to see an example of how to use create_tablespace API.
3041
3041
  """
3042
3042
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
3043
3043
  required_arguments = ['managedDatabaseId']
@@ -3147,7 +3147,7 @@ class DbManagementClient(object):
3147
3147
  :rtype: :class:`~oci.response.Response`
3148
3148
 
3149
3149
  :example:
3150
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/delete_db_management_private_endpoint.py.html>`__ to see an example of how to use delete_db_management_private_endpoint API.
3150
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/delete_db_management_private_endpoint.py.html>`__ to see an example of how to use delete_db_management_private_endpoint API.
3151
3151
  """
3152
3152
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
3153
3153
  required_arguments = ['dbManagementPrivateEndpointId']
@@ -3252,7 +3252,7 @@ class DbManagementClient(object):
3252
3252
  :rtype: :class:`~oci.response.Response`
3253
3253
 
3254
3254
  :example:
3255
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/delete_external_db_system.py.html>`__ to see an example of how to use delete_external_db_system API.
3255
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/delete_external_db_system.py.html>`__ to see an example of how to use delete_external_db_system API.
3256
3256
  """
3257
3257
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
3258
3258
  required_arguments = ['externalDbSystemId']
@@ -3357,7 +3357,7 @@ class DbManagementClient(object):
3357
3357
  :rtype: :class:`~oci.response.Response`
3358
3358
 
3359
3359
  :example:
3360
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/delete_external_db_system_connector.py.html>`__ to see an example of how to use delete_external_db_system_connector API.
3360
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/delete_external_db_system_connector.py.html>`__ to see an example of how to use delete_external_db_system_connector API.
3361
3361
  """
3362
3362
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
3363
3363
  required_arguments = ['externalDbSystemConnectorId']
@@ -3462,7 +3462,7 @@ class DbManagementClient(object):
3462
3462
  :rtype: :class:`~oci.response.Response`
3463
3463
 
3464
3464
  :example:
3465
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/delete_external_db_system_discovery.py.html>`__ to see an example of how to use delete_external_db_system_discovery API.
3465
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/delete_external_db_system_discovery.py.html>`__ to see an example of how to use delete_external_db_system_discovery API.
3466
3466
  """
3467
3467
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
3468
3468
  required_arguments = ['externalDbSystemDiscoveryId']
@@ -3567,7 +3567,7 @@ class DbManagementClient(object):
3567
3567
  :rtype: :class:`~oci.response.Response`
3568
3568
 
3569
3569
  :example:
3570
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/delete_external_exadata_infrastructure.py.html>`__ to see an example of how to use delete_external_exadata_infrastructure API.
3570
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/delete_external_exadata_infrastructure.py.html>`__ to see an example of how to use delete_external_exadata_infrastructure API.
3571
3571
  """
3572
3572
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
3573
3573
  required_arguments = ['externalExadataInfrastructureId']
@@ -3672,7 +3672,7 @@ class DbManagementClient(object):
3672
3672
  :rtype: :class:`~oci.response.Response`
3673
3673
 
3674
3674
  :example:
3675
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/delete_external_exadata_storage_connector.py.html>`__ to see an example of how to use delete_external_exadata_storage_connector API.
3675
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/delete_external_exadata_storage_connector.py.html>`__ to see an example of how to use delete_external_exadata_storage_connector API.
3676
3676
  """
3677
3677
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
3678
3678
  required_arguments = ['externalExadataStorageConnectorId']
@@ -3775,7 +3775,7 @@ class DbManagementClient(object):
3775
3775
  :rtype: :class:`~oci.response.Response`
3776
3776
 
3777
3777
  :example:
3778
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/delete_job.py.html>`__ to see an example of how to use delete_job API.
3778
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/delete_job.py.html>`__ to see an example of how to use delete_job API.
3779
3779
  """
3780
3780
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
3781
3781
  required_arguments = ['jobId']
@@ -3881,7 +3881,7 @@ class DbManagementClient(object):
3881
3881
  :rtype: :class:`~oci.response.Response`
3882
3882
 
3883
3883
  :example:
3884
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/delete_managed_database_group.py.html>`__ to see an example of how to use delete_managed_database_group API.
3884
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/delete_managed_database_group.py.html>`__ to see an example of how to use delete_managed_database_group API.
3885
3885
  """
3886
3886
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
3887
3887
  required_arguments = ['managedDatabaseGroupId']
@@ -3986,7 +3986,7 @@ class DbManagementClient(object):
3986
3986
  :rtype: :class:`~oci.response.Response`
3987
3987
 
3988
3988
  :example:
3989
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/delete_named_credential.py.html>`__ to see an example of how to use delete_named_credential API.
3989
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/delete_named_credential.py.html>`__ to see an example of how to use delete_named_credential API.
3990
3990
  """
3991
3991
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
3992
3992
  required_arguments = ['namedCredentialId']
@@ -4087,7 +4087,7 @@ class DbManagementClient(object):
4087
4087
  :rtype: :class:`~oci.response.Response`
4088
4088
 
4089
4089
  :example:
4090
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/delete_preferred_credential.py.html>`__ to see an example of how to use delete_preferred_credential API.
4090
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/delete_preferred_credential.py.html>`__ to see an example of how to use delete_preferred_credential API.
4091
4091
  """
4092
4092
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
4093
4093
  required_arguments = ['managedDatabaseId', 'credentialName']
@@ -4187,7 +4187,7 @@ class DbManagementClient(object):
4187
4187
  :rtype: :class:`~oci.response.Response`
4188
4188
 
4189
4189
  :example:
4190
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/disable_automatic_initial_plan_capture.py.html>`__ to see an example of how to use disable_automatic_initial_plan_capture API.
4190
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/disable_automatic_initial_plan_capture.py.html>`__ to see an example of how to use disable_automatic_initial_plan_capture API.
4191
4191
  """
4192
4192
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
4193
4193
  required_arguments = ['managedDatabaseId']
@@ -4291,7 +4291,7 @@ class DbManagementClient(object):
4291
4291
  :rtype: :class:`~oci.response.Response`
4292
4292
 
4293
4293
  :example:
4294
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/disable_automatic_spm_evolve_advisor_task.py.html>`__ to see an example of how to use disable_automatic_spm_evolve_advisor_task API.
4294
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/disable_automatic_spm_evolve_advisor_task.py.html>`__ to see an example of how to use disable_automatic_spm_evolve_advisor_task API.
4295
4295
  """
4296
4296
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
4297
4297
  required_arguments = ['managedDatabaseId']
@@ -4406,7 +4406,7 @@ class DbManagementClient(object):
4406
4406
  :rtype: :class:`~oci.response.Response`
4407
4407
 
4408
4408
  :example:
4409
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/disable_autonomous_database_management_feature.py.html>`__ to see an example of how to use disable_autonomous_database_management_feature API.
4409
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/disable_autonomous_database_management_feature.py.html>`__ to see an example of how to use disable_autonomous_database_management_feature API.
4410
4410
  """
4411
4411
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
4412
4412
  required_arguments = ['autonomousDatabaseId']
@@ -4528,7 +4528,7 @@ class DbManagementClient(object):
4528
4528
  :rtype: :class:`~oci.response.Response`
4529
4529
 
4530
4530
  :example:
4531
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/disable_database_management_feature.py.html>`__ to see an example of how to use disable_database_management_feature API.
4531
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/disable_database_management_feature.py.html>`__ to see an example of how to use disable_database_management_feature API.
4532
4532
  """
4533
4533
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
4534
4534
  required_arguments = ['databaseId']
@@ -4650,7 +4650,7 @@ class DbManagementClient(object):
4650
4650
  :rtype: :class:`~oci.response.Response`
4651
4651
 
4652
4652
  :example:
4653
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/disable_external_container_database_management_feature.py.html>`__ to see an example of how to use disable_external_container_database_management_feature API.
4653
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/disable_external_container_database_management_feature.py.html>`__ to see an example of how to use disable_external_container_database_management_feature API.
4654
4654
  """
4655
4655
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
4656
4656
  required_arguments = ['externalContainerDatabaseId']
@@ -4770,7 +4770,7 @@ class DbManagementClient(object):
4770
4770
  :rtype: :class:`~oci.response.Response`
4771
4771
 
4772
4772
  :example:
4773
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/disable_external_db_system_database_management.py.html>`__ to see an example of how to use disable_external_db_system_database_management API.
4773
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/disable_external_db_system_database_management.py.html>`__ to see an example of how to use disable_external_db_system_database_management API.
4774
4774
  """
4775
4775
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
4776
4776
  required_arguments = ['externalDbSystemId']
@@ -4888,7 +4888,7 @@ class DbManagementClient(object):
4888
4888
  :rtype: :class:`~oci.response.Response`
4889
4889
 
4890
4890
  :example:
4891
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/disable_external_db_system_stack_monitoring.py.html>`__ to see an example of how to use disable_external_db_system_stack_monitoring API.
4891
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/disable_external_db_system_stack_monitoring.py.html>`__ to see an example of how to use disable_external_db_system_stack_monitoring API.
4892
4892
  """
4893
4893
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
4894
4894
  required_arguments = ['externalDbSystemId']
@@ -5012,7 +5012,7 @@ class DbManagementClient(object):
5012
5012
  :rtype: :class:`~oci.response.Response`
5013
5013
 
5014
5014
  :example:
5015
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/disable_external_exadata_infrastructure_management.py.html>`__ to see an example of how to use disable_external_exadata_infrastructure_management API.
5015
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/disable_external_exadata_infrastructure_management.py.html>`__ to see an example of how to use disable_external_exadata_infrastructure_management API.
5016
5016
  """
5017
5017
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
5018
5018
  required_arguments = ['externalExadataInfrastructureId']
@@ -5132,7 +5132,7 @@ class DbManagementClient(object):
5132
5132
  :rtype: :class:`~oci.response.Response`
5133
5133
 
5134
5134
  :example:
5135
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/disable_external_non_container_database_management_feature.py.html>`__ to see an example of how to use disable_external_non_container_database_management_feature API.
5135
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/disable_external_non_container_database_management_feature.py.html>`__ to see an example of how to use disable_external_non_container_database_management_feature API.
5136
5136
  """
5137
5137
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
5138
5138
  required_arguments = ['externalNonContainerDatabaseId']
@@ -5254,7 +5254,7 @@ class DbManagementClient(object):
5254
5254
  :rtype: :class:`~oci.response.Response`
5255
5255
 
5256
5256
  :example:
5257
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/disable_external_pluggable_database_management_feature.py.html>`__ to see an example of how to use disable_external_pluggable_database_management_feature API.
5257
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/disable_external_pluggable_database_management_feature.py.html>`__ to see an example of how to use disable_external_pluggable_database_management_feature API.
5258
5258
  """
5259
5259
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
5260
5260
  required_arguments = ['externalPluggableDatabaseId']
@@ -5365,7 +5365,7 @@ class DbManagementClient(object):
5365
5365
  :rtype: :class:`~oci.response.Response`
5366
5366
 
5367
5367
  :example:
5368
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/disable_high_frequency_automatic_spm_evolve_advisor_task.py.html>`__ to see an example of how to use disable_high_frequency_automatic_spm_evolve_advisor_task API.
5368
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/disable_high_frequency_automatic_spm_evolve_advisor_task.py.html>`__ to see an example of how to use disable_high_frequency_automatic_spm_evolve_advisor_task API.
5369
5369
  """
5370
5370
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
5371
5371
  required_arguments = ['managedDatabaseId']
@@ -5480,7 +5480,7 @@ class DbManagementClient(object):
5480
5480
  :rtype: :class:`~oci.response.Response`
5481
5481
 
5482
5482
  :example:
5483
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/disable_pluggable_database_management_feature.py.html>`__ to see an example of how to use disable_pluggable_database_management_feature API.
5483
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/disable_pluggable_database_management_feature.py.html>`__ to see an example of how to use disable_pluggable_database_management_feature API.
5484
5484
  """
5485
5485
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
5486
5486
  required_arguments = ['pluggableDatabaseId']
@@ -5590,7 +5590,7 @@ class DbManagementClient(object):
5590
5590
  :rtype: :class:`~oci.response.Response`
5591
5591
 
5592
5592
  :example:
5593
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/disable_sql_plan_baselines_usage.py.html>`__ to see an example of how to use disable_sql_plan_baselines_usage API.
5593
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/disable_sql_plan_baselines_usage.py.html>`__ to see an example of how to use disable_sql_plan_baselines_usage API.
5594
5594
  """
5595
5595
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
5596
5596
  required_arguments = ['managedDatabaseId']
@@ -5718,7 +5718,7 @@ class DbManagementClient(object):
5718
5718
  :rtype: :class:`~oci.response.Response`
5719
5719
 
5720
5720
  :example:
5721
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/discover_external_exadata_infrastructure.py.html>`__ to see an example of how to use discover_external_exadata_infrastructure API.
5721
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/discover_external_exadata_infrastructure.py.html>`__ to see an example of how to use discover_external_exadata_infrastructure API.
5722
5722
  """
5723
5723
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
5724
5724
  required_arguments = []
@@ -5816,7 +5816,7 @@ class DbManagementClient(object):
5816
5816
  :rtype: :class:`~oci.response.Response`
5817
5817
 
5818
5818
  :example:
5819
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/drop_sql_plan_baselines.py.html>`__ to see an example of how to use drop_sql_plan_baselines API.
5819
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/drop_sql_plan_baselines.py.html>`__ to see an example of how to use drop_sql_plan_baselines API.
5820
5820
  """
5821
5821
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
5822
5822
  required_arguments = ['managedDatabaseId']
@@ -5927,7 +5927,7 @@ class DbManagementClient(object):
5927
5927
  :rtype: :class:`~oci.response.Response`
5928
5928
 
5929
5929
  :example:
5930
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/drop_tablespace.py.html>`__ to see an example of how to use drop_tablespace API.
5930
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/drop_tablespace.py.html>`__ to see an example of how to use drop_tablespace API.
5931
5931
  """
5932
5932
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
5933
5933
  required_arguments = ['managedDatabaseId', 'tablespaceName']
@@ -6041,7 +6041,7 @@ class DbManagementClient(object):
6041
6041
  :rtype: :class:`~oci.response.Response`
6042
6042
 
6043
6043
  :example:
6044
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/enable_automatic_initial_plan_capture.py.html>`__ to see an example of how to use enable_automatic_initial_plan_capture API.
6044
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/enable_automatic_initial_plan_capture.py.html>`__ to see an example of how to use enable_automatic_initial_plan_capture API.
6045
6045
  """
6046
6046
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
6047
6047
  required_arguments = ['managedDatabaseId']
@@ -6154,7 +6154,7 @@ class DbManagementClient(object):
6154
6154
  :rtype: :class:`~oci.response.Response`
6155
6155
 
6156
6156
  :example:
6157
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/enable_automatic_spm_evolve_advisor_task.py.html>`__ to see an example of how to use enable_automatic_spm_evolve_advisor_task API.
6157
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/enable_automatic_spm_evolve_advisor_task.py.html>`__ to see an example of how to use enable_automatic_spm_evolve_advisor_task API.
6158
6158
  """
6159
6159
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
6160
6160
  required_arguments = ['managedDatabaseId']
@@ -6269,7 +6269,7 @@ class DbManagementClient(object):
6269
6269
  :rtype: :class:`~oci.response.Response`
6270
6270
 
6271
6271
  :example:
6272
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/enable_autonomous_database_management_feature.py.html>`__ to see an example of how to use enable_autonomous_database_management_feature API.
6272
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/enable_autonomous_database_management_feature.py.html>`__ to see an example of how to use enable_autonomous_database_management_feature API.
6273
6273
  """
6274
6274
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
6275
6275
  required_arguments = ['autonomousDatabaseId']
@@ -6391,7 +6391,7 @@ class DbManagementClient(object):
6391
6391
  :rtype: :class:`~oci.response.Response`
6392
6392
 
6393
6393
  :example:
6394
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/enable_database_management_feature.py.html>`__ to see an example of how to use enable_database_management_feature API.
6394
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/enable_database_management_feature.py.html>`__ to see an example of how to use enable_database_management_feature API.
6395
6395
  """
6396
6396
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
6397
6397
  required_arguments = ['databaseId']
@@ -6513,7 +6513,7 @@ class DbManagementClient(object):
6513
6513
  :rtype: :class:`~oci.response.Response`
6514
6514
 
6515
6515
  :example:
6516
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/enable_external_container_database_management_feature.py.html>`__ to see an example of how to use enable_external_container_database_management_feature API.
6516
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/enable_external_container_database_management_feature.py.html>`__ to see an example of how to use enable_external_container_database_management_feature API.
6517
6517
  """
6518
6518
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
6519
6519
  required_arguments = ['externalContainerDatabaseId']
@@ -6636,7 +6636,7 @@ class DbManagementClient(object):
6636
6636
  :rtype: :class:`~oci.response.Response`
6637
6637
 
6638
6638
  :example:
6639
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/enable_external_db_system_database_management.py.html>`__ to see an example of how to use enable_external_db_system_database_management API.
6639
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/enable_external_db_system_database_management.py.html>`__ to see an example of how to use enable_external_db_system_database_management API.
6640
6640
  """
6641
6641
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
6642
6642
  required_arguments = ['externalDbSystemId']
@@ -6759,7 +6759,7 @@ class DbManagementClient(object):
6759
6759
  :rtype: :class:`~oci.response.Response`
6760
6760
 
6761
6761
  :example:
6762
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/enable_external_db_system_stack_monitoring.py.html>`__ to see an example of how to use enable_external_db_system_stack_monitoring API.
6762
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/enable_external_db_system_stack_monitoring.py.html>`__ to see an example of how to use enable_external_db_system_stack_monitoring API.
6763
6763
  """
6764
6764
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
6765
6765
  required_arguments = ['externalDbSystemId']
@@ -6886,7 +6886,7 @@ class DbManagementClient(object):
6886
6886
  :rtype: :class:`~oci.response.Response`
6887
6887
 
6888
6888
  :example:
6889
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/enable_external_exadata_infrastructure_management.py.html>`__ to see an example of how to use enable_external_exadata_infrastructure_management API.
6889
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/enable_external_exadata_infrastructure_management.py.html>`__ to see an example of how to use enable_external_exadata_infrastructure_management API.
6890
6890
  """
6891
6891
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
6892
6892
  required_arguments = ['externalExadataInfrastructureId']
@@ -7008,7 +7008,7 @@ class DbManagementClient(object):
7008
7008
  :rtype: :class:`~oci.response.Response`
7009
7009
 
7010
7010
  :example:
7011
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/enable_external_non_container_database_management_feature.py.html>`__ to see an example of how to use enable_external_non_container_database_management_feature API.
7011
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/enable_external_non_container_database_management_feature.py.html>`__ to see an example of how to use enable_external_non_container_database_management_feature API.
7012
7012
  """
7013
7013
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
7014
7014
  required_arguments = ['externalNonContainerDatabaseId']
@@ -7130,7 +7130,7 @@ class DbManagementClient(object):
7130
7130
  :rtype: :class:`~oci.response.Response`
7131
7131
 
7132
7132
  :example:
7133
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/enable_external_pluggable_database_management_feature.py.html>`__ to see an example of how to use enable_external_pluggable_database_management_feature API.
7133
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/enable_external_pluggable_database_management_feature.py.html>`__ to see an example of how to use enable_external_pluggable_database_management_feature API.
7134
7134
  """
7135
7135
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
7136
7136
  required_arguments = ['externalPluggableDatabaseId']
@@ -7246,7 +7246,7 @@ class DbManagementClient(object):
7246
7246
  :rtype: :class:`~oci.response.Response`
7247
7247
 
7248
7248
  :example:
7249
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/enable_high_frequency_automatic_spm_evolve_advisor_task.py.html>`__ to see an example of how to use enable_high_frequency_automatic_spm_evolve_advisor_task API.
7249
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/enable_high_frequency_automatic_spm_evolve_advisor_task.py.html>`__ to see an example of how to use enable_high_frequency_automatic_spm_evolve_advisor_task API.
7250
7250
  """
7251
7251
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
7252
7252
  required_arguments = ['managedDatabaseId']
@@ -7361,7 +7361,7 @@ class DbManagementClient(object):
7361
7361
  :rtype: :class:`~oci.response.Response`
7362
7362
 
7363
7363
  :example:
7364
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/enable_pluggable_database_management_feature.py.html>`__ to see an example of how to use enable_pluggable_database_management_feature API.
7364
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/enable_pluggable_database_management_feature.py.html>`__ to see an example of how to use enable_pluggable_database_management_feature API.
7365
7365
  """
7366
7366
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
7367
7367
  required_arguments = ['pluggableDatabaseId']
@@ -7472,7 +7472,7 @@ class DbManagementClient(object):
7472
7472
  :rtype: :class:`~oci.response.Response`
7473
7473
 
7474
7474
  :example:
7475
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/enable_sql_plan_baselines_usage.py.html>`__ to see an example of how to use enable_sql_plan_baselines_usage API.
7475
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/enable_sql_plan_baselines_usage.py.html>`__ to see an example of how to use enable_sql_plan_baselines_usage API.
7476
7476
  """
7477
7477
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
7478
7478
  required_arguments = ['managedDatabaseId']
@@ -7580,7 +7580,7 @@ class DbManagementClient(object):
7580
7580
  :rtype: :class:`~oci.response.Response`
7581
7581
 
7582
7582
  :example:
7583
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/generate_awr_snapshot.py.html>`__ to see an example of how to use generate_awr_snapshot API.
7583
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/generate_awr_snapshot.py.html>`__ to see an example of how to use generate_awr_snapshot API.
7584
7584
  """
7585
7585
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
7586
7586
  required_arguments = ['managedDatabaseId']
@@ -7728,7 +7728,7 @@ class DbManagementClient(object):
7728
7728
  :rtype: :class:`~oci.response.Response`
7729
7729
 
7730
7730
  :example:
7731
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/get_awr_db_report.py.html>`__ to see an example of how to use get_awr_db_report API.
7731
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/get_awr_db_report.py.html>`__ to see an example of how to use get_awr_db_report API.
7732
7732
  """
7733
7733
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
7734
7734
  required_arguments = ['managedDatabaseId', 'awrDbId']
@@ -7911,7 +7911,7 @@ class DbManagementClient(object):
7911
7911
  :rtype: :class:`~oci.response.Response`
7912
7912
 
7913
7913
  :example:
7914
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/get_awr_db_sql_report.py.html>`__ to see an example of how to use get_awr_db_sql_report API.
7914
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/get_awr_db_sql_report.py.html>`__ to see an example of how to use get_awr_db_sql_report API.
7915
7915
  """
7916
7916
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
7917
7917
  required_arguments = ['managedDatabaseId', 'awrDbId', 'sqlId']
@@ -8053,7 +8053,7 @@ class DbManagementClient(object):
8053
8053
  :rtype: :class:`~oci.response.Response`
8054
8054
 
8055
8055
  :example:
8056
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/get_cluster_cache_metric.py.html>`__ to see an example of how to use get_cluster_cache_metric API.
8056
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/get_cluster_cache_metric.py.html>`__ to see an example of how to use get_cluster_cache_metric API.
8057
8057
  """
8058
8058
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
8059
8059
  required_arguments = ['managedDatabaseId', 'startTime', 'endTime']
@@ -8235,7 +8235,7 @@ class DbManagementClient(object):
8235
8235
  :rtype: :class:`~oci.response.Response`
8236
8236
 
8237
8237
  :example:
8238
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/get_database_fleet_health_metrics.py.html>`__ to see an example of how to use get_database_fleet_health_metrics API.
8238
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/get_database_fleet_health_metrics.py.html>`__ to see an example of how to use get_database_fleet_health_metrics API.
8239
8239
  """
8240
8240
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
8241
8241
  required_arguments = ['compareBaselineTime', 'compareTargetTime']
@@ -8390,7 +8390,7 @@ class DbManagementClient(object):
8390
8390
  :rtype: :class:`~oci.response.Response`
8391
8391
 
8392
8392
  :example:
8393
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/get_database_home_metrics.py.html>`__ to see an example of how to use get_database_home_metrics API.
8393
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/get_database_home_metrics.py.html>`__ to see an example of how to use get_database_home_metrics API.
8394
8394
  """
8395
8395
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
8396
8396
  required_arguments = ['managedDatabaseId', 'startTime', 'endTime']
@@ -8504,7 +8504,7 @@ class DbManagementClient(object):
8504
8504
  :rtype: :class:`~oci.response.Response`
8505
8505
 
8506
8506
  :example:
8507
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/get_dataguard_performance_metrics.py.html>`__ to see an example of how to use get_dataguard_performance_metrics API.
8507
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/get_dataguard_performance_metrics.py.html>`__ to see an example of how to use get_dataguard_performance_metrics API.
8508
8508
  """
8509
8509
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
8510
8510
  required_arguments = ['managedDatabaseId', 'startTime', 'endTime']
@@ -8614,7 +8614,7 @@ class DbManagementClient(object):
8614
8614
  :rtype: :class:`~oci.response.Response`
8615
8615
 
8616
8616
  :example:
8617
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/get_db_management_private_endpoint.py.html>`__ to see an example of how to use get_db_management_private_endpoint API.
8617
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/get_db_management_private_endpoint.py.html>`__ to see an example of how to use get_db_management_private_endpoint API.
8618
8618
  """
8619
8619
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
8620
8620
  required_arguments = ['dbManagementPrivateEndpointId']
@@ -8712,7 +8712,7 @@ class DbManagementClient(object):
8712
8712
  :rtype: :class:`~oci.response.Response`
8713
8713
 
8714
8714
  :example:
8715
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/get_external_asm.py.html>`__ to see an example of how to use get_external_asm API.
8715
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/get_external_asm.py.html>`__ to see an example of how to use get_external_asm API.
8716
8716
  """
8717
8717
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
8718
8718
  required_arguments = ['externalAsmId']
@@ -8815,7 +8815,7 @@ class DbManagementClient(object):
8815
8815
  :rtype: :class:`~oci.response.Response`
8816
8816
 
8817
8817
  :example:
8818
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/get_external_asm_configuration.py.html>`__ to see an example of how to use get_external_asm_configuration API.
8818
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/get_external_asm_configuration.py.html>`__ to see an example of how to use get_external_asm_configuration API.
8819
8819
  """
8820
8820
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
8821
8821
  required_arguments = ['externalAsmId']
@@ -8917,7 +8917,7 @@ class DbManagementClient(object):
8917
8917
  :rtype: :class:`~oci.response.Response`
8918
8918
 
8919
8919
  :example:
8920
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/get_external_asm_instance.py.html>`__ to see an example of how to use get_external_asm_instance API.
8920
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/get_external_asm_instance.py.html>`__ to see an example of how to use get_external_asm_instance API.
8921
8921
  """
8922
8922
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
8923
8923
  required_arguments = ['externalAsmInstanceId']
@@ -9017,7 +9017,7 @@ class DbManagementClient(object):
9017
9017
  :rtype: :class:`~oci.response.Response`
9018
9018
 
9019
9019
  :example:
9020
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/get_external_cluster.py.html>`__ to see an example of how to use get_external_cluster API.
9020
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/get_external_cluster.py.html>`__ to see an example of how to use get_external_cluster API.
9021
9021
  """
9022
9022
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
9023
9023
  required_arguments = ['externalClusterId']
@@ -9117,7 +9117,7 @@ class DbManagementClient(object):
9117
9117
  :rtype: :class:`~oci.response.Response`
9118
9118
 
9119
9119
  :example:
9120
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/get_external_cluster_instance.py.html>`__ to see an example of how to use get_external_cluster_instance API.
9120
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/get_external_cluster_instance.py.html>`__ to see an example of how to use get_external_cluster_instance API.
9121
9121
  """
9122
9122
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
9123
9123
  required_arguments = ['externalClusterInstanceId']
@@ -9217,7 +9217,7 @@ class DbManagementClient(object):
9217
9217
  :rtype: :class:`~oci.response.Response`
9218
9218
 
9219
9219
  :example:
9220
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/get_external_db_home.py.html>`__ to see an example of how to use get_external_db_home API.
9220
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/get_external_db_home.py.html>`__ to see an example of how to use get_external_db_home API.
9221
9221
  """
9222
9222
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
9223
9223
  required_arguments = ['externalDbHomeId']
@@ -9317,7 +9317,7 @@ class DbManagementClient(object):
9317
9317
  :rtype: :class:`~oci.response.Response`
9318
9318
 
9319
9319
  :example:
9320
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/get_external_db_node.py.html>`__ to see an example of how to use get_external_db_node API.
9320
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/get_external_db_node.py.html>`__ to see an example of how to use get_external_db_node API.
9321
9321
  """
9322
9322
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
9323
9323
  required_arguments = ['externalDbNodeId']
@@ -9417,7 +9417,7 @@ class DbManagementClient(object):
9417
9417
  :rtype: :class:`~oci.response.Response`
9418
9418
 
9419
9419
  :example:
9420
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/get_external_db_system.py.html>`__ to see an example of how to use get_external_db_system API.
9420
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/get_external_db_system.py.html>`__ to see an example of how to use get_external_db_system API.
9421
9421
  """
9422
9422
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
9423
9423
  required_arguments = ['externalDbSystemId']
@@ -9517,7 +9517,7 @@ class DbManagementClient(object):
9517
9517
  :rtype: :class:`~oci.response.Response`
9518
9518
 
9519
9519
  :example:
9520
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/get_external_db_system_connector.py.html>`__ to see an example of how to use get_external_db_system_connector API.
9520
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/get_external_db_system_connector.py.html>`__ to see an example of how to use get_external_db_system_connector API.
9521
9521
  """
9522
9522
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
9523
9523
  required_arguments = ['externalDbSystemConnectorId']
@@ -9617,7 +9617,7 @@ class DbManagementClient(object):
9617
9617
  :rtype: :class:`~oci.response.Response`
9618
9618
 
9619
9619
  :example:
9620
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/get_external_db_system_discovery.py.html>`__ to see an example of how to use get_external_db_system_discovery API.
9620
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/get_external_db_system_discovery.py.html>`__ to see an example of how to use get_external_db_system_discovery API.
9621
9621
  """
9622
9622
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
9623
9623
  required_arguments = ['externalDbSystemDiscoveryId']
@@ -9718,7 +9718,7 @@ class DbManagementClient(object):
9718
9718
  :rtype: :class:`~oci.response.Response`
9719
9719
 
9720
9720
  :example:
9721
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/get_external_exadata_infrastructure.py.html>`__ to see an example of how to use get_external_exadata_infrastructure API.
9721
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/get_external_exadata_infrastructure.py.html>`__ to see an example of how to use get_external_exadata_infrastructure API.
9722
9722
  """
9723
9723
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
9724
9724
  required_arguments = ['externalExadataInfrastructureId']
@@ -9818,7 +9818,7 @@ class DbManagementClient(object):
9818
9818
  :rtype: :class:`~oci.response.Response`
9819
9819
 
9820
9820
  :example:
9821
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/get_external_exadata_storage_connector.py.html>`__ to see an example of how to use get_external_exadata_storage_connector API.
9821
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/get_external_exadata_storage_connector.py.html>`__ to see an example of how to use get_external_exadata_storage_connector API.
9822
9822
  """
9823
9823
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
9824
9824
  required_arguments = ['externalExadataStorageConnectorId']
@@ -9918,7 +9918,7 @@ class DbManagementClient(object):
9918
9918
  :rtype: :class:`~oci.response.Response`
9919
9919
 
9920
9920
  :example:
9921
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/get_external_exadata_storage_grid.py.html>`__ to see an example of how to use get_external_exadata_storage_grid API.
9921
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/get_external_exadata_storage_grid.py.html>`__ to see an example of how to use get_external_exadata_storage_grid API.
9922
9922
  """
9923
9923
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
9924
9924
  required_arguments = ['externalExadataStorageGridId']
@@ -10018,7 +10018,7 @@ class DbManagementClient(object):
10018
10018
  :rtype: :class:`~oci.response.Response`
10019
10019
 
10020
10020
  :example:
10021
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/get_external_exadata_storage_server.py.html>`__ to see an example of how to use get_external_exadata_storage_server API.
10021
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/get_external_exadata_storage_server.py.html>`__ to see an example of how to use get_external_exadata_storage_server API.
10022
10022
  """
10023
10023
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
10024
10024
  required_arguments = ['externalExadataStorageServerId']
@@ -10118,7 +10118,7 @@ class DbManagementClient(object):
10118
10118
  :rtype: :class:`~oci.response.Response`
10119
10119
 
10120
10120
  :example:
10121
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/get_external_listener.py.html>`__ to see an example of how to use get_external_listener API.
10121
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/get_external_listener.py.html>`__ to see an example of how to use get_external_listener API.
10122
10122
  """
10123
10123
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
10124
10124
  required_arguments = ['externalListenerId']
@@ -10218,7 +10218,7 @@ class DbManagementClient(object):
10218
10218
  :rtype: :class:`~oci.response.Response`
10219
10219
 
10220
10220
  :example:
10221
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/get_iorm_plan.py.html>`__ to see an example of how to use get_iorm_plan API.
10221
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/get_iorm_plan.py.html>`__ to see an example of how to use get_iorm_plan API.
10222
10222
  """
10223
10223
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
10224
10224
  required_arguments = ['externalExadataStorageServerId']
@@ -10316,7 +10316,7 @@ class DbManagementClient(object):
10316
10316
  :rtype: :class:`~oci.response.Response`
10317
10317
 
10318
10318
  :example:
10319
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/get_job.py.html>`__ to see an example of how to use get_job API.
10319
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/get_job.py.html>`__ to see an example of how to use get_job API.
10320
10320
  """
10321
10321
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
10322
10322
  required_arguments = ['jobId']
@@ -10412,7 +10412,7 @@ class DbManagementClient(object):
10412
10412
  :rtype: :class:`~oci.response.Response`
10413
10413
 
10414
10414
  :example:
10415
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/get_job_execution.py.html>`__ to see an example of how to use get_job_execution API.
10415
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/get_job_execution.py.html>`__ to see an example of how to use get_job_execution API.
10416
10416
  """
10417
10417
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
10418
10418
  required_arguments = ['jobExecutionId']
@@ -10508,7 +10508,7 @@ class DbManagementClient(object):
10508
10508
  :rtype: :class:`~oci.response.Response`
10509
10509
 
10510
10510
  :example:
10511
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/get_job_run.py.html>`__ to see an example of how to use get_job_run API.
10511
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/get_job_run.py.html>`__ to see an example of how to use get_job_run API.
10512
10512
  """
10513
10513
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
10514
10514
  required_arguments = ['jobRunId']
@@ -10606,7 +10606,7 @@ class DbManagementClient(object):
10606
10606
  :rtype: :class:`~oci.response.Response`
10607
10607
 
10608
10608
  :example:
10609
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/get_managed_database.py.html>`__ to see an example of how to use get_managed_database API.
10609
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/get_managed_database.py.html>`__ to see an example of how to use get_managed_database API.
10610
10610
  """
10611
10611
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
10612
10612
  required_arguments = ['managedDatabaseId']
@@ -10704,7 +10704,7 @@ class DbManagementClient(object):
10704
10704
  :rtype: :class:`~oci.response.Response`
10705
10705
 
10706
10706
  :example:
10707
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/get_managed_database_group.py.html>`__ to see an example of how to use get_managed_database_group API.
10707
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/get_managed_database_group.py.html>`__ to see an example of how to use get_managed_database_group API.
10708
10708
  """
10709
10709
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
10710
10710
  required_arguments = ['managedDatabaseGroupId']
@@ -10802,7 +10802,7 @@ class DbManagementClient(object):
10802
10802
  :rtype: :class:`~oci.response.Response`
10803
10803
 
10804
10804
  :example:
10805
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/get_named_credential.py.html>`__ to see an example of how to use get_named_credential API.
10805
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/get_named_credential.py.html>`__ to see an example of how to use get_named_credential API.
10806
10806
  """
10807
10807
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
10808
10808
  required_arguments = ['namedCredentialId']
@@ -10900,7 +10900,7 @@ class DbManagementClient(object):
10900
10900
  :rtype: :class:`~oci.response.Response`
10901
10901
 
10902
10902
  :example:
10903
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/get_open_alert_history.py.html>`__ to see an example of how to use get_open_alert_history API.
10903
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/get_open_alert_history.py.html>`__ to see an example of how to use get_open_alert_history API.
10904
10904
  """
10905
10905
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
10906
10906
  required_arguments = ['externalExadataStorageServerId']
@@ -11010,7 +11010,7 @@ class DbManagementClient(object):
11010
11010
  :rtype: :class:`~oci.response.Response`
11011
11011
 
11012
11012
  :example:
11013
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/get_optimizer_statistics_advisor_execution.py.html>`__ to see an example of how to use get_optimizer_statistics_advisor_execution API.
11013
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/get_optimizer_statistics_advisor_execution.py.html>`__ to see an example of how to use get_optimizer_statistics_advisor_execution API.
11014
11014
  """
11015
11015
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
11016
11016
  required_arguments = ['managedDatabaseId', 'executionName', 'taskName']
@@ -11127,7 +11127,7 @@ class DbManagementClient(object):
11127
11127
  :rtype: :class:`~oci.response.Response`
11128
11128
 
11129
11129
  :example:
11130
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/get_optimizer_statistics_advisor_execution_script.py.html>`__ to see an example of how to use get_optimizer_statistics_advisor_execution_script API.
11130
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/get_optimizer_statistics_advisor_execution_script.py.html>`__ to see an example of how to use get_optimizer_statistics_advisor_execution_script API.
11131
11131
  """
11132
11132
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
11133
11133
  required_arguments = ['managedDatabaseId', 'executionName', 'taskName']
@@ -11241,7 +11241,7 @@ class DbManagementClient(object):
11241
11241
  :rtype: :class:`~oci.response.Response`
11242
11242
 
11243
11243
  :example:
11244
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/get_optimizer_statistics_collection_operation.py.html>`__ to see an example of how to use get_optimizer_statistics_collection_operation API.
11244
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/get_optimizer_statistics_collection_operation.py.html>`__ to see an example of how to use get_optimizer_statistics_collection_operation API.
11245
11245
  """
11246
11246
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
11247
11247
  required_arguments = ['managedDatabaseId', 'optimizerStatisticsCollectionOperationId']
@@ -11366,7 +11366,7 @@ class DbManagementClient(object):
11366
11366
  :rtype: :class:`~oci.response.Response`
11367
11367
 
11368
11368
  :example:
11369
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/get_pdb_metrics.py.html>`__ to see an example of how to use get_pdb_metrics API.
11369
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/get_pdb_metrics.py.html>`__ to see an example of how to use get_pdb_metrics API.
11370
11370
  """
11371
11371
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
11372
11372
  required_arguments = ['managedDatabaseId', 'startTime', 'endTime']
@@ -11509,7 +11509,7 @@ class DbManagementClient(object):
11509
11509
  :rtype: :class:`~oci.response.Response`
11510
11510
 
11511
11511
  :example:
11512
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/get_peer_database_metrics.py.html>`__ to see an example of how to use get_peer_database_metrics API.
11512
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/get_peer_database_metrics.py.html>`__ to see an example of how to use get_peer_database_metrics API.
11513
11513
  """
11514
11514
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
11515
11515
  required_arguments = ['managedDatabaseId', 'startTime', 'endTime']
@@ -11631,7 +11631,7 @@ class DbManagementClient(object):
11631
11631
  :rtype: :class:`~oci.response.Response`
11632
11632
 
11633
11633
  :example:
11634
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/get_preferred_credential.py.html>`__ to see an example of how to use get_preferred_credential API.
11634
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/get_preferred_credential.py.html>`__ to see an example of how to use get_preferred_credential API.
11635
11635
  """
11636
11636
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
11637
11637
  required_arguments = ['managedDatabaseId', 'credentialName']
@@ -11736,7 +11736,7 @@ class DbManagementClient(object):
11736
11736
  :rtype: :class:`~oci.response.Response`
11737
11737
 
11738
11738
  :example:
11739
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/get_sql_plan_baseline.py.html>`__ to see an example of how to use get_sql_plan_baseline API.
11739
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/get_sql_plan_baseline.py.html>`__ to see an example of how to use get_sql_plan_baseline API.
11740
11740
  """
11741
11741
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
11742
11742
  required_arguments = ['managedDatabaseId', 'planName']
@@ -11844,7 +11844,7 @@ class DbManagementClient(object):
11844
11844
  :rtype: :class:`~oci.response.Response`
11845
11845
 
11846
11846
  :example:
11847
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/get_sql_plan_baseline_configuration.py.html>`__ to see an example of how to use get_sql_plan_baseline_configuration API.
11847
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/get_sql_plan_baseline_configuration.py.html>`__ to see an example of how to use get_sql_plan_baseline_configuration API.
11848
11848
  """
11849
11849
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
11850
11850
  required_arguments = ['managedDatabaseId']
@@ -11952,7 +11952,7 @@ class DbManagementClient(object):
11952
11952
  :rtype: :class:`~oci.response.Response`
11953
11953
 
11954
11954
  :example:
11955
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/get_tablespace.py.html>`__ to see an example of how to use get_tablespace API.
11955
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/get_tablespace.py.html>`__ to see an example of how to use get_tablespace API.
11956
11956
  """
11957
11957
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
11958
11958
  required_arguments = ['managedDatabaseId', 'tablespaceName']
@@ -12053,7 +12053,7 @@ class DbManagementClient(object):
12053
12053
  :rtype: :class:`~oci.response.Response`
12054
12054
 
12055
12055
  :example:
12056
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/get_top_sql_cpu_activity.py.html>`__ to see an example of how to use get_top_sql_cpu_activity API.
12056
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/get_top_sql_cpu_activity.py.html>`__ to see an example of how to use get_top_sql_cpu_activity API.
12057
12057
  """
12058
12058
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
12059
12059
  required_arguments = ['externalExadataStorageServerId']
@@ -12159,7 +12159,7 @@ class DbManagementClient(object):
12159
12159
  :rtype: :class:`~oci.response.Response`
12160
12160
 
12161
12161
  :example:
12162
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/get_user.py.html>`__ to see an example of how to use get_user API.
12162
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/get_user.py.html>`__ to see an example of how to use get_user API.
12163
12163
  """
12164
12164
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
12165
12165
  required_arguments = ['managedDatabaseId', 'userName']
@@ -12260,7 +12260,7 @@ class DbManagementClient(object):
12260
12260
  :rtype: :class:`~oci.response.Response`
12261
12261
 
12262
12262
  :example:
12263
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/get_work_request.py.html>`__ to see an example of how to use get_work_request API.
12263
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/get_work_request.py.html>`__ to see an example of how to use get_work_request API.
12264
12264
  """
12265
12265
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
12266
12266
  required_arguments = ['workRequestId']
@@ -12364,7 +12364,7 @@ class DbManagementClient(object):
12364
12364
  :rtype: :class:`~oci.response.Response`
12365
12365
 
12366
12366
  :example:
12367
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/implement_optimizer_statistics_advisor_recommendations.py.html>`__ to see an example of how to use implement_optimizer_statistics_advisor_recommendations API.
12367
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/implement_optimizer_statistics_advisor_recommendations.py.html>`__ to see an example of how to use implement_optimizer_statistics_advisor_recommendations API.
12368
12368
  """
12369
12369
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
12370
12370
  required_arguments = ['managedDatabaseId', 'executionName']
@@ -12487,7 +12487,7 @@ class DbManagementClient(object):
12487
12487
  :rtype: :class:`~oci.response.Response`
12488
12488
 
12489
12489
  :example:
12490
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/list_asm_properties.py.html>`__ to see an example of how to use list_asm_properties API.
12490
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/list_asm_properties.py.html>`__ to see an example of how to use list_asm_properties API.
12491
12491
  """
12492
12492
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
12493
12493
  required_arguments = ['managedDatabaseId']
@@ -12637,7 +12637,7 @@ class DbManagementClient(object):
12637
12637
  :rtype: :class:`~oci.response.Response`
12638
12638
 
12639
12639
  :example:
12640
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/list_associated_databases.py.html>`__ to see an example of how to use list_associated_databases API.
12640
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/list_associated_databases.py.html>`__ to see an example of how to use list_associated_databases API.
12641
12641
  """
12642
12642
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
12643
12643
  required_arguments = ['dbManagementPrivateEndpointId', 'compartmentId']
@@ -12816,7 +12816,7 @@ class DbManagementClient(object):
12816
12816
  :rtype: :class:`~oci.response.Response`
12817
12817
 
12818
12818
  :example:
12819
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/list_awr_db_snapshots.py.html>`__ to see an example of how to use list_awr_db_snapshots API.
12819
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/list_awr_db_snapshots.py.html>`__ to see an example of how to use list_awr_db_snapshots API.
12820
12820
  """
12821
12821
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
12822
12822
  required_arguments = ['managedDatabaseId', 'awrDbId']
@@ -12996,7 +12996,7 @@ class DbManagementClient(object):
12996
12996
  :rtype: :class:`~oci.response.Response`
12997
12997
 
12998
12998
  :example:
12999
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/list_awr_dbs.py.html>`__ to see an example of how to use list_awr_dbs API.
12999
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/list_awr_dbs.py.html>`__ to see an example of how to use list_awr_dbs API.
13000
13000
  """
13001
13001
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
13002
13002
  required_arguments = ['managedDatabaseId']
@@ -13160,7 +13160,7 @@ class DbManagementClient(object):
13160
13160
  :rtype: :class:`~oci.response.Response`
13161
13161
 
13162
13162
  :example:
13163
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/list_consumer_group_privileges.py.html>`__ to see an example of how to use list_consumer_group_privileges API.
13163
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/list_consumer_group_privileges.py.html>`__ to see an example of how to use list_consumer_group_privileges API.
13164
13164
  """
13165
13165
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
13166
13166
  required_arguments = ['managedDatabaseId', 'userName']
@@ -13316,7 +13316,7 @@ class DbManagementClient(object):
13316
13316
  :rtype: :class:`~oci.response.Response`
13317
13317
 
13318
13318
  :example:
13319
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/list_cursor_cache_statements.py.html>`__ to see an example of how to use list_cursor_cache_statements API.
13319
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/list_cursor_cache_statements.py.html>`__ to see an example of how to use list_cursor_cache_statements API.
13320
13320
  """
13321
13321
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
13322
13322
  required_arguments = ['managedDatabaseId']
@@ -13475,7 +13475,7 @@ class DbManagementClient(object):
13475
13475
  :rtype: :class:`~oci.response.Response`
13476
13476
 
13477
13477
  :example:
13478
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/list_data_access_containers.py.html>`__ to see an example of how to use list_data_access_containers API.
13478
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/list_data_access_containers.py.html>`__ to see an example of how to use list_data_access_containers API.
13479
13479
  """
13480
13480
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
13481
13481
  required_arguments = ['managedDatabaseId', 'userName']
@@ -13634,7 +13634,7 @@ class DbManagementClient(object):
13634
13634
  :rtype: :class:`~oci.response.Response`
13635
13635
 
13636
13636
  :example:
13637
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/list_database_parameters.py.html>`__ to see an example of how to use list_database_parameters API.
13637
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/list_database_parameters.py.html>`__ to see an example of how to use list_database_parameters API.
13638
13638
  """
13639
13639
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
13640
13640
  required_arguments = ['managedDatabaseId']
@@ -13810,7 +13810,7 @@ class DbManagementClient(object):
13810
13810
  :rtype: :class:`~oci.response.Response`
13811
13811
 
13812
13812
  :example:
13813
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/list_db_management_private_endpoints.py.html>`__ to see an example of how to use list_db_management_private_endpoints API.
13813
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/list_db_management_private_endpoints.py.html>`__ to see an example of how to use list_db_management_private_endpoints API.
13814
13814
  """
13815
13815
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
13816
13816
  required_arguments = ['compartmentId']
@@ -13963,7 +13963,7 @@ class DbManagementClient(object):
13963
13963
  :rtype: :class:`~oci.response.Response`
13964
13964
 
13965
13965
  :example:
13966
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/list_external_asm_disk_groups.py.html>`__ to see an example of how to use list_external_asm_disk_groups API.
13966
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/list_external_asm_disk_groups.py.html>`__ to see an example of how to use list_external_asm_disk_groups API.
13967
13967
  """
13968
13968
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
13969
13969
  required_arguments = ['externalAsmId']
@@ -14120,7 +14120,7 @@ class DbManagementClient(object):
14120
14120
  :rtype: :class:`~oci.response.Response`
14121
14121
 
14122
14122
  :example:
14123
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/list_external_asm_instances.py.html>`__ to see an example of how to use list_external_asm_instances API.
14123
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/list_external_asm_instances.py.html>`__ to see an example of how to use list_external_asm_instances API.
14124
14124
  """
14125
14125
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
14126
14126
  required_arguments = []
@@ -14263,7 +14263,7 @@ class DbManagementClient(object):
14263
14263
  :rtype: :class:`~oci.response.Response`
14264
14264
 
14265
14265
  :example:
14266
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/list_external_asm_users.py.html>`__ to see an example of how to use list_external_asm_users API.
14266
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/list_external_asm_users.py.html>`__ to see an example of how to use list_external_asm_users API.
14267
14267
  """
14268
14268
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
14269
14269
  required_arguments = ['externalAsmId']
@@ -14420,7 +14420,7 @@ class DbManagementClient(object):
14420
14420
  :rtype: :class:`~oci.response.Response`
14421
14421
 
14422
14422
  :example:
14423
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/list_external_asms.py.html>`__ to see an example of how to use list_external_asms API.
14423
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/list_external_asms.py.html>`__ to see an example of how to use list_external_asms API.
14424
14424
  """
14425
14425
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
14426
14426
  required_arguments = []
@@ -14569,7 +14569,7 @@ class DbManagementClient(object):
14569
14569
  :rtype: :class:`~oci.response.Response`
14570
14570
 
14571
14571
  :example:
14572
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/list_external_cluster_instances.py.html>`__ to see an example of how to use list_external_cluster_instances API.
14572
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/list_external_cluster_instances.py.html>`__ to see an example of how to use list_external_cluster_instances API.
14573
14573
  """
14574
14574
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
14575
14575
  required_arguments = []
@@ -14718,7 +14718,7 @@ class DbManagementClient(object):
14718
14718
  :rtype: :class:`~oci.response.Response`
14719
14719
 
14720
14720
  :example:
14721
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/list_external_clusters.py.html>`__ to see an example of how to use list_external_clusters API.
14721
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/list_external_clusters.py.html>`__ to see an example of how to use list_external_clusters API.
14722
14722
  """
14723
14723
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
14724
14724
  required_arguments = []
@@ -14872,7 +14872,7 @@ class DbManagementClient(object):
14872
14872
  :rtype: :class:`~oci.response.Response`
14873
14873
 
14874
14874
  :example:
14875
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/list_external_databases.py.html>`__ to see an example of how to use list_external_databases API.
14875
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/list_external_databases.py.html>`__ to see an example of how to use list_external_databases API.
14876
14876
  """
14877
14877
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
14878
14878
  required_arguments = []
@@ -15023,7 +15023,7 @@ class DbManagementClient(object):
15023
15023
  :rtype: :class:`~oci.response.Response`
15024
15024
 
15025
15025
  :example:
15026
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/list_external_db_homes.py.html>`__ to see an example of how to use list_external_db_homes API.
15026
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/list_external_db_homes.py.html>`__ to see an example of how to use list_external_db_homes API.
15027
15027
  """
15028
15028
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
15029
15029
  required_arguments = []
@@ -15172,7 +15172,7 @@ class DbManagementClient(object):
15172
15172
  :rtype: :class:`~oci.response.Response`
15173
15173
 
15174
15174
  :example:
15175
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/list_external_db_nodes.py.html>`__ to see an example of how to use list_external_db_nodes API.
15175
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/list_external_db_nodes.py.html>`__ to see an example of how to use list_external_db_nodes API.
15176
15176
  """
15177
15177
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
15178
15178
  required_arguments = []
@@ -15321,7 +15321,7 @@ class DbManagementClient(object):
15321
15321
  :rtype: :class:`~oci.response.Response`
15322
15322
 
15323
15323
  :example:
15324
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/list_external_db_system_connectors.py.html>`__ to see an example of how to use list_external_db_system_connectors API.
15324
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/list_external_db_system_connectors.py.html>`__ to see an example of how to use list_external_db_system_connectors API.
15325
15325
  """
15326
15326
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
15327
15327
  required_arguments = []
@@ -15465,7 +15465,7 @@ class DbManagementClient(object):
15465
15465
  :rtype: :class:`~oci.response.Response`
15466
15466
 
15467
15467
  :example:
15468
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/list_external_db_system_discoveries.py.html>`__ to see an example of how to use list_external_db_system_discoveries API.
15468
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/list_external_db_system_discoveries.py.html>`__ to see an example of how to use list_external_db_system_discoveries API.
15469
15469
  """
15470
15470
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
15471
15471
  required_arguments = ['compartmentId']
@@ -15606,7 +15606,7 @@ class DbManagementClient(object):
15606
15606
  :rtype: :class:`~oci.response.Response`
15607
15607
 
15608
15608
  :example:
15609
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/list_external_db_systems.py.html>`__ to see an example of how to use list_external_db_systems API.
15609
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/list_external_db_systems.py.html>`__ to see an example of how to use list_external_db_systems API.
15610
15610
  """
15611
15611
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
15612
15612
  required_arguments = ['compartmentId']
@@ -15747,7 +15747,7 @@ class DbManagementClient(object):
15747
15747
  :rtype: :class:`~oci.response.Response`
15748
15748
 
15749
15749
  :example:
15750
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/list_external_exadata_infrastructures.py.html>`__ to see an example of how to use list_external_exadata_infrastructures API.
15750
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/list_external_exadata_infrastructures.py.html>`__ to see an example of how to use list_external_exadata_infrastructures API.
15751
15751
  """
15752
15752
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
15753
15753
  required_arguments = ['compartmentId']
@@ -15893,7 +15893,7 @@ class DbManagementClient(object):
15893
15893
  :rtype: :class:`~oci.response.Response`
15894
15894
 
15895
15895
  :example:
15896
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/list_external_exadata_storage_connectors.py.html>`__ to see an example of how to use list_external_exadata_storage_connectors API.
15896
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/list_external_exadata_storage_connectors.py.html>`__ to see an example of how to use list_external_exadata_storage_connectors API.
15897
15897
  """
15898
15898
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
15899
15899
  required_arguments = ['compartmentId', 'externalExadataInfrastructureId']
@@ -16040,7 +16040,7 @@ class DbManagementClient(object):
16040
16040
  :rtype: :class:`~oci.response.Response`
16041
16041
 
16042
16042
  :example:
16043
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/list_external_exadata_storage_servers.py.html>`__ to see an example of how to use list_external_exadata_storage_servers API.
16043
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/list_external_exadata_storage_servers.py.html>`__ to see an example of how to use list_external_exadata_storage_servers API.
16044
16044
  """
16045
16045
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
16046
16046
  required_arguments = ['compartmentId', 'externalExadataInfrastructureId']
@@ -16187,7 +16187,7 @@ class DbManagementClient(object):
16187
16187
  :rtype: :class:`~oci.response.Response`
16188
16188
 
16189
16189
  :example:
16190
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/list_external_listener_services.py.html>`__ to see an example of how to use list_external_listener_services API.
16190
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/list_external_listener_services.py.html>`__ to see an example of how to use list_external_listener_services API.
16191
16191
  """
16192
16192
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
16193
16193
  required_arguments = ['externalListenerId', 'managedDatabaseId']
@@ -16345,7 +16345,7 @@ class DbManagementClient(object):
16345
16345
  :rtype: :class:`~oci.response.Response`
16346
16346
 
16347
16347
  :example:
16348
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/list_external_listeners.py.html>`__ to see an example of how to use list_external_listeners API.
16348
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/list_external_listeners.py.html>`__ to see an example of how to use list_external_listeners API.
16349
16349
  """
16350
16350
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
16351
16351
  required_arguments = []
@@ -16514,7 +16514,7 @@ class DbManagementClient(object):
16514
16514
  :rtype: :class:`~oci.response.Response`
16515
16515
 
16516
16516
  :example:
16517
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/list_job_executions.py.html>`__ to see an example of how to use list_job_executions API.
16517
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/list_job_executions.py.html>`__ to see an example of how to use list_job_executions API.
16518
16518
  """
16519
16519
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
16520
16520
  required_arguments = ['compartmentId']
@@ -16687,7 +16687,7 @@ class DbManagementClient(object):
16687
16687
  :rtype: :class:`~oci.response.Response`
16688
16688
 
16689
16689
  :example:
16690
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/list_job_runs.py.html>`__ to see an example of how to use list_job_runs API.
16690
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/list_job_runs.py.html>`__ to see an example of how to use list_job_runs API.
16691
16691
  """
16692
16692
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
16693
16693
  required_arguments = ['compartmentId']
@@ -16857,7 +16857,7 @@ class DbManagementClient(object):
16857
16857
  :rtype: :class:`~oci.response.Response`
16858
16858
 
16859
16859
  :example:
16860
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/list_jobs.py.html>`__ to see an example of how to use list_jobs API.
16860
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/list_jobs.py.html>`__ to see an example of how to use list_jobs API.
16861
16861
  """
16862
16862
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
16863
16863
  required_arguments = ['compartmentId']
@@ -17022,7 +17022,7 @@ class DbManagementClient(object):
17022
17022
  :rtype: :class:`~oci.response.Response`
17023
17023
 
17024
17024
  :example:
17025
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/list_managed_database_groups.py.html>`__ to see an example of how to use list_managed_database_groups API.
17025
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/list_managed_database_groups.py.html>`__ to see an example of how to use list_managed_database_groups API.
17026
17026
  """
17027
17027
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
17028
17028
  required_arguments = ['compartmentId']
@@ -17195,7 +17195,7 @@ class DbManagementClient(object):
17195
17195
  :rtype: :class:`~oci.response.Response`
17196
17196
 
17197
17197
  :example:
17198
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/list_managed_databases.py.html>`__ to see an example of how to use list_managed_databases API.
17198
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/list_managed_databases.py.html>`__ to see an example of how to use list_managed_databases API.
17199
17199
  """
17200
17200
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
17201
17201
  required_arguments = ['compartmentId']
@@ -17369,7 +17369,7 @@ class DbManagementClient(object):
17369
17369
  :rtype: :class:`~oci.response.Response`
17370
17370
 
17371
17371
  :example:
17372
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/list_named_credentials.py.html>`__ to see an example of how to use list_named_credentials API.
17372
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/list_named_credentials.py.html>`__ to see an example of how to use list_named_credentials API.
17373
17373
  """
17374
17374
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
17375
17375
  required_arguments = ['compartmentId']
@@ -17533,7 +17533,7 @@ class DbManagementClient(object):
17533
17533
  :rtype: :class:`~oci.response.Response`
17534
17534
 
17535
17535
  :example:
17536
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/list_object_privileges.py.html>`__ to see an example of how to use list_object_privileges API.
17536
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/list_object_privileges.py.html>`__ to see an example of how to use list_object_privileges API.
17537
17537
  """
17538
17538
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
17539
17539
  required_arguments = ['managedDatabaseId', 'userName']
@@ -17677,7 +17677,7 @@ class DbManagementClient(object):
17677
17677
  :rtype: :class:`~oci.response.Response`
17678
17678
 
17679
17679
  :example:
17680
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/list_optimizer_statistics_advisor_executions.py.html>`__ to see an example of how to use list_optimizer_statistics_advisor_executions API.
17680
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/list_optimizer_statistics_advisor_executions.py.html>`__ to see an example of how to use list_optimizer_statistics_advisor_executions API.
17681
17681
  """
17682
17682
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
17683
17683
  required_arguments = ['managedDatabaseId']
@@ -17820,7 +17820,7 @@ class DbManagementClient(object):
17820
17820
  :rtype: :class:`~oci.response.Response`
17821
17821
 
17822
17822
  :example:
17823
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/list_optimizer_statistics_collection_aggregations.py.html>`__ to see an example of how to use list_optimizer_statistics_collection_aggregations API.
17823
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/list_optimizer_statistics_collection_aggregations.py.html>`__ to see an example of how to use list_optimizer_statistics_collection_aggregations API.
17824
17824
  """
17825
17825
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
17826
17826
  required_arguments = ['managedDatabaseId', 'groupType']
@@ -17995,7 +17995,7 @@ class DbManagementClient(object):
17995
17995
  :rtype: :class:`~oci.response.Response`
17996
17996
 
17997
17997
  :example:
17998
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/list_optimizer_statistics_collection_operations.py.html>`__ to see an example of how to use list_optimizer_statistics_collection_operations API.
17998
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/list_optimizer_statistics_collection_operations.py.html>`__ to see an example of how to use list_optimizer_statistics_collection_operations API.
17999
17999
  """
18000
18000
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
18001
18001
  required_arguments = ['managedDatabaseId']
@@ -18138,7 +18138,7 @@ class DbManagementClient(object):
18138
18138
  :rtype: :class:`~oci.response.Response`
18139
18139
 
18140
18140
  :example:
18141
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/list_preferred_credentials.py.html>`__ to see an example of how to use list_preferred_credentials API.
18141
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/list_preferred_credentials.py.html>`__ to see an example of how to use list_preferred_credentials API.
18142
18142
  """
18143
18143
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
18144
18144
  required_arguments = ['managedDatabaseId']
@@ -18263,7 +18263,7 @@ class DbManagementClient(object):
18263
18263
  :rtype: :class:`~oci.response.Response`
18264
18264
 
18265
18265
  :example:
18266
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/list_proxied_for_users.py.html>`__ to see an example of how to use list_proxied_for_users API.
18266
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/list_proxied_for_users.py.html>`__ to see an example of how to use list_proxied_for_users API.
18267
18267
  """
18268
18268
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
18269
18269
  required_arguments = ['managedDatabaseId', 'userName']
@@ -18421,7 +18421,7 @@ class DbManagementClient(object):
18421
18421
  :rtype: :class:`~oci.response.Response`
18422
18422
 
18423
18423
  :example:
18424
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/list_proxy_users.py.html>`__ to see an example of how to use list_proxy_users API.
18424
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/list_proxy_users.py.html>`__ to see an example of how to use list_proxy_users API.
18425
18425
  """
18426
18426
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
18427
18427
  required_arguments = ['managedDatabaseId', 'userName']
@@ -18579,7 +18579,7 @@ class DbManagementClient(object):
18579
18579
  :rtype: :class:`~oci.response.Response`
18580
18580
 
18581
18581
  :example:
18582
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/list_roles.py.html>`__ to see an example of how to use list_roles API.
18582
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/list_roles.py.html>`__ to see an example of how to use list_roles API.
18583
18583
  """
18584
18584
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
18585
18585
  required_arguments = ['managedDatabaseId', 'userName']
@@ -18735,7 +18735,7 @@ class DbManagementClient(object):
18735
18735
  :rtype: :class:`~oci.response.Response`
18736
18736
 
18737
18737
  :example:
18738
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/list_sql_plan_baseline_jobs.py.html>`__ to see an example of how to use list_sql_plan_baseline_jobs API.
18738
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/list_sql_plan_baseline_jobs.py.html>`__ to see an example of how to use list_sql_plan_baseline_jobs API.
18739
18739
  """
18740
18740
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
18741
18741
  required_arguments = ['managedDatabaseId']
@@ -18939,7 +18939,7 @@ class DbManagementClient(object):
18939
18939
  :rtype: :class:`~oci.response.Response`
18940
18940
 
18941
18941
  :example:
18942
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/list_sql_plan_baselines.py.html>`__ to see an example of how to use list_sql_plan_baselines API.
18942
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/list_sql_plan_baselines.py.html>`__ to see an example of how to use list_sql_plan_baselines API.
18943
18943
  """
18944
18944
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
18945
18945
  required_arguments = ['managedDatabaseId']
@@ -19129,7 +19129,7 @@ class DbManagementClient(object):
19129
19129
  :rtype: :class:`~oci.response.Response`
19130
19130
 
19131
19131
  :example:
19132
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/list_system_privileges.py.html>`__ to see an example of how to use list_system_privileges API.
19132
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/list_system_privileges.py.html>`__ to see an example of how to use list_system_privileges API.
19133
19133
  """
19134
19134
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
19135
19135
  required_arguments = ['managedDatabaseId', 'userName']
@@ -19264,7 +19264,7 @@ class DbManagementClient(object):
19264
19264
  :rtype: :class:`~oci.response.Response`
19265
19265
 
19266
19266
  :example:
19267
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/list_table_statistics.py.html>`__ to see an example of how to use list_table_statistics API.
19267
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/list_table_statistics.py.html>`__ to see an example of how to use list_table_statistics API.
19268
19268
  """
19269
19269
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
19270
19270
  required_arguments = ['managedDatabaseId']
@@ -19389,7 +19389,7 @@ class DbManagementClient(object):
19389
19389
  :rtype: :class:`~oci.response.Response`
19390
19390
 
19391
19391
  :example:
19392
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/list_tablespaces.py.html>`__ to see an example of how to use list_tablespaces API.
19392
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/list_tablespaces.py.html>`__ to see an example of how to use list_tablespaces API.
19393
19393
  """
19394
19394
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
19395
19395
  required_arguments = ['managedDatabaseId']
@@ -19544,7 +19544,7 @@ class DbManagementClient(object):
19544
19544
  :rtype: :class:`~oci.response.Response`
19545
19545
 
19546
19546
  :example:
19547
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/list_users.py.html>`__ to see an example of how to use list_users API.
19547
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/list_users.py.html>`__ to see an example of how to use list_users API.
19548
19548
  """
19549
19549
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
19550
19550
  required_arguments = ['managedDatabaseId']
@@ -19691,7 +19691,7 @@ class DbManagementClient(object):
19691
19691
  :rtype: :class:`~oci.response.Response`
19692
19692
 
19693
19693
  :example:
19694
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/list_work_request_errors.py.html>`__ to see an example of how to use list_work_request_errors API.
19694
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/list_work_request_errors.py.html>`__ to see an example of how to use list_work_request_errors API.
19695
19695
  """
19696
19696
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
19697
19697
  required_arguments = ['workRequestId']
@@ -19834,7 +19834,7 @@ class DbManagementClient(object):
19834
19834
  :rtype: :class:`~oci.response.Response`
19835
19835
 
19836
19836
  :example:
19837
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/list_work_request_logs.py.html>`__ to see an example of how to use list_work_request_logs API.
19837
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/list_work_request_logs.py.html>`__ to see an example of how to use list_work_request_logs API.
19838
19838
  """
19839
19839
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
19840
19840
  required_arguments = ['workRequestId']
@@ -19992,7 +19992,7 @@ class DbManagementClient(object):
19992
19992
  :rtype: :class:`~oci.response.Response`
19993
19993
 
19994
19994
  :example:
19995
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/list_work_requests.py.html>`__ to see an example of how to use list_work_requests API.
19995
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/list_work_requests.py.html>`__ to see an example of how to use list_work_requests API.
19996
19996
  """
19997
19997
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
19998
19998
  required_arguments = ['compartmentId']
@@ -20127,7 +20127,7 @@ class DbManagementClient(object):
20127
20127
  :rtype: :class:`~oci.response.Response`
20128
20128
 
20129
20129
  :example:
20130
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/load_sql_plan_baselines_from_awr.py.html>`__ to see an example of how to use load_sql_plan_baselines_from_awr API.
20130
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/load_sql_plan_baselines_from_awr.py.html>`__ to see an example of how to use load_sql_plan_baselines_from_awr API.
20131
20131
  """
20132
20132
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
20133
20133
  required_arguments = ['managedDatabaseId']
@@ -20232,7 +20232,7 @@ class DbManagementClient(object):
20232
20232
  :rtype: :class:`~oci.response.Response`
20233
20233
 
20234
20234
  :example:
20235
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/load_sql_plan_baselines_from_cursor_cache.py.html>`__ to see an example of how to use load_sql_plan_baselines_from_cursor_cache API.
20235
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/load_sql_plan_baselines_from_cursor_cache.py.html>`__ to see an example of how to use load_sql_plan_baselines_from_cursor_cache API.
20236
20236
  """
20237
20237
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
20238
20238
  required_arguments = ['managedDatabaseId']
@@ -20349,7 +20349,7 @@ class DbManagementClient(object):
20349
20349
  :rtype: :class:`~oci.response.Response`
20350
20350
 
20351
20351
  :example:
20352
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/modify_autonomous_database_management_feature.py.html>`__ to see an example of how to use modify_autonomous_database_management_feature API.
20352
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/modify_autonomous_database_management_feature.py.html>`__ to see an example of how to use modify_autonomous_database_management_feature API.
20353
20353
  """
20354
20354
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
20355
20355
  required_arguments = ['autonomousDatabaseId']
@@ -20471,7 +20471,7 @@ class DbManagementClient(object):
20471
20471
  :rtype: :class:`~oci.response.Response`
20472
20472
 
20473
20473
  :example:
20474
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/modify_database_management_feature.py.html>`__ to see an example of how to use modify_database_management_feature API.
20474
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/modify_database_management_feature.py.html>`__ to see an example of how to use modify_database_management_feature API.
20475
20475
  """
20476
20476
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
20477
20477
  required_arguments = ['databaseId']
@@ -20593,7 +20593,7 @@ class DbManagementClient(object):
20593
20593
  :rtype: :class:`~oci.response.Response`
20594
20594
 
20595
20595
  :example:
20596
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/modify_pluggable_database_management_feature.py.html>`__ to see an example of how to use modify_pluggable_database_management_feature API.
20596
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/modify_pluggable_database_management_feature.py.html>`__ to see an example of how to use modify_pluggable_database_management_feature API.
20597
20597
  """
20598
20598
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
20599
20599
  required_arguments = ['pluggableDatabaseId']
@@ -20708,7 +20708,7 @@ class DbManagementClient(object):
20708
20708
  :rtype: :class:`~oci.response.Response`
20709
20709
 
20710
20710
  :example:
20711
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/patch_external_db_system_discovery.py.html>`__ to see an example of how to use patch_external_db_system_discovery API.
20711
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/patch_external_db_system_discovery.py.html>`__ to see an example of how to use patch_external_db_system_discovery API.
20712
20712
  """
20713
20713
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
20714
20714
  required_arguments = ['externalDbSystemDiscoveryId']
@@ -20823,7 +20823,7 @@ class DbManagementClient(object):
20823
20823
  :rtype: :class:`~oci.response.Response`
20824
20824
 
20825
20825
  :example:
20826
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/remove_data_file.py.html>`__ to see an example of how to use remove_data_file API.
20826
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/remove_data_file.py.html>`__ to see an example of how to use remove_data_file API.
20827
20827
  """
20828
20828
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
20829
20829
  required_arguments = ['managedDatabaseId', 'tablespaceName']
@@ -20940,7 +20940,7 @@ class DbManagementClient(object):
20940
20940
  :rtype: :class:`~oci.response.Response`
20941
20941
 
20942
20942
  :example:
20943
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/remove_managed_database_from_managed_database_group.py.html>`__ to see an example of how to use remove_managed_database_from_managed_database_group API.
20943
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/remove_managed_database_from_managed_database_group.py.html>`__ to see an example of how to use remove_managed_database_from_managed_database_group API.
20944
20944
  """
20945
20945
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
20946
20946
  required_arguments = ['managedDatabaseGroupId']
@@ -21051,7 +21051,7 @@ class DbManagementClient(object):
21051
21051
  :rtype: :class:`~oci.response.Response`
21052
21052
 
21053
21053
  :example:
21054
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/reset_database_parameters.py.html>`__ to see an example of how to use reset_database_parameters API.
21054
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/reset_database_parameters.py.html>`__ to see an example of how to use reset_database_parameters API.
21055
21055
  """
21056
21056
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
21057
21057
  required_arguments = ['managedDatabaseId']
@@ -21167,7 +21167,7 @@ class DbManagementClient(object):
21167
21167
  :rtype: :class:`~oci.response.Response`
21168
21168
 
21169
21169
  :example:
21170
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/resize_data_file.py.html>`__ to see an example of how to use resize_data_file API.
21170
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/resize_data_file.py.html>`__ to see an example of how to use resize_data_file API.
21171
21171
  """
21172
21172
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
21173
21173
  required_arguments = ['managedDatabaseId', 'tablespaceName']
@@ -21285,7 +21285,7 @@ class DbManagementClient(object):
21285
21285
  :rtype: :class:`~oci.response.Response`
21286
21286
 
21287
21287
  :example:
21288
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/run_historic_addm.py.html>`__ to see an example of how to use run_historic_addm API.
21288
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/run_historic_addm.py.html>`__ to see an example of how to use run_historic_addm API.
21289
21289
  """
21290
21290
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
21291
21291
  required_arguments = ['managedDatabaseId']
@@ -21447,7 +21447,7 @@ class DbManagementClient(object):
21447
21447
  :rtype: :class:`~oci.response.Response`
21448
21448
 
21449
21449
  :example:
21450
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/summarize_awr_db_cpu_usages.py.html>`__ to see an example of how to use summarize_awr_db_cpu_usages API.
21450
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/summarize_awr_db_cpu_usages.py.html>`__ to see an example of how to use summarize_awr_db_cpu_usages API.
21451
21451
  """
21452
21452
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
21453
21453
  required_arguments = ['managedDatabaseId', 'awrDbId']
@@ -21655,7 +21655,7 @@ class DbManagementClient(object):
21655
21655
  :rtype: :class:`~oci.response.Response`
21656
21656
 
21657
21657
  :example:
21658
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/summarize_awr_db_metrics.py.html>`__ to see an example of how to use summarize_awr_db_metrics API.
21658
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/summarize_awr_db_metrics.py.html>`__ to see an example of how to use summarize_awr_db_metrics API.
21659
21659
  """
21660
21660
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
21661
21661
  required_arguments = ['managedDatabaseId', 'awrDbId', 'name']
@@ -21859,7 +21859,7 @@ class DbManagementClient(object):
21859
21859
  :rtype: :class:`~oci.response.Response`
21860
21860
 
21861
21861
  :example:
21862
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/summarize_awr_db_parameter_changes.py.html>`__ to see an example of how to use summarize_awr_db_parameter_changes API.
21862
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/summarize_awr_db_parameter_changes.py.html>`__ to see an example of how to use summarize_awr_db_parameter_changes API.
21863
21863
  """
21864
21864
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
21865
21865
  required_arguments = ['managedDatabaseId', 'awrDbId', 'name']
@@ -22087,7 +22087,7 @@ class DbManagementClient(object):
22087
22087
  :rtype: :class:`~oci.response.Response`
22088
22088
 
22089
22089
  :example:
22090
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/summarize_awr_db_parameters.py.html>`__ to see an example of how to use summarize_awr_db_parameters API.
22090
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/summarize_awr_db_parameters.py.html>`__ to see an example of how to use summarize_awr_db_parameters API.
22091
22091
  """
22092
22092
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
22093
22093
  required_arguments = ['managedDatabaseId', 'awrDbId']
@@ -22298,7 +22298,7 @@ class DbManagementClient(object):
22298
22298
  :rtype: :class:`~oci.response.Response`
22299
22299
 
22300
22300
  :example:
22301
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/summarize_awr_db_snapshot_ranges.py.html>`__ to see an example of how to use summarize_awr_db_snapshot_ranges API.
22301
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/summarize_awr_db_snapshot_ranges.py.html>`__ to see an example of how to use summarize_awr_db_snapshot_ranges API.
22302
22302
  """
22303
22303
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
22304
22304
  required_arguments = ['managedDatabaseId']
@@ -22490,7 +22490,7 @@ class DbManagementClient(object):
22490
22490
  :rtype: :class:`~oci.response.Response`
22491
22491
 
22492
22492
  :example:
22493
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/summarize_awr_db_sysstats.py.html>`__ to see an example of how to use summarize_awr_db_sysstats API.
22493
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/summarize_awr_db_sysstats.py.html>`__ to see an example of how to use summarize_awr_db_sysstats API.
22494
22494
  """
22495
22495
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
22496
22496
  required_arguments = ['managedDatabaseId', 'awrDbId', 'name']
@@ -22688,7 +22688,7 @@ class DbManagementClient(object):
22688
22688
  :rtype: :class:`~oci.response.Response`
22689
22689
 
22690
22690
  :example:
22691
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/summarize_awr_db_top_wait_events.py.html>`__ to see an example of how to use summarize_awr_db_top_wait_events API.
22691
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/summarize_awr_db_top_wait_events.py.html>`__ to see an example of how to use summarize_awr_db_top_wait_events API.
22692
22692
  """
22693
22693
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
22694
22694
  required_arguments = ['managedDatabaseId', 'awrDbId']
@@ -22903,7 +22903,7 @@ class DbManagementClient(object):
22903
22903
  :rtype: :class:`~oci.response.Response`
22904
22904
 
22905
22905
  :example:
22906
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/summarize_awr_db_wait_event_buckets.py.html>`__ to see an example of how to use summarize_awr_db_wait_event_buckets API.
22906
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/summarize_awr_db_wait_event_buckets.py.html>`__ to see an example of how to use summarize_awr_db_wait_event_buckets API.
22907
22907
  """
22908
22908
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
22909
22909
  required_arguments = ['managedDatabaseId', 'awrDbId', 'name']
@@ -23114,7 +23114,7 @@ class DbManagementClient(object):
23114
23114
  :rtype: :class:`~oci.response.Response`
23115
23115
 
23116
23116
  :example:
23117
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/summarize_awr_db_wait_events.py.html>`__ to see an example of how to use summarize_awr_db_wait_events API.
23117
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/summarize_awr_db_wait_events.py.html>`__ to see an example of how to use summarize_awr_db_wait_events API.
23118
23118
  """
23119
23119
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
23120
23120
  required_arguments = ['managedDatabaseId', 'awrDbId']
@@ -23287,7 +23287,7 @@ class DbManagementClient(object):
23287
23287
  :rtype: :class:`~oci.response.Response`
23288
23288
 
23289
23289
  :example:
23290
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/summarize_external_asm_metrics.py.html>`__ to see an example of how to use summarize_external_asm_metrics API.
23290
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/summarize_external_asm_metrics.py.html>`__ to see an example of how to use summarize_external_asm_metrics API.
23291
23291
  """
23292
23292
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
23293
23293
  required_arguments = ['externalAsmId', 'startTime', 'endTime']
@@ -23419,7 +23419,7 @@ class DbManagementClient(object):
23419
23419
  :rtype: :class:`~oci.response.Response`
23420
23420
 
23421
23421
  :example:
23422
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/summarize_external_cluster_metrics.py.html>`__ to see an example of how to use summarize_external_cluster_metrics API.
23422
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/summarize_external_cluster_metrics.py.html>`__ to see an example of how to use summarize_external_cluster_metrics API.
23423
23423
  """
23424
23424
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
23425
23425
  required_arguments = ['externalClusterId', 'startTime', 'endTime']
@@ -23551,7 +23551,7 @@ class DbManagementClient(object):
23551
23551
  :rtype: :class:`~oci.response.Response`
23552
23552
 
23553
23553
  :example:
23554
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/summarize_external_db_node_metrics.py.html>`__ to see an example of how to use summarize_external_db_node_metrics API.
23554
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/summarize_external_db_node_metrics.py.html>`__ to see an example of how to use summarize_external_db_node_metrics API.
23555
23555
  """
23556
23556
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
23557
23557
  required_arguments = ['externalDbNodeId', 'startTime', 'endTime']
@@ -23683,7 +23683,7 @@ class DbManagementClient(object):
23683
23683
  :rtype: :class:`~oci.response.Response`
23684
23684
 
23685
23685
  :example:
23686
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/summarize_external_db_system_availability_metrics.py.html>`__ to see an example of how to use summarize_external_db_system_availability_metrics API.
23686
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/summarize_external_db_system_availability_metrics.py.html>`__ to see an example of how to use summarize_external_db_system_availability_metrics API.
23687
23687
  """
23688
23688
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
23689
23689
  required_arguments = ['externalDbSystemId', 'startTime', 'endTime']
@@ -23815,7 +23815,7 @@ class DbManagementClient(object):
23815
23815
  :rtype: :class:`~oci.response.Response`
23816
23816
 
23817
23817
  :example:
23818
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/summarize_external_listener_metrics.py.html>`__ to see an example of how to use summarize_external_listener_metrics API.
23818
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/summarize_external_listener_metrics.py.html>`__ to see an example of how to use summarize_external_listener_metrics API.
23819
23819
  """
23820
23820
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
23821
23821
  required_arguments = ['externalListenerId', 'startTime', 'endTime']
@@ -23965,7 +23965,7 @@ class DbManagementClient(object):
23965
23965
  :rtype: :class:`~oci.response.Response`
23966
23966
 
23967
23967
  :example:
23968
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/summarize_job_executions_statuses.py.html>`__ to see an example of how to use summarize_job_executions_statuses API.
23968
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/summarize_job_executions_statuses.py.html>`__ to see an example of how to use summarize_job_executions_statuses API.
23969
23969
  """
23970
23970
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
23971
23971
  required_arguments = ['compartmentId', 'startTime', 'endTime']
@@ -24102,7 +24102,7 @@ class DbManagementClient(object):
24102
24102
  :rtype: :class:`~oci.response.Response`
24103
24103
 
24104
24104
  :example:
24105
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/summarize_managed_database_availability_metrics.py.html>`__ to see an example of how to use summarize_managed_database_availability_metrics API.
24105
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/summarize_managed_database_availability_metrics.py.html>`__ to see an example of how to use summarize_managed_database_availability_metrics API.
24106
24106
  """
24107
24107
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
24108
24108
  required_arguments = ['managedDatabaseId', 'startTime', 'endTime']
@@ -24221,7 +24221,7 @@ class DbManagementClient(object):
24221
24221
  :rtype: :class:`~oci.response.Response`
24222
24222
 
24223
24223
  :example:
24224
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/summarize_sql_plan_baselines.py.html>`__ to see an example of how to use summarize_sql_plan_baselines API.
24224
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/summarize_sql_plan_baselines.py.html>`__ to see an example of how to use summarize_sql_plan_baselines API.
24225
24225
  """
24226
24226
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
24227
24227
  required_arguments = ['managedDatabaseId']
@@ -24338,7 +24338,7 @@ class DbManagementClient(object):
24338
24338
  :rtype: :class:`~oci.response.Response`
24339
24339
 
24340
24340
  :example:
24341
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/summarize_sql_plan_baselines_by_last_execution.py.html>`__ to see an example of how to use summarize_sql_plan_baselines_by_last_execution API.
24341
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/summarize_sql_plan_baselines_by_last_execution.py.html>`__ to see an example of how to use summarize_sql_plan_baselines_by_last_execution API.
24342
24342
  """
24343
24343
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
24344
24344
  required_arguments = ['managedDatabaseId']
@@ -24453,7 +24453,7 @@ class DbManagementClient(object):
24453
24453
  :rtype: :class:`~oci.response.Response`
24454
24454
 
24455
24455
  :example:
24456
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/test_named_credential.py.html>`__ to see an example of how to use test_named_credential API.
24456
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/test_named_credential.py.html>`__ to see an example of how to use test_named_credential API.
24457
24457
  """
24458
24458
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
24459
24459
  required_arguments = ['namedCredentialId']
@@ -24559,7 +24559,7 @@ class DbManagementClient(object):
24559
24559
  :rtype: :class:`~oci.response.Response`
24560
24560
 
24561
24561
  :example:
24562
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/test_preferred_credential.py.html>`__ to see an example of how to use test_preferred_credential API.
24562
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/test_preferred_credential.py.html>`__ to see an example of how to use test_preferred_credential API.
24563
24563
  """
24564
24564
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
24565
24565
  required_arguments = ['managedDatabaseId', 'credentialName']
@@ -24671,7 +24671,7 @@ class DbManagementClient(object):
24671
24671
  :rtype: :class:`~oci.response.Response`
24672
24672
 
24673
24673
  :example:
24674
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/update_db_management_private_endpoint.py.html>`__ to see an example of how to use update_db_management_private_endpoint API.
24674
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/update_db_management_private_endpoint.py.html>`__ to see an example of how to use update_db_management_private_endpoint API.
24675
24675
  """
24676
24676
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
24677
24677
  required_arguments = ['dbManagementPrivateEndpointId']
@@ -24783,7 +24783,7 @@ class DbManagementClient(object):
24783
24783
  :rtype: :class:`~oci.response.Response`
24784
24784
 
24785
24785
  :example:
24786
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/update_external_asm.py.html>`__ to see an example of how to use update_external_asm API.
24786
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/update_external_asm.py.html>`__ to see an example of how to use update_external_asm API.
24787
24787
  """
24788
24788
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
24789
24789
  required_arguments = ['externalAsmId']
@@ -24893,7 +24893,7 @@ class DbManagementClient(object):
24893
24893
  :rtype: :class:`~oci.response.Response`
24894
24894
 
24895
24895
  :example:
24896
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/update_external_asm_instance.py.html>`__ to see an example of how to use update_external_asm_instance API.
24896
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/update_external_asm_instance.py.html>`__ to see an example of how to use update_external_asm_instance API.
24897
24897
  """
24898
24898
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
24899
24899
  required_arguments = ['externalAsmInstanceId']
@@ -25005,7 +25005,7 @@ class DbManagementClient(object):
25005
25005
  :rtype: :class:`~oci.response.Response`
25006
25006
 
25007
25007
  :example:
25008
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/update_external_cluster.py.html>`__ to see an example of how to use update_external_cluster API.
25008
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/update_external_cluster.py.html>`__ to see an example of how to use update_external_cluster API.
25009
25009
  """
25010
25010
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
25011
25011
  required_arguments = ['externalClusterId']
@@ -25115,7 +25115,7 @@ class DbManagementClient(object):
25115
25115
  :rtype: :class:`~oci.response.Response`
25116
25116
 
25117
25117
  :example:
25118
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/update_external_cluster_instance.py.html>`__ to see an example of how to use update_external_cluster_instance API.
25118
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/update_external_cluster_instance.py.html>`__ to see an example of how to use update_external_cluster_instance API.
25119
25119
  """
25120
25120
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
25121
25121
  required_arguments = ['externalClusterInstanceId']
@@ -25225,7 +25225,7 @@ class DbManagementClient(object):
25225
25225
  :rtype: :class:`~oci.response.Response`
25226
25226
 
25227
25227
  :example:
25228
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/update_external_db_home.py.html>`__ to see an example of how to use update_external_db_home API.
25228
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/update_external_db_home.py.html>`__ to see an example of how to use update_external_db_home API.
25229
25229
  """
25230
25230
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
25231
25231
  required_arguments = ['externalDbHomeId']
@@ -25337,7 +25337,7 @@ class DbManagementClient(object):
25337
25337
  :rtype: :class:`~oci.response.Response`
25338
25338
 
25339
25339
  :example:
25340
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/update_external_db_node.py.html>`__ to see an example of how to use update_external_db_node API.
25340
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/update_external_db_node.py.html>`__ to see an example of how to use update_external_db_node API.
25341
25341
  """
25342
25342
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
25343
25343
  required_arguments = ['externalDbNodeId']
@@ -25447,7 +25447,7 @@ class DbManagementClient(object):
25447
25447
  :rtype: :class:`~oci.response.Response`
25448
25448
 
25449
25449
  :example:
25450
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/update_external_db_system.py.html>`__ to see an example of how to use update_external_db_system API.
25450
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/update_external_db_system.py.html>`__ to see an example of how to use update_external_db_system API.
25451
25451
  """
25452
25452
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
25453
25453
  required_arguments = ['externalDbSystemId']
@@ -25559,7 +25559,7 @@ class DbManagementClient(object):
25559
25559
  :rtype: :class:`~oci.response.Response`
25560
25560
 
25561
25561
  :example:
25562
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/update_external_db_system_connector.py.html>`__ to see an example of how to use update_external_db_system_connector API.
25562
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/update_external_db_system_connector.py.html>`__ to see an example of how to use update_external_db_system_connector API.
25563
25563
  """
25564
25564
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
25565
25565
  required_arguments = ['externalDbSystemConnectorId']
@@ -25669,7 +25669,7 @@ class DbManagementClient(object):
25669
25669
  :rtype: :class:`~oci.response.Response`
25670
25670
 
25671
25671
  :example:
25672
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/update_external_db_system_discovery.py.html>`__ to see an example of how to use update_external_db_system_discovery API.
25672
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/update_external_db_system_discovery.py.html>`__ to see an example of how to use update_external_db_system_discovery API.
25673
25673
  """
25674
25674
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
25675
25675
  required_arguments = ['externalDbSystemDiscoveryId']
@@ -25788,7 +25788,7 @@ class DbManagementClient(object):
25788
25788
  :rtype: :class:`~oci.response.Response`
25789
25789
 
25790
25790
  :example:
25791
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/update_external_exadata_infrastructure.py.html>`__ to see an example of how to use update_external_exadata_infrastructure API.
25791
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/update_external_exadata_infrastructure.py.html>`__ to see an example of how to use update_external_exadata_infrastructure API.
25792
25792
  """
25793
25793
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
25794
25794
  required_arguments = ['externalExadataInfrastructureId']
@@ -25905,7 +25905,7 @@ class DbManagementClient(object):
25905
25905
  :rtype: :class:`~oci.response.Response`
25906
25906
 
25907
25907
  :example:
25908
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/update_external_exadata_storage_connector.py.html>`__ to see an example of how to use update_external_exadata_storage_connector API.
25908
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/update_external_exadata_storage_connector.py.html>`__ to see an example of how to use update_external_exadata_storage_connector API.
25909
25909
  """
25910
25910
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
25911
25911
  required_arguments = ['externalExadataStorageConnectorId']
@@ -26017,7 +26017,7 @@ class DbManagementClient(object):
26017
26017
  :rtype: :class:`~oci.response.Response`
26018
26018
 
26019
26019
  :example:
26020
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/update_external_exadata_storage_grid.py.html>`__ to see an example of how to use update_external_exadata_storage_grid API.
26020
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/update_external_exadata_storage_grid.py.html>`__ to see an example of how to use update_external_exadata_storage_grid API.
26021
26021
  """
26022
26022
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
26023
26023
  required_arguments = ['externalExadataStorageGridId']
@@ -26129,7 +26129,7 @@ class DbManagementClient(object):
26129
26129
  :rtype: :class:`~oci.response.Response`
26130
26130
 
26131
26131
  :example:
26132
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/update_external_exadata_storage_server.py.html>`__ to see an example of how to use update_external_exadata_storage_server API.
26132
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/update_external_exadata_storage_server.py.html>`__ to see an example of how to use update_external_exadata_storage_server API.
26133
26133
  """
26134
26134
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
26135
26135
  required_arguments = ['externalExadataStorageServerId']
@@ -26241,7 +26241,7 @@ class DbManagementClient(object):
26241
26241
  :rtype: :class:`~oci.response.Response`
26242
26242
 
26243
26243
  :example:
26244
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/update_external_listener.py.html>`__ to see an example of how to use update_external_listener API.
26244
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/update_external_listener.py.html>`__ to see an example of how to use update_external_listener API.
26245
26245
  """
26246
26246
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
26247
26247
  required_arguments = ['externalListenerId']
@@ -26349,7 +26349,7 @@ class DbManagementClient(object):
26349
26349
  :rtype: :class:`~oci.response.Response`
26350
26350
 
26351
26351
  :example:
26352
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/update_job.py.html>`__ to see an example of how to use update_job API.
26352
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/update_job.py.html>`__ to see an example of how to use update_job API.
26353
26353
  """
26354
26354
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
26355
26355
  required_arguments = ['jobId']
@@ -26461,7 +26461,7 @@ class DbManagementClient(object):
26461
26461
  :rtype: :class:`~oci.response.Response`
26462
26462
 
26463
26463
  :example:
26464
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/update_managed_database.py.html>`__ to see an example of how to use update_managed_database API.
26464
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/update_managed_database.py.html>`__ to see an example of how to use update_managed_database API.
26465
26465
  """
26466
26466
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
26467
26467
  required_arguments = ['managedDatabaseId']
@@ -26573,7 +26573,7 @@ class DbManagementClient(object):
26573
26573
  :rtype: :class:`~oci.response.Response`
26574
26574
 
26575
26575
  :example:
26576
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/update_managed_database_group.py.html>`__ to see an example of how to use update_managed_database_group API.
26576
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/update_managed_database_group.py.html>`__ to see an example of how to use update_managed_database_group API.
26577
26577
  """
26578
26578
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
26579
26579
  required_arguments = ['managedDatabaseGroupId']
@@ -26685,7 +26685,7 @@ class DbManagementClient(object):
26685
26685
  :rtype: :class:`~oci.response.Response`
26686
26686
 
26687
26687
  :example:
26688
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/update_named_credential.py.html>`__ to see an example of how to use update_named_credential API.
26688
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/update_named_credential.py.html>`__ to see an example of how to use update_named_credential API.
26689
26689
  """
26690
26690
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
26691
26691
  required_arguments = ['namedCredentialId']
@@ -26800,7 +26800,7 @@ class DbManagementClient(object):
26800
26800
  :rtype: :class:`~oci.response.Response`
26801
26801
 
26802
26802
  :example:
26803
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/update_preferred_credential.py.html>`__ to see an example of how to use update_preferred_credential API.
26803
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/update_preferred_credential.py.html>`__ to see an example of how to use update_preferred_credential API.
26804
26804
  """
26805
26805
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
26806
26806
  required_arguments = ['managedDatabaseId', 'credentialName']
@@ -26909,7 +26909,7 @@ class DbManagementClient(object):
26909
26909
  :rtype: :class:`~oci.response.Response`
26910
26910
 
26911
26911
  :example:
26912
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/databasemanagement/update_tablespace.py.html>`__ to see an example of how to use update_tablespace API.
26912
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/databasemanagement/update_tablespace.py.html>`__ to see an example of how to use update_tablespace API.
26913
26913
  """
26914
26914
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
26915
26915
  required_arguments = ['managedDatabaseId', 'tablespaceName']