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
@@ -157,7 +157,7 @@ class DatabaseClient(object):
157
157
  :rtype: :class:`~oci.response.Response`
158
158
 
159
159
  :example:
160
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/activate_exadata_infrastructure.py.html>`__ to see an example of how to use activate_exadata_infrastructure API.
160
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/activate_exadata_infrastructure.py.html>`__ to see an example of how to use activate_exadata_infrastructure API.
161
161
  """
162
162
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
163
163
  required_arguments = ['exadataInfrastructureId']
@@ -272,7 +272,7 @@ class DatabaseClient(object):
272
272
  :rtype: :class:`~oci.response.Response`
273
273
 
274
274
  :example:
275
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/add_storage_capacity_cloud_exadata_infrastructure.py.html>`__ to see an example of how to use add_storage_capacity_cloud_exadata_infrastructure API.
275
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/add_storage_capacity_cloud_exadata_infrastructure.py.html>`__ to see an example of how to use add_storage_capacity_cloud_exadata_infrastructure API.
276
276
  """
277
277
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
278
278
  required_arguments = ['cloudExadataInfrastructureId']
@@ -387,7 +387,7 @@ class DatabaseClient(object):
387
387
  :rtype: :class:`~oci.response.Response`
388
388
 
389
389
  :example:
390
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/add_storage_capacity_exadata_infrastructure.py.html>`__ to see an example of how to use add_storage_capacity_exadata_infrastructure API.
390
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/add_storage_capacity_exadata_infrastructure.py.html>`__ to see an example of how to use add_storage_capacity_exadata_infrastructure API.
391
391
  """
392
392
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
393
393
  required_arguments = ['exadataInfrastructureId']
@@ -505,7 +505,7 @@ class DatabaseClient(object):
505
505
  :rtype: :class:`~oci.response.Response`
506
506
 
507
507
  :example:
508
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/add_virtual_machine_to_cloud_vm_cluster.py.html>`__ to see an example of how to use add_virtual_machine_to_cloud_vm_cluster API.
508
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/add_virtual_machine_to_cloud_vm_cluster.py.html>`__ to see an example of how to use add_virtual_machine_to_cloud_vm_cluster API.
509
509
  """
510
510
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
511
511
  required_arguments = ['cloudVmClusterId']
@@ -625,7 +625,7 @@ class DatabaseClient(object):
625
625
  :rtype: :class:`~oci.response.Response`
626
626
 
627
627
  :example:
628
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/add_virtual_machine_to_vm_cluster.py.html>`__ to see an example of how to use add_virtual_machine_to_vm_cluster API.
628
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/add_virtual_machine_to_vm_cluster.py.html>`__ to see an example of how to use add_virtual_machine_to_vm_cluster API.
629
629
  """
630
630
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
631
631
  required_arguments = ['vmClusterId']
@@ -745,7 +745,7 @@ class DatabaseClient(object):
745
745
  :rtype: :class:`~oci.response.Response`
746
746
 
747
747
  :example:
748
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/autonomous_database_manual_refresh.py.html>`__ to see an example of how to use autonomous_database_manual_refresh API.
748
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/autonomous_database_manual_refresh.py.html>`__ to see an example of how to use autonomous_database_manual_refresh API.
749
749
  """
750
750
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
751
751
  required_arguments = ['autonomousDatabaseId']
@@ -862,7 +862,7 @@ class DatabaseClient(object):
862
862
  :rtype: :class:`~oci.response.Response`
863
863
 
864
864
  :example:
865
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/cancel_backup.py.html>`__ to see an example of how to use cancel_backup API.
865
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/cancel_backup.py.html>`__ to see an example of how to use cancel_backup API.
866
866
  """
867
867
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
868
868
  required_arguments = ['backupId']
@@ -978,7 +978,7 @@ class DatabaseClient(object):
978
978
  :rtype: :class:`~oci.response.Response`
979
979
 
980
980
  :example:
981
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/cancel_execution_window.py.html>`__ to see an example of how to use cancel_execution_window API.
981
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/cancel_execution_window.py.html>`__ to see an example of how to use cancel_execution_window API.
982
982
  """
983
983
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
984
984
  required_arguments = ['executionWindowId']
@@ -1095,7 +1095,7 @@ class DatabaseClient(object):
1095
1095
  :rtype: :class:`~oci.response.Response`
1096
1096
 
1097
1097
  :example:
1098
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/cascading_delete_scheduling_plan.py.html>`__ to see an example of how to use cascading_delete_scheduling_plan API.
1098
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/cascading_delete_scheduling_plan.py.html>`__ to see an example of how to use cascading_delete_scheduling_plan API.
1099
1099
  """
1100
1100
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
1101
1101
  required_arguments = ['schedulingPlanId']
@@ -1215,7 +1215,7 @@ class DatabaseClient(object):
1215
1215
  :rtype: :class:`~oci.response.Response`
1216
1216
 
1217
1217
  :example:
1218
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/change_autonomous_container_database_compartment.py.html>`__ to see an example of how to use change_autonomous_container_database_compartment API.
1218
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/change_autonomous_container_database_compartment.py.html>`__ to see an example of how to use change_autonomous_container_database_compartment API.
1219
1219
  """
1220
1220
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
1221
1221
  required_arguments = ['autonomousContainerDatabaseId']
@@ -1337,7 +1337,7 @@ class DatabaseClient(object):
1337
1337
  :rtype: :class:`~oci.response.Response`
1338
1338
 
1339
1339
  :example:
1340
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/change_autonomous_database_compartment.py.html>`__ to see an example of how to use change_autonomous_database_compartment API.
1340
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/change_autonomous_database_compartment.py.html>`__ to see an example of how to use change_autonomous_database_compartment API.
1341
1341
  """
1342
1342
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
1343
1343
  required_arguments = ['autonomousDatabaseId']
@@ -1455,7 +1455,7 @@ class DatabaseClient(object):
1455
1455
  :rtype: :class:`~oci.response.Response`
1456
1456
 
1457
1457
  :example:
1458
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/change_autonomous_database_software_image_compartment.py.html>`__ to see an example of how to use change_autonomous_database_software_image_compartment API.
1458
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/change_autonomous_database_software_image_compartment.py.html>`__ to see an example of how to use change_autonomous_database_software_image_compartment API.
1459
1459
  """
1460
1460
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
1461
1461
  required_arguments = ['autonomousDatabaseSoftwareImageId']
@@ -1573,7 +1573,7 @@ class DatabaseClient(object):
1573
1573
  :rtype: :class:`~oci.response.Response`
1574
1574
 
1575
1575
  :example:
1576
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/change_autonomous_database_subscription.py.html>`__ to see an example of how to use change_autonomous_database_subscription API.
1576
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/change_autonomous_database_subscription.py.html>`__ to see an example of how to use change_autonomous_database_subscription API.
1577
1577
  """
1578
1578
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
1579
1579
  required_arguments = ['autonomousDatabaseId']
@@ -1695,7 +1695,7 @@ class DatabaseClient(object):
1695
1695
  :rtype: :class:`~oci.response.Response`
1696
1696
 
1697
1697
  :example:
1698
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/change_autonomous_exadata_infrastructure_compartment.py.html>`__ to see an example of how to use change_autonomous_exadata_infrastructure_compartment API.
1698
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/change_autonomous_exadata_infrastructure_compartment.py.html>`__ to see an example of how to use change_autonomous_exadata_infrastructure_compartment API.
1699
1699
  """
1700
1700
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
1701
1701
  required_arguments = ['autonomousExadataInfrastructureId']
@@ -1813,7 +1813,7 @@ class DatabaseClient(object):
1813
1813
  :rtype: :class:`~oci.response.Response`
1814
1814
 
1815
1815
  :example:
1816
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/change_autonomous_vm_cluster_compartment.py.html>`__ to see an example of how to use change_autonomous_vm_cluster_compartment API.
1816
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/change_autonomous_vm_cluster_compartment.py.html>`__ to see an example of how to use change_autonomous_vm_cluster_compartment API.
1817
1817
  """
1818
1818
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
1819
1819
  required_arguments = ['autonomousVmClusterId']
@@ -1935,7 +1935,7 @@ class DatabaseClient(object):
1935
1935
  :rtype: :class:`~oci.response.Response`
1936
1936
 
1937
1937
  :example:
1938
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/change_backup_destination_compartment.py.html>`__ to see an example of how to use change_backup_destination_compartment API.
1938
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/change_backup_destination_compartment.py.html>`__ to see an example of how to use change_backup_destination_compartment API.
1939
1939
  """
1940
1940
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
1941
1941
  required_arguments = ['backupDestinationId']
@@ -2053,7 +2053,7 @@ class DatabaseClient(object):
2053
2053
  :rtype: :class:`~oci.response.Response`
2054
2054
 
2055
2055
  :example:
2056
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/change_cloud_autonomous_vm_cluster_compartment.py.html>`__ to see an example of how to use change_cloud_autonomous_vm_cluster_compartment API.
2056
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/change_cloud_autonomous_vm_cluster_compartment.py.html>`__ to see an example of how to use change_cloud_autonomous_vm_cluster_compartment API.
2057
2057
  """
2058
2058
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
2059
2059
  required_arguments = ['cloudAutonomousVmClusterId']
@@ -2173,7 +2173,7 @@ class DatabaseClient(object):
2173
2173
  :rtype: :class:`~oci.response.Response`
2174
2174
 
2175
2175
  :example:
2176
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/change_cloud_exadata_infrastructure_compartment.py.html>`__ to see an example of how to use change_cloud_exadata_infrastructure_compartment API.
2176
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/change_cloud_exadata_infrastructure_compartment.py.html>`__ to see an example of how to use change_cloud_exadata_infrastructure_compartment API.
2177
2177
  """
2178
2178
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
2179
2179
  required_arguments = ['cloudExadataInfrastructureId']
@@ -2291,7 +2291,7 @@ class DatabaseClient(object):
2291
2291
  :rtype: :class:`~oci.response.Response`
2292
2292
 
2293
2293
  :example:
2294
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/change_cloud_exadata_infrastructure_subscription.py.html>`__ to see an example of how to use change_cloud_exadata_infrastructure_subscription API.
2294
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/change_cloud_exadata_infrastructure_subscription.py.html>`__ to see an example of how to use change_cloud_exadata_infrastructure_subscription API.
2295
2295
  """
2296
2296
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
2297
2297
  required_arguments = ['cloudExadataInfrastructureId']
@@ -2409,7 +2409,7 @@ class DatabaseClient(object):
2409
2409
  :rtype: :class:`~oci.response.Response`
2410
2410
 
2411
2411
  :example:
2412
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/change_cloud_vm_cluster_compartment.py.html>`__ to see an example of how to use change_cloud_vm_cluster_compartment API.
2412
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/change_cloud_vm_cluster_compartment.py.html>`__ to see an example of how to use change_cloud_vm_cluster_compartment API.
2413
2413
  """
2414
2414
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
2415
2415
  required_arguments = ['cloudVmClusterId']
@@ -2527,7 +2527,7 @@ class DatabaseClient(object):
2527
2527
  :rtype: :class:`~oci.response.Response`
2528
2528
 
2529
2529
  :example:
2530
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/change_cloud_vm_cluster_subscription.py.html>`__ to see an example of how to use change_cloud_vm_cluster_subscription API.
2530
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/change_cloud_vm_cluster_subscription.py.html>`__ to see an example of how to use change_cloud_vm_cluster_subscription API.
2531
2531
  """
2532
2532
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
2533
2533
  required_arguments = ['cloudVmClusterId']
@@ -2649,7 +2649,7 @@ class DatabaseClient(object):
2649
2649
  :rtype: :class:`~oci.response.Response`
2650
2650
 
2651
2651
  :example:
2652
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/change_database_software_image_compartment.py.html>`__ to see an example of how to use change_database_software_image_compartment API.
2652
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/change_database_software_image_compartment.py.html>`__ to see an example of how to use change_database_software_image_compartment API.
2653
2653
  """
2654
2654
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
2655
2655
  required_arguments = ['databaseSoftwareImageId']
@@ -2772,7 +2772,7 @@ class DatabaseClient(object):
2772
2772
  :rtype: :class:`~oci.response.Response`
2773
2773
 
2774
2774
  :example:
2775
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/change_dataguard_role.py.html>`__ to see an example of how to use change_dataguard_role API.
2775
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/change_dataguard_role.py.html>`__ to see an example of how to use change_dataguard_role API.
2776
2776
  """
2777
2777
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
2778
2778
  required_arguments = ['autonomousContainerDatabaseId']
@@ -2903,7 +2903,7 @@ class DatabaseClient(object):
2903
2903
  :rtype: :class:`~oci.response.Response`
2904
2904
 
2905
2905
  :example:
2906
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/change_db_system_compartment.py.html>`__ to see an example of how to use change_db_system_compartment API.
2906
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/change_db_system_compartment.py.html>`__ to see an example of how to use change_db_system_compartment API.
2907
2907
  """
2908
2908
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
2909
2909
  required_arguments = ['dbSystemId']
@@ -3014,7 +3014,7 @@ class DatabaseClient(object):
3014
3014
  :rtype: :class:`~oci.response.Response`
3015
3015
 
3016
3016
  :example:
3017
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/change_disaster_recovery_configuration.py.html>`__ to see an example of how to use change_disaster_recovery_configuration API.
3017
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/change_disaster_recovery_configuration.py.html>`__ to see an example of how to use change_disaster_recovery_configuration API.
3018
3018
  """
3019
3019
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
3020
3020
  required_arguments = ['autonomousDatabaseId']
@@ -3132,7 +3132,7 @@ class DatabaseClient(object):
3132
3132
  :rtype: :class:`~oci.response.Response`
3133
3133
 
3134
3134
  :example:
3135
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/change_exadata_infrastructure_compartment.py.html>`__ to see an example of how to use change_exadata_infrastructure_compartment API.
3135
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/change_exadata_infrastructure_compartment.py.html>`__ to see an example of how to use change_exadata_infrastructure_compartment API.
3136
3136
  """
3137
3137
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
3138
3138
  required_arguments = ['exadataInfrastructureId']
@@ -3250,7 +3250,7 @@ class DatabaseClient(object):
3250
3250
  :rtype: :class:`~oci.response.Response`
3251
3251
 
3252
3252
  :example:
3253
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/change_exadb_vm_cluster_compartment.py.html>`__ to see an example of how to use change_exadb_vm_cluster_compartment API.
3253
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/change_exadb_vm_cluster_compartment.py.html>`__ to see an example of how to use change_exadb_vm_cluster_compartment API.
3254
3254
  """
3255
3255
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
3256
3256
  required_arguments = ['exadbVmClusterId']
@@ -3368,7 +3368,7 @@ class DatabaseClient(object):
3368
3368
  :rtype: :class:`~oci.response.Response`
3369
3369
 
3370
3370
  :example:
3371
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/change_exascale_db_storage_vault_compartment.py.html>`__ to see an example of how to use change_exascale_db_storage_vault_compartment API.
3371
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/change_exascale_db_storage_vault_compartment.py.html>`__ to see an example of how to use change_exascale_db_storage_vault_compartment API.
3372
3372
  """
3373
3373
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
3374
3374
  required_arguments = ['exascaleDbStorageVaultId']
@@ -3491,7 +3491,7 @@ class DatabaseClient(object):
3491
3491
  :rtype: :class:`~oci.response.Response`
3492
3492
 
3493
3493
  :example:
3494
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/change_external_container_database_compartment.py.html>`__ to see an example of how to use change_external_container_database_compartment API.
3494
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/change_external_container_database_compartment.py.html>`__ to see an example of how to use change_external_container_database_compartment API.
3495
3495
  """
3496
3496
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
3497
3497
  required_arguments = ['externalContainerDatabaseId']
@@ -3613,7 +3613,7 @@ class DatabaseClient(object):
3613
3613
  :rtype: :class:`~oci.response.Response`
3614
3614
 
3615
3615
  :example:
3616
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/change_external_non_container_database_compartment.py.html>`__ to see an example of how to use change_external_non_container_database_compartment API.
3616
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/change_external_non_container_database_compartment.py.html>`__ to see an example of how to use change_external_non_container_database_compartment API.
3617
3617
  """
3618
3618
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
3619
3619
  required_arguments = ['externalNonContainerDatabaseId']
@@ -3738,7 +3738,7 @@ class DatabaseClient(object):
3738
3738
  :rtype: :class:`~oci.response.Response`
3739
3739
 
3740
3740
  :example:
3741
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/change_external_pluggable_database_compartment.py.html>`__ to see an example of how to use change_external_pluggable_database_compartment API.
3741
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/change_external_pluggable_database_compartment.py.html>`__ to see an example of how to use change_external_pluggable_database_compartment API.
3742
3742
  """
3743
3743
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
3744
3744
  required_arguments = ['externalPluggableDatabaseId']
@@ -3860,7 +3860,7 @@ class DatabaseClient(object):
3860
3860
  :rtype: :class:`~oci.response.Response`
3861
3861
 
3862
3862
  :example:
3863
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/change_key_store_compartment.py.html>`__ to see an example of how to use change_key_store_compartment API.
3863
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/change_key_store_compartment.py.html>`__ to see an example of how to use change_key_store_compartment API.
3864
3864
  """
3865
3865
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
3866
3866
  required_arguments = ['keyStoreId']
@@ -3978,7 +3978,7 @@ class DatabaseClient(object):
3978
3978
  :rtype: :class:`~oci.response.Response`
3979
3979
 
3980
3980
  :example:
3981
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/change_key_store_type.py.html>`__ to see an example of how to use change_key_store_type API.
3981
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/change_key_store_type.py.html>`__ to see an example of how to use change_key_store_type API.
3982
3982
  """
3983
3983
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
3984
3984
  required_arguments = ['databaseId']
@@ -4096,7 +4096,7 @@ class DatabaseClient(object):
4096
4096
  :rtype: :class:`~oci.response.Response`
4097
4097
 
4098
4098
  :example:
4099
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/change_oneoff_patch_compartment.py.html>`__ to see an example of how to use change_oneoff_patch_compartment API.
4099
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/change_oneoff_patch_compartment.py.html>`__ to see an example of how to use change_oneoff_patch_compartment API.
4100
4100
  """
4101
4101
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
4102
4102
  required_arguments = ['oneoffPatchId']
@@ -4214,7 +4214,7 @@ class DatabaseClient(object):
4214
4214
  :rtype: :class:`~oci.response.Response`
4215
4215
 
4216
4216
  :example:
4217
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/change_scheduling_plan_compartment.py.html>`__ to see an example of how to use change_scheduling_plan_compartment API.
4217
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/change_scheduling_plan_compartment.py.html>`__ to see an example of how to use change_scheduling_plan_compartment API.
4218
4218
  """
4219
4219
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
4220
4220
  required_arguments = ['schedulingPlanId']
@@ -4332,7 +4332,7 @@ class DatabaseClient(object):
4332
4332
  :rtype: :class:`~oci.response.Response`
4333
4333
 
4334
4334
  :example:
4335
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/change_scheduling_policy_compartment.py.html>`__ to see an example of how to use change_scheduling_policy_compartment API.
4335
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/change_scheduling_policy_compartment.py.html>`__ to see an example of how to use change_scheduling_policy_compartment API.
4336
4336
  """
4337
4337
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
4338
4338
  required_arguments = ['schedulingPolicyId']
@@ -4451,7 +4451,7 @@ class DatabaseClient(object):
4451
4451
  :rtype: :class:`~oci.response.Response`
4452
4452
 
4453
4453
  :example:
4454
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/change_vm_cluster_compartment.py.html>`__ to see an example of how to use change_vm_cluster_compartment API.
4454
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/change_vm_cluster_compartment.py.html>`__ to see an example of how to use change_vm_cluster_compartment API.
4455
4455
  """
4456
4456
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
4457
4457
  required_arguments = ['vmClusterId']
@@ -4568,7 +4568,7 @@ class DatabaseClient(object):
4568
4568
  :rtype: :class:`~oci.response.Response`
4569
4569
 
4570
4570
  :example:
4571
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/check_external_database_connector_connection_status.py.html>`__ to see an example of how to use check_external_database_connector_connection_status API.
4571
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/check_external_database_connector_connection_status.py.html>`__ to see an example of how to use check_external_database_connector_connection_status API.
4572
4572
  """
4573
4573
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
4574
4574
  required_arguments = ['externalDatabaseConnectorId']
@@ -4685,7 +4685,7 @@ class DatabaseClient(object):
4685
4685
  :rtype: :class:`~oci.response.Response`
4686
4686
 
4687
4687
  :example:
4688
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/complete_external_backup_job.py.html>`__ to see an example of how to use complete_external_backup_job API.
4688
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/complete_external_backup_job.py.html>`__ to see an example of how to use complete_external_backup_job API.
4689
4689
  """
4690
4690
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
4691
4691
  required_arguments = ['backupId']
@@ -4807,7 +4807,7 @@ class DatabaseClient(object):
4807
4807
  :rtype: :class:`~oci.response.Response`
4808
4808
 
4809
4809
  :example:
4810
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/configure_autonomous_database_vault_key.py.html>`__ to see an example of how to use configure_autonomous_database_vault_key API.
4810
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/configure_autonomous_database_vault_key.py.html>`__ to see an example of how to use configure_autonomous_database_vault_key API.
4811
4811
  """
4812
4812
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
4813
4813
  required_arguments = ['autonomousDatabaseId']
@@ -4925,7 +4925,7 @@ class DatabaseClient(object):
4925
4925
  :rtype: :class:`~oci.response.Response`
4926
4926
 
4927
4927
  :example:
4928
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/configure_exascale_exadata_infrastructure.py.html>`__ to see an example of how to use configure_exascale_exadata_infrastructure API.
4928
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/configure_exascale_exadata_infrastructure.py.html>`__ to see an example of how to use configure_exascale_exadata_infrastructure API.
4929
4929
  """
4930
4930
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
4931
4931
  required_arguments = ['exadataInfrastructureId']
@@ -5038,7 +5038,7 @@ class DatabaseClient(object):
5038
5038
  :rtype: :class:`~oci.response.Response`
5039
5039
 
5040
5040
  :example:
5041
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/configure_saas_admin_user.py.html>`__ to see an example of how to use configure_saas_admin_user API.
5041
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/configure_saas_admin_user.py.html>`__ to see an example of how to use configure_saas_admin_user API.
5042
5042
  """
5043
5043
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
5044
5044
  required_arguments = ['autonomousDatabaseId']
@@ -5153,7 +5153,7 @@ class DatabaseClient(object):
5153
5153
  :rtype: :class:`~oci.response.Response`
5154
5154
 
5155
5155
  :example:
5156
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/confirm_key_store_details_are_correct.py.html>`__ to see an example of how to use confirm_key_store_details_are_correct API.
5156
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/confirm_key_store_details_are_correct.py.html>`__ to see an example of how to use confirm_key_store_details_are_correct API.
5157
5157
  """
5158
5158
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
5159
5159
  required_arguments = ['keyStoreId']
@@ -5262,7 +5262,7 @@ class DatabaseClient(object):
5262
5262
  :rtype: :class:`~oci.response.Response`
5263
5263
 
5264
5264
  :example:
5265
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/convert_to_pdb.py.html>`__ to see an example of how to use convert_to_pdb API.
5265
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/convert_to_pdb.py.html>`__ to see an example of how to use convert_to_pdb API.
5266
5266
  """
5267
5267
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
5268
5268
  required_arguments = ['databaseId']
@@ -5380,7 +5380,7 @@ class DatabaseClient(object):
5380
5380
  :rtype: :class:`~oci.response.Response`
5381
5381
 
5382
5382
  :example:
5383
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/convert_to_regular_pluggable_database.py.html>`__ to see an example of how to use convert_to_regular_pluggable_database API.
5383
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/convert_to_regular_pluggable_database.py.html>`__ to see an example of how to use convert_to_regular_pluggable_database API.
5384
5384
  """
5385
5385
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
5386
5386
  required_arguments = ['pluggableDatabaseId']
@@ -5490,7 +5490,7 @@ class DatabaseClient(object):
5490
5490
  :rtype: :class:`~oci.response.Response`
5491
5491
 
5492
5492
  :example:
5493
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/create_application_vip.py.html>`__ to see an example of how to use create_application_vip API.
5493
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/create_application_vip.py.html>`__ to see an example of how to use create_application_vip API.
5494
5494
  """
5495
5495
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
5496
5496
  required_arguments = []
@@ -5583,7 +5583,7 @@ class DatabaseClient(object):
5583
5583
  :rtype: :class:`~oci.response.Response`
5584
5584
 
5585
5585
  :example:
5586
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/create_autonomous_container_database.py.html>`__ to see an example of how to use create_autonomous_container_database API.
5586
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/create_autonomous_container_database.py.html>`__ to see an example of how to use create_autonomous_container_database API.
5587
5587
  """
5588
5588
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
5589
5589
  required_arguments = []
@@ -5689,7 +5689,7 @@ class DatabaseClient(object):
5689
5689
  :rtype: :class:`~oci.response.Response`
5690
5690
 
5691
5691
  :example:
5692
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/create_autonomous_container_database_dataguard_association.py.html>`__ to see an example of how to use create_autonomous_container_database_dataguard_association API.
5692
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/create_autonomous_container_database_dataguard_association.py.html>`__ to see an example of how to use create_autonomous_container_database_dataguard_association API.
5693
5693
  """
5694
5694
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
5695
5695
  required_arguments = ['autonomousContainerDatabaseId']
@@ -5795,7 +5795,7 @@ class DatabaseClient(object):
5795
5795
  :rtype: :class:`~oci.response.Response`
5796
5796
 
5797
5797
  :example:
5798
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/create_autonomous_database.py.html>`__ to see an example of how to use create_autonomous_database API.
5798
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/create_autonomous_database.py.html>`__ to see an example of how to use create_autonomous_database API.
5799
5799
  """
5800
5800
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
5801
5801
  required_arguments = []
@@ -5891,7 +5891,7 @@ class DatabaseClient(object):
5891
5891
  :rtype: :class:`~oci.response.Response`
5892
5892
 
5893
5893
  :example:
5894
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/create_autonomous_database_backup.py.html>`__ to see an example of how to use create_autonomous_database_backup API.
5894
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/create_autonomous_database_backup.py.html>`__ to see an example of how to use create_autonomous_database_backup API.
5895
5895
  """
5896
5896
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
5897
5897
  required_arguments = []
@@ -5987,7 +5987,7 @@ class DatabaseClient(object):
5987
5987
  :rtype: :class:`~oci.response.Response`
5988
5988
 
5989
5989
  :example:
5990
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/create_autonomous_database_software_image.py.html>`__ to see an example of how to use create_autonomous_database_software_image API.
5990
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/create_autonomous_database_software_image.py.html>`__ to see an example of how to use create_autonomous_database_software_image API.
5991
5991
  """
5992
5992
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
5993
5993
  required_arguments = []
@@ -6083,7 +6083,7 @@ class DatabaseClient(object):
6083
6083
  :rtype: :class:`~oci.response.Response`
6084
6084
 
6085
6085
  :example:
6086
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/create_autonomous_vm_cluster.py.html>`__ to see an example of how to use create_autonomous_vm_cluster API.
6086
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/create_autonomous_vm_cluster.py.html>`__ to see an example of how to use create_autonomous_vm_cluster API.
6087
6087
  """
6088
6088
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
6089
6089
  required_arguments = []
@@ -6176,7 +6176,7 @@ class DatabaseClient(object):
6176
6176
  :rtype: :class:`~oci.response.Response`
6177
6177
 
6178
6178
  :example:
6179
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/create_backup.py.html>`__ to see an example of how to use create_backup API.
6179
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/create_backup.py.html>`__ to see an example of how to use create_backup API.
6180
6180
  """
6181
6181
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
6182
6182
  required_arguments = []
@@ -6270,7 +6270,7 @@ class DatabaseClient(object):
6270
6270
  :rtype: :class:`~oci.response.Response`
6271
6271
 
6272
6272
  :example:
6273
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/create_backup_destination.py.html>`__ to see an example of how to use create_backup_destination API.
6273
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/create_backup_destination.py.html>`__ to see an example of how to use create_backup_destination API.
6274
6274
  """
6275
6275
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
6276
6276
  required_arguments = []
@@ -6366,7 +6366,7 @@ class DatabaseClient(object):
6366
6366
  :rtype: :class:`~oci.response.Response`
6367
6367
 
6368
6368
  :example:
6369
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/create_cloud_autonomous_vm_cluster.py.html>`__ to see an example of how to use create_cloud_autonomous_vm_cluster API.
6369
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/create_cloud_autonomous_vm_cluster.py.html>`__ to see an example of how to use create_cloud_autonomous_vm_cluster API.
6370
6370
  """
6371
6371
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
6372
6372
  required_arguments = []
@@ -6466,7 +6466,7 @@ class DatabaseClient(object):
6466
6466
  :rtype: :class:`~oci.response.Response`
6467
6467
 
6468
6468
  :example:
6469
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/create_cloud_exadata_infrastructure.py.html>`__ to see an example of how to use create_cloud_exadata_infrastructure API.
6469
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/create_cloud_exadata_infrastructure.py.html>`__ to see an example of how to use create_cloud_exadata_infrastructure API.
6470
6470
  """
6471
6471
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
6472
6472
  required_arguments = []
@@ -6564,7 +6564,7 @@ class DatabaseClient(object):
6564
6564
  :rtype: :class:`~oci.response.Response`
6565
6565
 
6566
6566
  :example:
6567
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/create_cloud_vm_cluster.py.html>`__ to see an example of how to use create_cloud_vm_cluster API.
6567
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/create_cloud_vm_cluster.py.html>`__ to see an example of how to use create_cloud_vm_cluster API.
6568
6568
  """
6569
6569
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
6570
6570
  required_arguments = []
@@ -6664,7 +6664,7 @@ class DatabaseClient(object):
6664
6664
  :rtype: :class:`~oci.response.Response`
6665
6665
 
6666
6666
  :example:
6667
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/create_console_connection.py.html>`__ to see an example of how to use create_console_connection API.
6667
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/create_console_connection.py.html>`__ to see an example of how to use create_console_connection API.
6668
6668
  """
6669
6669
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
6670
6670
  required_arguments = ['dbNodeId']
@@ -6775,7 +6775,7 @@ class DatabaseClient(object):
6775
6775
  :rtype: :class:`~oci.response.Response`
6776
6776
 
6777
6777
  :example:
6778
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/create_console_history.py.html>`__ to see an example of how to use create_console_history API.
6778
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/create_console_history.py.html>`__ to see an example of how to use create_console_history API.
6779
6779
  """
6780
6780
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
6781
6781
  required_arguments = ['dbNodeId']
@@ -6895,7 +6895,7 @@ class DatabaseClient(object):
6895
6895
  :rtype: :class:`~oci.response.Response`
6896
6896
 
6897
6897
  :example:
6898
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/create_data_guard_association.py.html>`__ to see an example of how to use create_data_guard_association API.
6898
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/create_data_guard_association.py.html>`__ to see an example of how to use create_data_guard_association API.
6899
6899
  """
6900
6900
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
6901
6901
  required_arguments = ['databaseId']
@@ -7001,7 +7001,7 @@ class DatabaseClient(object):
7001
7001
  :rtype: :class:`~oci.response.Response`
7002
7002
 
7003
7003
  :example:
7004
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/create_database.py.html>`__ to see an example of how to use create_database API.
7004
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/create_database.py.html>`__ to see an example of how to use create_database API.
7005
7005
  """
7006
7006
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
7007
7007
  required_arguments = []
@@ -7094,7 +7094,7 @@ class DatabaseClient(object):
7094
7094
  :rtype: :class:`~oci.response.Response`
7095
7095
 
7096
7096
  :example:
7097
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/create_database_software_image.py.html>`__ to see an example of how to use create_database_software_image API.
7097
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/create_database_software_image.py.html>`__ to see an example of how to use create_database_software_image API.
7098
7098
  """
7099
7099
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
7100
7100
  required_arguments = []
@@ -7185,7 +7185,7 @@ class DatabaseClient(object):
7185
7185
  :rtype: :class:`~oci.response.Response`
7186
7186
 
7187
7187
  :example:
7188
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/create_db_home.py.html>`__ to see an example of how to use create_db_home API.
7188
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/create_db_home.py.html>`__ to see an example of how to use create_db_home API.
7189
7189
  """
7190
7190
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
7191
7191
  required_arguments = []
@@ -7280,7 +7280,7 @@ class DatabaseClient(object):
7280
7280
  :rtype: :class:`~oci.response.Response`
7281
7281
 
7282
7282
  :example:
7283
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/create_exadata_infrastructure.py.html>`__ to see an example of how to use create_exadata_infrastructure API.
7283
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/create_exadata_infrastructure.py.html>`__ to see an example of how to use create_exadata_infrastructure API.
7284
7284
  """
7285
7285
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
7286
7286
  required_arguments = []
@@ -7378,7 +7378,7 @@ class DatabaseClient(object):
7378
7378
  :rtype: :class:`~oci.response.Response`
7379
7379
 
7380
7380
  :example:
7381
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/create_exadb_vm_cluster.py.html>`__ to see an example of how to use create_exadb_vm_cluster API.
7381
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/create_exadb_vm_cluster.py.html>`__ to see an example of how to use create_exadb_vm_cluster API.
7382
7382
  """
7383
7383
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
7384
7384
  required_arguments = []
@@ -7474,7 +7474,7 @@ class DatabaseClient(object):
7474
7474
  :rtype: :class:`~oci.response.Response`
7475
7475
 
7476
7476
  :example:
7477
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/create_exascale_db_storage_vault.py.html>`__ to see an example of how to use create_exascale_db_storage_vault API.
7477
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/create_exascale_db_storage_vault.py.html>`__ to see an example of how to use create_exascale_db_storage_vault API.
7478
7478
  """
7479
7479
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
7480
7480
  required_arguments = []
@@ -7570,7 +7570,7 @@ class DatabaseClient(object):
7570
7570
  :rtype: :class:`~oci.response.Response`
7571
7571
 
7572
7572
  :example:
7573
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/create_execution_action.py.html>`__ to see an example of how to use create_execution_action API.
7573
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/create_execution_action.py.html>`__ to see an example of how to use create_execution_action API.
7574
7574
  """
7575
7575
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
7576
7576
  required_arguments = []
@@ -7666,7 +7666,7 @@ class DatabaseClient(object):
7666
7666
  :rtype: :class:`~oci.response.Response`
7667
7667
 
7668
7668
  :example:
7669
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/create_execution_window.py.html>`__ to see an example of how to use create_execution_window API.
7669
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/create_execution_window.py.html>`__ to see an example of how to use create_execution_window API.
7670
7670
  """
7671
7671
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
7672
7672
  required_arguments = []
@@ -7763,7 +7763,7 @@ class DatabaseClient(object):
7763
7763
  :rtype: :class:`~oci.response.Response`
7764
7764
 
7765
7765
  :example:
7766
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/create_external_backup_job.py.html>`__ to see an example of how to use create_external_backup_job API.
7766
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/create_external_backup_job.py.html>`__ to see an example of how to use create_external_backup_job API.
7767
7767
  """
7768
7768
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
7769
7769
  required_arguments = []
@@ -7857,7 +7857,7 @@ class DatabaseClient(object):
7857
7857
  :rtype: :class:`~oci.response.Response`
7858
7858
 
7859
7859
  :example:
7860
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/create_external_container_database.py.html>`__ to see an example of how to use create_external_container_database API.
7860
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/create_external_container_database.py.html>`__ to see an example of how to use create_external_container_database API.
7861
7861
  """
7862
7862
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
7863
7863
  required_arguments = []
@@ -7953,7 +7953,7 @@ class DatabaseClient(object):
7953
7953
  :rtype: :class:`~oci.response.Response`
7954
7954
 
7955
7955
  :example:
7956
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/create_external_database_connector.py.html>`__ to see an example of how to use create_external_database_connector API.
7956
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/create_external_database_connector.py.html>`__ to see an example of how to use create_external_database_connector API.
7957
7957
  """
7958
7958
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
7959
7959
  required_arguments = []
@@ -8049,7 +8049,7 @@ class DatabaseClient(object):
8049
8049
  :rtype: :class:`~oci.response.Response`
8050
8050
 
8051
8051
  :example:
8052
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/create_external_non_container_database.py.html>`__ to see an example of how to use create_external_non_container_database API.
8052
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/create_external_non_container_database.py.html>`__ to see an example of how to use create_external_non_container_database API.
8053
8053
  """
8054
8054
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
8055
8055
  required_arguments = []
@@ -8146,7 +8146,7 @@ class DatabaseClient(object):
8146
8146
  :rtype: :class:`~oci.response.Response`
8147
8147
 
8148
8148
  :example:
8149
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/create_external_pluggable_database.py.html>`__ to see an example of how to use create_external_pluggable_database API.
8149
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/create_external_pluggable_database.py.html>`__ to see an example of how to use create_external_pluggable_database API.
8150
8150
  """
8151
8151
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
8152
8152
  required_arguments = []
@@ -8242,7 +8242,7 @@ class DatabaseClient(object):
8242
8242
  :rtype: :class:`~oci.response.Response`
8243
8243
 
8244
8244
  :example:
8245
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/create_key_store.py.html>`__ to see an example of how to use create_key_store API.
8245
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/create_key_store.py.html>`__ to see an example of how to use create_key_store API.
8246
8246
  """
8247
8247
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
8248
8248
  required_arguments = []
@@ -8341,7 +8341,7 @@ class DatabaseClient(object):
8341
8341
  :rtype: :class:`~oci.response.Response`
8342
8342
 
8343
8343
  :example:
8344
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/create_maintenance_run.py.html>`__ to see an example of how to use create_maintenance_run API.
8344
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/create_maintenance_run.py.html>`__ to see an example of how to use create_maintenance_run API.
8345
8345
  """
8346
8346
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
8347
8347
  required_arguments = []
@@ -8437,7 +8437,7 @@ class DatabaseClient(object):
8437
8437
  :rtype: :class:`~oci.response.Response`
8438
8438
 
8439
8439
  :example:
8440
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/create_oneoff_patch.py.html>`__ to see an example of how to use create_oneoff_patch API.
8440
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/create_oneoff_patch.py.html>`__ to see an example of how to use create_oneoff_patch API.
8441
8441
  """
8442
8442
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
8443
8443
  required_arguments = []
@@ -8535,7 +8535,7 @@ class DatabaseClient(object):
8535
8535
  :rtype: :class:`~oci.response.Response`
8536
8536
 
8537
8537
  :example:
8538
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/create_pluggable_database.py.html>`__ to see an example of how to use create_pluggable_database API.
8538
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/create_pluggable_database.py.html>`__ to see an example of how to use create_pluggable_database API.
8539
8539
  """
8540
8540
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
8541
8541
  required_arguments = []
@@ -8631,7 +8631,7 @@ class DatabaseClient(object):
8631
8631
  :rtype: :class:`~oci.response.Response`
8632
8632
 
8633
8633
  :example:
8634
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/create_scheduled_action.py.html>`__ to see an example of how to use create_scheduled_action API.
8634
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/create_scheduled_action.py.html>`__ to see an example of how to use create_scheduled_action API.
8635
8635
  """
8636
8636
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
8637
8637
  required_arguments = []
@@ -8727,7 +8727,7 @@ class DatabaseClient(object):
8727
8727
  :rtype: :class:`~oci.response.Response`
8728
8728
 
8729
8729
  :example:
8730
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/create_scheduling_plan.py.html>`__ to see an example of how to use create_scheduling_plan API.
8730
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/create_scheduling_plan.py.html>`__ to see an example of how to use create_scheduling_plan API.
8731
8731
  """
8732
8732
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
8733
8733
  required_arguments = []
@@ -8823,7 +8823,7 @@ class DatabaseClient(object):
8823
8823
  :rtype: :class:`~oci.response.Response`
8824
8824
 
8825
8825
  :example:
8826
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/create_scheduling_policy.py.html>`__ to see an example of how to use create_scheduling_policy API.
8826
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/create_scheduling_policy.py.html>`__ to see an example of how to use create_scheduling_policy API.
8827
8827
  """
8828
8828
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
8829
8829
  required_arguments = []
@@ -8924,7 +8924,7 @@ class DatabaseClient(object):
8924
8924
  :rtype: :class:`~oci.response.Response`
8925
8925
 
8926
8926
  :example:
8927
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/create_scheduling_window.py.html>`__ to see an example of how to use create_scheduling_window API.
8927
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/create_scheduling_window.py.html>`__ to see an example of how to use create_scheduling_window API.
8928
8928
  """
8929
8929
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
8930
8930
  required_arguments = ['schedulingPolicyId']
@@ -9033,7 +9033,7 @@ class DatabaseClient(object):
9033
9033
  :rtype: :class:`~oci.response.Response`
9034
9034
 
9035
9035
  :example:
9036
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/create_vm_cluster.py.html>`__ to see an example of how to use create_vm_cluster API.
9036
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/create_vm_cluster.py.html>`__ to see an example of how to use create_vm_cluster API.
9037
9037
  """
9038
9038
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
9039
9039
  required_arguments = []
@@ -9135,7 +9135,7 @@ class DatabaseClient(object):
9135
9135
  :rtype: :class:`~oci.response.Response`
9136
9136
 
9137
9137
  :example:
9138
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/create_vm_cluster_network.py.html>`__ to see an example of how to use create_vm_cluster_network API.
9138
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/create_vm_cluster_network.py.html>`__ to see an example of how to use create_vm_cluster_network API.
9139
9139
  """
9140
9140
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
9141
9141
  required_arguments = ['exadataInfrastructureId']
@@ -9264,7 +9264,7 @@ class DatabaseClient(object):
9264
9264
  :rtype: :class:`~oci.response.Response`
9265
9265
 
9266
9266
  :example:
9267
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/db_node_action.py.html>`__ to see an example of how to use db_node_action API.
9267
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/db_node_action.py.html>`__ to see an example of how to use db_node_action API.
9268
9268
  """
9269
9269
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
9270
9270
  required_arguments = ['dbNodeId', 'action']
@@ -9377,7 +9377,7 @@ class DatabaseClient(object):
9377
9377
  :rtype: :class:`~oci.response.Response`
9378
9378
 
9379
9379
  :example:
9380
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/delete_application_vip.py.html>`__ to see an example of how to use delete_application_vip API.
9380
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/delete_application_vip.py.html>`__ to see an example of how to use delete_application_vip API.
9381
9381
  """
9382
9382
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
9383
9383
  required_arguments = ['applicationVipId']
@@ -9480,7 +9480,7 @@ class DatabaseClient(object):
9480
9480
  :rtype: :class:`~oci.response.Response`
9481
9481
 
9482
9482
  :example:
9483
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/delete_autonomous_database.py.html>`__ to see an example of how to use delete_autonomous_database API.
9483
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/delete_autonomous_database.py.html>`__ to see an example of how to use delete_autonomous_database API.
9484
9484
  """
9485
9485
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
9486
9486
  required_arguments = ['autonomousDatabaseId']
@@ -9583,7 +9583,7 @@ class DatabaseClient(object):
9583
9583
  :rtype: :class:`~oci.response.Response`
9584
9584
 
9585
9585
  :example:
9586
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/delete_autonomous_database_backup.py.html>`__ to see an example of how to use delete_autonomous_database_backup API.
9586
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/delete_autonomous_database_backup.py.html>`__ to see an example of how to use delete_autonomous_database_backup API.
9587
9587
  """
9588
9588
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
9589
9589
  required_arguments = ['autonomousDatabaseBackupId']
@@ -9686,7 +9686,7 @@ class DatabaseClient(object):
9686
9686
  :rtype: :class:`~oci.response.Response`
9687
9687
 
9688
9688
  :example:
9689
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/delete_autonomous_database_software_image.py.html>`__ to see an example of how to use delete_autonomous_database_software_image API.
9689
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/delete_autonomous_database_software_image.py.html>`__ to see an example of how to use delete_autonomous_database_software_image API.
9690
9690
  """
9691
9691
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
9692
9692
  required_arguments = ['autonomousDatabaseSoftwareImageId']
@@ -9789,7 +9789,7 @@ class DatabaseClient(object):
9789
9789
  :rtype: :class:`~oci.response.Response`
9790
9790
 
9791
9791
  :example:
9792
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/delete_autonomous_vm_cluster.py.html>`__ to see an example of how to use delete_autonomous_vm_cluster API.
9792
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/delete_autonomous_vm_cluster.py.html>`__ to see an example of how to use delete_autonomous_vm_cluster API.
9793
9793
  """
9794
9794
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
9795
9795
  required_arguments = ['autonomousVmClusterId']
@@ -9889,7 +9889,7 @@ class DatabaseClient(object):
9889
9889
  :rtype: :class:`~oci.response.Response`
9890
9890
 
9891
9891
  :example:
9892
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/delete_backup.py.html>`__ to see an example of how to use delete_backup API.
9892
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/delete_backup.py.html>`__ to see an example of how to use delete_backup API.
9893
9893
  """
9894
9894
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
9895
9895
  required_arguments = ['backupId']
@@ -9990,7 +9990,7 @@ class DatabaseClient(object):
9990
9990
  :rtype: :class:`~oci.response.Response`
9991
9991
 
9992
9992
  :example:
9993
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/delete_backup_destination.py.html>`__ to see an example of how to use delete_backup_destination API.
9993
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/delete_backup_destination.py.html>`__ to see an example of how to use delete_backup_destination API.
9994
9994
  """
9995
9995
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
9996
9996
  required_arguments = ['backupDestinationId']
@@ -10093,7 +10093,7 @@ class DatabaseClient(object):
10093
10093
  :rtype: :class:`~oci.response.Response`
10094
10094
 
10095
10095
  :example:
10096
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/delete_cloud_autonomous_vm_cluster.py.html>`__ to see an example of how to use delete_cloud_autonomous_vm_cluster API.
10096
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/delete_cloud_autonomous_vm_cluster.py.html>`__ to see an example of how to use delete_cloud_autonomous_vm_cluster API.
10097
10097
  """
10098
10098
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
10099
10099
  required_arguments = ['cloudAutonomousVmClusterId']
@@ -10199,7 +10199,7 @@ class DatabaseClient(object):
10199
10199
  :rtype: :class:`~oci.response.Response`
10200
10200
 
10201
10201
  :example:
10202
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/delete_cloud_exadata_infrastructure.py.html>`__ to see an example of how to use delete_cloud_exadata_infrastructure API.
10202
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/delete_cloud_exadata_infrastructure.py.html>`__ to see an example of how to use delete_cloud_exadata_infrastructure API.
10203
10203
  """
10204
10204
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
10205
10205
  required_arguments = ['cloudExadataInfrastructureId']
@@ -10310,7 +10310,7 @@ class DatabaseClient(object):
10310
10310
  :rtype: :class:`~oci.response.Response`
10311
10311
 
10312
10312
  :example:
10313
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/delete_cloud_vm_cluster.py.html>`__ to see an example of how to use delete_cloud_vm_cluster API.
10313
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/delete_cloud_vm_cluster.py.html>`__ to see an example of how to use delete_cloud_vm_cluster API.
10314
10314
  """
10315
10315
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
10316
10316
  required_arguments = ['cloudVmClusterId']
@@ -10413,7 +10413,7 @@ class DatabaseClient(object):
10413
10413
  :rtype: :class:`~oci.response.Response`
10414
10414
 
10415
10415
  :example:
10416
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/delete_console_connection.py.html>`__ to see an example of how to use delete_console_connection API.
10416
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/delete_console_connection.py.html>`__ to see an example of how to use delete_console_connection API.
10417
10417
  """
10418
10418
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
10419
10419
  required_arguments = ['dbNodeId', 'consoleConnectionId']
@@ -10518,7 +10518,7 @@ class DatabaseClient(object):
10518
10518
  :rtype: :class:`~oci.response.Response`
10519
10519
 
10520
10520
  :example:
10521
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/delete_console_history.py.html>`__ to see an example of how to use delete_console_history API.
10521
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/delete_console_history.py.html>`__ to see an example of how to use delete_console_history API.
10522
10522
  """
10523
10523
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
10524
10524
  required_arguments = ['dbNodeId', 'consoleHistoryId']
@@ -10631,7 +10631,7 @@ class DatabaseClient(object):
10631
10631
  :rtype: :class:`~oci.response.Response`
10632
10632
 
10633
10633
  :example:
10634
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/delete_database.py.html>`__ to see an example of how to use delete_database API.
10634
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/delete_database.py.html>`__ to see an example of how to use delete_database API.
10635
10635
  """
10636
10636
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
10637
10637
  required_arguments = ['databaseId']
@@ -10739,7 +10739,7 @@ class DatabaseClient(object):
10739
10739
  :rtype: :class:`~oci.response.Response`
10740
10740
 
10741
10741
  :example:
10742
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/delete_database_software_image.py.html>`__ to see an example of how to use delete_database_software_image API.
10742
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/delete_database_software_image.py.html>`__ to see an example of how to use delete_database_software_image API.
10743
10743
  """
10744
10744
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
10745
10745
  required_arguments = ['databaseSoftwareImageId']
@@ -10846,7 +10846,7 @@ class DatabaseClient(object):
10846
10846
  :rtype: :class:`~oci.response.Response`
10847
10847
 
10848
10848
  :example:
10849
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/delete_db_home.py.html>`__ to see an example of how to use delete_db_home API.
10849
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/delete_db_home.py.html>`__ to see an example of how to use delete_db_home API.
10850
10850
  """
10851
10851
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
10852
10852
  required_arguments = ['dbHomeId']
@@ -10955,7 +10955,7 @@ class DatabaseClient(object):
10955
10955
  :rtype: :class:`~oci.response.Response`
10956
10956
 
10957
10957
  :example:
10958
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/delete_exadata_infrastructure.py.html>`__ to see an example of how to use delete_exadata_infrastructure API.
10958
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/delete_exadata_infrastructure.py.html>`__ to see an example of how to use delete_exadata_infrastructure API.
10959
10959
  """
10960
10960
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
10961
10961
  required_arguments = ['exadataInfrastructureId']
@@ -11058,7 +11058,7 @@ class DatabaseClient(object):
11058
11058
  :rtype: :class:`~oci.response.Response`
11059
11059
 
11060
11060
  :example:
11061
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/delete_exadb_vm_cluster.py.html>`__ to see an example of how to use delete_exadb_vm_cluster API.
11061
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/delete_exadb_vm_cluster.py.html>`__ to see an example of how to use delete_exadb_vm_cluster API.
11062
11062
  """
11063
11063
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
11064
11064
  required_arguments = ['exadbVmClusterId']
@@ -11161,7 +11161,7 @@ class DatabaseClient(object):
11161
11161
  :rtype: :class:`~oci.response.Response`
11162
11162
 
11163
11163
  :example:
11164
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/delete_exascale_db_storage_vault.py.html>`__ to see an example of how to use delete_exascale_db_storage_vault API.
11164
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/delete_exascale_db_storage_vault.py.html>`__ to see an example of how to use delete_exascale_db_storage_vault API.
11165
11165
  """
11166
11166
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
11167
11167
  required_arguments = ['exascaleDbStorageVaultId']
@@ -11264,7 +11264,7 @@ class DatabaseClient(object):
11264
11264
  :rtype: :class:`~oci.response.Response`
11265
11265
 
11266
11266
  :example:
11267
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/delete_execution_action.py.html>`__ to see an example of how to use delete_execution_action API.
11267
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/delete_execution_action.py.html>`__ to see an example of how to use delete_execution_action API.
11268
11268
  """
11269
11269
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
11270
11270
  required_arguments = ['executionActionId']
@@ -11367,7 +11367,7 @@ class DatabaseClient(object):
11367
11367
  :rtype: :class:`~oci.response.Response`
11368
11368
 
11369
11369
  :example:
11370
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/delete_execution_window.py.html>`__ to see an example of how to use delete_execution_window API.
11370
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/delete_execution_window.py.html>`__ to see an example of how to use delete_execution_window API.
11371
11371
  """
11372
11372
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
11373
11373
  required_arguments = ['executionWindowId']
@@ -11472,7 +11472,7 @@ class DatabaseClient(object):
11472
11472
  :rtype: :class:`~oci.response.Response`
11473
11473
 
11474
11474
  :example:
11475
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/delete_external_container_database.py.html>`__ to see an example of how to use delete_external_container_database API.
11475
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/delete_external_container_database.py.html>`__ to see an example of how to use delete_external_container_database API.
11476
11476
  """
11477
11477
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
11478
11478
  required_arguments = ['externalContainerDatabaseId']
@@ -11578,7 +11578,7 @@ class DatabaseClient(object):
11578
11578
  :rtype: :class:`~oci.response.Response`
11579
11579
 
11580
11580
  :example:
11581
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/delete_external_database_connector.py.html>`__ to see an example of how to use delete_external_database_connector API.
11581
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/delete_external_database_connector.py.html>`__ to see an example of how to use delete_external_database_connector API.
11582
11582
  """
11583
11583
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
11584
11584
  required_arguments = ['externalDatabaseConnectorId']
@@ -11681,7 +11681,7 @@ class DatabaseClient(object):
11681
11681
  :rtype: :class:`~oci.response.Response`
11682
11682
 
11683
11683
  :example:
11684
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/delete_external_non_container_database.py.html>`__ to see an example of how to use delete_external_non_container_database API.
11684
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/delete_external_non_container_database.py.html>`__ to see an example of how to use delete_external_non_container_database API.
11685
11685
  """
11686
11686
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
11687
11687
  required_arguments = ['externalNonContainerDatabaseId']
@@ -11785,7 +11785,7 @@ class DatabaseClient(object):
11785
11785
  :rtype: :class:`~oci.response.Response`
11786
11786
 
11787
11787
  :example:
11788
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/delete_external_pluggable_database.py.html>`__ to see an example of how to use delete_external_pluggable_database API.
11788
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/delete_external_pluggable_database.py.html>`__ to see an example of how to use delete_external_pluggable_database API.
11789
11789
  """
11790
11790
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
11791
11791
  required_arguments = ['externalPluggableDatabaseId']
@@ -11888,7 +11888,7 @@ class DatabaseClient(object):
11888
11888
  :rtype: :class:`~oci.response.Response`
11889
11889
 
11890
11890
  :example:
11891
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/delete_key_store.py.html>`__ to see an example of how to use delete_key_store API.
11891
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/delete_key_store.py.html>`__ to see an example of how to use delete_key_store API.
11892
11892
  """
11893
11893
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
11894
11894
  required_arguments = ['keyStoreId']
@@ -11991,7 +11991,7 @@ class DatabaseClient(object):
11991
11991
  :rtype: :class:`~oci.response.Response`
11992
11992
 
11993
11993
  :example:
11994
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/delete_oneoff_patch.py.html>`__ to see an example of how to use delete_oneoff_patch API.
11994
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/delete_oneoff_patch.py.html>`__ to see an example of how to use delete_oneoff_patch API.
11995
11995
  """
11996
11996
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
11997
11997
  required_arguments = ['oneoffPatchId']
@@ -12094,7 +12094,7 @@ class DatabaseClient(object):
12094
12094
  :rtype: :class:`~oci.response.Response`
12095
12095
 
12096
12096
  :example:
12097
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/delete_pluggable_database.py.html>`__ to see an example of how to use delete_pluggable_database API.
12097
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/delete_pluggable_database.py.html>`__ to see an example of how to use delete_pluggable_database API.
12098
12098
  """
12099
12099
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
12100
12100
  required_arguments = ['pluggableDatabaseId']
@@ -12197,7 +12197,7 @@ class DatabaseClient(object):
12197
12197
  :rtype: :class:`~oci.response.Response`
12198
12198
 
12199
12199
  :example:
12200
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/delete_scheduled_action.py.html>`__ to see an example of how to use delete_scheduled_action API.
12200
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/delete_scheduled_action.py.html>`__ to see an example of how to use delete_scheduled_action API.
12201
12201
  """
12202
12202
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
12203
12203
  required_arguments = ['scheduledActionId']
@@ -12300,7 +12300,7 @@ class DatabaseClient(object):
12300
12300
  :rtype: :class:`~oci.response.Response`
12301
12301
 
12302
12302
  :example:
12303
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/delete_scheduling_plan.py.html>`__ to see an example of how to use delete_scheduling_plan API.
12303
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/delete_scheduling_plan.py.html>`__ to see an example of how to use delete_scheduling_plan API.
12304
12304
  """
12305
12305
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
12306
12306
  required_arguments = ['schedulingPlanId']
@@ -12403,7 +12403,7 @@ class DatabaseClient(object):
12403
12403
  :rtype: :class:`~oci.response.Response`
12404
12404
 
12405
12405
  :example:
12406
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/delete_scheduling_policy.py.html>`__ to see an example of how to use delete_scheduling_policy API.
12406
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/delete_scheduling_policy.py.html>`__ to see an example of how to use delete_scheduling_policy API.
12407
12407
  """
12408
12408
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
12409
12409
  required_arguments = ['schedulingPolicyId']
@@ -12511,7 +12511,7 @@ class DatabaseClient(object):
12511
12511
  :rtype: :class:`~oci.response.Response`
12512
12512
 
12513
12513
  :example:
12514
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/delete_scheduling_window.py.html>`__ to see an example of how to use delete_scheduling_window API.
12514
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/delete_scheduling_window.py.html>`__ to see an example of how to use delete_scheduling_window API.
12515
12515
  """
12516
12516
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
12517
12517
  required_arguments = ['schedulingPolicyId', 'schedulingWindowId']
@@ -12615,7 +12615,7 @@ class DatabaseClient(object):
12615
12615
  :rtype: :class:`~oci.response.Response`
12616
12616
 
12617
12617
  :example:
12618
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/delete_vm_cluster.py.html>`__ to see an example of how to use delete_vm_cluster API.
12618
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/delete_vm_cluster.py.html>`__ to see an example of how to use delete_vm_cluster API.
12619
12619
  """
12620
12620
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
12621
12621
  required_arguments = ['vmClusterId']
@@ -12724,7 +12724,7 @@ class DatabaseClient(object):
12724
12724
  :rtype: :class:`~oci.response.Response`
12725
12725
 
12726
12726
  :example:
12727
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/delete_vm_cluster_network.py.html>`__ to see an example of how to use delete_vm_cluster_network API.
12727
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/delete_vm_cluster_network.py.html>`__ to see an example of how to use delete_vm_cluster_network API.
12728
12728
  """
12729
12729
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
12730
12730
  required_arguments = ['exadataInfrastructureId', 'vmClusterNetworkId']
@@ -12826,7 +12826,7 @@ class DatabaseClient(object):
12826
12826
  :rtype: :class:`~oci.response.Response`
12827
12827
 
12828
12828
  :example:
12829
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/deregister_autonomous_database_data_safe.py.html>`__ to see an example of how to use deregister_autonomous_database_data_safe API.
12829
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/deregister_autonomous_database_data_safe.py.html>`__ to see an example of how to use deregister_autonomous_database_data_safe API.
12830
12830
  """
12831
12831
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
12832
12832
  required_arguments = ['autonomousDatabaseId']
@@ -12925,7 +12925,7 @@ class DatabaseClient(object):
12925
12925
  :rtype: :class:`~oci.response.Response`
12926
12926
 
12927
12927
  :example:
12928
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/disable_autonomous_database_management.py.html>`__ to see an example of how to use disable_autonomous_database_management API.
12928
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/disable_autonomous_database_management.py.html>`__ to see an example of how to use disable_autonomous_database_management API.
12929
12929
  """
12930
12930
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
12931
12931
  required_arguments = ['autonomousDatabaseId']
@@ -13021,7 +13021,7 @@ class DatabaseClient(object):
13021
13021
  :rtype: :class:`~oci.response.Response`
13022
13022
 
13023
13023
  :example:
13024
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/disable_autonomous_database_operations_insights.py.html>`__ to see an example of how to use disable_autonomous_database_operations_insights API.
13024
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/disable_autonomous_database_operations_insights.py.html>`__ to see an example of how to use disable_autonomous_database_operations_insights API.
13025
13025
  """
13026
13026
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
13027
13027
  required_arguments = ['autonomousDatabaseId']
@@ -13129,7 +13129,7 @@ class DatabaseClient(object):
13129
13129
  :rtype: :class:`~oci.response.Response`
13130
13130
 
13131
13131
  :example:
13132
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/disable_database_management.py.html>`__ to see an example of how to use disable_database_management API.
13132
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/disable_database_management.py.html>`__ to see an example of how to use disable_database_management API.
13133
13133
  """
13134
13134
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
13135
13135
  required_arguments = ['databaseId']
@@ -13244,7 +13244,7 @@ class DatabaseClient(object):
13244
13244
  :rtype: :class:`~oci.response.Response`
13245
13245
 
13246
13246
  :example:
13247
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/disable_external_container_database_database_management.py.html>`__ to see an example of how to use disable_external_container_database_database_management API.
13247
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/disable_external_container_database_database_management.py.html>`__ to see an example of how to use disable_external_container_database_database_management API.
13248
13248
  """
13249
13249
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
13250
13250
  required_arguments = ['externalContainerDatabaseId']
@@ -13357,7 +13357,7 @@ class DatabaseClient(object):
13357
13357
  :rtype: :class:`~oci.response.Response`
13358
13358
 
13359
13359
  :example:
13360
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/disable_external_container_database_stack_monitoring.py.html>`__ to see an example of how to use disable_external_container_database_stack_monitoring API.
13360
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/disable_external_container_database_stack_monitoring.py.html>`__ to see an example of how to use disable_external_container_database_stack_monitoring API.
13361
13361
  """
13362
13362
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
13363
13363
  required_arguments = ['externalContainerDatabaseId']
@@ -13474,7 +13474,7 @@ class DatabaseClient(object):
13474
13474
  :rtype: :class:`~oci.response.Response`
13475
13475
 
13476
13476
  :example:
13477
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/disable_external_non_container_database_database_management.py.html>`__ to see an example of how to use disable_external_non_container_database_database_management API.
13477
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/disable_external_non_container_database_database_management.py.html>`__ to see an example of how to use disable_external_non_container_database_database_management API.
13478
13478
  """
13479
13479
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
13480
13480
  required_arguments = ['externalNonContainerDatabaseId']
@@ -13587,7 +13587,7 @@ class DatabaseClient(object):
13587
13587
  :rtype: :class:`~oci.response.Response`
13588
13588
 
13589
13589
  :example:
13590
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/disable_external_non_container_database_operations_insights.py.html>`__ to see an example of how to use disable_external_non_container_database_operations_insights API.
13590
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/disable_external_non_container_database_operations_insights.py.html>`__ to see an example of how to use disable_external_non_container_database_operations_insights API.
13591
13591
  """
13592
13592
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
13593
13593
  required_arguments = ['externalNonContainerDatabaseId']
@@ -13700,7 +13700,7 @@ class DatabaseClient(object):
13700
13700
  :rtype: :class:`~oci.response.Response`
13701
13701
 
13702
13702
  :example:
13703
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/disable_external_non_container_database_stack_monitoring.py.html>`__ to see an example of how to use disable_external_non_container_database_stack_monitoring API.
13703
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/disable_external_non_container_database_stack_monitoring.py.html>`__ to see an example of how to use disable_external_non_container_database_stack_monitoring API.
13704
13704
  """
13705
13705
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
13706
13706
  required_arguments = ['externalNonContainerDatabaseId']
@@ -13817,7 +13817,7 @@ class DatabaseClient(object):
13817
13817
  :rtype: :class:`~oci.response.Response`
13818
13818
 
13819
13819
  :example:
13820
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/disable_external_pluggable_database_database_management.py.html>`__ to see an example of how to use disable_external_pluggable_database_database_management API.
13820
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/disable_external_pluggable_database_database_management.py.html>`__ to see an example of how to use disable_external_pluggable_database_database_management API.
13821
13821
  """
13822
13822
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
13823
13823
  required_arguments = ['externalPluggableDatabaseId']
@@ -13930,7 +13930,7 @@ class DatabaseClient(object):
13930
13930
  :rtype: :class:`~oci.response.Response`
13931
13931
 
13932
13932
  :example:
13933
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/disable_external_pluggable_database_operations_insights.py.html>`__ to see an example of how to use disable_external_pluggable_database_operations_insights API.
13933
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/disable_external_pluggable_database_operations_insights.py.html>`__ to see an example of how to use disable_external_pluggable_database_operations_insights API.
13934
13934
  """
13935
13935
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
13936
13936
  required_arguments = ['externalPluggableDatabaseId']
@@ -14043,7 +14043,7 @@ class DatabaseClient(object):
14043
14043
  :rtype: :class:`~oci.response.Response`
14044
14044
 
14045
14045
  :example:
14046
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/disable_external_pluggable_database_stack_monitoring.py.html>`__ to see an example of how to use disable_external_pluggable_database_stack_monitoring API.
14046
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/disable_external_pluggable_database_stack_monitoring.py.html>`__ to see an example of how to use disable_external_pluggable_database_stack_monitoring API.
14047
14047
  """
14048
14048
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
14049
14049
  required_arguments = ['externalPluggableDatabaseId']
@@ -14156,7 +14156,7 @@ class DatabaseClient(object):
14156
14156
  :rtype: :class:`~oci.response.Response`
14157
14157
 
14158
14158
  :example:
14159
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/disable_pluggable_database_management.py.html>`__ to see an example of how to use disable_pluggable_database_management API.
14159
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/disable_pluggable_database_management.py.html>`__ to see an example of how to use disable_pluggable_database_management API.
14160
14160
  """
14161
14161
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
14162
14162
  required_arguments = ['pluggableDatabaseId']
@@ -14266,7 +14266,7 @@ class DatabaseClient(object):
14266
14266
  :rtype: :class:`~oci.response.Response`
14267
14267
 
14268
14268
  :example:
14269
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/download_exadata_infrastructure_config_file.py.html>`__ to see an example of how to use download_exadata_infrastructure_config_file API.
14269
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/download_exadata_infrastructure_config_file.py.html>`__ to see an example of how to use download_exadata_infrastructure_config_file API.
14270
14270
  """
14271
14271
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
14272
14272
  required_arguments = ['exadataInfrastructureId']
@@ -14379,7 +14379,7 @@ class DatabaseClient(object):
14379
14379
  :rtype: :class:`~oci.response.Response`
14380
14380
 
14381
14381
  :example:
14382
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/download_oneoff_patch.py.html>`__ to see an example of how to use download_oneoff_patch API.
14382
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/download_oneoff_patch.py.html>`__ to see an example of how to use download_oneoff_patch API.
14383
14383
  """
14384
14384
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
14385
14385
  required_arguments = ['oneoffPatchId']
@@ -14494,7 +14494,7 @@ class DatabaseClient(object):
14494
14494
  :rtype: :class:`~oci.response.Response`
14495
14495
 
14496
14496
  :example:
14497
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/download_validation_report.py.html>`__ to see an example of how to use download_validation_report API.
14497
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/download_validation_report.py.html>`__ to see an example of how to use download_validation_report API.
14498
14498
  """
14499
14499
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
14500
14500
  required_arguments = ['exadataInfrastructureId', 'vmClusterNetworkId']
@@ -14608,7 +14608,7 @@ class DatabaseClient(object):
14608
14608
  :rtype: :class:`~oci.response.Response`
14609
14609
 
14610
14610
  :example:
14611
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/download_vm_cluster_network_config_file.py.html>`__ to see an example of how to use download_vm_cluster_network_config_file API.
14611
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/download_vm_cluster_network_config_file.py.html>`__ to see an example of how to use download_vm_cluster_network_config_file API.
14612
14612
  """
14613
14613
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
14614
14614
  required_arguments = ['exadataInfrastructureId', 'vmClusterNetworkId']
@@ -14710,7 +14710,7 @@ class DatabaseClient(object):
14710
14710
  :rtype: :class:`~oci.response.Response`
14711
14711
 
14712
14712
  :example:
14713
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/enable_autonomous_database_management.py.html>`__ to see an example of how to use enable_autonomous_database_management API.
14713
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/enable_autonomous_database_management.py.html>`__ to see an example of how to use enable_autonomous_database_management API.
14714
14714
  """
14715
14715
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
14716
14716
  required_arguments = ['autonomousDatabaseId']
@@ -14806,7 +14806,7 @@ class DatabaseClient(object):
14806
14806
  :rtype: :class:`~oci.response.Response`
14807
14807
 
14808
14808
  :example:
14809
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/enable_autonomous_database_operations_insights.py.html>`__ to see an example of how to use enable_autonomous_database_operations_insights API.
14809
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/enable_autonomous_database_operations_insights.py.html>`__ to see an example of how to use enable_autonomous_database_operations_insights API.
14810
14810
  """
14811
14811
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
14812
14812
  required_arguments = ['autonomousDatabaseId']
@@ -14917,7 +14917,7 @@ class DatabaseClient(object):
14917
14917
  :rtype: :class:`~oci.response.Response`
14918
14918
 
14919
14919
  :example:
14920
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/enable_database_management.py.html>`__ to see an example of how to use enable_database_management API.
14920
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/enable_database_management.py.html>`__ to see an example of how to use enable_database_management API.
14921
14921
  """
14922
14922
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
14923
14923
  required_arguments = ['databaseId']
@@ -15041,7 +15041,7 @@ class DatabaseClient(object):
15041
15041
  :rtype: :class:`~oci.response.Response`
15042
15042
 
15043
15043
  :example:
15044
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/enable_external_container_database_database_management.py.html>`__ to see an example of how to use enable_external_container_database_database_management API.
15044
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/enable_external_container_database_database_management.py.html>`__ to see an example of how to use enable_external_container_database_database_management API.
15045
15045
  """
15046
15046
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
15047
15047
  required_arguments = ['externalContainerDatabaseId']
@@ -15159,7 +15159,7 @@ class DatabaseClient(object):
15159
15159
  :rtype: :class:`~oci.response.Response`
15160
15160
 
15161
15161
  :example:
15162
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/enable_external_container_database_stack_monitoring.py.html>`__ to see an example of how to use enable_external_container_database_stack_monitoring API.
15162
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/enable_external_container_database_stack_monitoring.py.html>`__ to see an example of how to use enable_external_container_database_stack_monitoring API.
15163
15163
  """
15164
15164
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
15165
15165
  required_arguments = ['externalContainerDatabaseId']
@@ -15281,7 +15281,7 @@ class DatabaseClient(object):
15281
15281
  :rtype: :class:`~oci.response.Response`
15282
15282
 
15283
15283
  :example:
15284
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/enable_external_non_container_database_database_management.py.html>`__ to see an example of how to use enable_external_non_container_database_database_management API.
15284
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/enable_external_non_container_database_database_management.py.html>`__ to see an example of how to use enable_external_non_container_database_database_management API.
15285
15285
  """
15286
15286
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
15287
15287
  required_arguments = ['externalNonContainerDatabaseId']
@@ -15399,7 +15399,7 @@ class DatabaseClient(object):
15399
15399
  :rtype: :class:`~oci.response.Response`
15400
15400
 
15401
15401
  :example:
15402
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/enable_external_non_container_database_operations_insights.py.html>`__ to see an example of how to use enable_external_non_container_database_operations_insights API.
15402
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/enable_external_non_container_database_operations_insights.py.html>`__ to see an example of how to use enable_external_non_container_database_operations_insights API.
15403
15403
  """
15404
15404
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
15405
15405
  required_arguments = ['externalNonContainerDatabaseId']
@@ -15517,7 +15517,7 @@ class DatabaseClient(object):
15517
15517
  :rtype: :class:`~oci.response.Response`
15518
15518
 
15519
15519
  :example:
15520
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/enable_external_non_container_database_stack_monitoring.py.html>`__ to see an example of how to use enable_external_non_container_database_stack_monitoring API.
15520
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/enable_external_non_container_database_stack_monitoring.py.html>`__ to see an example of how to use enable_external_non_container_database_stack_monitoring API.
15521
15521
  """
15522
15522
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
15523
15523
  required_arguments = ['externalNonContainerDatabaseId']
@@ -15639,7 +15639,7 @@ class DatabaseClient(object):
15639
15639
  :rtype: :class:`~oci.response.Response`
15640
15640
 
15641
15641
  :example:
15642
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/enable_external_pluggable_database_database_management.py.html>`__ to see an example of how to use enable_external_pluggable_database_database_management API.
15642
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/enable_external_pluggable_database_database_management.py.html>`__ to see an example of how to use enable_external_pluggable_database_database_management API.
15643
15643
  """
15644
15644
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
15645
15645
  required_arguments = ['externalPluggableDatabaseId']
@@ -15757,7 +15757,7 @@ class DatabaseClient(object):
15757
15757
  :rtype: :class:`~oci.response.Response`
15758
15758
 
15759
15759
  :example:
15760
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/enable_external_pluggable_database_operations_insights.py.html>`__ to see an example of how to use enable_external_pluggable_database_operations_insights API.
15760
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/enable_external_pluggable_database_operations_insights.py.html>`__ to see an example of how to use enable_external_pluggable_database_operations_insights API.
15761
15761
  """
15762
15762
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
15763
15763
  required_arguments = ['externalPluggableDatabaseId']
@@ -15875,7 +15875,7 @@ class DatabaseClient(object):
15875
15875
  :rtype: :class:`~oci.response.Response`
15876
15876
 
15877
15877
  :example:
15878
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/enable_external_pluggable_database_stack_monitoring.py.html>`__ to see an example of how to use enable_external_pluggable_database_stack_monitoring API.
15878
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/enable_external_pluggable_database_stack_monitoring.py.html>`__ to see an example of how to use enable_external_pluggable_database_stack_monitoring API.
15879
15879
  """
15880
15880
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
15881
15881
  required_arguments = ['externalPluggableDatabaseId']
@@ -15993,7 +15993,7 @@ class DatabaseClient(object):
15993
15993
  :rtype: :class:`~oci.response.Response`
15994
15994
 
15995
15995
  :example:
15996
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/enable_pluggable_database_management.py.html>`__ to see an example of how to use enable_pluggable_database_management API.
15996
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/enable_pluggable_database_management.py.html>`__ to see an example of how to use enable_pluggable_database_management API.
15997
15997
  """
15998
15998
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
15999
15999
  required_arguments = ['pluggableDatabaseId']
@@ -16118,7 +16118,7 @@ class DatabaseClient(object):
16118
16118
  :rtype: :class:`~oci.response.Response`
16119
16119
 
16120
16120
  :example:
16121
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/fail_over_autonomous_database.py.html>`__ to see an example of how to use fail_over_autonomous_database API.
16121
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/fail_over_autonomous_database.py.html>`__ to see an example of how to use fail_over_autonomous_database API.
16122
16122
  """
16123
16123
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
16124
16124
  required_arguments = ['autonomousDatabaseId']
@@ -16238,7 +16238,7 @@ class DatabaseClient(object):
16238
16238
  :rtype: :class:`~oci.response.Response`
16239
16239
 
16240
16240
  :example:
16241
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/failover_autonomous_container_database_dataguard_association.py.html>`__ to see an example of how to use failover_autonomous_container_database_dataguard_association API.
16241
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/failover_autonomous_container_database_dataguard_association.py.html>`__ to see an example of how to use failover_autonomous_container_database_dataguard_association API.
16242
16242
  """
16243
16243
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
16244
16244
  required_arguments = ['autonomousContainerDatabaseId', 'autonomousContainerDatabaseDataguardAssociationId']
@@ -16351,7 +16351,7 @@ class DatabaseClient(object):
16351
16351
  :rtype: :class:`~oci.response.Response`
16352
16352
 
16353
16353
  :example:
16354
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/failover_data_guard_association.py.html>`__ to see an example of how to use failover_data_guard_association API.
16354
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/failover_data_guard_association.py.html>`__ to see an example of how to use failover_data_guard_association API.
16355
16355
  """
16356
16356
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
16357
16357
  required_arguments = ['databaseId', 'dataGuardAssociationId']
@@ -16462,7 +16462,7 @@ class DatabaseClient(object):
16462
16462
  :rtype: :class:`~oci.response.Response`
16463
16463
 
16464
16464
  :example:
16465
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/generate_autonomous_database_wallet.py.html>`__ to see an example of how to use generate_autonomous_database_wallet API.
16465
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/generate_autonomous_database_wallet.py.html>`__ to see an example of how to use generate_autonomous_database_wallet API.
16466
16466
  """
16467
16467
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
16468
16468
  required_arguments = ['autonomousDatabaseId']
@@ -16575,7 +16575,7 @@ class DatabaseClient(object):
16575
16575
  :rtype: :class:`~oci.response.Response`
16576
16576
 
16577
16577
  :example:
16578
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/generate_recommended_vm_cluster_network.py.html>`__ to see an example of how to use generate_recommended_vm_cluster_network API.
16578
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/generate_recommended_vm_cluster_network.py.html>`__ to see an example of how to use generate_recommended_vm_cluster_network API.
16579
16579
  """
16580
16580
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
16581
16581
  required_arguments = ['exadataInfrastructureId']
@@ -16678,7 +16678,7 @@ class DatabaseClient(object):
16678
16678
  :rtype: :class:`~oci.response.Response`
16679
16679
 
16680
16680
  :example:
16681
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/get_application_vip.py.html>`__ to see an example of how to use get_application_vip API.
16681
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/get_application_vip.py.html>`__ to see an example of how to use get_application_vip API.
16682
16682
  """
16683
16683
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
16684
16684
  required_arguments = ['applicationVipId']
@@ -16773,7 +16773,7 @@ class DatabaseClient(object):
16773
16773
  :rtype: :class:`~oci.response.Response`
16774
16774
 
16775
16775
  :example:
16776
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/get_autonomous_container_database.py.html>`__ to see an example of how to use get_autonomous_container_database API.
16776
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/get_autonomous_container_database.py.html>`__ to see an example of how to use get_autonomous_container_database API.
16777
16777
  """
16778
16778
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
16779
16779
  required_arguments = ['autonomousContainerDatabaseId']
@@ -16866,7 +16866,7 @@ class DatabaseClient(object):
16866
16866
  :rtype: :class:`~oci.response.Response`
16867
16867
 
16868
16868
  :example:
16869
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/get_autonomous_container_database_dataguard_association.py.html>`__ to see an example of how to use get_autonomous_container_database_dataguard_association API.
16869
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/get_autonomous_container_database_dataguard_association.py.html>`__ to see an example of how to use get_autonomous_container_database_dataguard_association API.
16870
16870
  """
16871
16871
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
16872
16872
  required_arguments = ['autonomousContainerDatabaseId', 'autonomousContainerDatabaseDataguardAssociationId']
@@ -16958,7 +16958,7 @@ class DatabaseClient(object):
16958
16958
  :rtype: :class:`~oci.response.Response`
16959
16959
 
16960
16960
  :example:
16961
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/get_autonomous_container_database_resource_usage.py.html>`__ to see an example of how to use get_autonomous_container_database_resource_usage API.
16961
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/get_autonomous_container_database_resource_usage.py.html>`__ to see an example of how to use get_autonomous_container_database_resource_usage API.
16962
16962
  """
16963
16963
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
16964
16964
  required_arguments = ['autonomousContainerDatabaseId']
@@ -17056,7 +17056,7 @@ class DatabaseClient(object):
17056
17056
  :rtype: :class:`~oci.response.Response`
17057
17057
 
17058
17058
  :example:
17059
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/get_autonomous_database.py.html>`__ to see an example of how to use get_autonomous_database API.
17059
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/get_autonomous_database.py.html>`__ to see an example of how to use get_autonomous_database API.
17060
17060
  """
17061
17061
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
17062
17062
  required_arguments = ['autonomousDatabaseId']
@@ -17154,7 +17154,7 @@ class DatabaseClient(object):
17154
17154
  :rtype: :class:`~oci.response.Response`
17155
17155
 
17156
17156
  :example:
17157
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/get_autonomous_database_backup.py.html>`__ to see an example of how to use get_autonomous_database_backup API.
17157
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/get_autonomous_database_backup.py.html>`__ to see an example of how to use get_autonomous_database_backup API.
17158
17158
  """
17159
17159
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
17160
17160
  required_arguments = ['autonomousDatabaseBackupId']
@@ -17257,7 +17257,7 @@ class DatabaseClient(object):
17257
17257
  :rtype: :class:`~oci.response.Response`
17258
17258
 
17259
17259
  :example:
17260
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/get_autonomous_database_dataguard_association.py.html>`__ to see an example of how to use get_autonomous_database_dataguard_association API.
17260
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/get_autonomous_database_dataguard_association.py.html>`__ to see an example of how to use get_autonomous_database_dataguard_association API.
17261
17261
  """
17262
17262
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
17263
17263
  required_arguments = ['autonomousDatabaseId', 'autonomousDatabaseDataguardAssociationId']
@@ -17351,7 +17351,7 @@ class DatabaseClient(object):
17351
17351
  :rtype: :class:`~oci.response.Response`
17352
17352
 
17353
17353
  :example:
17354
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/get_autonomous_database_regional_wallet.py.html>`__ to see an example of how to use get_autonomous_database_regional_wallet API.
17354
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/get_autonomous_database_regional_wallet.py.html>`__ to see an example of how to use get_autonomous_database_regional_wallet API.
17355
17355
  """
17356
17356
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
17357
17357
  required_arguments = []
@@ -17437,7 +17437,7 @@ class DatabaseClient(object):
17437
17437
  :rtype: :class:`~oci.response.Response`
17438
17438
 
17439
17439
  :example:
17440
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/get_autonomous_database_software_image.py.html>`__ to see an example of how to use get_autonomous_database_software_image API.
17440
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/get_autonomous_database_software_image.py.html>`__ to see an example of how to use get_autonomous_database_software_image API.
17441
17441
  """
17442
17442
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
17443
17443
  required_arguments = ['autonomousDatabaseSoftwareImageId']
@@ -17535,7 +17535,7 @@ class DatabaseClient(object):
17535
17535
  :rtype: :class:`~oci.response.Response`
17536
17536
 
17537
17537
  :example:
17538
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/get_autonomous_database_wallet.py.html>`__ to see an example of how to use get_autonomous_database_wallet API.
17538
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/get_autonomous_database_wallet.py.html>`__ to see an example of how to use get_autonomous_database_wallet API.
17539
17539
  """
17540
17540
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
17541
17541
  required_arguments = ['autonomousDatabaseId']
@@ -17630,7 +17630,7 @@ class DatabaseClient(object):
17630
17630
  :rtype: :class:`~oci.response.Response`
17631
17631
 
17632
17632
  :example:
17633
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/get_autonomous_exadata_infrastructure.py.html>`__ to see an example of how to use get_autonomous_exadata_infrastructure API.
17633
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/get_autonomous_exadata_infrastructure.py.html>`__ to see an example of how to use get_autonomous_exadata_infrastructure API.
17634
17634
  """
17635
17635
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
17636
17636
  required_arguments = ['autonomousExadataInfrastructureId']
@@ -17718,7 +17718,7 @@ class DatabaseClient(object):
17718
17718
  :rtype: :class:`~oci.response.Response`
17719
17719
 
17720
17720
  :example:
17721
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/get_autonomous_patch.py.html>`__ to see an example of how to use get_autonomous_patch API.
17721
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/get_autonomous_patch.py.html>`__ to see an example of how to use get_autonomous_patch API.
17722
17722
  """
17723
17723
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
17724
17724
  required_arguments = ['autonomousPatchId']
@@ -17809,7 +17809,7 @@ class DatabaseClient(object):
17809
17809
  :rtype: :class:`~oci.response.Response`
17810
17810
 
17811
17811
  :example:
17812
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/get_autonomous_virtual_machine.py.html>`__ to see an example of how to use get_autonomous_virtual_machine API.
17812
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/get_autonomous_virtual_machine.py.html>`__ to see an example of how to use get_autonomous_virtual_machine API.
17813
17813
  """
17814
17814
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
17815
17815
  required_arguments = ['autonomousVirtualMachineId']
@@ -17907,7 +17907,7 @@ class DatabaseClient(object):
17907
17907
  :rtype: :class:`~oci.response.Response`
17908
17908
 
17909
17909
  :example:
17910
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/get_autonomous_vm_cluster.py.html>`__ to see an example of how to use get_autonomous_vm_cluster API.
17910
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/get_autonomous_vm_cluster.py.html>`__ to see an example of how to use get_autonomous_vm_cluster API.
17911
17911
  """
17912
17912
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
17913
17913
  required_arguments = ['autonomousVmClusterId']
@@ -18005,7 +18005,7 @@ class DatabaseClient(object):
18005
18005
  :rtype: :class:`~oci.response.Response`
18006
18006
 
18007
18007
  :example:
18008
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/get_autonomous_vm_cluster_resource_usage.py.html>`__ to see an example of how to use get_autonomous_vm_cluster_resource_usage API.
18008
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/get_autonomous_vm_cluster_resource_usage.py.html>`__ to see an example of how to use get_autonomous_vm_cluster_resource_usage API.
18009
18009
  """
18010
18010
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
18011
18011
  required_arguments = ['autonomousVmClusterId']
@@ -18100,7 +18100,7 @@ class DatabaseClient(object):
18100
18100
  :rtype: :class:`~oci.response.Response`
18101
18101
 
18102
18102
  :example:
18103
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/get_backup.py.html>`__ to see an example of how to use get_backup API.
18103
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/get_backup.py.html>`__ to see an example of how to use get_backup API.
18104
18104
  """
18105
18105
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
18106
18106
  required_arguments = ['backupId']
@@ -18191,7 +18191,7 @@ class DatabaseClient(object):
18191
18191
  :rtype: :class:`~oci.response.Response`
18192
18192
 
18193
18193
  :example:
18194
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/get_backup_destination.py.html>`__ to see an example of how to use get_backup_destination API.
18194
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/get_backup_destination.py.html>`__ to see an example of how to use get_backup_destination API.
18195
18195
  """
18196
18196
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
18197
18197
  required_arguments = ['backupDestinationId']
@@ -18289,7 +18289,7 @@ class DatabaseClient(object):
18289
18289
  :rtype: :class:`~oci.response.Response`
18290
18290
 
18291
18291
  :example:
18292
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/get_cloud_autonomous_vm_cluster.py.html>`__ to see an example of how to use get_cloud_autonomous_vm_cluster API.
18292
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/get_cloud_autonomous_vm_cluster.py.html>`__ to see an example of how to use get_cloud_autonomous_vm_cluster API.
18293
18293
  """
18294
18294
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
18295
18295
  required_arguments = ['cloudAutonomousVmClusterId']
@@ -18387,7 +18387,7 @@ class DatabaseClient(object):
18387
18387
  :rtype: :class:`~oci.response.Response`
18388
18388
 
18389
18389
  :example:
18390
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/get_cloud_autonomous_vm_cluster_resource_usage.py.html>`__ to see an example of how to use get_cloud_autonomous_vm_cluster_resource_usage API.
18390
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/get_cloud_autonomous_vm_cluster_resource_usage.py.html>`__ to see an example of how to use get_cloud_autonomous_vm_cluster_resource_usage API.
18391
18391
  """
18392
18392
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
18393
18393
  required_arguments = ['cloudAutonomousVmClusterId']
@@ -18485,7 +18485,7 @@ class DatabaseClient(object):
18485
18485
  :rtype: :class:`~oci.response.Response`
18486
18486
 
18487
18487
  :example:
18488
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/get_cloud_exadata_infrastructure.py.html>`__ to see an example of how to use get_cloud_exadata_infrastructure API.
18488
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/get_cloud_exadata_infrastructure.py.html>`__ to see an example of how to use get_cloud_exadata_infrastructure API.
18489
18489
  """
18490
18490
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
18491
18491
  required_arguments = ['cloudExadataInfrastructureId']
@@ -18588,7 +18588,7 @@ class DatabaseClient(object):
18588
18588
  :rtype: :class:`~oci.response.Response`
18589
18589
 
18590
18590
  :example:
18591
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/get_cloud_exadata_infrastructure_unallocated_resources.py.html>`__ to see an example of how to use get_cloud_exadata_infrastructure_unallocated_resources API.
18591
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/get_cloud_exadata_infrastructure_unallocated_resources.py.html>`__ to see an example of how to use get_cloud_exadata_infrastructure_unallocated_resources API.
18592
18592
  """
18593
18593
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
18594
18594
  required_arguments = ['cloudExadataInfrastructureId']
@@ -18694,7 +18694,7 @@ class DatabaseClient(object):
18694
18694
  :rtype: :class:`~oci.response.Response`
18695
18695
 
18696
18696
  :example:
18697
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/get_cloud_vm_cluster.py.html>`__ to see an example of how to use get_cloud_vm_cluster API.
18697
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/get_cloud_vm_cluster.py.html>`__ to see an example of how to use get_cloud_vm_cluster API.
18698
18698
  """
18699
18699
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
18700
18700
  required_arguments = ['cloudVmClusterId']
@@ -18793,7 +18793,7 @@ class DatabaseClient(object):
18793
18793
  :rtype: :class:`~oci.response.Response`
18794
18794
 
18795
18795
  :example:
18796
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/get_cloud_vm_cluster_iorm_config.py.html>`__ to see an example of how to use get_cloud_vm_cluster_iorm_config API.
18796
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/get_cloud_vm_cluster_iorm_config.py.html>`__ to see an example of how to use get_cloud_vm_cluster_iorm_config API.
18797
18797
  """
18798
18798
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
18799
18799
  required_arguments = ['cloudVmClusterId']
@@ -18896,7 +18896,7 @@ class DatabaseClient(object):
18896
18896
  :rtype: :class:`~oci.response.Response`
18897
18897
 
18898
18898
  :example:
18899
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/get_cloud_vm_cluster_update.py.html>`__ to see an example of how to use get_cloud_vm_cluster_update API.
18899
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/get_cloud_vm_cluster_update.py.html>`__ to see an example of how to use get_cloud_vm_cluster_update API.
18900
18900
  """
18901
18901
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
18902
18902
  required_arguments = ['cloudVmClusterId', 'updateId']
@@ -19000,7 +19000,7 @@ class DatabaseClient(object):
19000
19000
  :rtype: :class:`~oci.response.Response`
19001
19001
 
19002
19002
  :example:
19003
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/get_cloud_vm_cluster_update_history_entry.py.html>`__ to see an example of how to use get_cloud_vm_cluster_update_history_entry API.
19003
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/get_cloud_vm_cluster_update_history_entry.py.html>`__ to see an example of how to use get_cloud_vm_cluster_update_history_entry API.
19004
19004
  """
19005
19005
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
19006
19006
  required_arguments = ['cloudVmClusterId', 'updateHistoryEntryId']
@@ -19099,7 +19099,7 @@ class DatabaseClient(object):
19099
19099
  :rtype: :class:`~oci.response.Response`
19100
19100
 
19101
19101
  :example:
19102
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/get_console_connection.py.html>`__ to see an example of how to use get_console_connection API.
19102
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/get_console_connection.py.html>`__ to see an example of how to use get_console_connection API.
19103
19103
  """
19104
19104
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
19105
19105
  required_arguments = ['dbNodeId', 'consoleConnectionId']
@@ -19194,7 +19194,7 @@ class DatabaseClient(object):
19194
19194
  :rtype: :class:`~oci.response.Response`
19195
19195
 
19196
19196
  :example:
19197
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/get_console_history.py.html>`__ to see an example of how to use get_console_history API.
19197
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/get_console_history.py.html>`__ to see an example of how to use get_console_history API.
19198
19198
  """
19199
19199
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
19200
19200
  required_arguments = ['dbNodeId', 'consoleHistoryId']
@@ -19296,7 +19296,7 @@ class DatabaseClient(object):
19296
19296
  :rtype: :class:`~oci.response.Response`
19297
19297
 
19298
19298
  :example:
19299
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/get_console_history_content.py.html>`__ to see an example of how to use get_console_history_content API.
19299
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/get_console_history_content.py.html>`__ to see an example of how to use get_console_history_content API.
19300
19300
  """
19301
19301
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
19302
19302
  required_arguments = ['dbNodeId', 'consoleHistoryId']
@@ -19397,7 +19397,7 @@ class DatabaseClient(object):
19397
19397
  :rtype: :class:`~oci.response.Response`
19398
19398
 
19399
19399
  :example:
19400
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/get_data_guard_association.py.html>`__ to see an example of how to use get_data_guard_association API.
19400
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/get_data_guard_association.py.html>`__ to see an example of how to use get_data_guard_association API.
19401
19401
  """
19402
19402
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
19403
19403
  required_arguments = ['databaseId', 'dataGuardAssociationId']
@@ -19486,7 +19486,7 @@ class DatabaseClient(object):
19486
19486
  :rtype: :class:`~oci.response.Response`
19487
19487
 
19488
19488
  :example:
19489
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/get_database.py.html>`__ to see an example of how to use get_database API.
19489
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/get_database.py.html>`__ to see an example of how to use get_database API.
19490
19490
  """
19491
19491
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
19492
19492
  required_arguments = ['databaseId']
@@ -19574,7 +19574,7 @@ class DatabaseClient(object):
19574
19574
  :rtype: :class:`~oci.response.Response`
19575
19575
 
19576
19576
  :example:
19577
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/get_database_software_image.py.html>`__ to see an example of how to use get_database_software_image API.
19577
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/get_database_software_image.py.html>`__ to see an example of how to use get_database_software_image API.
19578
19578
  """
19579
19579
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
19580
19580
  required_arguments = ['databaseSoftwareImageId']
@@ -19670,7 +19670,7 @@ class DatabaseClient(object):
19670
19670
  :rtype: :class:`~oci.response.Response`
19671
19671
 
19672
19672
  :example:
19673
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/get_database_upgrade_history_entry.py.html>`__ to see an example of how to use get_database_upgrade_history_entry API.
19673
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/get_database_upgrade_history_entry.py.html>`__ to see an example of how to use get_database_upgrade_history_entry API.
19674
19674
  """
19675
19675
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
19676
19676
  required_arguments = ['databaseId', 'upgradeHistoryEntryId']
@@ -19766,7 +19766,7 @@ class DatabaseClient(object):
19766
19766
  :rtype: :class:`~oci.response.Response`
19767
19767
 
19768
19768
  :example:
19769
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/get_db_home.py.html>`__ to see an example of how to use get_db_home API.
19769
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/get_db_home.py.html>`__ to see an example of how to use get_db_home API.
19770
19770
  """
19771
19771
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
19772
19772
  required_arguments = ['dbHomeId']
@@ -19859,7 +19859,7 @@ class DatabaseClient(object):
19859
19859
  :rtype: :class:`~oci.response.Response`
19860
19860
 
19861
19861
  :example:
19862
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/get_db_home_patch.py.html>`__ to see an example of how to use get_db_home_patch API.
19862
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/get_db_home_patch.py.html>`__ to see an example of how to use get_db_home_patch API.
19863
19863
  """
19864
19864
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
19865
19865
  required_arguments = ['dbHomeId', 'patchId']
@@ -19953,7 +19953,7 @@ class DatabaseClient(object):
19953
19953
  :rtype: :class:`~oci.response.Response`
19954
19954
 
19955
19955
  :example:
19956
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/get_db_home_patch_history_entry.py.html>`__ to see an example of how to use get_db_home_patch_history_entry API.
19956
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/get_db_home_patch_history_entry.py.html>`__ to see an example of how to use get_db_home_patch_history_entry API.
19957
19957
  """
19958
19958
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
19959
19959
  required_arguments = ['dbHomeId', 'patchHistoryEntryId']
@@ -20042,7 +20042,7 @@ class DatabaseClient(object):
20042
20042
  :rtype: :class:`~oci.response.Response`
20043
20043
 
20044
20044
  :example:
20045
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/get_db_node.py.html>`__ to see an example of how to use get_db_node API.
20045
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/get_db_node.py.html>`__ to see an example of how to use get_db_node API.
20046
20046
  """
20047
20047
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
20048
20048
  required_arguments = ['dbNodeId']
@@ -20138,7 +20138,7 @@ class DatabaseClient(object):
20138
20138
  :rtype: :class:`~oci.response.Response`
20139
20139
 
20140
20140
  :example:
20141
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/get_db_server.py.html>`__ to see an example of how to use get_db_server API.
20141
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/get_db_server.py.html>`__ to see an example of how to use get_db_server API.
20142
20142
  """
20143
20143
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
20144
20144
  required_arguments = ['dbServerId', 'exadataInfrastructureId']
@@ -20247,7 +20247,7 @@ class DatabaseClient(object):
20247
20247
  :rtype: :class:`~oci.response.Response`
20248
20248
 
20249
20249
  :example:
20250
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/get_db_system.py.html>`__ to see an example of how to use get_db_system API.
20250
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/get_db_system.py.html>`__ to see an example of how to use get_db_system API.
20251
20251
  """
20252
20252
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
20253
20253
  required_arguments = ['dbSystemId']
@@ -20340,7 +20340,7 @@ class DatabaseClient(object):
20340
20340
  :rtype: :class:`~oci.response.Response`
20341
20341
 
20342
20342
  :example:
20343
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/get_db_system_patch.py.html>`__ to see an example of how to use get_db_system_patch API.
20343
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/get_db_system_patch.py.html>`__ to see an example of how to use get_db_system_patch API.
20344
20344
  """
20345
20345
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
20346
20346
  required_arguments = ['dbSystemId', 'patchId']
@@ -20434,7 +20434,7 @@ class DatabaseClient(object):
20434
20434
  :rtype: :class:`~oci.response.Response`
20435
20435
 
20436
20436
  :example:
20437
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/get_db_system_patch_history_entry.py.html>`__ to see an example of how to use get_db_system_patch_history_entry API.
20437
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/get_db_system_patch_history_entry.py.html>`__ to see an example of how to use get_db_system_patch_history_entry API.
20438
20438
  """
20439
20439
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
20440
20440
  required_arguments = ['dbSystemId', 'patchHistoryEntryId']
@@ -20531,7 +20531,7 @@ class DatabaseClient(object):
20531
20531
  :rtype: :class:`~oci.response.Response`
20532
20532
 
20533
20533
  :example:
20534
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/get_db_system_upgrade_history_entry.py.html>`__ to see an example of how to use get_db_system_upgrade_history_entry API.
20534
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/get_db_system_upgrade_history_entry.py.html>`__ to see an example of how to use get_db_system_upgrade_history_entry API.
20535
20535
  """
20536
20536
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
20537
20537
  required_arguments = ['dbSystemId', 'upgradeHistoryEntryId']
@@ -20636,7 +20636,7 @@ class DatabaseClient(object):
20636
20636
  :rtype: :class:`~oci.response.Response`
20637
20637
 
20638
20638
  :example:
20639
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/get_exadata_infrastructure.py.html>`__ to see an example of how to use get_exadata_infrastructure API.
20639
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/get_exadata_infrastructure.py.html>`__ to see an example of how to use get_exadata_infrastructure API.
20640
20640
  """
20641
20641
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
20642
20642
  required_arguments = ['exadataInfrastructureId']
@@ -20750,7 +20750,7 @@ class DatabaseClient(object):
20750
20750
  :rtype: :class:`~oci.response.Response`
20751
20751
 
20752
20752
  :example:
20753
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/get_exadata_infrastructure_ocpus.py.html>`__ to see an example of how to use get_exadata_infrastructure_ocpus API.
20753
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/get_exadata_infrastructure_ocpus.py.html>`__ to see an example of how to use get_exadata_infrastructure_ocpus API.
20754
20754
  """
20755
20755
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
20756
20756
  required_arguments = ['autonomousExadataInfrastructureId']
@@ -20853,7 +20853,7 @@ class DatabaseClient(object):
20853
20853
  :rtype: :class:`~oci.response.Response`
20854
20854
 
20855
20855
  :example:
20856
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/get_exadata_infrastructure_un_allocated_resources.py.html>`__ to see an example of how to use get_exadata_infrastructure_un_allocated_resources API.
20856
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/get_exadata_infrastructure_un_allocated_resources.py.html>`__ to see an example of how to use get_exadata_infrastructure_un_allocated_resources API.
20857
20857
  """
20858
20858
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
20859
20859
  required_arguments = ['exadataInfrastructureId']
@@ -20970,7 +20970,7 @@ class DatabaseClient(object):
20970
20970
  :rtype: :class:`~oci.response.Response`
20971
20971
 
20972
20972
  :example:
20973
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/get_exadata_iorm_config.py.html>`__ to see an example of how to use get_exadata_iorm_config API.
20973
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/get_exadata_iorm_config.py.html>`__ to see an example of how to use get_exadata_iorm_config API.
20974
20974
  """
20975
20975
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
20976
20976
  required_arguments = ['dbSystemId']
@@ -21068,7 +21068,7 @@ class DatabaseClient(object):
21068
21068
  :rtype: :class:`~oci.response.Response`
21069
21069
 
21070
21070
  :example:
21071
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/get_exadb_vm_cluster.py.html>`__ to see an example of how to use get_exadb_vm_cluster API.
21071
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/get_exadb_vm_cluster.py.html>`__ to see an example of how to use get_exadb_vm_cluster API.
21072
21072
  """
21073
21073
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
21074
21074
  required_arguments = ['exadbVmClusterId']
@@ -21171,7 +21171,7 @@ class DatabaseClient(object):
21171
21171
  :rtype: :class:`~oci.response.Response`
21172
21172
 
21173
21173
  :example:
21174
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/get_exadb_vm_cluster_update.py.html>`__ to see an example of how to use get_exadb_vm_cluster_update API.
21174
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/get_exadb_vm_cluster_update.py.html>`__ to see an example of how to use get_exadb_vm_cluster_update API.
21175
21175
  """
21176
21176
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
21177
21177
  required_arguments = ['exadbVmClusterId', 'updateId']
@@ -21275,7 +21275,7 @@ class DatabaseClient(object):
21275
21275
  :rtype: :class:`~oci.response.Response`
21276
21276
 
21277
21277
  :example:
21278
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/get_exadb_vm_cluster_update_history_entry.py.html>`__ to see an example of how to use get_exadb_vm_cluster_update_history_entry API.
21278
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/get_exadb_vm_cluster_update_history_entry.py.html>`__ to see an example of how to use get_exadb_vm_cluster_update_history_entry API.
21279
21279
  """
21280
21280
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
21281
21281
  required_arguments = ['exadbVmClusterId', 'updateHistoryEntryId']
@@ -21374,7 +21374,7 @@ class DatabaseClient(object):
21374
21374
  :rtype: :class:`~oci.response.Response`
21375
21375
 
21376
21376
  :example:
21377
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/get_exascale_db_storage_vault.py.html>`__ to see an example of how to use get_exascale_db_storage_vault API.
21377
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/get_exascale_db_storage_vault.py.html>`__ to see an example of how to use get_exascale_db_storage_vault API.
21378
21378
  """
21379
21379
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
21380
21380
  required_arguments = ['exascaleDbStorageVaultId']
@@ -21472,7 +21472,7 @@ class DatabaseClient(object):
21472
21472
  :rtype: :class:`~oci.response.Response`
21473
21473
 
21474
21474
  :example:
21475
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/get_execution_action.py.html>`__ to see an example of how to use get_execution_action API.
21475
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/get_execution_action.py.html>`__ to see an example of how to use get_execution_action API.
21476
21476
  """
21477
21477
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
21478
21478
  required_arguments = ['executionActionId']
@@ -21570,7 +21570,7 @@ class DatabaseClient(object):
21570
21570
  :rtype: :class:`~oci.response.Response`
21571
21571
 
21572
21572
  :example:
21573
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/get_execution_window.py.html>`__ to see an example of how to use get_execution_window API.
21573
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/get_execution_window.py.html>`__ to see an example of how to use get_execution_window API.
21574
21574
  """
21575
21575
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
21576
21576
  required_arguments = ['executionWindowId']
@@ -21669,7 +21669,7 @@ class DatabaseClient(object):
21669
21669
  :rtype: :class:`~oci.response.Response`
21670
21670
 
21671
21671
  :example:
21672
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/get_external_backup_job.py.html>`__ to see an example of how to use get_external_backup_job API.
21672
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/get_external_backup_job.py.html>`__ to see an example of how to use get_external_backup_job API.
21673
21673
  """
21674
21674
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
21675
21675
  required_arguments = ['backupId']
@@ -21760,7 +21760,7 @@ class DatabaseClient(object):
21760
21760
  :rtype: :class:`~oci.response.Response`
21761
21761
 
21762
21762
  :example:
21763
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/get_external_container_database.py.html>`__ to see an example of how to use get_external_container_database API.
21763
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/get_external_container_database.py.html>`__ to see an example of how to use get_external_container_database API.
21764
21764
  """
21765
21765
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
21766
21766
  required_arguments = ['externalContainerDatabaseId']
@@ -21859,7 +21859,7 @@ class DatabaseClient(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/database/get_external_database_connector.py.html>`__ to see an example of how to use get_external_database_connector API.
21862
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/get_external_database_connector.py.html>`__ to see an example of how to use get_external_database_connector API.
21863
21863
  """
21864
21864
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
21865
21865
  required_arguments = ['externalDatabaseConnectorId']
@@ -21957,7 +21957,7 @@ class DatabaseClient(object):
21957
21957
  :rtype: :class:`~oci.response.Response`
21958
21958
 
21959
21959
  :example:
21960
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/get_external_non_container_database.py.html>`__ to see an example of how to use get_external_non_container_database API.
21960
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/get_external_non_container_database.py.html>`__ to see an example of how to use get_external_non_container_database API.
21961
21961
  """
21962
21962
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
21963
21963
  required_arguments = ['externalNonContainerDatabaseId']
@@ -22056,7 +22056,7 @@ class DatabaseClient(object):
22056
22056
  :rtype: :class:`~oci.response.Response`
22057
22057
 
22058
22058
  :example:
22059
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/get_external_pluggable_database.py.html>`__ to see an example of how to use get_external_pluggable_database API.
22059
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/get_external_pluggable_database.py.html>`__ to see an example of how to use get_external_pluggable_database API.
22060
22060
  """
22061
22061
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
22062
22062
  required_arguments = ['externalPluggableDatabaseId']
@@ -22163,7 +22163,7 @@ class DatabaseClient(object):
22163
22163
  :rtype: :class:`~oci.response.Response`
22164
22164
 
22165
22165
  :example:
22166
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/get_infrastructure_target_versions.py.html>`__ to see an example of how to use get_infrastructure_target_versions API.
22166
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/get_infrastructure_target_versions.py.html>`__ to see an example of how to use get_infrastructure_target_versions API.
22167
22167
  """
22168
22168
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
22169
22169
  required_arguments = ['compartmentId']
@@ -22267,7 +22267,7 @@ class DatabaseClient(object):
22267
22267
  :rtype: :class:`~oci.response.Response`
22268
22268
 
22269
22269
  :example:
22270
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/get_key_store.py.html>`__ to see an example of how to use get_key_store API.
22270
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/get_key_store.py.html>`__ to see an example of how to use get_key_store API.
22271
22271
  """
22272
22272
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
22273
22273
  required_arguments = ['keyStoreId']
@@ -22360,7 +22360,7 @@ class DatabaseClient(object):
22360
22360
  :rtype: :class:`~oci.response.Response`
22361
22361
 
22362
22362
  :example:
22363
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/get_maintenance_run.py.html>`__ to see an example of how to use get_maintenance_run API.
22363
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/get_maintenance_run.py.html>`__ to see an example of how to use get_maintenance_run API.
22364
22364
  """
22365
22365
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
22366
22366
  required_arguments = ['maintenanceRunId']
@@ -22446,7 +22446,7 @@ class DatabaseClient(object):
22446
22446
  :rtype: :class:`~oci.response.Response`
22447
22447
 
22448
22448
  :example:
22449
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/get_maintenance_run_history.py.html>`__ to see an example of how to use get_maintenance_run_history API.
22449
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/get_maintenance_run_history.py.html>`__ to see an example of how to use get_maintenance_run_history API.
22450
22450
  """
22451
22451
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
22452
22452
  required_arguments = ['maintenanceRunHistoryId']
@@ -22537,7 +22537,7 @@ class DatabaseClient(object):
22537
22537
  :rtype: :class:`~oci.response.Response`
22538
22538
 
22539
22539
  :example:
22540
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/get_oneoff_patch.py.html>`__ to see an example of how to use get_oneoff_patch API.
22540
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/get_oneoff_patch.py.html>`__ to see an example of how to use get_oneoff_patch API.
22541
22541
  """
22542
22542
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
22543
22543
  required_arguments = ['oneoffPatchId']
@@ -22640,7 +22640,7 @@ class DatabaseClient(object):
22640
22640
  :rtype: :class:`~oci.response.Response`
22641
22641
 
22642
22642
  :example:
22643
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/get_pdb_conversion_history_entry.py.html>`__ to see an example of how to use get_pdb_conversion_history_entry API.
22643
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/get_pdb_conversion_history_entry.py.html>`__ to see an example of how to use get_pdb_conversion_history_entry API.
22644
22644
  """
22645
22645
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
22646
22646
  required_arguments = ['databaseId', 'pdbConversionHistoryEntryId']
@@ -22736,7 +22736,7 @@ class DatabaseClient(object):
22736
22736
  :rtype: :class:`~oci.response.Response`
22737
22737
 
22738
22738
  :example:
22739
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/get_pluggable_database.py.html>`__ to see an example of how to use get_pluggable_database API.
22739
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/get_pluggable_database.py.html>`__ to see an example of how to use get_pluggable_database API.
22740
22740
  """
22741
22741
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
22742
22742
  required_arguments = ['pluggableDatabaseId']
@@ -22827,7 +22827,7 @@ class DatabaseClient(object):
22827
22827
  :rtype: :class:`~oci.response.Response`
22828
22828
 
22829
22829
  :example:
22830
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/get_scheduled_action.py.html>`__ to see an example of how to use get_scheduled_action API.
22830
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/get_scheduled_action.py.html>`__ to see an example of how to use get_scheduled_action API.
22831
22831
  """
22832
22832
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
22833
22833
  required_arguments = ['scheduledActionId']
@@ -22925,7 +22925,7 @@ class DatabaseClient(object):
22925
22925
  :rtype: :class:`~oci.response.Response`
22926
22926
 
22927
22927
  :example:
22928
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/get_scheduling_plan.py.html>`__ to see an example of how to use get_scheduling_plan API.
22928
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/get_scheduling_plan.py.html>`__ to see an example of how to use get_scheduling_plan API.
22929
22929
  """
22930
22930
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
22931
22931
  required_arguments = ['schedulingPlanId']
@@ -23023,7 +23023,7 @@ class DatabaseClient(object):
23023
23023
  :rtype: :class:`~oci.response.Response`
23024
23024
 
23025
23025
  :example:
23026
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/get_scheduling_policy.py.html>`__ to see an example of how to use get_scheduling_policy API.
23026
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/get_scheduling_policy.py.html>`__ to see an example of how to use get_scheduling_policy API.
23027
23027
  """
23028
23028
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
23029
23029
  required_arguments = ['schedulingPolicyId']
@@ -23126,7 +23126,7 @@ class DatabaseClient(object):
23126
23126
  :rtype: :class:`~oci.response.Response`
23127
23127
 
23128
23128
  :example:
23129
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/get_scheduling_window.py.html>`__ to see an example of how to use get_scheduling_window API.
23129
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/get_scheduling_window.py.html>`__ to see an example of how to use get_scheduling_window API.
23130
23130
  """
23131
23131
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
23132
23132
  required_arguments = ['schedulingPolicyId', 'schedulingWindowId']
@@ -23225,7 +23225,7 @@ class DatabaseClient(object):
23225
23225
  :rtype: :class:`~oci.response.Response`
23226
23226
 
23227
23227
  :example:
23228
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/get_vm_cluster.py.html>`__ to see an example of how to use get_vm_cluster API.
23228
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/get_vm_cluster.py.html>`__ to see an example of how to use get_vm_cluster API.
23229
23229
  """
23230
23230
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
23231
23231
  required_arguments = ['vmClusterId']
@@ -23329,7 +23329,7 @@ class DatabaseClient(object):
23329
23329
  :rtype: :class:`~oci.response.Response`
23330
23330
 
23331
23331
  :example:
23332
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/get_vm_cluster_network.py.html>`__ to see an example of how to use get_vm_cluster_network API.
23332
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/get_vm_cluster_network.py.html>`__ to see an example of how to use get_vm_cluster_network API.
23333
23333
  """
23334
23334
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
23335
23335
  required_arguments = ['exadataInfrastructureId', 'vmClusterNetworkId']
@@ -23430,7 +23430,7 @@ class DatabaseClient(object):
23430
23430
  :rtype: :class:`~oci.response.Response`
23431
23431
 
23432
23432
  :example:
23433
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/get_vm_cluster_patch.py.html>`__ to see an example of how to use get_vm_cluster_patch API.
23433
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/get_vm_cluster_patch.py.html>`__ to see an example of how to use get_vm_cluster_patch API.
23434
23434
  """
23435
23435
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
23436
23436
  required_arguments = ['vmClusterId', 'patchId']
@@ -23524,7 +23524,7 @@ class DatabaseClient(object):
23524
23524
  :rtype: :class:`~oci.response.Response`
23525
23525
 
23526
23526
  :example:
23527
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/get_vm_cluster_patch_history_entry.py.html>`__ to see an example of how to use get_vm_cluster_patch_history_entry API.
23527
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/get_vm_cluster_patch_history_entry.py.html>`__ to see an example of how to use get_vm_cluster_patch_history_entry API.
23528
23528
  """
23529
23529
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
23530
23530
  required_arguments = ['vmClusterId', 'patchHistoryEntryId']
@@ -23621,7 +23621,7 @@ class DatabaseClient(object):
23621
23621
  :rtype: :class:`~oci.response.Response`
23622
23622
 
23623
23623
  :example:
23624
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/get_vm_cluster_update.py.html>`__ to see an example of how to use get_vm_cluster_update API.
23624
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/get_vm_cluster_update.py.html>`__ to see an example of how to use get_vm_cluster_update API.
23625
23625
  """
23626
23626
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
23627
23627
  required_arguments = ['vmClusterId', 'updateId']
@@ -23725,7 +23725,7 @@ class DatabaseClient(object):
23725
23725
  :rtype: :class:`~oci.response.Response`
23726
23726
 
23727
23727
  :example:
23728
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/get_vm_cluster_update_history_entry.py.html>`__ to see an example of how to use get_vm_cluster_update_history_entry API.
23728
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/get_vm_cluster_update_history_entry.py.html>`__ to see an example of how to use get_vm_cluster_update_history_entry API.
23729
23729
  """
23730
23730
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
23731
23731
  required_arguments = ['vmClusterId', 'updateHistoryEntryId']
@@ -23826,7 +23826,7 @@ class DatabaseClient(object):
23826
23826
  :rtype: :class:`~oci.response.Response`
23827
23827
 
23828
23828
  :example:
23829
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/launch_autonomous_exadata_infrastructure.py.html>`__ to see an example of how to use launch_autonomous_exadata_infrastructure API.
23829
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/launch_autonomous_exadata_infrastructure.py.html>`__ to see an example of how to use launch_autonomous_exadata_infrastructure API.
23830
23830
  """
23831
23831
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
23832
23832
  required_arguments = []
@@ -23938,7 +23938,7 @@ class DatabaseClient(object):
23938
23938
  :rtype: :class:`~oci.response.Response`
23939
23939
 
23940
23940
  :example:
23941
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/launch_db_system.py.html>`__ to see an example of how to use launch_db_system API.
23941
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/launch_db_system.py.html>`__ to see an example of how to use launch_db_system API.
23942
23942
  """
23943
23943
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
23944
23944
  required_arguments = []
@@ -24056,7 +24056,7 @@ class DatabaseClient(object):
24056
24056
  :rtype: :class:`~oci.response.Response`
24057
24057
 
24058
24058
  :example:
24059
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/list_application_vips.py.html>`__ to see an example of how to use list_application_vips API.
24059
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/list_application_vips.py.html>`__ to see an example of how to use list_application_vips API.
24060
24060
  """
24061
24061
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
24062
24062
  required_arguments = ['compartmentId', 'cloudVmClusterId']
@@ -24184,7 +24184,7 @@ class DatabaseClient(object):
24184
24184
  :rtype: :class:`~oci.response.Response`
24185
24185
 
24186
24186
  :example:
24187
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/list_autonomous_container_database_dataguard_associations.py.html>`__ to see an example of how to use list_autonomous_container_database_dataguard_associations API.
24187
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/list_autonomous_container_database_dataguard_associations.py.html>`__ to see an example of how to use list_autonomous_container_database_dataguard_associations API.
24188
24188
  """
24189
24189
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
24190
24190
  required_arguments = ['autonomousContainerDatabaseId']
@@ -24305,7 +24305,7 @@ class DatabaseClient(object):
24305
24305
  :rtype: :class:`~oci.response.Response`
24306
24306
 
24307
24307
  :example:
24308
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/list_autonomous_container_database_versions.py.html>`__ to see an example of how to use list_autonomous_container_database_versions API.
24308
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/list_autonomous_container_database_versions.py.html>`__ to see an example of how to use list_autonomous_container_database_versions API.
24309
24309
  """
24310
24310
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
24311
24311
  required_arguments = ['compartmentId', 'serviceComponent']
@@ -24467,7 +24467,7 @@ class DatabaseClient(object):
24467
24467
  :rtype: :class:`~oci.response.Response`
24468
24468
 
24469
24469
  :example:
24470
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/list_autonomous_container_databases.py.html>`__ to see an example of how to use list_autonomous_container_databases API.
24470
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/list_autonomous_container_databases.py.html>`__ to see an example of how to use list_autonomous_container_databases API.
24471
24471
  """
24472
24472
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
24473
24473
  required_arguments = ['compartmentId']
@@ -24643,7 +24643,7 @@ class DatabaseClient(object):
24643
24643
  :rtype: :class:`~oci.response.Response`
24644
24644
 
24645
24645
  :example:
24646
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/list_autonomous_database_backups.py.html>`__ to see an example of how to use list_autonomous_database_backups API.
24646
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/list_autonomous_database_backups.py.html>`__ to see an example of how to use list_autonomous_database_backups API.
24647
24647
  """
24648
24648
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
24649
24649
  required_arguments = []
@@ -24780,7 +24780,7 @@ class DatabaseClient(object):
24780
24780
  :rtype: :class:`~oci.response.Response`
24781
24781
 
24782
24782
  :example:
24783
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/list_autonomous_database_character_sets.py.html>`__ to see an example of how to use list_autonomous_database_character_sets API.
24783
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/list_autonomous_database_character_sets.py.html>`__ to see an example of how to use list_autonomous_database_character_sets API.
24784
24784
  """
24785
24785
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
24786
24786
  required_arguments = []
@@ -24921,7 +24921,7 @@ class DatabaseClient(object):
24921
24921
  :rtype: :class:`~oci.response.Response`
24922
24922
 
24923
24923
  :example:
24924
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/list_autonomous_database_clones.py.html>`__ to see an example of how to use list_autonomous_database_clones API.
24924
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/list_autonomous_database_clones.py.html>`__ to see an example of how to use list_autonomous_database_clones API.
24925
24925
  """
24926
24926
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
24927
24927
  required_arguments = ['autonomousDatabaseId', 'compartmentId']
@@ -25071,7 +25071,7 @@ class DatabaseClient(object):
25071
25071
  :rtype: :class:`~oci.response.Response`
25072
25072
 
25073
25073
  :example:
25074
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/list_autonomous_database_dataguard_associations.py.html>`__ to see an example of how to use list_autonomous_database_dataguard_associations API.
25074
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/list_autonomous_database_dataguard_associations.py.html>`__ to see an example of how to use list_autonomous_database_dataguard_associations API.
25075
25075
  """
25076
25076
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
25077
25077
  required_arguments = ['autonomousDatabaseId']
@@ -25182,7 +25182,7 @@ class DatabaseClient(object):
25182
25182
  :rtype: :class:`~oci.response.Response`
25183
25183
 
25184
25184
  :example:
25185
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/list_autonomous_database_peers.py.html>`__ to see an example of how to use list_autonomous_database_peers API.
25185
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/list_autonomous_database_peers.py.html>`__ to see an example of how to use list_autonomous_database_peers API.
25186
25186
  """
25187
25187
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
25188
25188
  required_arguments = ['autonomousDatabaseId']
@@ -25296,7 +25296,7 @@ class DatabaseClient(object):
25296
25296
  :rtype: :class:`~oci.response.Response`
25297
25297
 
25298
25298
  :example:
25299
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/list_autonomous_database_refreshable_clones.py.html>`__ to see an example of how to use list_autonomous_database_refreshable_clones API.
25299
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/list_autonomous_database_refreshable_clones.py.html>`__ to see an example of how to use list_autonomous_database_refreshable_clones API.
25300
25300
  """
25301
25301
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
25302
25302
  required_arguments = ['autonomousDatabaseId']
@@ -25433,7 +25433,7 @@ class DatabaseClient(object):
25433
25433
  :rtype: :class:`~oci.response.Response`
25434
25434
 
25435
25435
  :example:
25436
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/list_autonomous_database_software_images.py.html>`__ to see an example of how to use list_autonomous_database_software_images API.
25436
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/list_autonomous_database_software_images.py.html>`__ to see an example of how to use list_autonomous_database_software_images API.
25437
25437
  """
25438
25438
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
25439
25439
  required_arguments = ['compartmentId', 'imageShapeFamily']
@@ -25634,7 +25634,7 @@ class DatabaseClient(object):
25634
25634
  :rtype: :class:`~oci.response.Response`
25635
25635
 
25636
25636
  :example:
25637
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/list_autonomous_databases.py.html>`__ to see an example of how to use list_autonomous_databases API.
25637
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/list_autonomous_databases.py.html>`__ to see an example of how to use list_autonomous_databases API.
25638
25638
  """
25639
25639
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
25640
25640
  required_arguments = ['compartmentId']
@@ -25820,7 +25820,7 @@ class DatabaseClient(object):
25820
25820
  :rtype: :class:`~oci.response.Response`
25821
25821
 
25822
25822
  :example:
25823
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/list_autonomous_db_preview_versions.py.html>`__ to see an example of how to use list_autonomous_db_preview_versions API.
25823
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/list_autonomous_db_preview_versions.py.html>`__ to see an example of how to use list_autonomous_db_preview_versions API.
25824
25824
  """
25825
25825
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
25826
25826
  required_arguments = ['compartmentId']
@@ -25951,7 +25951,7 @@ class DatabaseClient(object):
25951
25951
  :rtype: :class:`~oci.response.Response`
25952
25952
 
25953
25953
  :example:
25954
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/list_autonomous_db_versions.py.html>`__ to see an example of how to use list_autonomous_db_versions API.
25954
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/list_autonomous_db_versions.py.html>`__ to see an example of how to use list_autonomous_db_versions API.
25955
25955
  """
25956
25956
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
25957
25957
  required_arguments = ['compartmentId']
@@ -26075,7 +26075,7 @@ class DatabaseClient(object):
26075
26075
  :rtype: :class:`~oci.response.Response`
26076
26076
 
26077
26077
  :example:
26078
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/list_autonomous_exadata_infrastructure_shapes.py.html>`__ to see an example of how to use list_autonomous_exadata_infrastructure_shapes API.
26078
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/list_autonomous_exadata_infrastructure_shapes.py.html>`__ to see an example of how to use list_autonomous_exadata_infrastructure_shapes API.
26079
26079
  """
26080
26080
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
26081
26081
  required_arguments = ['availabilityDomain', 'compartmentId']
@@ -26199,7 +26199,7 @@ class DatabaseClient(object):
26199
26199
  :rtype: :class:`~oci.response.Response`
26200
26200
 
26201
26201
  :example:
26202
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/list_autonomous_exadata_infrastructures.py.html>`__ to see an example of how to use list_autonomous_exadata_infrastructures API.
26202
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/list_autonomous_exadata_infrastructures.py.html>`__ to see an example of how to use list_autonomous_exadata_infrastructures API.
26203
26203
  """
26204
26204
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
26205
26205
  required_arguments = ['compartmentId']
@@ -26340,7 +26340,7 @@ class DatabaseClient(object):
26340
26340
  :rtype: :class:`~oci.response.Response`
26341
26341
 
26342
26342
  :example:
26343
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/list_autonomous_virtual_machines.py.html>`__ to see an example of how to use list_autonomous_virtual_machines API.
26343
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/list_autonomous_virtual_machines.py.html>`__ to see an example of how to use list_autonomous_virtual_machines API.
26344
26344
  """
26345
26345
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
26346
26346
  required_arguments = ['compartmentId', 'autonomousVmClusterId']
@@ -26458,7 +26458,7 @@ class DatabaseClient(object):
26458
26458
  :rtype: :class:`~oci.response.Response`
26459
26459
 
26460
26460
  :example:
26461
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/list_autonomous_vm_cluster_acd_resource_usage.py.html>`__ to see an example of how to use list_autonomous_vm_cluster_acd_resource_usage API.
26461
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/list_autonomous_vm_cluster_acd_resource_usage.py.html>`__ to see an example of how to use list_autonomous_vm_cluster_acd_resource_usage API.
26462
26462
  """
26463
26463
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
26464
26464
  required_arguments = ['autonomousVmClusterId']
@@ -26595,7 +26595,7 @@ class DatabaseClient(object):
26595
26595
  :rtype: :class:`~oci.response.Response`
26596
26596
 
26597
26597
  :example:
26598
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/list_autonomous_vm_clusters.py.html>`__ to see an example of how to use list_autonomous_vm_clusters API.
26598
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/list_autonomous_vm_clusters.py.html>`__ to see an example of how to use list_autonomous_vm_clusters API.
26599
26599
  """
26600
26600
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
26601
26601
  required_arguments = ['compartmentId']
@@ -26732,7 +26732,7 @@ class DatabaseClient(object):
26732
26732
  :rtype: :class:`~oci.response.Response`
26733
26733
 
26734
26734
  :example:
26735
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/list_backup_destination.py.html>`__ to see an example of how to use list_backup_destination API.
26735
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/list_backup_destination.py.html>`__ to see an example of how to use list_backup_destination API.
26736
26736
  """
26737
26737
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
26738
26738
  required_arguments = ['compartmentId']
@@ -26844,7 +26844,7 @@ class DatabaseClient(object):
26844
26844
  :rtype: :class:`~oci.response.Response`
26845
26845
 
26846
26846
  :example:
26847
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/list_backups.py.html>`__ to see an example of how to use list_backups API.
26847
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/list_backups.py.html>`__ to see an example of how to use list_backups API.
26848
26848
  """
26849
26849
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
26850
26850
  required_arguments = []
@@ -26962,7 +26962,7 @@ class DatabaseClient(object):
26962
26962
  :rtype: :class:`~oci.response.Response`
26963
26963
 
26964
26964
  :example:
26965
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/list_cloud_autonomous_vm_cluster_acd_resource_usage.py.html>`__ to see an example of how to use list_cloud_autonomous_vm_cluster_acd_resource_usage API.
26965
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/list_cloud_autonomous_vm_cluster_acd_resource_usage.py.html>`__ to see an example of how to use list_cloud_autonomous_vm_cluster_acd_resource_usage API.
26966
26966
  """
26967
26967
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
26968
26968
  required_arguments = ['cloudAutonomousVmClusterId']
@@ -27102,7 +27102,7 @@ class DatabaseClient(object):
27102
27102
  :rtype: :class:`~oci.response.Response`
27103
27103
 
27104
27104
  :example:
27105
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/list_cloud_autonomous_vm_clusters.py.html>`__ to see an example of how to use list_cloud_autonomous_vm_clusters API.
27105
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/list_cloud_autonomous_vm_clusters.py.html>`__ to see an example of how to use list_cloud_autonomous_vm_clusters API.
27106
27106
  """
27107
27107
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
27108
27108
  required_arguments = ['compartmentId']
@@ -27259,7 +27259,7 @@ class DatabaseClient(object):
27259
27259
  :rtype: :class:`~oci.response.Response`
27260
27260
 
27261
27261
  :example:
27262
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/list_cloud_exadata_infrastructures.py.html>`__ to see an example of how to use list_cloud_exadata_infrastructures API.
27262
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/list_cloud_exadata_infrastructures.py.html>`__ to see an example of how to use list_cloud_exadata_infrastructures API.
27263
27263
  """
27264
27264
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
27265
27265
  required_arguments = ['compartmentId']
@@ -27398,7 +27398,7 @@ class DatabaseClient(object):
27398
27398
  :rtype: :class:`~oci.response.Response`
27399
27399
 
27400
27400
  :example:
27401
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/list_cloud_vm_cluster_update_history_entries.py.html>`__ to see an example of how to use list_cloud_vm_cluster_update_history_entries API.
27401
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/list_cloud_vm_cluster_update_history_entries.py.html>`__ to see an example of how to use list_cloud_vm_cluster_update_history_entries API.
27402
27402
  """
27403
27403
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
27404
27404
  required_arguments = ['cloudVmClusterId']
@@ -27526,7 +27526,7 @@ class DatabaseClient(object):
27526
27526
  :rtype: :class:`~oci.response.Response`
27527
27527
 
27528
27528
  :example:
27529
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/list_cloud_vm_cluster_updates.py.html>`__ to see an example of how to use list_cloud_vm_cluster_updates API.
27529
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/list_cloud_vm_cluster_updates.py.html>`__ to see an example of how to use list_cloud_vm_cluster_updates API.
27530
27530
  """
27531
27531
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
27532
27532
  required_arguments = ['cloudVmClusterId']
@@ -27670,7 +27670,7 @@ class DatabaseClient(object):
27670
27670
  :rtype: :class:`~oci.response.Response`
27671
27671
 
27672
27672
  :example:
27673
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/list_cloud_vm_clusters.py.html>`__ to see an example of how to use list_cloud_vm_clusters API.
27673
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/list_cloud_vm_clusters.py.html>`__ to see an example of how to use list_cloud_vm_clusters API.
27674
27674
  """
27675
27675
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
27676
27676
  required_arguments = ['compartmentId']
@@ -27795,7 +27795,7 @@ class DatabaseClient(object):
27795
27795
  :rtype: :class:`~oci.response.Response`
27796
27796
 
27797
27797
  :example:
27798
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/list_console_connections.py.html>`__ to see an example of how to use list_console_connections API.
27798
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/list_console_connections.py.html>`__ to see an example of how to use list_console_connections API.
27799
27799
  """
27800
27800
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
27801
27801
  required_arguments = ['dbNodeId']
@@ -27910,7 +27910,7 @@ class DatabaseClient(object):
27910
27910
  :rtype: :class:`~oci.response.Response`
27911
27911
 
27912
27912
  :example:
27913
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/list_console_histories.py.html>`__ to see an example of how to use list_console_histories API.
27913
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/list_console_histories.py.html>`__ to see an example of how to use list_console_histories API.
27914
27914
  """
27915
27915
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
27916
27916
  required_arguments = ['dbNodeId']
@@ -28060,7 +28060,7 @@ class DatabaseClient(object):
28060
28060
  :rtype: :class:`~oci.response.Response`
28061
28061
 
28062
28062
  :example:
28063
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/list_container_database_patches.py.html>`__ to see an example of how to use list_container_database_patches API.
28063
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/list_container_database_patches.py.html>`__ to see an example of how to use list_container_database_patches API.
28064
28064
  """
28065
28065
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
28066
28066
  required_arguments = ['autonomousContainerDatabaseId', 'compartmentId']
@@ -28178,7 +28178,7 @@ class DatabaseClient(object):
28178
28178
  :rtype: :class:`~oci.response.Response`
28179
28179
 
28180
28180
  :example:
28181
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/list_data_guard_associations.py.html>`__ to see an example of how to use list_data_guard_associations API.
28181
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/list_data_guard_associations.py.html>`__ to see an example of how to use list_data_guard_associations API.
28182
28182
  """
28183
28183
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
28184
28184
  required_arguments = ['databaseId']
@@ -28321,7 +28321,7 @@ class DatabaseClient(object):
28321
28321
  :rtype: :class:`~oci.response.Response`
28322
28322
 
28323
28323
  :example:
28324
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/list_database_software_images.py.html>`__ to see an example of how to use list_database_software_images API.
28324
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/list_database_software_images.py.html>`__ to see an example of how to use list_database_software_images API.
28325
28325
  """
28326
28326
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
28327
28327
  required_arguments = ['compartmentId']
@@ -28492,7 +28492,7 @@ class DatabaseClient(object):
28492
28492
  :rtype: :class:`~oci.response.Response`
28493
28493
 
28494
28494
  :example:
28495
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/list_database_upgrade_history_entries.py.html>`__ to see an example of how to use list_database_upgrade_history_entries API.
28495
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/list_database_upgrade_history_entries.py.html>`__ to see an example of how to use list_database_upgrade_history_entries API.
28496
28496
  """
28497
28497
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
28498
28498
  required_arguments = ['databaseId']
@@ -28667,7 +28667,7 @@ class DatabaseClient(object):
28667
28667
  :rtype: :class:`~oci.response.Response`
28668
28668
 
28669
28669
  :example:
28670
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/list_databases.py.html>`__ to see an example of how to use list_databases API.
28670
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/list_databases.py.html>`__ to see an example of how to use list_databases API.
28671
28671
  """
28672
28672
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
28673
28673
  required_arguments = ['compartmentId']
@@ -28797,7 +28797,7 @@ class DatabaseClient(object):
28797
28797
  :rtype: :class:`~oci.response.Response`
28798
28798
 
28799
28799
  :example:
28800
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/list_db_home_patch_history_entries.py.html>`__ to see an example of how to use list_db_home_patch_history_entries API.
28800
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/list_db_home_patch_history_entries.py.html>`__ to see an example of how to use list_db_home_patch_history_entries API.
28801
28801
  """
28802
28802
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
28803
28803
  required_arguments = ['dbHomeId']
@@ -28905,7 +28905,7 @@ class DatabaseClient(object):
28905
28905
  :rtype: :class:`~oci.response.Response`
28906
28906
 
28907
28907
  :example:
28908
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/list_db_home_patches.py.html>`__ to see an example of how to use list_db_home_patches API.
28908
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/list_db_home_patches.py.html>`__ to see an example of how to use list_db_home_patches API.
28909
28909
  """
28910
28910
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
28911
28911
  required_arguments = ['dbHomeId']
@@ -29049,7 +29049,7 @@ class DatabaseClient(object):
29049
29049
  :rtype: :class:`~oci.response.Response`
29050
29050
 
29051
29051
  :example:
29052
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/list_db_homes.py.html>`__ to see an example of how to use list_db_homes API.
29052
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/list_db_homes.py.html>`__ to see an example of how to use list_db_homes API.
29053
29053
  """
29054
29054
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
29055
29055
  required_arguments = ['compartmentId']
@@ -29213,7 +29213,7 @@ class DatabaseClient(object):
29213
29213
  :rtype: :class:`~oci.response.Response`
29214
29214
 
29215
29215
  :example:
29216
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/list_db_nodes.py.html>`__ to see an example of how to use list_db_nodes API.
29216
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/list_db_nodes.py.html>`__ to see an example of how to use list_db_nodes API.
29217
29217
  """
29218
29218
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
29219
29219
  required_arguments = ['compartmentId']
@@ -29369,7 +29369,7 @@ class DatabaseClient(object):
29369
29369
  :rtype: :class:`~oci.response.Response`
29370
29370
 
29371
29371
  :example:
29372
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/list_db_servers.py.html>`__ to see an example of how to use list_db_servers API.
29372
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/list_db_servers.py.html>`__ to see an example of how to use list_db_servers API.
29373
29373
  """
29374
29374
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
29375
29375
  required_arguments = ['compartmentId', 'exadataInfrastructureId']
@@ -29494,7 +29494,7 @@ class DatabaseClient(object):
29494
29494
  :rtype: :class:`~oci.response.Response`
29495
29495
 
29496
29496
  :example:
29497
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/list_db_system_compute_performances.py.html>`__ to see an example of how to use list_db_system_compute_performances API.
29497
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/list_db_system_compute_performances.py.html>`__ to see an example of how to use list_db_system_compute_performances API.
29498
29498
  """
29499
29499
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
29500
29500
  required_arguments = []
@@ -29591,7 +29591,7 @@ class DatabaseClient(object):
29591
29591
  :rtype: :class:`~oci.response.Response`
29592
29592
 
29593
29593
  :example:
29594
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/list_db_system_patch_history_entries.py.html>`__ to see an example of how to use list_db_system_patch_history_entries API.
29594
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/list_db_system_patch_history_entries.py.html>`__ to see an example of how to use list_db_system_patch_history_entries API.
29595
29595
  """
29596
29596
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
29597
29597
  required_arguments = ['dbSystemId']
@@ -29699,7 +29699,7 @@ class DatabaseClient(object):
29699
29699
  :rtype: :class:`~oci.response.Response`
29700
29700
 
29701
29701
  :example:
29702
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/list_db_system_patches.py.html>`__ to see an example of how to use list_db_system_patches API.
29702
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/list_db_system_patches.py.html>`__ to see an example of how to use list_db_system_patches API.
29703
29703
  """
29704
29704
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
29705
29705
  required_arguments = ['dbSystemId']
@@ -29810,7 +29810,7 @@ class DatabaseClient(object):
29810
29810
  :rtype: :class:`~oci.response.Response`
29811
29811
 
29812
29812
  :example:
29813
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/list_db_system_shapes.py.html>`__ to see an example of how to use list_db_system_shapes API.
29813
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/list_db_system_shapes.py.html>`__ to see an example of how to use list_db_system_shapes API.
29814
29814
  """
29815
29815
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
29816
29816
  required_arguments = ['compartmentId']
@@ -29911,7 +29911,7 @@ class DatabaseClient(object):
29911
29911
  :rtype: :class:`~oci.response.Response`
29912
29912
 
29913
29913
  :example:
29914
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/list_db_system_storage_performances.py.html>`__ to see an example of how to use list_db_system_storage_performances API.
29914
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/list_db_system_storage_performances.py.html>`__ to see an example of how to use list_db_system_storage_performances API.
29915
29915
  """
29916
29916
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
29917
29917
  required_arguments = ['storageManagement']
@@ -30038,7 +30038,7 @@ class DatabaseClient(object):
30038
30038
  :rtype: :class:`~oci.response.Response`
30039
30039
 
30040
30040
  :example:
30041
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/list_db_system_upgrade_history_entries.py.html>`__ to see an example of how to use list_db_system_upgrade_history_entries API.
30041
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/list_db_system_upgrade_history_entries.py.html>`__ to see an example of how to use list_db_system_upgrade_history_entries API.
30042
30042
  """
30043
30043
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
30044
30044
  required_arguments = ['dbSystemId']
@@ -30220,7 +30220,7 @@ class DatabaseClient(object):
30220
30220
  :rtype: :class:`~oci.response.Response`
30221
30221
 
30222
30222
  :example:
30223
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/list_db_systems.py.html>`__ to see an example of how to use list_db_systems API.
30223
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/list_db_systems.py.html>`__ to see an example of how to use list_db_systems API.
30224
30224
  """
30225
30225
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
30226
30226
  required_arguments = ['compartmentId']
@@ -30371,7 +30371,7 @@ class DatabaseClient(object):
30371
30371
  :rtype: :class:`~oci.response.Response`
30372
30372
 
30373
30373
  :example:
30374
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/list_db_versions.py.html>`__ to see an example of how to use list_db_versions API.
30374
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/list_db_versions.py.html>`__ to see an example of how to use list_db_versions API.
30375
30375
  """
30376
30376
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
30377
30377
  required_arguments = ['compartmentId']
@@ -30512,7 +30512,7 @@ class DatabaseClient(object):
30512
30512
  :rtype: :class:`~oci.response.Response`
30513
30513
 
30514
30514
  :example:
30515
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/list_exadata_infrastructures.py.html>`__ to see an example of how to use list_exadata_infrastructures API.
30515
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/list_exadata_infrastructures.py.html>`__ to see an example of how to use list_exadata_infrastructures API.
30516
30516
  """
30517
30517
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
30518
30518
  required_arguments = ['compartmentId']
@@ -30659,7 +30659,7 @@ class DatabaseClient(object):
30659
30659
  :rtype: :class:`~oci.response.Response`
30660
30660
 
30661
30661
  :example:
30662
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/list_exadb_vm_cluster_update_history_entries.py.html>`__ to see an example of how to use list_exadb_vm_cluster_update_history_entries API.
30662
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/list_exadb_vm_cluster_update_history_entries.py.html>`__ to see an example of how to use list_exadb_vm_cluster_update_history_entries API.
30663
30663
  """
30664
30664
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
30665
30665
  required_arguments = ['exadbVmClusterId']
@@ -30790,7 +30790,7 @@ class DatabaseClient(object):
30790
30790
  :rtype: :class:`~oci.response.Response`
30791
30791
 
30792
30792
  :example:
30793
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/list_exadb_vm_cluster_updates.py.html>`__ to see an example of how to use list_exadb_vm_cluster_updates API.
30793
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/list_exadb_vm_cluster_updates.py.html>`__ to see an example of how to use list_exadb_vm_cluster_updates API.
30794
30794
  """
30795
30795
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
30796
30796
  required_arguments = ['exadbVmClusterId']
@@ -30936,7 +30936,7 @@ class DatabaseClient(object):
30936
30936
  :rtype: :class:`~oci.response.Response`
30937
30937
 
30938
30938
  :example:
30939
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/list_exadb_vm_clusters.py.html>`__ to see an example of how to use list_exadb_vm_clusters API.
30939
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/list_exadb_vm_clusters.py.html>`__ to see an example of how to use list_exadb_vm_clusters API.
30940
30940
  """
30941
30941
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
30942
30942
  required_arguments = ['compartmentId']
@@ -31091,7 +31091,7 @@ class DatabaseClient(object):
31091
31091
  :rtype: :class:`~oci.response.Response`
31092
31092
 
31093
31093
  :example:
31094
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/list_exascale_db_storage_vaults.py.html>`__ to see an example of how to use list_exascale_db_storage_vaults API.
31094
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/list_exascale_db_storage_vaults.py.html>`__ to see an example of how to use list_exascale_db_storage_vaults API.
31095
31095
  """
31096
31096
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
31097
31097
  required_arguments = ['compartmentId']
@@ -31246,7 +31246,7 @@ class DatabaseClient(object):
31246
31246
  :rtype: :class:`~oci.response.Response`
31247
31247
 
31248
31248
  :example:
31249
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/list_execution_actions.py.html>`__ to see an example of how to use list_execution_actions API.
31249
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/list_execution_actions.py.html>`__ to see an example of how to use list_execution_actions API.
31250
31250
  """
31251
31251
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
31252
31252
  required_arguments = ['compartmentId']
@@ -31401,7 +31401,7 @@ class DatabaseClient(object):
31401
31401
  :rtype: :class:`~oci.response.Response`
31402
31402
 
31403
31403
  :example:
31404
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/list_execution_windows.py.html>`__ to see an example of how to use list_execution_windows API.
31404
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/list_execution_windows.py.html>`__ to see an example of how to use list_execution_windows API.
31405
31405
  """
31406
31406
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
31407
31407
  required_arguments = ['compartmentId']
@@ -31556,7 +31556,7 @@ class DatabaseClient(object):
31556
31556
  :rtype: :class:`~oci.response.Response`
31557
31557
 
31558
31558
  :example:
31559
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/list_external_container_databases.py.html>`__ to see an example of how to use list_external_container_databases API.
31559
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/list_external_container_databases.py.html>`__ to see an example of how to use list_external_container_databases API.
31560
31560
  """
31561
31561
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
31562
31562
  required_arguments = ['compartmentId']
@@ -31714,7 +31714,7 @@ class DatabaseClient(object):
31714
31714
  :rtype: :class:`~oci.response.Response`
31715
31715
 
31716
31716
  :example:
31717
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/list_external_database_connectors.py.html>`__ to see an example of how to use list_external_database_connectors API.
31717
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/list_external_database_connectors.py.html>`__ to see an example of how to use list_external_database_connectors API.
31718
31718
  """
31719
31719
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
31720
31720
  required_arguments = ['compartmentId', 'externalDatabaseId']
@@ -31868,7 +31868,7 @@ class DatabaseClient(object):
31868
31868
  :rtype: :class:`~oci.response.Response`
31869
31869
 
31870
31870
  :example:
31871
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/list_external_non_container_databases.py.html>`__ to see an example of how to use list_external_non_container_databases API.
31871
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/list_external_non_container_databases.py.html>`__ to see an example of how to use list_external_non_container_databases API.
31872
31872
  """
31873
31873
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
31874
31874
  required_arguments = ['compartmentId']
@@ -32027,7 +32027,7 @@ class DatabaseClient(object):
32027
32027
  :rtype: :class:`~oci.response.Response`
32028
32028
 
32029
32029
  :example:
32030
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/list_external_pluggable_databases.py.html>`__ to see an example of how to use list_external_pluggable_databases API.
32030
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/list_external_pluggable_databases.py.html>`__ to see an example of how to use list_external_pluggable_databases API.
32031
32031
  """
32032
32032
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
32033
32033
  required_arguments = ['compartmentId']
@@ -32171,7 +32171,7 @@ class DatabaseClient(object):
32171
32171
  :rtype: :class:`~oci.response.Response`
32172
32172
 
32173
32173
  :example:
32174
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/list_flex_components.py.html>`__ to see an example of how to use list_flex_components API.
32174
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/list_flex_components.py.html>`__ to see an example of how to use list_flex_components API.
32175
32175
  """
32176
32176
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
32177
32177
  required_arguments = ['compartmentId']
@@ -32318,7 +32318,7 @@ class DatabaseClient(object):
32318
32318
  :rtype: :class:`~oci.response.Response`
32319
32319
 
32320
32320
  :example:
32321
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/list_gi_version_minor_versions.py.html>`__ to see an example of how to use list_gi_version_minor_versions API.
32321
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/list_gi_version_minor_versions.py.html>`__ to see an example of how to use list_gi_version_minor_versions API.
32322
32322
  """
32323
32323
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
32324
32324
  required_arguments = ['version']
@@ -32475,7 +32475,7 @@ class DatabaseClient(object):
32475
32475
  :rtype: :class:`~oci.response.Response`
32476
32476
 
32477
32477
  :example:
32478
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/list_gi_versions.py.html>`__ to see an example of how to use list_gi_versions API.
32478
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/list_gi_versions.py.html>`__ to see an example of how to use list_gi_versions API.
32479
32479
  """
32480
32480
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
32481
32481
  required_arguments = ['compartmentId']
@@ -32588,7 +32588,7 @@ class DatabaseClient(object):
32588
32588
  :rtype: :class:`~oci.response.Response`
32589
32589
 
32590
32590
  :example:
32591
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/list_key_stores.py.html>`__ to see an example of how to use list_key_stores API.
32591
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/list_key_stores.py.html>`__ to see an example of how to use list_key_stores API.
32592
32592
  """
32593
32593
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
32594
32594
  required_arguments = ['compartmentId']
@@ -32726,7 +32726,7 @@ class DatabaseClient(object):
32726
32726
  :rtype: :class:`~oci.response.Response`
32727
32727
 
32728
32728
  :example:
32729
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/list_maintenance_run_history.py.html>`__ to see an example of how to use list_maintenance_run_history API.
32729
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/list_maintenance_run_history.py.html>`__ to see an example of how to use list_maintenance_run_history API.
32730
32730
  """
32731
32731
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
32732
32732
  required_arguments = ['compartmentId']
@@ -32919,7 +32919,7 @@ class DatabaseClient(object):
32919
32919
  :rtype: :class:`~oci.response.Response`
32920
32920
 
32921
32921
  :example:
32922
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/list_maintenance_runs.py.html>`__ to see an example of how to use list_maintenance_runs API.
32922
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/list_maintenance_runs.py.html>`__ to see an example of how to use list_maintenance_runs API.
32923
32923
  """
32924
32924
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
32925
32925
  required_arguments = ['compartmentId']
@@ -33095,7 +33095,7 @@ class DatabaseClient(object):
33095
33095
  :rtype: :class:`~oci.response.Response`
33096
33096
 
33097
33097
  :example:
33098
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/list_oneoff_patches.py.html>`__ to see an example of how to use list_oneoff_patches API.
33098
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/list_oneoff_patches.py.html>`__ to see an example of how to use list_oneoff_patches API.
33099
33099
  """
33100
33100
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
33101
33101
  required_arguments = ['compartmentId']
@@ -33227,7 +33227,7 @@ class DatabaseClient(object):
33227
33227
  :rtype: :class:`~oci.response.Response`
33228
33228
 
33229
33229
  :example:
33230
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/list_params_for_action_type.py.html>`__ to see an example of how to use list_params_for_action_type API.
33230
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/list_params_for_action_type.py.html>`__ to see an example of how to use list_params_for_action_type API.
33231
33231
  """
33232
33232
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
33233
33233
  required_arguments = ['type']
@@ -33356,7 +33356,7 @@ class DatabaseClient(object):
33356
33356
  :rtype: :class:`~oci.response.Response`
33357
33357
 
33358
33358
  :example:
33359
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/list_pdb_conversion_history_entries.py.html>`__ to see an example of how to use list_pdb_conversion_history_entries API.
33359
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/list_pdb_conversion_history_entries.py.html>`__ to see an example of how to use list_pdb_conversion_history_entries API.
33360
33360
  """
33361
33361
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
33362
33362
  required_arguments = ['databaseId']
@@ -33526,7 +33526,7 @@ class DatabaseClient(object):
33526
33526
  :rtype: :class:`~oci.response.Response`
33527
33527
 
33528
33528
  :example:
33529
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/list_pluggable_databases.py.html>`__ to see an example of how to use list_pluggable_databases API.
33529
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/list_pluggable_databases.py.html>`__ to see an example of how to use list_pluggable_databases API.
33530
33530
  """
33531
33531
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
33532
33532
  required_arguments = []
@@ -33668,7 +33668,7 @@ class DatabaseClient(object):
33668
33668
  :rtype: :class:`~oci.response.Response`
33669
33669
 
33670
33670
  :example:
33671
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/list_recommended_scheduled_actions.py.html>`__ to see an example of how to use list_recommended_scheduled_actions API.
33671
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/list_recommended_scheduled_actions.py.html>`__ to see an example of how to use list_recommended_scheduled_actions API.
33672
33672
  """
33673
33673
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
33674
33674
  required_arguments = ['schedulingPolicyId', 'schedulingPolicyTargetResourceId', 'planIntent']
@@ -33817,7 +33817,7 @@ class DatabaseClient(object):
33817
33817
  :rtype: :class:`~oci.response.Response`
33818
33818
 
33819
33819
  :example:
33820
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/list_scheduled_actions.py.html>`__ to see an example of how to use list_scheduled_actions API.
33820
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/list_scheduled_actions.py.html>`__ to see an example of how to use list_scheduled_actions API.
33821
33821
  """
33822
33822
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
33823
33823
  required_arguments = ['compartmentId']
@@ -33982,7 +33982,7 @@ class DatabaseClient(object):
33982
33982
  :rtype: :class:`~oci.response.Response`
33983
33983
 
33984
33984
  :example:
33985
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/list_scheduling_plans.py.html>`__ to see an example of how to use list_scheduling_plans API.
33985
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/list_scheduling_plans.py.html>`__ to see an example of how to use list_scheduling_plans API.
33986
33986
  """
33987
33987
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
33988
33988
  required_arguments = ['compartmentId']
@@ -34138,7 +34138,7 @@ class DatabaseClient(object):
34138
34138
  :rtype: :class:`~oci.response.Response`
34139
34139
 
34140
34140
  :example:
34141
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/list_scheduling_policies.py.html>`__ to see an example of how to use list_scheduling_policies API.
34141
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/list_scheduling_policies.py.html>`__ to see an example of how to use list_scheduling_policies API.
34142
34142
  """
34143
34143
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
34144
34144
  required_arguments = ['compartmentId']
@@ -34293,7 +34293,7 @@ class DatabaseClient(object):
34293
34293
  :rtype: :class:`~oci.response.Response`
34294
34294
 
34295
34295
  :example:
34296
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/list_scheduling_windows.py.html>`__ to see an example of how to use list_scheduling_windows API.
34296
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/list_scheduling_windows.py.html>`__ to see an example of how to use list_scheduling_windows API.
34297
34297
  """
34298
34298
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
34299
34299
  required_arguments = ['schedulingPolicyId']
@@ -34449,7 +34449,7 @@ class DatabaseClient(object):
34449
34449
  :rtype: :class:`~oci.response.Response`
34450
34450
 
34451
34451
  :example:
34452
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/list_system_versions.py.html>`__ to see an example of how to use list_system_versions API.
34452
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/list_system_versions.py.html>`__ to see an example of how to use list_system_versions API.
34453
34453
  """
34454
34454
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
34455
34455
  required_arguments = ['compartmentId', 'shape', 'giVersion']
@@ -34586,7 +34586,7 @@ class DatabaseClient(object):
34586
34586
  :rtype: :class:`~oci.response.Response`
34587
34587
 
34588
34588
  :example:
34589
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/list_vm_cluster_networks.py.html>`__ to see an example of how to use list_vm_cluster_networks API.
34589
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/list_vm_cluster_networks.py.html>`__ to see an example of how to use list_vm_cluster_networks API.
34590
34590
  """
34591
34591
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
34592
34592
  required_arguments = ['exadataInfrastructureId', 'compartmentId']
@@ -34727,7 +34727,7 @@ class DatabaseClient(object):
34727
34727
  :rtype: :class:`~oci.response.Response`
34728
34728
 
34729
34729
  :example:
34730
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/list_vm_cluster_patch_history_entries.py.html>`__ to see an example of how to use list_vm_cluster_patch_history_entries API.
34730
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/list_vm_cluster_patch_history_entries.py.html>`__ to see an example of how to use list_vm_cluster_patch_history_entries API.
34731
34731
  """
34732
34732
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
34733
34733
  required_arguments = ['vmClusterId']
@@ -34835,7 +34835,7 @@ class DatabaseClient(object):
34835
34835
  :rtype: :class:`~oci.response.Response`
34836
34836
 
34837
34837
  :example:
34838
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/list_vm_cluster_patches.py.html>`__ to see an example of how to use list_vm_cluster_patches API.
34838
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/list_vm_cluster_patches.py.html>`__ to see an example of how to use list_vm_cluster_patches API.
34839
34839
  """
34840
34840
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
34841
34841
  required_arguments = ['vmClusterId']
@@ -34956,7 +34956,7 @@ class DatabaseClient(object):
34956
34956
  :rtype: :class:`~oci.response.Response`
34957
34957
 
34958
34958
  :example:
34959
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/list_vm_cluster_update_history_entries.py.html>`__ to see an example of how to use list_vm_cluster_update_history_entries API.
34959
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/list_vm_cluster_update_history_entries.py.html>`__ to see an example of how to use list_vm_cluster_update_history_entries API.
34960
34960
  """
34961
34961
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
34962
34962
  required_arguments = ['vmClusterId']
@@ -35098,7 +35098,7 @@ class DatabaseClient(object):
35098
35098
  :rtype: :class:`~oci.response.Response`
35099
35099
 
35100
35100
  :example:
35101
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/list_vm_cluster_updates.py.html>`__ to see an example of how to use list_vm_cluster_updates API.
35101
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/list_vm_cluster_updates.py.html>`__ to see an example of how to use list_vm_cluster_updates API.
35102
35102
  """
35103
35103
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
35104
35104
  required_arguments = ['vmClusterId']
@@ -35252,7 +35252,7 @@ class DatabaseClient(object):
35252
35252
  :rtype: :class:`~oci.response.Response`
35253
35253
 
35254
35254
  :example:
35255
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/list_vm_clusters.py.html>`__ to see an example of how to use list_vm_clusters API.
35255
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/list_vm_clusters.py.html>`__ to see an example of how to use list_vm_clusters API.
35256
35256
  """
35257
35257
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
35258
35258
  required_arguments = ['compartmentId']
@@ -35396,7 +35396,7 @@ class DatabaseClient(object):
35396
35396
  :rtype: :class:`~oci.response.Response`
35397
35397
 
35398
35398
  :example:
35399
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/local_clone_pluggable_database.py.html>`__ to see an example of how to use local_clone_pluggable_database API.
35399
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/local_clone_pluggable_database.py.html>`__ to see an example of how to use local_clone_pluggable_database API.
35400
35400
  """
35401
35401
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
35402
35402
  required_arguments = ['pluggableDatabaseId']
@@ -35516,7 +35516,7 @@ class DatabaseClient(object):
35516
35516
  :rtype: :class:`~oci.response.Response`
35517
35517
 
35518
35518
  :example:
35519
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/migrate_exadata_db_system_resource_model.py.html>`__ to see an example of how to use migrate_exadata_db_system_resource_model API.
35519
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/migrate_exadata_db_system_resource_model.py.html>`__ to see an example of how to use migrate_exadata_db_system_resource_model API.
35520
35520
  """
35521
35521
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
35522
35522
  required_arguments = ['dbSystemId']
@@ -35636,7 +35636,7 @@ class DatabaseClient(object):
35636
35636
  :rtype: :class:`~oci.response.Response`
35637
35637
 
35638
35638
  :example:
35639
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/migrate_vault_key.py.html>`__ to see an example of how to use migrate_vault_key API.
35639
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/migrate_vault_key.py.html>`__ to see an example of how to use migrate_vault_key API.
35640
35640
  """
35641
35641
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
35642
35642
  required_arguments = ['databaseId']
@@ -35756,7 +35756,7 @@ class DatabaseClient(object):
35756
35756
  :rtype: :class:`~oci.response.Response`
35757
35757
 
35758
35758
  :example:
35759
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/modify_database_management.py.html>`__ to see an example of how to use modify_database_management API.
35759
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/modify_database_management.py.html>`__ to see an example of how to use modify_database_management API.
35760
35760
  """
35761
35761
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
35762
35762
  required_arguments = ['databaseId']
@@ -35876,7 +35876,7 @@ class DatabaseClient(object):
35876
35876
  :rtype: :class:`~oci.response.Response`
35877
35877
 
35878
35878
  :example:
35879
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/modify_pluggable_database_management.py.html>`__ to see an example of how to use modify_pluggable_database_management API.
35879
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/modify_pluggable_database_management.py.html>`__ to see an example of how to use modify_pluggable_database_management API.
35880
35880
  """
35881
35881
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
35882
35882
  required_arguments = ['pluggableDatabaseId']
@@ -35996,7 +35996,7 @@ class DatabaseClient(object):
35996
35996
  :rtype: :class:`~oci.response.Response`
35997
35997
 
35998
35998
  :example:
35999
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/move_execution_action_member.py.html>`__ to see an example of how to use move_execution_action_member API.
35999
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/move_execution_action_member.py.html>`__ to see an example of how to use move_execution_action_member API.
36000
36000
  """
36001
36001
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
36002
36002
  required_arguments = ['executionActionId']
@@ -36113,7 +36113,7 @@ class DatabaseClient(object):
36113
36113
  :rtype: :class:`~oci.response.Response`
36114
36114
 
36115
36115
  :example:
36116
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/refresh_pluggable_database.py.html>`__ to see an example of how to use refresh_pluggable_database API.
36116
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/refresh_pluggable_database.py.html>`__ to see an example of how to use refresh_pluggable_database API.
36117
36117
  """
36118
36118
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
36119
36119
  required_arguments = ['pluggableDatabaseId']
@@ -36219,7 +36219,7 @@ class DatabaseClient(object):
36219
36219
  :rtype: :class:`~oci.response.Response`
36220
36220
 
36221
36221
  :example:
36222
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/register_autonomous_database_data_safe.py.html>`__ to see an example of how to use register_autonomous_database_data_safe API.
36222
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/register_autonomous_database_data_safe.py.html>`__ to see an example of how to use register_autonomous_database_data_safe API.
36223
36223
  """
36224
36224
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
36225
36225
  required_arguments = ['autonomousDatabaseId']
@@ -36325,7 +36325,7 @@ class DatabaseClient(object):
36325
36325
  :rtype: :class:`~oci.response.Response`
36326
36326
 
36327
36327
  :example:
36328
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/reinstate_autonomous_container_database_dataguard_association.py.html>`__ to see an example of how to use reinstate_autonomous_container_database_dataguard_association API.
36328
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/reinstate_autonomous_container_database_dataguard_association.py.html>`__ to see an example of how to use reinstate_autonomous_container_database_dataguard_association API.
36329
36329
  """
36330
36330
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
36331
36331
  required_arguments = ['autonomousContainerDatabaseId', 'autonomousContainerDatabaseDataguardAssociationId']
@@ -36434,7 +36434,7 @@ class DatabaseClient(object):
36434
36434
  :rtype: :class:`~oci.response.Response`
36435
36435
 
36436
36436
  :example:
36437
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/reinstate_data_guard_association.py.html>`__ to see an example of how to use reinstate_data_guard_association API.
36437
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/reinstate_data_guard_association.py.html>`__ to see an example of how to use reinstate_data_guard_association API.
36438
36438
  """
36439
36439
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
36440
36440
  required_arguments = ['databaseId', 'dataGuardAssociationId']
@@ -36552,7 +36552,7 @@ class DatabaseClient(object):
36552
36552
  :rtype: :class:`~oci.response.Response`
36553
36553
 
36554
36554
  :example:
36555
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/remote_clone_pluggable_database.py.html>`__ to see an example of how to use remote_clone_pluggable_database API.
36555
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/remote_clone_pluggable_database.py.html>`__ to see an example of how to use remote_clone_pluggable_database API.
36556
36556
  """
36557
36557
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
36558
36558
  required_arguments = ['pluggableDatabaseId']
@@ -36672,7 +36672,7 @@ class DatabaseClient(object):
36672
36672
  :rtype: :class:`~oci.response.Response`
36673
36673
 
36674
36674
  :example:
36675
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/remove_virtual_machine_from_cloud_vm_cluster.py.html>`__ to see an example of how to use remove_virtual_machine_from_cloud_vm_cluster API.
36675
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/remove_virtual_machine_from_cloud_vm_cluster.py.html>`__ to see an example of how to use remove_virtual_machine_from_cloud_vm_cluster API.
36676
36676
  """
36677
36677
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
36678
36678
  required_arguments = ['cloudVmClusterId']
@@ -36792,7 +36792,7 @@ class DatabaseClient(object):
36792
36792
  :rtype: :class:`~oci.response.Response`
36793
36793
 
36794
36794
  :example:
36795
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/remove_virtual_machine_from_exadb_vm_cluster.py.html>`__ to see an example of how to use remove_virtual_machine_from_exadb_vm_cluster API.
36795
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/remove_virtual_machine_from_exadb_vm_cluster.py.html>`__ to see an example of how to use remove_virtual_machine_from_exadb_vm_cluster API.
36796
36796
  """
36797
36797
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
36798
36798
  required_arguments = ['exadbVmClusterId']
@@ -36912,7 +36912,7 @@ class DatabaseClient(object):
36912
36912
  :rtype: :class:`~oci.response.Response`
36913
36913
 
36914
36914
  :example:
36915
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/remove_virtual_machine_from_vm_cluster.py.html>`__ to see an example of how to use remove_virtual_machine_from_vm_cluster API.
36915
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/remove_virtual_machine_from_vm_cluster.py.html>`__ to see an example of how to use remove_virtual_machine_from_vm_cluster API.
36916
36916
  """
36917
36917
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
36918
36918
  required_arguments = ['vmClusterId']
@@ -37032,7 +37032,7 @@ class DatabaseClient(object):
37032
37032
  :rtype: :class:`~oci.response.Response`
37033
37033
 
37034
37034
  :example:
37035
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/reorder_execution_actions.py.html>`__ to see an example of how to use reorder_execution_actions API.
37035
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/reorder_execution_actions.py.html>`__ to see an example of how to use reorder_execution_actions API.
37036
37036
  """
37037
37037
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
37038
37038
  required_arguments = ['executionWindowId']
@@ -37152,7 +37152,7 @@ class DatabaseClient(object):
37152
37152
  :rtype: :class:`~oci.response.Response`
37153
37153
 
37154
37154
  :example:
37155
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/reorder_scheduled_actions.py.html>`__ to see an example of how to use reorder_scheduled_actions API.
37155
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/reorder_scheduled_actions.py.html>`__ to see an example of how to use reorder_scheduled_actions API.
37156
37156
  """
37157
37157
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
37158
37158
  required_arguments = ['schedulingPlanId']
@@ -37278,7 +37278,7 @@ class DatabaseClient(object):
37278
37278
  :rtype: :class:`~oci.response.Response`
37279
37279
 
37280
37280
  :example:
37281
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/resize_vm_cluster_network.py.html>`__ to see an example of how to use resize_vm_cluster_network API.
37281
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/resize_vm_cluster_network.py.html>`__ to see an example of how to use resize_vm_cluster_network API.
37282
37282
  """
37283
37283
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
37284
37284
  required_arguments = ['exadataInfrastructureId', 'vmClusterNetworkId']
@@ -37397,7 +37397,7 @@ class DatabaseClient(object):
37397
37397
  :rtype: :class:`~oci.response.Response`
37398
37398
 
37399
37399
  :example:
37400
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/resource_pool_shapes.py.html>`__ to see an example of how to use resource_pool_shapes API.
37400
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/resource_pool_shapes.py.html>`__ to see an example of how to use resource_pool_shapes API.
37401
37401
  """
37402
37402
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
37403
37403
  required_arguments = []
@@ -37503,7 +37503,7 @@ class DatabaseClient(object):
37503
37503
  :rtype: :class:`~oci.response.Response`
37504
37504
 
37505
37505
  :example:
37506
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/restart_autonomous_container_database.py.html>`__ to see an example of how to use restart_autonomous_container_database API.
37506
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/restart_autonomous_container_database.py.html>`__ to see an example of how to use restart_autonomous_container_database API.
37507
37507
  """
37508
37508
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
37509
37509
  required_arguments = ['autonomousContainerDatabaseId']
@@ -37605,7 +37605,7 @@ class DatabaseClient(object):
37605
37605
  :rtype: :class:`~oci.response.Response`
37606
37606
 
37607
37607
  :example:
37608
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/restart_autonomous_database.py.html>`__ to see an example of how to use restart_autonomous_database API.
37608
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/restart_autonomous_database.py.html>`__ to see an example of how to use restart_autonomous_database API.
37609
37609
  """
37610
37610
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
37611
37611
  required_arguments = ['autonomousDatabaseId']
@@ -37708,7 +37708,7 @@ class DatabaseClient(object):
37708
37708
  :rtype: :class:`~oci.response.Response`
37709
37709
 
37710
37710
  :example:
37711
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/restore_autonomous_database.py.html>`__ to see an example of how to use restore_autonomous_database API.
37711
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/restore_autonomous_database.py.html>`__ to see an example of how to use restore_autonomous_database API.
37712
37712
  """
37713
37713
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
37714
37714
  required_arguments = ['autonomousDatabaseId']
@@ -37813,7 +37813,7 @@ class DatabaseClient(object):
37813
37813
  :rtype: :class:`~oci.response.Response`
37814
37814
 
37815
37815
  :example:
37816
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/restore_database.py.html>`__ to see an example of how to use restore_database API.
37816
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/restore_database.py.html>`__ to see an example of how to use restore_database API.
37817
37817
  """
37818
37818
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
37819
37819
  required_arguments = ['databaseId']
@@ -37911,6 +37911,9 @@ class DatabaseClient(object):
37911
37911
  :param str opc_request_id: (optional)
37912
37912
  Unique identifier for the request.
37913
37913
 
37914
+ :param oci.database.models.RotateAutonomousContainerDatabaseEncryptionKeyDetails rotate_autonomous_container_database_encryption_key_details: (optional)
37915
+ Key details provided by the user for rotate key operation for Autonomous Database.
37916
+
37914
37917
  :param obj retry_strategy: (optional)
37915
37918
  A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level.
37916
37919
 
@@ -37927,7 +37930,7 @@ class DatabaseClient(object):
37927
37930
  :rtype: :class:`~oci.response.Response`
37928
37931
 
37929
37932
  :example:
37930
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/rotate_autonomous_container_database_encryption_key.py.html>`__ to see an example of how to use rotate_autonomous_container_database_encryption_key API.
37933
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/rotate_autonomous_container_database_encryption_key.py.html>`__ to see an example of how to use rotate_autonomous_container_database_encryption_key API.
37931
37934
  """
37932
37935
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
37933
37936
  required_arguments = ['autonomousContainerDatabaseId']
@@ -37942,7 +37945,8 @@ class DatabaseClient(object):
37942
37945
  "retry_strategy",
37943
37946
  "if_match",
37944
37947
  "opc_retry_token",
37945
- "opc_request_id"
37948
+ "opc_request_id",
37949
+ "rotate_autonomous_container_database_encryption_key_details"
37946
37950
  ]
37947
37951
  extra_kwargs = [_key for _key in six.iterkeys(kwargs) if _key not in expected_kwargs]
37948
37952
  if extra_kwargs:
@@ -37984,6 +37988,7 @@ class DatabaseClient(object):
37984
37988
  method=method,
37985
37989
  path_params=path_params,
37986
37990
  header_params=header_params,
37991
+ body=kwargs.get('rotate_autonomous_container_database_encryption_key_details'),
37987
37992
  response_type="AutonomousContainerDatabase",
37988
37993
  allow_control_chars=kwargs.get('allow_control_chars'),
37989
37994
  operation_name=operation_name,
@@ -37995,6 +38000,7 @@ class DatabaseClient(object):
37995
38000
  method=method,
37996
38001
  path_params=path_params,
37997
38002
  header_params=header_params,
38003
+ body=kwargs.get('rotate_autonomous_container_database_encryption_key_details'),
37998
38004
  response_type="AutonomousContainerDatabase",
37999
38005
  allow_control_chars=kwargs.get('allow_control_chars'),
38000
38006
  operation_name=operation_name,
@@ -38028,6 +38034,9 @@ class DatabaseClient(object):
38028
38034
  :param str opc_request_id: (optional)
38029
38035
  Unique identifier for the request.
38030
38036
 
38037
+ :param oci.database.models.RotateAutonomousDatabaseEncryptionKeyDetails rotate_autonomous_database_encryption_key_details: (optional)
38038
+ Key details provided by the user for rotate key operation for Autonomous Database.
38039
+
38031
38040
  :param obj retry_strategy: (optional)
38032
38041
  A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level.
38033
38042
 
@@ -38044,7 +38053,7 @@ class DatabaseClient(object):
38044
38053
  :rtype: :class:`~oci.response.Response`
38045
38054
 
38046
38055
  :example:
38047
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/rotate_autonomous_database_encryption_key.py.html>`__ to see an example of how to use rotate_autonomous_database_encryption_key API.
38056
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/rotate_autonomous_database_encryption_key.py.html>`__ to see an example of how to use rotate_autonomous_database_encryption_key API.
38048
38057
  """
38049
38058
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
38050
38059
  required_arguments = ['autonomousDatabaseId']
@@ -38059,7 +38068,8 @@ class DatabaseClient(object):
38059
38068
  "retry_strategy",
38060
38069
  "if_match",
38061
38070
  "opc_retry_token",
38062
- "opc_request_id"
38071
+ "opc_request_id",
38072
+ "rotate_autonomous_database_encryption_key_details"
38063
38073
  ]
38064
38074
  extra_kwargs = [_key for _key in six.iterkeys(kwargs) if _key not in expected_kwargs]
38065
38075
  if extra_kwargs:
@@ -38101,6 +38111,7 @@ class DatabaseClient(object):
38101
38111
  method=method,
38102
38112
  path_params=path_params,
38103
38113
  header_params=header_params,
38114
+ body=kwargs.get('rotate_autonomous_database_encryption_key_details'),
38104
38115
  response_type="AutonomousDatabase",
38105
38116
  allow_control_chars=kwargs.get('allow_control_chars'),
38106
38117
  operation_name=operation_name,
@@ -38112,6 +38123,7 @@ class DatabaseClient(object):
38112
38123
  method=method,
38113
38124
  path_params=path_params,
38114
38125
  header_params=header_params,
38126
+ body=kwargs.get('rotate_autonomous_database_encryption_key_details'),
38115
38127
  response_type="AutonomousDatabase",
38116
38128
  allow_control_chars=kwargs.get('allow_control_chars'),
38117
38129
  operation_name=operation_name,
@@ -38162,7 +38174,7 @@ class DatabaseClient(object):
38162
38174
  :rtype: :class:`~oci.response.Response`
38163
38175
 
38164
38176
  :example:
38165
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/rotate_autonomous_vm_cluster_ords_certs.py.html>`__ to see an example of how to use rotate_autonomous_vm_cluster_ords_certs API.
38177
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/rotate_autonomous_vm_cluster_ords_certs.py.html>`__ to see an example of how to use rotate_autonomous_vm_cluster_ords_certs API.
38166
38178
  """
38167
38179
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
38168
38180
  required_arguments = ['autonomousVmClusterId']
@@ -38280,7 +38292,7 @@ class DatabaseClient(object):
38280
38292
  :rtype: :class:`~oci.response.Response`
38281
38293
 
38282
38294
  :example:
38283
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/rotate_autonomous_vm_cluster_ssl_certs.py.html>`__ to see an example of how to use rotate_autonomous_vm_cluster_ssl_certs API.
38295
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/rotate_autonomous_vm_cluster_ssl_certs.py.html>`__ to see an example of how to use rotate_autonomous_vm_cluster_ssl_certs API.
38284
38296
  """
38285
38297
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
38286
38298
  required_arguments = ['autonomousVmClusterId']
@@ -38398,7 +38410,7 @@ class DatabaseClient(object):
38398
38410
  :rtype: :class:`~oci.response.Response`
38399
38411
 
38400
38412
  :example:
38401
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/rotate_cloud_autonomous_vm_cluster_ords_certs.py.html>`__ to see an example of how to use rotate_cloud_autonomous_vm_cluster_ords_certs API.
38413
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/rotate_cloud_autonomous_vm_cluster_ords_certs.py.html>`__ to see an example of how to use rotate_cloud_autonomous_vm_cluster_ords_certs API.
38402
38414
  """
38403
38415
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
38404
38416
  required_arguments = ['cloudAutonomousVmClusterId']
@@ -38517,7 +38529,7 @@ class DatabaseClient(object):
38517
38529
  :rtype: :class:`~oci.response.Response`
38518
38530
 
38519
38531
  :example:
38520
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/rotate_cloud_autonomous_vm_cluster_ssl_certs.py.html>`__ to see an example of how to use rotate_cloud_autonomous_vm_cluster_ssl_certs API.
38532
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/rotate_cloud_autonomous_vm_cluster_ssl_certs.py.html>`__ to see an example of how to use rotate_cloud_autonomous_vm_cluster_ssl_certs API.
38521
38533
  """
38522
38534
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
38523
38535
  required_arguments = ['cloudAutonomousVmClusterId']
@@ -38633,7 +38645,7 @@ class DatabaseClient(object):
38633
38645
  :rtype: :class:`~oci.response.Response`
38634
38646
 
38635
38647
  :example:
38636
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/rotate_ords_certs.py.html>`__ to see an example of how to use rotate_ords_certs API.
38648
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/rotate_ords_certs.py.html>`__ to see an example of how to use rotate_ords_certs API.
38637
38649
  """
38638
38650
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
38639
38651
  required_arguments = ['autonomousExadataInfrastructureId']
@@ -38746,7 +38758,7 @@ class DatabaseClient(object):
38746
38758
  :rtype: :class:`~oci.response.Response`
38747
38759
 
38748
38760
  :example:
38749
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/rotate_pluggable_database_encryption_key.py.html>`__ to see an example of how to use rotate_pluggable_database_encryption_key API.
38761
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/rotate_pluggable_database_encryption_key.py.html>`__ to see an example of how to use rotate_pluggable_database_encryption_key API.
38750
38762
  """
38751
38763
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
38752
38764
  required_arguments = ['pluggableDatabaseId']
@@ -38859,7 +38871,7 @@ class DatabaseClient(object):
38859
38871
  :rtype: :class:`~oci.response.Response`
38860
38872
 
38861
38873
  :example:
38862
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/rotate_ssl_certs.py.html>`__ to see an example of how to use rotate_ssl_certs API.
38874
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/rotate_ssl_certs.py.html>`__ to see an example of how to use rotate_ssl_certs API.
38863
38875
  """
38864
38876
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
38865
38877
  required_arguments = ['autonomousExadataInfrastructureId']
@@ -38974,7 +38986,7 @@ class DatabaseClient(object):
38974
38986
  :rtype: :class:`~oci.response.Response`
38975
38987
 
38976
38988
  :example:
38977
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/rotate_vault_key.py.html>`__ to see an example of how to use rotate_vault_key API.
38989
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/rotate_vault_key.py.html>`__ to see an example of how to use rotate_vault_key API.
38978
38990
  """
38979
38991
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
38980
38992
  required_arguments = ['databaseId']
@@ -39077,7 +39089,7 @@ class DatabaseClient(object):
39077
39089
  :rtype: :class:`~oci.response.Response`
39078
39090
 
39079
39091
  :example:
39080
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/saas_admin_user_status.py.html>`__ to see an example of how to use saas_admin_user_status API.
39092
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/saas_admin_user_status.py.html>`__ to see an example of how to use saas_admin_user_status API.
39081
39093
  """
39082
39094
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
39083
39095
  required_arguments = ['autonomousDatabaseId']
@@ -39189,7 +39201,7 @@ class DatabaseClient(object):
39189
39201
  :rtype: :class:`~oci.response.Response`
39190
39202
 
39191
39203
  :example:
39192
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/scan_external_container_database_pluggable_databases.py.html>`__ to see an example of how to use scan_external_container_database_pluggable_databases API.
39204
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/scan_external_container_database_pluggable_databases.py.html>`__ to see an example of how to use scan_external_container_database_pluggable_databases API.
39193
39205
  """
39194
39206
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
39195
39207
  required_arguments = ['externalContainerDatabaseId', 'externalDatabaseConnectorId']
@@ -39312,7 +39324,7 @@ class DatabaseClient(object):
39312
39324
  :rtype: :class:`~oci.response.Response`
39313
39325
 
39314
39326
  :example:
39315
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/set_db_key_version.py.html>`__ to see an example of how to use set_db_key_version API.
39327
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/set_db_key_version.py.html>`__ to see an example of how to use set_db_key_version API.
39316
39328
  """
39317
39329
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
39318
39330
  required_arguments = ['databaseId']
@@ -39434,7 +39446,7 @@ class DatabaseClient(object):
39434
39446
  :rtype: :class:`~oci.response.Response`
39435
39447
 
39436
39448
  :example:
39437
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/set_pdb_key_version.py.html>`__ to see an example of how to use set_pdb_key_version API.
39449
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/set_pdb_key_version.py.html>`__ to see an example of how to use set_pdb_key_version API.
39438
39450
  """
39439
39451
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
39440
39452
  required_arguments = ['pluggableDatabaseId']
@@ -39541,7 +39553,7 @@ class DatabaseClient(object):
39541
39553
  :rtype: :class:`~oci.response.Response`
39542
39554
 
39543
39555
  :example:
39544
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/shrink_autonomous_database.py.html>`__ to see an example of how to use shrink_autonomous_database API.
39556
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/shrink_autonomous_database.py.html>`__ to see an example of how to use shrink_autonomous_database API.
39545
39557
  """
39546
39558
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
39547
39559
  required_arguments = ['autonomousDatabaseId']
@@ -39641,7 +39653,7 @@ class DatabaseClient(object):
39641
39653
  :rtype: :class:`~oci.response.Response`
39642
39654
 
39643
39655
  :example:
39644
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/start_autonomous_database.py.html>`__ to see an example of how to use start_autonomous_database API.
39656
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/start_autonomous_database.py.html>`__ to see an example of how to use start_autonomous_database API.
39645
39657
  """
39646
39658
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
39647
39659
  required_arguments = ['autonomousDatabaseId']
@@ -39751,7 +39763,7 @@ class DatabaseClient(object):
39751
39763
  :rtype: :class:`~oci.response.Response`
39752
39764
 
39753
39765
  :example:
39754
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/start_pluggable_database.py.html>`__ to see an example of how to use start_pluggable_database API.
39766
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/start_pluggable_database.py.html>`__ to see an example of how to use start_pluggable_database API.
39755
39767
  """
39756
39768
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
39757
39769
  required_arguments = ['pluggableDatabaseId']
@@ -39859,7 +39871,7 @@ class DatabaseClient(object):
39859
39871
  :rtype: :class:`~oci.response.Response`
39860
39872
 
39861
39873
  :example:
39862
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/stop_autonomous_database.py.html>`__ to see an example of how to use stop_autonomous_database API.
39874
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/stop_autonomous_database.py.html>`__ to see an example of how to use stop_autonomous_database API.
39863
39875
  """
39864
39876
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
39865
39877
  required_arguments = ['autonomousDatabaseId']
@@ -39971,7 +39983,7 @@ class DatabaseClient(object):
39971
39983
  :rtype: :class:`~oci.response.Response`
39972
39984
 
39973
39985
  :example:
39974
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/stop_pluggable_database.py.html>`__ to see an example of how to use stop_pluggable_database API.
39986
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/stop_pluggable_database.py.html>`__ to see an example of how to use stop_pluggable_database API.
39975
39987
  """
39976
39988
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
39977
39989
  required_arguments = ['pluggableDatabaseId']
@@ -40083,7 +40095,7 @@ class DatabaseClient(object):
40083
40095
  :rtype: :class:`~oci.response.Response`
40084
40096
 
40085
40097
  :example:
40086
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/switchover_autonomous_container_database_dataguard_association.py.html>`__ to see an example of how to use switchover_autonomous_container_database_dataguard_association API.
40098
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/switchover_autonomous_container_database_dataguard_association.py.html>`__ to see an example of how to use switchover_autonomous_container_database_dataguard_association API.
40087
40099
  """
40088
40100
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
40089
40101
  required_arguments = ['autonomousContainerDatabaseId', 'autonomousContainerDatabaseDataguardAssociationId']
@@ -40202,7 +40214,7 @@ class DatabaseClient(object):
40202
40214
  :rtype: :class:`~oci.response.Response`
40203
40215
 
40204
40216
  :example:
40205
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/switchover_autonomous_database.py.html>`__ to see an example of how to use switchover_autonomous_database API.
40217
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/switchover_autonomous_database.py.html>`__ to see an example of how to use switchover_autonomous_database API.
40206
40218
  """
40207
40219
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
40208
40220
  required_arguments = ['autonomousDatabaseId']
@@ -40326,7 +40338,7 @@ class DatabaseClient(object):
40326
40338
  :rtype: :class:`~oci.response.Response`
40327
40339
 
40328
40340
  :example:
40329
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/switchover_data_guard_association.py.html>`__ to see an example of how to use switchover_data_guard_association API.
40341
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/switchover_data_guard_association.py.html>`__ to see an example of how to use switchover_data_guard_association API.
40330
40342
  """
40331
40343
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
40332
40344
  required_arguments = ['databaseId', 'dataGuardAssociationId']
@@ -40429,7 +40441,7 @@ class DatabaseClient(object):
40429
40441
  :rtype: :class:`~oci.response.Response`
40430
40442
 
40431
40443
  :example:
40432
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/terminate_autonomous_container_database.py.html>`__ to see an example of how to use terminate_autonomous_container_database API.
40444
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/terminate_autonomous_container_database.py.html>`__ to see an example of how to use terminate_autonomous_container_database API.
40433
40445
  """
40434
40446
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
40435
40447
  required_arguments = ['autonomousContainerDatabaseId']
@@ -40527,7 +40539,7 @@ class DatabaseClient(object):
40527
40539
  :rtype: :class:`~oci.response.Response`
40528
40540
 
40529
40541
  :example:
40530
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/terminate_autonomous_exadata_infrastructure.py.html>`__ to see an example of how to use terminate_autonomous_exadata_infrastructure API.
40542
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/terminate_autonomous_exadata_infrastructure.py.html>`__ to see an example of how to use terminate_autonomous_exadata_infrastructure API.
40531
40543
  """
40532
40544
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
40533
40545
  required_arguments = ['autonomousExadataInfrastructureId']
@@ -40632,7 +40644,7 @@ class DatabaseClient(object):
40632
40644
  :rtype: :class:`~oci.response.Response`
40633
40645
 
40634
40646
  :example:
40635
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/terminate_db_system.py.html>`__ to see an example of how to use terminate_db_system API.
40647
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/terminate_db_system.py.html>`__ to see an example of how to use terminate_db_system API.
40636
40648
  """
40637
40649
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
40638
40650
  required_arguments = ['dbSystemId']
@@ -40733,7 +40745,7 @@ class DatabaseClient(object):
40733
40745
  :rtype: :class:`~oci.response.Response`
40734
40746
 
40735
40747
  :example:
40736
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/update_autonomous_container_database.py.html>`__ to see an example of how to use update_autonomous_container_database API.
40748
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/update_autonomous_container_database.py.html>`__ to see an example of how to use update_autonomous_container_database API.
40737
40749
  """
40738
40750
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
40739
40751
  required_arguments = ['autonomousContainerDatabaseId']
@@ -40846,7 +40858,7 @@ class DatabaseClient(object):
40846
40858
  :rtype: :class:`~oci.response.Response`
40847
40859
 
40848
40860
  :example:
40849
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/update_autonomous_container_database_dataguard_association.py.html>`__ to see an example of how to use update_autonomous_container_database_dataguard_association API.
40861
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/update_autonomous_container_database_dataguard_association.py.html>`__ to see an example of how to use update_autonomous_container_database_dataguard_association API.
40850
40862
  """
40851
40863
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
40852
40864
  required_arguments = ['autonomousContainerDatabaseId', 'autonomousContainerDatabaseDataguardAssociationId']
@@ -40957,7 +40969,7 @@ class DatabaseClient(object):
40957
40969
  :rtype: :class:`~oci.response.Response`
40958
40970
 
40959
40971
  :example:
40960
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/update_autonomous_database.py.html>`__ to see an example of how to use update_autonomous_database API.
40972
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/update_autonomous_database.py.html>`__ to see an example of how to use update_autonomous_database API.
40961
40973
  """
40962
40974
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
40963
40975
  required_arguments = ['autonomousDatabaseId']
@@ -41067,7 +41079,7 @@ class DatabaseClient(object):
41067
41079
  :rtype: :class:`~oci.response.Response`
41068
41080
 
41069
41081
  :example:
41070
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/update_autonomous_database_backup.py.html>`__ to see an example of how to use update_autonomous_database_backup API.
41082
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/update_autonomous_database_backup.py.html>`__ to see an example of how to use update_autonomous_database_backup API.
41071
41083
  """
41072
41084
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
41073
41085
  required_arguments = ['autonomousDatabaseBackupId']
@@ -41167,7 +41179,7 @@ class DatabaseClient(object):
41167
41179
  :rtype: :class:`~oci.response.Response`
41168
41180
 
41169
41181
  :example:
41170
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/update_autonomous_database_regional_wallet.py.html>`__ to see an example of how to use update_autonomous_database_regional_wallet API.
41182
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/update_autonomous_database_regional_wallet.py.html>`__ to see an example of how to use update_autonomous_database_regional_wallet API.
41171
41183
  """
41172
41184
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
41173
41185
  required_arguments = []
@@ -41261,7 +41273,7 @@ class DatabaseClient(object):
41261
41273
  :rtype: :class:`~oci.response.Response`
41262
41274
 
41263
41275
  :example:
41264
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/update_autonomous_database_software_image.py.html>`__ to see an example of how to use update_autonomous_database_software_image API.
41276
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/update_autonomous_database_software_image.py.html>`__ to see an example of how to use update_autonomous_database_software_image API.
41265
41277
  """
41266
41278
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
41267
41279
  required_arguments = ['autonomousDatabaseSoftwareImageId']
@@ -41366,7 +41378,7 @@ class DatabaseClient(object):
41366
41378
  :rtype: :class:`~oci.response.Response`
41367
41379
 
41368
41380
  :example:
41369
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/update_autonomous_database_wallet.py.html>`__ to see an example of how to use update_autonomous_database_wallet API.
41381
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/update_autonomous_database_wallet.py.html>`__ to see an example of how to use update_autonomous_database_wallet API.
41370
41382
  """
41371
41383
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
41372
41384
  required_arguments = ['autonomousDatabaseId']
@@ -41469,7 +41481,7 @@ class DatabaseClient(object):
41469
41481
  :rtype: :class:`~oci.response.Response`
41470
41482
 
41471
41483
  :example:
41472
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/update_autonomous_exadata_infrastructure.py.html>`__ to see an example of how to use update_autonomous_exadata_infrastructure API.
41484
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/update_autonomous_exadata_infrastructure.py.html>`__ to see an example of how to use update_autonomous_exadata_infrastructure API.
41473
41485
  """
41474
41486
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
41475
41487
  required_arguments = ['autonomousExadataInfrastructureId']
@@ -41577,7 +41589,7 @@ class DatabaseClient(object):
41577
41589
  :rtype: :class:`~oci.response.Response`
41578
41590
 
41579
41591
  :example:
41580
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/update_autonomous_vm_cluster.py.html>`__ to see an example of how to use update_autonomous_vm_cluster API.
41592
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/update_autonomous_vm_cluster.py.html>`__ to see an example of how to use update_autonomous_vm_cluster API.
41581
41593
  """
41582
41594
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
41583
41595
  required_arguments = ['autonomousVmClusterId']
@@ -41690,7 +41702,7 @@ class DatabaseClient(object):
41690
41702
  :rtype: :class:`~oci.response.Response`
41691
41703
 
41692
41704
  :example:
41693
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/update_backup_destination.py.html>`__ to see an example of how to use update_backup_destination API.
41705
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/update_backup_destination.py.html>`__ to see an example of how to use update_backup_destination API.
41694
41706
  """
41695
41707
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
41696
41708
  required_arguments = ['backupDestinationId']
@@ -41800,7 +41812,7 @@ class DatabaseClient(object):
41800
41812
  :rtype: :class:`~oci.response.Response`
41801
41813
 
41802
41814
  :example:
41803
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/update_cloud_autonomous_vm_cluster.py.html>`__ to see an example of how to use update_cloud_autonomous_vm_cluster API.
41815
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/update_cloud_autonomous_vm_cluster.py.html>`__ to see an example of how to use update_cloud_autonomous_vm_cluster API.
41804
41816
  """
41805
41817
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
41806
41818
  required_arguments = ['cloudAutonomousVmClusterId']
@@ -41910,7 +41922,7 @@ class DatabaseClient(object):
41910
41922
  :rtype: :class:`~oci.response.Response`
41911
41923
 
41912
41924
  :example:
41913
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/update_cloud_exadata_infrastructure.py.html>`__ to see an example of how to use update_cloud_exadata_infrastructure API.
41925
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/update_cloud_exadata_infrastructure.py.html>`__ to see an example of how to use update_cloud_exadata_infrastructure API.
41914
41926
  """
41915
41927
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
41916
41928
  required_arguments = ['cloudExadataInfrastructureId']
@@ -42020,7 +42032,7 @@ class DatabaseClient(object):
42020
42032
  :rtype: :class:`~oci.response.Response`
42021
42033
 
42022
42034
  :example:
42023
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/update_cloud_vm_cluster.py.html>`__ to see an example of how to use update_cloud_vm_cluster API.
42035
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/update_cloud_vm_cluster.py.html>`__ to see an example of how to use update_cloud_vm_cluster API.
42024
42036
  """
42025
42037
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
42026
42038
  required_arguments = ['cloudVmClusterId']
@@ -42130,7 +42142,7 @@ class DatabaseClient(object):
42130
42142
  :rtype: :class:`~oci.response.Response`
42131
42143
 
42132
42144
  :example:
42133
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/update_cloud_vm_cluster_iorm_config.py.html>`__ to see an example of how to use update_cloud_vm_cluster_iorm_config API.
42145
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/update_cloud_vm_cluster_iorm_config.py.html>`__ to see an example of how to use update_cloud_vm_cluster_iorm_config API.
42134
42146
  """
42135
42147
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
42136
42148
  required_arguments = ['cloudVmClusterId']
@@ -42243,7 +42255,7 @@ class DatabaseClient(object):
42243
42255
  :rtype: :class:`~oci.response.Response`
42244
42256
 
42245
42257
  :example:
42246
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/update_console_connection.py.html>`__ to see an example of how to use update_console_connection API.
42258
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/update_console_connection.py.html>`__ to see an example of how to use update_console_connection API.
42247
42259
  """
42248
42260
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
42249
42261
  required_arguments = ['dbNodeId', 'consoleConnectionId']
@@ -42357,7 +42369,7 @@ class DatabaseClient(object):
42357
42369
  :rtype: :class:`~oci.response.Response`
42358
42370
 
42359
42371
  :example:
42360
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/update_console_history.py.html>`__ to see an example of how to use update_console_history API.
42372
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/update_console_history.py.html>`__ to see an example of how to use update_console_history API.
42361
42373
  """
42362
42374
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
42363
42375
  required_arguments = ['dbNodeId', 'consoleHistoryId']
@@ -42473,7 +42485,7 @@ class DatabaseClient(object):
42473
42485
  :rtype: :class:`~oci.response.Response`
42474
42486
 
42475
42487
  :example:
42476
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/update_data_guard_association.py.html>`__ to see an example of how to use update_data_guard_association API.
42488
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/update_data_guard_association.py.html>`__ to see an example of how to use update_data_guard_association API.
42477
42489
  """
42478
42490
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
42479
42491
  required_arguments = ['databaseId', 'dataGuardAssociationId']
@@ -42581,7 +42593,7 @@ class DatabaseClient(object):
42581
42593
  :rtype: :class:`~oci.response.Response`
42582
42594
 
42583
42595
  :example:
42584
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/update_database.py.html>`__ to see an example of how to use update_database API.
42596
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/update_database.py.html>`__ to see an example of how to use update_database API.
42585
42597
  """
42586
42598
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
42587
42599
  required_arguments = ['databaseId']
@@ -42686,7 +42698,7 @@ class DatabaseClient(object):
42686
42698
  :rtype: :class:`~oci.response.Response`
42687
42699
 
42688
42700
  :example:
42689
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/update_database_software_image.py.html>`__ to see an example of how to use update_database_software_image API.
42701
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/update_database_software_image.py.html>`__ to see an example of how to use update_database_software_image API.
42690
42702
  """
42691
42703
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
42692
42704
  required_arguments = ['databaseSoftwareImageId']
@@ -42791,7 +42803,7 @@ class DatabaseClient(object):
42791
42803
  :rtype: :class:`~oci.response.Response`
42792
42804
 
42793
42805
  :example:
42794
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/update_db_home.py.html>`__ to see an example of how to use update_db_home API.
42806
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/update_db_home.py.html>`__ to see an example of how to use update_db_home API.
42795
42807
  """
42796
42808
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
42797
42809
  required_arguments = ['dbHomeId']
@@ -42899,7 +42911,7 @@ class DatabaseClient(object):
42899
42911
  :rtype: :class:`~oci.response.Response`
42900
42912
 
42901
42913
  :example:
42902
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/update_db_node.py.html>`__ to see an example of how to use update_db_node API.
42914
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/update_db_node.py.html>`__ to see an example of how to use update_db_node API.
42903
42915
  """
42904
42916
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
42905
42917
  required_arguments = ['dbNodeId']
@@ -43013,7 +43025,7 @@ class DatabaseClient(object):
43013
43025
  :rtype: :class:`~oci.response.Response`
43014
43026
 
43015
43027
  :example:
43016
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/update_db_system.py.html>`__ to see an example of how to use update_db_system API.
43028
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/update_db_system.py.html>`__ to see an example of how to use update_db_system API.
43017
43029
  """
43018
43030
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
43019
43031
  required_arguments = ['dbSystemId']
@@ -43122,7 +43134,7 @@ class DatabaseClient(object):
43122
43134
  :rtype: :class:`~oci.response.Response`
43123
43135
 
43124
43136
  :example:
43125
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/update_exadata_infrastructure.py.html>`__ to see an example of how to use update_exadata_infrastructure API.
43137
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/update_exadata_infrastructure.py.html>`__ to see an example of how to use update_exadata_infrastructure API.
43126
43138
  """
43127
43139
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
43128
43140
  required_arguments = ['exadataInfrastructureId']
@@ -43242,7 +43254,7 @@ class DatabaseClient(object):
43242
43254
  :rtype: :class:`~oci.response.Response`
43243
43255
 
43244
43256
  :example:
43245
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/update_exadata_iorm_config.py.html>`__ to see an example of how to use update_exadata_iorm_config API.
43257
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/update_exadata_iorm_config.py.html>`__ to see an example of how to use update_exadata_iorm_config API.
43246
43258
  """
43247
43259
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
43248
43260
  required_arguments = ['dbSystemId']
@@ -43352,7 +43364,7 @@ class DatabaseClient(object):
43352
43364
  :rtype: :class:`~oci.response.Response`
43353
43365
 
43354
43366
  :example:
43355
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/update_exadb_vm_cluster.py.html>`__ to see an example of how to use update_exadb_vm_cluster API.
43367
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/update_exadb_vm_cluster.py.html>`__ to see an example of how to use update_exadb_vm_cluster API.
43356
43368
  """
43357
43369
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
43358
43370
  required_arguments = ['exadbVmClusterId']
@@ -43462,7 +43474,7 @@ class DatabaseClient(object):
43462
43474
  :rtype: :class:`~oci.response.Response`
43463
43475
 
43464
43476
  :example:
43465
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/update_exascale_db_storage_vault.py.html>`__ to see an example of how to use update_exascale_db_storage_vault API.
43477
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/update_exascale_db_storage_vault.py.html>`__ to see an example of how to use update_exascale_db_storage_vault API.
43466
43478
  """
43467
43479
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
43468
43480
  required_arguments = ['exascaleDbStorageVaultId']
@@ -43572,7 +43584,7 @@ class DatabaseClient(object):
43572
43584
  :rtype: :class:`~oci.response.Response`
43573
43585
 
43574
43586
  :example:
43575
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/update_execution_action.py.html>`__ to see an example of how to use update_execution_action API.
43587
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/update_execution_action.py.html>`__ to see an example of how to use update_execution_action API.
43576
43588
  """
43577
43589
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
43578
43590
  required_arguments = ['executionActionId']
@@ -43682,7 +43694,7 @@ class DatabaseClient(object):
43682
43694
  :rtype: :class:`~oci.response.Response`
43683
43695
 
43684
43696
  :example:
43685
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/update_execution_window.py.html>`__ to see an example of how to use update_execution_window API.
43697
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/update_execution_window.py.html>`__ to see an example of how to use update_execution_window API.
43686
43698
  """
43687
43699
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
43688
43700
  required_arguments = ['executionWindowId']
@@ -43795,7 +43807,7 @@ class DatabaseClient(object):
43795
43807
  :rtype: :class:`~oci.response.Response`
43796
43808
 
43797
43809
  :example:
43798
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/update_external_container_database.py.html>`__ to see an example of how to use update_external_container_database API.
43810
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/update_external_container_database.py.html>`__ to see an example of how to use update_external_container_database API.
43799
43811
  """
43800
43812
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
43801
43813
  required_arguments = ['externalContainerDatabaseId']
@@ -43906,7 +43918,7 @@ class DatabaseClient(object):
43906
43918
  :rtype: :class:`~oci.response.Response`
43907
43919
 
43908
43920
  :example:
43909
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/update_external_database_connector.py.html>`__ to see an example of how to use update_external_database_connector API.
43921
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/update_external_database_connector.py.html>`__ to see an example of how to use update_external_database_connector API.
43910
43922
  """
43911
43923
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
43912
43924
  required_arguments = ['externalDatabaseConnectorId']
@@ -44016,7 +44028,7 @@ class DatabaseClient(object):
44016
44028
  :rtype: :class:`~oci.response.Response`
44017
44029
 
44018
44030
  :example:
44019
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/update_external_non_container_database.py.html>`__ to see an example of how to use update_external_non_container_database API.
44031
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/update_external_non_container_database.py.html>`__ to see an example of how to use update_external_non_container_database API.
44020
44032
  """
44021
44033
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
44022
44034
  required_arguments = ['externalNonContainerDatabaseId']
@@ -44128,7 +44140,7 @@ class DatabaseClient(object):
44128
44140
  :rtype: :class:`~oci.response.Response`
44129
44141
 
44130
44142
  :example:
44131
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/update_external_pluggable_database.py.html>`__ to see an example of how to use update_external_pluggable_database API.
44143
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/update_external_pluggable_database.py.html>`__ to see an example of how to use update_external_pluggable_database API.
44132
44144
  """
44133
44145
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
44134
44146
  required_arguments = ['externalPluggableDatabaseId']
@@ -44238,7 +44250,7 @@ class DatabaseClient(object):
44238
44250
  :rtype: :class:`~oci.response.Response`
44239
44251
 
44240
44252
  :example:
44241
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/update_key_store.py.html>`__ to see an example of how to use update_key_store API.
44253
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/update_key_store.py.html>`__ to see an example of how to use update_key_store API.
44242
44254
  """
44243
44255
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
44244
44256
  required_arguments = ['keyStoreId']
@@ -44343,7 +44355,7 @@ class DatabaseClient(object):
44343
44355
  :rtype: :class:`~oci.response.Response`
44344
44356
 
44345
44357
  :example:
44346
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/update_maintenance_run.py.html>`__ to see an example of how to use update_maintenance_run API.
44358
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/update_maintenance_run.py.html>`__ to see an example of how to use update_maintenance_run API.
44347
44359
  """
44348
44360
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
44349
44361
  required_arguments = ['maintenanceRunId']
@@ -44451,7 +44463,7 @@ class DatabaseClient(object):
44451
44463
  :rtype: :class:`~oci.response.Response`
44452
44464
 
44453
44465
  :example:
44454
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/update_oneoff_patch.py.html>`__ to see an example of how to use update_oneoff_patch API.
44466
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/update_oneoff_patch.py.html>`__ to see an example of how to use update_oneoff_patch API.
44455
44467
  """
44456
44468
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
44457
44469
  required_arguments = ['oneoffPatchId']
@@ -44558,7 +44570,7 @@ class DatabaseClient(object):
44558
44570
  :rtype: :class:`~oci.response.Response`
44559
44571
 
44560
44572
  :example:
44561
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/update_pluggable_database.py.html>`__ to see an example of how to use update_pluggable_database API.
44573
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/update_pluggable_database.py.html>`__ to see an example of how to use update_pluggable_database API.
44562
44574
  """
44563
44575
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
44564
44576
  required_arguments = ['pluggableDatabaseId']
@@ -44666,7 +44678,7 @@ class DatabaseClient(object):
44666
44678
  :rtype: :class:`~oci.response.Response`
44667
44679
 
44668
44680
  :example:
44669
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/update_scheduled_action.py.html>`__ to see an example of how to use update_scheduled_action API.
44681
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/update_scheduled_action.py.html>`__ to see an example of how to use update_scheduled_action API.
44670
44682
  """
44671
44683
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
44672
44684
  required_arguments = ['scheduledActionId']
@@ -44776,7 +44788,7 @@ class DatabaseClient(object):
44776
44788
  :rtype: :class:`~oci.response.Response`
44777
44789
 
44778
44790
  :example:
44779
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/update_scheduling_policy.py.html>`__ to see an example of how to use update_scheduling_policy API.
44791
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/update_scheduling_policy.py.html>`__ to see an example of how to use update_scheduling_policy API.
44780
44792
  """
44781
44793
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
44782
44794
  required_arguments = ['schedulingPolicyId']
@@ -44891,7 +44903,7 @@ class DatabaseClient(object):
44891
44903
  :rtype: :class:`~oci.response.Response`
44892
44904
 
44893
44905
  :example:
44894
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/update_scheduling_window.py.html>`__ to see an example of how to use update_scheduling_window API.
44906
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/update_scheduling_window.py.html>`__ to see an example of how to use update_scheduling_window API.
44895
44907
  """
44896
44908
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
44897
44909
  required_arguments = ['schedulingPolicyId', 'schedulingWindowId']
@@ -45002,7 +45014,7 @@ class DatabaseClient(object):
45002
45014
  :rtype: :class:`~oci.response.Response`
45003
45015
 
45004
45016
  :example:
45005
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/update_vm_cluster.py.html>`__ to see an example of how to use update_vm_cluster API.
45017
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/update_vm_cluster.py.html>`__ to see an example of how to use update_vm_cluster API.
45006
45018
  """
45007
45019
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
45008
45020
  required_arguments = ['vmClusterId']
@@ -45118,7 +45130,7 @@ class DatabaseClient(object):
45118
45130
  :rtype: :class:`~oci.response.Response`
45119
45131
 
45120
45132
  :example:
45121
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/update_vm_cluster_network.py.html>`__ to see an example of how to use update_vm_cluster_network API.
45133
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/update_vm_cluster_network.py.html>`__ to see an example of how to use update_vm_cluster_network API.
45122
45134
  """
45123
45135
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
45124
45136
  required_arguments = ['exadataInfrastructureId', 'vmClusterNetworkId']
@@ -45229,7 +45241,7 @@ class DatabaseClient(object):
45229
45241
  :rtype: :class:`~oci.response.Response`
45230
45242
 
45231
45243
  :example:
45232
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/upgrade_database.py.html>`__ to see an example of how to use upgrade_database API.
45244
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/upgrade_database.py.html>`__ to see an example of how to use upgrade_database API.
45233
45245
  """
45234
45246
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
45235
45247
  required_arguments = ['databaseId']
@@ -45346,7 +45358,7 @@ class DatabaseClient(object):
45346
45358
  :rtype: :class:`~oci.response.Response`
45347
45359
 
45348
45360
  :example:
45349
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/upgrade_db_system.py.html>`__ to see an example of how to use upgrade_db_system API.
45361
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/upgrade_db_system.py.html>`__ to see an example of how to use upgrade_db_system API.
45350
45362
  """
45351
45363
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
45352
45364
  required_arguments = ['dbSystemId']
@@ -45463,7 +45475,7 @@ class DatabaseClient(object):
45463
45475
  :rtype: :class:`~oci.response.Response`
45464
45476
 
45465
45477
  :example:
45466
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.139.0/database/validate_vm_cluster_network.py.html>`__ to see an example of how to use validate_vm_cluster_network API.
45478
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.141.0/database/validate_vm_cluster_network.py.html>`__ to see an example of how to use validate_vm_cluster_network API.
45467
45479
  """
45468
45480
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
45469
45481
  required_arguments = ['exadataInfrastructureId', 'vmClusterNetworkId']